diff --git a/Makefile b/Makefile index 5450ebb446bc..833d03746e3b 100644 --- a/Makefile +++ b/Makefile @@ -90,6 +90,7 @@ ifneq "$(LXD_OFFLINE)" "" exit 1 endif go get -t -v -d -u ./... + go get github.com/dell/goscaleio@v1.15.0 # Due to pending testing of newer version go get github.com/gorilla/websocket@v1.5.1 # Due to riscv64 crashes in LP go mod tidy -go=$(GOMIN) diff --git a/client/lxd_instances.go b/client/lxd_instances.go index b67be32eac69..ef1a84226231 100644 --- a/client/lxd_instances.go +++ b/client/lxd_instances.go @@ -723,6 +723,9 @@ func (r *ProtocolLXD) tryCreateInstance(req api.InstancesPost, urls []string, op operation := req.Source.Operation // Forward targetOp to remote op + chConnect := make(chan error, 1) + chWait := make(chan error, 1) + go func() { success := false var errors []remoteOperationResult @@ -762,13 +765,35 @@ func (r *ProtocolLXD) tryCreateInstance(req api.InstancesPost, urls []string, op break } - if !success { - rop.err = remoteOperationError("Failed instance creation", errors) + if success { + chConnect <- nil + close(chConnect) + } else { + chConnect <- remoteOperationError("Failed instance creation", errors) + close(chConnect) + if op != nil { _ = op.Cancel() } } + }() + + if op != nil { + go func() { + chWait <- op.Wait() + close(chWait) + }() + } + + go func() { + var err error + + select { + case err = <-chConnect: + case err = <-chWait: + } + rop.err = err close(rop.chDone) }() @@ -953,7 +978,12 @@ func (r *ProtocolLXD) CopyInstance(source InstanceServer, instance api.Instance, targetSecrets := map[string]string{} for k, v := range opAPI.Metadata { - targetSecrets[k] = v.(string) + vStr, ok := v.(string) + if !ok { + continue + } + + targetSecrets[k] = vStr } // Prepare the source request @@ -981,7 +1011,12 @@ func (r *ProtocolLXD) CopyInstance(source InstanceServer, instance api.Instance, sourceSecrets := map[string]string{} for k, v := range opAPI.Metadata { - sourceSecrets[k] = v.(string) + vStr, ok := v.(string) + if !ok { + continue + } + + sourceSecrets[k] = vStr } // Relay mode migration @@ -1001,7 +1036,12 @@ func (r *ProtocolLXD) CopyInstance(source InstanceServer, instance api.Instance, // Extract the websockets targetSecrets := map[string]string{} for k, v := range targetOpAPI.Metadata { - targetSecrets[k] = v.(string) + vStr, ok := v.(string) + if !ok { + continue + } + + targetSecrets[k] = vStr } // Launch the relay @@ -1243,9 +1283,16 @@ func (r *ProtocolLXD) ExecInstance(instanceName string, exec api.InstanceExecPos value, ok := opAPI.Metadata["fds"] if ok { - values := value.(map[string]any) - for k, v := range values { - fds[k] = v.(string) + values, ok := value.(map[string]any) + if ok { + for k, v := range values { + vStr, ok := v.(string) + if !ok { + continue + } + + fds[k] = vStr + } } } @@ -1260,7 +1307,12 @@ func (r *ProtocolLXD) ExecInstance(instanceName string, exec api.InstanceExecPos outputs, ok := opAPI.Metadata["output"].(map[string]any) if ok { for k, v := range outputs { - outputFiles[k] = v.(string) + vStr, ok := v.(string) + if !ok { + continue + } + + outputFiles[k] = vStr } } @@ -1992,7 +2044,12 @@ func (r *ProtocolLXD) CopyInstanceSnapshot(source InstanceServer, instanceName s targetSecrets := map[string]string{} for k, v := range opAPI.Metadata { - targetSecrets[k] = v.(string) + vStr, ok := v.(string) + if !ok { + continue + } + + targetSecrets[k] = vStr } // Prepare the source request @@ -2020,7 +2077,12 @@ func (r *ProtocolLXD) CopyInstanceSnapshot(source InstanceServer, instanceName s sourceSecrets := map[string]string{} for k, v := range opAPI.Metadata { - sourceSecrets[k] = v.(string) + vStr, ok := v.(string) + if !ok { + continue + } + + sourceSecrets[k] = vStr } // Relay mode migration @@ -2040,7 +2102,12 @@ func (r *ProtocolLXD) CopyInstanceSnapshot(source InstanceServer, instanceName s // Extract the websockets targetSecrets := map[string]string{} for k, v := range targetOpAPI.Metadata { - targetSecrets[k] = v.(string) + vStr, ok := v.(string) + if !ok { + continue + } + + targetSecrets[k] = vStr } // Launch the relay @@ -2596,9 +2663,16 @@ func (r *ProtocolLXD) ConsoleInstance(instanceName string, console api.InstanceC value, ok := opAPI.Metadata["fds"] if ok { - values := value.(map[string]any) - for k, v := range values { - fds[k] = v.(string) + values, ok := value.(map[string]any) + if ok { + for k, v := range values { + vStr, ok := v.(string) + if !ok { + continue + } + + fds[k] = vStr + } } } @@ -2688,9 +2762,16 @@ func (r *ProtocolLXD) ConsoleInstanceDynamic(instanceName string, console api.In value, ok := opAPI.Metadata["fds"] if ok { - values := value.(map[string]any) - for k, v := range values { - fds[k] = v.(string) + values, ok := value.(map[string]any) + if ok { + for k, v := range values { + vStr, ok := v.(string) + if !ok { + continue + } + + fds[k] = vStr + } } } diff --git a/doc/.custom_wordlist.txt b/doc/.custom_wordlist.txt index 3714e581f865..881fa29ac8a1 100644 --- a/doc/.custom_wordlist.txt +++ b/doc/.custom_wordlist.txt @@ -18,6 +18,7 @@ balancers benchmarking BGP BitLocker +BLK bool bootable BPF @@ -41,6 +42,7 @@ CPUs CRIU CRL cron +CSM CSV CUDA dataset @@ -62,8 +64,10 @@ ECDSA EiB Eibit endian +EOL ES ESA +ESM ETag failover firmware @@ -89,10 +93,10 @@ hotplugging HTTPS HWE ICMP -IdP idmap idmapped idmaps +IdP incrementing InfiniBand init @@ -112,9 +116,9 @@ KiB kibi Kibit KVM +LogCLI lookups LoongArch -LogCLI LRU LV LVM @@ -133,8 +137,8 @@ MiB Mibit MicroCeph MicroCloud -MinIO MII +MinIO MITM MTU Mullvad @@ -190,6 +194,7 @@ qgroups RADOS RBAC RBD +RDP README reconfiguring requestor @@ -208,6 +213,7 @@ SDS SDT SeaBIOS Seccomp +SELinux SEV SFTP SHA @@ -216,6 +222,7 @@ SIGTERM simplestreams SKBPRIO SLAAC +SLES SMTP Snapcraft Solaris diff --git a/doc/explanation/projects.md b/doc/explanation/projects.md index 65d291b4c362..75d448416b43 100644 --- a/doc/explanation/projects.md +++ b/doc/explanation/projects.md @@ -46,6 +46,15 @@ To edit them, you must remove all instances first. New features that are added in an upgrade are disabled for existing projects. ``` +```{important} +In a multi-tenant environment, unless using {ref}`fine-grained-authorization`, all projects should have all features enabled. +Otherwise, clients with {ref}`restricted-tls-certs` are able to create, edit, and delete resources in the default project. This might affect other tenants. + +For example, if project "foo" is created and `features.networks` is not set to true, then a restricted client certificate with access to "foo" can view, edit, and delete networks in the default project. + +Conversely, if a client's permissions are managed via {ref}`fine-grained-authorization`, resources may be inherited from the default project but access to those resources is not automatically granted. +``` + (projects-confined)= ## Confined projects in a multi-user environment diff --git a/doc/guest-os-compatibility.md b/doc/guest-os-compatibility.md new file mode 100644 index 000000000000..ca044597f0a0 --- /dev/null +++ b/doc/guest-os-compatibility.md @@ -0,0 +1,78 @@ +(guest-os-compatibility)= +# Guest OS compatibility + +The following operating systems (OS) were tested as virtual machine guest running on top of on LXD `5.21/stable`. Each OS was tested by doing a manual installation using the official ISO as provided by the vendor. + +OS vendor | OS version | OS support | [LXD agent](#lxd-agent) | VirtIO-SCSI | VirtIO-BLK | NVMe | CSM (BIOS) | UEFI | Secure Boot +:--- | :--- | :--- | :--- | :--- | :--- | :--- | :--- | :--- | :--- +CentOS | CentOS 6.10 [^1] | EOL | ❌ [^2] | ✅ | ❌ [^7] | 🟢 | ✅ | ❌ | ❌ +CentOS | CentOS 7.9 | EOL | ❌ [^2] | ✅ | 🟢 | 🟢 | 🟢 | ✅ | ✅ +CentOS | CentOS 8.5 | EOL | 🟢 [^3] | ✅ | 🟢 | 🟢 | 🟢 | ✅ | ✅ +CentOS | CentOS 8-Stream | EOL | 🟢 [^3] | ✅ | 🟢 | 🟢 | 🟢 | ✅ | ✅ +CentOS | CentOS 9-Stream | Supported | 🟢 [^3] | ✅ | 🟢 | 🟢 | 🟢 | ✅ | ✅ +Red Hat | RHEL 7.9 | EOL | ❌ [^2] | ✅ | 🟢 | 🟢 | 🟢 | ✅ | ✅ +Red Hat | RHEL 8.10 | Supported | 🟢 [^3] | ✅ | 🟢 | 🟢 | 🟢 | ✅ | ✅ +Red Hat | RHEL 9.4 | Supported | 🟢 [^3] | ✅ | 🟢 | 🟢 | 🟢 | ✅ | ✅ +SUSE | SLES 12 SP5 | Supported | ✅ | ✅ | 🟢 | 🟢 | 🟢 | ✅ | ✅ +SUSE | SLES 15 SP6 | Supported | ✅ | ✅ | 🟢 | 🟢 | 🟢 | ✅ | ✅ +Ubuntu | 14.04.6 LTS | EOL | ❌ [^8] | ✅ | 🟢 | 🟢 | 🟢 | ✅ | ✅ +Ubuntu | 16.04.7 LTS | ESM | ✅ [^9] | ✅ | 🟢 | 🟢 | 🟢 | ✅ | ✅ +Ubuntu | 18.04.6 LTS | ESM | ✅ | ✅ | 🟢 | 🟢 | 🟢 | ✅ | ✅ +Ubuntu | 20.04.6 LTS | Supported | ✅ | ✅ | 🟢 | 🟢 | 🟢 | ✅ | ✅ +Ubuntu | 22.04.4 LTS | Supported | ✅ | ✅ | 🟢 | 🟢 | 🟢 | ✅ | ✅ +Ubuntu | 24.04.1 LTS | Supported | ✅ | ✅ | 🟢 | 🟢 | 🟢 | ✅ | ✅ +Windows | Server 2012 | Supported | ➖ | ✅ | 🟢 | ❌ | 🟢 | ✅ | ✅ +Windows | Server 2016 | Supported | ➖ | ✅ | 🟢 | 🟢 [^4] | ❌ [^6] | ✅ | ✅ +Windows | Server 2019 | Supported | ➖ | ✅ | 🟢 | 🟢 | ❌ [^6] | ✅ | ✅ +Windows | Server 2022 | Supported | ➖ | ✅ | 🟢 | 🟢 | ❌ [^6] | ✅ | ✅ +Windows | 10 22H2 | Supported | ➖ | ✅ | 🟢 | 🟢 | ❌ [^6] | ✅ | ✅ +Windows | 11 23H2 [^5] | Supported | ➖ | ✅ | 🟢 | 🟢 | ❌ | ✅ | ✅ + +[^1]: No network support despite having VirtIO-NET module. +[^2]: Support for 9P or `virtiofs` not available. Note: CentOS 7 has a `kernel-plus` kernel with 9P support allowing LXD agent to work (with `selinux=0`). +[^3]: Requires disabling SELinux to allow LXD agent loading `virtiofs` configuration share. +[^4]: NVMe disks are visible but the installer lists all 255 namespaces slowing down the initialization. +[^5]: A virtual TPM is required. +[^6]: The OS installer hangs when booting in CSM/BIOS mode. +[^7]: The OS installer hangs when booting with VirtIO-BLK despite having VirtIO-BLK supported by the kernel. +[^8]: This Linux version does not use `systemd` which the LXD agent requires. +[^9]: Requires the HWE kernel (`4.15`) for proper `vsock` support which is required by the LXD agent. + +Legend: +✅ : recommended +🟢 : supported +➖ : not applicable +❌ : not supported + +## Notes + +### LXD agent + +The LXD agent provides the ability to execute commands inside of the virtual machine guest without relying on traditional access solution like secure shell (SSH) or Remote Desktop Protocol (RDP). This agent is only supported on Linux guests using `systemd`. + +### CSM/BIOS boot + +```bash +lxc config set v1 security.secureboot=false +lxc config set v1 security.csm=true +``` + +### Virtual TPM + +```bash +lxc config device add v1 vtpm tpm path=/dev/tpm0 +``` + +### VirtIO-BLK or NVMe + +```bash +lxc config device override v1 root io.bus=virtio-blk +# or +lxc config device override v1 root io.bus=nvme +``` + +### Disconnect the ISO + +```bash +lxc config device remove v1 iso +``` diff --git a/doc/howto/instances_manage.md b/doc/howto/instances_manage.md index 5ae781517839..e8f230deb8ba 100644 --- a/doc/howto/instances_manage.md +++ b/doc/howto/instances_manage.md @@ -178,6 +178,7 @@ You can also stop several instances at the same time by selecting them in the in ````` +(instances-manage-delete)= ## Delete an instance If you don't need an instance anymore, you can remove it. @@ -226,6 +227,7 @@ There are different ways to prevent accidental deletion of instances: lxc alias add delete "delete -i" +(instances-manage-rebuild)= ## Rebuild an instance If you want to wipe and re-initialize the root disk of your instance but keep the instance configuration, you can rebuild the instance. diff --git a/doc/metadata.txt b/doc/metadata.txt index 9ebc2c3cafa6..c797a1752962 100644 --- a/doc/metadata.txt +++ b/doc/metadata.txt @@ -2432,12 +2432,6 @@ Possible values are `true` or `false`. The original MAC that was used when moving a physical device into an instance. ``` -```{config:option} volatile..last_state.ip_addresses instance-volatile -:shortdesc: "Last used IP addresses" -:type: "string" -Comma-separated list of the last used IP addresses of the network device. -``` - ```{config:option} volatile..last_state.mtu instance-volatile :shortdesc: "Network device original MTU" :type: "string" diff --git a/doc/reference/index.md b/doc/reference/index.md index 1a3fdb4c2746..5016cc62da6b 100644 --- a/doc/reference/index.md +++ b/doc/reference/index.md @@ -17,6 +17,7 @@ You should also be aware of the supported architectures, the available image ser /architectures /reference/remote_image_servers /reference/image_format +/guest-os-compatibility Container environment ``` diff --git a/doc/reference/instance_options.md b/doc/reference/instance_options.md index f9610d041ab5..652691b56a08 100644 --- a/doc/reference/instance_options.md +++ b/doc/reference/instance_options.md @@ -369,6 +369,11 @@ The following instance options control the creation and expiry of {ref}`instance The following volatile keys are currently used internally by LXD to store internal data specific to an instance: +```{important} +Setting these `volatile.*` keys might break LXD in non-obvious ways. +Therefore, you should avoid setting any of these keys. +``` + % Include content from [../metadata.txt](../metadata.txt) ```{include} ../metadata.txt :start-after: diff --git a/doc/rest-api.yaml b/doc/rest-api.yaml index 9858c0846645..39d078e843b8 100644 --- a/doc/rest-api.yaml +++ b/doc/rest-api.yaml @@ -2378,7 +2378,7 @@ definitions: example: foo/snap0 type: string x-go-name: Source - sourceDiskSize: + source_disk_size: description: |- Source disk size in bytes used to set the instance's volume size to accommodate the transferred root disk. This value is ignored if the root disk device has a size explicitly configured (for conversion). diff --git a/doc/tutorial/ui.md b/doc/tutorial/ui.md index 221717924463..43d759060b62 100644 --- a/doc/tutorial/ui.md +++ b/doc/tutorial/ui.md @@ -71,7 +71,8 @@ See {ref}`containers-and-vms` for information about the difference between the t Creating this container is quicker than launching the first, because the image is already available locally. ``` -1. Create and start a VM called `ubuntu-vm` using the Ubuntu 24.04 LTS image by selecting {guilabel}`VM` as the instance type: +1. Create and start a VM called `ubuntu-vm` using the Ubuntu 24.04 LTS image. + To create a VM instead of a container, select {guilabel}`VM` as the instance type: ```{figure} /images/tutorial/create_vm.png :width: 100% @@ -82,8 +83,9 @@ See {ref}`containers-and-vms` for information about the difference between the t Even though you are using the same image name to launch the instance, LXD downloads a slightly different image that is compatible with VMs. ``` -1. Create and start a VM called `ubuntu-desktop` using the Ubuntu 24.04 LTS desktop image (filter by variant "desktop" to find it). - When you select the image, the instance type is automatically set to {guilabel}`VM`: +1. Start creating (do not click {guilabel}`Create and start` yet) a VM called `ubuntu-desktop`. + When selecting the image, filter by variant "desktop" to find the Ubuntu 24.04 LTS desktop image. + Note that after you select the image, the instance type is automatically set to {guilabel}`VM`: ```{figure} /images/tutorial/create_desktop_vm.png :width: 100% @@ -91,7 +93,8 @@ See {ref}`containers-and-vms` for information about the difference between the t ``` To run smoothly, the desktop VM needs more RAM. - Therefore, navigate to {guilabel}`Advanced` > {guilabel}`Resource limits` and set the {guilabel}`Memory limit` to 4 GiB before you start the instance. + Therefore, navigate to {guilabel}`Advanced` > {guilabel}`Resource limits` and set the {guilabel}`Memory limit` to 4 GiB. + Then click {guilabel}`Create and start` to start the instance. 1. Check the list of instances that you created: @@ -447,8 +450,11 @@ Now that we've run through the basic functionality of LXD, let's clean up the en 1. Go to {guilabel}`Storage` > {guilabel}`Volumes` and click the {guilabel}`Delete` button ({{delete_button}}) next to the `tutorial_volume` storage volume. -1. Optionally, you can also delete the images that you used. - If you keep them, they will eventually expire (by default, when they haven't been used for ten days). +```{note} +Optionally, you can also delete the images that you used. +However, this isn't really needed. +If you keep them, they will eventually expire (by default, when they haven't been used for ten days). +``` % Include content from [first_steps.md](first_steps.md) ```{include} first_steps.md diff --git a/go.mod b/go.mod index a405b2fb2378..9adbdf0fb3b8 100644 --- a/go.mod +++ b/go.mod @@ -34,7 +34,7 @@ require ( github.com/mdlayher/netx v0.0.0-20230430222610-7e21880baee8 github.com/mdlayher/vsock v1.2.1 github.com/miekg/dns v1.1.62 - github.com/minio/minio-go/v7 v7.0.75 + github.com/minio/minio-go/v7 v7.0.76 github.com/mitchellh/mapstructure v1.5.0 github.com/oklog/ulid/v2 v2.1.0 github.com/olekukonko/tablewriter v0.0.5 @@ -54,7 +54,7 @@ require ( go.starlark.net v0.0.0-20240725214946-42030a7cedce go.uber.org/zap v1.27.0 golang.org/x/crypto v0.26.0 - golang.org/x/exp v0.0.0-20240808152545-0cdaa3abc0fa + golang.org/x/exp v0.0.0-20240823005443-9b4947da3948 golang.org/x/oauth2 v0.22.0 golang.org/x/sync v0.8.0 golang.org/x/sys v0.24.0 @@ -63,7 +63,7 @@ require ( google.golang.org/protobuf v1.34.2 gopkg.in/tomb.v2 v2.0.0-20161208151619-d5d1b5820637 gopkg.in/yaml.v2 v2.4.0 - k8s.io/utils v0.0.0-20240711033017-18e509b52bc8 + k8s.io/utils v0.0.0-20240821151609-f90d01438635 ) require ( @@ -117,16 +117,16 @@ require ( github.com/muhlemmer/httpforwarded v0.1.0 // indirect github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect github.com/natefinch/wrap v0.2.0 // indirect - github.com/pelletier/go-toml/v2 v2.2.2 // indirect + github.com/pelletier/go-toml/v2 v2.2.3 // indirect github.com/pkg/errors v0.9.1 // indirect github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect - github.com/prometheus/client_golang v1.20.0 // indirect + github.com/prometheus/client_golang v1.20.2 // indirect github.com/prometheus/client_model v0.6.1 // indirect - github.com/prometheus/common v0.55.0 // indirect + github.com/prometheus/common v0.57.0 // indirect github.com/prometheus/procfs v0.15.1 // indirect github.com/rivo/uniseg v0.4.7 // indirect - github.com/rs/cors v1.11.0 // indirect - github.com/rs/xid v1.5.0 // indirect + github.com/rs/cors v1.11.1 // indirect + github.com/rs/xid v1.6.0 // indirect github.com/russross/blackfriday/v2 v2.1.0 // indirect github.com/sagikazarmark/locafero v0.6.0 // indirect github.com/sagikazarmark/slog-shim v0.1.0 // indirect @@ -140,21 +140,21 @@ require ( github.com/vishvananda/netns v0.0.4 // indirect github.com/zitadel/logging v0.6.0 // indirect github.com/zitadel/schema v1.3.0 // indirect - go.opentelemetry.io/otel v1.28.0 // indirect - go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.28.0 // indirect - go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.28.0 // indirect - go.opentelemetry.io/otel/metric v1.28.0 // indirect - go.opentelemetry.io/otel/sdk v1.28.0 // indirect - go.opentelemetry.io/otel/trace v1.28.0 // indirect + go.opentelemetry.io/otel v1.29.0 // indirect + go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.29.0 // indirect + go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.29.0 // indirect + go.opentelemetry.io/otel/metric v1.29.0 // indirect + go.opentelemetry.io/otel/sdk v1.29.0 // indirect + go.opentelemetry.io/otel/trace v1.29.0 // indirect go.opentelemetry.io/proto/otlp v1.3.1 // indirect go.uber.org/multierr v1.11.0 // indirect golang.org/x/mod v0.20.0 // indirect golang.org/x/net v0.28.0 // indirect golang.org/x/time v0.6.0 // indirect golang.org/x/tools v0.24.0 // indirect - google.golang.org/genproto/googleapis/api v0.0.0-20240814211410-ddb44dafa142 // indirect - google.golang.org/genproto/googleapis/rpc v0.0.0-20240814211410-ddb44dafa142 // indirect - google.golang.org/grpc v1.65.0 // indirect + google.golang.org/genproto/googleapis/api v0.0.0-20240827150818-7e3bb234dfed // indirect + google.golang.org/genproto/googleapis/rpc v0.0.0-20240827150818-7e3bb234dfed // indirect + google.golang.org/grpc v1.66.0 // indirect gopkg.in/ini.v1 v1.67.0 // indirect gopkg.in/mgo.v2 v2.0.0-20190816093944-a6b53ec6cb22 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect diff --git a/go.sum b/go.sum index c675fcba00d0..88ef6f817893 100644 --- a/go.sum +++ b/go.sum @@ -478,8 +478,8 @@ github.com/miekg/dns v1.1.62 h1:cN8OuEF1/x5Rq6Np+h1epln8OiyPWV+lROx9LxcGgIQ= github.com/miekg/dns v1.1.62/go.mod h1:mvDlcItzm+br7MToIKqkglaGhlFMHJ9DTNNWONWXbNQ= github.com/minio/md5-simd v1.1.2 h1:Gdi1DZK69+ZVMoNHRXJyNcxrMA4dSxoYHZSQbirFg34= github.com/minio/md5-simd v1.1.2/go.mod h1:MzdKDxYpY2BT9XQFocsiZf/NKVtR7nkE4RoEpN+20RM= -github.com/minio/minio-go/v7 v7.0.75 h1:0uLrB6u6teY2Jt+cJUVi9cTvDRuBKWSRzSAcznRkwlE= -github.com/minio/minio-go/v7 v7.0.75/go.mod h1:qydcVzV8Hqtj1VtEocfxbmVFa2siu6HGa+LDEPogjD8= +github.com/minio/minio-go/v7 v7.0.76 h1:9nxHH2XDai61cT/EFhyIw/wW4vJfpPNvl7lSFpRt+Ng= +github.com/minio/minio-go/v7 v7.0.76/go.mod h1:AVM3IUN6WwKzmwBxVdjzhH8xq+f57JSbbvzqvUzR6eg= github.com/mitchellh/cli v1.0.0/go.mod h1:hNIlj7HEI86fIcpObd7a0FcrxTWetlwJDGcceTlRvqc= github.com/mitchellh/go-homedir v1.0.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= github.com/mitchellh/go-homedir v1.1.0 h1:lukF9ziXFxDFPkA1vsr5zpc1XuPDn/wFntq5mG+4E0Y= @@ -527,8 +527,8 @@ github.com/osrg/gobgp/v3 v3.29.0/go.mod h1:ZGeSti9mURR/o5hf5R6T1FM5g1yiEBZbhP+Tu github.com/pascaldekloe/goe v0.0.0-20180627143212-57f6aae5913c/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144TG7ZOy1lc= github.com/pborman/getopt v0.0.0-20170112200414-7148bc3a4c30/go.mod h1:85jBQOZwpVEaDAr341tbn15RS4fCAsIst0qp7i8ex1o= github.com/pelletier/go-toml v1.9.3/go.mod h1:u1nR/EPcESfeI/szUZKdtJ0xRNbUoANCkoOuaOx1Y+c= -github.com/pelletier/go-toml/v2 v2.2.2 h1:aYUidT7k73Pcl9nb2gScu7NSrKCSHIDE89b3+6Wq+LM= -github.com/pelletier/go-toml/v2 v2.2.2/go.mod h1:1t835xjRzz80PqgE6HHgN2JOsmgYu/h4qDAS4n929Rs= +github.com/pelletier/go-toml/v2 v2.2.3 h1:YmeHyLY8mFWbdkNWwpr+qIL2bEqT0o95WSdkNHvL12M= +github.com/pelletier/go-toml/v2 v2.2.3/go.mod h1:MfCQTFTvCcUyyvvwm1+G6H/jORL20Xlb6rzQu9GuUkc= github.com/peterh/liner v1.2.1/go.mod h1:CRroGNssyjTd/qIG2FyxByd2S8JEAZXBl4qUrZf8GS0= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= @@ -544,13 +544,13 @@ github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH github.com/posener/complete v1.1.1/go.mod h1:em0nMJCgc9GFtwrmVmEMR/ZL6WyhyjMBndrE9hABlRI= github.com/pressly/goose/v3 v3.20.0 h1:uPJdOxF/Ipj7ABVNOAMJXSxwFXZGwMGHNqjC8e61VA0= github.com/pressly/goose/v3 v3.20.0/go.mod h1:BRfF2GcG4FTG12QfdBVy3q1yveaf4ckL9vWwEcIO3lA= -github.com/prometheus/client_golang v1.20.0 h1:jBzTZ7B099Rg24tny+qngoynol8LtVYlA2bqx3vEloI= -github.com/prometheus/client_golang v1.20.0/go.mod h1:PIEt8X02hGcP8JWbeHyeZ53Y/jReSnHgO035n//V5WE= +github.com/prometheus/client_golang v1.20.2 h1:5ctymQzZlyOON1666svgwn3s6IKWgfbjsejTMiXIyjg= +github.com/prometheus/client_golang v1.20.2/go.mod h1:PIEt8X02hGcP8JWbeHyeZ53Y/jReSnHgO035n//V5WE= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= -github.com/prometheus/common v0.55.0 h1:KEi6DK7lXW/m7Ig5i47x0vRzuBsHuvJdi5ee6Y3G1dc= -github.com/prometheus/common v0.55.0/go.mod h1:2SECS4xJG1kd8XF9IcM1gMX6510RAEL65zxzNImwdc8= +github.com/prometheus/common v0.57.0 h1:Ro/rKjwdq9mZn1K5QPctzh+MA4Lp0BuYk5ZZEVhoNcY= +github.com/prometheus/common v0.57.0/go.mod h1:7uRPFSUTbfZWsJ7MHY56sqt7hLQu3bxXHDnNhl8E9qI= github.com/prometheus/procfs v0.15.1 h1:YagwOFzUgYfKKHX6Dr+sHT7km/hxC76UB0learggepc= github.com/prometheus/procfs v0.15.1/go.mod h1:fB45yRUv8NstnjriLhBQLuOUt+WW4BsoGhij/e3PBqk= github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc= @@ -562,10 +562,10 @@ github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6L github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= github.com/rogpeppe/go-internal v1.12.0 h1:exVL4IDcn6na9z1rAb56Vxr+CgyK3nn3O+epU5NdKM8= github.com/rogpeppe/go-internal v1.12.0/go.mod h1:E+RYuTGaKKdloAfM02xzb0FW3Paa99yedzYV+kq4uf4= -github.com/rs/cors v1.11.0 h1:0B9GE/r9Bc2UxRMMtymBkHTenPkHDv0CW4Y98GBY+po= -github.com/rs/cors v1.11.0/go.mod h1:XyqrcTp5zjWr1wsJ8PIRZssZ8b/WMcMf71DJnit4EMU= -github.com/rs/xid v1.5.0 h1:mKX4bl4iPYJtEIxp6CYiUuLQ/8DYMoz0PUdtGgMFRVc= -github.com/rs/xid v1.5.0/go.mod h1:trrq9SKmegXys3aeAKXMUTdJsYXVwGY3RLcfgqegfbg= +github.com/rs/cors v1.11.1 h1:eU3gRzXLRK57F5rKMGMZURNdIG4EoAmX8k94r9wXWHA= +github.com/rs/cors v1.11.1/go.mod h1:XyqrcTp5zjWr1wsJ8PIRZssZ8b/WMcMf71DJnit4EMU= +github.com/rs/xid v1.6.0 h1:fV591PaemRlL6JfRxGDEPl69wICngIQ3shQtzfy2gxU= +github.com/rs/xid v1.6.0/go.mod h1:7XoLgs4eV+QndskICGsho+ADou8ySMSjJKDIan90Nz0= github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= github.com/russross/blackfriday/v2 v2.1.0 h1:JIOH55/0cWyOuilr9/qlrm0BSXldqnqwMsf35Ld67mk= github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= @@ -607,7 +607,6 @@ github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+ github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo= -github.com/stretchr/objx v0.5.2/go.mod h1:FRsXN1f5AsAjCGJKqEizvkpNtU+EGNCLh3NxZ/8L+MA= github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= @@ -617,7 +616,6 @@ github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/ github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= -github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg= github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/subosito/gotenv v1.2.0/go.mod h1:N0PQaV/YGNqwC0u51sEeR/aUtSLEXKX9iv69rRypqCw= @@ -655,18 +653,18 @@ go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk= go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.51.0 h1:Xs2Ncz0gNihqu9iosIZ5SkBbWo5T8JhhLJFMQL1qmLI= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.51.0/go.mod h1:vy+2G/6NvVMpwGX/NyLqcC41fxepnuKHk16E6IZUcJc= -go.opentelemetry.io/otel v1.28.0 h1:/SqNcYk+idO0CxKEUOtKQClMK/MimZihKYMruSMViUo= -go.opentelemetry.io/otel v1.28.0/go.mod h1:q68ijF8Fc8CnMHKyzqL6akLO46ePnjkgfIMIjUIX9z4= -go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.28.0 h1:3Q/xZUyC1BBkualc9ROb4G8qkH90LXEIICcs5zv1OYY= -go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.28.0/go.mod h1:s75jGIWA9OfCMzF0xr+ZgfrB5FEbbV7UuYo32ahUiFI= -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.28.0 h1:R3X6ZXmNPRR8ul6i3WgFURCHzaXjHdm0karRG/+dj3s= -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.28.0/go.mod h1:QWFXnDavXWwMx2EEcZsf3yxgEKAqsxQ+Syjp+seyInw= -go.opentelemetry.io/otel/metric v1.28.0 h1:f0HGvSl1KRAU1DLgLGFjrwVyismPlnuU6JD6bOeuA5Q= -go.opentelemetry.io/otel/metric v1.28.0/go.mod h1:Fb1eVBFZmLVTMb6PPohq3TO9IIhUisDsbJoL/+uQW4s= -go.opentelemetry.io/otel/sdk v1.28.0 h1:b9d7hIry8yZsgtbmM0DKyPWMMUMlK9NEKuIG4aBqWyE= -go.opentelemetry.io/otel/sdk v1.28.0/go.mod h1:oYj7ClPUA7Iw3m+r7GeEjz0qckQRJK2B8zjcZEfu7Pg= -go.opentelemetry.io/otel/trace v1.28.0 h1:GhQ9cUuQGmNDd5BTCP2dAvv75RdMxEfTmYejp+lkx9g= -go.opentelemetry.io/otel/trace v1.28.0/go.mod h1:jPyXzNPg6da9+38HEwElrQiHlVMTnVfM3/yv2OlIHaI= +go.opentelemetry.io/otel v1.29.0 h1:PdomN/Al4q/lN6iBJEN3AwPvUiHPMlt93c8bqTG5Llw= +go.opentelemetry.io/otel v1.29.0/go.mod h1:N/WtXPs1CNCUEx+Agz5uouwCba+i+bJGFicT8SR4NP8= +go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.29.0 h1:dIIDULZJpgdiHz5tXrTgKIMLkus6jEFa7x5SOKcyR7E= +go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.29.0/go.mod h1:jlRVBe7+Z1wyxFSUs48L6OBQZ5JwH2Hg/Vbl+t9rAgI= +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.29.0 h1:nSiV3s7wiCam610XcLbYOmMfJxB9gO4uK3Xgv5gmTgg= +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.29.0/go.mod h1:hKn/e/Nmd19/x1gvIHwtOwVWM+VhuITSWip3JUDghj0= +go.opentelemetry.io/otel/metric v1.29.0 h1:vPf/HFWTNkPu1aYeIsc98l4ktOQaL6LeSoeV2g+8YLc= +go.opentelemetry.io/otel/metric v1.29.0/go.mod h1:auu/QWieFVWx+DmQOUMgj0F8LHWdgalxXqvp7BII/W8= +go.opentelemetry.io/otel/sdk v1.29.0 h1:vkqKjk7gwhS8VaWb0POZKmIEDimRCMsopNYnriHyryo= +go.opentelemetry.io/otel/sdk v1.29.0/go.mod h1:pM8Dx5WKnvxLCb+8lG1PRNIDxu9g9b9g59Qr7hfAAok= +go.opentelemetry.io/otel/trace v1.29.0 h1:J/8ZNK4XgR7a21DZUAsbF8pZ5Jcw1VhACmnYt39JTi4= +go.opentelemetry.io/otel/trace v1.29.0/go.mod h1:eHl3w0sp3paPkYstJOmAimxhiFXPg+MMTlEh3nsQgWQ= go.opentelemetry.io/proto/otlp v1.3.1 h1:TrMUixzpM0yuc/znrFTP9MMRh8trP93mkCiDVeXrui0= go.opentelemetry.io/proto/otlp v1.3.1/go.mod h1:0X1WI4de4ZsLrrJNLAQbFeLCm3T7yBkR0XqQ7niQU+8= go.starlark.net v0.0.0-20240725214946-42030a7cedce h1:YyGqCjZtGZJ+mRPaenEiB87afEO2MFRzLiJNZ0Z0bPw= @@ -710,8 +708,8 @@ golang.org/x/exp v0.0.0-20191227195350-da58074b4299/go.mod h1:2RIsYlXP63K8oxa1u0 golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EHIKF9dgMWnmCNThgcyBT1FY9mM= golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU= -golang.org/x/exp v0.0.0-20240808152545-0cdaa3abc0fa h1:ELnwvuAXPNtPk1TJRuGkI9fDTwym6AYBu0qzT8AcHdI= -golang.org/x/exp v0.0.0-20240808152545-0cdaa3abc0fa/go.mod h1:akd2r19cwCdwSwWeIdzYQGa/EZZyqcOdwWiwj5L5eKQ= +golang.org/x/exp v0.0.0-20240823005443-9b4947da3948 h1:kx6Ds3MlpiUHKj7syVnbp57++8WpuKPcR5yjLBjvLEA= +golang.org/x/exp v0.0.0-20240823005443-9b4947da3948/go.mod h1:akd2r19cwCdwSwWeIdzYQGa/EZZyqcOdwWiwj5L5eKQ= golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js= golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= @@ -1026,10 +1024,10 @@ google.golang.org/genproto v0.0.0-20210310155132-4ce2db91004e/go.mod h1:FWY/as6D google.golang.org/genproto v0.0.0-20210319143718-93e7006c17a6/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20210402141018-6c239bbf2bb1/go.mod h1:9lPAdzaEmUacj36I+k7YKbEc5CXzPIeORRgDAUOu28A= google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= -google.golang.org/genproto/googleapis/api v0.0.0-20240814211410-ddb44dafa142 h1:wKguEg1hsxI2/L3hUYrpo1RVi48K+uTyzKqprwLXsb8= -google.golang.org/genproto/googleapis/api v0.0.0-20240814211410-ddb44dafa142/go.mod h1:d6be+8HhtEtucleCbxpPW9PA9XwISACu8nvpPqF0BVo= -google.golang.org/genproto/googleapis/rpc v0.0.0-20240814211410-ddb44dafa142 h1:e7S5W7MGGLaSu8j3YjdezkZ+m1/Nm0uRVRMEMGk26Xs= -google.golang.org/genproto/googleapis/rpc v0.0.0-20240814211410-ddb44dafa142/go.mod h1:UqMtugtsSgubUsoxbuAoiCXvqvErP7Gf0so0mK9tHxU= +google.golang.org/genproto/googleapis/api v0.0.0-20240827150818-7e3bb234dfed h1:3RgNmBoI9MZhsj3QxC+AP/qQhNwpCLOvYDYYsFrhFt0= +google.golang.org/genproto/googleapis/api v0.0.0-20240827150818-7e3bb234dfed/go.mod h1:OCdP9MfskevB/rbYvHTsXTtKC+3bHWajPdoKgjcYkfo= +google.golang.org/genproto/googleapis/rpc v0.0.0-20240827150818-7e3bb234dfed h1:J6izYgfBXAI3xTKLgxzTmUltdYaLsuBxFCgDHWJ/eXg= +google.golang.org/genproto/googleapis/rpc v0.0.0-20240827150818-7e3bb234dfed/go.mod h1:UqMtugtsSgubUsoxbuAoiCXvqvErP7Gf0so0mK9tHxU= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= @@ -1050,8 +1048,8 @@ google.golang.org/grpc v1.35.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAG google.golang.org/grpc v1.36.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= google.golang.org/grpc v1.36.1/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= google.golang.org/grpc v1.38.0/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= -google.golang.org/grpc v1.65.0 h1:bs/cUb4lp1G5iImFFd3u5ixQzweKizoZJAwBNLR42lc= -google.golang.org/grpc v1.65.0/go.mod h1:WgYC2ypjlB0EiQi6wdKixMqukr6lBc0Vo+oOgjrM5ZQ= +google.golang.org/grpc v1.66.0 h1:DibZuoBznOxbDQxRINckZcUvnCEvrW9pcWIE2yF9r1c= +google.golang.org/grpc v1.66.0/go.mod h1:s3/l6xSSCURdVfAnL+TqCNMyTDAGN6+lZeVxnZR128Y= google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM= @@ -1103,8 +1101,8 @@ honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWh honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg= honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= -k8s.io/utils v0.0.0-20240711033017-18e509b52bc8 h1:pUdcCO1Lk/tbT5ztQWOBi5HBgbBP1J8+AsQnQCKsi8A= -k8s.io/utils v0.0.0-20240711033017-18e509b52bc8/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0= +k8s.io/utils v0.0.0-20240821151609-f90d01438635 h1:2wThSvJoW/Ncn9TmQEYXRnevZXi2duqHWf5OX9S3zjI= +k8s.io/utils v0.0.0-20240821151609-f90d01438635/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0= launchpad.net/gocheck v0.0.0-20140225173054-000000000087/go.mod h1:hj7XX3B/0A+80Vse0e+BUHsHMTEhd0O4cpUHr/e/BUM= launchpad.net/xmlpath v0.0.0-20130614043138-000000000004/go.mod h1:vqyExLOM3qBx7mvYRkoxjSCF945s0mbe7YynlKYXtsA= rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8= diff --git a/lxc/console.go b/lxc/console.go index 8c9077bd3c01..263fa1cca71e 100644 --- a/lxc/console.go +++ b/lxc/console.go @@ -41,7 +41,7 @@ This command allows you to interact with the boot console of an instance as well as retrieve past log entries from it.`)) cmd.RunE = c.run - cmd.Flags().BoolVar(&c.flagShowLog, "show-log", false, i18n.G("Retrieve the instance's console log")) + cmd.Flags().BoolVar(&c.flagShowLog, "show-log", false, i18n.G("Retrieve the container's console log")) cmd.Flags().StringVarP(&c.flagType, "type", "t", "console", i18n.G("Type of connection to establish: 'console' for serial console, 'vga' for SPICE graphical output")+"``") return cmd @@ -123,7 +123,7 @@ func (c *cmdConsole) run(cmd *cobra.Command, args []string) error { // Show the current log if requested if c.flagShowLog { if c.flagType != "console" { - return fmt.Errorf(i18n.G("The --show-log flag is only supported for by 'console' output type")) + return fmt.Errorf("%s", i18n.G("The --show-log flag is only supported for by 'console' output type")) } console := &lxd.InstanceConsoleLogArgs{} @@ -137,7 +137,12 @@ func (c *cmdConsole) run(cmd *cobra.Command, args []string) error { return err } - fmt.Printf("\n"+i18n.G("Console log:")+"\n\n%s\n", string(stuff)) + if len(stuff) > 0 { + fmt.Printf("%s\n", string(stuff)) + } else { + fmt.Println("No new messages") + } + return nil } @@ -207,7 +212,7 @@ func (c *cmdConsole) console(d lxd.InstanceServer, name string) error { close(consoleDisconnect) }() - fmt.Printf(i18n.G("To detach from the console, press: +a q") + "\n\r") + fmt.Printf("%s\n\r", i18n.G("To detach from the console, press: +a q")) // Attach to the instance console op, err := d.ConsoleInstance(name, req, &consoleArgs) diff --git a/lxc/main.go b/lxc/main.go index 114d86df51f1..f95e710350f6 100644 --- a/lxc/main.go +++ b/lxc/main.go @@ -2,6 +2,7 @@ package main import ( "bufio" + "errors" "fmt" "os" "os/user" @@ -89,7 +90,7 @@ For help with any of those, simply call them with --help.`)) app.CompletionOptions = cobra.CompletionOptions{DisableDefaultCmd: true} // Global flags - globalCmd := cmdGlobal{cmd: app, asker: cli.NewAsker(bufio.NewReader(os.Stdin))} + globalCmd := cmdGlobal{cmd: app, asker: cli.NewAsker(bufio.NewReader(os.Stdin), nil)} app.PersistentFlags().BoolVar(&globalCmd.flagVersion, "version", false, i18n.G("Print version number")) app.PersistentFlags().BoolVarP(&globalCmd.flagHelp, "help", "h", false, i18n.G("Print help")) app.PersistentFlags().BoolVar(&globalCmd.flagForceLocal, "force-local", false, i18n.G("Force using the local unix socket")) @@ -290,11 +291,12 @@ For help with any of those, simply call them with --help.`)) if err != nil { // Handle non-Linux systems if err == config.ErrNotLinux { - fmt.Fprintf(os.Stderr, i18n.G(`This client hasn't been configured to use a remote LXD server yet. + msg := i18n.G(`This client hasn't been configured to use a remote LXD server yet. As your platform can't run native Linux instances, you must connect to a remote LXD server. If you already added a remote server, make it the default with "lxc remote switch NAME". -To easily setup a local LXD server in a virtual machine, consider using: https://multipass.run`)+"\n") +To easily setup a local LXD server in a virtual machine, consider using: https://multipass.run`) + fmt.Fprintln(os.Stderr, msg) os.Exit(1) } @@ -358,7 +360,7 @@ func (c *cmdGlobal) PreRun(cmd *cobra.Command, args []string) error { // Setup password helper c.conf.PromptPassword = func(filename string) (string, error) { - return cli.AskPasswordOnce(fmt.Sprintf(i18n.G("Password for %s: "), filename)), nil + return c.asker.AskPasswordOnce(fmt.Sprintf(i18n.G("Password for %s: "), filename)), nil } // If the user is running a command that may attempt to connect to the local daemon @@ -395,13 +397,15 @@ func (c *cmdGlobal) PreRun(cmd *cobra.Command, args []string) error { flush := false if runInit { - fmt.Fprintf(os.Stderr, i18n.G("If this is your first time running LXD on this machine, you should also run: lxd init")+"\n") + msg := i18n.G("If this is your first time running LXD on this machine, you should also run: lxd init") + fmt.Fprintln(os.Stderr, msg) flush = true } if !shared.ValueInSlice(cmd.Name(), []string{"init", "launch"}) { - fmt.Fprintf(os.Stderr, i18n.G(`To start your first container, try: lxc launch ubuntu:24.04 -Or for a virtual machine: lxc launch ubuntu:24.04 --vm`)+"\n") + msg := i18n.G(`To start your first container, try: lxc launch ubuntu:24.04 +Or for a virtual machine: lxc launch ubuntu:24.04 --vm`) + fmt.Fprintln(os.Stderr, msg) flush = true } @@ -495,7 +499,8 @@ func (c *cmdGlobal) CheckArgs(cmd *cobra.Command, args []string, minArgs int, ma return true, nil } - return true, fmt.Errorf(i18n.G("Invalid number of arguments")) + msg := i18n.G("Invalid number of arguments") + return true, errors.New(msg) } return false, nil diff --git a/lxc/network_load_balancer.go b/lxc/network_load_balancer.go index 6413b6224af6..98f3cf420581 100644 --- a/lxc/network_load_balancer.go +++ b/lxc/network_load_balancer.go @@ -120,7 +120,7 @@ func (c *cmdNetworkLoadBalancerList) run(cmd *cobra.Command, args []string) erro resource := resources[0] if resource.name == "" { - return fmt.Errorf(i18n.G("Missing network name")) + return errors.New(i18n.G("Missing network name")) } loadBalancers, err := resource.server.GetNetworkLoadBalancers(resource.name) @@ -194,11 +194,11 @@ func (c *cmdNetworkLoadBalancerShow) run(cmd *cobra.Command, args []string) erro resource := resources[0] if resource.name == "" { - return fmt.Errorf(i18n.G("Missing network name")) + return errors.New(i18n.G("Missing network name")) } if args[1] == "" { - return fmt.Errorf(i18n.G("Missing listen address")) + return errors.New(i18n.G("Missing listen address")) } client := resource.server @@ -236,6 +236,11 @@ func (c *cmdNetworkLoadBalancerCreate) command() *cobra.Command { cmd.Use = usage("create", i18n.G("[:] [] [key=value...]")) cmd.Short = i18n.G("Create new network load balancers") cmd.Long = cli.FormatSection(i18n.G("Description"), i18n.G("Create new network load balancers")) + cmd.Example = cli.FormatSection("", i18n.G(`lxc network load-balancer create n1 127.0.0.1 + +lxc network load-balancer create n1 127.0.0.1 < config.yaml + Create network load-balancer for network n1 with configuration from config.yaml`)) + cmd.RunE = c.run cmd.Flags().StringVar(&c.networkLoadBalancer.flagTarget, "target", "", i18n.G("Cluster member name")+"``") @@ -258,7 +263,7 @@ func (c *cmdNetworkLoadBalancerCreate) run(cmd *cobra.Command, args []string) er } if networkName == "" { - return fmt.Errorf(i18n.G("Missing network name")) + return errors.New(i18n.G("Missing network name")) } transporter, wrapper := newLocationHeaderTransportWrapper() @@ -404,11 +409,11 @@ func (c *cmdNetworkLoadBalancerGet) run(cmd *cobra.Command, args []string) error client := resource.server if resource.name == "" { - return fmt.Errorf(i18n.G("Missing network name")) + return errors.New(i18n.G("Missing network name")) } if args[1] == "" { - return fmt.Errorf(i18n.G("Missing listen address")) + return errors.New(i18n.G("Missing listen address")) } // Get the current config. @@ -477,11 +482,11 @@ func (c *cmdNetworkLoadBalancerSet) run(cmd *cobra.Command, args []string) error resource := resources[0] if resource.name == "" { - return fmt.Errorf(i18n.G("Missing network name")) + return errors.New(i18n.G("Missing network name")) } if args[1] == "" { - return fmt.Errorf(i18n.G("Missing listen address")) + return errors.New(i18n.G("Missing listen address")) } client := resource.server @@ -623,11 +628,11 @@ func (c *cmdNetworkLoadBalancerEdit) run(cmd *cobra.Command, args []string) erro resource := resources[0] if resource.name == "" { - return fmt.Errorf(i18n.G("Missing network name")) + return errors.New(i18n.G("Missing network name")) } if args[1] == "" { - return fmt.Errorf(i18n.G("Missing listen address")) + return errors.New(i18n.G("Missing listen address")) } client := resource.server @@ -743,11 +748,11 @@ func (c *cmdNetworkLoadBalancerDelete) run(cmd *cobra.Command, args []string) er resource := resources[0] if resource.name == "" { - return fmt.Errorf(i18n.G("Missing network name")) + return errors.New(i18n.G("Missing network name")) } if args[1] == "" { - return fmt.Errorf(i18n.G("Missing listen address")) + return errors.New(i18n.G("Missing listen address")) } client := resource.server @@ -819,11 +824,11 @@ func (c *cmdNetworkLoadBalancerBackend) runAdd(cmd *cobra.Command, args []string resource := resources[0] if resource.name == "" { - return fmt.Errorf(i18n.G("Missing network name")) + return errors.New(i18n.G("Missing network name")) } if args[1] == "" { - return fmt.Errorf(i18n.G("Missing listen address")) + return errors.New(i18n.G("Missing listen address")) } client := resource.server @@ -883,11 +888,11 @@ func (c *cmdNetworkLoadBalancerBackend) runRemove(cmd *cobra.Command, args []str resource := resources[0] if resource.name == "" { - return fmt.Errorf(i18n.G("Missing network name")) + return errors.New(i18n.G("Missing network name")) } if args[1] == "" { - return fmt.Errorf(i18n.G("Missing listen address")) + return errors.New(i18n.G("Missing listen address")) } client := resource.server @@ -918,7 +923,7 @@ func (c *cmdNetworkLoadBalancerBackend) runRemove(cmd *cobra.Command, args []str } if !removed { - return nil, fmt.Errorf(i18n.G("No matching backend found")) + return nil, errors.New(i18n.G("No matching backend found")) } return newBackends, nil @@ -984,11 +989,11 @@ func (c *cmdNetworkLoadBalancerPort) runAdd(cmd *cobra.Command, args []string) e resource := resources[0] if resource.name == "" { - return fmt.Errorf(i18n.G("Missing network name")) + return errors.New(i18n.G("Missing network name")) } if args[1] == "" { - return fmt.Errorf(i18n.G("Missing listen address")) + return errors.New(i18n.G("Missing listen address")) } client := resource.server @@ -1046,11 +1051,11 @@ func (c *cmdNetworkLoadBalancerPort) runRemove(cmd *cobra.Command, args []string resource := resources[0] if resource.name == "" { - return fmt.Errorf(i18n.G("Missing network name")) + return errors.New(i18n.G("Missing network name")) } if args[1] == "" { - return fmt.Errorf(i18n.G("Missing listen address")) + return errors.New(i18n.G("Missing listen address")) } client := resource.server @@ -1094,7 +1099,7 @@ func (c *cmdNetworkLoadBalancerPort) runRemove(cmd *cobra.Command, args []string for _, port := range ports { if isFilterMatch(&port, filterArgs) { if removed && !c.flagRemoveForce { - return nil, fmt.Errorf(i18n.G("Multiple ports match. Use --force to remove them all")) + return nil, errors.New(i18n.G("Multiple ports match. Use --force to remove them all")) } removed = true @@ -1105,7 +1110,7 @@ func (c *cmdNetworkLoadBalancerPort) runRemove(cmd *cobra.Command, args []string } if !removed { - return nil, fmt.Errorf(i18n.G("No matching port(s) found")) + return nil, errors.New(i18n.G("No matching port(s) found")) } return newPorts, nil diff --git a/lxc/network_zone.go b/lxc/network_zone.go index d8a55951d05a..2d34108f70c8 100644 --- a/lxc/network_zone.go +++ b/lxc/network_zone.go @@ -1,6 +1,7 @@ package main import ( + "errors" "fmt" "io" "os" @@ -112,7 +113,7 @@ func (c *cmdNetworkZoneList) run(cmd *cobra.Command, args []string) error { // List the networks. if resource.name != "" { - return fmt.Errorf(i18n.G("Filtering isn't supported yet")) + return errors.New(i18n.G("Filtering isn't supported yet")) } zones, err := resource.server.GetNetworkZones() @@ -175,7 +176,7 @@ func (c *cmdNetworkZoneShow) run(cmd *cobra.Command, args []string) error { resource := resources[0] if resource.name == "" { - return fmt.Errorf(i18n.G("Missing network zone name")) + return errors.New(i18n.G("Missing network zone name")) } // Show the network zone config. @@ -231,7 +232,7 @@ func (c *cmdNetworkZoneGet) run(cmd *cobra.Command, args []string) error { resource := resources[0] if resource.name == "" { - return fmt.Errorf(i18n.G("Missing network zone name")) + return errors.New(i18n.G("Missing network zone name")) } resp, _, err := resource.server.GetNetworkZone(resource.name) @@ -269,6 +270,10 @@ func (c *cmdNetworkZoneCreate) command() *cobra.Command { cmd.Use = usage("create", i18n.G("[:] [key=value...]")) cmd.Short = i18n.G("Create new network zones") cmd.Long = cli.FormatSection(i18n.G("Description"), i18n.G("Create new network zones")) + cmd.Example = cli.FormatSection("", i18n.G(`lxc network zone create z1 + +lxc network zone create z1 < config.yaml + Create network zone z1 with configuration from config.yaml`)) cmd.RunE = c.run @@ -291,7 +296,7 @@ func (c *cmdNetworkZoneCreate) run(cmd *cobra.Command, args []string) error { resource := resources[0] if resource.name == "" { - return fmt.Errorf(i18n.G("Missing network zone name")) + return errors.New(i18n.G("Missing network zone name")) } // If stdin isn't a terminal, read yaml from it. @@ -379,7 +384,7 @@ func (c *cmdNetworkZoneSet) run(cmd *cobra.Command, args []string) error { resource := resources[0] if resource.name == "" { - return fmt.Errorf(i18n.G("Missing network zone name")) + return errors.New(i18n.G("Missing network zone name")) } // Get the network zone. @@ -500,7 +505,7 @@ func (c *cmdNetworkZoneEdit) run(cmd *cobra.Command, args []string) error { resource := resources[0] if resource.name == "" { - return fmt.Errorf(i18n.G("Missing network zone name")) + return errors.New(i18n.G("Missing network zone name")) } // If stdin isn't a terminal, read text from it @@ -603,7 +608,7 @@ func (c *cmdNetworkZoneDelete) run(cmd *cobra.Command, args []string) error { resource := resources[0] if resource.name == "" { - return fmt.Errorf(i18n.G("Missing network zone name")) + return errors.New(i18n.G("Missing network zone name")) } // Delete the network zone. @@ -709,7 +714,7 @@ func (c *cmdNetworkZoneRecordList) run(cmd *cobra.Command, args []string) error resource := resources[0] if resource.name == "" { - return fmt.Errorf(i18n.G("Missing network zone name")) + return errors.New(i18n.G("Missing network zone name")) } // List the records. @@ -777,7 +782,7 @@ func (c *cmdNetworkZoneRecordShow) run(cmd *cobra.Command, args []string) error resource := resources[0] if resource.name == "" { - return fmt.Errorf(i18n.G("Missing network zone name")) + return errors.New(i18n.G("Missing network zone name")) } // Show the network zone config. @@ -830,7 +835,7 @@ func (c *cmdNetworkZoneRecordGet) run(cmd *cobra.Command, args []string) error { resource := resources[0] if resource.name == "" { - return fmt.Errorf(i18n.G("Missing network zone record name")) + return errors.New(i18n.G("Missing network zone record name")) } resp, _, err := resource.server.GetNetworkZoneRecord(resource.name, args[1]) @@ -889,7 +894,7 @@ func (c *cmdNetworkZoneRecordCreate) run(cmd *cobra.Command, args []string) erro resource := resources[0] if resource.name == "" { - return fmt.Errorf(i18n.G("Missing network zone name")) + return errors.New(i18n.G("Missing network zone name")) } // If stdin isn't a terminal, read yaml from it. @@ -973,7 +978,7 @@ func (c *cmdNetworkZoneRecordSet) run(cmd *cobra.Command, args []string) error { resource := resources[0] if resource.name == "" { - return fmt.Errorf(i18n.G("Missing network zone name")) + return errors.New(i18n.G("Missing network zone name")) } // Get the network zone. @@ -1092,7 +1097,7 @@ func (c *cmdNetworkZoneRecordEdit) run(cmd *cobra.Command, args []string) error resource := resources[0] if resource.name == "" { - return fmt.Errorf(i18n.G("Missing network zone record name")) + return errors.New(i18n.G("Missing network zone record name")) } // If stdin isn't a terminal, read text from it @@ -1194,7 +1199,7 @@ func (c *cmdNetworkZoneRecordDelete) run(cmd *cobra.Command, args []string) erro resource := resources[0] if resource.name == "" { - return fmt.Errorf(i18n.G("Missing network zone name")) + return errors.New(i18n.G("Missing network zone name")) } // Delete the network zone. @@ -1259,7 +1264,7 @@ func (c *cmdNetworkZoneRecordEntry) runAdd(cmd *cobra.Command, args []string) er resource := resources[0] if resource.name == "" { - return fmt.Errorf(i18n.G("Missing network zone name")) + return errors.New(i18n.G("Missing network zone name")) } // Get the network record. @@ -1304,7 +1309,7 @@ func (c *cmdNetworkZoneRecordEntry) runRemove(cmd *cobra.Command, args []string) resource := resources[0] if resource.name == "" { - return fmt.Errorf(i18n.G("Missing network zone name")) + return errors.New(i18n.G("Missing network zone name")) } // Get the network zone record. @@ -1324,7 +1329,7 @@ func (c *cmdNetworkZoneRecordEntry) runRemove(cmd *cobra.Command, args []string) } if !found { - return fmt.Errorf(i18n.G("Couldn't find a matching entry")) + return errors.New(i18n.G("Couldn't find a matching entry")) } return resource.server.UpdateNetworkZoneRecord(resource.name, args[1], netRecord.Writable(), etag) diff --git a/lxc/project.go b/lxc/project.go index a6737ebd39fd..82e047235e0b 100644 --- a/lxc/project.go +++ b/lxc/project.go @@ -115,7 +115,7 @@ func (c *cmdProjectCreate) run(cmd *cobra.Command, args []string) error { resource := resources[0] if resource.name == "" { - return fmt.Errorf(i18n.G("Missing project name")) + return fmt.Errorf("%s", i18n.G("Missing project name")) } // Create the project @@ -184,7 +184,7 @@ func (c *cmdProjectDelete) run(cmd *cobra.Command, args []string) error { resource := resources[0] if resource.name == "" { - return fmt.Errorf(i18n.G("Missing project name")) + return fmt.Errorf("%s", i18n.G("Missing project name")) } // Delete the project @@ -266,7 +266,7 @@ func (c *cmdProjectEdit) run(cmd *cobra.Command, args []string) error { resource := resources[0] if resource.name == "" { - return fmt.Errorf(i18n.G("Missing project name")) + return fmt.Errorf("%s", i18n.G("Missing project name")) } // If stdin isn't a terminal, read text from it @@ -370,7 +370,7 @@ func (c *cmdProjectGet) run(cmd *cobra.Command, args []string) error { resource := resources[0] if resource.name == "" { - return fmt.Errorf(i18n.G("Missing project name")) + return fmt.Errorf("%s", i18n.G("Missing project name")) } // Get the configuration key @@ -544,7 +544,7 @@ func (c *cmdProjectRename) run(cmd *cobra.Command, args []string) error { resource := resources[0] if resource.name == "" { - return fmt.Errorf(i18n.G("Missing project name")) + return fmt.Errorf("%s", i18n.G("Missing project name")) } // Rename the project @@ -604,7 +604,7 @@ func (c *cmdProjectSet) run(cmd *cobra.Command, args []string) error { resource := resources[0] if resource.name == "" { - return fmt.Errorf(i18n.G("Missing project name")) + return fmt.Errorf("%s", i18n.G("Missing project name")) } // Get the project @@ -711,7 +711,7 @@ func (c *cmdProjectShow) run(cmd *cobra.Command, args []string) error { resource := resources[0] if resource.name == "" { - return fmt.Errorf(i18n.G("Missing project name")) + return fmt.Errorf("%s", i18n.G("Missing project name")) } // Show the project @@ -824,7 +824,7 @@ func (c *cmdProjectInfo) run(cmd *cobra.Command, args []string) error { resource := resources[0] if resource.name == "" { - return fmt.Errorf(i18n.G("Missing project name")) + return fmt.Errorf("%s", i18n.G("Missing project name")) } // Get the current allocations diff --git a/lxc/remote.go b/lxc/remote.go index e75794cd9ce6..a8d9fef93853 100644 --- a/lxc/remote.go +++ b/lxc/remote.go @@ -3,6 +3,7 @@ package main import ( "crypto/x509" "encoding/pem" + "errors" "fmt" "net" "net/http" @@ -156,7 +157,7 @@ func (c *cmdRemoteAdd) runToken(server string, token string, rawToken *api.Certi conf := c.global.conf if !conf.HasClientCertificate() { - fmt.Fprintf(os.Stderr, i18n.G("Generating a client certificate. This may take a minute...")+"\n") + fmt.Fprint(os.Stderr, i18n.G("Generating a client certificate. This may take a minute...")+"\n") err := conf.GenerateClientCertificate() if err != nil { return err @@ -179,7 +180,7 @@ func (c *cmdRemoteAdd) runToken(server string, token string, rawToken *api.Certi } fmt.Println(i18n.G("All server addresses are unavailable")) - fmt.Printf(i18n.G("Please provide an alternate server address (empty to abort):") + " ") + fmt.Print(i18n.G("Please provide an alternate server address (empty to abort):") + " ") line, err := shared.ReadStdin() if err != nil { @@ -187,7 +188,7 @@ func (c *cmdRemoteAdd) runToken(server string, token string, rawToken *api.Certi } if len(line) == 0 { - return fmt.Errorf(i18n.G("Failed to add remote")) + return errors.New(i18n.G("Failed to add remote")) } err = c.addRemoteFromToken(string(line), server, token, rawToken.Fingerprint) @@ -210,7 +211,7 @@ func (c *cmdRemoteAdd) addRemoteFromToken(addr string, server string, token stri if err != nil { certificate, err = shared.GetRemoteCertificate(addr, c.global.conf.UserAgent) if err != nil { - return api.StatusErrorf(http.StatusServiceUnavailable, i18n.G("Unavailable remote server")+": %w", err) + return api.StatusErrorf(http.StatusServiceUnavailable, "%s: %w", i18n.G("Unavailable remote server"), err) } certDigest := shared.CertFingerprint(certificate) @@ -221,7 +222,7 @@ func (c *cmdRemoteAdd) addRemoteFromToken(addr string, server string, token stri dnam := conf.ConfigPath("servercerts") err := os.MkdirAll(dnam, 0750) if err != nil { - return fmt.Errorf(i18n.G("Could not create server cert dir")) + return errors.New(i18n.G("Could not create server cert dir")) } certf := conf.ServerCertPath(server) @@ -244,7 +245,7 @@ func (c *cmdRemoteAdd) addRemoteFromToken(addr string, server string, token stri d, err := conf.GetInstanceServer(server) if err != nil { - return api.StatusErrorf(http.StatusServiceUnavailable, i18n.G("Unavailable remote server")+": %w", err) + return api.StatusErrorf(http.StatusServiceUnavailable, "%s: %w", i18n.G("Unavailable remote server"), err) } req := api.CertificatesPost{ @@ -287,12 +288,12 @@ func (c *cmdRemoteAdd) run(cmd *cobra.Command, args []string) error { } if len(addr) == 0 { - return fmt.Errorf(i18n.G("Remote address must not be empty")) + return errors.New(i18n.G("Remote address must not be empty")) } // Validate the server name. if strings.Contains(server, ":") { - return fmt.Errorf(i18n.G("Remote names may not contain colons")) + return errors.New(i18n.G("Remote names may not contain colons")) } // Check for existing remote @@ -329,7 +330,7 @@ func (c *cmdRemoteAdd) run(cmd *cobra.Command, args []string) error { // Fast track simplestreams if c.flagProtocol == "simplestreams" { if remoteURL.Scheme != "https" { - return fmt.Errorf(i18n.G("Only https URLs are supported for simplestreams")) + return errors.New(i18n.G("Only https URLs are supported for simplestreams")) } conf.Remotes[server] = config.Remote{Addr: addr, Public: true, Protocol: c.flagProtocol} @@ -394,7 +395,7 @@ func (c *cmdRemoteAdd) run(cmd *cobra.Command, args []string) error { // adding the remote server. if rScheme != "unix" && !c.flagPublic && (c.flagAuthType == api.AuthenticationMethodTLS || c.flagAuthType == "") { if !conf.HasClientCertificate() { - fmt.Fprintf(os.Stderr, i18n.G("Generating a client certificate. This may take a minute...")+"\n") + fmt.Fprint(os.Stderr, i18n.G("Generating a client certificate. This may take a minute...")+"\n") err = conf.GenerateClientCertificate() if err != nil { return err @@ -448,8 +449,8 @@ func (c *cmdRemoteAdd) run(cmd *cobra.Command, args []string) error { if !c.flagAcceptCert { digest := shared.CertFingerprint(certificate) - fmt.Printf(i18n.G("Certificate fingerprint: %s")+"\n", digest) - fmt.Printf(i18n.G("ok (y/n/[fingerprint])?") + " ") + fmt.Printf("%s: %s\n", i18n.G("Certificate fingerprint"), digest) + fmt.Print(i18n.G("ok (y/n/[fingerprint])?") + " ") line, err := shared.ReadStdin() if err != nil { return err @@ -457,9 +458,9 @@ func (c *cmdRemoteAdd) run(cmd *cobra.Command, args []string) error { if string(line) != digest { if len(line) < 1 || strings.ToLower(string(line[0])) == i18n.G("n") { - return fmt.Errorf(i18n.G("Server certificate NACKed by user")) + return errors.New(i18n.G("Server certificate NACKed by user")) } else if strings.ToLower(string(line[0])) != i18n.G("y") { - return fmt.Errorf(i18n.G("Please type 'y', 'n' or the fingerprint:")) + return errors.New(i18n.G("Please type 'y', 'n' or the fingerprint:")) } } } @@ -467,7 +468,7 @@ func (c *cmdRemoteAdd) run(cmd *cobra.Command, args []string) error { dnam := conf.ConfigPath("servercerts") err := os.MkdirAll(dnam, 0750) if err != nil { - return fmt.Errorf(i18n.G("Could not create server cert dir")) + return errors.New(i18n.G("Could not create server cert dir")) } certf := conf.ServerCertPath(server) @@ -596,7 +597,7 @@ func (c *cmdRemoteAdd) run(cmd *cobra.Command, args []string) error { } if srv.Auth != "trusted" { - return fmt.Errorf(i18n.G("Server doesn't trust us after authentication")) + return errors.New(i18n.G("Server doesn't trust us after authentication")) } if c.flagAuthType == api.AuthenticationMethodTLS { @@ -858,7 +859,7 @@ func (c *cmdRemoteRemove) run(cmd *cobra.Command, args []string) error { } if conf.DefaultRemote == args[0] { - return fmt.Errorf(i18n.G("Can't remove the default remote")) + return errors.New(i18n.G("Can't remove the default remote")) } delete(conf.Remotes, args[0]) diff --git a/lxc/storage_bucket.go b/lxc/storage_bucket.go index d0ff62420fd1..f352a93543f9 100644 --- a/lxc/storage_bucket.go +++ b/lxc/storage_bucket.go @@ -81,6 +81,11 @@ func (c *cmdStorageBucketCreate) command() *cobra.Command { cmd.Use = usage("create", i18n.G("[:] [key=value...]")) cmd.Short = i18n.G("Create new custom storage buckets") cmd.Long = cli.FormatSection(i18n.G("Description"), i18n.G(`Create new custom storage buckets`)) + cmd.Example = cli.FormatSection("", i18n.G(`lxc storage bucket create p1 b01 + Create a new storage bucket name b01 in storage pool p1 + +lxc storage bucket create p1 b01 < config.yaml + Create a new storage bucket name b01 in storage pool p1 using the content of config.yaml`)) cmd.Flags().StringVar(&c.storageBucket.flagTarget, "target", "", i18n.G("Cluster member name")+"``") cmd.RunE = c.run @@ -104,11 +109,11 @@ func (c *cmdStorageBucketCreate) run(cmd *cobra.Command, args []string) error { resource := resources[0] if resource.name == "" { - return fmt.Errorf(i18n.G("Missing pool name")) + return fmt.Errorf("%s", i18n.G("Missing pool name")) } if args[1] == "" { - return fmt.Errorf(i18n.G("Missing bucket name")) + return fmt.Errorf("%s", i18n.G("Missing bucket name")) } // If stdin isn't a terminal, read yaml from it. @@ -204,11 +209,11 @@ func (c *cmdStorageBucketDelete) run(cmd *cobra.Command, args []string) error { resource := resources[0] if resource.name == "" { - return fmt.Errorf(i18n.G("Missing pool name")) + return fmt.Errorf("%s", i18n.G("Missing pool name")) } if args[1] == "" { - return fmt.Errorf(i18n.G("Missing bucket name")) + return fmt.Errorf("%s", i18n.G("Missing bucket name")) } client := resource.server @@ -280,11 +285,11 @@ func (c *cmdStorageBucketEdit) run(cmd *cobra.Command, args []string) error { resource := resources[0] if resource.name == "" { - return fmt.Errorf(i18n.G("Missing pool name")) + return fmt.Errorf("%s", i18n.G("Missing pool name")) } if args[1] == "" { - return fmt.Errorf(i18n.G("Missing bucket name")) + return fmt.Errorf("%s", i18n.G("Missing bucket name")) } client := resource.server @@ -399,11 +404,11 @@ func (c *cmdStorageBucketGet) run(cmd *cobra.Command, args []string) error { resource := resources[0] if resource.name == "" { - return fmt.Errorf(i18n.G("Missing pool name")) + return fmt.Errorf("%s", i18n.G("Missing pool name")) } if args[1] == "" { - return fmt.Errorf(i18n.G("Missing bucket name")) + return fmt.Errorf("%s", i18n.G("Missing bucket name")) } client := resource.server @@ -474,7 +479,7 @@ func (c *cmdStorageBucketList) run(cmd *cobra.Command, args []string) error { resource := resources[0] if resource.name == "" { - return fmt.Errorf(i18n.G("Missing pool name")) + return fmt.Errorf("%s", i18n.G("Missing pool name")) } client := resource.server @@ -556,11 +561,11 @@ func (c *cmdStorageBucketSet) run(cmd *cobra.Command, args []string) error { resource := resources[0] if resource.name == "" { - return fmt.Errorf(i18n.G("Missing pool name")) + return fmt.Errorf("%s", i18n.G("Missing pool name")) } if args[1] == "" { - return fmt.Errorf(i18n.G("Missing bucket name")) + return fmt.Errorf("%s", i18n.G("Missing bucket name")) } client := resource.server @@ -648,11 +653,11 @@ func (c *cmdStorageBucketShow) run(cmd *cobra.Command, args []string) error { resource := resources[0] if resource.name == "" { - return fmt.Errorf(i18n.G("Missing pool name")) + return fmt.Errorf("%s", i18n.G("Missing pool name")) } if args[1] == "" { - return fmt.Errorf(i18n.G("Missing bucket name")) + return fmt.Errorf("%s", i18n.G("Missing bucket name")) } client := resource.server @@ -790,11 +795,11 @@ func (c *cmdStorageBucketKeyList) run(cmd *cobra.Command, args []string) error { resource := resources[0] if resource.name == "" { - return fmt.Errorf(i18n.G("Missing pool name")) + return fmt.Errorf("%s", i18n.G("Missing pool name")) } if args[1] == "" { - return fmt.Errorf(i18n.G("Missing bucket name")) + return fmt.Errorf("%s", i18n.G("Missing bucket name")) } client := resource.server @@ -871,15 +876,15 @@ func (c *cmdStorageBucketKeyCreate) runAdd(cmd *cobra.Command, args []string) er resource := resources[0] if resource.name == "" { - return fmt.Errorf(i18n.G("Missing pool name")) + return fmt.Errorf("%s", i18n.G("Missing pool name")) } if args[1] == "" { - return fmt.Errorf(i18n.G("Missing bucket name")) + return fmt.Errorf("%s", i18n.G("Missing bucket name")) } if args[2] == "" { - return fmt.Errorf(i18n.G("Missing key name")) + return fmt.Errorf("%s", i18n.G("Missing key name")) } client := resource.server @@ -946,15 +951,15 @@ func (c *cmdStorageBucketKeyDelete) runRemove(cmd *cobra.Command, args []string) resource := resources[0] if resource.name == "" { - return fmt.Errorf(i18n.G("Missing pool name")) + return fmt.Errorf("%s", i18n.G("Missing pool name")) } if args[1] == "" { - return fmt.Errorf(i18n.G("Missing bucket name")) + return fmt.Errorf("%s", i18n.G("Missing bucket name")) } if args[2] == "" { - return fmt.Errorf(i18n.G("Missing key name")) + return fmt.Errorf("%s", i18n.G("Missing key name")) } client := resource.server @@ -1025,15 +1030,15 @@ func (c *cmdStorageBucketKeyEdit) run(cmd *cobra.Command, args []string) error { resource := resources[0] if resource.name == "" { - return fmt.Errorf(i18n.G("Missing pool name")) + return fmt.Errorf("%s", i18n.G("Missing pool name")) } if args[1] == "" { - return fmt.Errorf(i18n.G("Missing bucket name")) + return fmt.Errorf("%s", i18n.G("Missing bucket name")) } if args[2] == "" { - return fmt.Errorf(i18n.G("Missing key name")) + return fmt.Errorf("%s", i18n.G("Missing key name")) } client := resource.server @@ -1148,15 +1153,15 @@ func (c *cmdStorageBucketKeyShow) run(cmd *cobra.Command, args []string) error { resource := resources[0] if resource.name == "" { - return fmt.Errorf(i18n.G("Missing pool name")) + return fmt.Errorf("%s", i18n.G("Missing pool name")) } if args[1] == "" { - return fmt.Errorf(i18n.G("Missing bucket name")) + return fmt.Errorf("%s", i18n.G("Missing bucket name")) } if args[2] == "" { - return fmt.Errorf(i18n.G("Missing key name")) + return fmt.Errorf("%s", i18n.G("Missing key name")) } client := resource.server diff --git a/lxd-migrate/main.go b/lxd-migrate/main.go index 471bcf298b98..d6982a48b890 100644 --- a/lxd-migrate/main.go +++ b/lxd-migrate/main.go @@ -28,7 +28,7 @@ func main() { app.Args = cobra.ArbitraryArgs // Global flags - globalCmd := cmdGlobal{asker: cli.NewAsker(bufio.NewReader(os.Stdin))} + globalCmd := cmdGlobal{asker: cli.NewAsker(bufio.NewReader(os.Stdin), nil)} migrateCmd.global = &globalCmd app.PersistentFlags().BoolVar(&globalCmd.flagVersion, "version", false, "Print version number") app.PersistentFlags().BoolVarP(&globalCmd.flagHelp, "help", "h", false, "Print help") diff --git a/lxd/api_cluster.go b/lxd/api_cluster.go index fbd72fb92dac..faaa1e5c584c 100644 --- a/lxd/api_cluster.go +++ b/lxd/api_cluster.go @@ -363,6 +363,10 @@ func clusterPut(d *Daemon, r *http.Request) response.Response { return response.BadRequest(fmt.Errorf("ServerName may not start with %q", targetGroupPrefix)) } + if req.ServerName == "none" { + return response.BadRequest(fmt.Errorf("ServerName cannot be %q", req.ServerName)) + } + // Disable clustering. if !req.Enabled { return clusterPutDisable(d, r, req) @@ -1329,6 +1333,10 @@ func clusterNodesPost(d *Daemon, r *http.Request) response.Response { return response.BadRequest(fmt.Errorf("This server is not clustered")) } + if req.ServerName == "none" { + return response.BadRequest(fmt.Errorf("Join token name cannot be %q", req.ServerName)) + } + expiry, err := shared.GetExpiry(time.Now(), s.GlobalConfig.ClusterJoinTokenExpiry()) if err != nil { return response.BadRequest(err) @@ -3261,6 +3269,9 @@ func evacuateClusterMember(s *state.State, gateway *cluster.Gateway, r *http.Req return err } + // Stop networks after evacuation. + networkShutdown(s) + revert.Success() return nil } @@ -3431,6 +3442,12 @@ func restoreClusterMember(d *Daemon, r *http.Request) response.Response { metadata := make(map[string]any) + // Restart the networks. + err = networkStartup(d.State()) + if err != nil { + return err + } + // Restart the local instances. for _, inst := range localInstances { // Don't start instances which were stopped by the user. diff --git a/lxd/api_internal_recover.go b/lxd/api_internal_recover.go index bcd57697fa78..173f1b004bda 100644 --- a/lxd/api_internal_recover.go +++ b/lxd/api_internal_recover.go @@ -574,12 +574,23 @@ func internalRecoverImportInstanceSnapshot(s *state.State, pool storagePools.Poo return nil, err } + snapshotExpiry := snap.Config["snapshots.expiry"] + if snapshotExpiry != "" { + expiry, err := shared.GetExpiry(snap.CreatedAt, snapshotExpiry) + if err != nil { + return nil, err + } + + snap.ExpiresAt = expiry + } + _, snapInstOp, cleanup, err := instance.CreateInternal(s, db.InstanceArgs{ Project: projectName, Architecture: arch, BaseImage: snap.Config["volatile.base_image"], Config: snap.Config, CreationDate: snap.CreatedAt, + ExpiryDate: snap.ExpiresAt, Type: instanceType, Snapshot: true, Devices: deviceConfig.NewDevices(snap.Devices), diff --git a/lxd/apparmor/instance_forkproxy.go b/lxd/apparmor/instance_forkproxy.go index 72bdc4b8f6fb..919a34537990 100644 --- a/lxd/apparmor/instance_forkproxy.go +++ b/lxd/apparmor/instance_forkproxy.go @@ -24,6 +24,9 @@ var forkproxyProfileTpl = template.Must(template.New("forkproxyProfile").Parse(` profile "{{ .name }}" flags=(attach_disconnected,mediate_deleted) { #include + # Allow processes to send us signals by default + signal (receive), + # Capabilities capability chown, capability dac_read_search, diff --git a/lxd/apparmor/instance_lxc.go b/lxd/apparmor/instance_lxc.go index c158e650d582..1a08ac7ed882 100644 --- a/lxd/apparmor/instance_lxc.go +++ b/lxd/apparmor/instance_lxc.go @@ -504,7 +504,13 @@ profile "{{ .name }}" flags=(attach_disconnected,mediate_deleted) { ### Configuration: unprivileged containers pivot_root, + # We need to allow all these filesystems because they were allowed + # for years as a result of a https://bugs.launchpad.net/apparmor/+bug/1597017 + # Now, when AppArmor is fixed, we start to get complaints that things which + # were working before stopped to work now. mount fstype=devpts, + mount fstype=proc, + mount fstype=sysfs, # Allow unlimited modification of mount propagation mount options=(rw,slave) -> /{,**}, diff --git a/lxd/apparmor/instance_qemu.go b/lxd/apparmor/instance_qemu.go index ae7d2916c3db..1d7b9bed5073 100644 --- a/lxd/apparmor/instance_qemu.go +++ b/lxd/apparmor/instance_qemu.go @@ -10,6 +10,9 @@ profile "{{ .name }}" flags=(attach_disconnected,mediate_deleted) { #include #include + # Allow processes to send us signals by default + signal (receive), + capability dac_override, capability dac_read_search, capability ipc_lock, diff --git a/lxd/apparmor/network_dnsmasq.go b/lxd/apparmor/network_dnsmasq.go index 90da44c238a9..dfc64087606f 100644 --- a/lxd/apparmor/network_dnsmasq.go +++ b/lxd/apparmor/network_dnsmasq.go @@ -14,6 +14,9 @@ profile "{{ .name }}" flags=(attach_disconnected,mediate_deleted) { #include #include + # Allow processes to send us signals by default + signal (receive), + # Capabilities capability chown, capability net_bind_service, diff --git a/lxd/apparmor/network_forkdns.go b/lxd/apparmor/network_forkdns.go index 7388cf7b3d43..45e14d88329d 100644 --- a/lxd/apparmor/network_forkdns.go +++ b/lxd/apparmor/network_forkdns.go @@ -15,6 +15,9 @@ var forkdnsProfileTpl = template.Must(template.New("forkdnsProfile").Parse(`#inc profile "{{ .name }}" flags=(attach_disconnected,mediate_deleted) { #include + # Allow processes to send us signals by default + signal (receive), + # Network access network inet dgram, network inet6 dgram, diff --git a/lxd/apparmor/pyuefivars.go b/lxd/apparmor/pyuefivars.go index 957dbc43712b..1a04b14a07aa 100644 --- a/lxd/apparmor/pyuefivars.go +++ b/lxd/apparmor/pyuefivars.go @@ -19,6 +19,9 @@ var pythonUEFIVarsProfileTpl = template.Must(template.New("pythonUEFIVarsProfile profile "{{ .name }}" flags=(attach_disconnected,mediate_deleted) { #include + # Allow processes to send us signals by default + signal (receive), + # Python locations /usr/bin/python* mixr, /bin**/*.py r, diff --git a/lxd/apparmor/qemuimg.go b/lxd/apparmor/qemuimg.go index bf357ec14103..d3abc8b826d8 100644 --- a/lxd/apparmor/qemuimg.go +++ b/lxd/apparmor/qemuimg.go @@ -22,6 +22,9 @@ var qemuImgProfileTpl = template.Must(template.New("qemuImgProfile").Parse(`#inc profile "{{ .name }}" flags=(attach_disconnected,mediate_deleted) { #include + # Allow processes to send us signals by default + signal (receive), + capability dac_override, capability dac_read_search, capability ipc_lock, diff --git a/lxd/apparmor/rsync.go b/lxd/apparmor/rsync.go index 346551dfee31..2f4786ebcea1 100644 --- a/lxd/apparmor/rsync.go +++ b/lxd/apparmor/rsync.go @@ -19,6 +19,9 @@ var rsyncProfileTpl = template.Must(template.New("rsyncProfile").Parse(`#include profile "{{ .name }}" flags=(attach_disconnected,mediate_deleted) { #include + # Allow processes to send us signals by default + signal (receive), + capability chown, capability dac_override, capability dac_read_search, diff --git a/lxd/auth/drivers/openfga.go b/lxd/auth/drivers/openfga.go index 4002e83f25b4..c7c31dcbff2e 100644 --- a/lxd/auth/drivers/openfga.go +++ b/lxd/auth/drivers/openfga.go @@ -19,6 +19,7 @@ import ( "github.com/canonical/lxd/lxd/auth" "github.com/canonical/lxd/lxd/identity" + "github.com/canonical/lxd/lxd/request" "github.com/canonical/lxd/shared" "github.com/canonical/lxd/shared/api" "github.com/canonical/lxd/shared/entity" @@ -112,7 +113,19 @@ func (e *embeddedOpenFGA) load(ctx context.Context, identityCache *identity.Cach } // CheckPermission checks whether the user who sent the request has the given entitlement on the given entity using the -// embedded OpenFGA server. +// embedded OpenFGA server. A http.StatusNotFound error is returned when the entity does not exist, or when the entity +// exists but the caller does not have permission to view it. A http.StatusForbidden error is returned if the caller has +// permission to view the entity, but does not have the given entitlement. +// +// Note: Internally we call (openfgav1.OpenFGAServiceServer).Check to implement this. Since our implementation of +// storage.OpenFGADatastore pulls data directly from the database, we need to be careful about the handling of entities +// contained within projects that do not have features enabled. For example, if the given entity URL is for a network in +// project "foo", but project "foo" does not have `features.networks=true`, then we must not use project "foo" in our +// authorization check because this network does not exist in the database. We will always expect the given entity URL +// to contain the request project name, but we expect that request.CtxEffectiveProjectName will be set in the request +// context. The driver will rewrite the project name with the effective project name for the purpose of the authorization +// check, but will not automatically allow "punching through" to the effective (default) project. An administrator can +// allow specific permissions against those entities. func (e *embeddedOpenFGA) CheckPermission(ctx context.Context, entityURL *api.URL, entitlement auth.Entitlement) error { logCtx := logger.Ctx{"entity_url": entityURL.String(), "entitlement": entitlement} ctx, cancel := context.WithTimeout(ctx, 5*time.Second) @@ -120,7 +133,7 @@ func (e *embeddedOpenFGA) CheckPermission(ctx context.Context, entityURL *api.UR // Untrusted requests are denied. if !auth.IsTrusted(ctx) { - return api.StatusErrorf(http.StatusForbidden, http.StatusText(http.StatusForbidden)) + return api.NewGenericStatusError(http.StatusForbidden) } isRoot, err := auth.IsServerAdmin(ctx, e.identityCache) @@ -175,6 +188,14 @@ func (e *embeddedOpenFGA) CheckPermission(ctx context.Context, entityURL *api.UR return fmt.Errorf("Authorization driver failed to parse entity URL %q: %w", entityURL.String(), err) } + // The project in the given URL may be for a project that does not have a feature enabled, in this case the auth check + // will fail because the resource doesn't actually exist in that project. To correct this, we use the effective project from + // the request context if present. + effectiveProject, _ := request.GetCtxValue[string](ctx, request.CtxEffectiveProjectName) + if effectiveProject != "" { + projectName = effectiveProject + } + // Construct the URL in a standardised form (adding the project parameter if it was not present). entityURL, err = entityType.URL(projectName, location, pathArguments...) if err != nil { @@ -263,13 +284,18 @@ func (e *embeddedOpenFGA) CheckPermission(ctx context.Context, entityURL *api.UR l.Info("Access denied", logger.Ctx{"http_code": responseCode}) } - return api.StatusErrorf(responseCode, http.StatusText(responseCode)) + return api.NewGenericStatusError(responseCode) } return nil } -// GetPermissionChecker returns a PermissionChecker using the embedded OpenFGA server. +// GetPermissionChecker returns an auth.PermissionChecker using the embedded OpenFGA server. +// +// Note: As with CheckPermission, we need to be careful about the usage of this function for entity types that may not +// be enabled within a project. For these cases request.CtxEffectiveProjectName must be set in the given context before +// this function is called. The returned auth.PermissionChecker will expect entity URLs to contain the request URL. These +// will be re-written to contain the effective project if set, so that they correspond to the list returned by OpenFGA. func (e *embeddedOpenFGA) GetPermissionChecker(ctx context.Context, entitlement auth.Entitlement, entityType entity.Type) (auth.PermissionChecker, error) { logCtx := logger.Ctx{"entity_type": entityType, "entitlement": entitlement} ctx, cancel := context.WithTimeout(ctx, 5*time.Second) @@ -404,6 +430,14 @@ func (e *embeddedOpenFGA) GetPermissionChecker(ctx context.Context, entitlement return false } + // The project in the given URL may be for a project that does not have a feature enabled, in this case the auth check + // will fail because the resource doesn't actually exist in that project. To correct this, we use the effective project from + // the request context if present. + effectiveProject, _ := request.GetCtxValue[string](ctx, request.CtxEffectiveProjectName) + if effectiveProject != "" { + projectName = effectiveProject + } + standardisedEntityURL, err := entityType.URL(projectName, location, pathArguments...) if err != nil { l.Error("Failed to standardise permission checker entity URL", logger.Ctx{"url": entityURL.String(), "err": err}) diff --git a/lxd/auth/drivers/tls.go b/lxd/auth/drivers/tls.go index 93d74edfae3a..dc8bcdabaad7 100644 --- a/lxd/auth/drivers/tls.go +++ b/lxd/auth/drivers/tls.go @@ -10,7 +10,6 @@ import ( "github.com/canonical/lxd/lxd/auth" "github.com/canonical/lxd/lxd/identity" - "github.com/canonical/lxd/lxd/request" "github.com/canonical/lxd/shared" "github.com/canonical/lxd/shared/api" "github.com/canonical/lxd/shared/entity" @@ -44,7 +43,7 @@ func (t *tls) load(ctx context.Context, identityCache *identity.Cache, opts Opts func (t *tls) CheckPermission(ctx context.Context, entityURL *api.URL, entitlement auth.Entitlement) error { // Untrusted requests are denied. if !auth.IsTrusted(ctx) { - return api.StatusErrorf(http.StatusForbidden, http.StatusText(http.StatusForbidden)) + return api.NewGenericStatusError(http.StatusForbidden) } isRoot, err := auth.IsServerAdmin(ctx, t.identities) @@ -148,8 +147,6 @@ func (t *tls) GetPermissionChecker(ctx context.Context, entitlement auth.Entitle return allowFunc(false), nil } - effectiveProject, _ := request.GetCtxValue[string](ctx, request.CtxEffectiveProjectName) - // Filter objects by project. return func(entityURL *api.URL) bool { eType, project, _, _, err := entity.ParseURL(entityURL.URL) @@ -164,11 +161,6 @@ func (t *tls) GetPermissionChecker(ctx context.Context, entitlement auth.Entitle return false } - // If an effective project has been set in the request context. We expect all entities to be in that project. - if effectiveProject != "" { - return project == effectiveProject - } - // Otherwise, check if the project is in the list of allowed projects for the entity. return shared.ValueInSlice(project, id.Projects) }, nil diff --git a/lxd/auth/types.go b/lxd/auth/types.go index ab6f2d80a033..8ededc2d83a3 100644 --- a/lxd/auth/types.go +++ b/lxd/auth/types.go @@ -34,9 +34,20 @@ type PermissionChecker func(entityURL *api.URL) bool // Authorizer is the primary external API for this package. type Authorizer interface { + // Driver returns the driver name. Driver() string + // CheckPermission checks if the caller has the given entitlement on the entity found at the given URL. + // + // Note: When a project does not have a feature enabled, the given URL should contain the request project, and the + // effective project for the entity should be set in the given context as request.CtxEffectiveProjectName. CheckPermission(ctx context.Context, entityURL *api.URL, entitlement Entitlement) error + + // GetPermissionChecker returns a PermissionChecker for a particular entity.Type. + // + // Note: As with CheckPermission, arguments to the returned PermissionChecker should contain the request project for + // the entity. The effective project for the entity must be set in the request context as request.CtxEffectiveProjectName + // *before* the call to GetPermissionChecker. GetPermissionChecker(ctx context.Context, entitlement Entitlement, entityType entity.Type) (PermissionChecker, error) } diff --git a/lxd/certificates.go b/lxd/certificates.go index 02f99bb2ed27..d7a5f0aace61 100644 --- a/lxd/certificates.go +++ b/lxd/certificates.go @@ -12,6 +12,7 @@ import ( "net" "net/http" "net/url" + "strings" "time" "github.com/gorilla/mux" @@ -437,6 +438,11 @@ func certificatesPost(d *Daemon, r *http.Request) response.Response { return response.BadRequest(err) } + // Validate name. + if strings.HasPrefix(req.Name, "-") || strings.Contains(req.Name, "/") { + return response.BadRequest(fmt.Errorf("Invalid certificate name %q, name must not start with a hyphen or contain forward slashes", req.Name)) + } + localHTTPSAddress := s.LocalConfig.HTTPSAddress() // Quick check. diff --git a/lxd/daemon.go b/lxd/daemon.go index 4ecdac10bf4b..4e183f057ae5 100644 --- a/lxd/daemon.go +++ b/lxd/daemon.go @@ -1377,7 +1377,7 @@ func (d *Daemon) init() error { return fmt.Errorf("Failed loading containers to restart: %w", err) } - instancesShutdown(s, instances) + instancesShutdown(instances) instancesStart(s, instances) } @@ -1600,10 +1600,13 @@ func (d *Daemon) init() error { }) // Setup the networks. - logger.Infof("Initializing networks") - err = networkStartup(d.State()) - if err != nil { - return err + if !d.db.Cluster.LocalNodeIsEvacuated() { + logger.Infof("Initializing networks") + + err = networkStartup(d.State()) + if err != nil { + return err + } } // Setup tertiary listeners that may use managed network addresses and must be started after networks. @@ -1938,7 +1941,7 @@ func (d *Daemon) Stop(ctx context.Context, sig os.Signal) error { // Full shutdown requested. if sig == unix.SIGPWR { - instancesShutdown(s, instances) + instancesShutdown(instances) logger.Info("Stopping networks") networkShutdown(s) diff --git a/lxd/device/device_utils_disk.go b/lxd/device/device_utils_disk.go index 224e6f817056..ba583048b295 100644 --- a/lxd/device/device_utils_disk.go +++ b/lxd/device/device_utils_disk.go @@ -75,24 +75,6 @@ func BlockFsDetect(dev string) (string, error) { return strings.TrimSpace(out), nil } -// IsBlockdev returns boolean indicating whether device is block type. -func IsBlockdev(path string) bool { - // Get a stat struct from the provided path - stat := unix.Stat_t{} - err := unix.Stat(path, &stat) - if err != nil { - return false - } - - // Check if it's a block device - if stat.Mode&unix.S_IFMT == unix.S_IFBLK { - return true - } - - // Not a device - return false -} - // DiskMount mounts a disk device. func DiskMount(srcPath string, dstPath string, recursive bool, propagation string, mountOptions []string, fsName string) error { var err error diff --git a/lxd/device/gpu_physical.go b/lxd/device/gpu_physical.go index 58302aeeb496..92d859f428d2 100644 --- a/lxd/device/gpu_physical.go +++ b/lxd/device/gpu_physical.go @@ -396,21 +396,21 @@ func (d *gpuPhysical) postStop() error { // deviceNumStringToUint32 converts a device number string (major:minor) into separare major and // minor uint32s. -func (d *gpuPhysical) deviceNumStringToUint32(devNum string) (uint32, uint32, error) { +func (d *gpuPhysical) deviceNumStringToUint32(devNum string) (major uint32, minor uint32, err error) { devParts := strings.SplitN(devNum, ":", 2) tmp, err := strconv.ParseUint(devParts[0], 10, 32) if err != nil { return 0, 0, err } - major := uint32(tmp) + major = uint32(tmp) tmp, err = strconv.ParseUint(devParts[1], 10, 32) if err != nil { return 0, 0, err } - minor := uint32(tmp) + minor = uint32(tmp) return major, minor, nil } diff --git a/lxd/device/nic_ovn.go b/lxd/device/nic_ovn.go index 86dccf5e30f3..82718ca31037 100644 --- a/lxd/device/nic_ovn.go +++ b/lxd/device/nic_ovn.go @@ -37,8 +37,7 @@ type ovnNet interface { InstanceDevicePortValidateExternalRoutes(deviceInstance instance.Instance, deviceName string, externalRoutes []*net.IPNet) error InstanceDevicePortAdd(instanceUUID string, deviceName string, deviceConfig deviceConfig.Device) error - InstanceDevicePortStart(opts *network.OVNInstanceNICSetupOpts, securityACLsRemove []string) (openvswitch.OVNSwitchPort, []net.IP, error) - InstanceDevicePortStop(ovsExternalOVNPort openvswitch.OVNSwitchPort, opts *network.OVNInstanceNICStopOpts) error + InstanceDevicePortStart(opts *network.OVNInstanceNICSetupOpts, securityACLsRemove []string) (openvswitch.OVNSwitchPort, error) InstanceDevicePortRemove(instanceUUID string, deviceName string, deviceConfig deviceConfig.Device) error InstanceDevicePortIPs(instanceUUID string, deviceName string) ([]net.IP, error) } @@ -344,7 +343,41 @@ func (d *nicOVN) checkAddressConflict() error { // Add is run when a device is added to a non-snapshot instance whether or not the instance is running. func (d *nicOVN) Add() error { - return d.network.InstanceDevicePortAdd(d.inst.LocalConfig()["volatile.uuid"], d.name, d.config) + networkVethFillFromVolatile(d.config, d.volatileGet()) + + // Load uplink network config. + uplinkNetworkName := d.network.Config()["network"] + + var err error + var uplink *api.Network + + err = d.state.DB.Cluster.Transaction(context.TODO(), func(ctx context.Context, tx *db.ClusterTx) error { + _, uplink, _, err = tx.GetNetworkInAnyState(ctx, api.ProjectDefaultName, uplinkNetworkName) + + return err + }) + if err != nil { + return fmt.Errorf("Failed to load uplink network %q: %w", uplinkNetworkName, err) + } + + err = d.network.InstanceDevicePortAdd(d.inst.LocalConfig()["volatile.uuid"], d.name, d.config) + if err != nil { + return err + } + + // Add new OVN logical switch port for instance. + _, err = d.network.InstanceDevicePortStart(&network.OVNInstanceNICSetupOpts{ + InstanceUUID: d.inst.LocalConfig()["volatile.uuid"], + DNSName: d.inst.Name(), + DeviceName: d.name, + DeviceConfig: d.config, + UplinkConfig: uplink.Config, + }, nil) + if err != nil { + return fmt.Errorf("Failed setting up OVN port: %w", err) + } + + return nil } // PreStartCheck checks the managed parent network is available (if relevant). @@ -555,53 +588,18 @@ func (d *nicOVN) Start() (*deviceConfig.RunConfig, error) { // Populate device config with volatile fields if needed. networkVethFillFromVolatile(d.config, saveData) - v := d.volatileGet() - - // Retrieve any last state IPs from volatile and pass them to OVN driver for potential use with sticky - // DHCPv4 allocations. - var lastStateIPs []net.IP - for _, ipStr := range shared.SplitNTrimSpace(v["last_state.ip_addresses"], ",", -1, true) { - lastStateIP := net.ParseIP(ipStr) - if lastStateIP != nil { - lastStateIPs = append(lastStateIPs, lastStateIP) - } - } - // Add new OVN logical switch port for instance. - logicalPortName, dnsIPs, err := d.network.InstanceDevicePortStart(&network.OVNInstanceNICSetupOpts{ + logicalPortName, err := d.network.InstanceDevicePortStart(&network.OVNInstanceNICSetupOpts{ InstanceUUID: d.inst.LocalConfig()["volatile.uuid"], DNSName: d.inst.Name(), DeviceName: d.name, DeviceConfig: d.config, UplinkConfig: uplink.Config, - LastStateIPs: lastStateIPs, // Pass in volatile last state IPs for use with sticky DHCPv4 hint. }, nil) if err != nil { return nil, fmt.Errorf("Failed setting up OVN port: %w", err) } - // Record switch port DNS IPs to volatile so they can be used as sticky DHCPv4 hint in the future in order - // to allocate the same IPs on next start if they are still available/appropriate. - // This volatile key will not be removed when instance stops. - var dnsIPsStr strings.Builder - for i, dnsIP := range dnsIPs { - if i > 0 { - dnsIPsStr.WriteString(",") - } - - dnsIPsStr.WriteString(dnsIP.String()) - } - - saveData["last_state.ip_addresses"] = dnsIPsStr.String() - - revert.Add(func() { - _ = d.network.InstanceDevicePortStop("", &network.OVNInstanceNICStopOpts{ - InstanceUUID: d.inst.LocalConfig()["volatile.uuid"], - DeviceName: d.name, - DeviceConfig: d.config, - }) - }) - // Associated host side interface to OVN logical switch port (if not nested). if integrationBridgeNICName != "" { cleanup, err := d.setupHostNIC(integrationBridgeNICName, logicalPortName) @@ -760,7 +758,7 @@ func (d *nicOVN) Update(oldDevices deviceConfig.Devices, isRunning bool) error { } // Update OVN logical switch port for instance. - _, _, err = d.network.InstanceDevicePortStart(&network.OVNInstanceNICSetupOpts{ + _, err = d.network.InstanceDevicePortStart(&network.OVNInstanceNICSetupOpts{ InstanceUUID: d.inst.LocalConfig()["volatile.uuid"], DNSName: d.inst.Name(), DeviceName: d.name, @@ -835,19 +833,8 @@ func (d *nicOVN) Stop() (*deviceConfig.RunConfig, error) { var err error - // Try and retrieve the last associated OVN switch port for the instance interface in the local OVS DB. - // If we cannot get this, don't fail, as InstanceDevicePortStop will then try and generate the likely - // port name using the same regime it does for new ports. This part is only here in order to allow - // instance ports generated under an older regime to be cleaned up properly. networkVethFillFromVolatile(d.config, v) ovs := openvswitch.NewOVS() - var ovsExternalOVNPort openvswitch.OVNSwitchPort - if d.config["nested"] == "" { - ovsExternalOVNPort, err = ovs.InterfaceAssociatedOVNSwitchPort(d.config["host_name"]) - if err != nil { - d.logger.Warn("Could not find OVN Switch port associated to OVS interface", logger.Ctx{"interface": d.config["host_name"]}) - } - } integrationBridgeNICName := d.config["host_name"] if d.config["acceleration"] == "sriov" || d.config["acceleration"] == "vdpa" { @@ -872,20 +859,6 @@ func (d *nicOVN) Stop() (*deviceConfig.RunConfig, error) { } } - // If the devices config is invalid validateConfig() won't populate this field. - if d.network != nil { - instanceUUID := d.inst.LocalConfig()["volatile.uuid"] - err = d.network.InstanceDevicePortStop(ovsExternalOVNPort, &network.OVNInstanceNICStopOpts{ - InstanceUUID: instanceUUID, - DeviceName: d.name, - DeviceConfig: d.config, - }) - if err != nil { - // Don't fail here as we still want the postStop hook to run to clean up the local veth pair. - d.logger.Error("Failed to remove OVN device port", logger.Ctx{"err": err}) - } - } - // Remove BGP announcements. err = bgpRemovePrefix(&d.deviceCommon, d.config) if err != nil { diff --git a/lxd/device/nic_physical.go b/lxd/device/nic_physical.go index be5db45d14db..98804bf4c607 100644 --- a/lxd/device/nic_physical.go +++ b/lxd/device/nic_physical.go @@ -4,6 +4,7 @@ import ( "fmt" "net" "strconv" + "strings" deviceConfig "github.com/canonical/lxd/lxd/device/config" pcidev "github.com/canonical/lxd/lxd/device/pci" @@ -11,6 +12,7 @@ import ( "github.com/canonical/lxd/lxd/instance/instancetype" "github.com/canonical/lxd/lxd/ip" "github.com/canonical/lxd/lxd/network" + "github.com/canonical/lxd/lxd/resources" "github.com/canonical/lxd/lxd/util" "github.com/canonical/lxd/shared" "github.com/canonical/lxd/shared/api" @@ -198,10 +200,15 @@ func (d *nicPhysical) Start() (*deviceConfig.RunConfig, error) { } } } else if d.inst.Type() == instancetype.VM { - // Get PCI information about the network interface. + // Try to get PCI information about the network interface. ueventPath := fmt.Sprintf("/sys/class/net/%s/device/uevent", saveData["host_name"]) pciDev, err := pcidev.ParseUeventFile(ueventPath) if err != nil { + if err == pcidev.ErrDeviceIsUSB { + // Device is USB rather than PCI. + return d.startVMUSB(saveData["host_name"]) + } + return nil, fmt.Errorf("Failed to get PCI device info for %q: %w", saveData["host_name"], err) } @@ -245,14 +252,87 @@ func (d *nicPhysical) Start() (*deviceConfig.RunConfig, error) { return &runConf, nil } +func (d *nicPhysical) startVMUSB(name string) (*deviceConfig.RunConfig, error) { + // Get the list of network interfaces. + interfaces, err := resources.GetNetwork() + if err != nil { + return nil, err + } + + // Look for our USB device. + var addr string + for _, card := range interfaces.Cards { + for _, port := range card.Ports { + if port.ID == name { + addr = card.USBAddress + break + } + } + + if addr != "" { + break + } + } + + if addr == "" { + return nil, fmt.Errorf("Failed to get USB device info for %q", name) + } + + // Parse the USB address. + fields := strings.Split(addr, ":") + if len(fields) != 2 { + return nil, fmt.Errorf("Bad USB device info for %q", name) + } + + usbBus, err := strconv.Atoi(fields[0]) + if err != nil { + return nil, fmt.Errorf("Bad USB device info for %q: %w", name, err) + } + + usbDev, err := strconv.Atoi(fields[1]) + if err != nil { + return nil, fmt.Errorf("Bad USB device info for %q: %w", name, err) + } + + // Record the addresses. + saveData := map[string]string{} + saveData["last_state.usb.bus"] = fmt.Sprintf("%03d", usbBus) + saveData["last_state.usb.device"] = fmt.Sprintf("%03d", usbDev) + + err = d.volatileSet(saveData) + if err != nil { + return nil, err + } + + // Generate a config. + runConf := deviceConfig.RunConfig{} + runConf.USBDevice = append(runConf.USBDevice, deviceConfig.USBDeviceItem{ + DeviceName: fmt.Sprintf("%s-%03d-%03d", d.name, usbBus, usbDev), + HostDevicePath: fmt.Sprintf("/dev/bus/usb/%03d/%03d", usbBus, usbDev), + }) + + return &runConf, nil +} + // Stop is run when the device is removed from the instance. func (d *nicPhysical) Stop() (*deviceConfig.RunConfig, error) { v := d.volatileGet() + runConf := deviceConfig.RunConfig{ PostHooks: []func() error{d.postStop}, - NetworkInterface: []deviceConfig.RunConfigItem{ + } + + if v["last_state.usb.bus"] != "" && v["last_state.usb.device"] != "" { + // Handle USB NICs. + runConf.USBDevice = append(runConf.USBDevice, deviceConfig.USBDeviceItem{ + DeviceName: fmt.Sprintf("%s-%s-%s", d.name, v["last_state.usb.bus"], v["last_state.usb.device"]), + HostDevicePath: fmt.Sprintf("/dev/bus/usb/%s/%s", v["last_state.usb.bus"], v["last_state.usb.device"]), + }) + } else { + // Handle all other NICs. + runConf.NetworkInterface = []deviceConfig.RunConfigItem{ {Key: "link", Value: v["host_name"]}, - }, + } } return &runConf, nil @@ -268,6 +348,8 @@ func (d *nicPhysical) postStop() error { "last_state.created": "", "last_state.pci.slot.name": "", "last_state.pci.driver": "", + "last_state.usb.bus": "", + "last_state.usb.device": "", }) }() diff --git a/lxd/device/pci/pci.go b/lxd/device/pci/pci.go index cdf419d4fcc7..e02edadc2c0f 100644 --- a/lxd/device/pci/pci.go +++ b/lxd/device/pci/pci.go @@ -13,6 +13,9 @@ import ( "github.com/canonical/lxd/shared/revert" ) +// ErrDeviceIsUSB is returned when dealing with a USB device. +var ErrDeviceIsUSB = fmt.Errorf("Device is USB instead of PCI") + // Device represents info about a PCI uevent device. type Device struct { ID string @@ -40,6 +43,8 @@ func ParseUeventFile(ueventFilePath string) (Device, error) { dev.SlotName = fields[1] } else if fields[0] == "PCI_ID" { dev.ID = fields[1] + } else if fields[0] == "DEVTYPE" && fields[1] == "usb_interface" { + return dev, ErrDeviceIsUSB } else if fields[0] == "DRIVER" { dev.Driver = fields[1] } diff --git a/lxd/devlxd.go b/lxd/devlxd.go index 5940d729cbb6..551a5fba9d1b 100644 --- a/lxd/devlxd.go +++ b/lxd/devlxd.go @@ -249,7 +249,7 @@ func devlxdAPIHandlerFunc(d *Daemon, c instance.Instance, w http.ResponseWriter, err := json.NewDecoder(r.Body).Decode(&req) if err != nil { - return response.DevLxdErrorResponse(api.StatusErrorf(http.StatusBadRequest, err.Error()), c.Type() == instancetype.VM) + return response.DevLxdErrorResponse(api.StatusErrorf(http.StatusBadRequest, "Invalid request body: %w", err), c.Type() == instancetype.VM) } state := api.StatusCodeFromString(req.State) @@ -260,7 +260,7 @@ func devlxdAPIHandlerFunc(d *Daemon, c instance.Instance, w http.ResponseWriter, err = c.VolatileSet(map[string]string{"volatile.last_state.ready": strconv.FormatBool(state == api.Ready)}) if err != nil { - return response.DevLxdErrorResponse(api.StatusErrorf(http.StatusInternalServerError, err.Error()), c.Type() == instancetype.VM) + return response.DevLxdErrorResponse(api.StatusErrorf(http.StatusInternalServerError, "Failed to set instance state: %w", err), c.Type() == instancetype.VM) } if state == api.Ready { @@ -270,7 +270,7 @@ func devlxdAPIHandlerFunc(d *Daemon, c instance.Instance, w http.ResponseWriter, return response.DevLxdResponse(http.StatusOK, "", "raw", c.Type() == instancetype.VM) } - return response.DevLxdErrorResponse(api.StatusErrorf(http.StatusMethodNotAllowed, fmt.Sprintf("method %q not allowed", r.Method)), c.Type() == instancetype.VM) + return response.DevLxdErrorResponse(api.StatusErrorf(http.StatusMethodNotAllowed, "method %q not allowed", r.Method), c.Type() == instancetype.VM) } var devlxdDevicesGet = devLxdHandler{ diff --git a/lxd/events.go b/lxd/events.go index f91d08b4faea..1a814b5fd8b0 100644 --- a/lxd/events.go +++ b/lxd/events.go @@ -61,6 +61,14 @@ func eventsSocket(s *state.State, r *http.Request, w http.ResponseWriter) error } } + // Notes on authorization for events: + // - Checks are currently performed at the project level. Fine-grained auth uses `can_view_events` on the project, + // TLS auth checks if a restricted identity has access to the project against which the event is defined. + // - If project "foo" does not have a particular feature enabled, say 'features.networks', if a network is updated + // via project "foo", no events will be emitted in project "foo" relating to the network. They will only be emitted + // in project "default". In order to get all related events, TLS users must be granted access to the default project, + // fine-grained users can be granted `can_view_events` on the default project. Both must call the events API with + // `all-projects=true`. var projectPermissionFunc auth.PermissionChecker if projectName != "" { err := s.Authorizer.CheckPermission(r.Context(), entity.ProjectURL(projectName), auth.EntitlementCanViewEvents) diff --git a/lxd/images.go b/lxd/images.go index 341ae033a6d6..09528d6edaa8 100644 --- a/lxd/images.go +++ b/lxd/images.go @@ -66,46 +66,147 @@ var imagesCmd = APIEndpoint{ var imageCmd = APIEndpoint{ Path: "images/{fingerprint}", - Delete: APIEndpointAction{Handler: imageDelete, AccessHandler: allowPermission(entity.TypeImage, auth.EntitlementCanDelete, "fingerprint")}, + Delete: APIEndpointAction{Handler: imageDelete, AccessHandler: imageAccessHandler(auth.EntitlementCanDelete)}, Get: APIEndpointAction{Handler: imageGet, AllowUntrusted: true}, - Patch: APIEndpointAction{Handler: imagePatch, AccessHandler: allowPermission(entity.TypeImage, auth.EntitlementCanEdit, "fingerprint")}, - Put: APIEndpointAction{Handler: imagePut, AccessHandler: allowPermission(entity.TypeImage, auth.EntitlementCanEdit, "fingerprint")}, + Patch: APIEndpointAction{Handler: imagePatch, AccessHandler: imageAccessHandler(auth.EntitlementCanEdit)}, + Put: APIEndpointAction{Handler: imagePut, AccessHandler: imageAccessHandler(auth.EntitlementCanEdit)}, } var imageExportCmd = APIEndpoint{ Path: "images/{fingerprint}/export", Get: APIEndpointAction{Handler: imageExport, AllowUntrusted: true}, - Post: APIEndpointAction{Handler: imageExportPost, AccessHandler: allowPermission(entity.TypeImage, auth.EntitlementCanEdit, "fingerprint")}, + Post: APIEndpointAction{Handler: imageExportPost, AccessHandler: imageAccessHandler(auth.EntitlementCanEdit)}, } var imageSecretCmd = APIEndpoint{ Path: "images/{fingerprint}/secret", - Post: APIEndpointAction{Handler: imageSecret, AccessHandler: allowPermission(entity.TypeImage, auth.EntitlementCanEdit, "fingerprint")}, + Post: APIEndpointAction{Handler: imageSecret, AccessHandler: imageAccessHandler(auth.EntitlementCanEdit)}, } var imageRefreshCmd = APIEndpoint{ Path: "images/{fingerprint}/refresh", - Post: APIEndpointAction{Handler: imageRefresh, AccessHandler: allowPermission(entity.TypeImage, auth.EntitlementCanEdit, "fingerprint")}, + Post: APIEndpointAction{Handler: imageRefresh, AccessHandler: imageAccessHandler(auth.EntitlementCanEdit)}, } var imageAliasesCmd = APIEndpoint{ Path: "images/aliases", - Get: APIEndpointAction{Handler: imageAliasesGet, AccessHandler: allowAuthenticated}, + Get: APIEndpointAction{Handler: imageAliasesGet, AccessHandler: allowProjectResourceList}, Post: APIEndpointAction{Handler: imageAliasesPost, AccessHandler: allowPermission(entity.TypeProject, auth.EntitlementCanCreateImageAliases)}, } var imageAliasCmd = APIEndpoint{ Path: "images/aliases/{name:.*}", - Delete: APIEndpointAction{Handler: imageAliasDelete, AccessHandler: allowPermission(entity.TypeImageAlias, auth.EntitlementCanDelete, "name")}, + Delete: APIEndpointAction{Handler: imageAliasDelete, AccessHandler: imageAliasAccessHandler(auth.EntitlementCanDelete)}, Get: APIEndpointAction{Handler: imageAliasGet, AllowUntrusted: true}, - Patch: APIEndpointAction{Handler: imageAliasPatch, AccessHandler: allowPermission(entity.TypeImageAlias, auth.EntitlementCanEdit, "name")}, - Post: APIEndpointAction{Handler: imageAliasPost, AccessHandler: allowPermission(entity.TypeImageAlias, auth.EntitlementCanEdit, "name")}, - Put: APIEndpointAction{Handler: imageAliasPut, AccessHandler: allowPermission(entity.TypeImageAlias, auth.EntitlementCanEdit, "name")}, + Patch: APIEndpointAction{Handler: imageAliasPatch, AccessHandler: imageAliasAccessHandler(auth.EntitlementCanEdit)}, + Post: APIEndpointAction{Handler: imageAliasPost, AccessHandler: imageAliasAccessHandler(auth.EntitlementCanEdit)}, + Put: APIEndpointAction{Handler: imageAliasPut, AccessHandler: imageAliasAccessHandler(auth.EntitlementCanEdit)}, +} + +const ctxImageDetails request.CtxKey = "image-details" + +// imageDetails contains fields that are determined prior to the access check. This is set in the request context when +// addImageDetailsToRequestContext is called. +type imageDetails struct { + imageFingerprintPrefix string + imageID int + image api.Image +} + +// addImageDetailsToRequestContext sets request.CtxEffectiveProjectName (string) and ctxImageDetails (imageDetails) +// in the request context. +func addImageDetailsToRequestContext(s *state.State, r *http.Request) error { + imageFingerprintPrefix, err := url.PathUnescape(mux.Vars(r)["fingerprint"]) + if err != nil { + return err + } + + requestProjectName := request.ProjectParam(r) + effectiveProjectName := requestProjectName + var imageID int + var image *api.Image + err = s.DB.Cluster.Transaction(r.Context(), func(ctx context.Context, tx *db.ClusterTx) error { + effectiveProjectName, err = projectutils.ImageProject(ctx, tx.Tx(), requestProjectName) + if err != nil { + return err + } + + imageID, image, err = tx.GetImageByFingerprintPrefix(ctx, imageFingerprintPrefix, dbCluster.ImageFilter{Project: &requestProjectName}) + if err != nil { + return err + } + + return nil + }) + if err != nil { + return fmt.Errorf("Failed to check project %q image feature: %w", requestProjectName, err) + } + + request.SetCtxValue(r, request.CtxEffectiveProjectName, effectiveProjectName) + request.SetCtxValue(r, ctxImageDetails, imageDetails{ + imageFingerprintPrefix: imageFingerprintPrefix, + imageID: imageID, + image: *image, + }) + + return nil +} + +func imageAccessHandler(entitlement auth.Entitlement) func(d *Daemon, r *http.Request) response.Response { + return func(d *Daemon, r *http.Request) response.Response { + s := d.State() + err := addImageDetailsToRequestContext(s, r) + if err != nil { + return response.SmartError(err) + } + + details, err := request.GetCtxValue[imageDetails](r.Context(), ctxImageDetails) + if err != nil { + return response.SmartError(err) + } + + err = s.Authorizer.CheckPermission(r.Context(), entity.ImageURL(request.ProjectParam(r), details.image.Fingerprint), entitlement) + if err != nil { + return response.SmartError(err) + } + + return response.EmptySyncResponse + } +} + +func imageAliasAccessHandler(entitlement auth.Entitlement) func(d *Daemon, r *http.Request) response.Response { + return func(d *Daemon, r *http.Request) response.Response { + imageAliasName, err := url.PathUnescape(mux.Vars(r)["name"]) + if err != nil { + return response.SmartError(err) + } + + requestProjectName := request.ProjectParam(r) + var effectiveProjectName string + s := d.State() + err = s.DB.Cluster.Transaction(r.Context(), func(ctx context.Context, tx *db.ClusterTx) error { + effectiveProjectName, err = projectutils.ImageProject(ctx, tx.Tx(), requestProjectName) + return err + }) + if err != nil && api.StatusErrorCheck(err, http.StatusNotFound) { + return response.NotFound(nil) + } else if err != nil { + return response.SmartError(err) + } + + request.SetCtxValue(r, request.CtxEffectiveProjectName, effectiveProjectName) + err = s.Authorizer.CheckPermission(r.Context(), entity.ImageAliasURL(requestProjectName, imageAliasName), entitlement) + if err != nil { + return response.SmartError(err) + } + + return response.EmptySyncResponse + } } /* @@ -1615,16 +1716,9 @@ func imagesGet(d *Daemon, r *http.Request) response.Response { s := d.State() var effectiveProjectName string err := s.DB.Cluster.Transaction(r.Context(), func(ctx context.Context, tx *db.ClusterTx) error { - hasImages, err := dbCluster.ProjectHasImages(ctx, tx.Tx(), projectName) - if err != nil { - return err - } - - if !hasImages { - effectiveProjectName = api.ProjectDefaultName - } - - return nil + var err error + effectiveProjectName, err = projectutils.ImageProject(ctx, tx.Tx(), projectName) + return err }) if err != nil { return response.SmartError(err) @@ -2655,21 +2749,7 @@ func imageDelete(d *Daemon, r *http.Request) response.Response { projectName := request.ProjectParam(r) - fingerprint, err := url.PathUnescape(mux.Vars(r)["fingerprint"]) - if err != nil { - return response.SmartError(err) - } - - var imgID int - var imgInfo *api.Image - - err = s.DB.Cluster.Transaction(context.TODO(), func(ctx context.Context, tx *db.ClusterTx) error { - // Use the fingerprint we received in a LIKE query and use the full - // fingerprint we receive from the database in all further queries. - imgID, imgInfo, err = tx.GetImage(ctx, fingerprint, dbCluster.ImageFilter{Project: &projectName}) - - return err - }) + details, err := request.GetCtxValue[imageDetails](r.Context(), ctxImageDetails) if err != nil { return response.SmartError(err) } @@ -2677,7 +2757,7 @@ func imageDelete(d *Daemon, r *http.Request) response.Response { do := func(op *operations.Operation) error { // Lock this operation to ensure that concurrent image operations don't conflict. // Other operations will wait for this one to finish. - unlock, err := imageOperationLock(imgInfo.Fingerprint) + unlock, err := imageOperationLock(details.image.Fingerprint) if err != nil { return err } @@ -2689,7 +2769,7 @@ func imageDelete(d *Daemon, r *http.Request) response.Response { err = s.DB.Cluster.Transaction(context.TODO(), func(ctx context.Context, tx *db.ClusterTx) error { // Check image still exists and another request hasn't removed it since we resolved the image // fingerprint above. - exist, err = tx.ImageExists(ctx, projectName, imgInfo.Fingerprint) + exist, err = tx.ImageExists(ctx, projectName, details.image.Fingerprint) return err }) @@ -2709,13 +2789,13 @@ func imageDelete(d *Daemon, r *http.Request) response.Response { // referenced by other projects. In that case we don't want to // physically delete it just yet, but just to remove the // relevant database entry. - referenced, err = tx.ImageIsReferencedByOtherProjects(ctx, projectName, imgInfo.Fingerprint) + referenced, err = tx.ImageIsReferencedByOtherProjects(ctx, projectName, details.image.Fingerprint) if err != nil { return err } if referenced { - err = tx.DeleteImage(ctx, imgID) + err = tx.DeleteImage(ctx, details.imageID) if err != nil { return fmt.Errorf("Error deleting image info from the database: %w", err) } @@ -2738,7 +2818,7 @@ func imageDelete(d *Daemon, r *http.Request) response.Response { } err = notifier(func(client lxd.InstanceServer) error { - op, err := client.UseProject(projectName).DeleteImage(imgInfo.Fingerprint) + op, err := client.UseProject(projectName).DeleteImage(details.image.Fingerprint) if err != nil { return fmt.Errorf("Failed to request to delete image from peer node: %w", err) } @@ -2760,7 +2840,7 @@ func imageDelete(d *Daemon, r *http.Request) response.Response { err = s.DB.Cluster.Transaction(context.TODO(), func(ctx context.Context, tx *db.ClusterTx) error { // Delete the pool volumes. - poolIDs, err = tx.GetPoolsWithImage(ctx, imgInfo.Fingerprint) + poolIDs, err = tx.GetPoolsWithImage(ctx, details.image.Fingerprint) if err != nil { return err } @@ -2779,14 +2859,14 @@ func imageDelete(d *Daemon, r *http.Request) response.Response { for _, poolName := range poolNames { pool, err := storagePools.LoadByName(s, poolName) if err != nil { - return fmt.Errorf("Error loading storage pool %q to delete image %q: %w", poolName, imgInfo.Fingerprint, err) + return fmt.Errorf("Error loading storage pool %q to delete image %q: %w", poolName, details.image.Fingerprint, err) } // Only perform the deletion of remote volumes on the server handling the request. if !isClusterNotification(r) || !pool.Driver().Info().Remote { - err = pool.DeleteImage(imgInfo.Fingerprint, op) + err = pool.DeleteImage(details.image.Fingerprint, op) if err != nil { - return fmt.Errorf("Error deleting image %q from storage pool %q: %w", imgInfo.Fingerprint, pool.Name(), err) + return fmt.Errorf("Error deleting image %q from storage pool %q: %w", details.image.Fingerprint, pool.Name(), err) } } } @@ -2794,7 +2874,7 @@ func imageDelete(d *Daemon, r *http.Request) response.Response { // Remove the database entry. if !isClusterNotification(r) { err = s.DB.Cluster.Transaction(context.TODO(), func(ctx context.Context, tx *db.ClusterTx) error { - return tx.DeleteImage(ctx, imgID) + return tx.DeleteImage(ctx, details.imageID) }) if err != nil { return fmt.Errorf("Error deleting image info from the database: %w", err) @@ -2802,15 +2882,15 @@ func imageDelete(d *Daemon, r *http.Request) response.Response { } // Remove main image file from disk. - imageDeleteFromDisk(imgInfo.Fingerprint) + imageDeleteFromDisk(details.image.Fingerprint) - s.Events.SendLifecycle(projectName, lifecycle.ImageDeleted.Event(imgInfo.Fingerprint, projectName, op.Requestor(), nil)) + s.Events.SendLifecycle(projectName, lifecycle.ImageDeleted.Event(details.image.Fingerprint, projectName, op.Requestor(), nil)) return nil } resources := map[string][]api.URL{} - resources["images"] = []api.URL{*api.NewURL().Path(version.APIVersion, "images", imgInfo.Fingerprint)} + resources["images"] = []api.URL{*api.NewURL().Path(version.APIVersion, "images", details.image.Fingerprint)} op, err := operations.OperationCreate(s, projectName, operations.OperationClassTask, operationtype.ImageDelete, resources, nil, do, nil, nil, r) if err != nil { @@ -3001,7 +3081,13 @@ func imageGet(d *Daemon, r *http.Request) response.Response { // Get the image. We need to do this before the permission check because the URL in the permission check will not // work with partial fingerprints. var info *api.Image + effectiveProjectName := projectName err = s.DB.Cluster.Transaction(r.Context(), func(ctx context.Context, tx *db.ClusterTx) error { + effectiveProjectName, err = projectutils.ImageProject(ctx, tx.Tx(), projectName) + if err != nil { + return err + } + info, err = doImageGet(ctx, tx, projectName, fingerprint, publicOnly) if err != nil { return err @@ -3040,6 +3126,7 @@ func imageGet(d *Daemon, r *http.Request) response.Response { userCanViewImage = true } else { // Otherwise perform an access check with the full image fingerprint. + request.SetCtxValue(r, request.CtxEffectiveProjectName, effectiveProjectName) err = s.Authorizer.CheckPermission(r.Context(), entity.ImageURL(projectName, info.Fingerprint), auth.EntitlementCanView) if err != nil && !auth.IsDeniedError(err) { return response.SmartError(err) @@ -3097,25 +3184,13 @@ func imagePut(d *Daemon, r *http.Request) response.Response { // Get current value projectName := request.ProjectParam(r) - fingerprint, err := url.PathUnescape(mux.Vars(r)["fingerprint"]) - if err != nil { - return response.SmartError(err) - } - - var id int - var info *api.Image - - err = s.DB.Cluster.Transaction(context.TODO(), func(ctx context.Context, tx *db.ClusterTx) error { - id, info, err = tx.GetImage(ctx, fingerprint, dbCluster.ImageFilter{Project: &projectName}) - - return err - }) + details, err := request.GetCtxValue[imageDetails](r.Context(), ctxImageDetails) if err != nil { return response.SmartError(err) } // Validate ETag - etag := []any{info.Public, info.AutoUpdate, info.Properties} + etag := []any{details.image.Public, details.image.AutoUpdate, details.image.Properties} err = util.EtagCheck(r, etag) if err != nil { return response.PreconditionFailed(err) @@ -3129,7 +3204,7 @@ func imagePut(d *Daemon, r *http.Request) response.Response { // Get ExpiresAt if !req.ExpiresAt.IsZero() { - info.ExpiresAt = req.ExpiresAt + details.image.ExpiresAt = req.ExpiresAt } // Get profile IDs @@ -3151,7 +3226,7 @@ func imagePut(d *Daemon, r *http.Request) response.Response { profileIDs[i] = profileID } - return tx.UpdateImage(ctx, id, info.Filename, info.Size, req.Public, req.AutoUpdate, info.Architecture, info.CreatedAt, info.ExpiresAt, req.Properties, projectName, profileIDs) + return tx.UpdateImage(ctx, details.imageID, details.image.Filename, details.image.Size, req.Public, req.AutoUpdate, details.image.Architecture, details.image.CreatedAt, details.image.ExpiresAt, req.Properties, projectName, profileIDs) }) if err != nil { if response.IsNotFoundError(err) { @@ -3162,7 +3237,7 @@ func imagePut(d *Daemon, r *http.Request) response.Response { } requestor := request.CreateRequestor(r) - s.Events.SendLifecycle(projectName, lifecycle.ImageUpdated.Event(info.Fingerprint, projectName, requestor, nil)) + s.Events.SendLifecycle(projectName, lifecycle.ImageUpdated.Event(details.image.Fingerprint, projectName, requestor, nil)) return response.EmptySyncResponse } @@ -3206,25 +3281,13 @@ func imagePatch(d *Daemon, r *http.Request) response.Response { // Get current value projectName := request.ProjectParam(r) - fingerprint, err := url.PathUnescape(mux.Vars(r)["fingerprint"]) - if err != nil { - return response.SmartError(err) - } - - var id int - var info *api.Image - - err = s.DB.Cluster.Transaction(context.TODO(), func(ctx context.Context, tx *db.ClusterTx) error { - id, info, err = tx.GetImage(ctx, fingerprint, dbCluster.ImageFilter{Project: &projectName}) - - return err - }) + details, err := request.GetCtxValue[imageDetails](r.Context(), ctxImageDetails) if err != nil { return response.SmartError(err) } // Validate ETag - etag := []any{info.Public, info.AutoUpdate, info.Properties} + etag := []any{details.image.Public, details.image.AutoUpdate, details.image.Properties} err = util.EtagCheck(r, etag) if err != nil { return response.PreconditionFailed(err) @@ -3253,37 +3316,38 @@ func imagePatch(d *Daemon, r *http.Request) response.Response { // Get AutoUpdate autoUpdate, err := reqRaw.GetBool("auto_update") if err == nil { - info.AutoUpdate = autoUpdate + details.image.AutoUpdate = autoUpdate } // Get Public public, err := reqRaw.GetBool("public") if err == nil { - info.Public = public + details.image.Public = public } // Get Properties _, ok := reqRaw["properties"] if ok { properties := req.Properties - for k, v := range info.Properties { + for k, v := range details.image.Properties { _, ok := req.Properties[k] if !ok { properties[k] = v } } - info.Properties = properties + + details.image.Properties = properties } err = s.DB.Cluster.Transaction(context.TODO(), func(ctx context.Context, tx *db.ClusterTx) error { - return tx.UpdateImage(ctx, id, info.Filename, info.Size, info.Public, info.AutoUpdate, info.Architecture, info.CreatedAt, info.ExpiresAt, info.Properties, "", nil) + return tx.UpdateImage(ctx, details.imageID, details.image.Filename, details.image.Size, details.image.Public, details.image.AutoUpdate, details.image.Architecture, details.image.CreatedAt, details.image.ExpiresAt, details.image.Properties, "", nil) }) if err != nil { return response.SmartError(err) } requestor := request.CreateRequestor(r) - s.Events.SendLifecycle(projectName, lifecycle.ImageUpdated.Event(info.Fingerprint, projectName, requestor, nil)) + s.Events.SendLifecycle(projectName, lifecycle.ImageUpdated.Event(details.image.Fingerprint, projectName, requestor, nil)) return response.EmptySyncResponse } @@ -3468,16 +3532,9 @@ func imageAliasesGet(d *Daemon, r *http.Request) response.Response { projectName := request.ProjectParam(r) var effectiveProjectName string err := s.DB.Cluster.Transaction(r.Context(), func(ctx context.Context, tx *db.ClusterTx) error { - projectHasImages, err := dbCluster.ProjectHasImages(ctx, tx.Tx(), projectName) - if err != nil { - return err - } - - if !projectHasImages { - effectiveProjectName = api.ProjectDefaultName - } - - return nil + var err error + effectiveProjectName, err = projectutils.ImageProject(ctx, tx.Tx(), projectName) + return err }) if err != nil { return response.SmartError(err) @@ -3623,10 +3680,16 @@ func imageAliasGet(d *Daemon, r *http.Request) response.Response { } s := d.State() + var effectiveProjectName string + err = s.DB.Cluster.Transaction(r.Context(), func(ctx context.Context, tx *db.ClusterTx) error { + effectiveProjectName, err = projectutils.ImageProject(ctx, tx.Tx(), projectName) + return err + }) // Set `userCanViewImageAlias` to true only when the caller is authenticated and can view the alias. // We don't abort the request if this is false because the image alias may be for a public image. var userCanViewImageAlias bool + request.SetCtxValue(r, request.CtxEffectiveProjectName, effectiveProjectName) err = s.Authorizer.CheckPermission(r.Context(), entity.ImageAliasURL(projectName, name), auth.EntitlementCanView) if err != nil && !auth.IsDeniedError(err) { return response.SmartError(err) @@ -3635,7 +3698,7 @@ func imageAliasGet(d *Daemon, r *http.Request) response.Response { } var alias api.ImageAliasesEntry - err = d.State().DB.Cluster.Transaction(r.Context(), func(ctx context.Context, tx *db.ClusterTx) error { + err = s.DB.Cluster.Transaction(r.Context(), func(ctx context.Context, tx *db.ClusterTx) error { // If `userCanViewImageAlias` is false, the query will be restricted to public images only. _, alias, err = tx.GetImageAlias(ctx, projectName, name, userCanViewImageAlias) @@ -4054,7 +4117,13 @@ func imageExport(d *Daemon, r *http.Request) response.Response { // Get the image. We need to do this before the permission check because the URL in the permission check will not // work with partial fingerprints. var imgInfo *api.Image + effectiveProjectName := projectName err = s.DB.Cluster.Transaction(r.Context(), func(ctx context.Context, tx *db.ClusterTx) error { + effectiveProjectName, err = projectutils.ImageProject(ctx, tx.Tx(), projectName) + if err != nil { + return err + } + filter := dbCluster.ImageFilter{Project: &projectName} if publicOnly { filter.Public = &publicOnly @@ -4107,6 +4176,7 @@ func imageExport(d *Daemon, r *http.Request) response.Response { userCanViewImage = true } else { // Otherwise perform an access check with the full image fingerprint. + request.SetCtxValue(r, request.CtxEffectiveProjectName, effectiveProjectName) err = s.Authorizer.CheckPermission(r.Context(), entity.ImageURL(projectName, imgInfo.Fingerprint), auth.EntitlementCanView) if err != nil && !auth.IsDeniedError(err) { return response.SmartError(err) @@ -4227,17 +4297,7 @@ func imageExportPost(d *Daemon, r *http.Request) response.Response { s := d.State() projectName := request.ProjectParam(r) - fingerprint, err := url.PathUnescape(mux.Vars(r)["fingerprint"]) - if err != nil { - return response.SmartError(err) - } - - err = s.DB.Cluster.Transaction(context.TODO(), func(ctx context.Context, tx *db.ClusterTx) error { - // Check if the image exists - _, _, err = tx.GetImage(ctx, fingerprint, dbCluster.ImageFilter{Project: &projectName}) - - return err - }) + details, err := request.GetCtxValue[imageDetails](r.Context(), ctxImageDetails) if err != nil { return response.SmartError(err) } @@ -4268,8 +4328,8 @@ func imageExportPost(d *Daemon, r *http.Request) response.Response { run := func(op *operations.Operation) error { createArgs := &lxd.ImageCreateArgs{} - imageMetaPath := shared.VarPath("images", fingerprint) - imageRootfsPath := shared.VarPath("images", fingerprint+".rootfs") + imageMetaPath := shared.VarPath("images", details.imageFingerprintPrefix) + imageRootfsPath := shared.VarPath("images", details.imageFingerprintPrefix+".rootfs") metaFile, err := os.Open(imageMetaPath) if err != nil { @@ -4296,7 +4356,7 @@ func imageExportPost(d *Daemon, r *http.Request) response.Response { image := api.ImagesPost{ Filename: createArgs.MetaName, Source: &api.ImagesPostSource{ - Fingerprint: fingerprint, + Fingerprint: details.imageFingerprintPrefix, Secret: req.Secret, Mode: "push", }, @@ -4335,7 +4395,7 @@ func imageExportPost(d *Daemon, r *http.Request) response.Response { return fmt.Errorf("Failed operation %q: %q", opWaitAPI.Status, opWaitAPI.Err) } - s.Events.SendLifecycle(projectName, lifecycle.ImageRetrieved.Event(fingerprint, projectName, op.Requestor(), logger.Ctx{"target": req.Target})) + s.Events.SendLifecycle(projectName, lifecycle.ImageRetrieved.Event(details.imageFingerprintPrefix, projectName, op.Requestor(), logger.Ctx{"target": req.Target})) return nil } @@ -4376,23 +4436,12 @@ func imageSecret(d *Daemon, r *http.Request) response.Response { s := d.State() projectName := request.ProjectParam(r) - fingerprint, err := url.PathUnescape(mux.Vars(r)["fingerprint"]) - if err != nil { - return response.SmartError(err) - } - - var imgInfo *api.Image - - err = s.DB.Cluster.Transaction(context.TODO(), func(ctx context.Context, tx *db.ClusterTx) error { - _, imgInfo, err = tx.GetImage(ctx, fingerprint, dbCluster.ImageFilter{Project: &projectName}) - - return err - }) + details, err := request.GetCtxValue[imageDetails](r.Context(), ctxImageDetails) if err != nil { return response.SmartError(err) } - return createTokenResponse(s, r, projectName, imgInfo.Fingerprint, nil) + return createTokenResponse(s, r, projectName, details.image.Fingerprint, nil) } func imageImportFromNode(imagesDir string, client lxd.InstanceServer, fingerprint string) error { @@ -4495,19 +4544,7 @@ func imageRefresh(d *Daemon, r *http.Request) response.Response { s := d.State() projectName := request.ProjectParam(r) - fingerprint, err := url.PathUnescape(mux.Vars(r)["fingerprint"]) - if err != nil { - return response.SmartError(err) - } - - var imageID int - var imageInfo *api.Image - - err = s.DB.Cluster.Transaction(context.TODO(), func(ctx context.Context, tx *db.ClusterTx) error { - imageID, imageInfo, err = tx.GetImage(ctx, fingerprint, dbCluster.ImageFilter{Project: &projectName}) - - return err - }) + details, err := request.GetCtxValue[imageDetails](r.Context(), ctxImageDetails) if err != nil { return response.SmartError(err) } @@ -4517,22 +4554,22 @@ func imageRefresh(d *Daemon, r *http.Request) response.Response { var nodes []string err = s.DB.Cluster.Transaction(context.TODO(), func(ctx context.Context, tx *db.ClusterTx) error { - nodes, err = tx.GetNodesWithImageAndAutoUpdate(ctx, fingerprint, true) + nodes, err = tx.GetNodesWithImageAndAutoUpdate(ctx, details.imageFingerprintPrefix, true) return err }) if err != nil { - return fmt.Errorf("Error getting cluster members for refreshing image %q in project %q: %w", fingerprint, projectName, err) + return fmt.Errorf("Error getting cluster members for refreshing image %q in project %q: %w", details.imageFingerprintPrefix, projectName, err) } - newImage, err := autoUpdateImage(s.ShutdownCtx, s, op, imageID, imageInfo, projectName, true) + newImage, err := autoUpdateImage(s.ShutdownCtx, s, op, details.imageID, &details.image, projectName, true) if err != nil { - return fmt.Errorf("Failed to update image %q in project %q: %w", fingerprint, projectName, err) + return fmt.Errorf("Failed to update image %q in project %q: %w", details.imageFingerprintPrefix, projectName, err) } if newImage != nil { if len(nodes) > 1 { - err := distributeImage(s.ShutdownCtx, s, nodes, fingerprint, newImage) + err := distributeImage(s.ShutdownCtx, s, nodes, details.imageFingerprintPrefix, newImage) if err != nil { return fmt.Errorf("Failed to distribute new image %q: %w", newImage.Fingerprint, err) } @@ -4540,10 +4577,10 @@ func imageRefresh(d *Daemon, r *http.Request) response.Response { err = s.DB.Cluster.Transaction(context.TODO(), func(ctx context.Context, tx *db.ClusterTx) error { // Remove the database entry for the image after distributing to cluster members. - return tx.DeleteImage(ctx, imageID) + return tx.DeleteImage(ctx, details.imageID) }) if err != nil { - logger.Error("Error deleting old image from database", logger.Ctx{"err": err, "fingerprint": fingerprint, "ID": imageID}) + logger.Error("Error deleting old image from database", logger.Ctx{"err": err, "fingerprint": details.imageFingerprintPrefix, "ID": details.imageID}) } } diff --git a/lxd/instance/drivers/driver_common.go b/lxd/instance/drivers/driver_common.go index 540357150f3f..8476e564c5ea 100644 --- a/lxd/instance/drivers/driver_common.go +++ b/lxd/instance/drivers/driver_common.go @@ -5,6 +5,7 @@ import ( "errors" "fmt" "net/http" + "os" "path/filepath" "sort" "strconv" @@ -1670,3 +1671,34 @@ func (d *common) deleteSnapshots(deleteFunc func(snapInst instance.Instance) err return nil } + +// removeUnixDevices reads the devices path and remove all unix devices. +func (d *common) removeUnixDevices() error { + // Check that we indeed have devices to remove + if !shared.PathExists(d.DevicesPath()) { + return nil + } + + // Load the directory listing + dents, err := os.ReadDir(d.DevicesPath()) + if err != nil { + return err + } + + // Go through all the unix devices + for _, f := range dents { + // Skip non-Unix devices + if !strings.HasPrefix(f.Name(), "forkmknod.unix.") && !strings.HasPrefix(f.Name(), "unix.") && !strings.HasPrefix(f.Name(), device.IBDevPrefix) { + continue + } + + // Remove the entry + devicePath := filepath.Join(d.DevicesPath(), f.Name()) + err := os.Remove(devicePath) + if err != nil { + d.logger.Error("Failed removing unix device", logger.Ctx{"err": err, "path": devicePath}) + } + } + + return nil +} diff --git a/lxd/instance/drivers/driver_lxc.go b/lxd/instance/drivers/driver_lxc.go index b6a582d79951..588d89584446 100644 --- a/lxd/instance/drivers/driver_lxc.go +++ b/lxd/instance/drivers/driver_lxc.go @@ -7859,36 +7859,6 @@ func (d *lxc) InsertSeccompUnixDevice(prefix string, m deviceConfig.Device, pid return d.insertMountLXD(devPath, tgtPath, "none", unix.MS_BIND, pid, idmap.IdmapStorageNone) } -func (d *lxc) removeUnixDevices() error { - // Check that we indeed have devices to remove - if !shared.PathExists(d.DevicesPath()) { - return nil - } - - // Load the directory listing - dents, err := os.ReadDir(d.DevicesPath()) - if err != nil { - return err - } - - // Go through all the unix devices - for _, f := range dents { - // Skip non-Unix devices - if !strings.HasPrefix(f.Name(), "forkmknod.unix.") && !strings.HasPrefix(f.Name(), "unix.") && !strings.HasPrefix(f.Name(), "infiniband.unix.") { - continue - } - - // Remove the entry - devicePath := filepath.Join(d.DevicesPath(), f.Name()) - err := os.Remove(devicePath) - if err != nil { - d.logger.Error("Failed removing unix device", logger.Ctx{"err": err, "path": devicePath}) - } - } - - return nil -} - // FillNetworkDevice takes a nic or infiniband device type and enriches it with automatically // generated name and hwaddr properties if these are missing from the device. func (d *lxc) FillNetworkDevice(name string, m deviceConfig.Device) (deviceConfig.Device, error) { diff --git a/lxd/instance/drivers/driver_qemu.go b/lxd/instance/drivers/driver_qemu.go index e8ad3c7ba503..c96630458e8d 100644 --- a/lxd/instance/drivers/driver_qemu.go +++ b/lxd/instance/drivers/driver_qemu.go @@ -2461,6 +2461,13 @@ func (d *qemu) deviceStop(dev device.Device, instanceRunning bool, _ string) err if instanceRunning { // Detach NIC from running instance. if configCopy["type"] == "nic" { + for _, usbDev := range runConf.USBDevice { + err = d.deviceDetachUSB(usbDev) + if err != nil { + return err + } + } + err = d.deviceDetachNIC(dev.Name()) if err != nil { return err @@ -5933,35 +5940,6 @@ func (d *qemu) updateMemoryLimit(newLimit string) error { return fmt.Errorf("Failed setting memory to %dMiB (currently %dMiB) as it was taking too long", newSizeMB, curSizeMB) } -func (d *qemu) removeUnixDevices() error { - // Check that we indeed have devices to remove. - if !shared.PathExists(d.DevicesPath()) { - return nil - } - - // Load the directory listing. - dents, err := os.ReadDir(d.DevicesPath()) - if err != nil { - return err - } - - for _, f := range dents { - // Skip non-Unix devices. - if !strings.HasPrefix(f.Name(), "forkmknod.unix.") && !strings.HasPrefix(f.Name(), "unix.") && !strings.HasPrefix(f.Name(), "infiniband.unix.") { - continue - } - - // Remove the entry - devicePath := filepath.Join(d.DevicesPath(), f.Name()) - err := os.Remove(devicePath) - if err != nil { - d.logger.Error("Failed removing unix device", logger.Ctx{"err": err, "path": devicePath}) - } - } - - return nil -} - func (d *qemu) removeDiskDevices() error { // Check that we indeed have devices to remove. if !shared.PathExists(d.DevicesPath()) { diff --git a/lxd/instance/drivers/driver_qemu_config_test.go b/lxd/instance/drivers/driver_qemu_config_test.go index 2811ae893c50..cc297d7d04cf 100644 --- a/lxd/instance/drivers/driver_qemu_config_test.go +++ b/lxd/instance/drivers/driver_qemu_config_test.go @@ -936,7 +936,7 @@ func TestQemuConfigTemplates(t *testing.T) { pciSlotName: "host-slot", }, `# PCI card ("physical-pci-name" device) - [device "dev-lxd_physical-pci-name"] + [device "dev-lxd_physical--pci--name"] driver = "vfio-pci" bus = "qemu_pcie1" addr = "00.0" @@ -948,7 +948,7 @@ func TestQemuConfigTemplates(t *testing.T) { pciSlotName: "host-slot-ccw", }, `# PCI card ("physical-ccw-name" device) - [device "dev-lxd_physical-ccw-name"] + [device "dev-lxd_physical--ccw--name"] driver = "vfio-ccw" multifunction = "on" host = "host-slot-ccw"`, @@ -969,7 +969,7 @@ func TestQemuConfigTemplates(t *testing.T) { pciSlotName: "gpu-slot", }, `# GPU card ("gpu-name" device) - [device "dev-lxd_gpu-name"] + [device "dev-lxd_gpu--name"] driver = "vfio-pci" bus = "qemu_pcie1" addr = "00.0" @@ -982,7 +982,7 @@ func TestQemuConfigTemplates(t *testing.T) { vga: true, }, `# GPU card ("gpu-name" device) - [device "dev-lxd_gpu-name"] + [device "dev-lxd_gpu--name"] driver = "vfio-ccw" multifunction = "on" host = "gpu-slot" @@ -994,7 +994,7 @@ func TestQemuConfigTemplates(t *testing.T) { vgpu: "vgpu-dev", }, `# GPU card ("vgpu-name" device) - [device "dev-lxd_vgpu-name"] + [device "dev-lxd_vgpu--name"] driver = "vfio-pci" bus = "qemu_pcie1" addr = "00.0" diff --git a/lxd/instance/drivers/driver_qemu_templates.go b/lxd/instance/drivers/driver_qemu_templates.go index dd491bcad188..3a149191a103 100644 --- a/lxd/instance/drivers/driver_qemu_templates.go +++ b/lxd/instance/drivers/driver_qemu_templates.go @@ -797,7 +797,7 @@ func qemuPCIPhysical(opts *qemuPCIPhysicalOpts) []cfgSection { return []cfgSection{{ // Devices use "lxd_" prefix indicating that this is a user named device. - name: fmt.Sprintf(`device "dev-lxd_%s"`, opts.devName), + name: fmt.Sprintf(`device "%s"`, qemuDeviceNameOrID(qemuDeviceIDPrefix, opts.devName, "", qemuDeviceIDMaxLength)), comment: fmt.Sprintf(`PCI card ("%s" device)`, opts.devName), entries: entries, }} @@ -833,7 +833,7 @@ func qemuGPUDevPhysical(opts *qemuGPUDevPhysicalOpts) []cfgSection { return []cfgSection{{ // Devices use "lxd_" prefix indicating that this is a user named device. - name: fmt.Sprintf(`device "dev-lxd_%s"`, opts.devName), + name: fmt.Sprintf(`device "%s"`, qemuDeviceNameOrID(qemuDeviceIDPrefix, opts.devName, "", qemuDeviceIDMaxLength)), comment: fmt.Sprintf(`GPU card ("%s" device)`, opts.devName), entries: entries, }} diff --git a/lxd/instance/drivers/qmp/commands.go b/lxd/instance/drivers/qmp/commands.go index f90f3e8789f6..333c5e044578 100644 --- a/lxd/instance/drivers/qmp/commands.go +++ b/lxd/instance/drivers/qmp/commands.go @@ -505,7 +505,7 @@ func (m *Monitor) RemoveBlockDevice(blockDevName string) error { err := m.run("blockdev-del", blockDevName, nil) if err != nil { if strings.Contains(err.Error(), "is in use") { - return api.StatusErrorf(http.StatusLocked, err.Error()) + return api.StatusErrorf(http.StatusLocked, "%w", err) } if strings.Contains(err.Error(), "Failed to find") { diff --git a/lxd/instance/instancetype/instance.go b/lxd/instance/instancetype/instance.go index c57075f5a398..fcdf5f328575 100644 --- a/lxd/instance/instancetype/instance.go +++ b/lxd/instance/instancetype/instance.go @@ -1179,15 +1179,6 @@ func ConfigKeyChecker(key string, instanceType Type) (func(value string) error, return validate.IsAny, nil } - // lxdmeta:generate(entities=instance; group=volatile; key=volatile..last_state.ip_addresses) - // Comma-separated list of the last used IP addresses of the network device. - // --- - // type: string - // shortdesc: Last used IP addresses - if strings.HasSuffix(key, ".last_state.ip_addresses") { - return validate.IsListOf(validate.IsNetworkAddress), nil - } - // lxdmeta:generate(entities=instance; group=volatile; key=volatile..apply_quota) // The disk quota is applied the next time the instance starts. // --- @@ -1210,6 +1201,24 @@ func ConfigKeyChecker(key string, instanceType Type) (func(value string) error, return validate.IsAny, nil } + // lxdmeta:generate(entities=network-physical; group=volatile; key=volatile.last_state.usb.bus) + // + // -- + // type: string + // shortdesc: USB Bus Number + if strings.HasSuffix(key, ".bus") { + return validate.IsAny, nil + } + + // lxdmeta:generate(entities=network-physical; group=volatile; key=volatile.last_state.usb.device) + // + // -- + // type: string + // shortdesc: USB Device Number + if strings.HasSuffix(key, ".device") { + return validate.IsAny, nil + } + if strings.HasSuffix(key, ".uuid") { return validate.IsAny, nil } diff --git a/lxd/instance_console.go b/lxd/instance_console.go index 0f749722d8b3..803a09b36969 100644 --- a/lxd/instance_console.go +++ b/lxd/instance_console.go @@ -631,7 +631,7 @@ func instanceConsoleLogGet(d *Daemon, r *http.Request) response.Response { } if errno == unix.ENODATA { - return response.FileResponse(r, []response.FileResponseEntry{ent}, nil) + return response.FileResponse(r, []response.FileResponseEntry{}, nil) } return response.SmartError(err) diff --git a/lxd/instance_sftp.go b/lxd/instance_sftp.go index 1b57715c14f0..f954dd70efe6 100644 --- a/lxd/instance_sftp.go +++ b/lxd/instance_sftp.go @@ -135,7 +135,7 @@ func (r *sftpServeResponse) Render(w http.ResponseWriter) error { err = response.Upgrade(remoteConn, "sftp") if err != nil { - return api.StatusErrorf(http.StatusInternalServerError, err.Error()) + return api.StatusErrorf(http.StatusInternalServerError, "Failed to upgrade SFTP connection: %w", err) } ctx, cancel := context.WithCancel(r.req.Context()) diff --git a/lxd/instances.go b/lxd/instances.go index 9b88268773b7..e36915715b23 100644 --- a/lxd/instances.go +++ b/lxd/instances.go @@ -438,7 +438,7 @@ func instancesOnDisk(s *state.State) ([]instance.Instance, error) { return instances, nil } -func instancesShutdown(s *state.State, instances []instance.Instance) { +func instancesShutdown(instances []instance.Instance) { sort.Sort(instanceStopList(instances)) // Limit shutdown concurrency to number of instances or number of CPU cores (which ever is less). diff --git a/lxd/main.go b/lxd/main.go index c46141e1973d..2f1485e4a9c8 100644 --- a/lxd/main.go +++ b/lxd/main.go @@ -33,6 +33,7 @@ type cmdGlobal struct { flagLogVerbose bool } +// Run is the main entry point for the LXD daemon command. func (c *cmdGlobal) Run(cmd *cobra.Command, args []string) error { // Configure dqlite to *not* disable internal SQLite locking, since we // use SQLite both through dqlite and through go-dqlite, potentially @@ -91,7 +92,7 @@ func main() { app.Args = cobra.ArbitraryArgs // Global flags - globalCmd := cmdGlobal{cmd: app, asker: cli.NewAsker(bufio.NewReader(os.Stdin))} + globalCmd := cmdGlobal{cmd: app, asker: cli.NewAsker(bufio.NewReader(os.Stdin), nil)} daemonCmd.global = &globalCmd app.PersistentPreRunE = globalCmd.Run app.PersistentFlags().BoolVar(&globalCmd.flagVersion, "version", false, "Print version number") diff --git a/lxd/main_init_interactive.go b/lxd/main_init_interactive.go index 06b2da3d1853..6daee24b4c37 100644 --- a/lxd/main_init_interactive.go +++ b/lxd/main_init_interactive.go @@ -21,7 +21,6 @@ import ( "github.com/canonical/lxd/lxd/util" "github.com/canonical/lxd/shared" "github.com/canonical/lxd/shared/api" - cli "github.com/canonical/lxd/shared/cmd" "github.com/canonical/lxd/shared/validate" "github.com/canonical/lxd/shared/version" ) @@ -292,7 +291,7 @@ func (c *cmdInit) askClustering(config *api.InitPreseed, d lxd.InstanceServer, s config.Cluster.ClusterCertificate = string(pem.EncodeToMemory(&pem.Block{Type: "CERTIFICATE", Bytes: cert.Raw})) // Cluster password - config.Cluster.ClusterPassword = cli.AskPasswordOnce("Cluster trust password: ") + config.Cluster.ClusterPassword = c.global.asker.AskPasswordOnce("Cluster trust password: ") break } } diff --git a/lxd/metadata/configuration.json b/lxd/metadata/configuration.json index 08fb66c907e1..c30839a73989 100644 --- a/lxd/metadata/configuration.json +++ b/lxd/metadata/configuration.json @@ -2746,13 +2746,6 @@ "type": "string" } }, - { - "volatile.\u003cname\u003e.last_state.ip_addresses": { - "longdesc": "Comma-separated list of the last used IP addresses of the network device.", - "shortdesc": "Last used IP addresses", - "type": "string" - } - }, { "volatile.\u003cname\u003e.last_state.mtu": { "longdesc": "The original MTU that was used when moving a physical device into an instance.", diff --git a/lxd/network/driver_ovn.go b/lxd/network/driver_ovn.go index fdc8e41edda6..4c0010fa7605 100644 --- a/lxd/network/driver_ovn.go +++ b/lxd/network/driver_ovn.go @@ -74,7 +74,6 @@ type OVNInstanceNICSetupOpts struct { DeviceConfig deviceConfig.Device UplinkConfig map[string]string DNSName string - LastStateIPs []net.IP } // OVNInstanceNICStopOpts options for stopping an OVN Instance NIC. @@ -3662,15 +3661,15 @@ func (n *ovn) hasDHCPv4Reservation(dhcpReservations []shared.IPRange, ip net.IP) // InstanceDevicePortStart sets up an instance device port to the internal logical switch. // Accepts a list of ACLs being removed from the NIC device (if called as part of a NIC update). -// Returns the logical switch port name and a list of IPs that were allocated to the port for DNS. -func (n *ovn) InstanceDevicePortStart(opts *OVNInstanceNICSetupOpts, securityACLsRemove []string) (openvswitch.OVNSwitchPort, []net.IP, error) { +// Returns the logical switch port name. +func (n *ovn) InstanceDevicePortStart(opts *OVNInstanceNICSetupOpts, securityACLsRemove []string) (openvswitch.OVNSwitchPort, error) { if opts.InstanceUUID == "" { - return "", nil, fmt.Errorf("Instance UUID is required") + return "", fmt.Errorf("Instance UUID is required") } mac, err := net.ParseMAC(opts.DeviceConfig["hwaddr"]) if err != nil { - return "", nil, err + return "", err } staticIPs := []net.IP{} @@ -3681,7 +3680,7 @@ func (n *ovn) InstanceDevicePortStart(opts *OVNInstanceNICSetupOpts, securityACL ip := net.ParseIP(opts.DeviceConfig[key]) if ip == nil { - return "", nil, fmt.Errorf("Invalid %s value %q", key, opts.DeviceConfig[key]) + return "", fmt.Errorf("Invalid %s value %q", key, opts.DeviceConfig[key]) } staticIPs = append(staticIPs, ip) @@ -3689,7 +3688,7 @@ func (n *ovn) InstanceDevicePortStart(opts *OVNInstanceNICSetupOpts, securityACL internalRoutes, externalRoutes, err := n.instanceDevicePortRoutesParse(opts.DeviceConfig) if err != nil { - return "", nil, fmt.Errorf("Failed parsing NIC device routes: %w", err) + return "", fmt.Errorf("Failed parsing NIC device routes: %w", err) } revert := revert.New() @@ -3697,7 +3696,7 @@ func (n *ovn) InstanceDevicePortStart(opts *OVNInstanceNICSetupOpts, securityACL client, err := openvswitch.NewOVN(n.state) if err != nil { - return "", nil, fmt.Errorf("Failed to get OVN client: %w", err) + return "", fmt.Errorf("Failed to get OVN client: %w", err) } // Get existing DHCPv4 static reservations. @@ -3705,7 +3704,7 @@ func (n *ovn) InstanceDevicePortStart(opts *OVNInstanceNICSetupOpts, securityACL // reservations exist. dhcpReservations, err := client.LogicalSwitchDHCPv4RevervationsGet(n.getIntSwitchName()) if err != nil { - return "", nil, fmt.Errorf("Failed getting DHCPv4 reservations: %w", err) + return "", fmt.Errorf("Failed getting DHCPv4 reservations: %w", err) } dhcpv4Subnet := n.DHCPv4Subnet() @@ -3716,14 +3715,14 @@ func (n *ovn) InstanceDevicePortStart(opts *OVNInstanceNICSetupOpts, securityACL // Find existing DHCP options set for IPv4 and IPv6 and update them instead of adding sets. existingOpts, err := client.LogicalSwitchDHCPOptionsGet(n.getIntSwitchName()) if err != nil { - return "", nil, fmt.Errorf("Failed getting existing DHCP settings for internal switch: %w", err) + return "", fmt.Errorf("Failed getting existing DHCP settings for internal switch: %w", err) } if dhcpv4Subnet != nil { for _, existingOpt := range existingOpts { if existingOpt.CIDR.String() == dhcpv4Subnet.String() { if dhcpV4ID != "" { - return "", nil, fmt.Errorf("Multiple matching DHCP option sets found for switch %q and subnet %q", n.getIntSwitchName(), dhcpv4Subnet.String()) + return "", fmt.Errorf("Multiple matching DHCP option sets found for switch %q and subnet %q", n.getIntSwitchName(), dhcpv4Subnet.String()) } dhcpV4ID = existingOpt.UUID @@ -3731,44 +3730,7 @@ func (n *ovn) InstanceDevicePortStart(opts *OVNInstanceNICSetupOpts, securityACL } if dhcpV4ID == "" { - return "", nil, fmt.Errorf("Could not find DHCPv4 options for instance port for subnet %q", dhcpv4Subnet.String()) - } - - // If using dynamic IPv4, look for previously used sticky IPs from the NIC's last state. - var dhcpV4StickyIP net.IP - if opts.DeviceConfig["ipv4.address"] == "" { - for _, ip := range opts.LastStateIPs { - if ip.To4() != nil && SubnetContainsIP(dhcpv4Subnet, ip) { - dhcpV4StickyIP = ip - break - } - } - } - - // If a previously used IP has been found and its not one of the static IPs, then check if - // the IP is available for use and if not then we can request this port use it statically. - if dhcpV4StickyIP != nil && !IPInSlice(dhcpV4StickyIP, staticIPs) { - // If the sticky IP isn't statically reserved, lets check its not used dynamically - // on any active port. - if !n.hasDHCPv4Reservation(dhcpReservations, dhcpV4StickyIP) { - existingPortIPs, err := client.LogicalSwitchIPs(n.getIntSwitchName()) - if err != nil { - return "", nil, fmt.Errorf("Failed getting existing switch port IPs: %w", err) - } - - found := false - for _, ips := range existingPortIPs { - if IPInSlice(dhcpV4StickyIP, ips) { - found = true - break // IP is in use with another port, so cannot use it. - } - } - - // If IP is not in use then request OVN use previously used IP for port. - if !found { - staticIPs = append(staticIPs, dhcpV4StickyIP) - } - } + return "", fmt.Errorf("Could not find DHCPv4 options for instance port for subnet %q", dhcpv4Subnet.String()) } } @@ -3776,7 +3738,7 @@ func (n *ovn) InstanceDevicePortStart(opts *OVNInstanceNICSetupOpts, securityACL for _, existingOpt := range existingOpts { if existingOpt.CIDR.String() == dhcpv6Subnet.String() { if dhcpv6ID != "" { - return "", nil, fmt.Errorf("Multiple matching DHCP option sets found for switch %q and subnet %q", n.getIntSwitchName(), dhcpv6Subnet.String()) + return "", fmt.Errorf("Multiple matching DHCP option sets found for switch %q and subnet %q", n.getIntSwitchName(), dhcpv6Subnet.String()) } dhcpv6ID = existingOpt.UUID @@ -3784,7 +3746,7 @@ func (n *ovn) InstanceDevicePortStart(opts *OVNInstanceNICSetupOpts, securityACL } if dhcpv6ID == "" { - return "", nil, fmt.Errorf("Could not find DHCPv6 options for instance port for subnet %q", dhcpv6Subnet.String()) + return "", fmt.Errorf("Could not find DHCPv6 options for instance port for subnet %q", dhcpv6Subnet.String()) } // If port isn't going to have fully dynamic IPs allocated by OVN, and instead only static @@ -3804,7 +3766,7 @@ func (n *ovn) InstanceDevicePortStart(opts *OVNInstanceNICSetupOpts, securityACL if !hasIPv6 { eui64IP, err := eui64.ParseMAC(dhcpv6Subnet.IP, mac) if err != nil { - return "", nil, fmt.Errorf("Failed generating EUI64 for instance port %q: %w", mac.String(), err) + return "", fmt.Errorf("Failed generating EUI64 for instance port %q: %w", mac.String(), err) } // Add EUI64 to list of static IPs for instance port. @@ -3822,16 +3784,15 @@ func (n *ovn) InstanceDevicePortStart(opts *OVNInstanceNICSetupOpts, securityACL nestedPortParentName = n.getInstanceDevicePortName(opts.InstanceUUID, opts.DeviceConfig["nested"]) nestedPortVLANInt64, err := strconv.ParseUint(opts.DeviceConfig["vlan"], 10, 16) if err != nil { - return "", nil, fmt.Errorf("Invalid VLAN ID %q: %w", opts.DeviceConfig["vlan"], err) + return "", fmt.Errorf("Invalid VLAN ID %q: %w", opts.DeviceConfig["vlan"], err) } nestedPortVLAN = uint16(nestedPortVLANInt64) } // Add port with mayExist set to true, so that if instance port exists, we don't fail and continue below - // to configure the port as needed. This is required in case the OVN northbound database was unavailable - // when the instance NIC was stopped and was unable to remove the port on last stop, which would otherwise - // prevent future NIC starts. + // to configure the port as needed. This is required because the port is created when the NIC is added, but + // we need to ensure it is present at start up as well in case it was deleted since the NIC was added. err = client.LogicalSwitchPortAdd(n.getIntSwitchName(), instancePortName, &openvswitch.OVNSwitchPortOpts{ DHCPv4OptsID: dhcpV4ID, DHCPv6OptsID: dhcpv6ID, @@ -3842,7 +3803,7 @@ func (n *ovn) InstanceDevicePortStart(opts *OVNInstanceNICSetupOpts, securityACL Location: n.state.ServerName, }, true) if err != nil { - return "", nil, err + return "", err } revert.Add(func() { _ = client.LogicalSwitchPortDelete(instancePortName) }) @@ -3879,7 +3840,7 @@ func (n *ovn) InstanceDevicePortStart(opts *OVNInstanceNICSetupOpts, securityACL for i := 0; i < 5; i++ { dynamicIPs, err = client.LogicalSwitchPortDynamicIPs(instancePortName) if err != nil { - return "", nil, err + return "", err } if len(dynamicIPs) > 0 { @@ -3896,14 +3857,14 @@ func (n *ovn) InstanceDevicePortStart(opts *OVNInstanceNICSetupOpts, securityACL // Check, after considering all dynamic IPs, whether we have got the required ones. if (dnsIPv4 == nil && dhcpv4Subnet != nil) || (dnsIPv6 == nil && dhcpv6Subnet != nil) { - return "", nil, fmt.Errorf("Insufficient dynamic addresses allocated") + return "", fmt.Errorf("Insufficient dynamic addresses allocated") } } dnsName := fmt.Sprintf("%s.%s", opts.DNSName, n.getDomainName()) dnsUUID, err := client.LogicalSwitchPortSetDNS(n.getIntSwitchName(), instancePortName, dnsName, dnsIPs) if err != nil { - return "", nil, fmt.Errorf("Failed setting DNS for %q: %w", dnsName, err) + return "", fmt.Errorf("Failed setting DNS for %q: %w", dnsName, err) } revert.Add(func() { _ = client.LogicalSwitchPortDeleteDNS(n.getIntSwitchName(), dnsUUID, false) }) @@ -3917,7 +3878,7 @@ func (n *ovn) InstanceDevicePortStart(opts *OVNInstanceNICSetupOpts, securityACL dhcpReservations = append(dhcpReservations, shared.IPRange{Start: dnsIPv4}) err = client.LogicalSwitchDHCPv4RevervationsSet(n.getIntSwitchName(), dhcpReservations) if err != nil { - return "", nil, fmt.Errorf("Failed adding DHCPv4 reservation for %q: %w", dnsIPv4.String(), err) + return "", fmt.Errorf("Failed adding DHCPv4 reservation for %q: %w", dnsIPv4.String(), err) } } } @@ -3943,7 +3904,7 @@ func (n *ovn) InstanceDevicePortStart(opts *OVNInstanceNICSetupOpts, securityACL err = client.LogicalRouterDNATSNATAdd(n.getRouterName(), ip, ip, true, true) if err != nil { - return "", nil, err + return "", err } revert.Add(func() { _ = client.LogicalRouterDNATSNATDelete(n.getRouterName(), ip) }) @@ -3971,7 +3932,7 @@ func (n *ovn) InstanceDevicePortStart(opts *OVNInstanceNICSetupOpts, securityACL } if targetIP == nil { - return "", nil, fmt.Errorf("Cannot add static route for %q as target IP is not set", internalRoute.String()) + return "", fmt.Errorf("Cannot add static route for %q as target IP is not set", internalRoute.String()) } routes = append(routes, openvswitch.OVNRouterRoute{ @@ -3989,7 +3950,7 @@ func (n *ovn) InstanceDevicePortStart(opts *OVNInstanceNICSetupOpts, securityACL } if targetIP == nil { - return "", nil, fmt.Errorf("Cannot add static route for %q as target IP is not set", externalRoute.String()) + return "", fmt.Errorf("Cannot add static route for %q as target IP is not set", externalRoute.String()) } routes = append(routes, openvswitch.OVNRouterRoute{ @@ -4015,7 +3976,7 @@ func (n *ovn) InstanceDevicePortStart(opts *OVNInstanceNICSetupOpts, securityACL return nil }) if err != nil { - return "", nil, err + return "", err } } } @@ -4024,7 +3985,7 @@ func (n *ovn) InstanceDevicePortStart(opts *OVNInstanceNICSetupOpts, securityACL // Add routes to local router. err = client.LogicalRouterRouteAdd(n.getRouterName(), true, routes...) if err != nil { - return "", nil, err + return "", err } routePrefixes := make([]net.IPNet, 0, len(routes)) @@ -4037,7 +3998,7 @@ func (n *ovn) InstanceDevicePortStart(opts *OVNInstanceNICSetupOpts, securityACL // Add routes to internal switch's address set for ACL usage. err = client.AddressSetAdd(acl.OVNIntSwitchPortGroupAddressSetPrefix(n.ID()), routePrefixes...) if err != nil { - return "", nil, fmt.Errorf("Failed adding switch address set entries: %w", err) + return "", fmt.Errorf("Failed adding switch address set entries: %w", err) } revert.Add(func() { @@ -4046,12 +4007,12 @@ func (n *ovn) InstanceDevicePortStart(opts *OVNInstanceNICSetupOpts, securityACL routerIntPortIPv4, _, err := n.parseRouterIntPortIPv4Net() if err != nil { - return "", nil, fmt.Errorf("Failed parsing local router's peering port IPv4 Net: %w", err) + return "", fmt.Errorf("Failed parsing local router's peering port IPv4 Net: %w", err) } routerIntPortIPv6, _, err := n.parseRouterIntPortIPv6Net() if err != nil { - return "", nil, fmt.Errorf("Failed parsing local router's peering port IPv6 Net: %w", err) + return "", fmt.Errorf("Failed parsing local router's peering port IPv6 Net: %w", err) } // Add routes to peer routers, and security policies for each peer port on local router. @@ -4086,7 +4047,7 @@ func (n *ovn) InstanceDevicePortStart(opts *OVNInstanceNICSetupOpts, securityACL return nil }) if err != nil { - return "", nil, err + return "", err } } @@ -4107,7 +4068,7 @@ func (n *ovn) InstanceDevicePortStart(opts *OVNInstanceNICSetupOpts, securityACL // Get logical port UUID. portUUID, err := client.LogicalSwitchPortUUID(instancePortName) if err != nil || portUUID == "" { - return "", nil, fmt.Errorf("Failed getting logical port UUID for security ACL removal: %w", err) + return "", fmt.Errorf("Failed getting logical port UUID for security ACL removal: %w", err) } // Add NIC port to network port group (this includes the port in the @internal subject for ACL rules). @@ -4124,7 +4085,7 @@ func (n *ovn) InstanceDevicePortStart(opts *OVNInstanceNICSetupOpts, securityACL return err }) if err != nil { - return "", nil, fmt.Errorf("Failed getting network ACL IDs for security ACL setup: %w", err) + return "", fmt.Errorf("Failed getting network ACL IDs for security ACL setup: %w", err) } // Add port to ACLs requested. @@ -4136,7 +4097,7 @@ func (n *ovn) InstanceDevicePortStart(opts *OVNInstanceNICSetupOpts, securityACL cleanup, err := acl.OVNEnsureACLs(n.state, n.logger, client, n.Project(), aclNameIDs, aclNets, nicACLNames, false) if err != nil { - return "", nil, fmt.Errorf("Failed ensuring security ACLs are configured in OVN for instance: %w", err) + return "", fmt.Errorf("Failed ensuring security ACLs are configured in OVN for instance: %w", err) } revert.Add(cleanup) @@ -4144,7 +4105,7 @@ func (n *ovn) InstanceDevicePortStart(opts *OVNInstanceNICSetupOpts, securityACL for _, aclName := range nicACLNames { aclID, found := aclNameIDs[aclName] if !found { - return "", nil, fmt.Errorf("Cannot find security ACL ID for %q", aclName) + return "", fmt.Errorf("Cannot find security ACL ID for %q", aclName) } // Add NIC port to ACL port group. @@ -4164,7 +4125,7 @@ func (n *ovn) InstanceDevicePortStart(opts *OVNInstanceNICSetupOpts, securityACL aclID, found := aclNameIDs[aclName] if !found { - return "", nil, fmt.Errorf("Cannot find security ACL ID for %q", aclName) + return "", fmt.Errorf("Cannot find security ACL ID for %q", aclName) } // Remove NIC port from ACL port group. @@ -4180,7 +4141,7 @@ func (n *ovn) InstanceDevicePortStart(opts *OVNInstanceNICSetupOpts, securityACL n.logger.Debug("Applying instance NIC port group member change sets") err = client.PortGroupMemberChange(addChangeSet, removeChangeSet) if err != nil { - return "", nil, fmt.Errorf("Failed applying OVN port group member change sets for instance NIC: %w", err) + return "", fmt.Errorf("Failed applying OVN port group member change sets for instance NIC: %w", err) } // Set the automatic default ACL rule for the port. @@ -4191,21 +4152,21 @@ func (n *ovn) InstanceDevicePortStart(opts *OVNInstanceNICSetupOpts, securityACL logPrefix := fmt.Sprintf("%s-%s", opts.InstanceUUID, opts.DeviceName) err = acl.OVNApplyInstanceNICDefaultRules(client, acl.OVNIntSwitchPortGroupName(n.ID()), logPrefix, instancePortName, ingressAction, ingressLogged, egressAction, egressLogged) if err != nil { - return "", nil, fmt.Errorf("Failed applying OVN default ACL rules for instance NIC: %w", err) + return "", fmt.Errorf("Failed applying OVN default ACL rules for instance NIC: %w", err) } n.logger.Debug("Set NIC default rule", logger.Ctx{"port": instancePortName, "ingressAction": ingressAction, "ingressLogged": ingressLogged, "egressAction": egressAction, "egressLogged": egressLogged}) } else { err = client.PortGroupPortClearACLRules(acl.OVNIntSwitchPortGroupName(n.ID()), instancePortName) if err != nil { - return "", nil, fmt.Errorf("Failed clearing OVN default ACL rules for instance NIC: %w", err) + return "", fmt.Errorf("Failed clearing OVN default ACL rules for instance NIC: %w", err) } n.logger.Debug("Cleared NIC default rule", logger.Ctx{"port": instancePortName}) } revert.Success() - return instancePortName, dnsIPs, nil + return instancePortName, nil } // instanceDeviceACLDefaults returns the action and logging mode to use for the specified direction's default rule. @@ -4250,19 +4211,11 @@ func (n *ovn) InstanceDevicePortIPs(instanceUUID string, deviceName string) ([]n return devIPs, nil } -// InstanceDevicePortStop deletes an instance device port from the internal logical switch. -func (n *ovn) InstanceDevicePortStop(ovsExternalOVNPort openvswitch.OVNSwitchPort, opts *OVNInstanceNICStopOpts) error { - // Decide whether to use OVS provided OVN port name or internally derived OVN port name. - instancePortName := ovsExternalOVNPort - source := "OVS" - if ovsExternalOVNPort == "" { - if opts.InstanceUUID == "" { - return fmt.Errorf("Instance UUID is required") - } - - instancePortName = n.getInstanceDevicePortName(opts.InstanceUUID, opts.DeviceName) - source = "internal" - } +// InstanceDevicePortRemove unregisters the NIC device in the OVN database by removing the DNS entry that should +// have been created during InstanceDevicePortAdd(). If the DNS record exists at remove time then this indicates +// the NIC device was successfully added and this function also clears any DHCP reservations for the NIC's IPs. +func (n *ovn) InstanceDevicePortRemove(instanceUUID string, deviceName string, deviceConfig deviceConfig.Device) error { + instancePortName := n.getInstanceDevicePortName(instanceUUID, deviceName) client, err := openvswitch.NewOVN(n.state) if err != nil { @@ -4279,9 +4232,9 @@ func (n *ovn) InstanceDevicePortStop(ovsExternalOVNPort openvswitch.OVNSwitchPor return nil } - n.logger.Debug("Deleting instance port", logger.Ctx{"port": instancePortName, "source": source}) + n.logger.Debug("Deleting instance port", logger.Ctx{"port": instancePortName}) - internalRoutes, externalRoutes, err := n.instanceDevicePortRoutesParse(opts.DeviceConfig) + internalRoutes, externalRoutes, err := n.instanceDevicePortRoutesParse(deviceConfig) if err != nil { return fmt.Errorf("Failed parsing NIC device routes: %w", err) } @@ -4383,29 +4336,9 @@ func (n *ovn) InstanceDevicePortStop(ovsExternalOVNPort openvswitch.OVNSwitchPor } } - return nil -} - -// InstanceDevicePortRemove unregisters the NIC device in the OVN database by removing the DNS entry that should -// have been created during InstanceDevicePortAdd(). If the DNS record exists at remove time then this indicates -// the NIC device was successfully added and this function also clears any DHCP reservations for the NIC's IPs. -func (n *ovn) InstanceDevicePortRemove(instanceUUID string, deviceName string, deviceConfig deviceConfig.Device) error { - instancePortName := n.getInstanceDevicePortName(instanceUUID, deviceName) - revert := revert.New() defer revert.Fail() - client, err := openvswitch.NewOVN(n.state) - if err != nil { - return fmt.Errorf("Failed to get OVN client: %w", err) - } - - // Get DNS records. - dnsUUID, _, _, err := client.LogicalSwitchPortGetDNS(instancePortName) - if err != nil { - return err - } - // Remove DNS record if exists. if dnsUUID != "" { // If NIC has static IPv4 address then remove the DHCPv4 reservation. @@ -4699,7 +4632,7 @@ func (n *ovn) handleDependencyChange(uplinkName string, uplinkConfig map[string] // Re-add logical switch port to apply the l2proxy DNAT_AND_SNAT rules. n.logger.Debug("Re-adding instance OVN NIC port to apply ingress mode changes", logger.Ctx{"project": inst.Project, "instance": inst.Name, "device": devName}) - _, _, err = n.InstanceDevicePortStart(&OVNInstanceNICSetupOpts{ + _, err = n.InstanceDevicePortStart(&OVNInstanceNICSetupOpts{ InstanceUUID: instanceUUID, DNSName: inst.Name, DeviceName: devName, diff --git a/lxd/network/driver_physical.go b/lxd/network/driver_physical.go index eb6dc592f294..b2df82732ba0 100644 --- a/lxd/network/driver_physical.go +++ b/lxd/network/driver_physical.go @@ -9,6 +9,7 @@ import ( "github.com/canonical/lxd/lxd/cluster/request" "github.com/canonical/lxd/lxd/db" "github.com/canonical/lxd/lxd/ip" + "github.com/canonical/lxd/lxd/resources" "github.com/canonical/lxd/shared" "github.com/canonical/lxd/shared/api" "github.com/canonical/lxd/shared/logger" @@ -504,3 +505,26 @@ func (n *physical) DHCPv6Subnet() *net.IPNet { return subnet } + +// State returns the api.NetworkState for the network. +func (n *physical) State() (*api.NetworkState, error) { + if !n.IsManaged() { + return resources.GetNetworkState(n.name) + } + + state, err := resources.GetNetworkState(GetHostDevice(n.config["parent"], n.config["vlan"])) + if err != nil { + // If the parent is not found, return a response indicating the network is unavailable. + if api.StatusErrorCheck(err, 404) { + return &api.NetworkState{ + State: "unavailable", + Type: "unknown", + }, nil + } + + // In all other cases, return the original error. + return nil, err + } + + return state, nil +} diff --git a/lxd/network_acls.go b/lxd/network_acls.go index 4edf4a37a542..aea941b34be5 100644 --- a/lxd/network_acls.go +++ b/lxd/network_acls.go @@ -146,7 +146,8 @@ var networkACLLogCmd = APIEndpoint{ func networkACLsGet(d *Daemon, r *http.Request) response.Response { s := d.State() - projectName, _, err := project.NetworkProject(s.DB.Cluster, request.ProjectParam(r)) + requestProjectName := request.ProjectParam(r) + effectiveProjectName, _, err := project.NetworkProject(s.DB.Cluster, requestProjectName) if err != nil { return response.SmartError(err) } @@ -159,7 +160,7 @@ func networkACLsGet(d *Daemon, r *http.Request) response.Response { var err error // Get list of Network ACLs. - aclNames, err = tx.GetNetworkACLs(ctx, projectName) + aclNames, err = tx.GetNetworkACLs(ctx, effectiveProjectName) return err }) @@ -167,7 +168,7 @@ func networkACLsGet(d *Daemon, r *http.Request) response.Response { return response.InternalError(err) } - request.SetCtxValue(r, request.CtxEffectiveProjectName, projectName) + request.SetCtxValue(r, request.CtxEffectiveProjectName, effectiveProjectName) userHasPermission, err := s.Authorizer.GetPermissionChecker(r.Context(), auth.EntitlementCanView, entity.TypeNetworkACL) if err != nil { return response.SmartError(err) @@ -176,14 +177,14 @@ func networkACLsGet(d *Daemon, r *http.Request) response.Response { resultString := []string{} resultMap := []api.NetworkACL{} for _, aclName := range aclNames { - if !userHasPermission(entity.NetworkACLURL(projectName, aclName)) { + if !userHasPermission(entity.NetworkACLURL(requestProjectName, aclName)) { continue } if !recursion { resultString = append(resultString, fmt.Sprintf("/%s/network-acls/%s", version.APIVersion, aclName)) } else { - netACL, err := acl.LoadByName(s, projectName, aclName) + netACL, err := acl.LoadByName(s, effectiveProjectName, aclName) if err != nil { continue } diff --git a/lxd/network_allocations.go b/lxd/network_allocations.go index e626d00f655a..909e58c6c384 100644 --- a/lxd/network_allocations.go +++ b/lxd/network_allocations.go @@ -76,18 +76,20 @@ var networkAllocationsCmd = APIEndpoint{ func networkAllocationsGet(d *Daemon, r *http.Request) response.Response { s := d.State() - projectName, _, err := project.NetworkProject(d.State().DB.Cluster, request.ProjectParam(r)) + requestProjectName := request.ProjectParam(r) + effectiveProjectName, _, err := project.NetworkProject(d.State().DB.Cluster, requestProjectName) if err != nil { return response.SmartError(err) } + request.SetCtxValue(r, request.CtxEffectiveProjectName, effectiveProjectName) allProjects := shared.IsTrue(request.QueryParam(r, "all-projects")) var projectNames []string err = d.db.Cluster.Transaction(r.Context(), func(ctx context.Context, tx *db.ClusterTx) error { // Figure out the projects to retrieve. if !allProjects { - projectNames = []string{projectName} + projectNames = []string{effectiveProjectName} } else { // Get all project names if no specific project requested. projectNames, err = dbCluster.GetProjectNames(ctx, tx.Tx()) @@ -126,6 +128,13 @@ func networkAllocationsGet(d *Daemon, r *http.Request) response.Response { // Then, get all the networks, their network forwards and their network load balancers. for _, projectName := range projectNames { + // The auth.PermissionChecker expects the url to contain the request project (not the effective project). + // So when getting networks in a single project, ensure we use the request project name. + authCheckProjectName := projectName + if !allProjects { + authCheckProjectName = requestProjectName + } + var networkNames []string err := d.db.Cluster.Transaction(r.Context(), func(ctx context.Context, tx *db.ClusterTx) error { @@ -141,7 +150,7 @@ func networkAllocationsGet(d *Daemon, r *http.Request) response.Response { // Get all the networks, their attached instances, their network forwards and their network load balancers. for _, networkName := range networkNames { - if !userHasPermission(entity.NetworkURL(projectName, networkName)) { + if !userHasPermission(entity.NetworkURL(authCheckProjectName, networkName)) { continue } @@ -167,7 +176,7 @@ func networkAllocationsGet(d *Daemon, r *http.Request) response.Response { } leases, err := n.Leases(projectName, clusterRequest.ClientTypeNormal) - if err != nil && !errors.Is(network.ErrNotImplemented, err) { + if err != nil && !errors.Is(err, network.ErrNotImplemented) { return response.SmartError(fmt.Errorf("Failed getting leases for network %q in project %q: %w", networkName, projectName, err)) } diff --git a/lxd/network_forwards.go b/lxd/network_forwards.go index 289bf1a06101..21851c4bb038 100644 --- a/lxd/network_forwards.go +++ b/lxd/network_forwards.go @@ -19,24 +19,23 @@ import ( "github.com/canonical/lxd/lxd/response" "github.com/canonical/lxd/lxd/util" "github.com/canonical/lxd/shared/api" - "github.com/canonical/lxd/shared/entity" "github.com/canonical/lxd/shared/version" ) var networkForwardsCmd = APIEndpoint{ Path: "networks/{networkName}/forwards", - Get: APIEndpointAction{Handler: networkForwardsGet, AccessHandler: allowPermission(entity.TypeNetwork, auth.EntitlementCanView, "networkName")}, - Post: APIEndpointAction{Handler: networkForwardsPost, AccessHandler: allowPermission(entity.TypeNetwork, auth.EntitlementCanEdit, "networkName")}, + Get: APIEndpointAction{Handler: networkForwardsGet, AccessHandler: networkAccessHandler(auth.EntitlementCanView)}, + Post: APIEndpointAction{Handler: networkForwardsPost, AccessHandler: networkAccessHandler(auth.EntitlementCanEdit)}, } var networkForwardCmd = APIEndpoint{ Path: "networks/{networkName}/forwards/{listenAddress}", - Delete: APIEndpointAction{Handler: networkForwardDelete, AccessHandler: allowPermission(entity.TypeNetwork, auth.EntitlementCanDelete, "networkName")}, - Get: APIEndpointAction{Handler: networkForwardGet, AccessHandler: allowPermission(entity.TypeNetwork, auth.EntitlementCanView, "networkName")}, - Put: APIEndpointAction{Handler: networkForwardPut, AccessHandler: allowPermission(entity.TypeNetwork, auth.EntitlementCanEdit, "networkName")}, - Patch: APIEndpointAction{Handler: networkForwardPut, AccessHandler: allowPermission(entity.TypeNetwork, auth.EntitlementCanEdit, "networkName")}, + Delete: APIEndpointAction{Handler: networkForwardDelete, AccessHandler: networkAccessHandler(auth.EntitlementCanEdit)}, + Get: APIEndpointAction{Handler: networkForwardGet, AccessHandler: networkAccessHandler(auth.EntitlementCanView)}, + Put: APIEndpointAction{Handler: networkForwardPut, AccessHandler: networkAccessHandler(auth.EntitlementCanEdit)}, + Patch: APIEndpointAction{Handler: networkForwardPut, AccessHandler: networkAccessHandler(auth.EntitlementCanEdit)}, } // API endpoints @@ -136,23 +135,23 @@ var networkForwardCmd = APIEndpoint{ func networkForwardsGet(d *Daemon, r *http.Request) response.Response { s := d.State() - projectName, reqProject, err := project.NetworkProject(s.DB.Cluster, request.ProjectParam(r)) + effectiveProjectName, err := request.GetCtxValue[string](r.Context(), request.CtxEffectiveProjectName) if err != nil { return response.SmartError(err) } - networkName, err := url.PathUnescape(mux.Vars(r)["networkName"]) + details, err := request.GetCtxValue[networkDetails](r.Context(), ctxNetworkDetails) if err != nil { return response.SmartError(err) } - n, err := network.LoadByName(s, projectName, networkName) + n, err := network.LoadByName(s, effectiveProjectName, details.networkName) if err != nil { return response.SmartError(fmt.Errorf("Failed loading network: %w", err)) } // Check if project allows access to network. - if !project.NetworkAllowed(reqProject.Config, networkName, n.IsManaged()) { + if !project.NetworkAllowed(details.requestProject.Config, details.networkName, n.IsManaged()) { return response.SmartError(api.StatusErrorf(http.StatusNotFound, "Network not found")) } @@ -241,7 +240,12 @@ func networkForwardsPost(d *Daemon, r *http.Request) response.Response { return resp } - projectName, reqProject, err := project.NetworkProject(s.DB.Cluster, request.ProjectParam(r)) + effectiveProjectName, err := request.GetCtxValue[string](r.Context(), request.CtxEffectiveProjectName) + if err != nil { + return response.SmartError(err) + } + + details, err := request.GetCtxValue[networkDetails](r.Context(), ctxNetworkDetails) if err != nil { return response.SmartError(err) } @@ -255,18 +259,13 @@ func networkForwardsPost(d *Daemon, r *http.Request) response.Response { req.Normalise() // So we handle the request in normalised/canonical form. - networkName, err := url.PathUnescape(mux.Vars(r)["networkName"]) - if err != nil { - return response.SmartError(err) - } - - n, err := network.LoadByName(s, projectName, networkName) + n, err := network.LoadByName(s, effectiveProjectName, details.networkName) if err != nil { return response.SmartError(fmt.Errorf("Failed loading network: %w", err)) } // Check if project allows access to network. - if !project.NetworkAllowed(reqProject.Config, networkName, n.IsManaged()) { + if !project.NetworkAllowed(details.requestProject.Config, details.networkName, n.IsManaged()) { return response.SmartError(api.StatusErrorf(http.StatusNotFound, "Network not found")) } @@ -282,7 +281,7 @@ func networkForwardsPost(d *Daemon, r *http.Request) response.Response { } lc := lifecycle.NetworkForwardCreated.Event(n, listenAddress.String(), request.CreateRequestor(r), nil) - s.Events.SendLifecycle(projectName, lc) + s.Events.SendLifecycle(effectiveProjectName, lc) return response.SyncResponseLocation(true, nil, lc.Source) } @@ -319,23 +318,23 @@ func networkForwardDelete(d *Daemon, r *http.Request) response.Response { return resp } - projectName, reqProject, err := project.NetworkProject(s.DB.Cluster, request.ProjectParam(r)) + effectiveProjectName, err := request.GetCtxValue[string](r.Context(), request.CtxEffectiveProjectName) if err != nil { return response.SmartError(err) } - networkName, err := url.PathUnescape(mux.Vars(r)["networkName"]) + details, err := request.GetCtxValue[networkDetails](r.Context(), ctxNetworkDetails) if err != nil { return response.SmartError(err) } - n, err := network.LoadByName(s, projectName, networkName) + n, err := network.LoadByName(s, effectiveProjectName, details.networkName) if err != nil { return response.SmartError(fmt.Errorf("Failed loading network: %w", err)) } // Check if project allows access to network. - if !project.NetworkAllowed(reqProject.Config, networkName, n.IsManaged()) { + if !project.NetworkAllowed(details.requestProject.Config, details.networkName, n.IsManaged()) { return response.SmartError(api.StatusErrorf(http.StatusNotFound, "Network not found")) } @@ -355,7 +354,7 @@ func networkForwardDelete(d *Daemon, r *http.Request) response.Response { return response.SmartError(fmt.Errorf("Failed deleting forward: %w", err)) } - s.Events.SendLifecycle(projectName, lifecycle.NetworkForwardDeleted.Event(n, listenAddress, request.CreateRequestor(r), nil)) + s.Events.SendLifecycle(effectiveProjectName, lifecycle.NetworkForwardDeleted.Event(n, listenAddress, request.CreateRequestor(r), nil)) return response.EmptySyncResponse } @@ -408,23 +407,23 @@ func networkForwardGet(d *Daemon, r *http.Request) response.Response { return resp } - projectName, reqProject, err := project.NetworkProject(s.DB.Cluster, request.ProjectParam(r)) + effectiveProjectName, err := request.GetCtxValue[string](r.Context(), request.CtxEffectiveProjectName) if err != nil { return response.SmartError(err) } - networkName, err := url.PathUnescape(mux.Vars(r)["networkName"]) + details, err := request.GetCtxValue[networkDetails](r.Context(), ctxNetworkDetails) if err != nil { return response.SmartError(err) } - n, err := network.LoadByName(s, projectName, networkName) + n, err := network.LoadByName(s, effectiveProjectName, details.networkName) if err != nil { return response.SmartError(fmt.Errorf("Failed loading network: %w", err)) } // Check if project allows access to network. - if !project.NetworkAllowed(reqProject.Config, networkName, n.IsManaged()) { + if !project.NetworkAllowed(details.requestProject.Config, details.networkName, n.IsManaged()) { return response.SmartError(api.StatusErrorf(http.StatusNotFound, "Network not found")) } @@ -531,23 +530,23 @@ func networkForwardPut(d *Daemon, r *http.Request) response.Response { return resp } - projectName, reqProject, err := project.NetworkProject(s.DB.Cluster, request.ProjectParam(r)) + effectiveProjectName, err := request.GetCtxValue[string](r.Context(), request.CtxEffectiveProjectName) if err != nil { return response.SmartError(err) } - networkName, err := url.PathUnescape(mux.Vars(r)["networkName"]) + details, err := request.GetCtxValue[networkDetails](r.Context(), ctxNetworkDetails) if err != nil { return response.SmartError(err) } - n, err := network.LoadByName(s, projectName, networkName) + n, err := network.LoadByName(s, effectiveProjectName, details.networkName) if err != nil { return response.SmartError(fmt.Errorf("Failed loading network: %w", err)) } // Check if project allows access to network. - if !project.NetworkAllowed(reqProject.Config, networkName, n.IsManaged()) { + if !project.NetworkAllowed(details.requestProject.Config, details.networkName, n.IsManaged()) { return response.SmartError(api.StatusErrorf(http.StatusNotFound, "Network not found")) } @@ -607,7 +606,7 @@ func networkForwardPut(d *Daemon, r *http.Request) response.Response { return response.SmartError(fmt.Errorf("Failed updating forward: %w", err)) } - s.Events.SendLifecycle(projectName, lifecycle.NetworkForwardUpdated.Event(n, listenAddress, request.CreateRequestor(r), nil)) + s.Events.SendLifecycle(effectiveProjectName, lifecycle.NetworkForwardUpdated.Event(n, listenAddress, request.CreateRequestor(r), nil)) return response.EmptySyncResponse } diff --git a/lxd/network_load_balancers.go b/lxd/network_load_balancers.go index 89253cd96843..77f5c275a90e 100644 --- a/lxd/network_load_balancers.go +++ b/lxd/network_load_balancers.go @@ -19,24 +19,23 @@ import ( "github.com/canonical/lxd/lxd/response" "github.com/canonical/lxd/lxd/util" "github.com/canonical/lxd/shared/api" - "github.com/canonical/lxd/shared/entity" "github.com/canonical/lxd/shared/version" ) var networkLoadBalancersCmd = APIEndpoint{ Path: "networks/{networkName}/load-balancers", - Get: APIEndpointAction{Handler: networkLoadBalancersGet, AccessHandler: allowPermission(entity.TypeNetwork, auth.EntitlementCanView, "networkName")}, - Post: APIEndpointAction{Handler: networkLoadBalancersPost, AccessHandler: allowPermission(entity.TypeNetwork, auth.EntitlementCanEdit, "networkName")}, + Get: APIEndpointAction{Handler: networkLoadBalancersGet, AccessHandler: networkAccessHandler(auth.EntitlementCanView)}, + Post: APIEndpointAction{Handler: networkLoadBalancersPost, AccessHandler: networkAccessHandler(auth.EntitlementCanEdit)}, } var networkLoadBalancerCmd = APIEndpoint{ Path: "networks/{networkName}/load-balancers/{listenAddress}", - Delete: APIEndpointAction{Handler: networkLoadBalancerDelete, AccessHandler: allowPermission(entity.TypeNetwork, auth.EntitlementCanEdit, "networkName")}, - Get: APIEndpointAction{Handler: networkLoadBalancerGet, AccessHandler: allowPermission(entity.TypeNetwork, auth.EntitlementCanView, "networkName")}, - Put: APIEndpointAction{Handler: networkLoadBalancerPut, AccessHandler: allowPermission(entity.TypeNetwork, auth.EntitlementCanEdit, "networkName")}, - Patch: APIEndpointAction{Handler: networkLoadBalancerPut, AccessHandler: allowPermission(entity.TypeNetwork, auth.EntitlementCanEdit, "networkName")}, + Delete: APIEndpointAction{Handler: networkLoadBalancerDelete, AccessHandler: networkAccessHandler(auth.EntitlementCanEdit)}, + Get: APIEndpointAction{Handler: networkLoadBalancerGet, AccessHandler: networkAccessHandler(auth.EntitlementCanView)}, + Put: APIEndpointAction{Handler: networkLoadBalancerPut, AccessHandler: networkAccessHandler(auth.EntitlementCanEdit)}, + Patch: APIEndpointAction{Handler: networkLoadBalancerPut, AccessHandler: networkAccessHandler(auth.EntitlementCanEdit)}, } // API endpoints @@ -136,23 +135,23 @@ var networkLoadBalancerCmd = APIEndpoint{ func networkLoadBalancersGet(d *Daemon, r *http.Request) response.Response { s := d.State() - projectName, reqProject, err := project.NetworkProject(s.DB.Cluster, request.ProjectParam(r)) + effectiveProjectName, err := request.GetCtxValue[string](r.Context(), request.CtxEffectiveProjectName) if err != nil { return response.SmartError(err) } - networkName, err := url.PathUnescape(mux.Vars(r)["networkName"]) + details, err := request.GetCtxValue[networkDetails](r.Context(), ctxNetworkDetails) if err != nil { return response.SmartError(err) } - n, err := network.LoadByName(s, projectName, networkName) + n, err := network.LoadByName(s, effectiveProjectName, details.networkName) if err != nil { return response.SmartError(fmt.Errorf("Failed loading network: %w", err)) } // Check if project allows access to network. - if !project.NetworkAllowed(reqProject.Config, networkName, n.IsManaged()) { + if !project.NetworkAllowed(details.requestProject.Config, details.networkName, n.IsManaged()) { return response.SmartError(api.StatusErrorf(http.StatusNotFound, "Network not found")) } @@ -242,7 +241,12 @@ func networkLoadBalancersPost(d *Daemon, r *http.Request) response.Response { return resp } - projectName, reqProject, err := project.NetworkProject(s.DB.Cluster, request.ProjectParam(r)) + effectiveProjectName, err := request.GetCtxValue[string](r.Context(), request.CtxEffectiveProjectName) + if err != nil { + return response.SmartError(err) + } + + details, err := request.GetCtxValue[networkDetails](r.Context(), ctxNetworkDetails) if err != nil { return response.SmartError(err) } @@ -256,18 +260,13 @@ func networkLoadBalancersPost(d *Daemon, r *http.Request) response.Response { req.Normalise() // So we handle the request in normalised/canonical form. - networkName, err := url.PathUnescape(mux.Vars(r)["networkName"]) - if err != nil { - return response.SmartError(err) - } - - n, err := network.LoadByName(s, projectName, networkName) + n, err := network.LoadByName(s, effectiveProjectName, details.networkName) if err != nil { return response.SmartError(fmt.Errorf("Failed loading network: %w", err)) } // Check if project allows access to network. - if !project.NetworkAllowed(reqProject.Config, networkName, n.IsManaged()) { + if !project.NetworkAllowed(details.requestProject.Config, details.networkName, n.IsManaged()) { return response.SmartError(api.StatusErrorf(http.StatusNotFound, "Network not found")) } @@ -283,7 +282,7 @@ func networkLoadBalancersPost(d *Daemon, r *http.Request) response.Response { } lc := lifecycle.NetworkLoadBalancerCreated.Event(n, listenAddress.String(), request.CreateRequestor(r), nil) - s.Events.SendLifecycle(projectName, lc) + s.Events.SendLifecycle(effectiveProjectName, lc) return response.SyncResponseLocation(true, nil, lc.Source) } @@ -320,23 +319,23 @@ func networkLoadBalancerDelete(d *Daemon, r *http.Request) response.Response { return resp } - projectName, reqProject, err := project.NetworkProject(s.DB.Cluster, request.ProjectParam(r)) + effectiveProjectName, err := request.GetCtxValue[string](r.Context(), request.CtxEffectiveProjectName) if err != nil { return response.SmartError(err) } - networkName, err := url.PathUnescape(mux.Vars(r)["networkName"]) + details, err := request.GetCtxValue[networkDetails](r.Context(), ctxNetworkDetails) if err != nil { return response.SmartError(err) } - n, err := network.LoadByName(s, projectName, networkName) + n, err := network.LoadByName(s, effectiveProjectName, details.networkName) if err != nil { return response.SmartError(fmt.Errorf("Failed loading network: %w", err)) } // Check if project allows access to network. - if !project.NetworkAllowed(reqProject.Config, networkName, n.IsManaged()) { + if !project.NetworkAllowed(details.requestProject.Config, details.networkName, n.IsManaged()) { return response.SmartError(api.StatusErrorf(http.StatusNotFound, "Network not found")) } @@ -356,7 +355,7 @@ func networkLoadBalancerDelete(d *Daemon, r *http.Request) response.Response { return response.SmartError(fmt.Errorf("Failed deleting load balancer: %w", err)) } - s.Events.SendLifecycle(projectName, lifecycle.NetworkLoadBalancerDeleted.Event(n, listenAddress, request.CreateRequestor(r), nil)) + s.Events.SendLifecycle(effectiveProjectName, lifecycle.NetworkLoadBalancerDeleted.Event(n, listenAddress, request.CreateRequestor(r), nil)) return response.EmptySyncResponse } @@ -409,23 +408,23 @@ func networkLoadBalancerGet(d *Daemon, r *http.Request) response.Response { return resp } - projectName, reqProject, err := project.NetworkProject(s.DB.Cluster, request.ProjectParam(r)) + effectiveProjectName, err := request.GetCtxValue[string](r.Context(), request.CtxEffectiveProjectName) if err != nil { return response.SmartError(err) } - networkName, err := url.PathUnescape(mux.Vars(r)["networkName"]) + details, err := request.GetCtxValue[networkDetails](r.Context(), ctxNetworkDetails) if err != nil { return response.SmartError(err) } - n, err := network.LoadByName(s, projectName, networkName) + n, err := network.LoadByName(s, effectiveProjectName, details.networkName) if err != nil { return response.SmartError(fmt.Errorf("Failed loading network: %w", err)) } // Check if project allows access to network. - if !project.NetworkAllowed(reqProject.Config, networkName, n.IsManaged()) { + if !project.NetworkAllowed(details.requestProject.Config, details.networkName, n.IsManaged()) { return response.SmartError(api.StatusErrorf(http.StatusNotFound, "Network not found")) } @@ -532,23 +531,23 @@ func networkLoadBalancerPut(d *Daemon, r *http.Request) response.Response { return resp } - projectName, reqProject, err := project.NetworkProject(s.DB.Cluster, request.ProjectParam(r)) + effectiveProjectName, err := request.GetCtxValue[string](r.Context(), request.CtxEffectiveProjectName) if err != nil { return response.SmartError(err) } - networkName, err := url.PathUnescape(mux.Vars(r)["networkName"]) + details, err := request.GetCtxValue[networkDetails](r.Context(), ctxNetworkDetails) if err != nil { return response.SmartError(err) } - n, err := network.LoadByName(s, projectName, networkName) + n, err := network.LoadByName(s, effectiveProjectName, details.networkName) if err != nil { return response.SmartError(fmt.Errorf("Failed loading network: %w", err)) } // Check if project allows access to network. - if !project.NetworkAllowed(reqProject.Config, networkName, n.IsManaged()) { + if !project.NetworkAllowed(details.requestProject.Config, details.networkName, n.IsManaged()) { return response.SmartError(api.StatusErrorf(http.StatusNotFound, "Network not found")) } @@ -614,7 +613,7 @@ func networkLoadBalancerPut(d *Daemon, r *http.Request) response.Response { return response.SmartError(fmt.Errorf("Failed updating load balancer: %w", err)) } - s.Events.SendLifecycle(projectName, lifecycle.NetworkLoadBalancerUpdated.Event(n, listenAddress, request.CreateRequestor(r), nil)) + s.Events.SendLifecycle(effectiveProjectName, lifecycle.NetworkLoadBalancerUpdated.Event(n, listenAddress, request.CreateRequestor(r), nil)) return response.EmptySyncResponse } diff --git a/lxd/network_peer.go b/lxd/network_peer.go index c86af162501f..52c4e5633664 100644 --- a/lxd/network_peer.go +++ b/lxd/network_peer.go @@ -18,24 +18,23 @@ import ( "github.com/canonical/lxd/lxd/response" "github.com/canonical/lxd/lxd/util" "github.com/canonical/lxd/shared/api" - "github.com/canonical/lxd/shared/entity" "github.com/canonical/lxd/shared/version" ) var networkPeersCmd = APIEndpoint{ Path: "networks/{networkName}/peers", - Get: APIEndpointAction{Handler: networkPeersGet, AccessHandler: allowPermission(entity.TypeNetwork, auth.EntitlementCanView, "networkName")}, - Post: APIEndpointAction{Handler: networkPeersPost, AccessHandler: allowPermission(entity.TypeNetwork, auth.EntitlementCanEdit, "networkName")}, + Get: APIEndpointAction{Handler: networkPeersGet, AccessHandler: networkAccessHandler(auth.EntitlementCanView)}, + Post: APIEndpointAction{Handler: networkPeersPost, AccessHandler: networkAccessHandler(auth.EntitlementCanEdit)}, } var networkPeerCmd = APIEndpoint{ Path: "networks/{networkName}/peers/{peerName}", - Delete: APIEndpointAction{Handler: networkPeerDelete, AccessHandler: allowPermission(entity.TypeNetwork, auth.EntitlementCanEdit, "networkName")}, - Get: APIEndpointAction{Handler: networkPeerGet, AccessHandler: allowPermission(entity.TypeNetwork, auth.EntitlementCanView, "networkName")}, - Put: APIEndpointAction{Handler: networkPeerPut, AccessHandler: allowPermission(entity.TypeNetwork, auth.EntitlementCanEdit, "networkName")}, - Patch: APIEndpointAction{Handler: networkPeerPut, AccessHandler: allowPermission(entity.TypeNetwork, auth.EntitlementCanEdit, "networkName")}, + Delete: APIEndpointAction{Handler: networkPeerDelete, AccessHandler: networkAccessHandler(auth.EntitlementCanEdit)}, + Get: APIEndpointAction{Handler: networkPeerGet, AccessHandler: networkAccessHandler(auth.EntitlementCanView)}, + Put: APIEndpointAction{Handler: networkPeerPut, AccessHandler: networkAccessHandler(auth.EntitlementCanEdit)}, + Patch: APIEndpointAction{Handler: networkPeerPut, AccessHandler: networkAccessHandler(auth.EntitlementCanEdit)}, } // API endpoints @@ -135,23 +134,23 @@ var networkPeerCmd = APIEndpoint{ func networkPeersGet(d *Daemon, r *http.Request) response.Response { s := d.State() - projectName, reqProject, err := project.NetworkProject(s.DB.Cluster, request.ProjectParam(r)) + effectiveProjectName, err := request.GetCtxValue[string](r.Context(), request.CtxEffectiveProjectName) if err != nil { return response.SmartError(err) } - networkName, err := url.PathUnescape(mux.Vars(r)["networkName"]) + details, err := request.GetCtxValue[networkDetails](r.Context(), ctxNetworkDetails) if err != nil { return response.SmartError(err) } - n, err := network.LoadByName(s, projectName, networkName) + n, err := network.LoadByName(s, effectiveProjectName, details.networkName) if err != nil { return response.SmartError(fmt.Errorf("Failed loading network: %w", err)) } // Check if project allows access to network. - if !project.NetworkAllowed(reqProject.Config, networkName, n.IsManaged()) { + if !project.NetworkAllowed(details.requestProject.Config, details.networkName, n.IsManaged()) { return response.SmartError(api.StatusErrorf(http.StatusNotFound, "Network not found")) } @@ -242,7 +241,12 @@ func networkPeersPost(d *Daemon, r *http.Request) response.Response { return resp } - projectName, reqProject, err := project.NetworkProject(s.DB.Cluster, request.ProjectParam(r)) + effectiveProjectName, err := request.GetCtxValue[string](r.Context(), request.CtxEffectiveProjectName) + if err != nil { + return response.SmartError(err) + } + + details, err := request.GetCtxValue[networkDetails](r.Context(), ctxNetworkDetails) if err != nil { return response.SmartError(err) } @@ -254,18 +258,13 @@ func networkPeersPost(d *Daemon, r *http.Request) response.Response { return response.BadRequest(err) } - networkName, err := url.PathUnescape(mux.Vars(r)["networkName"]) - if err != nil { - return response.SmartError(err) - } - - n, err := network.LoadByName(s, projectName, networkName) + n, err := network.LoadByName(s, effectiveProjectName, details.networkName) if err != nil { return response.SmartError(fmt.Errorf("Failed loading network: %w", err)) } // Check if project allows access to network. - if !project.NetworkAllowed(reqProject.Config, networkName, n.IsManaged()) { + if !project.NetworkAllowed(details.requestProject.Config, details.networkName, n.IsManaged()) { return response.SmartError(api.StatusErrorf(http.StatusNotFound, "Network not found")) } @@ -279,7 +278,7 @@ func networkPeersPost(d *Daemon, r *http.Request) response.Response { } lc := lifecycle.NetworkPeerCreated.Event(n, req.Name, request.CreateRequestor(r), nil) - s.Events.SendLifecycle(projectName, lc) + s.Events.SendLifecycle(effectiveProjectName, lc) return response.SyncResponseLocation(true, nil, lc.Source) } @@ -316,23 +315,23 @@ func networkPeerDelete(d *Daemon, r *http.Request) response.Response { return resp } - projectName, reqProject, err := project.NetworkProject(s.DB.Cluster, request.ProjectParam(r)) + effectiveProjectName, err := request.GetCtxValue[string](r.Context(), request.CtxEffectiveProjectName) if err != nil { return response.SmartError(err) } - networkName, err := url.PathUnescape(mux.Vars(r)["networkName"]) + details, err := request.GetCtxValue[networkDetails](r.Context(), ctxNetworkDetails) if err != nil { return response.SmartError(err) } - n, err := network.LoadByName(s, projectName, networkName) + n, err := network.LoadByName(s, effectiveProjectName, details.networkName) if err != nil { return response.SmartError(fmt.Errorf("Failed loading network: %w", err)) } // Check if project allows access to network. - if !project.NetworkAllowed(reqProject.Config, networkName, n.IsManaged()) { + if !project.NetworkAllowed(details.requestProject.Config, details.networkName, n.IsManaged()) { return response.SmartError(api.StatusErrorf(http.StatusNotFound, "Network not found")) } @@ -350,7 +349,7 @@ func networkPeerDelete(d *Daemon, r *http.Request) response.Response { return response.SmartError(fmt.Errorf("Failed deleting peer: %w", err)) } - s.Events.SendLifecycle(projectName, lifecycle.NetworkPeerDeleted.Event(n, peerName, request.CreateRequestor(r), nil)) + s.Events.SendLifecycle(effectiveProjectName, lifecycle.NetworkPeerDeleted.Event(n, peerName, request.CreateRequestor(r), nil)) return response.EmptySyncResponse } @@ -403,23 +402,23 @@ func networkPeerGet(d *Daemon, r *http.Request) response.Response { return resp } - projectName, reqProject, err := project.NetworkProject(s.DB.Cluster, request.ProjectParam(r)) + effectiveProjectName, err := request.GetCtxValue[string](r.Context(), request.CtxEffectiveProjectName) if err != nil { return response.SmartError(err) } - networkName, err := url.PathUnescape(mux.Vars(r)["networkName"]) + details, err := request.GetCtxValue[networkDetails](r.Context(), ctxNetworkDetails) if err != nil { return response.SmartError(err) } - n, err := network.LoadByName(s, projectName, networkName) + n, err := network.LoadByName(s, effectiveProjectName, details.networkName) if err != nil { return response.SmartError(fmt.Errorf("Failed loading network: %w", err)) } // Check if project allows access to network. - if !project.NetworkAllowed(reqProject.Config, networkName, n.IsManaged()) { + if !project.NetworkAllowed(details.requestProject.Config, details.networkName, n.IsManaged()) { return response.SmartError(api.StatusErrorf(http.StatusNotFound, "Network not found")) } @@ -526,23 +525,23 @@ func networkPeerPut(d *Daemon, r *http.Request) response.Response { return resp } - projectName, reqProject, err := project.NetworkProject(s.DB.Cluster, request.ProjectParam(r)) + effectiveProjectName, err := request.GetCtxValue[string](r.Context(), request.CtxEffectiveProjectName) if err != nil { return response.SmartError(err) } - networkName, err := url.PathUnescape(mux.Vars(r)["networkName"]) + details, err := request.GetCtxValue[networkDetails](r.Context(), ctxNetworkDetails) if err != nil { return response.SmartError(err) } - n, err := network.LoadByName(s, projectName, networkName) + n, err := network.LoadByName(s, effectiveProjectName, details.networkName) if err != nil { return response.SmartError(fmt.Errorf("Failed loading network: %w", err)) } // Check if project allows access to network. - if !project.NetworkAllowed(reqProject.Config, networkName, n.IsManaged()) { + if !project.NetworkAllowed(details.requestProject.Config, details.networkName, n.IsManaged()) { return response.SmartError(api.StatusErrorf(http.StatusNotFound, "Network not found")) } @@ -567,7 +566,7 @@ func networkPeerPut(d *Daemon, r *http.Request) response.Response { return response.SmartError(fmt.Errorf("Failed updating peer: %w", err)) } - s.Events.SendLifecycle(projectName, lifecycle.NetworkPeerUpdated.Event(n, peerName, request.CreateRequestor(r), nil)) + s.Events.SendLifecycle(effectiveProjectName, lifecycle.NetworkPeerUpdated.Event(n, peerName, request.CreateRequestor(r), nil)) return response.EmptySyncResponse } diff --git a/lxd/network_zones.go b/lxd/network_zones.go index 3d098207d67a..c8921f067a69 100644 --- a/lxd/network_zones.go +++ b/lxd/network_zones.go @@ -17,6 +17,7 @@ import ( "github.com/canonical/lxd/lxd/project" "github.com/canonical/lxd/lxd/request" "github.com/canonical/lxd/lxd/response" + "github.com/canonical/lxd/lxd/state" "github.com/canonical/lxd/lxd/util" "github.com/canonical/lxd/shared/api" "github.com/canonical/lxd/shared/entity" @@ -33,10 +34,67 @@ var networkZonesCmd = APIEndpoint{ var networkZoneCmd = APIEndpoint{ Path: "network-zones/{zone}", - Delete: APIEndpointAction{Handler: networkZoneDelete, AccessHandler: allowPermission(entity.TypeNetworkZone, auth.EntitlementCanDelete, "zone")}, - Get: APIEndpointAction{Handler: networkZoneGet, AccessHandler: allowPermission(entity.TypeNetworkZone, auth.EntitlementCanView, "zone")}, - Put: APIEndpointAction{Handler: networkZonePut, AccessHandler: allowPermission(entity.TypeNetworkZone, auth.EntitlementCanEdit, "zone")}, - Patch: APIEndpointAction{Handler: networkZonePut, AccessHandler: allowPermission(entity.TypeNetworkZone, auth.EntitlementCanEdit, "zone")}, + Delete: APIEndpointAction{Handler: networkZoneDelete, AccessHandler: networkZoneAccessHandler(auth.EntitlementCanDelete)}, + Get: APIEndpointAction{Handler: networkZoneGet, AccessHandler: networkZoneAccessHandler(auth.EntitlementCanView)}, + Put: APIEndpointAction{Handler: networkZonePut, AccessHandler: networkZoneAccessHandler(auth.EntitlementCanEdit)}, + Patch: APIEndpointAction{Handler: networkZonePut, AccessHandler: networkZoneAccessHandler(auth.EntitlementCanEdit)}, +} + +// ctxNetworkZoneDetails should be used only for getting/setting networkZoneDetails in the request context. +const ctxNetworkZoneDetails request.CtxKey = "network-zone-details" + +// networkZoneDetails contains fields that are determined prior to the access check. This is set in the request context when +// addNetworkZoneDetailsToRequestContext is called. +type networkZoneDetails struct { + zoneName string + requestProject api.Project +} + +// addNetworkZoneDetailsToRequestContext sets request.CtxEffectiveProjectName (string) and ctxNetworkZoneDetails (networkZoneDetails) +// in the request context. +func addNetworkZoneDetailsToRequestContext(s *state.State, r *http.Request) error { + zoneName, err := url.PathUnescape(mux.Vars(r)["zone"]) + if err != nil { + return err + } + + requestProjectName := request.ProjectParam(r) + effectiveProjectName, requestProject, err := project.NetworkZoneProject(s.DB.Cluster, requestProjectName) + if err != nil { + return fmt.Errorf("Failed to check project %q network feature: %w", requestProjectName, err) + } + + request.SetCtxValue(r, request.CtxEffectiveProjectName, effectiveProjectName) + request.SetCtxValue(r, ctxNetworkZoneDetails, networkZoneDetails{ + zoneName: zoneName, + requestProject: *requestProject, + }) + + return nil +} + +// profileAccessHandler calls addNetworkZoneDetailsToRequestContext, then uses the details to perform an access check with +// the given auth.Entitlement. +func networkZoneAccessHandler(entitlement auth.Entitlement) func(d *Daemon, r *http.Request) response.Response { + return func(d *Daemon, r *http.Request) response.Response { + s := d.State() + err := addNetworkZoneDetailsToRequestContext(s, r) + if err != nil { + return response.SmartError(err) + } + + details, err := request.GetCtxValue[networkZoneDetails](r.Context(), ctxNetworkZoneDetails) + if err != nil { + return response.SmartError(err) + } + + err = s.Authorizer.CheckPermission(r.Context(), entity.NetworkZoneURL(details.requestProject.Name, details.zoneName), entitlement) + if err != nil { + return response.SmartError(err) + } + + return response.EmptySyncResponse + } } // API endpoints. @@ -136,7 +194,8 @@ var networkZoneCmd = APIEndpoint{ func networkZonesGet(d *Daemon, r *http.Request) response.Response { s := d.State() - projectName, _, err := project.NetworkZoneProject(s.DB.Cluster, request.ProjectParam(r)) + requestProjectName := request.ProjectParam(r) + effectiveProjectName, _, err := project.NetworkZoneProject(s.DB.Cluster, requestProjectName) if err != nil { return response.SmartError(err) } @@ -147,7 +206,7 @@ func networkZonesGet(d *Daemon, r *http.Request) response.Response { err = s.DB.Cluster.Transaction(r.Context(), func(ctx context.Context, tx *db.ClusterTx) error { // Get list of Network zones. - zoneNames, err = tx.GetNetworkZonesByProject(ctx, projectName) + zoneNames, err = tx.GetNetworkZonesByProject(ctx, effectiveProjectName) return err }) @@ -155,7 +214,7 @@ func networkZonesGet(d *Daemon, r *http.Request) response.Response { return response.InternalError(err) } - request.SetCtxValue(r, request.CtxEffectiveProjectName, projectName) + request.SetCtxValue(r, request.CtxEffectiveProjectName, effectiveProjectName) userHasPermission, err := s.Authorizer.GetPermissionChecker(r.Context(), auth.EntitlementCanView, entity.TypeNetworkZone) if err != nil { return response.InternalError(err) @@ -164,14 +223,14 @@ func networkZonesGet(d *Daemon, r *http.Request) response.Response { resultString := []string{} resultMap := []api.NetworkZone{} for _, zoneName := range zoneNames { - if !userHasPermission(entity.NetworkZoneURL(projectName, zoneName)) { + if !userHasPermission(entity.NetworkZoneURL(requestProjectName, zoneName)) { continue } if !recursion { resultString = append(resultString, api.NewURL().Path(version.APIVersion, "network-zones", zoneName).String()) } else { - netzone, err := zone.LoadByNameAndProject(s, projectName, zoneName) + netzone, err := zone.LoadByNameAndProject(s, effectiveProjectName, zoneName) if err != nil { continue } @@ -288,17 +347,17 @@ func networkZonesPost(d *Daemon, r *http.Request) response.Response { func networkZoneDelete(d *Daemon, r *http.Request) response.Response { s := d.State() - projectName, _, err := project.NetworkZoneProject(s.DB.Cluster, request.ProjectParam(r)) + effectiveProjectName, err := request.GetCtxValue[string](r.Context(), request.CtxEffectiveProjectName) if err != nil { return response.SmartError(err) } - zoneName, err := url.PathUnescape(mux.Vars(r)["zone"]) + details, err := request.GetCtxValue[networkZoneDetails](r.Context(), ctxNetworkZoneDetails) if err != nil { return response.SmartError(err) } - netzone, err := zone.LoadByNameAndProject(s, projectName, zoneName) + netzone, err := zone.LoadByNameAndProject(s, effectiveProjectName, details.zoneName) if err != nil { return response.SmartError(err) } @@ -308,7 +367,7 @@ func networkZoneDelete(d *Daemon, r *http.Request) response.Response { return response.SmartError(err) } - s.Events.SendLifecycle(projectName, lifecycle.NetworkZoneDeleted.Event(netzone, request.CreateRequestor(r), nil)) + s.Events.SendLifecycle(effectiveProjectName, lifecycle.NetworkZoneDeleted.Event(netzone, request.CreateRequestor(r), nil)) return response.EmptySyncResponse } @@ -356,17 +415,17 @@ func networkZoneDelete(d *Daemon, r *http.Request) response.Response { func networkZoneGet(d *Daemon, r *http.Request) response.Response { s := d.State() - projectName, _, err := project.NetworkZoneProject(s.DB.Cluster, request.ProjectParam(r)) + effectiveProjectName, err := request.GetCtxValue[string](r.Context(), request.CtxEffectiveProjectName) if err != nil { return response.SmartError(err) } - zoneName, err := url.PathUnescape(mux.Vars(r)["zone"]) + details, err := request.GetCtxValue[networkZoneDetails](r.Context(), ctxNetworkZoneDetails) if err != nil { return response.SmartError(err) } - netzone, err := zone.LoadByNameAndProject(s, projectName, zoneName) + netzone, err := zone.LoadByNameAndProject(s, effectiveProjectName, details.zoneName) if err != nil { return response.SmartError(err) } @@ -454,18 +513,18 @@ func networkZoneGet(d *Daemon, r *http.Request) response.Response { func networkZonePut(d *Daemon, r *http.Request) response.Response { s := d.State() - projectName, _, err := project.NetworkZoneProject(s.DB.Cluster, request.ProjectParam(r)) + effectiveProjectName, err := request.GetCtxValue[string](r.Context(), request.CtxEffectiveProjectName) if err != nil { return response.SmartError(err) } - zoneName, err := url.PathUnescape(mux.Vars(r)["zone"]) + details, err := request.GetCtxValue[networkZoneDetails](r.Context(), ctxNetworkZoneDetails) if err != nil { return response.SmartError(err) } // Get the existing Network zone. - netzone, err := zone.LoadByNameAndProject(s, projectName, zoneName) + netzone, err := zone.LoadByNameAndProject(s, effectiveProjectName, details.zoneName) if err != nil { return response.SmartError(err) } @@ -502,7 +561,7 @@ func networkZonePut(d *Daemon, r *http.Request) response.Response { return response.SmartError(err) } - s.Events.SendLifecycle(projectName, lifecycle.NetworkZoneUpdated.Event(netzone, request.CreateRequestor(r), nil)) + s.Events.SendLifecycle(effectiveProjectName, lifecycle.NetworkZoneUpdated.Event(netzone, request.CreateRequestor(r), nil)) return response.EmptySyncResponse } diff --git a/lxd/network_zones_records.go b/lxd/network_zones_records.go index c98b60f8001e..6227f91d6d9d 100644 --- a/lxd/network_zones_records.go +++ b/lxd/network_zones_records.go @@ -11,29 +11,27 @@ import ( clusterRequest "github.com/canonical/lxd/lxd/cluster/request" "github.com/canonical/lxd/lxd/lifecycle" "github.com/canonical/lxd/lxd/network/zone" - "github.com/canonical/lxd/lxd/project" "github.com/canonical/lxd/lxd/request" "github.com/canonical/lxd/lxd/response" "github.com/canonical/lxd/lxd/util" "github.com/canonical/lxd/shared/api" - "github.com/canonical/lxd/shared/entity" "github.com/canonical/lxd/shared/version" ) var networkZoneRecordsCmd = APIEndpoint{ Path: "network-zones/{zone}/records", - Get: APIEndpointAction{Handler: networkZoneRecordsGet, AccessHandler: allowPermission(entity.TypeNetworkZone, auth.EntitlementCanView, "zone")}, - Post: APIEndpointAction{Handler: networkZoneRecordsPost, AccessHandler: allowPermission(entity.TypeNetworkZone, auth.EntitlementCanEdit, "zone")}, + Get: APIEndpointAction{Handler: networkZoneRecordsGet, AccessHandler: networkZoneAccessHandler(auth.EntitlementCanView)}, + Post: APIEndpointAction{Handler: networkZoneRecordsPost, AccessHandler: networkZoneAccessHandler(auth.EntitlementCanEdit)}, } var networkZoneRecordCmd = APIEndpoint{ Path: "network-zones/{zone}/records/{name}", - Delete: APIEndpointAction{Handler: networkZoneRecordDelete, AccessHandler: allowPermission(entity.TypeNetworkZone, auth.EntitlementCanEdit, "zone")}, - Get: APIEndpointAction{Handler: networkZoneRecordGet, AccessHandler: allowPermission(entity.TypeNetworkZone, auth.EntitlementCanView, "zone")}, - Put: APIEndpointAction{Handler: networkZoneRecordPut, AccessHandler: allowPermission(entity.TypeNetworkZone, auth.EntitlementCanEdit, "zone")}, - Patch: APIEndpointAction{Handler: networkZoneRecordPut, AccessHandler: allowPermission(entity.TypeNetworkZone, auth.EntitlementCanEdit, "zone")}, + Delete: APIEndpointAction{Handler: networkZoneRecordDelete, AccessHandler: networkZoneAccessHandler(auth.EntitlementCanEdit)}, + Get: APIEndpointAction{Handler: networkZoneRecordGet, AccessHandler: networkZoneAccessHandler(auth.EntitlementCanView)}, + Put: APIEndpointAction{Handler: networkZoneRecordPut, AccessHandler: networkZoneAccessHandler(auth.EntitlementCanEdit)}, + Patch: APIEndpointAction{Handler: networkZoneRecordPut, AccessHandler: networkZoneAccessHandler(auth.EntitlementCanEdit)}, } // API endpoints. @@ -133,20 +131,20 @@ var networkZoneRecordCmd = APIEndpoint{ func networkZoneRecordsGet(d *Daemon, r *http.Request) response.Response { s := d.State() - projectName, _, err := project.NetworkZoneProject(s.DB.Cluster, request.ProjectParam(r)) + effectiveProjectName, err := request.GetCtxValue[string](r.Context(), request.CtxEffectiveProjectName) if err != nil { return response.SmartError(err) } - recursion := util.IsRecursionRequest(r) - - zoneName, err := url.PathUnescape(mux.Vars(r)["zone"]) + details, err := request.GetCtxValue[networkZoneDetails](r.Context(), ctxNetworkZoneDetails) if err != nil { return response.SmartError(err) } + recursion := util.IsRecursionRequest(r) + // Get the network zone. - netzone, err := zone.LoadByNameAndProject(s, projectName, zoneName) + netzone, err := zone.LoadByNameAndProject(s, effectiveProjectName, details.zoneName) if err != nil { return response.SmartError(err) } @@ -161,7 +159,7 @@ func networkZoneRecordsGet(d *Daemon, r *http.Request) response.Response { resultMap := []api.NetworkZoneRecord{} for _, record := range records { if !recursion { - resultString = append(resultString, api.NewURL().Path(version.APIVersion, "network-zones", zoneName, "records", record.Name).String()) + resultString = append(resultString, api.NewURL().Path(version.APIVersion, "network-zones", details.zoneName, "records", record.Name).String()) } else { resultMap = append(resultMap, record) } @@ -209,18 +207,18 @@ func networkZoneRecordsGet(d *Daemon, r *http.Request) response.Response { func networkZoneRecordsPost(d *Daemon, r *http.Request) response.Response { s := d.State() - projectName, _, err := project.NetworkZoneProject(s.DB.Cluster, request.ProjectParam(r)) + effectiveProjectName, err := request.GetCtxValue[string](r.Context(), request.CtxEffectiveProjectName) if err != nil { return response.SmartError(err) } - zoneName, err := url.PathUnescape(mux.Vars(r)["zone"]) + details, err := request.GetCtxValue[networkZoneDetails](r.Context(), ctxNetworkZoneDetails) if err != nil { return response.SmartError(err) } // Get the network zone. - netzone, err := zone.LoadByNameAndProject(s, projectName, zoneName) + netzone, err := zone.LoadByNameAndProject(s, effectiveProjectName, details.zoneName) if err != nil { return response.SmartError(err) } @@ -239,7 +237,7 @@ func networkZoneRecordsPost(d *Daemon, r *http.Request) response.Response { } lc := lifecycle.NetworkZoneRecordCreated.Event(netzone, req.Name, request.CreateRequestor(r), nil) - s.Events.SendLifecycle(projectName, lc) + s.Events.SendLifecycle(effectiveProjectName, lc) return response.SyncResponseLocation(true, nil, lc.Source) } @@ -271,12 +269,12 @@ func networkZoneRecordsPost(d *Daemon, r *http.Request) response.Response { func networkZoneRecordDelete(d *Daemon, r *http.Request) response.Response { s := d.State() - projectName, _, err := project.NetworkZoneProject(s.DB.Cluster, request.ProjectParam(r)) + effectiveProjectName, err := request.GetCtxValue[string](r.Context(), request.CtxEffectiveProjectName) if err != nil { return response.SmartError(err) } - zoneName, err := url.PathUnescape(mux.Vars(r)["zone"]) + details, err := request.GetCtxValue[networkZoneDetails](r.Context(), ctxNetworkZoneDetails) if err != nil { return response.SmartError(err) } @@ -287,7 +285,7 @@ func networkZoneRecordDelete(d *Daemon, r *http.Request) response.Response { } // Get the network zone. - netzone, err := zone.LoadByNameAndProject(s, projectName, zoneName) + netzone, err := zone.LoadByNameAndProject(s, effectiveProjectName, details.zoneName) if err != nil { return response.SmartError(err) } @@ -298,7 +296,7 @@ func networkZoneRecordDelete(d *Daemon, r *http.Request) response.Response { return response.SmartError(err) } - s.Events.SendLifecycle(projectName, lifecycle.NetworkZoneRecordDeleted.Event(netzone, recordName, request.CreateRequestor(r), nil)) + s.Events.SendLifecycle(effectiveProjectName, lifecycle.NetworkZoneRecordDeleted.Event(netzone, recordName, request.CreateRequestor(r), nil)) return response.EmptySyncResponse } @@ -346,12 +344,12 @@ func networkZoneRecordDelete(d *Daemon, r *http.Request) response.Response { func networkZoneRecordGet(d *Daemon, r *http.Request) response.Response { s := d.State() - projectName, _, err := project.NetworkZoneProject(s.DB.Cluster, request.ProjectParam(r)) + effectiveProjectName, err := request.GetCtxValue[string](r.Context(), request.CtxEffectiveProjectName) if err != nil { return response.SmartError(err) } - zoneName, err := url.PathUnescape(mux.Vars(r)["zone"]) + details, err := request.GetCtxValue[networkZoneDetails](r.Context(), ctxNetworkZoneDetails) if err != nil { return response.SmartError(err) } @@ -362,7 +360,7 @@ func networkZoneRecordGet(d *Daemon, r *http.Request) response.Response { } // Get the network zone. - netzone, err := zone.LoadByNameAndProject(s, projectName, zoneName) + netzone, err := zone.LoadByNameAndProject(s, effectiveProjectName, details.zoneName) if err != nil { return response.SmartError(err) } @@ -448,12 +446,12 @@ func networkZoneRecordGet(d *Daemon, r *http.Request) response.Response { func networkZoneRecordPut(d *Daemon, r *http.Request) response.Response { s := d.State() - projectName, _, err := project.NetworkZoneProject(s.DB.Cluster, request.ProjectParam(r)) + effectiveProjectName, err := request.GetCtxValue[string](r.Context(), request.CtxEffectiveProjectName) if err != nil { return response.SmartError(err) } - zoneName, err := url.PathUnescape(mux.Vars(r)["zone"]) + details, err := request.GetCtxValue[networkZoneDetails](r.Context(), ctxNetworkZoneDetails) if err != nil { return response.SmartError(err) } @@ -464,7 +462,7 @@ func networkZoneRecordPut(d *Daemon, r *http.Request) response.Response { } // Get the network zone. - netzone, err := zone.LoadByNameAndProject(s, projectName, zoneName) + netzone, err := zone.LoadByNameAndProject(s, effectiveProjectName, details.zoneName) if err != nil { return response.SmartError(err) } @@ -505,7 +503,7 @@ func networkZoneRecordPut(d *Daemon, r *http.Request) response.Response { return response.SmartError(err) } - s.Events.SendLifecycle(projectName, lifecycle.NetworkZoneRecordUpdated.Event(netzone, recordName, request.CreateRequestor(r), nil)) + s.Events.SendLifecycle(effectiveProjectName, lifecycle.NetworkZoneRecordUpdated.Event(netzone, recordName, request.CreateRequestor(r), nil)) return response.EmptySyncResponse } diff --git a/lxd/networks.go b/lxd/networks.go index 990dd2d6beee..7eac1ca082ae 100644 --- a/lxd/networks.go +++ b/lxd/networks.go @@ -54,23 +54,80 @@ var networksCmd = APIEndpoint{ var networkCmd = APIEndpoint{ Path: "networks/{networkName}", - Delete: APIEndpointAction{Handler: networkDelete, AccessHandler: allowPermission(entity.TypeNetwork, auth.EntitlementCanDelete, "networkName")}, - Get: APIEndpointAction{Handler: networkGet, AccessHandler: allowPermission(entity.TypeNetwork, auth.EntitlementCanView, "networkName")}, - Patch: APIEndpointAction{Handler: networkPatch, AccessHandler: allowPermission(entity.TypeNetwork, auth.EntitlementCanEdit, "networkName")}, - Post: APIEndpointAction{Handler: networkPost, AccessHandler: allowPermission(entity.TypeNetwork, auth.EntitlementCanEdit, "networkName")}, - Put: APIEndpointAction{Handler: networkPut, AccessHandler: allowPermission(entity.TypeNetwork, auth.EntitlementCanEdit, "networkName")}, + Delete: APIEndpointAction{Handler: networkDelete, AccessHandler: networkAccessHandler(auth.EntitlementCanDelete)}, + Get: APIEndpointAction{Handler: networkGet, AccessHandler: networkAccessHandler(auth.EntitlementCanView)}, + Patch: APIEndpointAction{Handler: networkPatch, AccessHandler: networkAccessHandler(auth.EntitlementCanEdit)}, + Post: APIEndpointAction{Handler: networkPost, AccessHandler: networkAccessHandler(auth.EntitlementCanEdit)}, + Put: APIEndpointAction{Handler: networkPut, AccessHandler: networkAccessHandler(auth.EntitlementCanEdit)}, } var networkLeasesCmd = APIEndpoint{ Path: "networks/{networkName}/leases", - Get: APIEndpointAction{Handler: networkLeasesGet, AccessHandler: allowPermission(entity.TypeNetwork, auth.EntitlementCanView, "networkName")}, + Get: APIEndpointAction{Handler: networkLeasesGet, AccessHandler: networkAccessHandler(auth.EntitlementCanView)}, } var networkStateCmd = APIEndpoint{ Path: "networks/{networkName}/state", - Get: APIEndpointAction{Handler: networkStateGet, AccessHandler: allowPermission(entity.TypeNetwork, auth.EntitlementCanView, "networkName")}, + Get: APIEndpointAction{Handler: networkStateGet, AccessHandler: networkAccessHandler(auth.EntitlementCanView)}, +} + +// ctxNetworkDetails should be used only for getting/setting networkDetails in the request context. +const ctxNetworkDetails request.CtxKey = "network-details" + +// networkDetails contains fields that are determined prior to the access check. This is set in the request context when +// addNetworkDetailsToRequestContext is called. +type networkDetails struct { + networkName string + requestProject api.Project +} + +// addNetworkDetailsToRequestContext sets request.CtxEffectiveProjectName (string) and ctxNetworkDetails (networkDetails) +// in the request context. +func addNetworkDetailsToRequestContext(s *state.State, r *http.Request) error { + networkName, err := url.PathUnescape(mux.Vars(r)["networkName"]) + if err != nil { + return err + } + + requestProjectName := request.ProjectParam(r) + effectiveProjectName, requestProject, err := project.NetworkProject(s.DB.Cluster, requestProjectName) + if err != nil { + return fmt.Errorf("Failed to check project %q network feature: %w", requestProjectName, err) + } + + request.SetCtxValue(r, request.CtxEffectiveProjectName, effectiveProjectName) + request.SetCtxValue(r, ctxNetworkDetails, networkDetails{ + networkName: networkName, + requestProject: *requestProject, + }) + + return nil +} + +// profileAccessHandler calls addProfileDetailsToRequestContext, then uses the details to perform an access check with +// the given auth.Entitlement. +func networkAccessHandler(entitlement auth.Entitlement) func(d *Daemon, r *http.Request) response.Response { + return func(d *Daemon, r *http.Request) response.Response { + s := d.State() + err := addNetworkDetailsToRequestContext(s, r) + if err != nil { + return response.SmartError(err) + } + + details, err := request.GetCtxValue[networkDetails](r.Context(), ctxNetworkDetails) + if err != nil { + return response.SmartError(err) + } + + err = s.Authorizer.CheckPermission(r.Context(), entity.NetworkURL(details.requestProject.Name, details.networkName), entitlement) + if err != nil { + return response.SmartError(err) + } + + return response.EmptySyncResponse + } } // API endpoints @@ -170,12 +227,13 @@ var networkStateCmd = APIEndpoint{ func networksGet(d *Daemon, r *http.Request) response.Response { s := d.State() - projectName, reqProject, err := project.NetworkProject(s.DB.Cluster, request.ProjectParam(r)) + requestProjectName := request.ProjectParam(r) + effectiveProjectName, reqProject, err := project.NetworkProject(s.DB.Cluster, requestProjectName) if err != nil { return response.SmartError(err) } - request.SetCtxValue(r, request.CtxEffectiveProjectName, projectName) + request.SetCtxValue(r, request.CtxEffectiveProjectName, effectiveProjectName) recursion := util.IsRecursionRequest(r) @@ -183,7 +241,7 @@ func networksGet(d *Daemon, r *http.Request) response.Response { err = s.DB.Cluster.Transaction(r.Context(), func(ctx context.Context, tx *db.ClusterTx) error { // Get list of managed networks (that may or may not have network interfaces on the host). - networkNames, err = tx.GetNetworks(ctx, projectName) + networkNames, err = tx.GetNetworks(ctx, effectiveProjectName) return err }) @@ -192,7 +250,7 @@ func networksGet(d *Daemon, r *http.Request) response.Response { } // Get list of actual network interfaces on the host as well if the effective project is Default. - if projectName == api.ProjectDefaultName { + if effectiveProjectName == api.ProjectDefaultName { ifaces, err := net.Interfaces() if err != nil { return response.InternalError(err) @@ -219,14 +277,14 @@ func networksGet(d *Daemon, r *http.Request) response.Response { resultString := []string{} resultMap := []api.Network{} for _, networkName := range networkNames { - if !userHasPermission(entity.NetworkURL(projectName, networkName)) { + if !userHasPermission(entity.NetworkURL(requestProjectName, networkName)) { continue } if !recursion { resultString = append(resultString, fmt.Sprintf("/%s/networks/%s", version.APIVersion, networkName)) } else { - net, err := doNetworkGet(s, r, s.ServerClustered, projectName, reqProject.Config, networkName) + net, err := doNetworkGet(s, r, s.ServerClustered, requestProjectName, reqProject.Config, networkName) if err != nil { continue } @@ -796,12 +854,7 @@ func networkGet(d *Daemon, r *http.Request) response.Response { return resp } - projectName, reqProject, err := project.NetworkProject(s.DB.Cluster, request.ProjectParam(r)) - if err != nil { - return response.SmartError(err) - } - - networkName, err := url.PathUnescape(mux.Vars(r)["networkName"]) + details, err := request.GetCtxValue[networkDetails](r.Context(), ctxNetworkDetails) if err != nil { return response.SmartError(err) } @@ -811,7 +864,7 @@ func networkGet(d *Daemon, r *http.Request) response.Response { allNodes = true } - n, err := doNetworkGet(s, r, allNodes, projectName, reqProject.Config, networkName) + n, err := doNetworkGet(s, r, allNodes, details.requestProject.Name, details.requestProject.Config, details.networkName) if err != nil { return response.SmartError(err) } @@ -824,20 +877,25 @@ func networkGet(d *Daemon, r *http.Request) response.Response { // doNetworkGet returns information about the specified network. // If the network being requested is a managed network and allNodes is true then node specific config is removed. // Otherwise if allNodes is false then the network's local status is returned. -func doNetworkGet(s *state.State, r *http.Request, allNodes bool, projectName string, reqProjectConfig map[string]string, networkName string) (api.Network, error) { +func doNetworkGet(s *state.State, r *http.Request, allNodes bool, requestProjectName string, reqProjectConfig map[string]string, networkName string) (api.Network, error) { + effectiveProjectName, err := request.GetCtxValue[string](r.Context(), request.CtxEffectiveProjectName) + if err != nil { + return api.Network{}, err + } + // Ignore veth pairs (for performance reasons). if strings.HasPrefix(networkName, "veth") { return api.Network{}, api.StatusErrorf(http.StatusNotFound, "Network not found") } // Get some information. - n, err := network.LoadByName(s, projectName, networkName) + n, err := network.LoadByName(s, effectiveProjectName, networkName) if err != nil && !api.StatusErrorCheck(err, http.StatusNotFound) { return api.Network{}, fmt.Errorf("Failed loading network: %w", err) } // Don't allow retrieving info about the local server interfaces when not using default project. - if projectName != api.ProjectDefaultName && n == nil { + if effectiveProjectName != api.ProjectDefaultName && n == nil { return api.Network{}, api.StatusErrorf(http.StatusNotFound, "Network not found") } @@ -865,7 +923,7 @@ func doNetworkGet(s *state.State, r *http.Request, allNodes bool, projectName st apiNet.Description = n.Description() apiNet.Type = n.Type() - err = s.Authorizer.CheckPermission(r.Context(), entity.NetworkURL(projectName, networkName), auth.EntitlementCanEdit) + err = s.Authorizer.CheckPermission(r.Context(), entity.NetworkURL(requestProjectName, networkName), auth.EntitlementCanEdit) if err != nil && !auth.IsDeniedError(err) { return api.Network{}, err } else if err == nil { @@ -906,7 +964,7 @@ func doNetworkGet(s *state.State, r *http.Request, allNodes bool, projectName st networkID = n.ID() } - usedBy, err := network.UsedBy(s, projectName, networkID, apiNet.Name, apiNet.Type, false) + usedBy, err := network.UsedBy(s, effectiveProjectName, networkID, apiNet.Name, apiNet.Type, false) if err != nil { return api.Network{}, err } @@ -954,24 +1012,24 @@ func doNetworkGet(s *state.State, r *http.Request, allNodes bool, projectName st func networkDelete(d *Daemon, r *http.Request) response.Response { s := d.State() - projectName, reqProject, err := project.NetworkProject(s.DB.Cluster, request.ProjectParam(r)) + effectiveProjectName, err := request.GetCtxValue[string](r.Context(), request.CtxEffectiveProjectName) if err != nil { return response.SmartError(err) } - networkName, err := url.PathUnescape(mux.Vars(r)["networkName"]) + details, err := request.GetCtxValue[networkDetails](r.Context(), ctxNetworkDetails) if err != nil { return response.SmartError(err) } // Get the existing network. - n, err := network.LoadByName(s, projectName, networkName) + n, err := network.LoadByName(s, effectiveProjectName, details.networkName) if err != nil { return response.SmartError(fmt.Errorf("Failed loading network: %w", err)) } // Check if project allows access to network. - if !project.NetworkAllowed(reqProject.Config, networkName, n.IsManaged()) { + if !project.NetworkAllowed(details.requestProject.Config, details.networkName, n.IsManaged()) { return response.SmartError(api.StatusErrorf(http.StatusNotFound, "Network not found")) } @@ -1029,7 +1087,7 @@ func networkDelete(d *Daemon, r *http.Request) response.Response { } requestor := request.CreateRequestor(r) - s.Events.SendLifecycle(projectName, lifecycle.NetworkDeleted.Event(n, requestor, nil)) + s.Events.SendLifecycle(effectiveProjectName, lifecycle.NetworkDeleted.Event(n, requestor, nil)) return response.EmptySyncResponse } @@ -1080,12 +1138,12 @@ func networkPost(d *Daemon, r *http.Request) response.Response { return response.BadRequest(fmt.Errorf("Renaming clustered network not supported")) } - projectName, reqProject, err := project.NetworkProject(s.DB.Cluster, request.ProjectParam(r)) + effectiveProjectName, err := request.GetCtxValue[string](r.Context(), request.CtxEffectiveProjectName) if err != nil { return response.SmartError(err) } - networkName, err := url.PathUnescape(mux.Vars(r)["networkName"]) + details, err := request.GetCtxValue[networkDetails](r.Context(), ctxNetworkDetails) if err != nil { return response.SmartError(err) } @@ -1099,13 +1157,13 @@ func networkPost(d *Daemon, r *http.Request) response.Response { } // Get the existing network. - n, err := network.LoadByName(s, projectName, networkName) + n, err := network.LoadByName(s, effectiveProjectName, details.networkName) if err != nil { return response.SmartError(fmt.Errorf("Failed loading network: %w", err)) } // Check if project allows access to network. - if !project.NetworkAllowed(reqProject.Config, networkName, n.IsManaged()) { + if !project.NetworkAllowed(details.requestProject.Config, details.networkName, n.IsManaged()) { return response.SmartError(api.StatusErrorf(http.StatusNotFound, "Network not found")) } @@ -1137,7 +1195,7 @@ func networkPost(d *Daemon, r *http.Request) response.Response { err = s.DB.Cluster.Transaction(r.Context(), func(ctx context.Context, tx *db.ClusterTx) error { // Check that the name isn't already in used by an existing managed network. - networks, err = tx.GetNetworks(ctx, projectName) + networks, err = tx.GetNetworks(ctx, effectiveProjectName) return err }) @@ -1156,8 +1214,8 @@ func networkPost(d *Daemon, r *http.Request) response.Response { } requestor := request.CreateRequestor(r) - lc := lifecycle.NetworkRenamed.Event(n, requestor, map[string]any{"old_name": networkName}) - s.Events.SendLifecycle(projectName, lc) + lc := lifecycle.NetworkRenamed.Event(n, requestor, map[string]any{"old_name": details.networkName}) + s.Events.SendLifecycle(effectiveProjectName, lc) return response.SyncResponseLocation(true, nil, lc.Source) } @@ -1210,24 +1268,24 @@ func networkPut(d *Daemon, r *http.Request) response.Response { return resp } - projectName, reqProject, err := project.NetworkProject(s.DB.Cluster, request.ProjectParam(r)) + effectiveProjectName, err := request.GetCtxValue[string](r.Context(), request.CtxEffectiveProjectName) if err != nil { return response.SmartError(err) } - networkName, err := url.PathUnescape(mux.Vars(r)["networkName"]) + details, err := request.GetCtxValue[networkDetails](r.Context(), ctxNetworkDetails) if err != nil { return response.SmartError(err) } // Get the existing network. - n, err := network.LoadByName(s, projectName, networkName) + n, err := network.LoadByName(s, effectiveProjectName, details.networkName) if err != nil { return response.SmartError(fmt.Errorf("Failed loading network: %w", err)) } // Check if project allows access to network. - if !project.NetworkAllowed(reqProject.Config, networkName, n.IsManaged()) { + if !project.NetworkAllowed(details.requestProject.Config, details.networkName, n.IsManaged()) { return response.SmartError(api.StatusErrorf(http.StatusNotFound, "Network not found")) } @@ -1287,10 +1345,10 @@ func networkPut(d *Daemon, r *http.Request) response.Response { clientType := clusterRequest.UserAgentClientType(r.Header.Get("User-Agent")) - response := doNetworkUpdate(projectName, n, req, targetNode, clientType, r.Method, s.ServerClustered) + response := doNetworkUpdate(effectiveProjectName, n, req, targetNode, clientType, r.Method, s.ServerClustered) requestor := request.CreateRequestor(r) - s.Events.SendLifecycle(projectName, lifecycle.NetworkUpdated.Event(n, requestor, nil)) + s.Events.SendLifecycle(effectiveProjectName, lifecycle.NetworkUpdated.Event(n, requestor, nil)) return response } diff --git a/lxd/patches.go b/lxd/patches.go index 0b4e6bd6e2b8..fb18b4a13e2f 100644 --- a/lxd/patches.go +++ b/lxd/patches.go @@ -23,6 +23,7 @@ import ( "github.com/canonical/lxd/lxd/network" "github.com/canonical/lxd/lxd/node" "github.com/canonical/lxd/lxd/project" + "github.com/canonical/lxd/lxd/state" storagePools "github.com/canonical/lxd/lxd/storage" storageDrivers "github.com/canonical/lxd/lxd/storage/drivers" "github.com/canonical/lxd/lxd/util" @@ -90,6 +91,7 @@ var patches = []patch{ {name: "storage_set_volume_uuid_v2", stage: patchPostDaemonStorage, run: patchStorageSetVolumeUUIDV2}, {name: "storage_move_custom_iso_block_volumes_v2", stage: patchPostDaemonStorage, run: patchStorageRenameCustomISOBlockVolumesV2}, {name: "storage_unset_invalid_block_settings_v2", stage: patchPostDaemonStorage, run: patchStorageUnsetInvalidBlockSettingsV2}, + {name: "instance_remove_volatile_last_state_ip_addresses", stage: patchPostDaemonStorage, run: patchInstanceRemoveVolatileLastStateIPAddresses}, } type patch struct { @@ -99,8 +101,6 @@ type patch struct { } func (p *patch) apply(d *Daemon) error { - logger.Info("Applying patch", logger.Ctx{"name": p.name}) - err := p.run(p.name, d) if err != nil { return fmt.Errorf("Failed applying patch %q: %w", p.name, err) @@ -128,8 +128,9 @@ func patchesGetNames() []string { return names } -// patchesApplyPostDaemonStorage applies the patches that need to run after the daemon storage is initialised. +// patchesApply applies the patches for the specified stage. func patchesApply(d *Daemon, stage patchStage) error { + logger.Debug("Checking for patches", logger.Ctx{"stage": stage}) appliedPatches, err := d.db.Node.GetAppliedPatches() if err != nil { return err @@ -140,10 +141,15 @@ func patchesApply(d *Daemon, stage patchStage) error { return fmt.Errorf("Patch %q has no stage set: %d", patch.name, patch.stage) } + if patch.stage != stage { + continue + } + if shared.ValueInSlice(patch.name, appliedPatches) { continue } + logger.Info("Applying patch", logger.Ctx{"name": patch.name, "stage": stage}) err := patch.apply(d) if err != nil { return err @@ -157,15 +163,15 @@ func patchesApply(d *Daemon, stage patchStage) error { // Use this function to deterministically coordinate the execution of patches on a single cluster member. // The member selection isn't based on the raft leader election which allows getting the same // results even if the raft cluster is currently running any kind of election. -func selectedPatchClusterMember(d *Daemon) (bool, error) { +func selectedPatchClusterMember(s *state.State) (bool, error) { // If not clustered indicate to apply the patch. - if d.serverName == "none" { + if !s.ServerClustered { return true, nil } // Get a list of all cluster members. var clusterMembers []string - err := d.db.Cluster.Transaction(d.shutdownCtx, func(ctx context.Context, tx *db.ClusterTx) error { + err := s.DB.Cluster.Transaction(s.ShutdownCtx, func(ctx context.Context, tx *db.ClusterTx) error { nodeInfos, err := tx.GetNodes(ctx) if err != nil { return err @@ -189,7 +195,7 @@ func selectedPatchClusterMember(d *Daemon) (bool, error) { sort.Strings(clusterMembers) // If the first cluster member in the sorted list matches the current node indicate to apply the patch. - return clusterMembers[0] == d.serverName, nil + return clusterMembers[0] == s.ServerName, nil } // Patches begin here @@ -496,7 +502,7 @@ func patchVMRenameUUIDKey(name string, d *Daemon) error { } for _, snap := range snaps { - config, err := dbCluster.GetInstanceConfig(ctx, tx.Tx(), snap.ID) + config, err := dbCluster.GetInstanceSnapshotConfig(ctx, tx.Tx(), snap.ID) if err != nil { return err } @@ -911,8 +917,8 @@ func patchZfsSetContentTypeUserProperty(name string, d *Daemon) error { } for _, vol := range volumes { - // In a non-clusted environment ServerName will be empty. - if s.ServerName != "" && vol.Location != s.ServerName { + // Only consider volumes local to this server. + if s.ServerClustered && vol.Location != s.ServerName { continue } @@ -935,116 +941,7 @@ func patchZfsSetContentTypeUserProperty(name string, d *Daemon) error { // patchStorageZfsUnsetInvalidBlockSettings removes invalid block settings from volumes. func patchStorageZfsUnsetInvalidBlockSettings(_ string, d *Daemon) error { - s := d.State() - - var pools []string - - err := s.DB.Cluster.Transaction(context.TODO(), func(ctx context.Context, tx *db.ClusterTx) error { - var err error - - // Get all storage pool names. - pools, err = tx.GetStoragePoolNames(ctx) - - return err - }) - if err != nil { - // Skip the rest of the patch if no storage pools were found. - if api.StatusErrorCheck(err, http.StatusNotFound) { - return nil - } - - return fmt.Errorf("Failed getting storage pool names: %w", err) - } - - volTypeCustom := dbCluster.StoragePoolVolumeTypeCustom - volTypeVM := dbCluster.StoragePoolVolumeTypeVM - - poolIDNameMap := make(map[int64]string, 0) - poolVolumes := make(map[int64][]*db.StorageVolume, 0) - - err = s.DB.Cluster.Transaction(s.ShutdownCtx, func(ctx context.Context, tx *db.ClusterTx) error { - for _, pool := range pools { - // Get storage pool ID. - poolID, err := tx.GetStoragePoolID(ctx, pool) - if err != nil { - return fmt.Errorf("Failed getting storage pool ID of pool %q: %w", pool, err) - } - - driverName, err := tx.GetStoragePoolDriver(ctx, poolID) - if err != nil { - return fmt.Errorf("Failed getting storage pool driver of pool %q: %w", pool, err) - } - - if driverName != "zfs" { - continue - } - - // Get the pool's custom storage volumes. - volumes, err := tx.GetStorageVolumes(ctx, false, db.StorageVolumeFilter{Type: &volTypeCustom, PoolID: &poolID}, db.StorageVolumeFilter{Type: &volTypeVM, PoolID: &poolID}) - if err != nil { - return fmt.Errorf("Failed getting custom storage volumes of pool %q: %w", pool, err) - } - - if poolVolumes[poolID] == nil { - poolVolumes[poolID] = []*db.StorageVolume{} - } - - poolIDNameMap[poolID] = pool - poolVolumes[poolID] = append(poolVolumes[poolID], volumes...) - } - - return nil - }) - if err != nil { - return err - } - - var volType int - - for pool, volumes := range poolVolumes { - for _, vol := range volumes { - // In a non-clusted environment ServerName will be empty. - if s.ServerName != "" && vol.Location != s.ServerName { - continue - } - - config := vol.Config - - if shared.IsTrue(config["zfs.block_mode"]) { - continue - } - - update := false - for _, k := range []string{"block.filesystem", "block.mount_options"} { - _, found := config[k] - if found { - delete(config, k) - update = true - } - } - - if !update { - continue - } - - if vol.Type == dbCluster.StoragePoolVolumeTypeNameVM { - volType = volTypeVM - } else if vol.Type == dbCluster.StoragePoolVolumeTypeNameCustom { - volType = volTypeCustom - } else { - // Should not happen. - continue - } - - err = s.DB.Cluster.Transaction(context.TODO(), func(ctx context.Context, tx *db.ClusterTx) error { - return tx.UpdateStoragePoolVolume(ctx, vol.Project, vol.Name, volType, pool, vol.Description, config) - }) - if err != nil { - return fmt.Errorf("Failed updating volume %q in project %q on pool %q: %w", vol.Name, vol.Project, poolIDNameMap[pool], err) - } - } - } - + // Superseded by patchStorageZfsUnsetInvalidBlockSettingsV2. return nil } @@ -1121,8 +1018,8 @@ func patchStorageZfsUnsetInvalidBlockSettingsV2(_ string, d *Daemon) error { for pool, volumes := range poolVolumes { for _, vol := range volumes { - // In a non-clusted environment ServerName will be empty. - if s.ServerName != "" && vol.Location != s.ServerName { + // Only consider volumes local to this server. + if s.ServerClustered && vol.Location != s.ServerName { continue } @@ -1357,7 +1254,7 @@ func patchStorageRenameCustomISOBlockVolumesV2(name string, d *Daemon) error { return err } - isSelectedPatchMember, err := selectedPatchClusterMember(d) + isSelectedPatchMember, err := selectedPatchClusterMember(s) if err != nil { return err } @@ -1369,14 +1266,16 @@ func patchStorageRenameCustomISOBlockVolumesV2(name string, d *Daemon) error { return fmt.Errorf("Failed loading pool %q: %w", poolName, err) } + isRemotePool := p.Driver().Info().Remote + // Ensure the renaming is done only on the selected patch cluster member for remote storage pools. - if p.Driver().Info().Remote && !isSelectedPatchMember { + if isRemotePool && !isSelectedPatchMember { continue } for _, vol := range volumes { - // In a non-clusted environment ServerName will be empty. - if s.ServerName != "" && vol.Location != s.ServerName { + // Skip volumes on local pools that are on other servers. + if !isRemotePool && s.ServerClustered && vol.Location != s.ServerName { continue } @@ -1431,4 +1330,78 @@ DELETE FROM storage_volumes_config return err } +// patchInstanceRemoveVolatileLastStateIPAddresses removes the volatile.*.last_state.ip_addresses config key from instances. +func patchInstanceRemoveVolatileLastStateIPAddresses(_ string, d *Daemon) error { + s := d.State() + + err := s.DB.Cluster.Transaction(s.ShutdownCtx, func(ctx context.Context, tx *db.ClusterTx) error { + foundCandidateKey := func(k string) bool { + if strings.HasPrefix(k, "volatile.") && strings.HasSuffix(k, ".last_state.ip_addresses") { + return true + } + + return false + } + + // Get instances on this member. + return tx.InstanceList(ctx, func(dbInst db.InstanceArgs, p api.Project) error { + l := logger.AddContext(logger.Ctx{"project": dbInst.Project, "inst": dbInst.Name}) + + for k := range dbInst.Config { + if !foundCandidateKey(k) { + continue + } + + // Remove found config key. + changes := map[string]string{ + k: "", + } + + l.Debug("Removing config key from instance", logger.Ctx{"key": k}) + err := tx.UpdateInstanceConfig(dbInst.ID, changes) + if err != nil { + return fmt.Errorf("Failed removing config key %q for instance %q (Project %q): %w", k, dbInst.Name, dbInst.Project, err) + } + } + + // Get snapshots for instance so we can check those too. + dbSnaps, err := tx.GetInstanceSnapshotsWithName(ctx, dbInst.Project, dbInst.Name) + if err != nil { + return fmt.Errorf("Failed getting snapshots for %q (Project %q): %w", dbInst.Name, dbInst.Project, err) + } + + for _, dbSnap := range dbSnaps { + snapConfig, err := dbCluster.GetInstanceSnapshotConfig(ctx, tx.Tx(), dbSnap.ID) + if err != nil { + return err + } + + for k := range snapConfig { + if !foundCandidateKey(k) { + continue + } + + // Remove found config key. + changes := map[string]string{ + k: "", + } + + l.Debug("Removing config key from instance snapshot", logger.Ctx{"snapshot": dbSnap.Name, "key": k}) + err := tx.UpdateInstanceSnapshotConfig(dbSnap.ID, changes) + if err != nil { + return fmt.Errorf("Failed removing config key %q for instance %q (Project %q): %w", k, dbSnap.Name, dbSnap.Project, err) + } + } + } + + return nil + }, dbCluster.InstanceFilter{Node: &s.ServerName}) + }) + if err != nil { + return fmt.Errorf("Failed removing volatile.*.last_state.ip_addresses config keys: %w", err) + } + + return nil +} + // Patches end here diff --git a/lxd/profiles.go b/lxd/profiles.go index 3526076b9140..d2aaa587996e 100644 --- a/lxd/profiles.go +++ b/lxd/profiles.go @@ -25,6 +25,7 @@ import ( "github.com/canonical/lxd/lxd/project" "github.com/canonical/lxd/lxd/request" "github.com/canonical/lxd/lxd/response" + "github.com/canonical/lxd/lxd/state" "github.com/canonical/lxd/lxd/util" "github.com/canonical/lxd/shared" "github.com/canonical/lxd/shared/api" @@ -43,11 +44,68 @@ var profilesCmd = APIEndpoint{ var profileCmd = APIEndpoint{ Path: "profiles/{name}", - Delete: APIEndpointAction{Handler: profileDelete, AccessHandler: allowPermission(entity.TypeProfile, auth.EntitlementCanDelete, "name")}, - Get: APIEndpointAction{Handler: profileGet, AccessHandler: allowPermission(entity.TypeProfile, auth.EntitlementCanView, "name")}, - Patch: APIEndpointAction{Handler: profilePatch, AccessHandler: allowPermission(entity.TypeProfile, auth.EntitlementCanEdit, "name")}, - Post: APIEndpointAction{Handler: profilePost, AccessHandler: allowPermission(entity.TypeProfile, auth.EntitlementCanEdit, "name")}, - Put: APIEndpointAction{Handler: profilePut, AccessHandler: allowPermission(entity.TypeProfile, auth.EntitlementCanEdit, "name")}, + Delete: APIEndpointAction{Handler: profileDelete, AccessHandler: profileAccessHandler(auth.EntitlementCanDelete)}, + Get: APIEndpointAction{Handler: profileGet, AccessHandler: profileAccessHandler(auth.EntitlementCanView)}, + Patch: APIEndpointAction{Handler: profilePatch, AccessHandler: profileAccessHandler(auth.EntitlementCanEdit)}, + Post: APIEndpointAction{Handler: profilePost, AccessHandler: profileAccessHandler(auth.EntitlementCanEdit)}, + Put: APIEndpointAction{Handler: profilePut, AccessHandler: profileAccessHandler(auth.EntitlementCanEdit)}, +} + +// ctxProfileDetails should be used only for getting/setting profileDetails in the request context. +const ctxProfileDetails request.CtxKey = "profile-details" + +// profileDetails contains fields that are determined prior to the access check. This is set in the request context when +// addProfileDetailsToRequestContext is called. +type profileDetails struct { + profileName string + effectiveProject api.Project +} + +// addProfileDetailsToRequestContext sets request.CtxEffectiveProjectName (string) and ctxProfileDetails (profileDetails) +// in the request context. +func addProfileDetailsToRequestContext(s *state.State, r *http.Request) error { + profileName, err := url.PathUnescape(mux.Vars(r)["name"]) + if err != nil { + return err + } + + requestProjectName := request.ProjectParam(r) + effectiveProject, err := project.ProfileProject(s.DB.Cluster, requestProjectName) + if err != nil { + return fmt.Errorf("Failed to check project %q profile feature: %w", requestProjectName, err) + } + + request.SetCtxValue(r, request.CtxEffectiveProjectName, effectiveProject.Name) + request.SetCtxValue(r, ctxProfileDetails, profileDetails{ + profileName: profileName, + effectiveProject: *effectiveProject, + }) + + return nil +} + +// profileAccessHandler calls addProfileDetailsToRequestContext, then uses the details to perform an access check with +// the given auth.Entitlement. +func profileAccessHandler(entitlement auth.Entitlement) func(d *Daemon, r *http.Request) response.Response { + return func(d *Daemon, r *http.Request) response.Response { + s := d.State() + err := addProfileDetailsToRequestContext(s, r) + if err != nil { + return response.SmartError(err) + } + + details, err := request.GetCtxValue[profileDetails](r.Context(), ctxProfileDetails) + if err != nil { + return response.SmartError(err) + } + + err = s.Authorizer.CheckPermission(r.Context(), entity.ProfileURL(request.ProjectParam(r), details.profileName), entitlement) + if err != nil { + return response.SmartError(err) + } + + return response.EmptySyncResponse + } } // swagger:operation GET /1.0/profiles profiles profiles_get @@ -145,7 +203,8 @@ var profileCmd = APIEndpoint{ func profilesGet(d *Daemon, r *http.Request) response.Response { s := d.State() - p, err := project.ProfileProject(s.DB.Cluster, request.ProjectParam(r)) + requestProjectName := request.ProjectParam(r) + p, err := project.ProfileProject(s.DB.Cluster, requestProjectName) if err != nil { return response.SmartError(err) } @@ -173,7 +232,7 @@ func profilesGet(d *Daemon, r *http.Request) response.Response { if recursion { apiProfiles = make([]*api.Profile, 0, len(profiles)) for _, profile := range profiles { - if !userHasPermission(entity.ProfileURL(p.Name, profile.Name)) { + if !userHasPermission(entity.ProfileURL(requestProjectName, profile.Name)) { continue } @@ -192,7 +251,7 @@ func profilesGet(d *Daemon, r *http.Request) response.Response { } else { profileURLs = make([]string, 0, len(profiles)) for _, profile := range profiles { - profileURL := entity.ProfileURL(p.Name, profile.Name) + profileURL := entity.ProfileURL(requestProjectName, profile.Name) if userHasPermission(profileURL) { profileURLs = append(profileURLs, profileURL.String()) } @@ -391,12 +450,7 @@ func profilesPost(d *Daemon, r *http.Request) response.Response { func profileGet(d *Daemon, r *http.Request) response.Response { s := d.State() - p, err := project.ProfileProject(s.DB.Cluster, request.ProjectParam(r)) - if err != nil { - return response.SmartError(err) - } - - name, err := url.PathUnescape(mux.Vars(r)["name"]) + details, err := request.GetCtxValue[profileDetails](r.Context(), ctxProfileDetails) if err != nil { return response.SmartError(err) } @@ -404,7 +458,7 @@ func profileGet(d *Daemon, r *http.Request) response.Response { var resp *api.Profile err = s.DB.Cluster.Transaction(context.TODO(), func(ctx context.Context, tx *db.ClusterTx) error { - profile, err := dbCluster.GetProfile(ctx, tx.Tx(), p.Name, name) + profile, err := dbCluster.GetProfile(ctx, tx.Tx(), details.effectiveProject.Name, details.profileName) if err != nil { return fmt.Errorf("Fetch profile: %w", err) } @@ -468,12 +522,7 @@ func profileGet(d *Daemon, r *http.Request) response.Response { func profilePut(d *Daemon, r *http.Request) response.Response { s := d.State() - p, err := project.ProfileProject(s.DB.Cluster, request.ProjectParam(r)) - if err != nil { - return response.SmartError(err) - } - - name, err := url.PathUnescape(mux.Vars(r)["name"]) + details, err := request.GetCtxValue[profileDetails](r.Context(), ctxProfileDetails) if err != nil { return response.SmartError(err) } @@ -487,7 +536,7 @@ func profilePut(d *Daemon, r *http.Request) response.Response { return response.BadRequest(err) } - err = doProfileUpdateCluster(s, p.Name, name, old) + err = doProfileUpdateCluster(s, details.effectiveProject.Name, details.profileName, old) return response.SmartError(err) } @@ -495,9 +544,9 @@ func profilePut(d *Daemon, r *http.Request) response.Response { var profile *api.Profile err = s.DB.Cluster.Transaction(context.TODO(), func(ctx context.Context, tx *db.ClusterTx) error { - current, err := dbCluster.GetProfile(ctx, tx.Tx(), p.Name, name) + current, err := dbCluster.GetProfile(ctx, tx.Tx(), details.effectiveProject.Name, details.profileName) if err != nil { - return fmt.Errorf("Failed to retrieve profile %q: %w", name, err) + return fmt.Errorf("Failed to retrieve profile %q: %w", details.profileName, err) } profile, err = current.ToAPI(ctx, tx.Tx()) @@ -526,7 +575,7 @@ func profilePut(d *Daemon, r *http.Request) response.Response { return response.BadRequest(err) } - err = doProfileUpdate(s, *p, name, id, profile, req) + err = doProfileUpdate(s, details.effectiveProject, details.profileName, id, profile, req) if err == nil && !isClusterNotification(r) { // Notify all other nodes. If a node is down, it will be ignored. @@ -536,7 +585,7 @@ func profilePut(d *Daemon, r *http.Request) response.Response { } err = notifier(func(client lxd.InstanceServer) error { - return client.UseProject(p.Name).UpdateProfile(name, profile.Writable(), "") + return client.UseProject(details.effectiveProject.Name).UpdateProfile(details.profileName, profile.Writable(), "") }) if err != nil { return response.SmartError(err) @@ -544,7 +593,7 @@ func profilePut(d *Daemon, r *http.Request) response.Response { } requestor := request.CreateRequestor(r) - s.Events.SendLifecycle(p.Name, lifecycle.ProfileUpdated.Event(name, p.Name, requestor, nil)) + s.Events.SendLifecycle(details.effectiveProject.Name, lifecycle.ProfileUpdated.Event(details.profileName, details.effectiveProject.Name, requestor, nil)) return response.SmartError(err) } @@ -586,12 +635,7 @@ func profilePut(d *Daemon, r *http.Request) response.Response { func profilePatch(d *Daemon, r *http.Request) response.Response { s := d.State() - p, err := project.ProfileProject(s.DB.Cluster, request.ProjectParam(r)) - if err != nil { - return response.SmartError(err) - } - - name, err := url.PathUnescape(mux.Vars(r)["name"]) + details, err := request.GetCtxValue[profileDetails](r.Context(), ctxProfileDetails) if err != nil { return response.SmartError(err) } @@ -600,9 +644,9 @@ func profilePatch(d *Daemon, r *http.Request) response.Response { var profile *api.Profile err = s.DB.Cluster.Transaction(context.TODO(), func(ctx context.Context, tx *db.ClusterTx) error { - current, err := dbCluster.GetProfile(ctx, tx.Tx(), p.Name, name) + current, err := dbCluster.GetProfile(ctx, tx.Tx(), details.effectiveProject.Name, details.profileName) if err != nil { - return fmt.Errorf("Failed to retrieve profile=%q: %w", name, err) + return fmt.Errorf("Failed to retrieve profile=%q: %w", details.profileName, err) } profile, err = current.ToAPI(ctx, tx.Tx()) @@ -676,9 +720,9 @@ func profilePatch(d *Daemon, r *http.Request) response.Response { } requestor := request.CreateRequestor(r) - s.Events.SendLifecycle(p.Name, lifecycle.ProfileUpdated.Event(name, p.Name, requestor, nil)) + s.Events.SendLifecycle(details.effectiveProject.Name, lifecycle.ProfileUpdated.Event(details.profileName, details.effectiveProject.Name, requestor, nil)) - return response.SmartError(doProfileUpdate(s, *p, name, id, profile, req)) + return response.SmartError(doProfileUpdate(s, details.effectiveProject, details.profileName, id, profile, req)) } // swagger:operation POST /1.0/profiles/{name} profiles profile_post @@ -716,17 +760,12 @@ func profilePatch(d *Daemon, r *http.Request) response.Response { func profilePost(d *Daemon, r *http.Request) response.Response { s := d.State() - p, err := project.ProfileProject(s.DB.Cluster, request.ProjectParam(r)) - if err != nil { - return response.SmartError(err) - } - - name, err := url.PathUnescape(mux.Vars(r)["name"]) + details, err := request.GetCtxValue[profileDetails](r.Context(), ctxProfileDetails) if err != nil { return response.SmartError(err) } - if name == "default" { + if details.profileName == "default" { return response.Forbidden(errors.New(`The "default" profile cannot be renamed`)) } @@ -751,20 +790,20 @@ func profilePost(d *Daemon, r *http.Request) response.Response { err = s.DB.Cluster.Transaction(context.TODO(), func(ctx context.Context, tx *db.ClusterTx) error { // Check that the name isn't already in use. - _, err = dbCluster.GetProfile(ctx, tx.Tx(), p.Name, req.Name) + _, err = dbCluster.GetProfile(ctx, tx.Tx(), details.effectiveProject.Name, req.Name) if err == nil { return fmt.Errorf("Name %q already in use", req.Name) } - return dbCluster.RenameProfile(ctx, tx.Tx(), p.Name, name, req.Name) + return dbCluster.RenameProfile(ctx, tx.Tx(), details.effectiveProject.Name, details.profileName, req.Name) }) if err != nil { return response.SmartError(err) } requestor := request.CreateRequestor(r) - lc := lifecycle.ProfileRenamed.Event(req.Name, p.Name, requestor, logger.Ctx{"old_name": name}) - s.Events.SendLifecycle(p.Name, lc) + lc := lifecycle.ProfileRenamed.Event(req.Name, details.effectiveProject.Name, requestor, logger.Ctx{"old_name": details.profileName}) + s.Events.SendLifecycle(details.effectiveProject.Name, lc) return response.SyncResponseLocation(true, nil, lc.Source) } @@ -796,22 +835,17 @@ func profilePost(d *Daemon, r *http.Request) response.Response { func profileDelete(d *Daemon, r *http.Request) response.Response { s := d.State() - p, err := project.ProfileProject(s.DB.Cluster, request.ProjectParam(r)) - if err != nil { - return response.SmartError(err) - } - - name, err := url.PathUnescape(mux.Vars(r)["name"]) + details, err := request.GetCtxValue[profileDetails](r.Context(), ctxProfileDetails) if err != nil { return response.SmartError(err) } - if name == "default" { + if details.profileName == "default" { return response.Forbidden(errors.New(`The "default" profile cannot be deleted`)) } err = s.DB.Cluster.Transaction(context.TODO(), func(ctx context.Context, tx *db.ClusterTx) error { - profile, err := dbCluster.GetProfile(ctx, tx.Tx(), p.Name, name) + profile, err := dbCluster.GetProfile(ctx, tx.Tx(), details.effectiveProject.Name, details.profileName) if err != nil { return err } @@ -825,14 +859,14 @@ func profileDelete(d *Daemon, r *http.Request) response.Response { return fmt.Errorf("Profile is currently in use") } - return dbCluster.DeleteProfile(ctx, tx.Tx(), p.Name, name) + return dbCluster.DeleteProfile(ctx, tx.Tx(), details.effectiveProject.Name, details.profileName) }) if err != nil { return response.SmartError(err) } requestor := request.CreateRequestor(r) - s.Events.SendLifecycle(p.Name, lifecycle.ProfileDeleted.Event(name, p.Name, requestor, nil)) + s.Events.SendLifecycle(details.effectiveProject.Name, lifecycle.ProfileDeleted.Event(details.profileName, details.effectiveProject.Name, requestor, nil)) return response.EmptySyncResponse } diff --git a/lxd/project/permissions.go b/lxd/project/permissions.go index 6f6fbec8f1d2..1859b3c9a164 100644 --- a/lxd/project/permissions.go +++ b/lxd/project/permissions.go @@ -1632,7 +1632,7 @@ func CheckTargetMember(p *api.Project, targetMemberName string, allMembers []db. // If restricted groups are specified then check member is in at least one of them. err := AllowClusterMember(p, &potentialMember) if err != nil { - return nil, api.StatusErrorf(http.StatusForbidden, err.Error()) + return nil, api.StatusErrorf(http.StatusForbidden, "%w", err) } return &potentialMember, nil @@ -1647,7 +1647,7 @@ func CheckTargetGroup(ctx context.Context, tx *db.ClusterTx, p *api.Project, gro // If restricted groups are specified then check the requested group is in the list. err := AllowClusterGroup(p, groupName) if err != nil { - return api.StatusErrorf(http.StatusForbidden, err.Error()) + return api.StatusErrorf(http.StatusForbidden, "%w", err) } // Check if the target group exists. diff --git a/lxd/project/project.go b/lxd/project/project.go index 389e7c575f05..e9259f0e023b 100644 --- a/lxd/project/project.go +++ b/lxd/project/project.go @@ -2,6 +2,7 @@ package project import ( "context" + "database/sql" "fmt" "strings" @@ -37,7 +38,7 @@ func DNS(projectName string, instanceName string) string { // name is returned unmodified in the 2nd return value. This is suitable for passing back into Instance(). // Note: This should only be used with Instance names (because they cannot contain the project separator) and this // function relies on this rule as project names can contain the project separator. -func InstanceParts(projectInstanceName string) (string, string) { +func InstanceParts(projectInstanceName string) (projectName string, instanceName string) { i := strings.LastIndex(projectInstanceName, separator) if i < 0 { // This string is not project prefixed or is part of default project. @@ -56,7 +57,7 @@ func StorageVolume(projectName string, storageVolumeName string) string { // StorageVolumeParts takes a project prefixed storage volume name and returns the project and storage volume // name as separate variables. -func StorageVolumeParts(projectStorageVolumeName string) (string, string) { +func StorageVolumeParts(projectStorageVolumeName string) (projectName string, storageVolumeName string) { parts := strings.SplitN(projectStorageVolumeName, "_", 2) // If the given name doesn't contain any project, only return the volume name. @@ -311,3 +312,17 @@ func NetworkZoneProjectFromRecord(p *api.Project) string { return api.ProjectDefaultName } + +// ImageProject returns the effective project for images based on the value of `features.images` in the given project. +func ImageProject(ctx context.Context, tx *sql.Tx, requestProjectName string) (string, error) { + projectHasImages, err := cluster.ProjectHasImages(ctx, tx, requestProjectName) + if err != nil { + return "", err + } + + if !projectHasImages { + return api.ProjectDefaultName, nil + } + + return requestProjectName, nil +} diff --git a/lxd/storage/drivers/driver_lvm_volumes.go b/lxd/storage/drivers/driver_lvm_volumes.go index bbfbdbabbba2..cf7d4bc73071 100644 --- a/lxd/storage/drivers/driver_lvm_volumes.go +++ b/lxd/storage/drivers/driver_lvm_volumes.go @@ -449,16 +449,6 @@ func (d *lvm) SetVolumeQuota(vol Volume, size string, allowUnsafeResize bool, op l := d.logger.AddContext(logger.Ctx{"dev": volDevPath, "size": fmt.Sprintf("%db", sizeBytes)}) - // Activate volume if needed. - activated, err := d.activateVolume(vol) - if err != nil { - return err - } - - if activated { - defer func() { _, _ = d.deactivateVolume(vol) }() - } - inUse := vol.MountInUse() // Resize filesystem if needed. @@ -474,6 +464,18 @@ func (d *lvm) SetVolumeQuota(vol Volume, size string, allowUnsafeResize bool, op return ErrInUse // We don't allow online shrinking of filesytem volumes. } + // Activate volume if needed. + activated, err := d.activateVolume(vol) + if err != nil { + return err + } + + if !activated { + defer func() { + _, _ = d.activateVolume(vol) + }() + } + // Shrink filesystem first. // Pass allowUnsafeResize to allow disabling of filesystem resize safety checks. // We do this as a separate step rather than passing -r to lvresize in resizeLogicalVolume @@ -481,6 +483,13 @@ func (d *lvm) SetVolumeQuota(vol Volume, size string, allowUnsafeResize bool, op // otherwise by passing -f to lvresize (required for other reasons) this would then pass // -f onto resize2fs as well. err = shrinkFileSystem(fsType, volDevPath, vol, sizeBytes, allowUnsafeResize) + if err != nil { + _, _ = d.deactivateVolume(vol) + return err + } + + // Deactivate the volume for resizing. + _, err = d.deactivateVolume(vol) if err != nil { return err } @@ -499,6 +508,18 @@ func (d *lvm) SetVolumeQuota(vol Volume, size string, allowUnsafeResize bool, op return err } + // Activate the volume for resizing. + activated, err := d.activateVolume(vol) + if err != nil { + return err + } + + if activated { + defer func() { + _, _ = d.deactivateVolume(vol) + }() + } + // Grow the filesystem to fill block device. err = growFileSystem(fsType, volDevPath, vol) if err != nil { @@ -528,6 +549,18 @@ func (d *lvm) SetVolumeQuota(vol Volume, size string, allowUnsafeResize bool, op // Move the VM GPT alt header to end of disk if needed (not needed in unsafe resize mode as it is // expected the caller will do all necessary post resize actions themselves). if vol.IsVMBlock() && !allowUnsafeResize { + // Activate the volume for resizing. + activated, err := d.activateVolume(vol) + if err != nil { + return err + } + + if activated { + defer func() { + _, _ = d.deactivateVolume(vol) + }() + } + err = d.moveGPTAltHeader(volDevPath) if err != nil { return err diff --git a/lxd/storage/drivers/driver_zfs_volumes.go b/lxd/storage/drivers/driver_zfs_volumes.go index 4a8c702a9db3..87f12ad60bb3 100644 --- a/lxd/storage/drivers/driver_zfs_volumes.go +++ b/lxd/storage/drivers/driver_zfs_volumes.go @@ -1974,7 +1974,9 @@ func (d *zfs) getVolumeDiskPathFromDataset(dataset string) (string, error) { // GetVolumeDiskPath returns the location of a root disk block device. func (d *zfs) GetVolumeDiskPath(vol Volume) (string, error) { // Wait up to 30 seconds for the device to appear. - ctx, cancel := context.WithTimeout(d.state.ShutdownCtx, 30*time.Second) + // Don't use d.state.ShutdownCtx here as this is used during instance stop during LXD shutdown after it is + // canceled. + ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second) defer cancel() return d.tryGetVolumeDiskPathFromDataset(ctx, d.dataset(vol, false)) diff --git a/lxd/storage_volumes.go b/lxd/storage_volumes.go index 4f947bbd0ee0..b81dcab20c0f 100644 --- a/lxd/storage_volumes.go +++ b/lxd/storage_volumes.go @@ -798,13 +798,23 @@ func storagePoolVolumesGet(d *Daemon, r *http.Request) response.Response { return response.SmartError(err) } + // The auth.PermissionChecker expects the url to contain the request project (not the effective project). + // So when getting networks in a single project, ensure we use the request project name. + authCheckProject := func(dbProject string) string { + if !allProjects { + return requestProjectName + } + + return dbProject + } + if util.IsRecursionRequest(r) { volumes := make([]*api.StorageVolume, 0, len(dbVolumes)) for _, dbVol := range dbVolumes { vol := &dbVol.StorageVolume volumeName, _, _ := api.GetParentAndSnapshotName(vol.Name) - if !userHasPermission(entity.StorageVolumeURL(vol.Project, vol.Location, dbVol.Pool, dbVol.Type, volumeName)) { + if !userHasPermission(entity.StorageVolumeURL(authCheckProject(vol.Project), vol.Location, dbVol.Pool, dbVol.Type, volumeName)) { continue } @@ -828,7 +838,7 @@ func storagePoolVolumesGet(d *Daemon, r *http.Request) response.Response { for _, dbVol := range dbVolumes { volumeName, _, _ := api.GetParentAndSnapshotName(dbVol.Name) - if !userHasPermission(entity.StorageVolumeURL(dbVol.Project, dbVol.Location, dbVol.Pool, dbVol.Type, volumeName)) { + if !userHasPermission(entity.StorageVolumeURL(authCheckProject(dbVol.Project), dbVol.Location, dbVol.Pool, dbVol.Type, volumeName)) { continue } @@ -2691,7 +2701,7 @@ func addStoragePoolVolumeDetailsToRequestContext(s *state.State, r *http.Request // Convert the volume type name to our internal integer representation. volumeType, err := storagePools.VolumeTypeNameToDBType(volumeTypeName) if err != nil { - return api.StatusErrorf(http.StatusBadRequest, err.Error()) + return api.StatusErrorf(http.StatusBadRequest, "Failed to get storage volume type: %w", err) } details.volumeType = volumeType diff --git a/lxd/storage_volumes_state.go b/lxd/storage_volumes_state.go index 8cb9fa5849e8..fed51b2a55a6 100644 --- a/lxd/storage_volumes_state.go +++ b/lxd/storage_volumes_state.go @@ -15,6 +15,7 @@ import ( "github.com/canonical/lxd/lxd/request" "github.com/canonical/lxd/lxd/response" storagePools "github.com/canonical/lxd/lxd/storage" + storageDrivers "github.com/canonical/lxd/lxd/storage/drivers" "github.com/canonical/lxd/shared" "github.com/canonical/lxd/shared/api" "github.com/canonical/lxd/shared/entity" @@ -121,7 +122,7 @@ func storagePoolVolumeTypeStateGet(d *Daemon, r *http.Request) response.Response if volumeType == cluster.StoragePoolVolumeTypeCustom { // Custom volumes. usage, err = pool.GetCustomVolumeUsage(projectName, volumeName) - if err != nil { + if err != nil && err != storageDrivers.ErrNotSupported { return response.SmartError(err) } } else { @@ -141,23 +142,26 @@ func storagePoolVolumeTypeStateGet(d *Daemon, r *http.Request) response.Response } usage, err = pool.GetInstanceUsage(inst) - if err != nil { + if err != nil && err != storageDrivers.ErrNotSupported { return response.SmartError(err) } } // Prepare the state struct. state := api.StorageVolumeState{} - state.Usage = &api.StorageVolumeStateUsage{} - // Only fill 'used' field if receiving a valid value. - if usage.Used >= 0 { - state.Usage.Used = uint64(usage.Used) - } + if usage != nil { + state.Usage = &api.StorageVolumeStateUsage{} - // Only fill 'total' field if receiving a valid value. - if usage.Total >= 0 { - state.Usage.Total = usage.Total + // Only fill 'used' field if receiving a valid value. + if usage.Used >= 0 { + state.Usage.Used = uint64(usage.Used) + } + + // Only fill 'total' field if receiving a valid value. + if usage.Total >= 0 { + state.Usage.Total = usage.Total + } } return response.SyncResponse(true, state) diff --git a/po/ar.po b/po/ar.po index c7214e6ff95e..5e87d8582b08 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-08-20 09:31+0100\n" +"POT-Creation-Date: 2024-08-30 09:27+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: lxc/storage_bucket.go:255 lxc/storage_bucket.go:1000 +#: lxc/storage_bucket.go:260 lxc/storage_bucket.go:1005 msgid "" "### This is a YAML representation of a storage bucket.\n" "### Any line starting with a '# will be ignored.\n" @@ -278,7 +278,7 @@ msgid "" "### Note that the listen_address and location cannot be changed." msgstr "" -#: lxc/network_load_balancer.go:588 +#: lxc/network_load_balancer.go:593 msgid "" "### This is a YAML representation of the network load balancer.\n" "### Any line starting with a '# will be ignored.\n" @@ -319,7 +319,7 @@ msgid "" "cannot be changed." msgstr "" -#: lxc/network_zone.go:1066 +#: lxc/network_zone.go:1071 msgid "" "### This is a YAML representation of the network zone record.\n" "### Any line starting with a '# will be ignored.\n" @@ -333,7 +333,7 @@ msgid "" "### user.foo: bah\n" msgstr "" -#: lxc/network_zone.go:473 +#: lxc/network_zone.go:478 msgid "" "### This is a YAML representation of the network zone.\n" "### Any line starting with a '# will be ignored.\n" @@ -512,15 +512,15 @@ msgstr "" msgid " " msgstr "" -#: lxc/remote.go:825 lxc/remote.go:882 +#: lxc/remote.go:826 lxc/remote.go:883 msgid "" msgstr "" -#: lxc/remote.go:922 +#: lxc/remote.go:923 msgid " " msgstr "" -#: lxc/remote.go:752 +#: lxc/remote.go:753 msgid " " msgstr "" @@ -553,7 +553,7 @@ msgstr "" msgid "ARCHITECTURE" msgstr "" -#: lxc/remote.go:734 +#: lxc/remote.go:735 msgid "AUTH TYPE" msgstr "" @@ -561,15 +561,15 @@ msgstr "" msgid "AUTHENTICATION METHOD" msgstr "" -#: lxc/remote.go:100 +#: lxc/remote.go:101 msgid "Accept certificate" msgstr "" -#: lxc/storage_bucket.go:852 +#: lxc/storage_bucket.go:857 msgid "Access key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:908 +#: lxc/storage_bucket.go:913 #, c-format msgid "Access key: %s" msgstr "" @@ -603,19 +603,19 @@ msgstr "" msgid "Add a group to an identity provider group" msgstr "" -#: lxc/network_zone.go:1239 +#: lxc/network_zone.go:1244 msgid "Add a network zone record entry" msgstr "" -#: lxc/network_load_balancer.go:798 +#: lxc/network_load_balancer.go:803 msgid "Add backend to a load balancer" msgstr "" -#: lxc/network_load_balancer.go:797 +#: lxc/network_load_balancer.go:802 msgid "Add backends to a load balancer" msgstr "" -#: lxc/network_zone.go:1240 +#: lxc/network_zone.go:1245 msgid "Add entries to a network zone record" msgstr "" @@ -631,11 +631,11 @@ msgstr "" msgid "Add new aliases" msgstr "" -#: lxc/remote.go:89 +#: lxc/remote.go:90 msgid "Add new remote servers" msgstr "" -#: lxc/remote.go:90 +#: lxc/remote.go:91 msgid "" "Add new remote servers\n" "\n" @@ -676,7 +676,7 @@ msgstr "" msgid "Add ports to a forward" msgstr "" -#: lxc/network_load_balancer.go:962 lxc/network_load_balancer.go:963 +#: lxc/network_load_balancer.go:967 lxc/network_load_balancer.go:968 msgid "Add ports to a load balancer" msgstr "" @@ -697,17 +697,17 @@ msgstr "" msgid "Address: %s" msgstr "" -#: lxc/storage_bucket.go:164 +#: lxc/storage_bucket.go:169 #, c-format msgid "Admin access key: %s" msgstr "" -#: lxc/remote.go:566 +#: lxc/remote.go:567 #, c-format msgid "Admin password (or token) for %s:" msgstr "" -#: lxc/storage_bucket.go:165 +#: lxc/storage_bucket.go:170 #, c-format msgid "Admin secret key: %s" msgstr "" @@ -739,7 +739,7 @@ msgstr "" msgid "All projects" msgstr "" -#: lxc/remote.go:181 +#: lxc/remote.go:182 msgid "All server addresses are unavailable" msgstr "" @@ -762,7 +762,7 @@ msgstr "" msgid "Are you sure you want to %s cluster member %q? (yes/no) [default=no]: " msgstr "" -#: lxc/console.go:383 +#: lxc/console.go:388 msgid "As neither could be found, the raw SPICE socket can be found at:" msgstr "" @@ -810,7 +810,7 @@ msgid "" "as well as retrieve past log entries from it." msgstr "" -#: lxc/remote.go:548 +#: lxc/remote.go:549 #, c-format msgid "Authentication type '%s' not supported by server" msgstr "" @@ -829,11 +829,11 @@ msgstr "" msgid "Auto update: %s" msgstr "" -#: lxc/network_forward.go:240 lxc/network_load_balancer.go:242 +#: lxc/network_forward.go:240 lxc/network_load_balancer.go:247 msgid "Auto-allocate an IPv4 or IPv6 listen address. One of 'ipv4', 'ipv6'." msgstr "" -#: lxc/remote.go:136 +#: lxc/remote.go:137 msgid "Available projects:" msgstr "" @@ -865,8 +865,8 @@ msgid "Bad device override syntax, expecting ,=: %s" msgstr "" #: lxc/network.go:333 lxc/network_acl.go:382 lxc/network_forward.go:293 -#: lxc/network_load_balancer.go:296 lxc/network_peer.go:280 -#: lxc/network_zone.go:324 lxc/network_zone.go:922 lxc/storage_bucket.go:136 +#: lxc/network_load_balancer.go:301 lxc/network_peer.go:280 +#: lxc/network_zone.go:329 lxc/network_zone.go:927 lxc/storage_bucket.go:141 #, c-format msgid "Bad key/value pair: %s" msgstr "" @@ -988,7 +988,7 @@ msgstr "" msgid "Can't read from stdin: %w" msgstr "" -#: lxc/remote.go:861 +#: lxc/remote.go:862 msgid "Can't remove the default remote" msgstr "" @@ -1054,15 +1054,14 @@ msgstr "" msgid "Certificate add token for %s deleted" msgstr "" -#: lxc/remote.go:218 -#, c-format -msgid "" -"Certificate fingerprint mismatch between certificate token and server %q" +#: lxc/remote.go:452 +msgid "Certificate fingerprint" msgstr "" -#: lxc/remote.go:451 +#: lxc/remote.go:219 #, c-format -msgid "Certificate fingerprint: %s" +msgid "" +"Certificate fingerprint mismatch between certificate token and server %q" msgstr "" #: lxc/network.go:893 @@ -1074,7 +1073,7 @@ msgstr "" msgid "Client %s certificate add token:" msgstr "" -#: lxc/remote.go:603 +#: lxc/remote.go:604 msgid "Client certificate now trusted by server:" msgstr "" @@ -1136,18 +1135,18 @@ msgstr "" #: lxc/network_forward.go:456 lxc/network_forward.go:579 #: lxc/network_forward.go:721 lxc/network_forward.go:798 #: lxc/network_forward.go:864 lxc/network_load_balancer.go:176 -#: lxc/network_load_balancer.go:241 lxc/network_load_balancer.go:459 -#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:725 -#: lxc/network_load_balancer.go:801 lxc/network_load_balancer.go:865 -#: lxc/network_load_balancer.go:966 lxc/network_load_balancer.go:1028 +#: lxc/network_load_balancer.go:246 lxc/network_load_balancer.go:464 +#: lxc/network_load_balancer.go:587 lxc/network_load_balancer.go:730 +#: lxc/network_load_balancer.go:806 lxc/network_load_balancer.go:870 +#: lxc/network_load_balancer.go:971 lxc/network_load_balancer.go:1033 #: lxc/storage.go:99 lxc/storage.go:347 lxc/storage.go:418 lxc/storage.go:671 -#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:85 -#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:248 -#: lxc/storage_bucket.go:379 lxc/storage_bucket.go:536 -#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:695 -#: lxc/storage_bucket.go:770 lxc/storage_bucket.go:850 -#: lxc/storage_bucket.go:928 lxc/storage_bucket.go:993 -#: lxc/storage_bucket.go:1129 lxc/storage_volume.go:358 +#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:90 +#: lxc/storage_bucket.go:190 lxc/storage_bucket.go:253 +#: lxc/storage_bucket.go:384 lxc/storage_bucket.go:541 +#: lxc/storage_bucket.go:634 lxc/storage_bucket.go:700 +#: lxc/storage_bucket.go:775 lxc/storage_bucket.go:855 +#: lxc/storage_bucket.go:933 lxc/storage_bucket.go:998 +#: lxc/storage_bucket.go:1134 lxc/storage_volume.go:358 #: lxc/storage_volume.go:560 lxc/storage_volume.go:639 #: lxc/storage_volume.go:883 lxc/storage_volume.go:1097 #: lxc/storage_volume.go:1210 lxc/storage_volume.go:1678 @@ -1175,11 +1174,11 @@ msgstr "" msgid "Columns" msgstr "" -#: lxc/main.go:81 +#: lxc/main.go:82 msgid "Command line client for LXD" msgstr "" -#: lxc/main.go:82 +#: lxc/main.go:83 msgid "" "Command line client for LXD\n" "\n" @@ -1211,19 +1210,15 @@ msgstr "" #: lxc/config.go:347 lxc/config.go:1277 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/network_load_balancer.go:694 lxc/network_peer.go:610 +#: lxc/network_zone.go:556 lxc/network_zone.go:1148 lxc/profile.go:538 +#: lxc/project.go:315 lxc/storage.go:310 lxc/storage_bucket.go:348 +#: lxc/storage_bucket.go:1097 lxc/storage_volume.go:1016 #: lxc/storage_volume.go:1048 #, c-format msgid "Config parsing error: %s" msgstr "" -#: lxc/console.go:140 -msgid "Console log:" -msgstr "" - #: lxc/storage_volume.go:561 msgid "Content type, block or filesystem" msgstr "" @@ -1326,12 +1321,12 @@ msgstr "" msgid "Cores:" msgstr "" -#: lxc/remote.go:486 +#: lxc/remote.go:487 #, c-format msgid "Could not close server cert file %q: %w" msgstr "" -#: lxc/remote.go:224 lxc/remote.go:470 +#: lxc/remote.go:225 lxc/remote.go:471 msgid "Could not create server cert dir" msgstr "" @@ -1370,12 +1365,12 @@ msgstr "" msgid "Could not write new remote certificate for remote '%s' with error: %v" msgstr "" -#: lxc/remote.go:481 +#: lxc/remote.go:482 #, c-format msgid "Could not write server cert file %q: %w" msgstr "" -#: lxc/network_zone.go:1327 +#: lxc/network_zone.go:1332 msgid "Couldn't find a matching entry" msgstr "" @@ -1427,7 +1422,7 @@ msgstr "" msgid "Create instances from images" msgstr "" -#: lxc/storage_bucket.go:846 lxc/storage_bucket.go:847 +#: lxc/storage_bucket.go:851 lxc/storage_bucket.go:852 msgid "Create key for a storage bucket" msgstr "" @@ -1459,11 +1454,11 @@ msgstr "" msgid "Create new network peering" msgstr "" -#: lxc/network_zone.go:869 lxc/network_zone.go:870 +#: lxc/network_zone.go:874 lxc/network_zone.go:875 msgid "Create new network zone record" msgstr "" -#: lxc/network_zone.go:270 lxc/network_zone.go:271 +#: lxc/network_zone.go:271 lxc/network_zone.go:272 msgid "Create new network zones" msgstr "" @@ -1514,9 +1509,9 @@ msgstr "" #: 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/network_zone.go:140 lxc/network_zone.go:747 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_bucket.go:512 lxc/storage_bucket.go:832 #: lxc/storage_volume.go:1562 msgid "DESCRIPTION" msgstr "" @@ -1581,7 +1576,7 @@ msgstr "" msgid "Delete instances and snapshots" msgstr "" -#: lxc/storage_bucket.go:924 lxc/storage_bucket.go:925 +#: lxc/storage_bucket.go:929 lxc/storage_bucket.go:930 msgid "Delete key from a storage bucket" msgstr "" @@ -1593,7 +1588,7 @@ msgstr "" msgid "Delete network forwards" msgstr "" -#: lxc/network_load_balancer.go:721 lxc/network_load_balancer.go:722 +#: lxc/network_load_balancer.go:726 lxc/network_load_balancer.go:727 msgid "Delete network load balancers" msgstr "" @@ -1601,11 +1596,11 @@ msgstr "" msgid "Delete network peerings" msgstr "" -#: lxc/network_zone.go:1175 lxc/network_zone.go:1176 +#: lxc/network_zone.go:1180 lxc/network_zone.go:1181 msgid "Delete network zone record" msgstr "" -#: lxc/network_zone.go:583 lxc/network_zone.go:584 +#: lxc/network_zone.go:588 lxc/network_zone.go:589 msgid "Delete network zones" msgstr "" @@ -1621,7 +1616,7 @@ msgstr "" msgid "Delete projects" msgstr "" -#: lxc/storage_bucket.go:182 lxc/storage_bucket.go:183 +#: lxc/storage_bucket.go:187 lxc/storage_bucket.go:188 msgid "Delete storage buckets" msgstr "" @@ -1677,7 +1672,7 @@ msgstr "" #: 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/info.go:32 lxc/init.go:43 lxc/launch.go:24 lxc/list.go:48 lxc/main.go:83 #: 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 @@ -1696,22 +1691,22 @@ msgstr "" #: 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_load_balancer.go:238 lxc/network_load_balancer.go:388 +#: lxc/network_load_balancer.go:456 lxc/network_load_balancer.go:554 +#: lxc/network_load_balancer.go:584 lxc/network_load_balancer.go:727 +#: lxc/network_load_balancer.go:788 lxc/network_load_balancer.go:803 +#: lxc/network_load_balancer.go:867 lxc/network_load_balancer.go:953 +#: lxc/network_load_balancer.go:968 lxc/network_load_balancer.go:1029 #: 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/network_zone.go:29 lxc/network_zone.go:86 lxc/network_zone.go:157 +#: lxc/network_zone.go:212 lxc/network_zone.go:272 lxc/network_zone.go:359 +#: lxc/network_zone.go:439 lxc/network_zone.go:470 lxc/network_zone.go:589 +#: lxc/network_zone.go:637 lxc/network_zone.go:694 lxc/network_zone.go:764 +#: lxc/network_zone.go:816 lxc/network_zone.go:875 lxc/network_zone.go:957 +#: lxc/network_zone.go:1033 lxc/network_zone.go:1063 lxc/network_zone.go:1181 +#: lxc/network_zone.go:1230 lxc/network_zone.go:1245 lxc/network_zone.go:1291 #: 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 @@ -1720,19 +1715,19 @@ msgstr "" #: 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:631 lxc/remote.go:669 lxc/remote.go:755 lxc/remote.go:828 -#: lxc/remote.go:884 lxc/remote.go:924 lxc/rename.go:21 lxc/restore.go:24 +#: lxc/query.go:34 lxc/rebuild.go:27 lxc/remote.go:35 lxc/remote.go:91 +#: lxc/remote.go:632 lxc/remote.go:670 lxc/remote.go:756 lxc/remote.go:829 +#: lxc/remote.go:885 lxc/remote.go:925 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_bucket.go:29 lxc/storage_bucket.go:83 lxc/storage_bucket.go:188 +#: lxc/storage_bucket.go:249 lxc/storage_bucket.go:382 +#: lxc/storage_bucket.go:458 lxc/storage_bucket.go:535 +#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:698 +#: lxc/storage_bucket.go:732 lxc/storage_bucket.go:773 +#: lxc/storage_bucket.go:852 lxc/storage_bucket.go:930 +#: lxc/storage_bucket.go:994 lxc/storage_bucket.go:1129 #: 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 @@ -1868,7 +1863,7 @@ msgstr "" msgid "Don't require user confirmation for using --force" msgstr "" -#: lxc/main.go:99 +#: lxc/main.go:100 msgid "Don't show progress information" msgstr "" @@ -1881,7 +1876,7 @@ msgstr "" msgid "Driver: %v (%v)" msgstr "" -#: lxc/network_zone.go:743 +#: lxc/network_zone.go:748 msgid "ENTRIES" msgstr "" @@ -1959,7 +1954,7 @@ msgstr "" msgid "Edit network forward configurations as YAML" msgstr "" -#: lxc/network_load_balancer.go:578 lxc/network_load_balancer.go:579 +#: lxc/network_load_balancer.go:583 lxc/network_load_balancer.go:584 msgid "Edit network load balancer configurations as YAML" msgstr "" @@ -1967,11 +1962,11 @@ msgstr "" msgid "Edit network peer configurations as YAML" msgstr "" -#: lxc/network_zone.go:464 lxc/network_zone.go:465 +#: lxc/network_zone.go:469 lxc/network_zone.go:470 msgid "Edit network zone configurations as YAML" msgstr "" -#: lxc/network_zone.go:1057 lxc/network_zone.go:1058 +#: lxc/network_zone.go:1062 lxc/network_zone.go:1063 msgid "Edit network zone record configurations as YAML" msgstr "" @@ -1983,11 +1978,11 @@ msgstr "" msgid "Edit project configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:243 lxc/storage_bucket.go:244 +#: lxc/storage_bucket.go:248 lxc/storage_bucket.go:249 msgid "Edit storage bucket configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:988 lxc/storage_bucket.go:989 +#: lxc/storage_bucket.go:993 lxc/storage_bucket.go:994 msgid "Edit storage bucket key as YAML" msgstr "" @@ -2028,7 +2023,7 @@ msgid "" " for the address if not yet set." msgstr "" -#: lxc/network_zone.go:1242 +#: lxc/network_zone.go:1247 msgid "Entry TTL" msgstr "" @@ -2057,9 +2052,9 @@ msgstr "" #: lxc/cluster.go:414 lxc/config.go:624 lxc/config.go:656 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/network_load_balancer.go:527 lxc/network_peer.go:463 +#: lxc/network_zone.go:414 lxc/network_zone.go:1008 lxc/profile.go:876 +#: lxc/project.go:634 lxc/storage.go:727 lxc/storage_bucket.go:602 #: lxc/storage_volume.go:1947 lxc/storage_volume.go:1985 #, c-format msgid "Error setting properties: %v" @@ -2071,10 +2066,10 @@ 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/network_forward.go:513 lxc/network_load_balancer.go:521 +#: lxc/network_peer.go:457 lxc/network_zone.go:408 lxc/network_zone.go:1002 #: lxc/profile.go:870 lxc/project.go:628 lxc/storage.go:721 -#: lxc/storage_bucket.go:591 lxc/storage_volume.go:1941 +#: lxc/storage_bucket.go:596 lxc/storage_volume.go:1941 #: lxc/storage_volume.go:1979 #, c-format msgid "Error unsetting property: %v" @@ -2260,7 +2255,7 @@ msgstr "" msgid "Failed parsing SSH host key: %w" msgstr "" -#: lxc/console.go:361 +#: lxc/console.go:366 #, c-format msgid "Failed starting command: %w" msgstr "" @@ -2275,11 +2270,11 @@ msgstr "" msgid "Failed to accept incoming connection: %w" msgstr "" -#: lxc/remote.go:190 +#: lxc/remote.go:191 msgid "Failed to add remote" msgstr "" -#: lxc/remote.go:241 +#: lxc/remote.go:242 #, c-format msgid "Failed to close server cert file %q: %w" msgstr "" @@ -2289,7 +2284,7 @@ msgstr "" msgid "Failed to connect to cluster member: %w" msgstr "" -#: lxc/remote.go:231 +#: lxc/remote.go:232 #, c-format msgid "Failed to create %q: %w" msgstr "" @@ -2299,12 +2294,12 @@ msgstr "" msgid "Failed to create alias %s: %w" msgstr "" -#: lxc/remote.go:256 +#: lxc/remote.go:257 #, c-format msgid "Failed to create certificate: %w" msgstr "" -#: lxc/remote.go:263 +#: lxc/remote.go:264 #, c-format msgid "Failed to find project: %w" msgstr "" @@ -2329,7 +2324,7 @@ msgstr "" msgid "Failed to walk path for %s: %s" msgstr "" -#: lxc/remote.go:236 +#: lxc/remote.go:237 #, c-format msgid "Failed to write server cert file %q: %w" msgstr "" @@ -2338,7 +2333,7 @@ msgstr "" msgid "Fast mode (same as --columns=nsacPt)" msgstr "" -#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:115 +#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:116 #: lxc/operation.go:136 msgid "Filtering isn't supported yet" msgstr "" @@ -2376,7 +2371,7 @@ msgstr "" msgid "Force the removal of running instances" msgstr "" -#: lxc/main.go:95 +#: lxc/main.go:96 msgid "Force using the local unix socket" msgstr "" @@ -2410,10 +2405,10 @@ msgstr "" #: 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/network_peer.go:84 lxc/network_zone.go:89 lxc/network_zone.go:697 #: lxc/operation.go:108 lxc/profile.go:637 lxc/project.go:412 -#: lxc/project.go:804 lxc/remote.go:673 lxc/storage.go:588 -#: lxc/storage_bucket.go:454 lxc/storage_bucket.go:769 +#: lxc/project.go:804 lxc/remote.go:674 lxc/storage.go:588 +#: lxc/storage_bucket.go:459 lxc/storage_bucket.go:774 #: lxc/storage_volume.go:1446 lxc/warning.go:93 msgid "Format (csv|json|table|yaml|compact)" msgstr "" @@ -2450,7 +2445,7 @@ msgstr "" msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)" msgstr "" -#: lxc/remote.go:737 +#: lxc/remote.go:738 msgid "GLOBAL" msgstr "" @@ -2470,7 +2465,7 @@ msgstr "" msgid "Generate manpages for all commands" msgstr "" -#: lxc/remote.go:159 lxc/remote.go:397 +#: lxc/remote.go:160 lxc/remote.go:398 msgid "Generating a client certificate. This may take a minute..." msgstr "" @@ -2502,7 +2497,7 @@ msgstr "" msgid "Get the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:386 +#: lxc/network_load_balancer.go:391 msgid "Get the key as a network load balancer property" msgstr "" @@ -2514,11 +2509,11 @@ msgstr "" msgid "Get the key as a network property" msgstr "" -#: lxc/network_zone.go:214 +#: lxc/network_zone.go:215 msgid "Get the key as a network zone property" msgstr "" -#: lxc/network_zone.go:814 +#: lxc/network_zone.go:819 msgid "Get the key as a network zone record property" msgstr "" @@ -2530,7 +2525,7 @@ msgstr "" msgid "Get the key as a project property" msgstr "" -#: lxc/storage_bucket.go:380 +#: lxc/storage_bucket.go:385 msgid "Get the key as a storage bucket property" msgstr "" @@ -2570,7 +2565,7 @@ msgstr "" msgid "Get values for network forward configuration keys" msgstr "" -#: lxc/network_load_balancer.go:382 lxc/network_load_balancer.go:383 +#: lxc/network_load_balancer.go:387 lxc/network_load_balancer.go:388 msgid "Get values for network load balancer configuration keys" msgstr "" @@ -2578,11 +2573,11 @@ msgstr "" msgid "Get values for network peer configuration keys" msgstr "" -#: lxc/network_zone.go:210 lxc/network_zone.go:211 +#: lxc/network_zone.go:211 lxc/network_zone.go:212 msgid "Get values for network zone configuration keys" msgstr "" -#: lxc/network_zone.go:810 lxc/network_zone.go:811 +#: lxc/network_zone.go:815 lxc/network_zone.go:816 msgid "Get values for network zone record configuration keys" msgstr "" @@ -2594,7 +2589,7 @@ msgstr "" msgid "Get values for project configuration keys" msgstr "" -#: lxc/storage_bucket.go:376 lxc/storage_bucket.go:377 +#: lxc/storage_bucket.go:381 lxc/storage_bucket.go:382 msgid "Get values for storage bucket configuration keys" msgstr "" @@ -2734,7 +2729,7 @@ msgstr "" msgid "If the snapshot name already exists, delete and create a new one" msgstr "" -#: lxc/main.go:398 +#: lxc/main.go:400 msgid "" "If this is your first time running LXD on this machine, you should also run: " "lxd init" @@ -2891,7 +2886,7 @@ msgstr "" msgid "Instance type" msgstr "" -#: lxc/remote.go:349 +#: lxc/remote.go:350 #, c-format msgid "Invalid URL scheme \"%s\" in \"%s\"" msgstr "" @@ -2963,7 +2958,7 @@ msgstr "" msgid "Invalid new snapshot name, parent volume must be the same as source" msgstr "" -#: lxc/main.go:498 +#: lxc/main.go:502 msgid "Invalid number of arguments" msgstr "" @@ -2972,7 +2967,7 @@ msgstr "" msgid "Invalid path %s" msgstr "" -#: lxc/remote.go:338 +#: lxc/remote.go:339 #, c-format msgid "Invalid protocol: %s" msgstr "" @@ -3020,7 +3015,7 @@ msgstr "" #: lxc/list.go:597 lxc/network.go:1059 lxc/network_forward.go:155 #: lxc/network_load_balancer.go:157 lxc/operation.go:177 -#: lxc/storage_bucket.go:511 lxc/storage_volume.go:1569 lxc/warning.go:220 +#: lxc/storage_bucket.go:516 lxc/storage_volume.go:1569 lxc/warning.go:220 msgid "LOCATION" msgstr "" @@ -3028,7 +3023,7 @@ msgstr "" msgid "LXD - Command line client" msgstr "" -#: lxc/console.go:382 +#: lxc/console.go:387 msgid "LXD automatically uses either spicy or remote-viewer when present." msgstr "" @@ -3118,15 +3113,15 @@ msgstr "" msgid "List available network peers" msgstr "" -#: lxc/network_zone.go:85 +#: lxc/network_zone.go:86 msgid "List available network zone" msgstr "" -#: lxc/network_zone.go:688 lxc/network_zone.go:689 +#: lxc/network_zone.go:693 lxc/network_zone.go:694 msgid "List available network zone records" msgstr "" -#: lxc/network_zone.go:84 +#: lxc/network_zone.go:85 msgid "List available network zoneS" msgstr "" @@ -3315,11 +3310,11 @@ msgstr "" msgid "List projects" msgstr "" -#: lxc/storage_bucket.go:766 lxc/storage_bucket.go:768 +#: lxc/storage_bucket.go:771 lxc/storage_bucket.go:773 msgid "List storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:451 lxc/storage_bucket.go:453 +#: lxc/storage_bucket.go:456 lxc/storage_bucket.go:458 msgid "List storage buckets" msgstr "" @@ -3347,7 +3342,7 @@ msgid "" " U - Current disk usage" msgstr "" -#: lxc/remote.go:668 lxc/remote.go:669 +#: lxc/remote.go:669 lxc/remote.go:670 msgid "List the available remotes" msgstr "" @@ -3574,11 +3569,11 @@ msgstr "" msgid "Manage network forwards" msgstr "" -#: lxc/network_load_balancer.go:782 lxc/network_load_balancer.go:783 +#: lxc/network_load_balancer.go:787 lxc/network_load_balancer.go:788 msgid "Manage network load balancer backends" msgstr "" -#: lxc/network_load_balancer.go:947 lxc/network_load_balancer.go:948 +#: lxc/network_load_balancer.go:952 lxc/network_load_balancer.go:953 msgid "Manage network load balancer ports" msgstr "" @@ -3590,15 +3585,15 @@ msgstr "" msgid "Manage network peerings" msgstr "" -#: lxc/network_zone.go:1224 lxc/network_zone.go:1225 +#: lxc/network_zone.go:1229 lxc/network_zone.go:1230 msgid "Manage network zone record entries" msgstr "" -#: lxc/network_zone.go:631 lxc/network_zone.go:632 +#: lxc/network_zone.go:636 lxc/network_zone.go:637 msgid "Manage network zone records" msgstr "" -#: lxc/network_zone.go:27 lxc/network_zone.go:28 +#: lxc/network_zone.go:28 lxc/network_zone.go:29 msgid "Manage network zones" msgstr "" @@ -3614,11 +3609,11 @@ msgstr "" msgid "Manage projects" msgstr "" -#: lxc/storage_bucket.go:726 +#: lxc/storage_bucket.go:731 msgid "Manage storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:727 +#: lxc/storage_bucket.go:732 msgid "Manage storage bucket keys." msgstr "" @@ -3646,7 +3641,7 @@ msgid "" "\"custom\" (user created) volumes." msgstr "" -#: lxc/remote.go:33 lxc/remote.go:34 +#: lxc/remote.go:34 lxc/remote.go:35 msgid "Manage the list of remote servers" msgstr "" @@ -3727,12 +3722,12 @@ msgid "" "Minimum level for log messages (only available when using pretty format)" msgstr "" -#: lxc/storage_bucket.go:111 lxc/storage_bucket.go:211 -#: lxc/storage_bucket.go:287 lxc/storage_bucket.go:406 -#: lxc/storage_bucket.go:563 lxc/storage_bucket.go:655 -#: lxc/storage_bucket.go:797 lxc/storage_bucket.go:878 -#: lxc/storage_bucket.go:953 lxc/storage_bucket.go:1032 -#: lxc/storage_bucket.go:1155 +#: lxc/storage_bucket.go:116 lxc/storage_bucket.go:216 +#: lxc/storage_bucket.go:292 lxc/storage_bucket.go:411 +#: lxc/storage_bucket.go:568 lxc/storage_bucket.go:660 +#: lxc/storage_bucket.go:802 lxc/storage_bucket.go:883 +#: lxc/storage_bucket.go:958 lxc/storage_bucket.go:1037 +#: lxc/storage_bucket.go:1160 msgid "Missing bucket name" msgstr "" @@ -3776,8 +3771,8 @@ msgstr "" msgid "Missing instance name" msgstr "" -#: lxc/storage_bucket.go:882 lxc/storage_bucket.go:957 -#: lxc/storage_bucket.go:1036 lxc/storage_bucket.go:1159 +#: lxc/storage_bucket.go:887 lxc/storage_bucket.go:962 +#: lxc/storage_bucket.go:1041 lxc/storage_bucket.go:1164 msgid "Missing key name" msgstr "" @@ -3785,10 +3780,10 @@ msgstr "" #: lxc/network_forward.go:481 lxc/network_forward.go:627 #: lxc/network_forward.go:746 lxc/network_forward.go:823 #: lxc/network_forward.go:889 lxc/network_load_balancer.go:201 -#: lxc/network_load_balancer.go:411 lxc/network_load_balancer.go:484 -#: lxc/network_load_balancer.go:630 lxc/network_load_balancer.go:750 -#: lxc/network_load_balancer.go:826 lxc/network_load_balancer.go:890 -#: lxc/network_load_balancer.go:991 lxc/network_load_balancer.go:1053 +#: lxc/network_load_balancer.go:416 lxc/network_load_balancer.go:489 +#: lxc/network_load_balancer.go:635 lxc/network_load_balancer.go:755 +#: lxc/network_load_balancer.go:831 lxc/network_load_balancer.go:895 +#: lxc/network_load_balancer.go:996 lxc/network_load_balancer.go:1058 msgid "Missing listen address" msgstr "" @@ -3813,26 +3808,26 @@ msgstr "" #: lxc/network_forward.go:477 lxc/network_forward.go:623 #: lxc/network_forward.go:742 lxc/network_forward.go:819 #: lxc/network_forward.go:885 lxc/network_load_balancer.go:123 -#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:261 -#: lxc/network_load_balancer.go:407 lxc/network_load_balancer.go:480 -#: lxc/network_load_balancer.go:626 lxc/network_load_balancer.go:746 -#: lxc/network_load_balancer.go:822 lxc/network_load_balancer.go:886 -#: lxc/network_load_balancer.go:987 lxc/network_load_balancer.go:1049 +#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:266 +#: lxc/network_load_balancer.go:412 lxc/network_load_balancer.go:485 +#: lxc/network_load_balancer.go:631 lxc/network_load_balancer.go:751 +#: lxc/network_load_balancer.go:827 lxc/network_load_balancer.go:891 +#: lxc/network_load_balancer.go:992 lxc/network_load_balancer.go:1054 #: lxc/network_peer.go:110 lxc/network_peer.go:180 lxc/network_peer.go:237 #: lxc/network_peer.go:355 lxc/network_peer.go:426 lxc/network_peer.go:556 #: lxc/network_peer.go:665 msgid "Missing network name" msgstr "" -#: lxc/network_zone.go:178 lxc/network_zone.go:234 lxc/network_zone.go:294 -#: lxc/network_zone.go:382 lxc/network_zone.go:503 lxc/network_zone.go:606 -#: lxc/network_zone.go:712 lxc/network_zone.go:780 lxc/network_zone.go:892 -#: lxc/network_zone.go:976 lxc/network_zone.go:1197 lxc/network_zone.go:1262 -#: lxc/network_zone.go:1307 +#: lxc/network_zone.go:179 lxc/network_zone.go:235 lxc/network_zone.go:299 +#: lxc/network_zone.go:387 lxc/network_zone.go:508 lxc/network_zone.go:611 +#: lxc/network_zone.go:717 lxc/network_zone.go:785 lxc/network_zone.go:897 +#: lxc/network_zone.go:981 lxc/network_zone.go:1202 lxc/network_zone.go:1267 +#: lxc/network_zone.go:1312 msgid "Missing network zone name" msgstr "" -#: lxc/network_zone.go:833 lxc/network_zone.go:1095 +#: lxc/network_zone.go:838 lxc/network_zone.go:1100 msgid "Missing network zone record name" msgstr "" @@ -3842,13 +3837,13 @@ msgid "Missing peer name" msgstr "" #: lxc/storage.go:194 lxc/storage.go:264 lxc/storage.go:370 lxc/storage.go:440 -#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:107 -#: lxc/storage_bucket.go:207 lxc/storage_bucket.go:283 -#: lxc/storage_bucket.go:402 lxc/storage_bucket.go:477 -#: lxc/storage_bucket.go:559 lxc/storage_bucket.go:651 -#: lxc/storage_bucket.go:793 lxc/storage_bucket.go:874 -#: lxc/storage_bucket.go:949 lxc/storage_bucket.go:1028 -#: lxc/storage_bucket.go:1151 lxc/storage_volume.go:189 +#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:112 +#: lxc/storage_bucket.go:212 lxc/storage_bucket.go:288 +#: lxc/storage_bucket.go:407 lxc/storage_bucket.go:482 +#: lxc/storage_bucket.go:564 lxc/storage_bucket.go:656 +#: lxc/storage_bucket.go:798 lxc/storage_bucket.go:879 +#: lxc/storage_bucket.go:954 lxc/storage_bucket.go:1033 +#: lxc/storage_bucket.go:1156 lxc/storage_volume.go:189 #: lxc/storage_volume.go:287 lxc/storage_volume.go:583 #: lxc/storage_volume.go:660 lxc/storage_volume.go:735 #: lxc/storage_volume.go:817 lxc/storage_volume.go:919 @@ -3968,7 +3963,7 @@ msgstr "" msgid "Moving the storage volume: %s" msgstr "" -#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1097 +#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1102 msgid "Multiple ports match. Use --force to remove them all" msgstr "" @@ -3987,10 +3982,10 @@ 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:677 lxc/project.go:498 -#: lxc/remote.go:731 lxc/storage.go:638 lxc/storage_bucket.go:506 -#: lxc/storage_bucket.go:826 lxc/storage_volume.go:1561 +#: lxc/network_acl.go:147 lxc/network_peer.go:139 lxc/network_zone.go:139 +#: lxc/network_zone.go:746 lxc/profile.go:677 lxc/project.go:498 +#: lxc/remote.go:732 lxc/storage.go:638 lxc/storage_bucket.go:511 +#: lxc/storage_bucket.go:831 lxc/storage_volume.go:1561 msgid "NAME" msgstr "" @@ -4016,7 +4011,7 @@ msgstr "" #: lxc/network.go:957 lxc/operation.go:154 lxc/project.go:456 #: lxc/project.go:461 lxc/project.go:466 lxc/project.go:471 lxc/project.go:476 -#: lxc/project.go:481 lxc/remote.go:691 lxc/remote.go:696 lxc/remote.go:701 +#: lxc/project.go:481 lxc/remote.go:692 lxc/remote.go:697 lxc/remote.go:702 msgid "NO" msgstr "" @@ -4043,7 +4038,7 @@ msgstr "" msgid "Name" msgstr "" -#: lxc/remote.go:141 +#: lxc/remote.go:142 msgid "Name of the project to use for this remote:" msgstr "" @@ -4092,12 +4087,12 @@ msgstr "" msgid "Network ACL %s renamed to %s" msgstr "" -#: lxc/network_zone.go:336 +#: lxc/network_zone.go:341 #, c-format msgid "Network Zone %s created" msgstr "" -#: lxc/network_zone.go:616 +#: lxc/network_zone.go:621 #, c-format msgid "Network Zone %s deleted" msgstr "" @@ -4112,12 +4107,12 @@ msgstr "" msgid "Network forward %s deleted" msgstr "" -#: lxc/network_load_balancer.go:365 +#: lxc/network_load_balancer.go:370 #, c-format msgid "Network load balancer %s created" msgstr "" -#: lxc/network_load_balancer.go:767 +#: lxc/network_load_balancer.go:772 #, c-format msgid "Network load balancer %s deleted" msgstr "" @@ -4155,12 +4150,12 @@ msgstr "" msgid "Network usage:" msgstr "" -#: lxc/network_zone.go:934 +#: lxc/network_zone.go:939 #, c-format msgid "Network zone record %s created" msgstr "" -#: lxc/network_zone.go:1207 +#: lxc/network_zone.go:1212 #, c-format msgid "Network zone record %s deleted" msgstr "" @@ -4195,11 +4190,11 @@ msgstr "" msgid "No device found for this storage volume" msgstr "" -#: lxc/network_load_balancer.go:921 +#: lxc/network_load_balancer.go:926 msgid "No matching backend found" msgstr "" -#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1108 +#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1113 msgid "No matching port(s) found" msgstr "" @@ -4245,7 +4240,7 @@ msgstr "" msgid "Only \"custom\" volumes can be snapshotted" msgstr "" -#: lxc/remote.go:332 +#: lxc/remote.go:333 msgid "Only https URLs are supported for simplestreams" msgstr "" @@ -4270,7 +4265,7 @@ msgstr "" msgid "Optimized Storage" msgstr "" -#: lxc/main.go:96 +#: lxc/main.go:97 msgid "Override the source project" msgstr "" @@ -4316,11 +4311,11 @@ msgstr "" msgid "PROJECT" msgstr "" -#: lxc/remote.go:733 +#: lxc/remote.go:734 msgid "PROTOCOL" msgstr "" -#: lxc/image.go:1073 lxc/remote.go:735 +#: lxc/image.go:1073 lxc/remote.go:736 msgid "PUBLIC" msgstr "" @@ -4336,7 +4331,7 @@ msgstr "" msgid "Partitions:" msgstr "" -#: lxc/main.go:361 +#: lxc/main.go:363 #, c-format msgid "Password for %s: " msgstr "" @@ -4349,7 +4344,7 @@ msgstr "" msgid "Perform an incremental copy" msgstr "" -#: lxc/remote.go:182 +#: lxc/remote.go:183 msgid "Please provide an alternate server address (empty to abort):" msgstr "" @@ -4361,7 +4356,7 @@ msgstr "" msgid "Please provide cluster member name: " msgstr "" -#: lxc/remote.go:462 +#: lxc/remote.go:463 msgid "Please type 'y', 'n' or the fingerprint:" msgstr "" @@ -4383,10 +4378,10 @@ msgstr "" #: lxc/config.go:1278 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/network_load_balancer.go:695 lxc/network_peer.go:611 +#: lxc/network_zone.go:557 lxc/network_zone.go:1149 lxc/profile.go:539 +#: lxc/project.go:316 lxc/storage.go:311 lxc/storage_bucket.go:349 +#: lxc/storage_bucket.go:1098 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 "" @@ -4395,7 +4390,7 @@ msgstr "" msgid "Pretty rendering (short for --format=pretty)" msgstr "" -#: lxc/main.go:94 +#: lxc/main.go:95 msgid "Print help" msgstr "" @@ -4403,7 +4398,7 @@ msgstr "" msgid "Print the raw response" msgstr "" -#: lxc/main.go:93 +#: lxc/main.go:94 msgid "Print version number" msgstr "" @@ -4492,7 +4487,7 @@ msgstr "" msgid "Project %s renamed to %s" msgstr "" -#: lxc/remote.go:106 +#: lxc/remote.go:107 msgid "Project to use for the remote" msgstr "" @@ -4590,7 +4585,7 @@ msgid "" "pool \"default\"." msgstr "" -#: lxc/remote.go:105 +#: lxc/remote.go:106 msgid "Public image server" msgstr "" @@ -4638,7 +4633,7 @@ msgstr "" msgid "RESOURCE" msgstr "" -#: lxc/storage_bucket.go:828 +#: lxc/storage_bucket.go:833 msgid "ROLE" msgstr "" @@ -4681,45 +4676,45 @@ msgstr "" msgid "Refreshing the image: %s" msgstr "" -#: lxc/remote.go:785 +#: lxc/remote.go:786 #, c-format msgid "Remote %s already exists" msgstr "" -#: lxc/project.go:769 lxc/remote.go:776 lxc/remote.go:849 lxc/remote.go:905 -#: lxc/remote.go:945 +#: lxc/project.go:769 lxc/remote.go:777 lxc/remote.go:850 lxc/remote.go:906 +#: lxc/remote.go:946 #, c-format msgid "Remote %s doesn't exist" msgstr "" -#: lxc/remote.go:301 +#: lxc/remote.go:302 #, c-format msgid "Remote %s exists as <%s>" msgstr "" -#: lxc/remote.go:857 +#: lxc/remote.go:858 #, c-format msgid "Remote %s is global and cannot be removed" msgstr "" -#: lxc/remote.go:780 lxc/remote.go:853 lxc/remote.go:949 +#: lxc/remote.go:781 lxc/remote.go:854 lxc/remote.go:950 #, c-format msgid "Remote %s is static and cannot be modified" msgstr "" -#: lxc/remote.go:290 +#: lxc/remote.go:291 msgid "Remote address must not be empty" msgstr "" -#: lxc/remote.go:101 +#: lxc/remote.go:102 msgid "Remote admin password" msgstr "" -#: lxc/remote.go:295 +#: lxc/remote.go:296 msgid "Remote names may not contain colons" msgstr "" -#: lxc/remote.go:102 +#: lxc/remote.go:103 msgid "Remote trust token" msgstr "" @@ -4745,7 +4740,7 @@ msgstr "" msgid "Remove a member from the cluster" msgstr "" -#: lxc/network_zone.go:1285 +#: lxc/network_zone.go:1290 msgid "Remove a network zone record entry" msgstr "" @@ -4753,7 +4748,7 @@ msgstr "" msgid "Remove aliases" msgstr "" -#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1025 +#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1030 msgid "Remove all ports that match" msgstr "" @@ -4761,15 +4756,15 @@ msgstr "" msgid "Remove all rules that match" msgstr "" -#: lxc/network_load_balancer.go:862 +#: lxc/network_load_balancer.go:867 msgid "Remove backend from a load balancer" msgstr "" -#: lxc/network_load_balancer.go:861 +#: lxc/network_load_balancer.go:866 msgid "Remove backends from a load balancer" msgstr "" -#: lxc/network_zone.go:1286 +#: lxc/network_zone.go:1291 msgid "Remove entries from a network zone record" msgstr "" @@ -4793,7 +4788,7 @@ msgstr "" msgid "Remove ports from a forward" msgstr "" -#: lxc/network_load_balancer.go:1023 lxc/network_load_balancer.go:1024 +#: lxc/network_load_balancer.go:1028 lxc/network_load_balancer.go:1029 msgid "Remove ports from a load balancer" msgstr "" @@ -4801,7 +4796,7 @@ msgstr "" msgid "Remove profiles from instances" msgstr "" -#: lxc/remote.go:827 lxc/remote.go:828 +#: lxc/remote.go:828 lxc/remote.go:829 msgid "Remove remotes" msgstr "" @@ -4858,7 +4853,7 @@ msgstr "" msgid "Rename projects" msgstr "" -#: lxc/remote.go:754 lxc/remote.go:755 +#: lxc/remote.go:755 lxc/remote.go:756 msgid "Rename remotes" msgstr "" @@ -4936,7 +4931,7 @@ msgid "Restrict the certificate to one or more projects" msgstr "" #: lxc/console.go:44 -msgid "Retrieve the instance's console log" +msgid "Retrieve the container's console log" msgstr "" #: lxc/init.go:347 @@ -4952,7 +4947,7 @@ msgstr "" msgid "Revoke cluster member join token" msgstr "" -#: lxc/storage_bucket.go:851 +#: lxc/storage_bucket.go:856 msgid "Role (admin or read-only)" msgstr "" @@ -5003,7 +4998,7 @@ msgstr "" msgid "STATE" msgstr "" -#: lxc/remote.go:736 +#: lxc/remote.go:737 msgid "STATIC" msgstr "" @@ -5027,11 +5022,11 @@ msgstr "" msgid "STP" msgstr "" -#: lxc/storage_bucket.go:853 +#: lxc/storage_bucket.go:858 msgid "Secret key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:909 +#: lxc/storage_bucket.go:914 #, c-format msgid "Secret key: %s" msgstr "" @@ -5040,19 +5035,19 @@ msgstr "" msgid "Send a raw query to LXD" msgstr "" -#: lxc/remote.go:104 +#: lxc/remote.go:105 msgid "Server authentication type (tls or oidc)" msgstr "" -#: lxc/remote.go:460 +#: lxc/remote.go:461 msgid "Server certificate NACKed by user" msgstr "" -#: lxc/remote.go:599 +#: lxc/remote.go:600 msgid "Server doesn't trust us after authentication" msgstr "" -#: lxc/remote.go:103 +#: lxc/remote.go:104 msgid "Server protocol (lxd or simplestreams)" msgstr "" @@ -5151,11 +5146,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_load_balancer.go:450 +#: lxc/network_load_balancer.go:455 msgid "Set network load balancer keys" msgstr "" -#: lxc/network_load_balancer.go:451 +#: lxc/network_load_balancer.go:456 msgid "" "Set network load balancer keys\n" "\n" @@ -5177,11 +5172,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:353 +#: lxc/network_zone.go:358 msgid "Set network zone configuration keys" msgstr "" -#: lxc/network_zone.go:354 +#: lxc/network_zone.go:359 msgid "" "Set network zone configuration keys\n" "\n" @@ -5190,7 +5185,7 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:951 lxc/network_zone.go:952 +#: lxc/network_zone.go:956 lxc/network_zone.go:957 msgid "Set network zone record configuration keys" msgstr "" @@ -5220,11 +5215,11 @@ msgid "" " lxc project set [:] " msgstr "" -#: lxc/storage_bucket.go:529 +#: lxc/storage_bucket.go:534 msgid "Set storage bucket configuration keys" msgstr "" -#: lxc/storage_bucket.go:530 +#: lxc/storage_bucket.go:535 msgid "" "Set storage bucket configuration keys\n" "\n" @@ -5259,7 +5254,7 @@ msgid "" " lxc storage volume set [:] [/] " msgstr "" -#: lxc/remote.go:923 lxc/remote.go:924 +#: lxc/remote.go:924 lxc/remote.go:925 msgid "Set the URL for the remote" msgstr "" @@ -5287,7 +5282,7 @@ msgstr "" msgid "Set the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:458 +#: lxc/network_load_balancer.go:463 msgid "Set the key as a network load balancer property" msgstr "" @@ -5299,11 +5294,11 @@ msgstr "" msgid "Set the key as a network property" msgstr "" -#: lxc/network_zone.go:361 +#: lxc/network_zone.go:366 msgid "Set the key as a network zone property" msgstr "" -#: lxc/network_zone.go:957 +#: lxc/network_zone.go:962 msgid "Set the key as a network zone record property" msgstr "" @@ -5315,7 +5310,7 @@ msgstr "" msgid "Set the key as a project property" msgstr "" -#: lxc/storage_bucket.go:537 +#: lxc/storage_bucket.go:542 msgid "Set the key as a storage bucket property" msgstr "" @@ -5335,11 +5330,11 @@ msgstr "" msgid "Setup SSH SFTP listener on address:port instead of mounting" msgstr "" -#: lxc/main.go:97 +#: lxc/main.go:98 msgid "Show all debug messages" msgstr "" -#: lxc/main.go:98 +#: lxc/main.go:99 msgid "Show all information messages" msgstr "" @@ -5408,7 +5403,7 @@ msgstr "" msgid "Show instance or server information" msgstr "" -#: lxc/main.go:271 lxc/main.go:272 +#: lxc/main.go:272 lxc/main.go:273 msgid "Show less common commands" msgstr "" @@ -5440,15 +5435,15 @@ msgstr "" msgid "Show network peer configurations" msgstr "" -#: lxc/network_zone.go:155 lxc/network_zone.go:156 +#: lxc/network_zone.go:156 lxc/network_zone.go:157 msgid "Show network zone configurations" msgstr "" -#: lxc/network_zone.go:758 +#: lxc/network_zone.go:763 msgid "Show network zone record configuration" msgstr "" -#: lxc/network_zone.go:759 +#: lxc/network_zone.go:764 msgid "Show network zone record configurations" msgstr "" @@ -5460,11 +5455,11 @@ msgstr "" msgid "Show project options" msgstr "" -#: lxc/storage_bucket.go:623 lxc/storage_bucket.go:624 +#: lxc/storage_bucket.go:628 lxc/storage_bucket.go:629 msgid "Show storage bucket configurations" msgstr "" -#: lxc/storage_bucket.go:1123 lxc/storage_bucket.go:1124 +#: lxc/storage_bucket.go:1128 lxc/storage_bucket.go:1129 msgid "Show storage bucket key configurations" msgstr "" @@ -5490,7 +5485,7 @@ msgid "" "that are granted via identity provider group mappings. \n" msgstr "" -#: lxc/remote.go:630 lxc/remote.go:631 +#: lxc/remote.go:631 lxc/remote.go:632 msgid "Show the default remote" msgstr "" @@ -5614,22 +5609,22 @@ msgstr "" msgid "Stopping the instance failed: %s" msgstr "" -#: lxc/storage_bucket.go:161 +#: lxc/storage_bucket.go:166 #, c-format msgid "Storage bucket %s created" msgstr "" -#: lxc/storage_bucket.go:228 +#: lxc/storage_bucket.go:233 #, c-format msgid "Storage bucket %s deleted" msgstr "" -#: lxc/storage_bucket.go:907 +#: lxc/storage_bucket.go:912 #, c-format msgid "Storage bucket key %s added" msgstr "" -#: lxc/storage_bucket.go:973 +#: lxc/storage_bucket.go:978 #, c-format msgid "Storage bucket key %s removed" msgstr "" @@ -5702,7 +5697,7 @@ msgstr "" msgid "Switch the current project" msgstr "" -#: lxc/remote.go:883 lxc/remote.go:884 +#: lxc/remote.go:884 lxc/remote.go:885 msgid "Switch the default remote" msgstr "" @@ -5817,7 +5812,7 @@ msgstr "" msgid "The property %q does not exist on the instance snapshot %s/%s: %v" msgstr "" -#: lxc/network_load_balancer.go:424 +#: lxc/network_load_balancer.go:429 #, c-format msgid "The property %q does not exist on the load balancer %q: %v" msgstr "" @@ -5842,12 +5837,12 @@ msgstr "" msgid "The property %q does not exist on the network peer %q: %v" msgstr "" -#: lxc/network_zone.go:246 +#: lxc/network_zone.go:247 #, c-format msgid "The property %q does not exist on the network zone %q: %v" msgstr "" -#: lxc/network_zone.go:845 +#: lxc/network_zone.go:850 #, c-format msgid "The property %q does not exist on the network zone record %q: %v" msgstr "" @@ -5862,7 +5857,7 @@ msgstr "" msgid "The property %q does not exist on the project %q: %v" msgstr "" -#: lxc/storage_bucket.go:426 +#: lxc/storage_bucket.go:431 #, c-format msgid "The property %q does not exist on the storage bucket %q: %v" msgstr "" @@ -5916,7 +5911,7 @@ msgstr "" msgid "This LXD server is not available on the network" msgstr "" -#: lxc/main.go:293 +#: lxc/main.go:294 msgid "" "This client hasn't been configured to use a remote LXD server yet.\n" "As your platform can't run native Linux instances, you must connect to a " @@ -5948,11 +5943,11 @@ msgstr "" msgid "To create a new network, use: lxc network create" msgstr "" -#: lxc/console.go:210 +#: lxc/console.go:215 msgid "To detach from the console, press: +a q" msgstr "" -#: lxc/main.go:403 +#: lxc/main.go:406 msgid "" "To start your first container, try: lxc launch ubuntu:24.04\n" "Or for a virtual machine: lxc launch ubuntu:24.04 --vm" @@ -6050,7 +6045,7 @@ msgstr "" msgid "UPLOAD DATE" msgstr "" -#: lxc/cluster.go:184 lxc/remote.go:732 +#: lxc/cluster.go:184 lxc/remote.go:733 msgid "URL" msgstr "" @@ -6059,7 +6054,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:679 lxc/project.go:506 +#: lxc/network_zone.go:141 lxc/profile.go:679 lxc/project.go:506 #: lxc/storage.go:647 lxc/storage_volume.go:1564 msgid "USED BY" msgstr "" @@ -6078,7 +6073,7 @@ msgstr "" msgid "Unable to create a temporary file: %v" msgstr "" -#: lxc/remote.go:213 lxc/remote.go:247 +#: lxc/remote.go:214 lxc/remote.go:248 msgid "Unavailable remote server" msgstr "" @@ -6098,7 +6093,7 @@ msgstr "" msgid "Unknown column shorthand char '%c' in '%s'" msgstr "" -#: lxc/console.go:159 +#: lxc/console.go:164 #, c-format msgid "Unknown console type %q" msgstr "" @@ -6158,11 +6153,11 @@ msgstr "" msgid "Unset network forward keys" msgstr "" -#: lxc/network_load_balancer.go:548 +#: lxc/network_load_balancer.go:553 msgid "Unset network load balancer configuration keys" msgstr "" -#: lxc/network_load_balancer.go:549 +#: lxc/network_load_balancer.go:554 msgid "Unset network load balancer keys" msgstr "" @@ -6174,11 +6169,11 @@ msgstr "" msgid "Unset network peer keys" msgstr "" -#: lxc/network_zone.go:433 lxc/network_zone.go:434 +#: lxc/network_zone.go:438 lxc/network_zone.go:439 msgid "Unset network zone configuration keys" msgstr "" -#: lxc/network_zone.go:1027 lxc/network_zone.go:1028 +#: lxc/network_zone.go:1032 lxc/network_zone.go:1033 msgid "Unset network zone record configuration keys" msgstr "" @@ -6190,7 +6185,7 @@ msgstr "" msgid "Unset project configuration keys" msgstr "" -#: lxc/storage_bucket.go:692 lxc/storage_bucket.go:693 +#: lxc/storage_bucket.go:697 lxc/storage_bucket.go:698 msgid "Unset storage bucket configuration keys" msgstr "" @@ -6214,7 +6209,7 @@ msgstr "" msgid "Unset the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:552 +#: lxc/network_load_balancer.go:557 msgid "Unset the key as a network load balancer property" msgstr "" @@ -6226,11 +6221,11 @@ msgstr "" msgid "Unset the key as a network property" msgstr "" -#: lxc/network_zone.go:437 +#: lxc/network_zone.go:442 msgid "Unset the key as a network zone property" msgstr "" -#: lxc/network_zone.go:1031 +#: lxc/network_zone.go:1036 msgid "Unset the key as a network zone record property" msgstr "" @@ -6242,7 +6237,7 @@ msgstr "" msgid "Unset the key as a project property" msgstr "" -#: lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:701 msgid "Unset the key as a storage bucket property" msgstr "" @@ -6304,7 +6299,7 @@ msgid "" "Use storage driver optimized format (can only be restored on a similar pool)" msgstr "" -#: lxc/main.go:100 +#: lxc/main.go:101 msgid "Use with help or --help to view sub-commands" msgstr "" @@ -6401,7 +6396,7 @@ msgstr "" #: lxc/network.go:959 lxc/operation.go:156 lxc/project.go:458 #: lxc/project.go:463 lxc/project.go:468 lxc/project.go:473 lxc/project.go:478 -#: lxc/project.go:483 lxc/remote.go:693 lxc/remote.go:698 lxc/remote.go:703 +#: lxc/project.go:483 lxc/remote.go:694 lxc/remote.go:699 lxc/remote.go:704 msgid "YES" msgstr "" @@ -6436,7 +6431,7 @@ 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/network.go:909 lxc/network_acl.go:91 lxc/network_zone.go:83 #: 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 "[:]" @@ -6499,19 +6494,19 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:154 lxc/network_zone.go:463 lxc/network_zone.go:581 +#: lxc/network_zone.go:155 lxc/network_zone.go:468 lxc/network_zone.go:586 msgid "[:]" msgstr "" -#: lxc/network_zone.go:209 lxc/network_zone.go:432 +#: lxc/network_zone.go:210 lxc/network_zone.go:437 msgid "[:] " msgstr "" -#: lxc/network_zone.go:352 +#: lxc/network_zone.go:357 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:269 +#: lxc/network_zone.go:270 msgid "[:] [key=value...]" msgstr "" @@ -6757,30 +6752,30 @@ msgstr "" #: lxc/network_forward.go:169 lxc/network_forward.go:574 #: lxc/network_forward.go:715 lxc/network_load_balancer.go:171 -#: lxc/network_load_balancer.go:577 lxc/network_load_balancer.go:719 +#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:724 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:860 +#: lxc/network_load_balancer.go:865 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:796 +#: lxc/network_load_balancer.go:801 msgid "" "[:] " "[]" msgstr "" #: lxc/network_forward.go:377 lxc/network_forward.go:544 -#: lxc/network_load_balancer.go:381 lxc/network_load_balancer.go:547 +#: lxc/network_load_balancer.go:386 lxc/network_load_balancer.go:552 msgid "[:] " msgstr "" -#: lxc/network_forward.go:446 lxc/network_load_balancer.go:449 +#: lxc/network_forward.go:446 lxc/network_load_balancer.go:454 msgid "[:] =..." msgstr "" -#: lxc/network_load_balancer.go:961 +#: lxc/network_load_balancer.go:966 msgid "" "[:] " "[,...]" @@ -6792,7 +6787,7 @@ msgid "" " []" msgstr "" -#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1022 +#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1027 msgid "[:] [] []" msgstr "" @@ -6843,7 +6838,7 @@ msgid "[:]" msgstr "" #: lxc/storage.go:167 lxc/storage.go:218 lxc/storage.go:412 lxc/storage.go:759 -#: lxc/storage_bucket.go:449 +#: lxc/storage_bucket.go:454 msgid "[:]" msgstr "" @@ -6851,18 +6846,18 @@ msgstr "" msgid "[:] []" msgstr "" -#: lxc/storage_bucket.go:180 lxc/storage_bucket.go:242 -#: lxc/storage_bucket.go:622 lxc/storage_bucket.go:764 +#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:247 +#: lxc/storage_bucket.go:627 lxc/storage_bucket.go:769 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:375 lxc/storage_bucket.go:691 -#: lxc/storage_bucket.go:845 lxc/storage_bucket.go:923 -#: lxc/storage_bucket.go:987 lxc/storage_bucket.go:1122 +#: lxc/storage_bucket.go:380 lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:850 lxc/storage_bucket.go:928 +#: lxc/storage_bucket.go:992 lxc/storage_bucket.go:1127 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:528 +#: lxc/storage_bucket.go:533 msgid "[:] =..." msgstr "" @@ -7006,27 +7001,27 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:686 +#: lxc/network_zone.go:691 msgid "[:]" msgstr "" -#: lxc/network_zone.go:757 lxc/network_zone.go:1056 lxc/network_zone.go:1173 +#: lxc/network_zone.go:762 lxc/network_zone.go:1061 lxc/network_zone.go:1178 msgid "[:] " msgstr "" -#: lxc/network_zone.go:809 lxc/network_zone.go:1026 +#: lxc/network_zone.go:814 lxc/network_zone.go:1031 msgid "[:] " msgstr "" -#: lxc/network_zone.go:950 +#: lxc/network_zone.go:955 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:1238 lxc/network_zone.go:1284 +#: lxc/network_zone.go:1243 lxc/network_zone.go:1289 msgid "[:] " msgstr "" -#: lxc/network_zone.go:868 +#: lxc/network_zone.go:873 msgid "[:] [key=value...]" msgstr "" @@ -7050,7 +7045,7 @@ msgstr "" msgid "[:][] [...]" msgstr "" -#: lxc/remote.go:88 +#: lxc/remote.go:89 msgid "[] " msgstr "" @@ -7058,7 +7053,7 @@ msgstr "" msgid "[[:]]" msgstr "" -#: lxc/project.go:488 lxc/remote.go:722 +#: lxc/project.go:488 lxc/remote.go:723 msgid "current" msgstr "" @@ -7321,6 +7316,23 @@ msgid "" " Create a new OVN network called bar using baz as its uplink network" msgstr "" +#: lxc/network_load_balancer.go:239 +msgid "" +"lxc network load-balancer create n1 127.0.0.1\n" +"\n" +"lxc network load-balancer create n1 127.0.0.1 < config.yaml\n" +" Create network load-balancer for network n1 with configuration from " +"config.yaml" +msgstr "" + +#: lxc/network_zone.go:273 +msgid "" +"lxc network zone create z1\n" +"\n" +"lxc network zone create z1 < config.yaml\n" +" Create network zone z1 with configuration from config.yaml" +msgstr "" + #: lxc/operation.go:195 msgid "" "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n" @@ -7391,26 +7403,36 @@ msgid "" " Restore the snapshot." msgstr "" -#: lxc/storage_bucket.go:245 +#: lxc/storage_bucket.go:84 +msgid "" +"lxc storage bucket create p1 b01\n" +"\tCreate a new storage bucket name b01 in storage pool p1\n" +"\n" +"lxc storage bucket create p1 b01 < config.yaml\n" +"\tCreate a new storage bucket name b01 in storage pool p1 using the content " +"of config.yaml" +msgstr "" + +#: lxc/storage_bucket.go:250 msgid "" "lxc storage bucket edit [:] < bucket.yaml\n" " Update a storage bucket using the content of bucket.yaml." msgstr "" -#: lxc/storage_bucket.go:990 +#: lxc/storage_bucket.go:995 msgid "" "lxc storage bucket edit [:] < key.yaml\n" " Update a storage bucket key using the content of key.yaml." msgstr "" -#: lxc/storage_bucket.go:1125 +#: lxc/storage_bucket.go:1130 msgid "" "lxc storage bucket key show default data foo\n" " Will show the properties of a bucket key called \"foo\" for a bucket " "called \"data\" in the \"default\" pool." msgstr "" -#: lxc/storage_bucket.go:625 +#: lxc/storage_bucket.go:630 msgid "" "lxc storage bucket show default data\n" " Will show the properties of a bucket called \"data\" in the \"default\" " @@ -7429,7 +7451,7 @@ msgid "" "\t\tCreate a new custom volume using backup0.tar.gz as the source." msgstr "" -#: lxc/remote.go:459 +#: lxc/remote.go:460 msgid "n" msgstr "" @@ -7441,7 +7463,7 @@ msgstr "" msgid "no" msgstr "" -#: lxc/remote.go:452 +#: lxc/remote.go:453 msgid "ok (y/n/[fingerprint])?" msgstr "" @@ -7478,7 +7500,7 @@ msgstr "" msgid "used by" msgstr "" -#: lxc/remote.go:461 +#: lxc/remote.go:462 msgid "y" msgstr "" diff --git a/po/ber.po b/po/ber.po index ef07492d625f..7d14bc640bb8 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-08-20 09:31+0100\n" +"POT-Creation-Date: 2024-08-30 09:27+0100\n" "PO-Revision-Date: 2022-03-10 15:10+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Berber " msgstr "" -#: lxc/remote.go:825 lxc/remote.go:882 +#: lxc/remote.go:826 lxc/remote.go:883 msgid "" msgstr "" -#: lxc/remote.go:922 +#: lxc/remote.go:923 msgid " " msgstr "" -#: lxc/remote.go:752 +#: lxc/remote.go:753 msgid " " msgstr "" @@ -556,7 +556,7 @@ msgstr "" msgid "ARCHITECTURE" msgstr "" -#: lxc/remote.go:734 +#: lxc/remote.go:735 msgid "AUTH TYPE" msgstr "" @@ -564,15 +564,15 @@ msgstr "" msgid "AUTHENTICATION METHOD" msgstr "" -#: lxc/remote.go:100 +#: lxc/remote.go:101 msgid "Accept certificate" msgstr "" -#: lxc/storage_bucket.go:852 +#: lxc/storage_bucket.go:857 msgid "Access key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:908 +#: lxc/storage_bucket.go:913 #, c-format msgid "Access key: %s" msgstr "" @@ -606,19 +606,19 @@ msgstr "" msgid "Add a group to an identity provider group" msgstr "" -#: lxc/network_zone.go:1239 +#: lxc/network_zone.go:1244 msgid "Add a network zone record entry" msgstr "" -#: lxc/network_load_balancer.go:798 +#: lxc/network_load_balancer.go:803 msgid "Add backend to a load balancer" msgstr "" -#: lxc/network_load_balancer.go:797 +#: lxc/network_load_balancer.go:802 msgid "Add backends to a load balancer" msgstr "" -#: lxc/network_zone.go:1240 +#: lxc/network_zone.go:1245 msgid "Add entries to a network zone record" msgstr "" @@ -634,11 +634,11 @@ msgstr "" msgid "Add new aliases" msgstr "" -#: lxc/remote.go:89 +#: lxc/remote.go:90 msgid "Add new remote servers" msgstr "" -#: lxc/remote.go:90 +#: lxc/remote.go:91 msgid "" "Add new remote servers\n" "\n" @@ -679,7 +679,7 @@ msgstr "" msgid "Add ports to a forward" msgstr "" -#: lxc/network_load_balancer.go:962 lxc/network_load_balancer.go:963 +#: lxc/network_load_balancer.go:967 lxc/network_load_balancer.go:968 msgid "Add ports to a load balancer" msgstr "" @@ -700,17 +700,17 @@ msgstr "" msgid "Address: %s" msgstr "" -#: lxc/storage_bucket.go:164 +#: lxc/storage_bucket.go:169 #, c-format msgid "Admin access key: %s" msgstr "" -#: lxc/remote.go:566 +#: lxc/remote.go:567 #, c-format msgid "Admin password (or token) for %s:" msgstr "" -#: lxc/storage_bucket.go:165 +#: lxc/storage_bucket.go:170 #, c-format msgid "Admin secret key: %s" msgstr "" @@ -742,7 +742,7 @@ msgstr "" msgid "All projects" msgstr "" -#: lxc/remote.go:181 +#: lxc/remote.go:182 msgid "All server addresses are unavailable" msgstr "" @@ -765,7 +765,7 @@ msgstr "" msgid "Are you sure you want to %s cluster member %q? (yes/no) [default=no]: " msgstr "" -#: lxc/console.go:383 +#: lxc/console.go:388 msgid "As neither could be found, the raw SPICE socket can be found at:" msgstr "" @@ -813,7 +813,7 @@ msgid "" "as well as retrieve past log entries from it." msgstr "" -#: lxc/remote.go:548 +#: lxc/remote.go:549 #, c-format msgid "Authentication type '%s' not supported by server" msgstr "" @@ -832,11 +832,11 @@ msgstr "" msgid "Auto update: %s" msgstr "" -#: lxc/network_forward.go:240 lxc/network_load_balancer.go:242 +#: lxc/network_forward.go:240 lxc/network_load_balancer.go:247 msgid "Auto-allocate an IPv4 or IPv6 listen address. One of 'ipv4', 'ipv6'." msgstr "" -#: lxc/remote.go:136 +#: lxc/remote.go:137 msgid "Available projects:" msgstr "" @@ -868,8 +868,8 @@ msgid "Bad device override syntax, expecting ,=: %s" msgstr "" #: lxc/network.go:333 lxc/network_acl.go:382 lxc/network_forward.go:293 -#: lxc/network_load_balancer.go:296 lxc/network_peer.go:280 -#: lxc/network_zone.go:324 lxc/network_zone.go:922 lxc/storage_bucket.go:136 +#: lxc/network_load_balancer.go:301 lxc/network_peer.go:280 +#: lxc/network_zone.go:329 lxc/network_zone.go:927 lxc/storage_bucket.go:141 #, c-format msgid "Bad key/value pair: %s" msgstr "" @@ -991,7 +991,7 @@ msgstr "" msgid "Can't read from stdin: %w" msgstr "" -#: lxc/remote.go:861 +#: lxc/remote.go:862 msgid "Can't remove the default remote" msgstr "" @@ -1057,15 +1057,14 @@ msgstr "" msgid "Certificate add token for %s deleted" msgstr "" -#: lxc/remote.go:218 -#, c-format -msgid "" -"Certificate fingerprint mismatch between certificate token and server %q" +#: lxc/remote.go:452 +msgid "Certificate fingerprint" msgstr "" -#: lxc/remote.go:451 +#: lxc/remote.go:219 #, c-format -msgid "Certificate fingerprint: %s" +msgid "" +"Certificate fingerprint mismatch between certificate token and server %q" msgstr "" #: lxc/network.go:893 @@ -1077,7 +1076,7 @@ msgstr "" msgid "Client %s certificate add token:" msgstr "" -#: lxc/remote.go:603 +#: lxc/remote.go:604 msgid "Client certificate now trusted by server:" msgstr "" @@ -1139,18 +1138,18 @@ msgstr "" #: lxc/network_forward.go:456 lxc/network_forward.go:579 #: lxc/network_forward.go:721 lxc/network_forward.go:798 #: lxc/network_forward.go:864 lxc/network_load_balancer.go:176 -#: lxc/network_load_balancer.go:241 lxc/network_load_balancer.go:459 -#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:725 -#: lxc/network_load_balancer.go:801 lxc/network_load_balancer.go:865 -#: lxc/network_load_balancer.go:966 lxc/network_load_balancer.go:1028 +#: lxc/network_load_balancer.go:246 lxc/network_load_balancer.go:464 +#: lxc/network_load_balancer.go:587 lxc/network_load_balancer.go:730 +#: lxc/network_load_balancer.go:806 lxc/network_load_balancer.go:870 +#: lxc/network_load_balancer.go:971 lxc/network_load_balancer.go:1033 #: lxc/storage.go:99 lxc/storage.go:347 lxc/storage.go:418 lxc/storage.go:671 -#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:85 -#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:248 -#: lxc/storage_bucket.go:379 lxc/storage_bucket.go:536 -#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:695 -#: lxc/storage_bucket.go:770 lxc/storage_bucket.go:850 -#: lxc/storage_bucket.go:928 lxc/storage_bucket.go:993 -#: lxc/storage_bucket.go:1129 lxc/storage_volume.go:358 +#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:90 +#: lxc/storage_bucket.go:190 lxc/storage_bucket.go:253 +#: lxc/storage_bucket.go:384 lxc/storage_bucket.go:541 +#: lxc/storage_bucket.go:634 lxc/storage_bucket.go:700 +#: lxc/storage_bucket.go:775 lxc/storage_bucket.go:855 +#: lxc/storage_bucket.go:933 lxc/storage_bucket.go:998 +#: lxc/storage_bucket.go:1134 lxc/storage_volume.go:358 #: lxc/storage_volume.go:560 lxc/storage_volume.go:639 #: lxc/storage_volume.go:883 lxc/storage_volume.go:1097 #: lxc/storage_volume.go:1210 lxc/storage_volume.go:1678 @@ -1178,11 +1177,11 @@ msgstr "" msgid "Columns" msgstr "" -#: lxc/main.go:81 +#: lxc/main.go:82 msgid "Command line client for LXD" msgstr "" -#: lxc/main.go:82 +#: lxc/main.go:83 msgid "" "Command line client for LXD\n" "\n" @@ -1214,19 +1213,15 @@ msgstr "" #: lxc/config.go:347 lxc/config.go:1277 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/network_load_balancer.go:694 lxc/network_peer.go:610 +#: lxc/network_zone.go:556 lxc/network_zone.go:1148 lxc/profile.go:538 +#: lxc/project.go:315 lxc/storage.go:310 lxc/storage_bucket.go:348 +#: lxc/storage_bucket.go:1097 lxc/storage_volume.go:1016 #: lxc/storage_volume.go:1048 #, c-format msgid "Config parsing error: %s" msgstr "" -#: lxc/console.go:140 -msgid "Console log:" -msgstr "" - #: lxc/storage_volume.go:561 msgid "Content type, block or filesystem" msgstr "" @@ -1329,12 +1324,12 @@ msgstr "" msgid "Cores:" msgstr "" -#: lxc/remote.go:486 +#: lxc/remote.go:487 #, c-format msgid "Could not close server cert file %q: %w" msgstr "" -#: lxc/remote.go:224 lxc/remote.go:470 +#: lxc/remote.go:225 lxc/remote.go:471 msgid "Could not create server cert dir" msgstr "" @@ -1373,12 +1368,12 @@ msgstr "" msgid "Could not write new remote certificate for remote '%s' with error: %v" msgstr "" -#: lxc/remote.go:481 +#: lxc/remote.go:482 #, c-format msgid "Could not write server cert file %q: %w" msgstr "" -#: lxc/network_zone.go:1327 +#: lxc/network_zone.go:1332 msgid "Couldn't find a matching entry" msgstr "" @@ -1430,7 +1425,7 @@ msgstr "" msgid "Create instances from images" msgstr "" -#: lxc/storage_bucket.go:846 lxc/storage_bucket.go:847 +#: lxc/storage_bucket.go:851 lxc/storage_bucket.go:852 msgid "Create key for a storage bucket" msgstr "" @@ -1462,11 +1457,11 @@ msgstr "" msgid "Create new network peering" msgstr "" -#: lxc/network_zone.go:869 lxc/network_zone.go:870 +#: lxc/network_zone.go:874 lxc/network_zone.go:875 msgid "Create new network zone record" msgstr "" -#: lxc/network_zone.go:270 lxc/network_zone.go:271 +#: lxc/network_zone.go:271 lxc/network_zone.go:272 msgid "Create new network zones" msgstr "" @@ -1517,9 +1512,9 @@ msgstr "" #: 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/network_zone.go:140 lxc/network_zone.go:747 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_bucket.go:512 lxc/storage_bucket.go:832 #: lxc/storage_volume.go:1562 msgid "DESCRIPTION" msgstr "" @@ -1584,7 +1579,7 @@ msgstr "" msgid "Delete instances and snapshots" msgstr "" -#: lxc/storage_bucket.go:924 lxc/storage_bucket.go:925 +#: lxc/storage_bucket.go:929 lxc/storage_bucket.go:930 msgid "Delete key from a storage bucket" msgstr "" @@ -1596,7 +1591,7 @@ msgstr "" msgid "Delete network forwards" msgstr "" -#: lxc/network_load_balancer.go:721 lxc/network_load_balancer.go:722 +#: lxc/network_load_balancer.go:726 lxc/network_load_balancer.go:727 msgid "Delete network load balancers" msgstr "" @@ -1604,11 +1599,11 @@ msgstr "" msgid "Delete network peerings" msgstr "" -#: lxc/network_zone.go:1175 lxc/network_zone.go:1176 +#: lxc/network_zone.go:1180 lxc/network_zone.go:1181 msgid "Delete network zone record" msgstr "" -#: lxc/network_zone.go:583 lxc/network_zone.go:584 +#: lxc/network_zone.go:588 lxc/network_zone.go:589 msgid "Delete network zones" msgstr "" @@ -1624,7 +1619,7 @@ msgstr "" msgid "Delete projects" msgstr "" -#: lxc/storage_bucket.go:182 lxc/storage_bucket.go:183 +#: lxc/storage_bucket.go:187 lxc/storage_bucket.go:188 msgid "Delete storage buckets" msgstr "" @@ -1680,7 +1675,7 @@ msgstr "" #: 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/info.go:32 lxc/init.go:43 lxc/launch.go:24 lxc/list.go:48 lxc/main.go:83 #: 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 @@ -1699,22 +1694,22 @@ msgstr "" #: 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_load_balancer.go:238 lxc/network_load_balancer.go:388 +#: lxc/network_load_balancer.go:456 lxc/network_load_balancer.go:554 +#: lxc/network_load_balancer.go:584 lxc/network_load_balancer.go:727 +#: lxc/network_load_balancer.go:788 lxc/network_load_balancer.go:803 +#: lxc/network_load_balancer.go:867 lxc/network_load_balancer.go:953 +#: lxc/network_load_balancer.go:968 lxc/network_load_balancer.go:1029 #: 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/network_zone.go:29 lxc/network_zone.go:86 lxc/network_zone.go:157 +#: lxc/network_zone.go:212 lxc/network_zone.go:272 lxc/network_zone.go:359 +#: lxc/network_zone.go:439 lxc/network_zone.go:470 lxc/network_zone.go:589 +#: lxc/network_zone.go:637 lxc/network_zone.go:694 lxc/network_zone.go:764 +#: lxc/network_zone.go:816 lxc/network_zone.go:875 lxc/network_zone.go:957 +#: lxc/network_zone.go:1033 lxc/network_zone.go:1063 lxc/network_zone.go:1181 +#: lxc/network_zone.go:1230 lxc/network_zone.go:1245 lxc/network_zone.go:1291 #: 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 @@ -1723,19 +1718,19 @@ msgstr "" #: 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:631 lxc/remote.go:669 lxc/remote.go:755 lxc/remote.go:828 -#: lxc/remote.go:884 lxc/remote.go:924 lxc/rename.go:21 lxc/restore.go:24 +#: lxc/query.go:34 lxc/rebuild.go:27 lxc/remote.go:35 lxc/remote.go:91 +#: lxc/remote.go:632 lxc/remote.go:670 lxc/remote.go:756 lxc/remote.go:829 +#: lxc/remote.go:885 lxc/remote.go:925 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_bucket.go:29 lxc/storage_bucket.go:83 lxc/storage_bucket.go:188 +#: lxc/storage_bucket.go:249 lxc/storage_bucket.go:382 +#: lxc/storage_bucket.go:458 lxc/storage_bucket.go:535 +#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:698 +#: lxc/storage_bucket.go:732 lxc/storage_bucket.go:773 +#: lxc/storage_bucket.go:852 lxc/storage_bucket.go:930 +#: lxc/storage_bucket.go:994 lxc/storage_bucket.go:1129 #: 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 @@ -1871,7 +1866,7 @@ msgstr "" msgid "Don't require user confirmation for using --force" msgstr "" -#: lxc/main.go:99 +#: lxc/main.go:100 msgid "Don't show progress information" msgstr "" @@ -1884,7 +1879,7 @@ msgstr "" msgid "Driver: %v (%v)" msgstr "" -#: lxc/network_zone.go:743 +#: lxc/network_zone.go:748 msgid "ENTRIES" msgstr "" @@ -1962,7 +1957,7 @@ msgstr "" msgid "Edit network forward configurations as YAML" msgstr "" -#: lxc/network_load_balancer.go:578 lxc/network_load_balancer.go:579 +#: lxc/network_load_balancer.go:583 lxc/network_load_balancer.go:584 msgid "Edit network load balancer configurations as YAML" msgstr "" @@ -1970,11 +1965,11 @@ msgstr "" msgid "Edit network peer configurations as YAML" msgstr "" -#: lxc/network_zone.go:464 lxc/network_zone.go:465 +#: lxc/network_zone.go:469 lxc/network_zone.go:470 msgid "Edit network zone configurations as YAML" msgstr "" -#: lxc/network_zone.go:1057 lxc/network_zone.go:1058 +#: lxc/network_zone.go:1062 lxc/network_zone.go:1063 msgid "Edit network zone record configurations as YAML" msgstr "" @@ -1986,11 +1981,11 @@ msgstr "" msgid "Edit project configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:243 lxc/storage_bucket.go:244 +#: lxc/storage_bucket.go:248 lxc/storage_bucket.go:249 msgid "Edit storage bucket configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:988 lxc/storage_bucket.go:989 +#: lxc/storage_bucket.go:993 lxc/storage_bucket.go:994 msgid "Edit storage bucket key as YAML" msgstr "" @@ -2031,7 +2026,7 @@ msgid "" " for the address if not yet set." msgstr "" -#: lxc/network_zone.go:1242 +#: lxc/network_zone.go:1247 msgid "Entry TTL" msgstr "" @@ -2060,9 +2055,9 @@ msgstr "" #: lxc/cluster.go:414 lxc/config.go:624 lxc/config.go:656 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/network_load_balancer.go:527 lxc/network_peer.go:463 +#: lxc/network_zone.go:414 lxc/network_zone.go:1008 lxc/profile.go:876 +#: lxc/project.go:634 lxc/storage.go:727 lxc/storage_bucket.go:602 #: lxc/storage_volume.go:1947 lxc/storage_volume.go:1985 #, c-format msgid "Error setting properties: %v" @@ -2074,10 +2069,10 @@ 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/network_forward.go:513 lxc/network_load_balancer.go:521 +#: lxc/network_peer.go:457 lxc/network_zone.go:408 lxc/network_zone.go:1002 #: lxc/profile.go:870 lxc/project.go:628 lxc/storage.go:721 -#: lxc/storage_bucket.go:591 lxc/storage_volume.go:1941 +#: lxc/storage_bucket.go:596 lxc/storage_volume.go:1941 #: lxc/storage_volume.go:1979 #, c-format msgid "Error unsetting property: %v" @@ -2263,7 +2258,7 @@ msgstr "" msgid "Failed parsing SSH host key: %w" msgstr "" -#: lxc/console.go:361 +#: lxc/console.go:366 #, c-format msgid "Failed starting command: %w" msgstr "" @@ -2278,11 +2273,11 @@ msgstr "" msgid "Failed to accept incoming connection: %w" msgstr "" -#: lxc/remote.go:190 +#: lxc/remote.go:191 msgid "Failed to add remote" msgstr "" -#: lxc/remote.go:241 +#: lxc/remote.go:242 #, c-format msgid "Failed to close server cert file %q: %w" msgstr "" @@ -2292,7 +2287,7 @@ msgstr "" msgid "Failed to connect to cluster member: %w" msgstr "" -#: lxc/remote.go:231 +#: lxc/remote.go:232 #, c-format msgid "Failed to create %q: %w" msgstr "" @@ -2302,12 +2297,12 @@ msgstr "" msgid "Failed to create alias %s: %w" msgstr "" -#: lxc/remote.go:256 +#: lxc/remote.go:257 #, c-format msgid "Failed to create certificate: %w" msgstr "" -#: lxc/remote.go:263 +#: lxc/remote.go:264 #, c-format msgid "Failed to find project: %w" msgstr "" @@ -2332,7 +2327,7 @@ msgstr "" msgid "Failed to walk path for %s: %s" msgstr "" -#: lxc/remote.go:236 +#: lxc/remote.go:237 #, c-format msgid "Failed to write server cert file %q: %w" msgstr "" @@ -2341,7 +2336,7 @@ msgstr "" msgid "Fast mode (same as --columns=nsacPt)" msgstr "" -#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:115 +#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:116 #: lxc/operation.go:136 msgid "Filtering isn't supported yet" msgstr "" @@ -2379,7 +2374,7 @@ msgstr "" msgid "Force the removal of running instances" msgstr "" -#: lxc/main.go:95 +#: lxc/main.go:96 msgid "Force using the local unix socket" msgstr "" @@ -2413,10 +2408,10 @@ msgstr "" #: 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/network_peer.go:84 lxc/network_zone.go:89 lxc/network_zone.go:697 #: lxc/operation.go:108 lxc/profile.go:637 lxc/project.go:412 -#: lxc/project.go:804 lxc/remote.go:673 lxc/storage.go:588 -#: lxc/storage_bucket.go:454 lxc/storage_bucket.go:769 +#: lxc/project.go:804 lxc/remote.go:674 lxc/storage.go:588 +#: lxc/storage_bucket.go:459 lxc/storage_bucket.go:774 #: lxc/storage_volume.go:1446 lxc/warning.go:93 msgid "Format (csv|json|table|yaml|compact)" msgstr "" @@ -2453,7 +2448,7 @@ msgstr "" msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)" msgstr "" -#: lxc/remote.go:737 +#: lxc/remote.go:738 msgid "GLOBAL" msgstr "" @@ -2473,7 +2468,7 @@ msgstr "" msgid "Generate manpages for all commands" msgstr "" -#: lxc/remote.go:159 lxc/remote.go:397 +#: lxc/remote.go:160 lxc/remote.go:398 msgid "Generating a client certificate. This may take a minute..." msgstr "" @@ -2505,7 +2500,7 @@ msgstr "" msgid "Get the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:386 +#: lxc/network_load_balancer.go:391 msgid "Get the key as a network load balancer property" msgstr "" @@ -2517,11 +2512,11 @@ msgstr "" msgid "Get the key as a network property" msgstr "" -#: lxc/network_zone.go:214 +#: lxc/network_zone.go:215 msgid "Get the key as a network zone property" msgstr "" -#: lxc/network_zone.go:814 +#: lxc/network_zone.go:819 msgid "Get the key as a network zone record property" msgstr "" @@ -2533,7 +2528,7 @@ msgstr "" msgid "Get the key as a project property" msgstr "" -#: lxc/storage_bucket.go:380 +#: lxc/storage_bucket.go:385 msgid "Get the key as a storage bucket property" msgstr "" @@ -2573,7 +2568,7 @@ msgstr "" msgid "Get values for network forward configuration keys" msgstr "" -#: lxc/network_load_balancer.go:382 lxc/network_load_balancer.go:383 +#: lxc/network_load_balancer.go:387 lxc/network_load_balancer.go:388 msgid "Get values for network load balancer configuration keys" msgstr "" @@ -2581,11 +2576,11 @@ msgstr "" msgid "Get values for network peer configuration keys" msgstr "" -#: lxc/network_zone.go:210 lxc/network_zone.go:211 +#: lxc/network_zone.go:211 lxc/network_zone.go:212 msgid "Get values for network zone configuration keys" msgstr "" -#: lxc/network_zone.go:810 lxc/network_zone.go:811 +#: lxc/network_zone.go:815 lxc/network_zone.go:816 msgid "Get values for network zone record configuration keys" msgstr "" @@ -2597,7 +2592,7 @@ msgstr "" msgid "Get values for project configuration keys" msgstr "" -#: lxc/storage_bucket.go:376 lxc/storage_bucket.go:377 +#: lxc/storage_bucket.go:381 lxc/storage_bucket.go:382 msgid "Get values for storage bucket configuration keys" msgstr "" @@ -2737,7 +2732,7 @@ msgstr "" msgid "If the snapshot name already exists, delete and create a new one" msgstr "" -#: lxc/main.go:398 +#: lxc/main.go:400 msgid "" "If this is your first time running LXD on this machine, you should also run: " "lxd init" @@ -2894,7 +2889,7 @@ msgstr "" msgid "Instance type" msgstr "" -#: lxc/remote.go:349 +#: lxc/remote.go:350 #, c-format msgid "Invalid URL scheme \"%s\" in \"%s\"" msgstr "" @@ -2966,7 +2961,7 @@ msgstr "" msgid "Invalid new snapshot name, parent volume must be the same as source" msgstr "" -#: lxc/main.go:498 +#: lxc/main.go:502 msgid "Invalid number of arguments" msgstr "" @@ -2975,7 +2970,7 @@ msgstr "" msgid "Invalid path %s" msgstr "" -#: lxc/remote.go:338 +#: lxc/remote.go:339 #, c-format msgid "Invalid protocol: %s" msgstr "" @@ -3023,7 +3018,7 @@ msgstr "" #: lxc/list.go:597 lxc/network.go:1059 lxc/network_forward.go:155 #: lxc/network_load_balancer.go:157 lxc/operation.go:177 -#: lxc/storage_bucket.go:511 lxc/storage_volume.go:1569 lxc/warning.go:220 +#: lxc/storage_bucket.go:516 lxc/storage_volume.go:1569 lxc/warning.go:220 msgid "LOCATION" msgstr "" @@ -3031,7 +3026,7 @@ msgstr "" msgid "LXD - Command line client" msgstr "" -#: lxc/console.go:382 +#: lxc/console.go:387 msgid "LXD automatically uses either spicy or remote-viewer when present." msgstr "" @@ -3121,15 +3116,15 @@ msgstr "" msgid "List available network peers" msgstr "" -#: lxc/network_zone.go:85 +#: lxc/network_zone.go:86 msgid "List available network zone" msgstr "" -#: lxc/network_zone.go:688 lxc/network_zone.go:689 +#: lxc/network_zone.go:693 lxc/network_zone.go:694 msgid "List available network zone records" msgstr "" -#: lxc/network_zone.go:84 +#: lxc/network_zone.go:85 msgid "List available network zoneS" msgstr "" @@ -3318,11 +3313,11 @@ msgstr "" msgid "List projects" msgstr "" -#: lxc/storage_bucket.go:766 lxc/storage_bucket.go:768 +#: lxc/storage_bucket.go:771 lxc/storage_bucket.go:773 msgid "List storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:451 lxc/storage_bucket.go:453 +#: lxc/storage_bucket.go:456 lxc/storage_bucket.go:458 msgid "List storage buckets" msgstr "" @@ -3350,7 +3345,7 @@ msgid "" " U - Current disk usage" msgstr "" -#: lxc/remote.go:668 lxc/remote.go:669 +#: lxc/remote.go:669 lxc/remote.go:670 msgid "List the available remotes" msgstr "" @@ -3577,11 +3572,11 @@ msgstr "" msgid "Manage network forwards" msgstr "" -#: lxc/network_load_balancer.go:782 lxc/network_load_balancer.go:783 +#: lxc/network_load_balancer.go:787 lxc/network_load_balancer.go:788 msgid "Manage network load balancer backends" msgstr "" -#: lxc/network_load_balancer.go:947 lxc/network_load_balancer.go:948 +#: lxc/network_load_balancer.go:952 lxc/network_load_balancer.go:953 msgid "Manage network load balancer ports" msgstr "" @@ -3593,15 +3588,15 @@ msgstr "" msgid "Manage network peerings" msgstr "" -#: lxc/network_zone.go:1224 lxc/network_zone.go:1225 +#: lxc/network_zone.go:1229 lxc/network_zone.go:1230 msgid "Manage network zone record entries" msgstr "" -#: lxc/network_zone.go:631 lxc/network_zone.go:632 +#: lxc/network_zone.go:636 lxc/network_zone.go:637 msgid "Manage network zone records" msgstr "" -#: lxc/network_zone.go:27 lxc/network_zone.go:28 +#: lxc/network_zone.go:28 lxc/network_zone.go:29 msgid "Manage network zones" msgstr "" @@ -3617,11 +3612,11 @@ msgstr "" msgid "Manage projects" msgstr "" -#: lxc/storage_bucket.go:726 +#: lxc/storage_bucket.go:731 msgid "Manage storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:727 +#: lxc/storage_bucket.go:732 msgid "Manage storage bucket keys." msgstr "" @@ -3649,7 +3644,7 @@ msgid "" "\"custom\" (user created) volumes." msgstr "" -#: lxc/remote.go:33 lxc/remote.go:34 +#: lxc/remote.go:34 lxc/remote.go:35 msgid "Manage the list of remote servers" msgstr "" @@ -3730,12 +3725,12 @@ msgid "" "Minimum level for log messages (only available when using pretty format)" msgstr "" -#: lxc/storage_bucket.go:111 lxc/storage_bucket.go:211 -#: lxc/storage_bucket.go:287 lxc/storage_bucket.go:406 -#: lxc/storage_bucket.go:563 lxc/storage_bucket.go:655 -#: lxc/storage_bucket.go:797 lxc/storage_bucket.go:878 -#: lxc/storage_bucket.go:953 lxc/storage_bucket.go:1032 -#: lxc/storage_bucket.go:1155 +#: lxc/storage_bucket.go:116 lxc/storage_bucket.go:216 +#: lxc/storage_bucket.go:292 lxc/storage_bucket.go:411 +#: lxc/storage_bucket.go:568 lxc/storage_bucket.go:660 +#: lxc/storage_bucket.go:802 lxc/storage_bucket.go:883 +#: lxc/storage_bucket.go:958 lxc/storage_bucket.go:1037 +#: lxc/storage_bucket.go:1160 msgid "Missing bucket name" msgstr "" @@ -3779,8 +3774,8 @@ msgstr "" msgid "Missing instance name" msgstr "" -#: lxc/storage_bucket.go:882 lxc/storage_bucket.go:957 -#: lxc/storage_bucket.go:1036 lxc/storage_bucket.go:1159 +#: lxc/storage_bucket.go:887 lxc/storage_bucket.go:962 +#: lxc/storage_bucket.go:1041 lxc/storage_bucket.go:1164 msgid "Missing key name" msgstr "" @@ -3788,10 +3783,10 @@ msgstr "" #: lxc/network_forward.go:481 lxc/network_forward.go:627 #: lxc/network_forward.go:746 lxc/network_forward.go:823 #: lxc/network_forward.go:889 lxc/network_load_balancer.go:201 -#: lxc/network_load_balancer.go:411 lxc/network_load_balancer.go:484 -#: lxc/network_load_balancer.go:630 lxc/network_load_balancer.go:750 -#: lxc/network_load_balancer.go:826 lxc/network_load_balancer.go:890 -#: lxc/network_load_balancer.go:991 lxc/network_load_balancer.go:1053 +#: lxc/network_load_balancer.go:416 lxc/network_load_balancer.go:489 +#: lxc/network_load_balancer.go:635 lxc/network_load_balancer.go:755 +#: lxc/network_load_balancer.go:831 lxc/network_load_balancer.go:895 +#: lxc/network_load_balancer.go:996 lxc/network_load_balancer.go:1058 msgid "Missing listen address" msgstr "" @@ -3816,26 +3811,26 @@ msgstr "" #: lxc/network_forward.go:477 lxc/network_forward.go:623 #: lxc/network_forward.go:742 lxc/network_forward.go:819 #: lxc/network_forward.go:885 lxc/network_load_balancer.go:123 -#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:261 -#: lxc/network_load_balancer.go:407 lxc/network_load_balancer.go:480 -#: lxc/network_load_balancer.go:626 lxc/network_load_balancer.go:746 -#: lxc/network_load_balancer.go:822 lxc/network_load_balancer.go:886 -#: lxc/network_load_balancer.go:987 lxc/network_load_balancer.go:1049 +#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:266 +#: lxc/network_load_balancer.go:412 lxc/network_load_balancer.go:485 +#: lxc/network_load_balancer.go:631 lxc/network_load_balancer.go:751 +#: lxc/network_load_balancer.go:827 lxc/network_load_balancer.go:891 +#: lxc/network_load_balancer.go:992 lxc/network_load_balancer.go:1054 #: lxc/network_peer.go:110 lxc/network_peer.go:180 lxc/network_peer.go:237 #: lxc/network_peer.go:355 lxc/network_peer.go:426 lxc/network_peer.go:556 #: lxc/network_peer.go:665 msgid "Missing network name" msgstr "" -#: lxc/network_zone.go:178 lxc/network_zone.go:234 lxc/network_zone.go:294 -#: lxc/network_zone.go:382 lxc/network_zone.go:503 lxc/network_zone.go:606 -#: lxc/network_zone.go:712 lxc/network_zone.go:780 lxc/network_zone.go:892 -#: lxc/network_zone.go:976 lxc/network_zone.go:1197 lxc/network_zone.go:1262 -#: lxc/network_zone.go:1307 +#: lxc/network_zone.go:179 lxc/network_zone.go:235 lxc/network_zone.go:299 +#: lxc/network_zone.go:387 lxc/network_zone.go:508 lxc/network_zone.go:611 +#: lxc/network_zone.go:717 lxc/network_zone.go:785 lxc/network_zone.go:897 +#: lxc/network_zone.go:981 lxc/network_zone.go:1202 lxc/network_zone.go:1267 +#: lxc/network_zone.go:1312 msgid "Missing network zone name" msgstr "" -#: lxc/network_zone.go:833 lxc/network_zone.go:1095 +#: lxc/network_zone.go:838 lxc/network_zone.go:1100 msgid "Missing network zone record name" msgstr "" @@ -3845,13 +3840,13 @@ msgid "Missing peer name" msgstr "" #: lxc/storage.go:194 lxc/storage.go:264 lxc/storage.go:370 lxc/storage.go:440 -#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:107 -#: lxc/storage_bucket.go:207 lxc/storage_bucket.go:283 -#: lxc/storage_bucket.go:402 lxc/storage_bucket.go:477 -#: lxc/storage_bucket.go:559 lxc/storage_bucket.go:651 -#: lxc/storage_bucket.go:793 lxc/storage_bucket.go:874 -#: lxc/storage_bucket.go:949 lxc/storage_bucket.go:1028 -#: lxc/storage_bucket.go:1151 lxc/storage_volume.go:189 +#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:112 +#: lxc/storage_bucket.go:212 lxc/storage_bucket.go:288 +#: lxc/storage_bucket.go:407 lxc/storage_bucket.go:482 +#: lxc/storage_bucket.go:564 lxc/storage_bucket.go:656 +#: lxc/storage_bucket.go:798 lxc/storage_bucket.go:879 +#: lxc/storage_bucket.go:954 lxc/storage_bucket.go:1033 +#: lxc/storage_bucket.go:1156 lxc/storage_volume.go:189 #: lxc/storage_volume.go:287 lxc/storage_volume.go:583 #: lxc/storage_volume.go:660 lxc/storage_volume.go:735 #: lxc/storage_volume.go:817 lxc/storage_volume.go:919 @@ -3971,7 +3966,7 @@ msgstr "" msgid "Moving the storage volume: %s" msgstr "" -#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1097 +#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1102 msgid "Multiple ports match. Use --force to remove them all" msgstr "" @@ -3990,10 +3985,10 @@ 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:677 lxc/project.go:498 -#: lxc/remote.go:731 lxc/storage.go:638 lxc/storage_bucket.go:506 -#: lxc/storage_bucket.go:826 lxc/storage_volume.go:1561 +#: lxc/network_acl.go:147 lxc/network_peer.go:139 lxc/network_zone.go:139 +#: lxc/network_zone.go:746 lxc/profile.go:677 lxc/project.go:498 +#: lxc/remote.go:732 lxc/storage.go:638 lxc/storage_bucket.go:511 +#: lxc/storage_bucket.go:831 lxc/storage_volume.go:1561 msgid "NAME" msgstr "" @@ -4019,7 +4014,7 @@ msgstr "" #: lxc/network.go:957 lxc/operation.go:154 lxc/project.go:456 #: lxc/project.go:461 lxc/project.go:466 lxc/project.go:471 lxc/project.go:476 -#: lxc/project.go:481 lxc/remote.go:691 lxc/remote.go:696 lxc/remote.go:701 +#: lxc/project.go:481 lxc/remote.go:692 lxc/remote.go:697 lxc/remote.go:702 msgid "NO" msgstr "" @@ -4046,7 +4041,7 @@ msgstr "" msgid "Name" msgstr "" -#: lxc/remote.go:141 +#: lxc/remote.go:142 msgid "Name of the project to use for this remote:" msgstr "" @@ -4095,12 +4090,12 @@ msgstr "" msgid "Network ACL %s renamed to %s" msgstr "" -#: lxc/network_zone.go:336 +#: lxc/network_zone.go:341 #, c-format msgid "Network Zone %s created" msgstr "" -#: lxc/network_zone.go:616 +#: lxc/network_zone.go:621 #, c-format msgid "Network Zone %s deleted" msgstr "" @@ -4115,12 +4110,12 @@ msgstr "" msgid "Network forward %s deleted" msgstr "" -#: lxc/network_load_balancer.go:365 +#: lxc/network_load_balancer.go:370 #, c-format msgid "Network load balancer %s created" msgstr "" -#: lxc/network_load_balancer.go:767 +#: lxc/network_load_balancer.go:772 #, c-format msgid "Network load balancer %s deleted" msgstr "" @@ -4158,12 +4153,12 @@ msgstr "" msgid "Network usage:" msgstr "" -#: lxc/network_zone.go:934 +#: lxc/network_zone.go:939 #, c-format msgid "Network zone record %s created" msgstr "" -#: lxc/network_zone.go:1207 +#: lxc/network_zone.go:1212 #, c-format msgid "Network zone record %s deleted" msgstr "" @@ -4198,11 +4193,11 @@ msgstr "" msgid "No device found for this storage volume" msgstr "" -#: lxc/network_load_balancer.go:921 +#: lxc/network_load_balancer.go:926 msgid "No matching backend found" msgstr "" -#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1108 +#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1113 msgid "No matching port(s) found" msgstr "" @@ -4248,7 +4243,7 @@ msgstr "" msgid "Only \"custom\" volumes can be snapshotted" msgstr "" -#: lxc/remote.go:332 +#: lxc/remote.go:333 msgid "Only https URLs are supported for simplestreams" msgstr "" @@ -4273,7 +4268,7 @@ msgstr "" msgid "Optimized Storage" msgstr "" -#: lxc/main.go:96 +#: lxc/main.go:97 msgid "Override the source project" msgstr "" @@ -4319,11 +4314,11 @@ msgstr "" msgid "PROJECT" msgstr "" -#: lxc/remote.go:733 +#: lxc/remote.go:734 msgid "PROTOCOL" msgstr "" -#: lxc/image.go:1073 lxc/remote.go:735 +#: lxc/image.go:1073 lxc/remote.go:736 msgid "PUBLIC" msgstr "" @@ -4339,7 +4334,7 @@ msgstr "" msgid "Partitions:" msgstr "" -#: lxc/main.go:361 +#: lxc/main.go:363 #, c-format msgid "Password for %s: " msgstr "" @@ -4352,7 +4347,7 @@ msgstr "" msgid "Perform an incremental copy" msgstr "" -#: lxc/remote.go:182 +#: lxc/remote.go:183 msgid "Please provide an alternate server address (empty to abort):" msgstr "" @@ -4364,7 +4359,7 @@ msgstr "" msgid "Please provide cluster member name: " msgstr "" -#: lxc/remote.go:462 +#: lxc/remote.go:463 msgid "Please type 'y', 'n' or the fingerprint:" msgstr "" @@ -4386,10 +4381,10 @@ msgstr "" #: lxc/config.go:1278 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/network_load_balancer.go:695 lxc/network_peer.go:611 +#: lxc/network_zone.go:557 lxc/network_zone.go:1149 lxc/profile.go:539 +#: lxc/project.go:316 lxc/storage.go:311 lxc/storage_bucket.go:349 +#: lxc/storage_bucket.go:1098 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 "" @@ -4398,7 +4393,7 @@ msgstr "" msgid "Pretty rendering (short for --format=pretty)" msgstr "" -#: lxc/main.go:94 +#: lxc/main.go:95 msgid "Print help" msgstr "" @@ -4406,7 +4401,7 @@ msgstr "" msgid "Print the raw response" msgstr "" -#: lxc/main.go:93 +#: lxc/main.go:94 msgid "Print version number" msgstr "" @@ -4495,7 +4490,7 @@ msgstr "" msgid "Project %s renamed to %s" msgstr "" -#: lxc/remote.go:106 +#: lxc/remote.go:107 msgid "Project to use for the remote" msgstr "" @@ -4593,7 +4588,7 @@ msgid "" "pool \"default\"." msgstr "" -#: lxc/remote.go:105 +#: lxc/remote.go:106 msgid "Public image server" msgstr "" @@ -4641,7 +4636,7 @@ msgstr "" msgid "RESOURCE" msgstr "" -#: lxc/storage_bucket.go:828 +#: lxc/storage_bucket.go:833 msgid "ROLE" msgstr "" @@ -4684,45 +4679,45 @@ msgstr "" msgid "Refreshing the image: %s" msgstr "" -#: lxc/remote.go:785 +#: lxc/remote.go:786 #, c-format msgid "Remote %s already exists" msgstr "" -#: lxc/project.go:769 lxc/remote.go:776 lxc/remote.go:849 lxc/remote.go:905 -#: lxc/remote.go:945 +#: lxc/project.go:769 lxc/remote.go:777 lxc/remote.go:850 lxc/remote.go:906 +#: lxc/remote.go:946 #, c-format msgid "Remote %s doesn't exist" msgstr "" -#: lxc/remote.go:301 +#: lxc/remote.go:302 #, c-format msgid "Remote %s exists as <%s>" msgstr "" -#: lxc/remote.go:857 +#: lxc/remote.go:858 #, c-format msgid "Remote %s is global and cannot be removed" msgstr "" -#: lxc/remote.go:780 lxc/remote.go:853 lxc/remote.go:949 +#: lxc/remote.go:781 lxc/remote.go:854 lxc/remote.go:950 #, c-format msgid "Remote %s is static and cannot be modified" msgstr "" -#: lxc/remote.go:290 +#: lxc/remote.go:291 msgid "Remote address must not be empty" msgstr "" -#: lxc/remote.go:101 +#: lxc/remote.go:102 msgid "Remote admin password" msgstr "" -#: lxc/remote.go:295 +#: lxc/remote.go:296 msgid "Remote names may not contain colons" msgstr "" -#: lxc/remote.go:102 +#: lxc/remote.go:103 msgid "Remote trust token" msgstr "" @@ -4748,7 +4743,7 @@ msgstr "" msgid "Remove a member from the cluster" msgstr "" -#: lxc/network_zone.go:1285 +#: lxc/network_zone.go:1290 msgid "Remove a network zone record entry" msgstr "" @@ -4756,7 +4751,7 @@ msgstr "" msgid "Remove aliases" msgstr "" -#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1025 +#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1030 msgid "Remove all ports that match" msgstr "" @@ -4764,15 +4759,15 @@ msgstr "" msgid "Remove all rules that match" msgstr "" -#: lxc/network_load_balancer.go:862 +#: lxc/network_load_balancer.go:867 msgid "Remove backend from a load balancer" msgstr "" -#: lxc/network_load_balancer.go:861 +#: lxc/network_load_balancer.go:866 msgid "Remove backends from a load balancer" msgstr "" -#: lxc/network_zone.go:1286 +#: lxc/network_zone.go:1291 msgid "Remove entries from a network zone record" msgstr "" @@ -4796,7 +4791,7 @@ msgstr "" msgid "Remove ports from a forward" msgstr "" -#: lxc/network_load_balancer.go:1023 lxc/network_load_balancer.go:1024 +#: lxc/network_load_balancer.go:1028 lxc/network_load_balancer.go:1029 msgid "Remove ports from a load balancer" msgstr "" @@ -4804,7 +4799,7 @@ msgstr "" msgid "Remove profiles from instances" msgstr "" -#: lxc/remote.go:827 lxc/remote.go:828 +#: lxc/remote.go:828 lxc/remote.go:829 msgid "Remove remotes" msgstr "" @@ -4861,7 +4856,7 @@ msgstr "" msgid "Rename projects" msgstr "" -#: lxc/remote.go:754 lxc/remote.go:755 +#: lxc/remote.go:755 lxc/remote.go:756 msgid "Rename remotes" msgstr "" @@ -4939,7 +4934,7 @@ msgid "Restrict the certificate to one or more projects" msgstr "" #: lxc/console.go:44 -msgid "Retrieve the instance's console log" +msgid "Retrieve the container's console log" msgstr "" #: lxc/init.go:347 @@ -4955,7 +4950,7 @@ msgstr "" msgid "Revoke cluster member join token" msgstr "" -#: lxc/storage_bucket.go:851 +#: lxc/storage_bucket.go:856 msgid "Role (admin or read-only)" msgstr "" @@ -5006,7 +5001,7 @@ msgstr "" msgid "STATE" msgstr "" -#: lxc/remote.go:736 +#: lxc/remote.go:737 msgid "STATIC" msgstr "" @@ -5030,11 +5025,11 @@ msgstr "" msgid "STP" msgstr "" -#: lxc/storage_bucket.go:853 +#: lxc/storage_bucket.go:858 msgid "Secret key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:909 +#: lxc/storage_bucket.go:914 #, c-format msgid "Secret key: %s" msgstr "" @@ -5043,19 +5038,19 @@ msgstr "" msgid "Send a raw query to LXD" msgstr "" -#: lxc/remote.go:104 +#: lxc/remote.go:105 msgid "Server authentication type (tls or oidc)" msgstr "" -#: lxc/remote.go:460 +#: lxc/remote.go:461 msgid "Server certificate NACKed by user" msgstr "" -#: lxc/remote.go:599 +#: lxc/remote.go:600 msgid "Server doesn't trust us after authentication" msgstr "" -#: lxc/remote.go:103 +#: lxc/remote.go:104 msgid "Server protocol (lxd or simplestreams)" msgstr "" @@ -5154,11 +5149,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_load_balancer.go:450 +#: lxc/network_load_balancer.go:455 msgid "Set network load balancer keys" msgstr "" -#: lxc/network_load_balancer.go:451 +#: lxc/network_load_balancer.go:456 msgid "" "Set network load balancer keys\n" "\n" @@ -5180,11 +5175,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:353 +#: lxc/network_zone.go:358 msgid "Set network zone configuration keys" msgstr "" -#: lxc/network_zone.go:354 +#: lxc/network_zone.go:359 msgid "" "Set network zone configuration keys\n" "\n" @@ -5193,7 +5188,7 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:951 lxc/network_zone.go:952 +#: lxc/network_zone.go:956 lxc/network_zone.go:957 msgid "Set network zone record configuration keys" msgstr "" @@ -5223,11 +5218,11 @@ msgid "" " lxc project set [:] " msgstr "" -#: lxc/storage_bucket.go:529 +#: lxc/storage_bucket.go:534 msgid "Set storage bucket configuration keys" msgstr "" -#: lxc/storage_bucket.go:530 +#: lxc/storage_bucket.go:535 msgid "" "Set storage bucket configuration keys\n" "\n" @@ -5262,7 +5257,7 @@ msgid "" " lxc storage volume set [:] [/] " msgstr "" -#: lxc/remote.go:923 lxc/remote.go:924 +#: lxc/remote.go:924 lxc/remote.go:925 msgid "Set the URL for the remote" msgstr "" @@ -5290,7 +5285,7 @@ msgstr "" msgid "Set the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:458 +#: lxc/network_load_balancer.go:463 msgid "Set the key as a network load balancer property" msgstr "" @@ -5302,11 +5297,11 @@ msgstr "" msgid "Set the key as a network property" msgstr "" -#: lxc/network_zone.go:361 +#: lxc/network_zone.go:366 msgid "Set the key as a network zone property" msgstr "" -#: lxc/network_zone.go:957 +#: lxc/network_zone.go:962 msgid "Set the key as a network zone record property" msgstr "" @@ -5318,7 +5313,7 @@ msgstr "" msgid "Set the key as a project property" msgstr "" -#: lxc/storage_bucket.go:537 +#: lxc/storage_bucket.go:542 msgid "Set the key as a storage bucket property" msgstr "" @@ -5338,11 +5333,11 @@ msgstr "" msgid "Setup SSH SFTP listener on address:port instead of mounting" msgstr "" -#: lxc/main.go:97 +#: lxc/main.go:98 msgid "Show all debug messages" msgstr "" -#: lxc/main.go:98 +#: lxc/main.go:99 msgid "Show all information messages" msgstr "" @@ -5411,7 +5406,7 @@ msgstr "" msgid "Show instance or server information" msgstr "" -#: lxc/main.go:271 lxc/main.go:272 +#: lxc/main.go:272 lxc/main.go:273 msgid "Show less common commands" msgstr "" @@ -5443,15 +5438,15 @@ msgstr "" msgid "Show network peer configurations" msgstr "" -#: lxc/network_zone.go:155 lxc/network_zone.go:156 +#: lxc/network_zone.go:156 lxc/network_zone.go:157 msgid "Show network zone configurations" msgstr "" -#: lxc/network_zone.go:758 +#: lxc/network_zone.go:763 msgid "Show network zone record configuration" msgstr "" -#: lxc/network_zone.go:759 +#: lxc/network_zone.go:764 msgid "Show network zone record configurations" msgstr "" @@ -5463,11 +5458,11 @@ msgstr "" msgid "Show project options" msgstr "" -#: lxc/storage_bucket.go:623 lxc/storage_bucket.go:624 +#: lxc/storage_bucket.go:628 lxc/storage_bucket.go:629 msgid "Show storage bucket configurations" msgstr "" -#: lxc/storage_bucket.go:1123 lxc/storage_bucket.go:1124 +#: lxc/storage_bucket.go:1128 lxc/storage_bucket.go:1129 msgid "Show storage bucket key configurations" msgstr "" @@ -5493,7 +5488,7 @@ msgid "" "that are granted via identity provider group mappings. \n" msgstr "" -#: lxc/remote.go:630 lxc/remote.go:631 +#: lxc/remote.go:631 lxc/remote.go:632 msgid "Show the default remote" msgstr "" @@ -5617,22 +5612,22 @@ msgstr "" msgid "Stopping the instance failed: %s" msgstr "" -#: lxc/storage_bucket.go:161 +#: lxc/storage_bucket.go:166 #, c-format msgid "Storage bucket %s created" msgstr "" -#: lxc/storage_bucket.go:228 +#: lxc/storage_bucket.go:233 #, c-format msgid "Storage bucket %s deleted" msgstr "" -#: lxc/storage_bucket.go:907 +#: lxc/storage_bucket.go:912 #, c-format msgid "Storage bucket key %s added" msgstr "" -#: lxc/storage_bucket.go:973 +#: lxc/storage_bucket.go:978 #, c-format msgid "Storage bucket key %s removed" msgstr "" @@ -5705,7 +5700,7 @@ msgstr "" msgid "Switch the current project" msgstr "" -#: lxc/remote.go:883 lxc/remote.go:884 +#: lxc/remote.go:884 lxc/remote.go:885 msgid "Switch the default remote" msgstr "" @@ -5820,7 +5815,7 @@ msgstr "" msgid "The property %q does not exist on the instance snapshot %s/%s: %v" msgstr "" -#: lxc/network_load_balancer.go:424 +#: lxc/network_load_balancer.go:429 #, c-format msgid "The property %q does not exist on the load balancer %q: %v" msgstr "" @@ -5845,12 +5840,12 @@ msgstr "" msgid "The property %q does not exist on the network peer %q: %v" msgstr "" -#: lxc/network_zone.go:246 +#: lxc/network_zone.go:247 #, c-format msgid "The property %q does not exist on the network zone %q: %v" msgstr "" -#: lxc/network_zone.go:845 +#: lxc/network_zone.go:850 #, c-format msgid "The property %q does not exist on the network zone record %q: %v" msgstr "" @@ -5865,7 +5860,7 @@ msgstr "" msgid "The property %q does not exist on the project %q: %v" msgstr "" -#: lxc/storage_bucket.go:426 +#: lxc/storage_bucket.go:431 #, c-format msgid "The property %q does not exist on the storage bucket %q: %v" msgstr "" @@ -5919,7 +5914,7 @@ msgstr "" msgid "This LXD server is not available on the network" msgstr "" -#: lxc/main.go:293 +#: lxc/main.go:294 msgid "" "This client hasn't been configured to use a remote LXD server yet.\n" "As your platform can't run native Linux instances, you must connect to a " @@ -5951,11 +5946,11 @@ msgstr "" msgid "To create a new network, use: lxc network create" msgstr "" -#: lxc/console.go:210 +#: lxc/console.go:215 msgid "To detach from the console, press: +a q" msgstr "" -#: lxc/main.go:403 +#: lxc/main.go:406 msgid "" "To start your first container, try: lxc launch ubuntu:24.04\n" "Or for a virtual machine: lxc launch ubuntu:24.04 --vm" @@ -6053,7 +6048,7 @@ msgstr "" msgid "UPLOAD DATE" msgstr "" -#: lxc/cluster.go:184 lxc/remote.go:732 +#: lxc/cluster.go:184 lxc/remote.go:733 msgid "URL" msgstr "" @@ -6062,7 +6057,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:679 lxc/project.go:506 +#: lxc/network_zone.go:141 lxc/profile.go:679 lxc/project.go:506 #: lxc/storage.go:647 lxc/storage_volume.go:1564 msgid "USED BY" msgstr "" @@ -6081,7 +6076,7 @@ msgstr "" msgid "Unable to create a temporary file: %v" msgstr "" -#: lxc/remote.go:213 lxc/remote.go:247 +#: lxc/remote.go:214 lxc/remote.go:248 msgid "Unavailable remote server" msgstr "" @@ -6101,7 +6096,7 @@ msgstr "" msgid "Unknown column shorthand char '%c' in '%s'" msgstr "" -#: lxc/console.go:159 +#: lxc/console.go:164 #, c-format msgid "Unknown console type %q" msgstr "" @@ -6161,11 +6156,11 @@ msgstr "" msgid "Unset network forward keys" msgstr "" -#: lxc/network_load_balancer.go:548 +#: lxc/network_load_balancer.go:553 msgid "Unset network load balancer configuration keys" msgstr "" -#: lxc/network_load_balancer.go:549 +#: lxc/network_load_balancer.go:554 msgid "Unset network load balancer keys" msgstr "" @@ -6177,11 +6172,11 @@ msgstr "" msgid "Unset network peer keys" msgstr "" -#: lxc/network_zone.go:433 lxc/network_zone.go:434 +#: lxc/network_zone.go:438 lxc/network_zone.go:439 msgid "Unset network zone configuration keys" msgstr "" -#: lxc/network_zone.go:1027 lxc/network_zone.go:1028 +#: lxc/network_zone.go:1032 lxc/network_zone.go:1033 msgid "Unset network zone record configuration keys" msgstr "" @@ -6193,7 +6188,7 @@ msgstr "" msgid "Unset project configuration keys" msgstr "" -#: lxc/storage_bucket.go:692 lxc/storage_bucket.go:693 +#: lxc/storage_bucket.go:697 lxc/storage_bucket.go:698 msgid "Unset storage bucket configuration keys" msgstr "" @@ -6217,7 +6212,7 @@ msgstr "" msgid "Unset the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:552 +#: lxc/network_load_balancer.go:557 msgid "Unset the key as a network load balancer property" msgstr "" @@ -6229,11 +6224,11 @@ msgstr "" msgid "Unset the key as a network property" msgstr "" -#: lxc/network_zone.go:437 +#: lxc/network_zone.go:442 msgid "Unset the key as a network zone property" msgstr "" -#: lxc/network_zone.go:1031 +#: lxc/network_zone.go:1036 msgid "Unset the key as a network zone record property" msgstr "" @@ -6245,7 +6240,7 @@ msgstr "" msgid "Unset the key as a project property" msgstr "" -#: lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:701 msgid "Unset the key as a storage bucket property" msgstr "" @@ -6307,7 +6302,7 @@ msgid "" "Use storage driver optimized format (can only be restored on a similar pool)" msgstr "" -#: lxc/main.go:100 +#: lxc/main.go:101 msgid "Use with help or --help to view sub-commands" msgstr "" @@ -6404,7 +6399,7 @@ msgstr "" #: lxc/network.go:959 lxc/operation.go:156 lxc/project.go:458 #: lxc/project.go:463 lxc/project.go:468 lxc/project.go:473 lxc/project.go:478 -#: lxc/project.go:483 lxc/remote.go:693 lxc/remote.go:698 lxc/remote.go:703 +#: lxc/project.go:483 lxc/remote.go:694 lxc/remote.go:699 lxc/remote.go:704 msgid "YES" msgstr "" @@ -6439,7 +6434,7 @@ 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/network.go:909 lxc/network_acl.go:91 lxc/network_zone.go:83 #: 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 "[:]" @@ -6502,19 +6497,19 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:154 lxc/network_zone.go:463 lxc/network_zone.go:581 +#: lxc/network_zone.go:155 lxc/network_zone.go:468 lxc/network_zone.go:586 msgid "[:]" msgstr "" -#: lxc/network_zone.go:209 lxc/network_zone.go:432 +#: lxc/network_zone.go:210 lxc/network_zone.go:437 msgid "[:] " msgstr "" -#: lxc/network_zone.go:352 +#: lxc/network_zone.go:357 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:269 +#: lxc/network_zone.go:270 msgid "[:] [key=value...]" msgstr "" @@ -6760,30 +6755,30 @@ msgstr "" #: lxc/network_forward.go:169 lxc/network_forward.go:574 #: lxc/network_forward.go:715 lxc/network_load_balancer.go:171 -#: lxc/network_load_balancer.go:577 lxc/network_load_balancer.go:719 +#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:724 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:860 +#: lxc/network_load_balancer.go:865 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:796 +#: lxc/network_load_balancer.go:801 msgid "" "[:] " "[]" msgstr "" #: lxc/network_forward.go:377 lxc/network_forward.go:544 -#: lxc/network_load_balancer.go:381 lxc/network_load_balancer.go:547 +#: lxc/network_load_balancer.go:386 lxc/network_load_balancer.go:552 msgid "[:] " msgstr "" -#: lxc/network_forward.go:446 lxc/network_load_balancer.go:449 +#: lxc/network_forward.go:446 lxc/network_load_balancer.go:454 msgid "[:] =..." msgstr "" -#: lxc/network_load_balancer.go:961 +#: lxc/network_load_balancer.go:966 msgid "" "[:] " "[,...]" @@ -6795,7 +6790,7 @@ msgid "" " []" msgstr "" -#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1022 +#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1027 msgid "[:] [] []" msgstr "" @@ -6846,7 +6841,7 @@ msgid "[:]" msgstr "" #: lxc/storage.go:167 lxc/storage.go:218 lxc/storage.go:412 lxc/storage.go:759 -#: lxc/storage_bucket.go:449 +#: lxc/storage_bucket.go:454 msgid "[:]" msgstr "" @@ -6854,18 +6849,18 @@ msgstr "" msgid "[:] []" msgstr "" -#: lxc/storage_bucket.go:180 lxc/storage_bucket.go:242 -#: lxc/storage_bucket.go:622 lxc/storage_bucket.go:764 +#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:247 +#: lxc/storage_bucket.go:627 lxc/storage_bucket.go:769 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:375 lxc/storage_bucket.go:691 -#: lxc/storage_bucket.go:845 lxc/storage_bucket.go:923 -#: lxc/storage_bucket.go:987 lxc/storage_bucket.go:1122 +#: lxc/storage_bucket.go:380 lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:850 lxc/storage_bucket.go:928 +#: lxc/storage_bucket.go:992 lxc/storage_bucket.go:1127 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:528 +#: lxc/storage_bucket.go:533 msgid "[:] =..." msgstr "" @@ -7009,27 +7004,27 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:686 +#: lxc/network_zone.go:691 msgid "[:]" msgstr "" -#: lxc/network_zone.go:757 lxc/network_zone.go:1056 lxc/network_zone.go:1173 +#: lxc/network_zone.go:762 lxc/network_zone.go:1061 lxc/network_zone.go:1178 msgid "[:] " msgstr "" -#: lxc/network_zone.go:809 lxc/network_zone.go:1026 +#: lxc/network_zone.go:814 lxc/network_zone.go:1031 msgid "[:] " msgstr "" -#: lxc/network_zone.go:950 +#: lxc/network_zone.go:955 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:1238 lxc/network_zone.go:1284 +#: lxc/network_zone.go:1243 lxc/network_zone.go:1289 msgid "[:] " msgstr "" -#: lxc/network_zone.go:868 +#: lxc/network_zone.go:873 msgid "[:] [key=value...]" msgstr "" @@ -7053,7 +7048,7 @@ msgstr "" msgid "[:][] [...]" msgstr "" -#: lxc/remote.go:88 +#: lxc/remote.go:89 msgid "[] " msgstr "" @@ -7061,7 +7056,7 @@ msgstr "" msgid "[[:]]" msgstr "" -#: lxc/project.go:488 lxc/remote.go:722 +#: lxc/project.go:488 lxc/remote.go:723 msgid "current" msgstr "" @@ -7324,6 +7319,23 @@ msgid "" " Create a new OVN network called bar using baz as its uplink network" msgstr "" +#: lxc/network_load_balancer.go:239 +msgid "" +"lxc network load-balancer create n1 127.0.0.1\n" +"\n" +"lxc network load-balancer create n1 127.0.0.1 < config.yaml\n" +" Create network load-balancer for network n1 with configuration from " +"config.yaml" +msgstr "" + +#: lxc/network_zone.go:273 +msgid "" +"lxc network zone create z1\n" +"\n" +"lxc network zone create z1 < config.yaml\n" +" Create network zone z1 with configuration from config.yaml" +msgstr "" + #: lxc/operation.go:195 msgid "" "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n" @@ -7394,26 +7406,36 @@ msgid "" " Restore the snapshot." msgstr "" -#: lxc/storage_bucket.go:245 +#: lxc/storage_bucket.go:84 +msgid "" +"lxc storage bucket create p1 b01\n" +"\tCreate a new storage bucket name b01 in storage pool p1\n" +"\n" +"lxc storage bucket create p1 b01 < config.yaml\n" +"\tCreate a new storage bucket name b01 in storage pool p1 using the content " +"of config.yaml" +msgstr "" + +#: lxc/storage_bucket.go:250 msgid "" "lxc storage bucket edit [:] < bucket.yaml\n" " Update a storage bucket using the content of bucket.yaml." msgstr "" -#: lxc/storage_bucket.go:990 +#: lxc/storage_bucket.go:995 msgid "" "lxc storage bucket edit [:] < key.yaml\n" " Update a storage bucket key using the content of key.yaml." msgstr "" -#: lxc/storage_bucket.go:1125 +#: lxc/storage_bucket.go:1130 msgid "" "lxc storage bucket key show default data foo\n" " Will show the properties of a bucket key called \"foo\" for a bucket " "called \"data\" in the \"default\" pool." msgstr "" -#: lxc/storage_bucket.go:625 +#: lxc/storage_bucket.go:630 msgid "" "lxc storage bucket show default data\n" " Will show the properties of a bucket called \"data\" in the \"default\" " @@ -7432,7 +7454,7 @@ msgid "" "\t\tCreate a new custom volume using backup0.tar.gz as the source." msgstr "" -#: lxc/remote.go:459 +#: lxc/remote.go:460 msgid "n" msgstr "" @@ -7444,7 +7466,7 @@ msgstr "" msgid "no" msgstr "" -#: lxc/remote.go:452 +#: lxc/remote.go:453 msgid "ok (y/n/[fingerprint])?" msgstr "" @@ -7481,7 +7503,7 @@ msgstr "" msgid "used by" msgstr "" -#: lxc/remote.go:461 +#: lxc/remote.go:462 msgid "y" msgstr "" diff --git a/po/bg.po b/po/bg.po index 745fd21a9d19..2a782c82d001 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-08-20 09:31+0100\n" +"POT-Creation-Date: 2024-08-30 09:27+0100\n" "PO-Revision-Date: 2022-03-10 15:09+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Bulgarian " msgstr "" -#: lxc/remote.go:825 lxc/remote.go:882 +#: lxc/remote.go:826 lxc/remote.go:883 msgid "" msgstr "" -#: lxc/remote.go:922 +#: lxc/remote.go:923 msgid " " msgstr "" -#: lxc/remote.go:752 +#: lxc/remote.go:753 msgid " " msgstr "" @@ -556,7 +556,7 @@ msgstr "" msgid "ARCHITECTURE" msgstr "" -#: lxc/remote.go:734 +#: lxc/remote.go:735 msgid "AUTH TYPE" msgstr "" @@ -564,15 +564,15 @@ msgstr "" msgid "AUTHENTICATION METHOD" msgstr "" -#: lxc/remote.go:100 +#: lxc/remote.go:101 msgid "Accept certificate" msgstr "" -#: lxc/storage_bucket.go:852 +#: lxc/storage_bucket.go:857 msgid "Access key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:908 +#: lxc/storage_bucket.go:913 #, c-format msgid "Access key: %s" msgstr "" @@ -606,19 +606,19 @@ msgstr "" msgid "Add a group to an identity provider group" msgstr "" -#: lxc/network_zone.go:1239 +#: lxc/network_zone.go:1244 msgid "Add a network zone record entry" msgstr "" -#: lxc/network_load_balancer.go:798 +#: lxc/network_load_balancer.go:803 msgid "Add backend to a load balancer" msgstr "" -#: lxc/network_load_balancer.go:797 +#: lxc/network_load_balancer.go:802 msgid "Add backends to a load balancer" msgstr "" -#: lxc/network_zone.go:1240 +#: lxc/network_zone.go:1245 msgid "Add entries to a network zone record" msgstr "" @@ -634,11 +634,11 @@ msgstr "" msgid "Add new aliases" msgstr "" -#: lxc/remote.go:89 +#: lxc/remote.go:90 msgid "Add new remote servers" msgstr "" -#: lxc/remote.go:90 +#: lxc/remote.go:91 msgid "" "Add new remote servers\n" "\n" @@ -679,7 +679,7 @@ msgstr "" msgid "Add ports to a forward" msgstr "" -#: lxc/network_load_balancer.go:962 lxc/network_load_balancer.go:963 +#: lxc/network_load_balancer.go:967 lxc/network_load_balancer.go:968 msgid "Add ports to a load balancer" msgstr "" @@ -700,17 +700,17 @@ msgstr "" msgid "Address: %s" msgstr "" -#: lxc/storage_bucket.go:164 +#: lxc/storage_bucket.go:169 #, c-format msgid "Admin access key: %s" msgstr "" -#: lxc/remote.go:566 +#: lxc/remote.go:567 #, c-format msgid "Admin password (or token) for %s:" msgstr "" -#: lxc/storage_bucket.go:165 +#: lxc/storage_bucket.go:170 #, c-format msgid "Admin secret key: %s" msgstr "" @@ -742,7 +742,7 @@ msgstr "" msgid "All projects" msgstr "" -#: lxc/remote.go:181 +#: lxc/remote.go:182 msgid "All server addresses are unavailable" msgstr "" @@ -765,7 +765,7 @@ msgstr "" msgid "Are you sure you want to %s cluster member %q? (yes/no) [default=no]: " msgstr "" -#: lxc/console.go:383 +#: lxc/console.go:388 msgid "As neither could be found, the raw SPICE socket can be found at:" msgstr "" @@ -813,7 +813,7 @@ msgid "" "as well as retrieve past log entries from it." msgstr "" -#: lxc/remote.go:548 +#: lxc/remote.go:549 #, c-format msgid "Authentication type '%s' not supported by server" msgstr "" @@ -832,11 +832,11 @@ msgstr "" msgid "Auto update: %s" msgstr "" -#: lxc/network_forward.go:240 lxc/network_load_balancer.go:242 +#: lxc/network_forward.go:240 lxc/network_load_balancer.go:247 msgid "Auto-allocate an IPv4 or IPv6 listen address. One of 'ipv4', 'ipv6'." msgstr "" -#: lxc/remote.go:136 +#: lxc/remote.go:137 msgid "Available projects:" msgstr "" @@ -868,8 +868,8 @@ msgid "Bad device override syntax, expecting ,=: %s" msgstr "" #: lxc/network.go:333 lxc/network_acl.go:382 lxc/network_forward.go:293 -#: lxc/network_load_balancer.go:296 lxc/network_peer.go:280 -#: lxc/network_zone.go:324 lxc/network_zone.go:922 lxc/storage_bucket.go:136 +#: lxc/network_load_balancer.go:301 lxc/network_peer.go:280 +#: lxc/network_zone.go:329 lxc/network_zone.go:927 lxc/storage_bucket.go:141 #, c-format msgid "Bad key/value pair: %s" msgstr "" @@ -991,7 +991,7 @@ msgstr "" msgid "Can't read from stdin: %w" msgstr "" -#: lxc/remote.go:861 +#: lxc/remote.go:862 msgid "Can't remove the default remote" msgstr "" @@ -1057,15 +1057,14 @@ msgstr "" msgid "Certificate add token for %s deleted" msgstr "" -#: lxc/remote.go:218 -#, c-format -msgid "" -"Certificate fingerprint mismatch between certificate token and server %q" +#: lxc/remote.go:452 +msgid "Certificate fingerprint" msgstr "" -#: lxc/remote.go:451 +#: lxc/remote.go:219 #, c-format -msgid "Certificate fingerprint: %s" +msgid "" +"Certificate fingerprint mismatch between certificate token and server %q" msgstr "" #: lxc/network.go:893 @@ -1077,7 +1076,7 @@ msgstr "" msgid "Client %s certificate add token:" msgstr "" -#: lxc/remote.go:603 +#: lxc/remote.go:604 msgid "Client certificate now trusted by server:" msgstr "" @@ -1139,18 +1138,18 @@ msgstr "" #: lxc/network_forward.go:456 lxc/network_forward.go:579 #: lxc/network_forward.go:721 lxc/network_forward.go:798 #: lxc/network_forward.go:864 lxc/network_load_balancer.go:176 -#: lxc/network_load_balancer.go:241 lxc/network_load_balancer.go:459 -#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:725 -#: lxc/network_load_balancer.go:801 lxc/network_load_balancer.go:865 -#: lxc/network_load_balancer.go:966 lxc/network_load_balancer.go:1028 +#: lxc/network_load_balancer.go:246 lxc/network_load_balancer.go:464 +#: lxc/network_load_balancer.go:587 lxc/network_load_balancer.go:730 +#: lxc/network_load_balancer.go:806 lxc/network_load_balancer.go:870 +#: lxc/network_load_balancer.go:971 lxc/network_load_balancer.go:1033 #: lxc/storage.go:99 lxc/storage.go:347 lxc/storage.go:418 lxc/storage.go:671 -#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:85 -#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:248 -#: lxc/storage_bucket.go:379 lxc/storage_bucket.go:536 -#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:695 -#: lxc/storage_bucket.go:770 lxc/storage_bucket.go:850 -#: lxc/storage_bucket.go:928 lxc/storage_bucket.go:993 -#: lxc/storage_bucket.go:1129 lxc/storage_volume.go:358 +#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:90 +#: lxc/storage_bucket.go:190 lxc/storage_bucket.go:253 +#: lxc/storage_bucket.go:384 lxc/storage_bucket.go:541 +#: lxc/storage_bucket.go:634 lxc/storage_bucket.go:700 +#: lxc/storage_bucket.go:775 lxc/storage_bucket.go:855 +#: lxc/storage_bucket.go:933 lxc/storage_bucket.go:998 +#: lxc/storage_bucket.go:1134 lxc/storage_volume.go:358 #: lxc/storage_volume.go:560 lxc/storage_volume.go:639 #: lxc/storage_volume.go:883 lxc/storage_volume.go:1097 #: lxc/storage_volume.go:1210 lxc/storage_volume.go:1678 @@ -1178,11 +1177,11 @@ msgstr "" msgid "Columns" msgstr "" -#: lxc/main.go:81 +#: lxc/main.go:82 msgid "Command line client for LXD" msgstr "" -#: lxc/main.go:82 +#: lxc/main.go:83 msgid "" "Command line client for LXD\n" "\n" @@ -1214,19 +1213,15 @@ msgstr "" #: lxc/config.go:347 lxc/config.go:1277 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/network_load_balancer.go:694 lxc/network_peer.go:610 +#: lxc/network_zone.go:556 lxc/network_zone.go:1148 lxc/profile.go:538 +#: lxc/project.go:315 lxc/storage.go:310 lxc/storage_bucket.go:348 +#: lxc/storage_bucket.go:1097 lxc/storage_volume.go:1016 #: lxc/storage_volume.go:1048 #, c-format msgid "Config parsing error: %s" msgstr "" -#: lxc/console.go:140 -msgid "Console log:" -msgstr "" - #: lxc/storage_volume.go:561 msgid "Content type, block or filesystem" msgstr "" @@ -1329,12 +1324,12 @@ msgstr "" msgid "Cores:" msgstr "" -#: lxc/remote.go:486 +#: lxc/remote.go:487 #, c-format msgid "Could not close server cert file %q: %w" msgstr "" -#: lxc/remote.go:224 lxc/remote.go:470 +#: lxc/remote.go:225 lxc/remote.go:471 msgid "Could not create server cert dir" msgstr "" @@ -1373,12 +1368,12 @@ msgstr "" msgid "Could not write new remote certificate for remote '%s' with error: %v" msgstr "" -#: lxc/remote.go:481 +#: lxc/remote.go:482 #, c-format msgid "Could not write server cert file %q: %w" msgstr "" -#: lxc/network_zone.go:1327 +#: lxc/network_zone.go:1332 msgid "Couldn't find a matching entry" msgstr "" @@ -1430,7 +1425,7 @@ msgstr "" msgid "Create instances from images" msgstr "" -#: lxc/storage_bucket.go:846 lxc/storage_bucket.go:847 +#: lxc/storage_bucket.go:851 lxc/storage_bucket.go:852 msgid "Create key for a storage bucket" msgstr "" @@ -1462,11 +1457,11 @@ msgstr "" msgid "Create new network peering" msgstr "" -#: lxc/network_zone.go:869 lxc/network_zone.go:870 +#: lxc/network_zone.go:874 lxc/network_zone.go:875 msgid "Create new network zone record" msgstr "" -#: lxc/network_zone.go:270 lxc/network_zone.go:271 +#: lxc/network_zone.go:271 lxc/network_zone.go:272 msgid "Create new network zones" msgstr "" @@ -1517,9 +1512,9 @@ msgstr "" #: 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/network_zone.go:140 lxc/network_zone.go:747 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_bucket.go:512 lxc/storage_bucket.go:832 #: lxc/storage_volume.go:1562 msgid "DESCRIPTION" msgstr "" @@ -1584,7 +1579,7 @@ msgstr "" msgid "Delete instances and snapshots" msgstr "" -#: lxc/storage_bucket.go:924 lxc/storage_bucket.go:925 +#: lxc/storage_bucket.go:929 lxc/storage_bucket.go:930 msgid "Delete key from a storage bucket" msgstr "" @@ -1596,7 +1591,7 @@ msgstr "" msgid "Delete network forwards" msgstr "" -#: lxc/network_load_balancer.go:721 lxc/network_load_balancer.go:722 +#: lxc/network_load_balancer.go:726 lxc/network_load_balancer.go:727 msgid "Delete network load balancers" msgstr "" @@ -1604,11 +1599,11 @@ msgstr "" msgid "Delete network peerings" msgstr "" -#: lxc/network_zone.go:1175 lxc/network_zone.go:1176 +#: lxc/network_zone.go:1180 lxc/network_zone.go:1181 msgid "Delete network zone record" msgstr "" -#: lxc/network_zone.go:583 lxc/network_zone.go:584 +#: lxc/network_zone.go:588 lxc/network_zone.go:589 msgid "Delete network zones" msgstr "" @@ -1624,7 +1619,7 @@ msgstr "" msgid "Delete projects" msgstr "" -#: lxc/storage_bucket.go:182 lxc/storage_bucket.go:183 +#: lxc/storage_bucket.go:187 lxc/storage_bucket.go:188 msgid "Delete storage buckets" msgstr "" @@ -1680,7 +1675,7 @@ msgstr "" #: 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/info.go:32 lxc/init.go:43 lxc/launch.go:24 lxc/list.go:48 lxc/main.go:83 #: 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 @@ -1699,22 +1694,22 @@ msgstr "" #: 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_load_balancer.go:238 lxc/network_load_balancer.go:388 +#: lxc/network_load_balancer.go:456 lxc/network_load_balancer.go:554 +#: lxc/network_load_balancer.go:584 lxc/network_load_balancer.go:727 +#: lxc/network_load_balancer.go:788 lxc/network_load_balancer.go:803 +#: lxc/network_load_balancer.go:867 lxc/network_load_balancer.go:953 +#: lxc/network_load_balancer.go:968 lxc/network_load_balancer.go:1029 #: 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/network_zone.go:29 lxc/network_zone.go:86 lxc/network_zone.go:157 +#: lxc/network_zone.go:212 lxc/network_zone.go:272 lxc/network_zone.go:359 +#: lxc/network_zone.go:439 lxc/network_zone.go:470 lxc/network_zone.go:589 +#: lxc/network_zone.go:637 lxc/network_zone.go:694 lxc/network_zone.go:764 +#: lxc/network_zone.go:816 lxc/network_zone.go:875 lxc/network_zone.go:957 +#: lxc/network_zone.go:1033 lxc/network_zone.go:1063 lxc/network_zone.go:1181 +#: lxc/network_zone.go:1230 lxc/network_zone.go:1245 lxc/network_zone.go:1291 #: 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 @@ -1723,19 +1718,19 @@ msgstr "" #: 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:631 lxc/remote.go:669 lxc/remote.go:755 lxc/remote.go:828 -#: lxc/remote.go:884 lxc/remote.go:924 lxc/rename.go:21 lxc/restore.go:24 +#: lxc/query.go:34 lxc/rebuild.go:27 lxc/remote.go:35 lxc/remote.go:91 +#: lxc/remote.go:632 lxc/remote.go:670 lxc/remote.go:756 lxc/remote.go:829 +#: lxc/remote.go:885 lxc/remote.go:925 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_bucket.go:29 lxc/storage_bucket.go:83 lxc/storage_bucket.go:188 +#: lxc/storage_bucket.go:249 lxc/storage_bucket.go:382 +#: lxc/storage_bucket.go:458 lxc/storage_bucket.go:535 +#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:698 +#: lxc/storage_bucket.go:732 lxc/storage_bucket.go:773 +#: lxc/storage_bucket.go:852 lxc/storage_bucket.go:930 +#: lxc/storage_bucket.go:994 lxc/storage_bucket.go:1129 #: 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 @@ -1871,7 +1866,7 @@ msgstr "" msgid "Don't require user confirmation for using --force" msgstr "" -#: lxc/main.go:99 +#: lxc/main.go:100 msgid "Don't show progress information" msgstr "" @@ -1884,7 +1879,7 @@ msgstr "" msgid "Driver: %v (%v)" msgstr "" -#: lxc/network_zone.go:743 +#: lxc/network_zone.go:748 msgid "ENTRIES" msgstr "" @@ -1962,7 +1957,7 @@ msgstr "" msgid "Edit network forward configurations as YAML" msgstr "" -#: lxc/network_load_balancer.go:578 lxc/network_load_balancer.go:579 +#: lxc/network_load_balancer.go:583 lxc/network_load_balancer.go:584 msgid "Edit network load balancer configurations as YAML" msgstr "" @@ -1970,11 +1965,11 @@ msgstr "" msgid "Edit network peer configurations as YAML" msgstr "" -#: lxc/network_zone.go:464 lxc/network_zone.go:465 +#: lxc/network_zone.go:469 lxc/network_zone.go:470 msgid "Edit network zone configurations as YAML" msgstr "" -#: lxc/network_zone.go:1057 lxc/network_zone.go:1058 +#: lxc/network_zone.go:1062 lxc/network_zone.go:1063 msgid "Edit network zone record configurations as YAML" msgstr "" @@ -1986,11 +1981,11 @@ msgstr "" msgid "Edit project configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:243 lxc/storage_bucket.go:244 +#: lxc/storage_bucket.go:248 lxc/storage_bucket.go:249 msgid "Edit storage bucket configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:988 lxc/storage_bucket.go:989 +#: lxc/storage_bucket.go:993 lxc/storage_bucket.go:994 msgid "Edit storage bucket key as YAML" msgstr "" @@ -2031,7 +2026,7 @@ msgid "" " for the address if not yet set." msgstr "" -#: lxc/network_zone.go:1242 +#: lxc/network_zone.go:1247 msgid "Entry TTL" msgstr "" @@ -2060,9 +2055,9 @@ msgstr "" #: lxc/cluster.go:414 lxc/config.go:624 lxc/config.go:656 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/network_load_balancer.go:527 lxc/network_peer.go:463 +#: lxc/network_zone.go:414 lxc/network_zone.go:1008 lxc/profile.go:876 +#: lxc/project.go:634 lxc/storage.go:727 lxc/storage_bucket.go:602 #: lxc/storage_volume.go:1947 lxc/storage_volume.go:1985 #, c-format msgid "Error setting properties: %v" @@ -2074,10 +2069,10 @@ 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/network_forward.go:513 lxc/network_load_balancer.go:521 +#: lxc/network_peer.go:457 lxc/network_zone.go:408 lxc/network_zone.go:1002 #: lxc/profile.go:870 lxc/project.go:628 lxc/storage.go:721 -#: lxc/storage_bucket.go:591 lxc/storage_volume.go:1941 +#: lxc/storage_bucket.go:596 lxc/storage_volume.go:1941 #: lxc/storage_volume.go:1979 #, c-format msgid "Error unsetting property: %v" @@ -2263,7 +2258,7 @@ msgstr "" msgid "Failed parsing SSH host key: %w" msgstr "" -#: lxc/console.go:361 +#: lxc/console.go:366 #, c-format msgid "Failed starting command: %w" msgstr "" @@ -2278,11 +2273,11 @@ msgstr "" msgid "Failed to accept incoming connection: %w" msgstr "" -#: lxc/remote.go:190 +#: lxc/remote.go:191 msgid "Failed to add remote" msgstr "" -#: lxc/remote.go:241 +#: lxc/remote.go:242 #, c-format msgid "Failed to close server cert file %q: %w" msgstr "" @@ -2292,7 +2287,7 @@ msgstr "" msgid "Failed to connect to cluster member: %w" msgstr "" -#: lxc/remote.go:231 +#: lxc/remote.go:232 #, c-format msgid "Failed to create %q: %w" msgstr "" @@ -2302,12 +2297,12 @@ msgstr "" msgid "Failed to create alias %s: %w" msgstr "" -#: lxc/remote.go:256 +#: lxc/remote.go:257 #, c-format msgid "Failed to create certificate: %w" msgstr "" -#: lxc/remote.go:263 +#: lxc/remote.go:264 #, c-format msgid "Failed to find project: %w" msgstr "" @@ -2332,7 +2327,7 @@ msgstr "" msgid "Failed to walk path for %s: %s" msgstr "" -#: lxc/remote.go:236 +#: lxc/remote.go:237 #, c-format msgid "Failed to write server cert file %q: %w" msgstr "" @@ -2341,7 +2336,7 @@ msgstr "" msgid "Fast mode (same as --columns=nsacPt)" msgstr "" -#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:115 +#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:116 #: lxc/operation.go:136 msgid "Filtering isn't supported yet" msgstr "" @@ -2379,7 +2374,7 @@ msgstr "" msgid "Force the removal of running instances" msgstr "" -#: lxc/main.go:95 +#: lxc/main.go:96 msgid "Force using the local unix socket" msgstr "" @@ -2413,10 +2408,10 @@ msgstr "" #: 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/network_peer.go:84 lxc/network_zone.go:89 lxc/network_zone.go:697 #: lxc/operation.go:108 lxc/profile.go:637 lxc/project.go:412 -#: lxc/project.go:804 lxc/remote.go:673 lxc/storage.go:588 -#: lxc/storage_bucket.go:454 lxc/storage_bucket.go:769 +#: lxc/project.go:804 lxc/remote.go:674 lxc/storage.go:588 +#: lxc/storage_bucket.go:459 lxc/storage_bucket.go:774 #: lxc/storage_volume.go:1446 lxc/warning.go:93 msgid "Format (csv|json|table|yaml|compact)" msgstr "" @@ -2453,7 +2448,7 @@ msgstr "" msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)" msgstr "" -#: lxc/remote.go:737 +#: lxc/remote.go:738 msgid "GLOBAL" msgstr "" @@ -2473,7 +2468,7 @@ msgstr "" msgid "Generate manpages for all commands" msgstr "" -#: lxc/remote.go:159 lxc/remote.go:397 +#: lxc/remote.go:160 lxc/remote.go:398 msgid "Generating a client certificate. This may take a minute..." msgstr "" @@ -2505,7 +2500,7 @@ msgstr "" msgid "Get the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:386 +#: lxc/network_load_balancer.go:391 msgid "Get the key as a network load balancer property" msgstr "" @@ -2517,11 +2512,11 @@ msgstr "" msgid "Get the key as a network property" msgstr "" -#: lxc/network_zone.go:214 +#: lxc/network_zone.go:215 msgid "Get the key as a network zone property" msgstr "" -#: lxc/network_zone.go:814 +#: lxc/network_zone.go:819 msgid "Get the key as a network zone record property" msgstr "" @@ -2533,7 +2528,7 @@ msgstr "" msgid "Get the key as a project property" msgstr "" -#: lxc/storage_bucket.go:380 +#: lxc/storage_bucket.go:385 msgid "Get the key as a storage bucket property" msgstr "" @@ -2573,7 +2568,7 @@ msgstr "" msgid "Get values for network forward configuration keys" msgstr "" -#: lxc/network_load_balancer.go:382 lxc/network_load_balancer.go:383 +#: lxc/network_load_balancer.go:387 lxc/network_load_balancer.go:388 msgid "Get values for network load balancer configuration keys" msgstr "" @@ -2581,11 +2576,11 @@ msgstr "" msgid "Get values for network peer configuration keys" msgstr "" -#: lxc/network_zone.go:210 lxc/network_zone.go:211 +#: lxc/network_zone.go:211 lxc/network_zone.go:212 msgid "Get values for network zone configuration keys" msgstr "" -#: lxc/network_zone.go:810 lxc/network_zone.go:811 +#: lxc/network_zone.go:815 lxc/network_zone.go:816 msgid "Get values for network zone record configuration keys" msgstr "" @@ -2597,7 +2592,7 @@ msgstr "" msgid "Get values for project configuration keys" msgstr "" -#: lxc/storage_bucket.go:376 lxc/storage_bucket.go:377 +#: lxc/storage_bucket.go:381 lxc/storage_bucket.go:382 msgid "Get values for storage bucket configuration keys" msgstr "" @@ -2737,7 +2732,7 @@ msgstr "" msgid "If the snapshot name already exists, delete and create a new one" msgstr "" -#: lxc/main.go:398 +#: lxc/main.go:400 msgid "" "If this is your first time running LXD on this machine, you should also run: " "lxd init" @@ -2894,7 +2889,7 @@ msgstr "" msgid "Instance type" msgstr "" -#: lxc/remote.go:349 +#: lxc/remote.go:350 #, c-format msgid "Invalid URL scheme \"%s\" in \"%s\"" msgstr "" @@ -2966,7 +2961,7 @@ msgstr "" msgid "Invalid new snapshot name, parent volume must be the same as source" msgstr "" -#: lxc/main.go:498 +#: lxc/main.go:502 msgid "Invalid number of arguments" msgstr "" @@ -2975,7 +2970,7 @@ msgstr "" msgid "Invalid path %s" msgstr "" -#: lxc/remote.go:338 +#: lxc/remote.go:339 #, c-format msgid "Invalid protocol: %s" msgstr "" @@ -3023,7 +3018,7 @@ msgstr "" #: lxc/list.go:597 lxc/network.go:1059 lxc/network_forward.go:155 #: lxc/network_load_balancer.go:157 lxc/operation.go:177 -#: lxc/storage_bucket.go:511 lxc/storage_volume.go:1569 lxc/warning.go:220 +#: lxc/storage_bucket.go:516 lxc/storage_volume.go:1569 lxc/warning.go:220 msgid "LOCATION" msgstr "" @@ -3031,7 +3026,7 @@ msgstr "" msgid "LXD - Command line client" msgstr "" -#: lxc/console.go:382 +#: lxc/console.go:387 msgid "LXD automatically uses either spicy or remote-viewer when present." msgstr "" @@ -3121,15 +3116,15 @@ msgstr "" msgid "List available network peers" msgstr "" -#: lxc/network_zone.go:85 +#: lxc/network_zone.go:86 msgid "List available network zone" msgstr "" -#: lxc/network_zone.go:688 lxc/network_zone.go:689 +#: lxc/network_zone.go:693 lxc/network_zone.go:694 msgid "List available network zone records" msgstr "" -#: lxc/network_zone.go:84 +#: lxc/network_zone.go:85 msgid "List available network zoneS" msgstr "" @@ -3318,11 +3313,11 @@ msgstr "" msgid "List projects" msgstr "" -#: lxc/storage_bucket.go:766 lxc/storage_bucket.go:768 +#: lxc/storage_bucket.go:771 lxc/storage_bucket.go:773 msgid "List storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:451 lxc/storage_bucket.go:453 +#: lxc/storage_bucket.go:456 lxc/storage_bucket.go:458 msgid "List storage buckets" msgstr "" @@ -3350,7 +3345,7 @@ msgid "" " U - Current disk usage" msgstr "" -#: lxc/remote.go:668 lxc/remote.go:669 +#: lxc/remote.go:669 lxc/remote.go:670 msgid "List the available remotes" msgstr "" @@ -3577,11 +3572,11 @@ msgstr "" msgid "Manage network forwards" msgstr "" -#: lxc/network_load_balancer.go:782 lxc/network_load_balancer.go:783 +#: lxc/network_load_balancer.go:787 lxc/network_load_balancer.go:788 msgid "Manage network load balancer backends" msgstr "" -#: lxc/network_load_balancer.go:947 lxc/network_load_balancer.go:948 +#: lxc/network_load_balancer.go:952 lxc/network_load_balancer.go:953 msgid "Manage network load balancer ports" msgstr "" @@ -3593,15 +3588,15 @@ msgstr "" msgid "Manage network peerings" msgstr "" -#: lxc/network_zone.go:1224 lxc/network_zone.go:1225 +#: lxc/network_zone.go:1229 lxc/network_zone.go:1230 msgid "Manage network zone record entries" msgstr "" -#: lxc/network_zone.go:631 lxc/network_zone.go:632 +#: lxc/network_zone.go:636 lxc/network_zone.go:637 msgid "Manage network zone records" msgstr "" -#: lxc/network_zone.go:27 lxc/network_zone.go:28 +#: lxc/network_zone.go:28 lxc/network_zone.go:29 msgid "Manage network zones" msgstr "" @@ -3617,11 +3612,11 @@ msgstr "" msgid "Manage projects" msgstr "" -#: lxc/storage_bucket.go:726 +#: lxc/storage_bucket.go:731 msgid "Manage storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:727 +#: lxc/storage_bucket.go:732 msgid "Manage storage bucket keys." msgstr "" @@ -3649,7 +3644,7 @@ msgid "" "\"custom\" (user created) volumes." msgstr "" -#: lxc/remote.go:33 lxc/remote.go:34 +#: lxc/remote.go:34 lxc/remote.go:35 msgid "Manage the list of remote servers" msgstr "" @@ -3730,12 +3725,12 @@ msgid "" "Minimum level for log messages (only available when using pretty format)" msgstr "" -#: lxc/storage_bucket.go:111 lxc/storage_bucket.go:211 -#: lxc/storage_bucket.go:287 lxc/storage_bucket.go:406 -#: lxc/storage_bucket.go:563 lxc/storage_bucket.go:655 -#: lxc/storage_bucket.go:797 lxc/storage_bucket.go:878 -#: lxc/storage_bucket.go:953 lxc/storage_bucket.go:1032 -#: lxc/storage_bucket.go:1155 +#: lxc/storage_bucket.go:116 lxc/storage_bucket.go:216 +#: lxc/storage_bucket.go:292 lxc/storage_bucket.go:411 +#: lxc/storage_bucket.go:568 lxc/storage_bucket.go:660 +#: lxc/storage_bucket.go:802 lxc/storage_bucket.go:883 +#: lxc/storage_bucket.go:958 lxc/storage_bucket.go:1037 +#: lxc/storage_bucket.go:1160 msgid "Missing bucket name" msgstr "" @@ -3779,8 +3774,8 @@ msgstr "" msgid "Missing instance name" msgstr "" -#: lxc/storage_bucket.go:882 lxc/storage_bucket.go:957 -#: lxc/storage_bucket.go:1036 lxc/storage_bucket.go:1159 +#: lxc/storage_bucket.go:887 lxc/storage_bucket.go:962 +#: lxc/storage_bucket.go:1041 lxc/storage_bucket.go:1164 msgid "Missing key name" msgstr "" @@ -3788,10 +3783,10 @@ msgstr "" #: lxc/network_forward.go:481 lxc/network_forward.go:627 #: lxc/network_forward.go:746 lxc/network_forward.go:823 #: lxc/network_forward.go:889 lxc/network_load_balancer.go:201 -#: lxc/network_load_balancer.go:411 lxc/network_load_balancer.go:484 -#: lxc/network_load_balancer.go:630 lxc/network_load_balancer.go:750 -#: lxc/network_load_balancer.go:826 lxc/network_load_balancer.go:890 -#: lxc/network_load_balancer.go:991 lxc/network_load_balancer.go:1053 +#: lxc/network_load_balancer.go:416 lxc/network_load_balancer.go:489 +#: lxc/network_load_balancer.go:635 lxc/network_load_balancer.go:755 +#: lxc/network_load_balancer.go:831 lxc/network_load_balancer.go:895 +#: lxc/network_load_balancer.go:996 lxc/network_load_balancer.go:1058 msgid "Missing listen address" msgstr "" @@ -3816,26 +3811,26 @@ msgstr "" #: lxc/network_forward.go:477 lxc/network_forward.go:623 #: lxc/network_forward.go:742 lxc/network_forward.go:819 #: lxc/network_forward.go:885 lxc/network_load_balancer.go:123 -#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:261 -#: lxc/network_load_balancer.go:407 lxc/network_load_balancer.go:480 -#: lxc/network_load_balancer.go:626 lxc/network_load_balancer.go:746 -#: lxc/network_load_balancer.go:822 lxc/network_load_balancer.go:886 -#: lxc/network_load_balancer.go:987 lxc/network_load_balancer.go:1049 +#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:266 +#: lxc/network_load_balancer.go:412 lxc/network_load_balancer.go:485 +#: lxc/network_load_balancer.go:631 lxc/network_load_balancer.go:751 +#: lxc/network_load_balancer.go:827 lxc/network_load_balancer.go:891 +#: lxc/network_load_balancer.go:992 lxc/network_load_balancer.go:1054 #: lxc/network_peer.go:110 lxc/network_peer.go:180 lxc/network_peer.go:237 #: lxc/network_peer.go:355 lxc/network_peer.go:426 lxc/network_peer.go:556 #: lxc/network_peer.go:665 msgid "Missing network name" msgstr "" -#: lxc/network_zone.go:178 lxc/network_zone.go:234 lxc/network_zone.go:294 -#: lxc/network_zone.go:382 lxc/network_zone.go:503 lxc/network_zone.go:606 -#: lxc/network_zone.go:712 lxc/network_zone.go:780 lxc/network_zone.go:892 -#: lxc/network_zone.go:976 lxc/network_zone.go:1197 lxc/network_zone.go:1262 -#: lxc/network_zone.go:1307 +#: lxc/network_zone.go:179 lxc/network_zone.go:235 lxc/network_zone.go:299 +#: lxc/network_zone.go:387 lxc/network_zone.go:508 lxc/network_zone.go:611 +#: lxc/network_zone.go:717 lxc/network_zone.go:785 lxc/network_zone.go:897 +#: lxc/network_zone.go:981 lxc/network_zone.go:1202 lxc/network_zone.go:1267 +#: lxc/network_zone.go:1312 msgid "Missing network zone name" msgstr "" -#: lxc/network_zone.go:833 lxc/network_zone.go:1095 +#: lxc/network_zone.go:838 lxc/network_zone.go:1100 msgid "Missing network zone record name" msgstr "" @@ -3845,13 +3840,13 @@ msgid "Missing peer name" msgstr "" #: lxc/storage.go:194 lxc/storage.go:264 lxc/storage.go:370 lxc/storage.go:440 -#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:107 -#: lxc/storage_bucket.go:207 lxc/storage_bucket.go:283 -#: lxc/storage_bucket.go:402 lxc/storage_bucket.go:477 -#: lxc/storage_bucket.go:559 lxc/storage_bucket.go:651 -#: lxc/storage_bucket.go:793 lxc/storage_bucket.go:874 -#: lxc/storage_bucket.go:949 lxc/storage_bucket.go:1028 -#: lxc/storage_bucket.go:1151 lxc/storage_volume.go:189 +#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:112 +#: lxc/storage_bucket.go:212 lxc/storage_bucket.go:288 +#: lxc/storage_bucket.go:407 lxc/storage_bucket.go:482 +#: lxc/storage_bucket.go:564 lxc/storage_bucket.go:656 +#: lxc/storage_bucket.go:798 lxc/storage_bucket.go:879 +#: lxc/storage_bucket.go:954 lxc/storage_bucket.go:1033 +#: lxc/storage_bucket.go:1156 lxc/storage_volume.go:189 #: lxc/storage_volume.go:287 lxc/storage_volume.go:583 #: lxc/storage_volume.go:660 lxc/storage_volume.go:735 #: lxc/storage_volume.go:817 lxc/storage_volume.go:919 @@ -3971,7 +3966,7 @@ msgstr "" msgid "Moving the storage volume: %s" msgstr "" -#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1097 +#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1102 msgid "Multiple ports match. Use --force to remove them all" msgstr "" @@ -3990,10 +3985,10 @@ 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:677 lxc/project.go:498 -#: lxc/remote.go:731 lxc/storage.go:638 lxc/storage_bucket.go:506 -#: lxc/storage_bucket.go:826 lxc/storage_volume.go:1561 +#: lxc/network_acl.go:147 lxc/network_peer.go:139 lxc/network_zone.go:139 +#: lxc/network_zone.go:746 lxc/profile.go:677 lxc/project.go:498 +#: lxc/remote.go:732 lxc/storage.go:638 lxc/storage_bucket.go:511 +#: lxc/storage_bucket.go:831 lxc/storage_volume.go:1561 msgid "NAME" msgstr "" @@ -4019,7 +4014,7 @@ msgstr "" #: lxc/network.go:957 lxc/operation.go:154 lxc/project.go:456 #: lxc/project.go:461 lxc/project.go:466 lxc/project.go:471 lxc/project.go:476 -#: lxc/project.go:481 lxc/remote.go:691 lxc/remote.go:696 lxc/remote.go:701 +#: lxc/project.go:481 lxc/remote.go:692 lxc/remote.go:697 lxc/remote.go:702 msgid "NO" msgstr "" @@ -4046,7 +4041,7 @@ msgstr "" msgid "Name" msgstr "" -#: lxc/remote.go:141 +#: lxc/remote.go:142 msgid "Name of the project to use for this remote:" msgstr "" @@ -4095,12 +4090,12 @@ msgstr "" msgid "Network ACL %s renamed to %s" msgstr "" -#: lxc/network_zone.go:336 +#: lxc/network_zone.go:341 #, c-format msgid "Network Zone %s created" msgstr "" -#: lxc/network_zone.go:616 +#: lxc/network_zone.go:621 #, c-format msgid "Network Zone %s deleted" msgstr "" @@ -4115,12 +4110,12 @@ msgstr "" msgid "Network forward %s deleted" msgstr "" -#: lxc/network_load_balancer.go:365 +#: lxc/network_load_balancer.go:370 #, c-format msgid "Network load balancer %s created" msgstr "" -#: lxc/network_load_balancer.go:767 +#: lxc/network_load_balancer.go:772 #, c-format msgid "Network load balancer %s deleted" msgstr "" @@ -4158,12 +4153,12 @@ msgstr "" msgid "Network usage:" msgstr "" -#: lxc/network_zone.go:934 +#: lxc/network_zone.go:939 #, c-format msgid "Network zone record %s created" msgstr "" -#: lxc/network_zone.go:1207 +#: lxc/network_zone.go:1212 #, c-format msgid "Network zone record %s deleted" msgstr "" @@ -4198,11 +4193,11 @@ msgstr "" msgid "No device found for this storage volume" msgstr "" -#: lxc/network_load_balancer.go:921 +#: lxc/network_load_balancer.go:926 msgid "No matching backend found" msgstr "" -#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1108 +#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1113 msgid "No matching port(s) found" msgstr "" @@ -4248,7 +4243,7 @@ msgstr "" msgid "Only \"custom\" volumes can be snapshotted" msgstr "" -#: lxc/remote.go:332 +#: lxc/remote.go:333 msgid "Only https URLs are supported for simplestreams" msgstr "" @@ -4273,7 +4268,7 @@ msgstr "" msgid "Optimized Storage" msgstr "" -#: lxc/main.go:96 +#: lxc/main.go:97 msgid "Override the source project" msgstr "" @@ -4319,11 +4314,11 @@ msgstr "" msgid "PROJECT" msgstr "" -#: lxc/remote.go:733 +#: lxc/remote.go:734 msgid "PROTOCOL" msgstr "" -#: lxc/image.go:1073 lxc/remote.go:735 +#: lxc/image.go:1073 lxc/remote.go:736 msgid "PUBLIC" msgstr "" @@ -4339,7 +4334,7 @@ msgstr "" msgid "Partitions:" msgstr "" -#: lxc/main.go:361 +#: lxc/main.go:363 #, c-format msgid "Password for %s: " msgstr "" @@ -4352,7 +4347,7 @@ msgstr "" msgid "Perform an incremental copy" msgstr "" -#: lxc/remote.go:182 +#: lxc/remote.go:183 msgid "Please provide an alternate server address (empty to abort):" msgstr "" @@ -4364,7 +4359,7 @@ msgstr "" msgid "Please provide cluster member name: " msgstr "" -#: lxc/remote.go:462 +#: lxc/remote.go:463 msgid "Please type 'y', 'n' or the fingerprint:" msgstr "" @@ -4386,10 +4381,10 @@ msgstr "" #: lxc/config.go:1278 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/network_load_balancer.go:695 lxc/network_peer.go:611 +#: lxc/network_zone.go:557 lxc/network_zone.go:1149 lxc/profile.go:539 +#: lxc/project.go:316 lxc/storage.go:311 lxc/storage_bucket.go:349 +#: lxc/storage_bucket.go:1098 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 "" @@ -4398,7 +4393,7 @@ msgstr "" msgid "Pretty rendering (short for --format=pretty)" msgstr "" -#: lxc/main.go:94 +#: lxc/main.go:95 msgid "Print help" msgstr "" @@ -4406,7 +4401,7 @@ msgstr "" msgid "Print the raw response" msgstr "" -#: lxc/main.go:93 +#: lxc/main.go:94 msgid "Print version number" msgstr "" @@ -4495,7 +4490,7 @@ msgstr "" msgid "Project %s renamed to %s" msgstr "" -#: lxc/remote.go:106 +#: lxc/remote.go:107 msgid "Project to use for the remote" msgstr "" @@ -4593,7 +4588,7 @@ msgid "" "pool \"default\"." msgstr "" -#: lxc/remote.go:105 +#: lxc/remote.go:106 msgid "Public image server" msgstr "" @@ -4641,7 +4636,7 @@ msgstr "" msgid "RESOURCE" msgstr "" -#: lxc/storage_bucket.go:828 +#: lxc/storage_bucket.go:833 msgid "ROLE" msgstr "" @@ -4684,45 +4679,45 @@ msgstr "" msgid "Refreshing the image: %s" msgstr "" -#: lxc/remote.go:785 +#: lxc/remote.go:786 #, c-format msgid "Remote %s already exists" msgstr "" -#: lxc/project.go:769 lxc/remote.go:776 lxc/remote.go:849 lxc/remote.go:905 -#: lxc/remote.go:945 +#: lxc/project.go:769 lxc/remote.go:777 lxc/remote.go:850 lxc/remote.go:906 +#: lxc/remote.go:946 #, c-format msgid "Remote %s doesn't exist" msgstr "" -#: lxc/remote.go:301 +#: lxc/remote.go:302 #, c-format msgid "Remote %s exists as <%s>" msgstr "" -#: lxc/remote.go:857 +#: lxc/remote.go:858 #, c-format msgid "Remote %s is global and cannot be removed" msgstr "" -#: lxc/remote.go:780 lxc/remote.go:853 lxc/remote.go:949 +#: lxc/remote.go:781 lxc/remote.go:854 lxc/remote.go:950 #, c-format msgid "Remote %s is static and cannot be modified" msgstr "" -#: lxc/remote.go:290 +#: lxc/remote.go:291 msgid "Remote address must not be empty" msgstr "" -#: lxc/remote.go:101 +#: lxc/remote.go:102 msgid "Remote admin password" msgstr "" -#: lxc/remote.go:295 +#: lxc/remote.go:296 msgid "Remote names may not contain colons" msgstr "" -#: lxc/remote.go:102 +#: lxc/remote.go:103 msgid "Remote trust token" msgstr "" @@ -4748,7 +4743,7 @@ msgstr "" msgid "Remove a member from the cluster" msgstr "" -#: lxc/network_zone.go:1285 +#: lxc/network_zone.go:1290 msgid "Remove a network zone record entry" msgstr "" @@ -4756,7 +4751,7 @@ msgstr "" msgid "Remove aliases" msgstr "" -#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1025 +#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1030 msgid "Remove all ports that match" msgstr "" @@ -4764,15 +4759,15 @@ msgstr "" msgid "Remove all rules that match" msgstr "" -#: lxc/network_load_balancer.go:862 +#: lxc/network_load_balancer.go:867 msgid "Remove backend from a load balancer" msgstr "" -#: lxc/network_load_balancer.go:861 +#: lxc/network_load_balancer.go:866 msgid "Remove backends from a load balancer" msgstr "" -#: lxc/network_zone.go:1286 +#: lxc/network_zone.go:1291 msgid "Remove entries from a network zone record" msgstr "" @@ -4796,7 +4791,7 @@ msgstr "" msgid "Remove ports from a forward" msgstr "" -#: lxc/network_load_balancer.go:1023 lxc/network_load_balancer.go:1024 +#: lxc/network_load_balancer.go:1028 lxc/network_load_balancer.go:1029 msgid "Remove ports from a load balancer" msgstr "" @@ -4804,7 +4799,7 @@ msgstr "" msgid "Remove profiles from instances" msgstr "" -#: lxc/remote.go:827 lxc/remote.go:828 +#: lxc/remote.go:828 lxc/remote.go:829 msgid "Remove remotes" msgstr "" @@ -4861,7 +4856,7 @@ msgstr "" msgid "Rename projects" msgstr "" -#: lxc/remote.go:754 lxc/remote.go:755 +#: lxc/remote.go:755 lxc/remote.go:756 msgid "Rename remotes" msgstr "" @@ -4939,7 +4934,7 @@ msgid "Restrict the certificate to one or more projects" msgstr "" #: lxc/console.go:44 -msgid "Retrieve the instance's console log" +msgid "Retrieve the container's console log" msgstr "" #: lxc/init.go:347 @@ -4955,7 +4950,7 @@ msgstr "" msgid "Revoke cluster member join token" msgstr "" -#: lxc/storage_bucket.go:851 +#: lxc/storage_bucket.go:856 msgid "Role (admin or read-only)" msgstr "" @@ -5006,7 +5001,7 @@ msgstr "" msgid "STATE" msgstr "" -#: lxc/remote.go:736 +#: lxc/remote.go:737 msgid "STATIC" msgstr "" @@ -5030,11 +5025,11 @@ msgstr "" msgid "STP" msgstr "" -#: lxc/storage_bucket.go:853 +#: lxc/storage_bucket.go:858 msgid "Secret key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:909 +#: lxc/storage_bucket.go:914 #, c-format msgid "Secret key: %s" msgstr "" @@ -5043,19 +5038,19 @@ msgstr "" msgid "Send a raw query to LXD" msgstr "" -#: lxc/remote.go:104 +#: lxc/remote.go:105 msgid "Server authentication type (tls or oidc)" msgstr "" -#: lxc/remote.go:460 +#: lxc/remote.go:461 msgid "Server certificate NACKed by user" msgstr "" -#: lxc/remote.go:599 +#: lxc/remote.go:600 msgid "Server doesn't trust us after authentication" msgstr "" -#: lxc/remote.go:103 +#: lxc/remote.go:104 msgid "Server protocol (lxd or simplestreams)" msgstr "" @@ -5154,11 +5149,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_load_balancer.go:450 +#: lxc/network_load_balancer.go:455 msgid "Set network load balancer keys" msgstr "" -#: lxc/network_load_balancer.go:451 +#: lxc/network_load_balancer.go:456 msgid "" "Set network load balancer keys\n" "\n" @@ -5180,11 +5175,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:353 +#: lxc/network_zone.go:358 msgid "Set network zone configuration keys" msgstr "" -#: lxc/network_zone.go:354 +#: lxc/network_zone.go:359 msgid "" "Set network zone configuration keys\n" "\n" @@ -5193,7 +5188,7 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:951 lxc/network_zone.go:952 +#: lxc/network_zone.go:956 lxc/network_zone.go:957 msgid "Set network zone record configuration keys" msgstr "" @@ -5223,11 +5218,11 @@ msgid "" " lxc project set [:] " msgstr "" -#: lxc/storage_bucket.go:529 +#: lxc/storage_bucket.go:534 msgid "Set storage bucket configuration keys" msgstr "" -#: lxc/storage_bucket.go:530 +#: lxc/storage_bucket.go:535 msgid "" "Set storage bucket configuration keys\n" "\n" @@ -5262,7 +5257,7 @@ msgid "" " lxc storage volume set [:] [/] " msgstr "" -#: lxc/remote.go:923 lxc/remote.go:924 +#: lxc/remote.go:924 lxc/remote.go:925 msgid "Set the URL for the remote" msgstr "" @@ -5290,7 +5285,7 @@ msgstr "" msgid "Set the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:458 +#: lxc/network_load_balancer.go:463 msgid "Set the key as a network load balancer property" msgstr "" @@ -5302,11 +5297,11 @@ msgstr "" msgid "Set the key as a network property" msgstr "" -#: lxc/network_zone.go:361 +#: lxc/network_zone.go:366 msgid "Set the key as a network zone property" msgstr "" -#: lxc/network_zone.go:957 +#: lxc/network_zone.go:962 msgid "Set the key as a network zone record property" msgstr "" @@ -5318,7 +5313,7 @@ msgstr "" msgid "Set the key as a project property" msgstr "" -#: lxc/storage_bucket.go:537 +#: lxc/storage_bucket.go:542 msgid "Set the key as a storage bucket property" msgstr "" @@ -5338,11 +5333,11 @@ msgstr "" msgid "Setup SSH SFTP listener on address:port instead of mounting" msgstr "" -#: lxc/main.go:97 +#: lxc/main.go:98 msgid "Show all debug messages" msgstr "" -#: lxc/main.go:98 +#: lxc/main.go:99 msgid "Show all information messages" msgstr "" @@ -5411,7 +5406,7 @@ msgstr "" msgid "Show instance or server information" msgstr "" -#: lxc/main.go:271 lxc/main.go:272 +#: lxc/main.go:272 lxc/main.go:273 msgid "Show less common commands" msgstr "" @@ -5443,15 +5438,15 @@ msgstr "" msgid "Show network peer configurations" msgstr "" -#: lxc/network_zone.go:155 lxc/network_zone.go:156 +#: lxc/network_zone.go:156 lxc/network_zone.go:157 msgid "Show network zone configurations" msgstr "" -#: lxc/network_zone.go:758 +#: lxc/network_zone.go:763 msgid "Show network zone record configuration" msgstr "" -#: lxc/network_zone.go:759 +#: lxc/network_zone.go:764 msgid "Show network zone record configurations" msgstr "" @@ -5463,11 +5458,11 @@ msgstr "" msgid "Show project options" msgstr "" -#: lxc/storage_bucket.go:623 lxc/storage_bucket.go:624 +#: lxc/storage_bucket.go:628 lxc/storage_bucket.go:629 msgid "Show storage bucket configurations" msgstr "" -#: lxc/storage_bucket.go:1123 lxc/storage_bucket.go:1124 +#: lxc/storage_bucket.go:1128 lxc/storage_bucket.go:1129 msgid "Show storage bucket key configurations" msgstr "" @@ -5493,7 +5488,7 @@ msgid "" "that are granted via identity provider group mappings. \n" msgstr "" -#: lxc/remote.go:630 lxc/remote.go:631 +#: lxc/remote.go:631 lxc/remote.go:632 msgid "Show the default remote" msgstr "" @@ -5617,22 +5612,22 @@ msgstr "" msgid "Stopping the instance failed: %s" msgstr "" -#: lxc/storage_bucket.go:161 +#: lxc/storage_bucket.go:166 #, c-format msgid "Storage bucket %s created" msgstr "" -#: lxc/storage_bucket.go:228 +#: lxc/storage_bucket.go:233 #, c-format msgid "Storage bucket %s deleted" msgstr "" -#: lxc/storage_bucket.go:907 +#: lxc/storage_bucket.go:912 #, c-format msgid "Storage bucket key %s added" msgstr "" -#: lxc/storage_bucket.go:973 +#: lxc/storage_bucket.go:978 #, c-format msgid "Storage bucket key %s removed" msgstr "" @@ -5705,7 +5700,7 @@ msgstr "" msgid "Switch the current project" msgstr "" -#: lxc/remote.go:883 lxc/remote.go:884 +#: lxc/remote.go:884 lxc/remote.go:885 msgid "Switch the default remote" msgstr "" @@ -5820,7 +5815,7 @@ msgstr "" msgid "The property %q does not exist on the instance snapshot %s/%s: %v" msgstr "" -#: lxc/network_load_balancer.go:424 +#: lxc/network_load_balancer.go:429 #, c-format msgid "The property %q does not exist on the load balancer %q: %v" msgstr "" @@ -5845,12 +5840,12 @@ msgstr "" msgid "The property %q does not exist on the network peer %q: %v" msgstr "" -#: lxc/network_zone.go:246 +#: lxc/network_zone.go:247 #, c-format msgid "The property %q does not exist on the network zone %q: %v" msgstr "" -#: lxc/network_zone.go:845 +#: lxc/network_zone.go:850 #, c-format msgid "The property %q does not exist on the network zone record %q: %v" msgstr "" @@ -5865,7 +5860,7 @@ msgstr "" msgid "The property %q does not exist on the project %q: %v" msgstr "" -#: lxc/storage_bucket.go:426 +#: lxc/storage_bucket.go:431 #, c-format msgid "The property %q does not exist on the storage bucket %q: %v" msgstr "" @@ -5919,7 +5914,7 @@ msgstr "" msgid "This LXD server is not available on the network" msgstr "" -#: lxc/main.go:293 +#: lxc/main.go:294 msgid "" "This client hasn't been configured to use a remote LXD server yet.\n" "As your platform can't run native Linux instances, you must connect to a " @@ -5951,11 +5946,11 @@ msgstr "" msgid "To create a new network, use: lxc network create" msgstr "" -#: lxc/console.go:210 +#: lxc/console.go:215 msgid "To detach from the console, press: +a q" msgstr "" -#: lxc/main.go:403 +#: lxc/main.go:406 msgid "" "To start your first container, try: lxc launch ubuntu:24.04\n" "Or for a virtual machine: lxc launch ubuntu:24.04 --vm" @@ -6053,7 +6048,7 @@ msgstr "" msgid "UPLOAD DATE" msgstr "" -#: lxc/cluster.go:184 lxc/remote.go:732 +#: lxc/cluster.go:184 lxc/remote.go:733 msgid "URL" msgstr "" @@ -6062,7 +6057,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:679 lxc/project.go:506 +#: lxc/network_zone.go:141 lxc/profile.go:679 lxc/project.go:506 #: lxc/storage.go:647 lxc/storage_volume.go:1564 msgid "USED BY" msgstr "" @@ -6081,7 +6076,7 @@ msgstr "" msgid "Unable to create a temporary file: %v" msgstr "" -#: lxc/remote.go:213 lxc/remote.go:247 +#: lxc/remote.go:214 lxc/remote.go:248 msgid "Unavailable remote server" msgstr "" @@ -6101,7 +6096,7 @@ msgstr "" msgid "Unknown column shorthand char '%c' in '%s'" msgstr "" -#: lxc/console.go:159 +#: lxc/console.go:164 #, c-format msgid "Unknown console type %q" msgstr "" @@ -6161,11 +6156,11 @@ msgstr "" msgid "Unset network forward keys" msgstr "" -#: lxc/network_load_balancer.go:548 +#: lxc/network_load_balancer.go:553 msgid "Unset network load balancer configuration keys" msgstr "" -#: lxc/network_load_balancer.go:549 +#: lxc/network_load_balancer.go:554 msgid "Unset network load balancer keys" msgstr "" @@ -6177,11 +6172,11 @@ msgstr "" msgid "Unset network peer keys" msgstr "" -#: lxc/network_zone.go:433 lxc/network_zone.go:434 +#: lxc/network_zone.go:438 lxc/network_zone.go:439 msgid "Unset network zone configuration keys" msgstr "" -#: lxc/network_zone.go:1027 lxc/network_zone.go:1028 +#: lxc/network_zone.go:1032 lxc/network_zone.go:1033 msgid "Unset network zone record configuration keys" msgstr "" @@ -6193,7 +6188,7 @@ msgstr "" msgid "Unset project configuration keys" msgstr "" -#: lxc/storage_bucket.go:692 lxc/storage_bucket.go:693 +#: lxc/storage_bucket.go:697 lxc/storage_bucket.go:698 msgid "Unset storage bucket configuration keys" msgstr "" @@ -6217,7 +6212,7 @@ msgstr "" msgid "Unset the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:552 +#: lxc/network_load_balancer.go:557 msgid "Unset the key as a network load balancer property" msgstr "" @@ -6229,11 +6224,11 @@ msgstr "" msgid "Unset the key as a network property" msgstr "" -#: lxc/network_zone.go:437 +#: lxc/network_zone.go:442 msgid "Unset the key as a network zone property" msgstr "" -#: lxc/network_zone.go:1031 +#: lxc/network_zone.go:1036 msgid "Unset the key as a network zone record property" msgstr "" @@ -6245,7 +6240,7 @@ msgstr "" msgid "Unset the key as a project property" msgstr "" -#: lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:701 msgid "Unset the key as a storage bucket property" msgstr "" @@ -6307,7 +6302,7 @@ msgid "" "Use storage driver optimized format (can only be restored on a similar pool)" msgstr "" -#: lxc/main.go:100 +#: lxc/main.go:101 msgid "Use with help or --help to view sub-commands" msgstr "" @@ -6404,7 +6399,7 @@ msgstr "" #: lxc/network.go:959 lxc/operation.go:156 lxc/project.go:458 #: lxc/project.go:463 lxc/project.go:468 lxc/project.go:473 lxc/project.go:478 -#: lxc/project.go:483 lxc/remote.go:693 lxc/remote.go:698 lxc/remote.go:703 +#: lxc/project.go:483 lxc/remote.go:694 lxc/remote.go:699 lxc/remote.go:704 msgid "YES" msgstr "" @@ -6439,7 +6434,7 @@ 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/network.go:909 lxc/network_acl.go:91 lxc/network_zone.go:83 #: 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 "[:]" @@ -6502,19 +6497,19 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:154 lxc/network_zone.go:463 lxc/network_zone.go:581 +#: lxc/network_zone.go:155 lxc/network_zone.go:468 lxc/network_zone.go:586 msgid "[:]" msgstr "" -#: lxc/network_zone.go:209 lxc/network_zone.go:432 +#: lxc/network_zone.go:210 lxc/network_zone.go:437 msgid "[:] " msgstr "" -#: lxc/network_zone.go:352 +#: lxc/network_zone.go:357 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:269 +#: lxc/network_zone.go:270 msgid "[:] [key=value...]" msgstr "" @@ -6760,30 +6755,30 @@ msgstr "" #: lxc/network_forward.go:169 lxc/network_forward.go:574 #: lxc/network_forward.go:715 lxc/network_load_balancer.go:171 -#: lxc/network_load_balancer.go:577 lxc/network_load_balancer.go:719 +#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:724 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:860 +#: lxc/network_load_balancer.go:865 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:796 +#: lxc/network_load_balancer.go:801 msgid "" "[:] " "[]" msgstr "" #: lxc/network_forward.go:377 lxc/network_forward.go:544 -#: lxc/network_load_balancer.go:381 lxc/network_load_balancer.go:547 +#: lxc/network_load_balancer.go:386 lxc/network_load_balancer.go:552 msgid "[:] " msgstr "" -#: lxc/network_forward.go:446 lxc/network_load_balancer.go:449 +#: lxc/network_forward.go:446 lxc/network_load_balancer.go:454 msgid "[:] =..." msgstr "" -#: lxc/network_load_balancer.go:961 +#: lxc/network_load_balancer.go:966 msgid "" "[:] " "[,...]" @@ -6795,7 +6790,7 @@ msgid "" " []" msgstr "" -#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1022 +#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1027 msgid "[:] [] []" msgstr "" @@ -6846,7 +6841,7 @@ msgid "[:]" msgstr "" #: lxc/storage.go:167 lxc/storage.go:218 lxc/storage.go:412 lxc/storage.go:759 -#: lxc/storage_bucket.go:449 +#: lxc/storage_bucket.go:454 msgid "[:]" msgstr "" @@ -6854,18 +6849,18 @@ msgstr "" msgid "[:] []" msgstr "" -#: lxc/storage_bucket.go:180 lxc/storage_bucket.go:242 -#: lxc/storage_bucket.go:622 lxc/storage_bucket.go:764 +#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:247 +#: lxc/storage_bucket.go:627 lxc/storage_bucket.go:769 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:375 lxc/storage_bucket.go:691 -#: lxc/storage_bucket.go:845 lxc/storage_bucket.go:923 -#: lxc/storage_bucket.go:987 lxc/storage_bucket.go:1122 +#: lxc/storage_bucket.go:380 lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:850 lxc/storage_bucket.go:928 +#: lxc/storage_bucket.go:992 lxc/storage_bucket.go:1127 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:528 +#: lxc/storage_bucket.go:533 msgid "[:] =..." msgstr "" @@ -7009,27 +7004,27 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:686 +#: lxc/network_zone.go:691 msgid "[:]" msgstr "" -#: lxc/network_zone.go:757 lxc/network_zone.go:1056 lxc/network_zone.go:1173 +#: lxc/network_zone.go:762 lxc/network_zone.go:1061 lxc/network_zone.go:1178 msgid "[:] " msgstr "" -#: lxc/network_zone.go:809 lxc/network_zone.go:1026 +#: lxc/network_zone.go:814 lxc/network_zone.go:1031 msgid "[:] " msgstr "" -#: lxc/network_zone.go:950 +#: lxc/network_zone.go:955 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:1238 lxc/network_zone.go:1284 +#: lxc/network_zone.go:1243 lxc/network_zone.go:1289 msgid "[:] " msgstr "" -#: lxc/network_zone.go:868 +#: lxc/network_zone.go:873 msgid "[:] [key=value...]" msgstr "" @@ -7053,7 +7048,7 @@ msgstr "" msgid "[:][] [...]" msgstr "" -#: lxc/remote.go:88 +#: lxc/remote.go:89 msgid "[] " msgstr "" @@ -7061,7 +7056,7 @@ msgstr "" msgid "[[:]]" msgstr "" -#: lxc/project.go:488 lxc/remote.go:722 +#: lxc/project.go:488 lxc/remote.go:723 msgid "current" msgstr "" @@ -7324,6 +7319,23 @@ msgid "" " Create a new OVN network called bar using baz as its uplink network" msgstr "" +#: lxc/network_load_balancer.go:239 +msgid "" +"lxc network load-balancer create n1 127.0.0.1\n" +"\n" +"lxc network load-balancer create n1 127.0.0.1 < config.yaml\n" +" Create network load-balancer for network n1 with configuration from " +"config.yaml" +msgstr "" + +#: lxc/network_zone.go:273 +msgid "" +"lxc network zone create z1\n" +"\n" +"lxc network zone create z1 < config.yaml\n" +" Create network zone z1 with configuration from config.yaml" +msgstr "" + #: lxc/operation.go:195 msgid "" "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n" @@ -7394,26 +7406,36 @@ msgid "" " Restore the snapshot." msgstr "" -#: lxc/storage_bucket.go:245 +#: lxc/storage_bucket.go:84 +msgid "" +"lxc storage bucket create p1 b01\n" +"\tCreate a new storage bucket name b01 in storage pool p1\n" +"\n" +"lxc storage bucket create p1 b01 < config.yaml\n" +"\tCreate a new storage bucket name b01 in storage pool p1 using the content " +"of config.yaml" +msgstr "" + +#: lxc/storage_bucket.go:250 msgid "" "lxc storage bucket edit [:] < bucket.yaml\n" " Update a storage bucket using the content of bucket.yaml." msgstr "" -#: lxc/storage_bucket.go:990 +#: lxc/storage_bucket.go:995 msgid "" "lxc storage bucket edit [:] < key.yaml\n" " Update a storage bucket key using the content of key.yaml." msgstr "" -#: lxc/storage_bucket.go:1125 +#: lxc/storage_bucket.go:1130 msgid "" "lxc storage bucket key show default data foo\n" " Will show the properties of a bucket key called \"foo\" for a bucket " "called \"data\" in the \"default\" pool." msgstr "" -#: lxc/storage_bucket.go:625 +#: lxc/storage_bucket.go:630 msgid "" "lxc storage bucket show default data\n" " Will show the properties of a bucket called \"data\" in the \"default\" " @@ -7432,7 +7454,7 @@ msgid "" "\t\tCreate a new custom volume using backup0.tar.gz as the source." msgstr "" -#: lxc/remote.go:459 +#: lxc/remote.go:460 msgid "n" msgstr "" @@ -7444,7 +7466,7 @@ msgstr "" msgid "no" msgstr "" -#: lxc/remote.go:452 +#: lxc/remote.go:453 msgid "ok (y/n/[fingerprint])?" msgstr "" @@ -7481,7 +7503,7 @@ msgstr "" msgid "used by" msgstr "" -#: lxc/remote.go:461 +#: lxc/remote.go:462 msgid "y" msgstr "" diff --git a/po/ca.po b/po/ca.po index 1696db4f4f06..5751e4dff955 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-08-20 09:31+0100\n" +"POT-Creation-Date: 2024-08-30 09:27+0100\n" "PO-Revision-Date: 2022-03-10 15:10+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Catalan " msgstr "" -#: lxc/remote.go:825 lxc/remote.go:882 +#: lxc/remote.go:826 lxc/remote.go:883 msgid "" msgstr "" -#: lxc/remote.go:922 +#: lxc/remote.go:923 msgid " " msgstr "" -#: lxc/remote.go:752 +#: lxc/remote.go:753 msgid " " msgstr "" @@ -556,7 +556,7 @@ msgstr "" msgid "ARCHITECTURE" msgstr "" -#: lxc/remote.go:734 +#: lxc/remote.go:735 msgid "AUTH TYPE" msgstr "" @@ -564,15 +564,15 @@ msgstr "" msgid "AUTHENTICATION METHOD" msgstr "" -#: lxc/remote.go:100 +#: lxc/remote.go:101 msgid "Accept certificate" msgstr "" -#: lxc/storage_bucket.go:852 +#: lxc/storage_bucket.go:857 msgid "Access key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:908 +#: lxc/storage_bucket.go:913 #, c-format msgid "Access key: %s" msgstr "" @@ -606,19 +606,19 @@ msgstr "" msgid "Add a group to an identity provider group" msgstr "" -#: lxc/network_zone.go:1239 +#: lxc/network_zone.go:1244 msgid "Add a network zone record entry" msgstr "" -#: lxc/network_load_balancer.go:798 +#: lxc/network_load_balancer.go:803 msgid "Add backend to a load balancer" msgstr "" -#: lxc/network_load_balancer.go:797 +#: lxc/network_load_balancer.go:802 msgid "Add backends to a load balancer" msgstr "" -#: lxc/network_zone.go:1240 +#: lxc/network_zone.go:1245 msgid "Add entries to a network zone record" msgstr "" @@ -634,11 +634,11 @@ msgstr "" msgid "Add new aliases" msgstr "" -#: lxc/remote.go:89 +#: lxc/remote.go:90 msgid "Add new remote servers" msgstr "" -#: lxc/remote.go:90 +#: lxc/remote.go:91 msgid "" "Add new remote servers\n" "\n" @@ -679,7 +679,7 @@ msgstr "" msgid "Add ports to a forward" msgstr "" -#: lxc/network_load_balancer.go:962 lxc/network_load_balancer.go:963 +#: lxc/network_load_balancer.go:967 lxc/network_load_balancer.go:968 msgid "Add ports to a load balancer" msgstr "" @@ -700,17 +700,17 @@ msgstr "" msgid "Address: %s" msgstr "" -#: lxc/storage_bucket.go:164 +#: lxc/storage_bucket.go:169 #, c-format msgid "Admin access key: %s" msgstr "" -#: lxc/remote.go:566 +#: lxc/remote.go:567 #, c-format msgid "Admin password (or token) for %s:" msgstr "" -#: lxc/storage_bucket.go:165 +#: lxc/storage_bucket.go:170 #, c-format msgid "Admin secret key: %s" msgstr "" @@ -742,7 +742,7 @@ msgstr "" msgid "All projects" msgstr "" -#: lxc/remote.go:181 +#: lxc/remote.go:182 msgid "All server addresses are unavailable" msgstr "" @@ -765,7 +765,7 @@ msgstr "" msgid "Are you sure you want to %s cluster member %q? (yes/no) [default=no]: " msgstr "" -#: lxc/console.go:383 +#: lxc/console.go:388 msgid "As neither could be found, the raw SPICE socket can be found at:" msgstr "" @@ -813,7 +813,7 @@ msgid "" "as well as retrieve past log entries from it." msgstr "" -#: lxc/remote.go:548 +#: lxc/remote.go:549 #, c-format msgid "Authentication type '%s' not supported by server" msgstr "" @@ -832,11 +832,11 @@ msgstr "" msgid "Auto update: %s" msgstr "" -#: lxc/network_forward.go:240 lxc/network_load_balancer.go:242 +#: lxc/network_forward.go:240 lxc/network_load_balancer.go:247 msgid "Auto-allocate an IPv4 or IPv6 listen address. One of 'ipv4', 'ipv6'." msgstr "" -#: lxc/remote.go:136 +#: lxc/remote.go:137 msgid "Available projects:" msgstr "" @@ -868,8 +868,8 @@ msgid "Bad device override syntax, expecting ,=: %s" msgstr "" #: lxc/network.go:333 lxc/network_acl.go:382 lxc/network_forward.go:293 -#: lxc/network_load_balancer.go:296 lxc/network_peer.go:280 -#: lxc/network_zone.go:324 lxc/network_zone.go:922 lxc/storage_bucket.go:136 +#: lxc/network_load_balancer.go:301 lxc/network_peer.go:280 +#: lxc/network_zone.go:329 lxc/network_zone.go:927 lxc/storage_bucket.go:141 #, c-format msgid "Bad key/value pair: %s" msgstr "" @@ -991,7 +991,7 @@ msgstr "" msgid "Can't read from stdin: %w" msgstr "" -#: lxc/remote.go:861 +#: lxc/remote.go:862 msgid "Can't remove the default remote" msgstr "" @@ -1057,15 +1057,14 @@ msgstr "" msgid "Certificate add token for %s deleted" msgstr "" -#: lxc/remote.go:218 -#, c-format -msgid "" -"Certificate fingerprint mismatch between certificate token and server %q" +#: lxc/remote.go:452 +msgid "Certificate fingerprint" msgstr "" -#: lxc/remote.go:451 +#: lxc/remote.go:219 #, c-format -msgid "Certificate fingerprint: %s" +msgid "" +"Certificate fingerprint mismatch between certificate token and server %q" msgstr "" #: lxc/network.go:893 @@ -1077,7 +1076,7 @@ msgstr "" msgid "Client %s certificate add token:" msgstr "" -#: lxc/remote.go:603 +#: lxc/remote.go:604 msgid "Client certificate now trusted by server:" msgstr "" @@ -1139,18 +1138,18 @@ msgstr "" #: lxc/network_forward.go:456 lxc/network_forward.go:579 #: lxc/network_forward.go:721 lxc/network_forward.go:798 #: lxc/network_forward.go:864 lxc/network_load_balancer.go:176 -#: lxc/network_load_balancer.go:241 lxc/network_load_balancer.go:459 -#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:725 -#: lxc/network_load_balancer.go:801 lxc/network_load_balancer.go:865 -#: lxc/network_load_balancer.go:966 lxc/network_load_balancer.go:1028 +#: lxc/network_load_balancer.go:246 lxc/network_load_balancer.go:464 +#: lxc/network_load_balancer.go:587 lxc/network_load_balancer.go:730 +#: lxc/network_load_balancer.go:806 lxc/network_load_balancer.go:870 +#: lxc/network_load_balancer.go:971 lxc/network_load_balancer.go:1033 #: lxc/storage.go:99 lxc/storage.go:347 lxc/storage.go:418 lxc/storage.go:671 -#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:85 -#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:248 -#: lxc/storage_bucket.go:379 lxc/storage_bucket.go:536 -#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:695 -#: lxc/storage_bucket.go:770 lxc/storage_bucket.go:850 -#: lxc/storage_bucket.go:928 lxc/storage_bucket.go:993 -#: lxc/storage_bucket.go:1129 lxc/storage_volume.go:358 +#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:90 +#: lxc/storage_bucket.go:190 lxc/storage_bucket.go:253 +#: lxc/storage_bucket.go:384 lxc/storage_bucket.go:541 +#: lxc/storage_bucket.go:634 lxc/storage_bucket.go:700 +#: lxc/storage_bucket.go:775 lxc/storage_bucket.go:855 +#: lxc/storage_bucket.go:933 lxc/storage_bucket.go:998 +#: lxc/storage_bucket.go:1134 lxc/storage_volume.go:358 #: lxc/storage_volume.go:560 lxc/storage_volume.go:639 #: lxc/storage_volume.go:883 lxc/storage_volume.go:1097 #: lxc/storage_volume.go:1210 lxc/storage_volume.go:1678 @@ -1178,11 +1177,11 @@ msgstr "" msgid "Columns" msgstr "" -#: lxc/main.go:81 +#: lxc/main.go:82 msgid "Command line client for LXD" msgstr "" -#: lxc/main.go:82 +#: lxc/main.go:83 msgid "" "Command line client for LXD\n" "\n" @@ -1214,19 +1213,15 @@ msgstr "" #: lxc/config.go:347 lxc/config.go:1277 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/network_load_balancer.go:694 lxc/network_peer.go:610 +#: lxc/network_zone.go:556 lxc/network_zone.go:1148 lxc/profile.go:538 +#: lxc/project.go:315 lxc/storage.go:310 lxc/storage_bucket.go:348 +#: lxc/storage_bucket.go:1097 lxc/storage_volume.go:1016 #: lxc/storage_volume.go:1048 #, c-format msgid "Config parsing error: %s" msgstr "" -#: lxc/console.go:140 -msgid "Console log:" -msgstr "" - #: lxc/storage_volume.go:561 msgid "Content type, block or filesystem" msgstr "" @@ -1329,12 +1324,12 @@ msgstr "" msgid "Cores:" msgstr "" -#: lxc/remote.go:486 +#: lxc/remote.go:487 #, c-format msgid "Could not close server cert file %q: %w" msgstr "" -#: lxc/remote.go:224 lxc/remote.go:470 +#: lxc/remote.go:225 lxc/remote.go:471 msgid "Could not create server cert dir" msgstr "" @@ -1373,12 +1368,12 @@ msgstr "" msgid "Could not write new remote certificate for remote '%s' with error: %v" msgstr "" -#: lxc/remote.go:481 +#: lxc/remote.go:482 #, c-format msgid "Could not write server cert file %q: %w" msgstr "" -#: lxc/network_zone.go:1327 +#: lxc/network_zone.go:1332 msgid "Couldn't find a matching entry" msgstr "" @@ -1430,7 +1425,7 @@ msgstr "" msgid "Create instances from images" msgstr "" -#: lxc/storage_bucket.go:846 lxc/storage_bucket.go:847 +#: lxc/storage_bucket.go:851 lxc/storage_bucket.go:852 msgid "Create key for a storage bucket" msgstr "" @@ -1462,11 +1457,11 @@ msgstr "" msgid "Create new network peering" msgstr "" -#: lxc/network_zone.go:869 lxc/network_zone.go:870 +#: lxc/network_zone.go:874 lxc/network_zone.go:875 msgid "Create new network zone record" msgstr "" -#: lxc/network_zone.go:270 lxc/network_zone.go:271 +#: lxc/network_zone.go:271 lxc/network_zone.go:272 msgid "Create new network zones" msgstr "" @@ -1517,9 +1512,9 @@ msgstr "" #: 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/network_zone.go:140 lxc/network_zone.go:747 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_bucket.go:512 lxc/storage_bucket.go:832 #: lxc/storage_volume.go:1562 msgid "DESCRIPTION" msgstr "" @@ -1584,7 +1579,7 @@ msgstr "" msgid "Delete instances and snapshots" msgstr "" -#: lxc/storage_bucket.go:924 lxc/storage_bucket.go:925 +#: lxc/storage_bucket.go:929 lxc/storage_bucket.go:930 msgid "Delete key from a storage bucket" msgstr "" @@ -1596,7 +1591,7 @@ msgstr "" msgid "Delete network forwards" msgstr "" -#: lxc/network_load_balancer.go:721 lxc/network_load_balancer.go:722 +#: lxc/network_load_balancer.go:726 lxc/network_load_balancer.go:727 msgid "Delete network load balancers" msgstr "" @@ -1604,11 +1599,11 @@ msgstr "" msgid "Delete network peerings" msgstr "" -#: lxc/network_zone.go:1175 lxc/network_zone.go:1176 +#: lxc/network_zone.go:1180 lxc/network_zone.go:1181 msgid "Delete network zone record" msgstr "" -#: lxc/network_zone.go:583 lxc/network_zone.go:584 +#: lxc/network_zone.go:588 lxc/network_zone.go:589 msgid "Delete network zones" msgstr "" @@ -1624,7 +1619,7 @@ msgstr "" msgid "Delete projects" msgstr "" -#: lxc/storage_bucket.go:182 lxc/storage_bucket.go:183 +#: lxc/storage_bucket.go:187 lxc/storage_bucket.go:188 msgid "Delete storage buckets" msgstr "" @@ -1680,7 +1675,7 @@ msgstr "" #: 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/info.go:32 lxc/init.go:43 lxc/launch.go:24 lxc/list.go:48 lxc/main.go:83 #: 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 @@ -1699,22 +1694,22 @@ msgstr "" #: 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_load_balancer.go:238 lxc/network_load_balancer.go:388 +#: lxc/network_load_balancer.go:456 lxc/network_load_balancer.go:554 +#: lxc/network_load_balancer.go:584 lxc/network_load_balancer.go:727 +#: lxc/network_load_balancer.go:788 lxc/network_load_balancer.go:803 +#: lxc/network_load_balancer.go:867 lxc/network_load_balancer.go:953 +#: lxc/network_load_balancer.go:968 lxc/network_load_balancer.go:1029 #: 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/network_zone.go:29 lxc/network_zone.go:86 lxc/network_zone.go:157 +#: lxc/network_zone.go:212 lxc/network_zone.go:272 lxc/network_zone.go:359 +#: lxc/network_zone.go:439 lxc/network_zone.go:470 lxc/network_zone.go:589 +#: lxc/network_zone.go:637 lxc/network_zone.go:694 lxc/network_zone.go:764 +#: lxc/network_zone.go:816 lxc/network_zone.go:875 lxc/network_zone.go:957 +#: lxc/network_zone.go:1033 lxc/network_zone.go:1063 lxc/network_zone.go:1181 +#: lxc/network_zone.go:1230 lxc/network_zone.go:1245 lxc/network_zone.go:1291 #: 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 @@ -1723,19 +1718,19 @@ msgstr "" #: 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:631 lxc/remote.go:669 lxc/remote.go:755 lxc/remote.go:828 -#: lxc/remote.go:884 lxc/remote.go:924 lxc/rename.go:21 lxc/restore.go:24 +#: lxc/query.go:34 lxc/rebuild.go:27 lxc/remote.go:35 lxc/remote.go:91 +#: lxc/remote.go:632 lxc/remote.go:670 lxc/remote.go:756 lxc/remote.go:829 +#: lxc/remote.go:885 lxc/remote.go:925 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_bucket.go:29 lxc/storage_bucket.go:83 lxc/storage_bucket.go:188 +#: lxc/storage_bucket.go:249 lxc/storage_bucket.go:382 +#: lxc/storage_bucket.go:458 lxc/storage_bucket.go:535 +#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:698 +#: lxc/storage_bucket.go:732 lxc/storage_bucket.go:773 +#: lxc/storage_bucket.go:852 lxc/storage_bucket.go:930 +#: lxc/storage_bucket.go:994 lxc/storage_bucket.go:1129 #: 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 @@ -1871,7 +1866,7 @@ msgstr "" msgid "Don't require user confirmation for using --force" msgstr "" -#: lxc/main.go:99 +#: lxc/main.go:100 msgid "Don't show progress information" msgstr "" @@ -1884,7 +1879,7 @@ msgstr "" msgid "Driver: %v (%v)" msgstr "" -#: lxc/network_zone.go:743 +#: lxc/network_zone.go:748 msgid "ENTRIES" msgstr "" @@ -1962,7 +1957,7 @@ msgstr "" msgid "Edit network forward configurations as YAML" msgstr "" -#: lxc/network_load_balancer.go:578 lxc/network_load_balancer.go:579 +#: lxc/network_load_balancer.go:583 lxc/network_load_balancer.go:584 msgid "Edit network load balancer configurations as YAML" msgstr "" @@ -1970,11 +1965,11 @@ msgstr "" msgid "Edit network peer configurations as YAML" msgstr "" -#: lxc/network_zone.go:464 lxc/network_zone.go:465 +#: lxc/network_zone.go:469 lxc/network_zone.go:470 msgid "Edit network zone configurations as YAML" msgstr "" -#: lxc/network_zone.go:1057 lxc/network_zone.go:1058 +#: lxc/network_zone.go:1062 lxc/network_zone.go:1063 msgid "Edit network zone record configurations as YAML" msgstr "" @@ -1986,11 +1981,11 @@ msgstr "" msgid "Edit project configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:243 lxc/storage_bucket.go:244 +#: lxc/storage_bucket.go:248 lxc/storage_bucket.go:249 msgid "Edit storage bucket configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:988 lxc/storage_bucket.go:989 +#: lxc/storage_bucket.go:993 lxc/storage_bucket.go:994 msgid "Edit storage bucket key as YAML" msgstr "" @@ -2031,7 +2026,7 @@ msgid "" " for the address if not yet set." msgstr "" -#: lxc/network_zone.go:1242 +#: lxc/network_zone.go:1247 msgid "Entry TTL" msgstr "" @@ -2060,9 +2055,9 @@ msgstr "" #: lxc/cluster.go:414 lxc/config.go:624 lxc/config.go:656 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/network_load_balancer.go:527 lxc/network_peer.go:463 +#: lxc/network_zone.go:414 lxc/network_zone.go:1008 lxc/profile.go:876 +#: lxc/project.go:634 lxc/storage.go:727 lxc/storage_bucket.go:602 #: lxc/storage_volume.go:1947 lxc/storage_volume.go:1985 #, c-format msgid "Error setting properties: %v" @@ -2074,10 +2069,10 @@ 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/network_forward.go:513 lxc/network_load_balancer.go:521 +#: lxc/network_peer.go:457 lxc/network_zone.go:408 lxc/network_zone.go:1002 #: lxc/profile.go:870 lxc/project.go:628 lxc/storage.go:721 -#: lxc/storage_bucket.go:591 lxc/storage_volume.go:1941 +#: lxc/storage_bucket.go:596 lxc/storage_volume.go:1941 #: lxc/storage_volume.go:1979 #, c-format msgid "Error unsetting property: %v" @@ -2263,7 +2258,7 @@ msgstr "" msgid "Failed parsing SSH host key: %w" msgstr "" -#: lxc/console.go:361 +#: lxc/console.go:366 #, c-format msgid "Failed starting command: %w" msgstr "" @@ -2278,11 +2273,11 @@ msgstr "" msgid "Failed to accept incoming connection: %w" msgstr "" -#: lxc/remote.go:190 +#: lxc/remote.go:191 msgid "Failed to add remote" msgstr "" -#: lxc/remote.go:241 +#: lxc/remote.go:242 #, c-format msgid "Failed to close server cert file %q: %w" msgstr "" @@ -2292,7 +2287,7 @@ msgstr "" msgid "Failed to connect to cluster member: %w" msgstr "" -#: lxc/remote.go:231 +#: lxc/remote.go:232 #, c-format msgid "Failed to create %q: %w" msgstr "" @@ -2302,12 +2297,12 @@ msgstr "" msgid "Failed to create alias %s: %w" msgstr "" -#: lxc/remote.go:256 +#: lxc/remote.go:257 #, c-format msgid "Failed to create certificate: %w" msgstr "" -#: lxc/remote.go:263 +#: lxc/remote.go:264 #, c-format msgid "Failed to find project: %w" msgstr "" @@ -2332,7 +2327,7 @@ msgstr "" msgid "Failed to walk path for %s: %s" msgstr "" -#: lxc/remote.go:236 +#: lxc/remote.go:237 #, c-format msgid "Failed to write server cert file %q: %w" msgstr "" @@ -2341,7 +2336,7 @@ msgstr "" msgid "Fast mode (same as --columns=nsacPt)" msgstr "" -#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:115 +#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:116 #: lxc/operation.go:136 msgid "Filtering isn't supported yet" msgstr "" @@ -2379,7 +2374,7 @@ msgstr "" msgid "Force the removal of running instances" msgstr "" -#: lxc/main.go:95 +#: lxc/main.go:96 msgid "Force using the local unix socket" msgstr "" @@ -2413,10 +2408,10 @@ msgstr "" #: 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/network_peer.go:84 lxc/network_zone.go:89 lxc/network_zone.go:697 #: lxc/operation.go:108 lxc/profile.go:637 lxc/project.go:412 -#: lxc/project.go:804 lxc/remote.go:673 lxc/storage.go:588 -#: lxc/storage_bucket.go:454 lxc/storage_bucket.go:769 +#: lxc/project.go:804 lxc/remote.go:674 lxc/storage.go:588 +#: lxc/storage_bucket.go:459 lxc/storage_bucket.go:774 #: lxc/storage_volume.go:1446 lxc/warning.go:93 msgid "Format (csv|json|table|yaml|compact)" msgstr "" @@ -2453,7 +2448,7 @@ msgstr "" msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)" msgstr "" -#: lxc/remote.go:737 +#: lxc/remote.go:738 msgid "GLOBAL" msgstr "" @@ -2473,7 +2468,7 @@ msgstr "" msgid "Generate manpages for all commands" msgstr "" -#: lxc/remote.go:159 lxc/remote.go:397 +#: lxc/remote.go:160 lxc/remote.go:398 msgid "Generating a client certificate. This may take a minute..." msgstr "" @@ -2505,7 +2500,7 @@ msgstr "" msgid "Get the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:386 +#: lxc/network_load_balancer.go:391 msgid "Get the key as a network load balancer property" msgstr "" @@ -2517,11 +2512,11 @@ msgstr "" msgid "Get the key as a network property" msgstr "" -#: lxc/network_zone.go:214 +#: lxc/network_zone.go:215 msgid "Get the key as a network zone property" msgstr "" -#: lxc/network_zone.go:814 +#: lxc/network_zone.go:819 msgid "Get the key as a network zone record property" msgstr "" @@ -2533,7 +2528,7 @@ msgstr "" msgid "Get the key as a project property" msgstr "" -#: lxc/storage_bucket.go:380 +#: lxc/storage_bucket.go:385 msgid "Get the key as a storage bucket property" msgstr "" @@ -2573,7 +2568,7 @@ msgstr "" msgid "Get values for network forward configuration keys" msgstr "" -#: lxc/network_load_balancer.go:382 lxc/network_load_balancer.go:383 +#: lxc/network_load_balancer.go:387 lxc/network_load_balancer.go:388 msgid "Get values for network load balancer configuration keys" msgstr "" @@ -2581,11 +2576,11 @@ msgstr "" msgid "Get values for network peer configuration keys" msgstr "" -#: lxc/network_zone.go:210 lxc/network_zone.go:211 +#: lxc/network_zone.go:211 lxc/network_zone.go:212 msgid "Get values for network zone configuration keys" msgstr "" -#: lxc/network_zone.go:810 lxc/network_zone.go:811 +#: lxc/network_zone.go:815 lxc/network_zone.go:816 msgid "Get values for network zone record configuration keys" msgstr "" @@ -2597,7 +2592,7 @@ msgstr "" msgid "Get values for project configuration keys" msgstr "" -#: lxc/storage_bucket.go:376 lxc/storage_bucket.go:377 +#: lxc/storage_bucket.go:381 lxc/storage_bucket.go:382 msgid "Get values for storage bucket configuration keys" msgstr "" @@ -2737,7 +2732,7 @@ msgstr "" msgid "If the snapshot name already exists, delete and create a new one" msgstr "" -#: lxc/main.go:398 +#: lxc/main.go:400 msgid "" "If this is your first time running LXD on this machine, you should also run: " "lxd init" @@ -2894,7 +2889,7 @@ msgstr "" msgid "Instance type" msgstr "" -#: lxc/remote.go:349 +#: lxc/remote.go:350 #, c-format msgid "Invalid URL scheme \"%s\" in \"%s\"" msgstr "" @@ -2966,7 +2961,7 @@ msgstr "" msgid "Invalid new snapshot name, parent volume must be the same as source" msgstr "" -#: lxc/main.go:498 +#: lxc/main.go:502 msgid "Invalid number of arguments" msgstr "" @@ -2975,7 +2970,7 @@ msgstr "" msgid "Invalid path %s" msgstr "" -#: lxc/remote.go:338 +#: lxc/remote.go:339 #, c-format msgid "Invalid protocol: %s" msgstr "" @@ -3023,7 +3018,7 @@ msgstr "" #: lxc/list.go:597 lxc/network.go:1059 lxc/network_forward.go:155 #: lxc/network_load_balancer.go:157 lxc/operation.go:177 -#: lxc/storage_bucket.go:511 lxc/storage_volume.go:1569 lxc/warning.go:220 +#: lxc/storage_bucket.go:516 lxc/storage_volume.go:1569 lxc/warning.go:220 msgid "LOCATION" msgstr "" @@ -3031,7 +3026,7 @@ msgstr "" msgid "LXD - Command line client" msgstr "" -#: lxc/console.go:382 +#: lxc/console.go:387 msgid "LXD automatically uses either spicy or remote-viewer when present." msgstr "" @@ -3121,15 +3116,15 @@ msgstr "" msgid "List available network peers" msgstr "" -#: lxc/network_zone.go:85 +#: lxc/network_zone.go:86 msgid "List available network zone" msgstr "" -#: lxc/network_zone.go:688 lxc/network_zone.go:689 +#: lxc/network_zone.go:693 lxc/network_zone.go:694 msgid "List available network zone records" msgstr "" -#: lxc/network_zone.go:84 +#: lxc/network_zone.go:85 msgid "List available network zoneS" msgstr "" @@ -3318,11 +3313,11 @@ msgstr "" msgid "List projects" msgstr "" -#: lxc/storage_bucket.go:766 lxc/storage_bucket.go:768 +#: lxc/storage_bucket.go:771 lxc/storage_bucket.go:773 msgid "List storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:451 lxc/storage_bucket.go:453 +#: lxc/storage_bucket.go:456 lxc/storage_bucket.go:458 msgid "List storage buckets" msgstr "" @@ -3350,7 +3345,7 @@ msgid "" " U - Current disk usage" msgstr "" -#: lxc/remote.go:668 lxc/remote.go:669 +#: lxc/remote.go:669 lxc/remote.go:670 msgid "List the available remotes" msgstr "" @@ -3577,11 +3572,11 @@ msgstr "" msgid "Manage network forwards" msgstr "" -#: lxc/network_load_balancer.go:782 lxc/network_load_balancer.go:783 +#: lxc/network_load_balancer.go:787 lxc/network_load_balancer.go:788 msgid "Manage network load balancer backends" msgstr "" -#: lxc/network_load_balancer.go:947 lxc/network_load_balancer.go:948 +#: lxc/network_load_balancer.go:952 lxc/network_load_balancer.go:953 msgid "Manage network load balancer ports" msgstr "" @@ -3593,15 +3588,15 @@ msgstr "" msgid "Manage network peerings" msgstr "" -#: lxc/network_zone.go:1224 lxc/network_zone.go:1225 +#: lxc/network_zone.go:1229 lxc/network_zone.go:1230 msgid "Manage network zone record entries" msgstr "" -#: lxc/network_zone.go:631 lxc/network_zone.go:632 +#: lxc/network_zone.go:636 lxc/network_zone.go:637 msgid "Manage network zone records" msgstr "" -#: lxc/network_zone.go:27 lxc/network_zone.go:28 +#: lxc/network_zone.go:28 lxc/network_zone.go:29 msgid "Manage network zones" msgstr "" @@ -3617,11 +3612,11 @@ msgstr "" msgid "Manage projects" msgstr "" -#: lxc/storage_bucket.go:726 +#: lxc/storage_bucket.go:731 msgid "Manage storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:727 +#: lxc/storage_bucket.go:732 msgid "Manage storage bucket keys." msgstr "" @@ -3649,7 +3644,7 @@ msgid "" "\"custom\" (user created) volumes." msgstr "" -#: lxc/remote.go:33 lxc/remote.go:34 +#: lxc/remote.go:34 lxc/remote.go:35 msgid "Manage the list of remote servers" msgstr "" @@ -3730,12 +3725,12 @@ msgid "" "Minimum level for log messages (only available when using pretty format)" msgstr "" -#: lxc/storage_bucket.go:111 lxc/storage_bucket.go:211 -#: lxc/storage_bucket.go:287 lxc/storage_bucket.go:406 -#: lxc/storage_bucket.go:563 lxc/storage_bucket.go:655 -#: lxc/storage_bucket.go:797 lxc/storage_bucket.go:878 -#: lxc/storage_bucket.go:953 lxc/storage_bucket.go:1032 -#: lxc/storage_bucket.go:1155 +#: lxc/storage_bucket.go:116 lxc/storage_bucket.go:216 +#: lxc/storage_bucket.go:292 lxc/storage_bucket.go:411 +#: lxc/storage_bucket.go:568 lxc/storage_bucket.go:660 +#: lxc/storage_bucket.go:802 lxc/storage_bucket.go:883 +#: lxc/storage_bucket.go:958 lxc/storage_bucket.go:1037 +#: lxc/storage_bucket.go:1160 msgid "Missing bucket name" msgstr "" @@ -3779,8 +3774,8 @@ msgstr "" msgid "Missing instance name" msgstr "" -#: lxc/storage_bucket.go:882 lxc/storage_bucket.go:957 -#: lxc/storage_bucket.go:1036 lxc/storage_bucket.go:1159 +#: lxc/storage_bucket.go:887 lxc/storage_bucket.go:962 +#: lxc/storage_bucket.go:1041 lxc/storage_bucket.go:1164 msgid "Missing key name" msgstr "" @@ -3788,10 +3783,10 @@ msgstr "" #: lxc/network_forward.go:481 lxc/network_forward.go:627 #: lxc/network_forward.go:746 lxc/network_forward.go:823 #: lxc/network_forward.go:889 lxc/network_load_balancer.go:201 -#: lxc/network_load_balancer.go:411 lxc/network_load_balancer.go:484 -#: lxc/network_load_balancer.go:630 lxc/network_load_balancer.go:750 -#: lxc/network_load_balancer.go:826 lxc/network_load_balancer.go:890 -#: lxc/network_load_balancer.go:991 lxc/network_load_balancer.go:1053 +#: lxc/network_load_balancer.go:416 lxc/network_load_balancer.go:489 +#: lxc/network_load_balancer.go:635 lxc/network_load_balancer.go:755 +#: lxc/network_load_balancer.go:831 lxc/network_load_balancer.go:895 +#: lxc/network_load_balancer.go:996 lxc/network_load_balancer.go:1058 msgid "Missing listen address" msgstr "" @@ -3816,26 +3811,26 @@ msgstr "" #: lxc/network_forward.go:477 lxc/network_forward.go:623 #: lxc/network_forward.go:742 lxc/network_forward.go:819 #: lxc/network_forward.go:885 lxc/network_load_balancer.go:123 -#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:261 -#: lxc/network_load_balancer.go:407 lxc/network_load_balancer.go:480 -#: lxc/network_load_balancer.go:626 lxc/network_load_balancer.go:746 -#: lxc/network_load_balancer.go:822 lxc/network_load_balancer.go:886 -#: lxc/network_load_balancer.go:987 lxc/network_load_balancer.go:1049 +#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:266 +#: lxc/network_load_balancer.go:412 lxc/network_load_balancer.go:485 +#: lxc/network_load_balancer.go:631 lxc/network_load_balancer.go:751 +#: lxc/network_load_balancer.go:827 lxc/network_load_balancer.go:891 +#: lxc/network_load_balancer.go:992 lxc/network_load_balancer.go:1054 #: lxc/network_peer.go:110 lxc/network_peer.go:180 lxc/network_peer.go:237 #: lxc/network_peer.go:355 lxc/network_peer.go:426 lxc/network_peer.go:556 #: lxc/network_peer.go:665 msgid "Missing network name" msgstr "" -#: lxc/network_zone.go:178 lxc/network_zone.go:234 lxc/network_zone.go:294 -#: lxc/network_zone.go:382 lxc/network_zone.go:503 lxc/network_zone.go:606 -#: lxc/network_zone.go:712 lxc/network_zone.go:780 lxc/network_zone.go:892 -#: lxc/network_zone.go:976 lxc/network_zone.go:1197 lxc/network_zone.go:1262 -#: lxc/network_zone.go:1307 +#: lxc/network_zone.go:179 lxc/network_zone.go:235 lxc/network_zone.go:299 +#: lxc/network_zone.go:387 lxc/network_zone.go:508 lxc/network_zone.go:611 +#: lxc/network_zone.go:717 lxc/network_zone.go:785 lxc/network_zone.go:897 +#: lxc/network_zone.go:981 lxc/network_zone.go:1202 lxc/network_zone.go:1267 +#: lxc/network_zone.go:1312 msgid "Missing network zone name" msgstr "" -#: lxc/network_zone.go:833 lxc/network_zone.go:1095 +#: lxc/network_zone.go:838 lxc/network_zone.go:1100 msgid "Missing network zone record name" msgstr "" @@ -3845,13 +3840,13 @@ msgid "Missing peer name" msgstr "" #: lxc/storage.go:194 lxc/storage.go:264 lxc/storage.go:370 lxc/storage.go:440 -#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:107 -#: lxc/storage_bucket.go:207 lxc/storage_bucket.go:283 -#: lxc/storage_bucket.go:402 lxc/storage_bucket.go:477 -#: lxc/storage_bucket.go:559 lxc/storage_bucket.go:651 -#: lxc/storage_bucket.go:793 lxc/storage_bucket.go:874 -#: lxc/storage_bucket.go:949 lxc/storage_bucket.go:1028 -#: lxc/storage_bucket.go:1151 lxc/storage_volume.go:189 +#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:112 +#: lxc/storage_bucket.go:212 lxc/storage_bucket.go:288 +#: lxc/storage_bucket.go:407 lxc/storage_bucket.go:482 +#: lxc/storage_bucket.go:564 lxc/storage_bucket.go:656 +#: lxc/storage_bucket.go:798 lxc/storage_bucket.go:879 +#: lxc/storage_bucket.go:954 lxc/storage_bucket.go:1033 +#: lxc/storage_bucket.go:1156 lxc/storage_volume.go:189 #: lxc/storage_volume.go:287 lxc/storage_volume.go:583 #: lxc/storage_volume.go:660 lxc/storage_volume.go:735 #: lxc/storage_volume.go:817 lxc/storage_volume.go:919 @@ -3971,7 +3966,7 @@ msgstr "" msgid "Moving the storage volume: %s" msgstr "" -#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1097 +#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1102 msgid "Multiple ports match. Use --force to remove them all" msgstr "" @@ -3990,10 +3985,10 @@ 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:677 lxc/project.go:498 -#: lxc/remote.go:731 lxc/storage.go:638 lxc/storage_bucket.go:506 -#: lxc/storage_bucket.go:826 lxc/storage_volume.go:1561 +#: lxc/network_acl.go:147 lxc/network_peer.go:139 lxc/network_zone.go:139 +#: lxc/network_zone.go:746 lxc/profile.go:677 lxc/project.go:498 +#: lxc/remote.go:732 lxc/storage.go:638 lxc/storage_bucket.go:511 +#: lxc/storage_bucket.go:831 lxc/storage_volume.go:1561 msgid "NAME" msgstr "" @@ -4019,7 +4014,7 @@ msgstr "" #: lxc/network.go:957 lxc/operation.go:154 lxc/project.go:456 #: lxc/project.go:461 lxc/project.go:466 lxc/project.go:471 lxc/project.go:476 -#: lxc/project.go:481 lxc/remote.go:691 lxc/remote.go:696 lxc/remote.go:701 +#: lxc/project.go:481 lxc/remote.go:692 lxc/remote.go:697 lxc/remote.go:702 msgid "NO" msgstr "" @@ -4046,7 +4041,7 @@ msgstr "" msgid "Name" msgstr "" -#: lxc/remote.go:141 +#: lxc/remote.go:142 msgid "Name of the project to use for this remote:" msgstr "" @@ -4095,12 +4090,12 @@ msgstr "" msgid "Network ACL %s renamed to %s" msgstr "" -#: lxc/network_zone.go:336 +#: lxc/network_zone.go:341 #, c-format msgid "Network Zone %s created" msgstr "" -#: lxc/network_zone.go:616 +#: lxc/network_zone.go:621 #, c-format msgid "Network Zone %s deleted" msgstr "" @@ -4115,12 +4110,12 @@ msgstr "" msgid "Network forward %s deleted" msgstr "" -#: lxc/network_load_balancer.go:365 +#: lxc/network_load_balancer.go:370 #, c-format msgid "Network load balancer %s created" msgstr "" -#: lxc/network_load_balancer.go:767 +#: lxc/network_load_balancer.go:772 #, c-format msgid "Network load balancer %s deleted" msgstr "" @@ -4158,12 +4153,12 @@ msgstr "" msgid "Network usage:" msgstr "" -#: lxc/network_zone.go:934 +#: lxc/network_zone.go:939 #, c-format msgid "Network zone record %s created" msgstr "" -#: lxc/network_zone.go:1207 +#: lxc/network_zone.go:1212 #, c-format msgid "Network zone record %s deleted" msgstr "" @@ -4198,11 +4193,11 @@ msgstr "" msgid "No device found for this storage volume" msgstr "" -#: lxc/network_load_balancer.go:921 +#: lxc/network_load_balancer.go:926 msgid "No matching backend found" msgstr "" -#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1108 +#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1113 msgid "No matching port(s) found" msgstr "" @@ -4248,7 +4243,7 @@ msgstr "" msgid "Only \"custom\" volumes can be snapshotted" msgstr "" -#: lxc/remote.go:332 +#: lxc/remote.go:333 msgid "Only https URLs are supported for simplestreams" msgstr "" @@ -4273,7 +4268,7 @@ msgstr "" msgid "Optimized Storage" msgstr "" -#: lxc/main.go:96 +#: lxc/main.go:97 msgid "Override the source project" msgstr "" @@ -4319,11 +4314,11 @@ msgstr "" msgid "PROJECT" msgstr "" -#: lxc/remote.go:733 +#: lxc/remote.go:734 msgid "PROTOCOL" msgstr "" -#: lxc/image.go:1073 lxc/remote.go:735 +#: lxc/image.go:1073 lxc/remote.go:736 msgid "PUBLIC" msgstr "" @@ -4339,7 +4334,7 @@ msgstr "" msgid "Partitions:" msgstr "" -#: lxc/main.go:361 +#: lxc/main.go:363 #, c-format msgid "Password for %s: " msgstr "" @@ -4352,7 +4347,7 @@ msgstr "" msgid "Perform an incremental copy" msgstr "" -#: lxc/remote.go:182 +#: lxc/remote.go:183 msgid "Please provide an alternate server address (empty to abort):" msgstr "" @@ -4364,7 +4359,7 @@ msgstr "" msgid "Please provide cluster member name: " msgstr "" -#: lxc/remote.go:462 +#: lxc/remote.go:463 msgid "Please type 'y', 'n' or the fingerprint:" msgstr "" @@ -4386,10 +4381,10 @@ msgstr "" #: lxc/config.go:1278 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/network_load_balancer.go:695 lxc/network_peer.go:611 +#: lxc/network_zone.go:557 lxc/network_zone.go:1149 lxc/profile.go:539 +#: lxc/project.go:316 lxc/storage.go:311 lxc/storage_bucket.go:349 +#: lxc/storage_bucket.go:1098 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 "" @@ -4398,7 +4393,7 @@ msgstr "" msgid "Pretty rendering (short for --format=pretty)" msgstr "" -#: lxc/main.go:94 +#: lxc/main.go:95 msgid "Print help" msgstr "" @@ -4406,7 +4401,7 @@ msgstr "" msgid "Print the raw response" msgstr "" -#: lxc/main.go:93 +#: lxc/main.go:94 msgid "Print version number" msgstr "" @@ -4495,7 +4490,7 @@ msgstr "" msgid "Project %s renamed to %s" msgstr "" -#: lxc/remote.go:106 +#: lxc/remote.go:107 msgid "Project to use for the remote" msgstr "" @@ -4593,7 +4588,7 @@ msgid "" "pool \"default\"." msgstr "" -#: lxc/remote.go:105 +#: lxc/remote.go:106 msgid "Public image server" msgstr "" @@ -4641,7 +4636,7 @@ msgstr "" msgid "RESOURCE" msgstr "" -#: lxc/storage_bucket.go:828 +#: lxc/storage_bucket.go:833 msgid "ROLE" msgstr "" @@ -4684,45 +4679,45 @@ msgstr "" msgid "Refreshing the image: %s" msgstr "" -#: lxc/remote.go:785 +#: lxc/remote.go:786 #, c-format msgid "Remote %s already exists" msgstr "" -#: lxc/project.go:769 lxc/remote.go:776 lxc/remote.go:849 lxc/remote.go:905 -#: lxc/remote.go:945 +#: lxc/project.go:769 lxc/remote.go:777 lxc/remote.go:850 lxc/remote.go:906 +#: lxc/remote.go:946 #, c-format msgid "Remote %s doesn't exist" msgstr "" -#: lxc/remote.go:301 +#: lxc/remote.go:302 #, c-format msgid "Remote %s exists as <%s>" msgstr "" -#: lxc/remote.go:857 +#: lxc/remote.go:858 #, c-format msgid "Remote %s is global and cannot be removed" msgstr "" -#: lxc/remote.go:780 lxc/remote.go:853 lxc/remote.go:949 +#: lxc/remote.go:781 lxc/remote.go:854 lxc/remote.go:950 #, c-format msgid "Remote %s is static and cannot be modified" msgstr "" -#: lxc/remote.go:290 +#: lxc/remote.go:291 msgid "Remote address must not be empty" msgstr "" -#: lxc/remote.go:101 +#: lxc/remote.go:102 msgid "Remote admin password" msgstr "" -#: lxc/remote.go:295 +#: lxc/remote.go:296 msgid "Remote names may not contain colons" msgstr "" -#: lxc/remote.go:102 +#: lxc/remote.go:103 msgid "Remote trust token" msgstr "" @@ -4748,7 +4743,7 @@ msgstr "" msgid "Remove a member from the cluster" msgstr "" -#: lxc/network_zone.go:1285 +#: lxc/network_zone.go:1290 msgid "Remove a network zone record entry" msgstr "" @@ -4756,7 +4751,7 @@ msgstr "" msgid "Remove aliases" msgstr "" -#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1025 +#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1030 msgid "Remove all ports that match" msgstr "" @@ -4764,15 +4759,15 @@ msgstr "" msgid "Remove all rules that match" msgstr "" -#: lxc/network_load_balancer.go:862 +#: lxc/network_load_balancer.go:867 msgid "Remove backend from a load balancer" msgstr "" -#: lxc/network_load_balancer.go:861 +#: lxc/network_load_balancer.go:866 msgid "Remove backends from a load balancer" msgstr "" -#: lxc/network_zone.go:1286 +#: lxc/network_zone.go:1291 msgid "Remove entries from a network zone record" msgstr "" @@ -4796,7 +4791,7 @@ msgstr "" msgid "Remove ports from a forward" msgstr "" -#: lxc/network_load_balancer.go:1023 lxc/network_load_balancer.go:1024 +#: lxc/network_load_balancer.go:1028 lxc/network_load_balancer.go:1029 msgid "Remove ports from a load balancer" msgstr "" @@ -4804,7 +4799,7 @@ msgstr "" msgid "Remove profiles from instances" msgstr "" -#: lxc/remote.go:827 lxc/remote.go:828 +#: lxc/remote.go:828 lxc/remote.go:829 msgid "Remove remotes" msgstr "" @@ -4861,7 +4856,7 @@ msgstr "" msgid "Rename projects" msgstr "" -#: lxc/remote.go:754 lxc/remote.go:755 +#: lxc/remote.go:755 lxc/remote.go:756 msgid "Rename remotes" msgstr "" @@ -4939,7 +4934,7 @@ msgid "Restrict the certificate to one or more projects" msgstr "" #: lxc/console.go:44 -msgid "Retrieve the instance's console log" +msgid "Retrieve the container's console log" msgstr "" #: lxc/init.go:347 @@ -4955,7 +4950,7 @@ msgstr "" msgid "Revoke cluster member join token" msgstr "" -#: lxc/storage_bucket.go:851 +#: lxc/storage_bucket.go:856 msgid "Role (admin or read-only)" msgstr "" @@ -5006,7 +5001,7 @@ msgstr "" msgid "STATE" msgstr "" -#: lxc/remote.go:736 +#: lxc/remote.go:737 msgid "STATIC" msgstr "" @@ -5030,11 +5025,11 @@ msgstr "" msgid "STP" msgstr "" -#: lxc/storage_bucket.go:853 +#: lxc/storage_bucket.go:858 msgid "Secret key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:909 +#: lxc/storage_bucket.go:914 #, c-format msgid "Secret key: %s" msgstr "" @@ -5043,19 +5038,19 @@ msgstr "" msgid "Send a raw query to LXD" msgstr "" -#: lxc/remote.go:104 +#: lxc/remote.go:105 msgid "Server authentication type (tls or oidc)" msgstr "" -#: lxc/remote.go:460 +#: lxc/remote.go:461 msgid "Server certificate NACKed by user" msgstr "" -#: lxc/remote.go:599 +#: lxc/remote.go:600 msgid "Server doesn't trust us after authentication" msgstr "" -#: lxc/remote.go:103 +#: lxc/remote.go:104 msgid "Server protocol (lxd or simplestreams)" msgstr "" @@ -5154,11 +5149,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_load_balancer.go:450 +#: lxc/network_load_balancer.go:455 msgid "Set network load balancer keys" msgstr "" -#: lxc/network_load_balancer.go:451 +#: lxc/network_load_balancer.go:456 msgid "" "Set network load balancer keys\n" "\n" @@ -5180,11 +5175,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:353 +#: lxc/network_zone.go:358 msgid "Set network zone configuration keys" msgstr "" -#: lxc/network_zone.go:354 +#: lxc/network_zone.go:359 msgid "" "Set network zone configuration keys\n" "\n" @@ -5193,7 +5188,7 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:951 lxc/network_zone.go:952 +#: lxc/network_zone.go:956 lxc/network_zone.go:957 msgid "Set network zone record configuration keys" msgstr "" @@ -5223,11 +5218,11 @@ msgid "" " lxc project set [:] " msgstr "" -#: lxc/storage_bucket.go:529 +#: lxc/storage_bucket.go:534 msgid "Set storage bucket configuration keys" msgstr "" -#: lxc/storage_bucket.go:530 +#: lxc/storage_bucket.go:535 msgid "" "Set storage bucket configuration keys\n" "\n" @@ -5262,7 +5257,7 @@ msgid "" " lxc storage volume set [:] [/] " msgstr "" -#: lxc/remote.go:923 lxc/remote.go:924 +#: lxc/remote.go:924 lxc/remote.go:925 msgid "Set the URL for the remote" msgstr "" @@ -5290,7 +5285,7 @@ msgstr "" msgid "Set the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:458 +#: lxc/network_load_balancer.go:463 msgid "Set the key as a network load balancer property" msgstr "" @@ -5302,11 +5297,11 @@ msgstr "" msgid "Set the key as a network property" msgstr "" -#: lxc/network_zone.go:361 +#: lxc/network_zone.go:366 msgid "Set the key as a network zone property" msgstr "" -#: lxc/network_zone.go:957 +#: lxc/network_zone.go:962 msgid "Set the key as a network zone record property" msgstr "" @@ -5318,7 +5313,7 @@ msgstr "" msgid "Set the key as a project property" msgstr "" -#: lxc/storage_bucket.go:537 +#: lxc/storage_bucket.go:542 msgid "Set the key as a storage bucket property" msgstr "" @@ -5338,11 +5333,11 @@ msgstr "" msgid "Setup SSH SFTP listener on address:port instead of mounting" msgstr "" -#: lxc/main.go:97 +#: lxc/main.go:98 msgid "Show all debug messages" msgstr "" -#: lxc/main.go:98 +#: lxc/main.go:99 msgid "Show all information messages" msgstr "" @@ -5411,7 +5406,7 @@ msgstr "" msgid "Show instance or server information" msgstr "" -#: lxc/main.go:271 lxc/main.go:272 +#: lxc/main.go:272 lxc/main.go:273 msgid "Show less common commands" msgstr "" @@ -5443,15 +5438,15 @@ msgstr "" msgid "Show network peer configurations" msgstr "" -#: lxc/network_zone.go:155 lxc/network_zone.go:156 +#: lxc/network_zone.go:156 lxc/network_zone.go:157 msgid "Show network zone configurations" msgstr "" -#: lxc/network_zone.go:758 +#: lxc/network_zone.go:763 msgid "Show network zone record configuration" msgstr "" -#: lxc/network_zone.go:759 +#: lxc/network_zone.go:764 msgid "Show network zone record configurations" msgstr "" @@ -5463,11 +5458,11 @@ msgstr "" msgid "Show project options" msgstr "" -#: lxc/storage_bucket.go:623 lxc/storage_bucket.go:624 +#: lxc/storage_bucket.go:628 lxc/storage_bucket.go:629 msgid "Show storage bucket configurations" msgstr "" -#: lxc/storage_bucket.go:1123 lxc/storage_bucket.go:1124 +#: lxc/storage_bucket.go:1128 lxc/storage_bucket.go:1129 msgid "Show storage bucket key configurations" msgstr "" @@ -5493,7 +5488,7 @@ msgid "" "that are granted via identity provider group mappings. \n" msgstr "" -#: lxc/remote.go:630 lxc/remote.go:631 +#: lxc/remote.go:631 lxc/remote.go:632 msgid "Show the default remote" msgstr "" @@ -5617,22 +5612,22 @@ msgstr "" msgid "Stopping the instance failed: %s" msgstr "" -#: lxc/storage_bucket.go:161 +#: lxc/storage_bucket.go:166 #, c-format msgid "Storage bucket %s created" msgstr "" -#: lxc/storage_bucket.go:228 +#: lxc/storage_bucket.go:233 #, c-format msgid "Storage bucket %s deleted" msgstr "" -#: lxc/storage_bucket.go:907 +#: lxc/storage_bucket.go:912 #, c-format msgid "Storage bucket key %s added" msgstr "" -#: lxc/storage_bucket.go:973 +#: lxc/storage_bucket.go:978 #, c-format msgid "Storage bucket key %s removed" msgstr "" @@ -5705,7 +5700,7 @@ msgstr "" msgid "Switch the current project" msgstr "" -#: lxc/remote.go:883 lxc/remote.go:884 +#: lxc/remote.go:884 lxc/remote.go:885 msgid "Switch the default remote" msgstr "" @@ -5820,7 +5815,7 @@ msgstr "" msgid "The property %q does not exist on the instance snapshot %s/%s: %v" msgstr "" -#: lxc/network_load_balancer.go:424 +#: lxc/network_load_balancer.go:429 #, c-format msgid "The property %q does not exist on the load balancer %q: %v" msgstr "" @@ -5845,12 +5840,12 @@ msgstr "" msgid "The property %q does not exist on the network peer %q: %v" msgstr "" -#: lxc/network_zone.go:246 +#: lxc/network_zone.go:247 #, c-format msgid "The property %q does not exist on the network zone %q: %v" msgstr "" -#: lxc/network_zone.go:845 +#: lxc/network_zone.go:850 #, c-format msgid "The property %q does not exist on the network zone record %q: %v" msgstr "" @@ -5865,7 +5860,7 @@ msgstr "" msgid "The property %q does not exist on the project %q: %v" msgstr "" -#: lxc/storage_bucket.go:426 +#: lxc/storage_bucket.go:431 #, c-format msgid "The property %q does not exist on the storage bucket %q: %v" msgstr "" @@ -5919,7 +5914,7 @@ msgstr "" msgid "This LXD server is not available on the network" msgstr "" -#: lxc/main.go:293 +#: lxc/main.go:294 msgid "" "This client hasn't been configured to use a remote LXD server yet.\n" "As your platform can't run native Linux instances, you must connect to a " @@ -5951,11 +5946,11 @@ msgstr "" msgid "To create a new network, use: lxc network create" msgstr "" -#: lxc/console.go:210 +#: lxc/console.go:215 msgid "To detach from the console, press: +a q" msgstr "" -#: lxc/main.go:403 +#: lxc/main.go:406 msgid "" "To start your first container, try: lxc launch ubuntu:24.04\n" "Or for a virtual machine: lxc launch ubuntu:24.04 --vm" @@ -6053,7 +6048,7 @@ msgstr "" msgid "UPLOAD DATE" msgstr "" -#: lxc/cluster.go:184 lxc/remote.go:732 +#: lxc/cluster.go:184 lxc/remote.go:733 msgid "URL" msgstr "" @@ -6062,7 +6057,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:679 lxc/project.go:506 +#: lxc/network_zone.go:141 lxc/profile.go:679 lxc/project.go:506 #: lxc/storage.go:647 lxc/storage_volume.go:1564 msgid "USED BY" msgstr "" @@ -6081,7 +6076,7 @@ msgstr "" msgid "Unable to create a temporary file: %v" msgstr "" -#: lxc/remote.go:213 lxc/remote.go:247 +#: lxc/remote.go:214 lxc/remote.go:248 msgid "Unavailable remote server" msgstr "" @@ -6101,7 +6096,7 @@ msgstr "" msgid "Unknown column shorthand char '%c' in '%s'" msgstr "" -#: lxc/console.go:159 +#: lxc/console.go:164 #, c-format msgid "Unknown console type %q" msgstr "" @@ -6161,11 +6156,11 @@ msgstr "" msgid "Unset network forward keys" msgstr "" -#: lxc/network_load_balancer.go:548 +#: lxc/network_load_balancer.go:553 msgid "Unset network load balancer configuration keys" msgstr "" -#: lxc/network_load_balancer.go:549 +#: lxc/network_load_balancer.go:554 msgid "Unset network load balancer keys" msgstr "" @@ -6177,11 +6172,11 @@ msgstr "" msgid "Unset network peer keys" msgstr "" -#: lxc/network_zone.go:433 lxc/network_zone.go:434 +#: lxc/network_zone.go:438 lxc/network_zone.go:439 msgid "Unset network zone configuration keys" msgstr "" -#: lxc/network_zone.go:1027 lxc/network_zone.go:1028 +#: lxc/network_zone.go:1032 lxc/network_zone.go:1033 msgid "Unset network zone record configuration keys" msgstr "" @@ -6193,7 +6188,7 @@ msgstr "" msgid "Unset project configuration keys" msgstr "" -#: lxc/storage_bucket.go:692 lxc/storage_bucket.go:693 +#: lxc/storage_bucket.go:697 lxc/storage_bucket.go:698 msgid "Unset storage bucket configuration keys" msgstr "" @@ -6217,7 +6212,7 @@ msgstr "" msgid "Unset the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:552 +#: lxc/network_load_balancer.go:557 msgid "Unset the key as a network load balancer property" msgstr "" @@ -6229,11 +6224,11 @@ msgstr "" msgid "Unset the key as a network property" msgstr "" -#: lxc/network_zone.go:437 +#: lxc/network_zone.go:442 msgid "Unset the key as a network zone property" msgstr "" -#: lxc/network_zone.go:1031 +#: lxc/network_zone.go:1036 msgid "Unset the key as a network zone record property" msgstr "" @@ -6245,7 +6240,7 @@ msgstr "" msgid "Unset the key as a project property" msgstr "" -#: lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:701 msgid "Unset the key as a storage bucket property" msgstr "" @@ -6307,7 +6302,7 @@ msgid "" "Use storage driver optimized format (can only be restored on a similar pool)" msgstr "" -#: lxc/main.go:100 +#: lxc/main.go:101 msgid "Use with help or --help to view sub-commands" msgstr "" @@ -6404,7 +6399,7 @@ msgstr "" #: lxc/network.go:959 lxc/operation.go:156 lxc/project.go:458 #: lxc/project.go:463 lxc/project.go:468 lxc/project.go:473 lxc/project.go:478 -#: lxc/project.go:483 lxc/remote.go:693 lxc/remote.go:698 lxc/remote.go:703 +#: lxc/project.go:483 lxc/remote.go:694 lxc/remote.go:699 lxc/remote.go:704 msgid "YES" msgstr "" @@ -6439,7 +6434,7 @@ 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/network.go:909 lxc/network_acl.go:91 lxc/network_zone.go:83 #: 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 "[:]" @@ -6502,19 +6497,19 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:154 lxc/network_zone.go:463 lxc/network_zone.go:581 +#: lxc/network_zone.go:155 lxc/network_zone.go:468 lxc/network_zone.go:586 msgid "[:]" msgstr "" -#: lxc/network_zone.go:209 lxc/network_zone.go:432 +#: lxc/network_zone.go:210 lxc/network_zone.go:437 msgid "[:] " msgstr "" -#: lxc/network_zone.go:352 +#: lxc/network_zone.go:357 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:269 +#: lxc/network_zone.go:270 msgid "[:] [key=value...]" msgstr "" @@ -6760,30 +6755,30 @@ msgstr "" #: lxc/network_forward.go:169 lxc/network_forward.go:574 #: lxc/network_forward.go:715 lxc/network_load_balancer.go:171 -#: lxc/network_load_balancer.go:577 lxc/network_load_balancer.go:719 +#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:724 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:860 +#: lxc/network_load_balancer.go:865 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:796 +#: lxc/network_load_balancer.go:801 msgid "" "[:] " "[]" msgstr "" #: lxc/network_forward.go:377 lxc/network_forward.go:544 -#: lxc/network_load_balancer.go:381 lxc/network_load_balancer.go:547 +#: lxc/network_load_balancer.go:386 lxc/network_load_balancer.go:552 msgid "[:] " msgstr "" -#: lxc/network_forward.go:446 lxc/network_load_balancer.go:449 +#: lxc/network_forward.go:446 lxc/network_load_balancer.go:454 msgid "[:] =..." msgstr "" -#: lxc/network_load_balancer.go:961 +#: lxc/network_load_balancer.go:966 msgid "" "[:] " "[,...]" @@ -6795,7 +6790,7 @@ msgid "" " []" msgstr "" -#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1022 +#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1027 msgid "[:] [] []" msgstr "" @@ -6846,7 +6841,7 @@ msgid "[:]" msgstr "" #: lxc/storage.go:167 lxc/storage.go:218 lxc/storage.go:412 lxc/storage.go:759 -#: lxc/storage_bucket.go:449 +#: lxc/storage_bucket.go:454 msgid "[:]" msgstr "" @@ -6854,18 +6849,18 @@ msgstr "" msgid "[:] []" msgstr "" -#: lxc/storage_bucket.go:180 lxc/storage_bucket.go:242 -#: lxc/storage_bucket.go:622 lxc/storage_bucket.go:764 +#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:247 +#: lxc/storage_bucket.go:627 lxc/storage_bucket.go:769 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:375 lxc/storage_bucket.go:691 -#: lxc/storage_bucket.go:845 lxc/storage_bucket.go:923 -#: lxc/storage_bucket.go:987 lxc/storage_bucket.go:1122 +#: lxc/storage_bucket.go:380 lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:850 lxc/storage_bucket.go:928 +#: lxc/storage_bucket.go:992 lxc/storage_bucket.go:1127 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:528 +#: lxc/storage_bucket.go:533 msgid "[:] =..." msgstr "" @@ -7009,27 +7004,27 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:686 +#: lxc/network_zone.go:691 msgid "[:]" msgstr "" -#: lxc/network_zone.go:757 lxc/network_zone.go:1056 lxc/network_zone.go:1173 +#: lxc/network_zone.go:762 lxc/network_zone.go:1061 lxc/network_zone.go:1178 msgid "[:] " msgstr "" -#: lxc/network_zone.go:809 lxc/network_zone.go:1026 +#: lxc/network_zone.go:814 lxc/network_zone.go:1031 msgid "[:] " msgstr "" -#: lxc/network_zone.go:950 +#: lxc/network_zone.go:955 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:1238 lxc/network_zone.go:1284 +#: lxc/network_zone.go:1243 lxc/network_zone.go:1289 msgid "[:] " msgstr "" -#: lxc/network_zone.go:868 +#: lxc/network_zone.go:873 msgid "[:] [key=value...]" msgstr "" @@ -7053,7 +7048,7 @@ msgstr "" msgid "[:][] [...]" msgstr "" -#: lxc/remote.go:88 +#: lxc/remote.go:89 msgid "[] " msgstr "" @@ -7061,7 +7056,7 @@ msgstr "" msgid "[[:]]" msgstr "" -#: lxc/project.go:488 lxc/remote.go:722 +#: lxc/project.go:488 lxc/remote.go:723 msgid "current" msgstr "" @@ -7324,6 +7319,23 @@ msgid "" " Create a new OVN network called bar using baz as its uplink network" msgstr "" +#: lxc/network_load_balancer.go:239 +msgid "" +"lxc network load-balancer create n1 127.0.0.1\n" +"\n" +"lxc network load-balancer create n1 127.0.0.1 < config.yaml\n" +" Create network load-balancer for network n1 with configuration from " +"config.yaml" +msgstr "" + +#: lxc/network_zone.go:273 +msgid "" +"lxc network zone create z1\n" +"\n" +"lxc network zone create z1 < config.yaml\n" +" Create network zone z1 with configuration from config.yaml" +msgstr "" + #: lxc/operation.go:195 msgid "" "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n" @@ -7394,26 +7406,36 @@ msgid "" " Restore the snapshot." msgstr "" -#: lxc/storage_bucket.go:245 +#: lxc/storage_bucket.go:84 +msgid "" +"lxc storage bucket create p1 b01\n" +"\tCreate a new storage bucket name b01 in storage pool p1\n" +"\n" +"lxc storage bucket create p1 b01 < config.yaml\n" +"\tCreate a new storage bucket name b01 in storage pool p1 using the content " +"of config.yaml" +msgstr "" + +#: lxc/storage_bucket.go:250 msgid "" "lxc storage bucket edit [:] < bucket.yaml\n" " Update a storage bucket using the content of bucket.yaml." msgstr "" -#: lxc/storage_bucket.go:990 +#: lxc/storage_bucket.go:995 msgid "" "lxc storage bucket edit [:] < key.yaml\n" " Update a storage bucket key using the content of key.yaml." msgstr "" -#: lxc/storage_bucket.go:1125 +#: lxc/storage_bucket.go:1130 msgid "" "lxc storage bucket key show default data foo\n" " Will show the properties of a bucket key called \"foo\" for a bucket " "called \"data\" in the \"default\" pool." msgstr "" -#: lxc/storage_bucket.go:625 +#: lxc/storage_bucket.go:630 msgid "" "lxc storage bucket show default data\n" " Will show the properties of a bucket called \"data\" in the \"default\" " @@ -7432,7 +7454,7 @@ msgid "" "\t\tCreate a new custom volume using backup0.tar.gz as the source." msgstr "" -#: lxc/remote.go:459 +#: lxc/remote.go:460 msgid "n" msgstr "" @@ -7444,7 +7466,7 @@ msgstr "" msgid "no" msgstr "" -#: lxc/remote.go:452 +#: lxc/remote.go:453 msgid "ok (y/n/[fingerprint])?" msgstr "" @@ -7481,7 +7503,7 @@ msgstr "" msgid "used by" msgstr "" -#: lxc/remote.go:461 +#: lxc/remote.go:462 msgid "y" msgstr "" diff --git a/po/cs.po b/po/cs.po index 5ad465f087c8..4da15cd1e2e2 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-08-20 09:31+0100\n" +"POT-Creation-Date: 2024-08-30 09:27+0100\n" "PO-Revision-Date: 2022-03-10 15:11+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Czech =2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 4.12-dev\n" -#: lxc/storage_bucket.go:255 lxc/storage_bucket.go:1000 +#: lxc/storage_bucket.go:260 lxc/storage_bucket.go:1005 msgid "" "### This is a YAML representation of a storage bucket.\n" "### Any line starting with a '# will be ignored.\n" @@ -281,7 +281,7 @@ msgid "" "### Note that the listen_address and location cannot be changed." msgstr "" -#: lxc/network_load_balancer.go:588 +#: lxc/network_load_balancer.go:593 msgid "" "### This is a YAML representation of the network load balancer.\n" "### Any line starting with a '# will be ignored.\n" @@ -322,7 +322,7 @@ msgid "" "cannot be changed." msgstr "" -#: lxc/network_zone.go:1066 +#: lxc/network_zone.go:1071 msgid "" "### This is a YAML representation of the network zone record.\n" "### Any line starting with a '# will be ignored.\n" @@ -336,7 +336,7 @@ msgid "" "### user.foo: bah\n" msgstr "" -#: lxc/network_zone.go:473 +#: lxc/network_zone.go:478 msgid "" "### This is a YAML representation of the network zone.\n" "### Any line starting with a '# will be ignored.\n" @@ -515,15 +515,15 @@ msgstr "" msgid " " msgstr "" -#: lxc/remote.go:825 lxc/remote.go:882 +#: lxc/remote.go:826 lxc/remote.go:883 msgid "" msgstr "" -#: lxc/remote.go:922 +#: lxc/remote.go:923 msgid " " msgstr "" -#: lxc/remote.go:752 +#: lxc/remote.go:753 msgid " " msgstr "" @@ -556,7 +556,7 @@ msgstr "" msgid "ARCHITECTURE" msgstr "" -#: lxc/remote.go:734 +#: lxc/remote.go:735 msgid "AUTH TYPE" msgstr "" @@ -564,15 +564,15 @@ msgstr "" msgid "AUTHENTICATION METHOD" msgstr "" -#: lxc/remote.go:100 +#: lxc/remote.go:101 msgid "Accept certificate" msgstr "" -#: lxc/storage_bucket.go:852 +#: lxc/storage_bucket.go:857 msgid "Access key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:908 +#: lxc/storage_bucket.go:913 #, c-format msgid "Access key: %s" msgstr "" @@ -606,19 +606,19 @@ msgstr "" msgid "Add a group to an identity provider group" msgstr "" -#: lxc/network_zone.go:1239 +#: lxc/network_zone.go:1244 msgid "Add a network zone record entry" msgstr "" -#: lxc/network_load_balancer.go:798 +#: lxc/network_load_balancer.go:803 msgid "Add backend to a load balancer" msgstr "" -#: lxc/network_load_balancer.go:797 +#: lxc/network_load_balancer.go:802 msgid "Add backends to a load balancer" msgstr "" -#: lxc/network_zone.go:1240 +#: lxc/network_zone.go:1245 msgid "Add entries to a network zone record" msgstr "" @@ -634,11 +634,11 @@ msgstr "" msgid "Add new aliases" msgstr "" -#: lxc/remote.go:89 +#: lxc/remote.go:90 msgid "Add new remote servers" msgstr "" -#: lxc/remote.go:90 +#: lxc/remote.go:91 msgid "" "Add new remote servers\n" "\n" @@ -679,7 +679,7 @@ msgstr "" msgid "Add ports to a forward" msgstr "" -#: lxc/network_load_balancer.go:962 lxc/network_load_balancer.go:963 +#: lxc/network_load_balancer.go:967 lxc/network_load_balancer.go:968 msgid "Add ports to a load balancer" msgstr "" @@ -700,17 +700,17 @@ msgstr "" msgid "Address: %s" msgstr "" -#: lxc/storage_bucket.go:164 +#: lxc/storage_bucket.go:169 #, c-format msgid "Admin access key: %s" msgstr "" -#: lxc/remote.go:566 +#: lxc/remote.go:567 #, c-format msgid "Admin password (or token) for %s:" msgstr "" -#: lxc/storage_bucket.go:165 +#: lxc/storage_bucket.go:170 #, c-format msgid "Admin secret key: %s" msgstr "" @@ -742,7 +742,7 @@ msgstr "" msgid "All projects" msgstr "" -#: lxc/remote.go:181 +#: lxc/remote.go:182 msgid "All server addresses are unavailable" msgstr "" @@ -765,7 +765,7 @@ msgstr "" msgid "Are you sure you want to %s cluster member %q? (yes/no) [default=no]: " msgstr "" -#: lxc/console.go:383 +#: lxc/console.go:388 msgid "As neither could be found, the raw SPICE socket can be found at:" msgstr "" @@ -813,7 +813,7 @@ msgid "" "as well as retrieve past log entries from it." msgstr "" -#: lxc/remote.go:548 +#: lxc/remote.go:549 #, c-format msgid "Authentication type '%s' not supported by server" msgstr "" @@ -832,11 +832,11 @@ msgstr "" msgid "Auto update: %s" msgstr "" -#: lxc/network_forward.go:240 lxc/network_load_balancer.go:242 +#: lxc/network_forward.go:240 lxc/network_load_balancer.go:247 msgid "Auto-allocate an IPv4 or IPv6 listen address. One of 'ipv4', 'ipv6'." msgstr "" -#: lxc/remote.go:136 +#: lxc/remote.go:137 msgid "Available projects:" msgstr "" @@ -868,8 +868,8 @@ msgid "Bad device override syntax, expecting ,=: %s" msgstr "" #: lxc/network.go:333 lxc/network_acl.go:382 lxc/network_forward.go:293 -#: lxc/network_load_balancer.go:296 lxc/network_peer.go:280 -#: lxc/network_zone.go:324 lxc/network_zone.go:922 lxc/storage_bucket.go:136 +#: lxc/network_load_balancer.go:301 lxc/network_peer.go:280 +#: lxc/network_zone.go:329 lxc/network_zone.go:927 lxc/storage_bucket.go:141 #, c-format msgid "Bad key/value pair: %s" msgstr "" @@ -991,7 +991,7 @@ msgstr "" msgid "Can't read from stdin: %w" msgstr "" -#: lxc/remote.go:861 +#: lxc/remote.go:862 msgid "Can't remove the default remote" msgstr "" @@ -1057,15 +1057,14 @@ msgstr "" msgid "Certificate add token for %s deleted" msgstr "" -#: lxc/remote.go:218 -#, c-format -msgid "" -"Certificate fingerprint mismatch between certificate token and server %q" +#: lxc/remote.go:452 +msgid "Certificate fingerprint" msgstr "" -#: lxc/remote.go:451 +#: lxc/remote.go:219 #, c-format -msgid "Certificate fingerprint: %s" +msgid "" +"Certificate fingerprint mismatch between certificate token and server %q" msgstr "" #: lxc/network.go:893 @@ -1077,7 +1076,7 @@ msgstr "" msgid "Client %s certificate add token:" msgstr "" -#: lxc/remote.go:603 +#: lxc/remote.go:604 msgid "Client certificate now trusted by server:" msgstr "" @@ -1139,18 +1138,18 @@ msgstr "" #: lxc/network_forward.go:456 lxc/network_forward.go:579 #: lxc/network_forward.go:721 lxc/network_forward.go:798 #: lxc/network_forward.go:864 lxc/network_load_balancer.go:176 -#: lxc/network_load_balancer.go:241 lxc/network_load_balancer.go:459 -#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:725 -#: lxc/network_load_balancer.go:801 lxc/network_load_balancer.go:865 -#: lxc/network_load_balancer.go:966 lxc/network_load_balancer.go:1028 +#: lxc/network_load_balancer.go:246 lxc/network_load_balancer.go:464 +#: lxc/network_load_balancer.go:587 lxc/network_load_balancer.go:730 +#: lxc/network_load_balancer.go:806 lxc/network_load_balancer.go:870 +#: lxc/network_load_balancer.go:971 lxc/network_load_balancer.go:1033 #: lxc/storage.go:99 lxc/storage.go:347 lxc/storage.go:418 lxc/storage.go:671 -#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:85 -#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:248 -#: lxc/storage_bucket.go:379 lxc/storage_bucket.go:536 -#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:695 -#: lxc/storage_bucket.go:770 lxc/storage_bucket.go:850 -#: lxc/storage_bucket.go:928 lxc/storage_bucket.go:993 -#: lxc/storage_bucket.go:1129 lxc/storage_volume.go:358 +#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:90 +#: lxc/storage_bucket.go:190 lxc/storage_bucket.go:253 +#: lxc/storage_bucket.go:384 lxc/storage_bucket.go:541 +#: lxc/storage_bucket.go:634 lxc/storage_bucket.go:700 +#: lxc/storage_bucket.go:775 lxc/storage_bucket.go:855 +#: lxc/storage_bucket.go:933 lxc/storage_bucket.go:998 +#: lxc/storage_bucket.go:1134 lxc/storage_volume.go:358 #: lxc/storage_volume.go:560 lxc/storage_volume.go:639 #: lxc/storage_volume.go:883 lxc/storage_volume.go:1097 #: lxc/storage_volume.go:1210 lxc/storage_volume.go:1678 @@ -1178,11 +1177,11 @@ msgstr "" msgid "Columns" msgstr "" -#: lxc/main.go:81 +#: lxc/main.go:82 msgid "Command line client for LXD" msgstr "" -#: lxc/main.go:82 +#: lxc/main.go:83 msgid "" "Command line client for LXD\n" "\n" @@ -1214,19 +1213,15 @@ msgstr "" #: lxc/config.go:347 lxc/config.go:1277 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/network_load_balancer.go:694 lxc/network_peer.go:610 +#: lxc/network_zone.go:556 lxc/network_zone.go:1148 lxc/profile.go:538 +#: lxc/project.go:315 lxc/storage.go:310 lxc/storage_bucket.go:348 +#: lxc/storage_bucket.go:1097 lxc/storage_volume.go:1016 #: lxc/storage_volume.go:1048 #, c-format msgid "Config parsing error: %s" msgstr "" -#: lxc/console.go:140 -msgid "Console log:" -msgstr "" - #: lxc/storage_volume.go:561 msgid "Content type, block or filesystem" msgstr "" @@ -1329,12 +1324,12 @@ msgstr "" msgid "Cores:" msgstr "" -#: lxc/remote.go:486 +#: lxc/remote.go:487 #, c-format msgid "Could not close server cert file %q: %w" msgstr "" -#: lxc/remote.go:224 lxc/remote.go:470 +#: lxc/remote.go:225 lxc/remote.go:471 msgid "Could not create server cert dir" msgstr "" @@ -1373,12 +1368,12 @@ msgstr "" msgid "Could not write new remote certificate for remote '%s' with error: %v" msgstr "" -#: lxc/remote.go:481 +#: lxc/remote.go:482 #, c-format msgid "Could not write server cert file %q: %w" msgstr "" -#: lxc/network_zone.go:1327 +#: lxc/network_zone.go:1332 msgid "Couldn't find a matching entry" msgstr "" @@ -1430,7 +1425,7 @@ msgstr "" msgid "Create instances from images" msgstr "" -#: lxc/storage_bucket.go:846 lxc/storage_bucket.go:847 +#: lxc/storage_bucket.go:851 lxc/storage_bucket.go:852 msgid "Create key for a storage bucket" msgstr "" @@ -1462,11 +1457,11 @@ msgstr "" msgid "Create new network peering" msgstr "" -#: lxc/network_zone.go:869 lxc/network_zone.go:870 +#: lxc/network_zone.go:874 lxc/network_zone.go:875 msgid "Create new network zone record" msgstr "" -#: lxc/network_zone.go:270 lxc/network_zone.go:271 +#: lxc/network_zone.go:271 lxc/network_zone.go:272 msgid "Create new network zones" msgstr "" @@ -1517,9 +1512,9 @@ msgstr "" #: 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/network_zone.go:140 lxc/network_zone.go:747 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_bucket.go:512 lxc/storage_bucket.go:832 #: lxc/storage_volume.go:1562 msgid "DESCRIPTION" msgstr "" @@ -1584,7 +1579,7 @@ msgstr "" msgid "Delete instances and snapshots" msgstr "" -#: lxc/storage_bucket.go:924 lxc/storage_bucket.go:925 +#: lxc/storage_bucket.go:929 lxc/storage_bucket.go:930 msgid "Delete key from a storage bucket" msgstr "" @@ -1596,7 +1591,7 @@ msgstr "" msgid "Delete network forwards" msgstr "" -#: lxc/network_load_balancer.go:721 lxc/network_load_balancer.go:722 +#: lxc/network_load_balancer.go:726 lxc/network_load_balancer.go:727 msgid "Delete network load balancers" msgstr "" @@ -1604,11 +1599,11 @@ msgstr "" msgid "Delete network peerings" msgstr "" -#: lxc/network_zone.go:1175 lxc/network_zone.go:1176 +#: lxc/network_zone.go:1180 lxc/network_zone.go:1181 msgid "Delete network zone record" msgstr "" -#: lxc/network_zone.go:583 lxc/network_zone.go:584 +#: lxc/network_zone.go:588 lxc/network_zone.go:589 msgid "Delete network zones" msgstr "" @@ -1624,7 +1619,7 @@ msgstr "" msgid "Delete projects" msgstr "" -#: lxc/storage_bucket.go:182 lxc/storage_bucket.go:183 +#: lxc/storage_bucket.go:187 lxc/storage_bucket.go:188 msgid "Delete storage buckets" msgstr "" @@ -1680,7 +1675,7 @@ msgstr "" #: 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/info.go:32 lxc/init.go:43 lxc/launch.go:24 lxc/list.go:48 lxc/main.go:83 #: 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 @@ -1699,22 +1694,22 @@ msgstr "" #: 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_load_balancer.go:238 lxc/network_load_balancer.go:388 +#: lxc/network_load_balancer.go:456 lxc/network_load_balancer.go:554 +#: lxc/network_load_balancer.go:584 lxc/network_load_balancer.go:727 +#: lxc/network_load_balancer.go:788 lxc/network_load_balancer.go:803 +#: lxc/network_load_balancer.go:867 lxc/network_load_balancer.go:953 +#: lxc/network_load_balancer.go:968 lxc/network_load_balancer.go:1029 #: 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/network_zone.go:29 lxc/network_zone.go:86 lxc/network_zone.go:157 +#: lxc/network_zone.go:212 lxc/network_zone.go:272 lxc/network_zone.go:359 +#: lxc/network_zone.go:439 lxc/network_zone.go:470 lxc/network_zone.go:589 +#: lxc/network_zone.go:637 lxc/network_zone.go:694 lxc/network_zone.go:764 +#: lxc/network_zone.go:816 lxc/network_zone.go:875 lxc/network_zone.go:957 +#: lxc/network_zone.go:1033 lxc/network_zone.go:1063 lxc/network_zone.go:1181 +#: lxc/network_zone.go:1230 lxc/network_zone.go:1245 lxc/network_zone.go:1291 #: 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 @@ -1723,19 +1718,19 @@ msgstr "" #: 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:631 lxc/remote.go:669 lxc/remote.go:755 lxc/remote.go:828 -#: lxc/remote.go:884 lxc/remote.go:924 lxc/rename.go:21 lxc/restore.go:24 +#: lxc/query.go:34 lxc/rebuild.go:27 lxc/remote.go:35 lxc/remote.go:91 +#: lxc/remote.go:632 lxc/remote.go:670 lxc/remote.go:756 lxc/remote.go:829 +#: lxc/remote.go:885 lxc/remote.go:925 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_bucket.go:29 lxc/storage_bucket.go:83 lxc/storage_bucket.go:188 +#: lxc/storage_bucket.go:249 lxc/storage_bucket.go:382 +#: lxc/storage_bucket.go:458 lxc/storage_bucket.go:535 +#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:698 +#: lxc/storage_bucket.go:732 lxc/storage_bucket.go:773 +#: lxc/storage_bucket.go:852 lxc/storage_bucket.go:930 +#: lxc/storage_bucket.go:994 lxc/storage_bucket.go:1129 #: 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 @@ -1871,7 +1866,7 @@ msgstr "" msgid "Don't require user confirmation for using --force" msgstr "" -#: lxc/main.go:99 +#: lxc/main.go:100 msgid "Don't show progress information" msgstr "" @@ -1884,7 +1879,7 @@ msgstr "" msgid "Driver: %v (%v)" msgstr "" -#: lxc/network_zone.go:743 +#: lxc/network_zone.go:748 msgid "ENTRIES" msgstr "" @@ -1962,7 +1957,7 @@ msgstr "" msgid "Edit network forward configurations as YAML" msgstr "" -#: lxc/network_load_balancer.go:578 lxc/network_load_balancer.go:579 +#: lxc/network_load_balancer.go:583 lxc/network_load_balancer.go:584 msgid "Edit network load balancer configurations as YAML" msgstr "" @@ -1970,11 +1965,11 @@ msgstr "" msgid "Edit network peer configurations as YAML" msgstr "" -#: lxc/network_zone.go:464 lxc/network_zone.go:465 +#: lxc/network_zone.go:469 lxc/network_zone.go:470 msgid "Edit network zone configurations as YAML" msgstr "" -#: lxc/network_zone.go:1057 lxc/network_zone.go:1058 +#: lxc/network_zone.go:1062 lxc/network_zone.go:1063 msgid "Edit network zone record configurations as YAML" msgstr "" @@ -1986,11 +1981,11 @@ msgstr "" msgid "Edit project configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:243 lxc/storage_bucket.go:244 +#: lxc/storage_bucket.go:248 lxc/storage_bucket.go:249 msgid "Edit storage bucket configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:988 lxc/storage_bucket.go:989 +#: lxc/storage_bucket.go:993 lxc/storage_bucket.go:994 msgid "Edit storage bucket key as YAML" msgstr "" @@ -2031,7 +2026,7 @@ msgid "" " for the address if not yet set." msgstr "" -#: lxc/network_zone.go:1242 +#: lxc/network_zone.go:1247 msgid "Entry TTL" msgstr "" @@ -2060,9 +2055,9 @@ msgstr "" #: lxc/cluster.go:414 lxc/config.go:624 lxc/config.go:656 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/network_load_balancer.go:527 lxc/network_peer.go:463 +#: lxc/network_zone.go:414 lxc/network_zone.go:1008 lxc/profile.go:876 +#: lxc/project.go:634 lxc/storage.go:727 lxc/storage_bucket.go:602 #: lxc/storage_volume.go:1947 lxc/storage_volume.go:1985 #, c-format msgid "Error setting properties: %v" @@ -2074,10 +2069,10 @@ 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/network_forward.go:513 lxc/network_load_balancer.go:521 +#: lxc/network_peer.go:457 lxc/network_zone.go:408 lxc/network_zone.go:1002 #: lxc/profile.go:870 lxc/project.go:628 lxc/storage.go:721 -#: lxc/storage_bucket.go:591 lxc/storage_volume.go:1941 +#: lxc/storage_bucket.go:596 lxc/storage_volume.go:1941 #: lxc/storage_volume.go:1979 #, c-format msgid "Error unsetting property: %v" @@ -2263,7 +2258,7 @@ msgstr "" msgid "Failed parsing SSH host key: %w" msgstr "" -#: lxc/console.go:361 +#: lxc/console.go:366 #, c-format msgid "Failed starting command: %w" msgstr "" @@ -2278,11 +2273,11 @@ msgstr "" msgid "Failed to accept incoming connection: %w" msgstr "" -#: lxc/remote.go:190 +#: lxc/remote.go:191 msgid "Failed to add remote" msgstr "" -#: lxc/remote.go:241 +#: lxc/remote.go:242 #, c-format msgid "Failed to close server cert file %q: %w" msgstr "" @@ -2292,7 +2287,7 @@ msgstr "" msgid "Failed to connect to cluster member: %w" msgstr "" -#: lxc/remote.go:231 +#: lxc/remote.go:232 #, c-format msgid "Failed to create %q: %w" msgstr "" @@ -2302,12 +2297,12 @@ msgstr "" msgid "Failed to create alias %s: %w" msgstr "" -#: lxc/remote.go:256 +#: lxc/remote.go:257 #, c-format msgid "Failed to create certificate: %w" msgstr "" -#: lxc/remote.go:263 +#: lxc/remote.go:264 #, c-format msgid "Failed to find project: %w" msgstr "" @@ -2332,7 +2327,7 @@ msgstr "" msgid "Failed to walk path for %s: %s" msgstr "" -#: lxc/remote.go:236 +#: lxc/remote.go:237 #, c-format msgid "Failed to write server cert file %q: %w" msgstr "" @@ -2341,7 +2336,7 @@ msgstr "" msgid "Fast mode (same as --columns=nsacPt)" msgstr "" -#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:115 +#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:116 #: lxc/operation.go:136 msgid "Filtering isn't supported yet" msgstr "" @@ -2379,7 +2374,7 @@ msgstr "" msgid "Force the removal of running instances" msgstr "" -#: lxc/main.go:95 +#: lxc/main.go:96 msgid "Force using the local unix socket" msgstr "" @@ -2413,10 +2408,10 @@ msgstr "" #: 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/network_peer.go:84 lxc/network_zone.go:89 lxc/network_zone.go:697 #: lxc/operation.go:108 lxc/profile.go:637 lxc/project.go:412 -#: lxc/project.go:804 lxc/remote.go:673 lxc/storage.go:588 -#: lxc/storage_bucket.go:454 lxc/storage_bucket.go:769 +#: lxc/project.go:804 lxc/remote.go:674 lxc/storage.go:588 +#: lxc/storage_bucket.go:459 lxc/storage_bucket.go:774 #: lxc/storage_volume.go:1446 lxc/warning.go:93 msgid "Format (csv|json|table|yaml|compact)" msgstr "" @@ -2453,7 +2448,7 @@ msgstr "" msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)" msgstr "" -#: lxc/remote.go:737 +#: lxc/remote.go:738 msgid "GLOBAL" msgstr "" @@ -2473,7 +2468,7 @@ msgstr "" msgid "Generate manpages for all commands" msgstr "" -#: lxc/remote.go:159 lxc/remote.go:397 +#: lxc/remote.go:160 lxc/remote.go:398 msgid "Generating a client certificate. This may take a minute..." msgstr "" @@ -2505,7 +2500,7 @@ msgstr "" msgid "Get the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:386 +#: lxc/network_load_balancer.go:391 msgid "Get the key as a network load balancer property" msgstr "" @@ -2517,11 +2512,11 @@ msgstr "" msgid "Get the key as a network property" msgstr "" -#: lxc/network_zone.go:214 +#: lxc/network_zone.go:215 msgid "Get the key as a network zone property" msgstr "" -#: lxc/network_zone.go:814 +#: lxc/network_zone.go:819 msgid "Get the key as a network zone record property" msgstr "" @@ -2533,7 +2528,7 @@ msgstr "" msgid "Get the key as a project property" msgstr "" -#: lxc/storage_bucket.go:380 +#: lxc/storage_bucket.go:385 msgid "Get the key as a storage bucket property" msgstr "" @@ -2573,7 +2568,7 @@ msgstr "" msgid "Get values for network forward configuration keys" msgstr "" -#: lxc/network_load_balancer.go:382 lxc/network_load_balancer.go:383 +#: lxc/network_load_balancer.go:387 lxc/network_load_balancer.go:388 msgid "Get values for network load balancer configuration keys" msgstr "" @@ -2581,11 +2576,11 @@ msgstr "" msgid "Get values for network peer configuration keys" msgstr "" -#: lxc/network_zone.go:210 lxc/network_zone.go:211 +#: lxc/network_zone.go:211 lxc/network_zone.go:212 msgid "Get values for network zone configuration keys" msgstr "" -#: lxc/network_zone.go:810 lxc/network_zone.go:811 +#: lxc/network_zone.go:815 lxc/network_zone.go:816 msgid "Get values for network zone record configuration keys" msgstr "" @@ -2597,7 +2592,7 @@ msgstr "" msgid "Get values for project configuration keys" msgstr "" -#: lxc/storage_bucket.go:376 lxc/storage_bucket.go:377 +#: lxc/storage_bucket.go:381 lxc/storage_bucket.go:382 msgid "Get values for storage bucket configuration keys" msgstr "" @@ -2737,7 +2732,7 @@ msgstr "" msgid "If the snapshot name already exists, delete and create a new one" msgstr "" -#: lxc/main.go:398 +#: lxc/main.go:400 msgid "" "If this is your first time running LXD on this machine, you should also run: " "lxd init" @@ -2894,7 +2889,7 @@ msgstr "" msgid "Instance type" msgstr "" -#: lxc/remote.go:349 +#: lxc/remote.go:350 #, c-format msgid "Invalid URL scheme \"%s\" in \"%s\"" msgstr "" @@ -2966,7 +2961,7 @@ msgstr "" msgid "Invalid new snapshot name, parent volume must be the same as source" msgstr "" -#: lxc/main.go:498 +#: lxc/main.go:502 msgid "Invalid number of arguments" msgstr "" @@ -2975,7 +2970,7 @@ msgstr "" msgid "Invalid path %s" msgstr "" -#: lxc/remote.go:338 +#: lxc/remote.go:339 #, c-format msgid "Invalid protocol: %s" msgstr "" @@ -3023,7 +3018,7 @@ msgstr "" #: lxc/list.go:597 lxc/network.go:1059 lxc/network_forward.go:155 #: lxc/network_load_balancer.go:157 lxc/operation.go:177 -#: lxc/storage_bucket.go:511 lxc/storage_volume.go:1569 lxc/warning.go:220 +#: lxc/storage_bucket.go:516 lxc/storage_volume.go:1569 lxc/warning.go:220 msgid "LOCATION" msgstr "" @@ -3031,7 +3026,7 @@ msgstr "" msgid "LXD - Command line client" msgstr "" -#: lxc/console.go:382 +#: lxc/console.go:387 msgid "LXD automatically uses either spicy or remote-viewer when present." msgstr "" @@ -3121,15 +3116,15 @@ msgstr "" msgid "List available network peers" msgstr "" -#: lxc/network_zone.go:85 +#: lxc/network_zone.go:86 msgid "List available network zone" msgstr "" -#: lxc/network_zone.go:688 lxc/network_zone.go:689 +#: lxc/network_zone.go:693 lxc/network_zone.go:694 msgid "List available network zone records" msgstr "" -#: lxc/network_zone.go:84 +#: lxc/network_zone.go:85 msgid "List available network zoneS" msgstr "" @@ -3318,11 +3313,11 @@ msgstr "" msgid "List projects" msgstr "" -#: lxc/storage_bucket.go:766 lxc/storage_bucket.go:768 +#: lxc/storage_bucket.go:771 lxc/storage_bucket.go:773 msgid "List storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:451 lxc/storage_bucket.go:453 +#: lxc/storage_bucket.go:456 lxc/storage_bucket.go:458 msgid "List storage buckets" msgstr "" @@ -3350,7 +3345,7 @@ msgid "" " U - Current disk usage" msgstr "" -#: lxc/remote.go:668 lxc/remote.go:669 +#: lxc/remote.go:669 lxc/remote.go:670 msgid "List the available remotes" msgstr "" @@ -3577,11 +3572,11 @@ msgstr "" msgid "Manage network forwards" msgstr "" -#: lxc/network_load_balancer.go:782 lxc/network_load_balancer.go:783 +#: lxc/network_load_balancer.go:787 lxc/network_load_balancer.go:788 msgid "Manage network load balancer backends" msgstr "" -#: lxc/network_load_balancer.go:947 lxc/network_load_balancer.go:948 +#: lxc/network_load_balancer.go:952 lxc/network_load_balancer.go:953 msgid "Manage network load balancer ports" msgstr "" @@ -3593,15 +3588,15 @@ msgstr "" msgid "Manage network peerings" msgstr "" -#: lxc/network_zone.go:1224 lxc/network_zone.go:1225 +#: lxc/network_zone.go:1229 lxc/network_zone.go:1230 msgid "Manage network zone record entries" msgstr "" -#: lxc/network_zone.go:631 lxc/network_zone.go:632 +#: lxc/network_zone.go:636 lxc/network_zone.go:637 msgid "Manage network zone records" msgstr "" -#: lxc/network_zone.go:27 lxc/network_zone.go:28 +#: lxc/network_zone.go:28 lxc/network_zone.go:29 msgid "Manage network zones" msgstr "" @@ -3617,11 +3612,11 @@ msgstr "" msgid "Manage projects" msgstr "" -#: lxc/storage_bucket.go:726 +#: lxc/storage_bucket.go:731 msgid "Manage storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:727 +#: lxc/storage_bucket.go:732 msgid "Manage storage bucket keys." msgstr "" @@ -3649,7 +3644,7 @@ msgid "" "\"custom\" (user created) volumes." msgstr "" -#: lxc/remote.go:33 lxc/remote.go:34 +#: lxc/remote.go:34 lxc/remote.go:35 msgid "Manage the list of remote servers" msgstr "" @@ -3730,12 +3725,12 @@ msgid "" "Minimum level for log messages (only available when using pretty format)" msgstr "" -#: lxc/storage_bucket.go:111 lxc/storage_bucket.go:211 -#: lxc/storage_bucket.go:287 lxc/storage_bucket.go:406 -#: lxc/storage_bucket.go:563 lxc/storage_bucket.go:655 -#: lxc/storage_bucket.go:797 lxc/storage_bucket.go:878 -#: lxc/storage_bucket.go:953 lxc/storage_bucket.go:1032 -#: lxc/storage_bucket.go:1155 +#: lxc/storage_bucket.go:116 lxc/storage_bucket.go:216 +#: lxc/storage_bucket.go:292 lxc/storage_bucket.go:411 +#: lxc/storage_bucket.go:568 lxc/storage_bucket.go:660 +#: lxc/storage_bucket.go:802 lxc/storage_bucket.go:883 +#: lxc/storage_bucket.go:958 lxc/storage_bucket.go:1037 +#: lxc/storage_bucket.go:1160 msgid "Missing bucket name" msgstr "" @@ -3779,8 +3774,8 @@ msgstr "" msgid "Missing instance name" msgstr "" -#: lxc/storage_bucket.go:882 lxc/storage_bucket.go:957 -#: lxc/storage_bucket.go:1036 lxc/storage_bucket.go:1159 +#: lxc/storage_bucket.go:887 lxc/storage_bucket.go:962 +#: lxc/storage_bucket.go:1041 lxc/storage_bucket.go:1164 msgid "Missing key name" msgstr "" @@ -3788,10 +3783,10 @@ msgstr "" #: lxc/network_forward.go:481 lxc/network_forward.go:627 #: lxc/network_forward.go:746 lxc/network_forward.go:823 #: lxc/network_forward.go:889 lxc/network_load_balancer.go:201 -#: lxc/network_load_balancer.go:411 lxc/network_load_balancer.go:484 -#: lxc/network_load_balancer.go:630 lxc/network_load_balancer.go:750 -#: lxc/network_load_balancer.go:826 lxc/network_load_balancer.go:890 -#: lxc/network_load_balancer.go:991 lxc/network_load_balancer.go:1053 +#: lxc/network_load_balancer.go:416 lxc/network_load_balancer.go:489 +#: lxc/network_load_balancer.go:635 lxc/network_load_balancer.go:755 +#: lxc/network_load_balancer.go:831 lxc/network_load_balancer.go:895 +#: lxc/network_load_balancer.go:996 lxc/network_load_balancer.go:1058 msgid "Missing listen address" msgstr "" @@ -3816,26 +3811,26 @@ msgstr "" #: lxc/network_forward.go:477 lxc/network_forward.go:623 #: lxc/network_forward.go:742 lxc/network_forward.go:819 #: lxc/network_forward.go:885 lxc/network_load_balancer.go:123 -#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:261 -#: lxc/network_load_balancer.go:407 lxc/network_load_balancer.go:480 -#: lxc/network_load_balancer.go:626 lxc/network_load_balancer.go:746 -#: lxc/network_load_balancer.go:822 lxc/network_load_balancer.go:886 -#: lxc/network_load_balancer.go:987 lxc/network_load_balancer.go:1049 +#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:266 +#: lxc/network_load_balancer.go:412 lxc/network_load_balancer.go:485 +#: lxc/network_load_balancer.go:631 lxc/network_load_balancer.go:751 +#: lxc/network_load_balancer.go:827 lxc/network_load_balancer.go:891 +#: lxc/network_load_balancer.go:992 lxc/network_load_balancer.go:1054 #: lxc/network_peer.go:110 lxc/network_peer.go:180 lxc/network_peer.go:237 #: lxc/network_peer.go:355 lxc/network_peer.go:426 lxc/network_peer.go:556 #: lxc/network_peer.go:665 msgid "Missing network name" msgstr "" -#: lxc/network_zone.go:178 lxc/network_zone.go:234 lxc/network_zone.go:294 -#: lxc/network_zone.go:382 lxc/network_zone.go:503 lxc/network_zone.go:606 -#: lxc/network_zone.go:712 lxc/network_zone.go:780 lxc/network_zone.go:892 -#: lxc/network_zone.go:976 lxc/network_zone.go:1197 lxc/network_zone.go:1262 -#: lxc/network_zone.go:1307 +#: lxc/network_zone.go:179 lxc/network_zone.go:235 lxc/network_zone.go:299 +#: lxc/network_zone.go:387 lxc/network_zone.go:508 lxc/network_zone.go:611 +#: lxc/network_zone.go:717 lxc/network_zone.go:785 lxc/network_zone.go:897 +#: lxc/network_zone.go:981 lxc/network_zone.go:1202 lxc/network_zone.go:1267 +#: lxc/network_zone.go:1312 msgid "Missing network zone name" msgstr "" -#: lxc/network_zone.go:833 lxc/network_zone.go:1095 +#: lxc/network_zone.go:838 lxc/network_zone.go:1100 msgid "Missing network zone record name" msgstr "" @@ -3845,13 +3840,13 @@ msgid "Missing peer name" msgstr "" #: lxc/storage.go:194 lxc/storage.go:264 lxc/storage.go:370 lxc/storage.go:440 -#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:107 -#: lxc/storage_bucket.go:207 lxc/storage_bucket.go:283 -#: lxc/storage_bucket.go:402 lxc/storage_bucket.go:477 -#: lxc/storage_bucket.go:559 lxc/storage_bucket.go:651 -#: lxc/storage_bucket.go:793 lxc/storage_bucket.go:874 -#: lxc/storage_bucket.go:949 lxc/storage_bucket.go:1028 -#: lxc/storage_bucket.go:1151 lxc/storage_volume.go:189 +#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:112 +#: lxc/storage_bucket.go:212 lxc/storage_bucket.go:288 +#: lxc/storage_bucket.go:407 lxc/storage_bucket.go:482 +#: lxc/storage_bucket.go:564 lxc/storage_bucket.go:656 +#: lxc/storage_bucket.go:798 lxc/storage_bucket.go:879 +#: lxc/storage_bucket.go:954 lxc/storage_bucket.go:1033 +#: lxc/storage_bucket.go:1156 lxc/storage_volume.go:189 #: lxc/storage_volume.go:287 lxc/storage_volume.go:583 #: lxc/storage_volume.go:660 lxc/storage_volume.go:735 #: lxc/storage_volume.go:817 lxc/storage_volume.go:919 @@ -3971,7 +3966,7 @@ msgstr "" msgid "Moving the storage volume: %s" msgstr "" -#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1097 +#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1102 msgid "Multiple ports match. Use --force to remove them all" msgstr "" @@ -3990,10 +3985,10 @@ 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:677 lxc/project.go:498 -#: lxc/remote.go:731 lxc/storage.go:638 lxc/storage_bucket.go:506 -#: lxc/storage_bucket.go:826 lxc/storage_volume.go:1561 +#: lxc/network_acl.go:147 lxc/network_peer.go:139 lxc/network_zone.go:139 +#: lxc/network_zone.go:746 lxc/profile.go:677 lxc/project.go:498 +#: lxc/remote.go:732 lxc/storage.go:638 lxc/storage_bucket.go:511 +#: lxc/storage_bucket.go:831 lxc/storage_volume.go:1561 msgid "NAME" msgstr "" @@ -4019,7 +4014,7 @@ msgstr "" #: lxc/network.go:957 lxc/operation.go:154 lxc/project.go:456 #: lxc/project.go:461 lxc/project.go:466 lxc/project.go:471 lxc/project.go:476 -#: lxc/project.go:481 lxc/remote.go:691 lxc/remote.go:696 lxc/remote.go:701 +#: lxc/project.go:481 lxc/remote.go:692 lxc/remote.go:697 lxc/remote.go:702 msgid "NO" msgstr "" @@ -4046,7 +4041,7 @@ msgstr "" msgid "Name" msgstr "" -#: lxc/remote.go:141 +#: lxc/remote.go:142 msgid "Name of the project to use for this remote:" msgstr "" @@ -4095,12 +4090,12 @@ msgstr "" msgid "Network ACL %s renamed to %s" msgstr "" -#: lxc/network_zone.go:336 +#: lxc/network_zone.go:341 #, c-format msgid "Network Zone %s created" msgstr "" -#: lxc/network_zone.go:616 +#: lxc/network_zone.go:621 #, c-format msgid "Network Zone %s deleted" msgstr "" @@ -4115,12 +4110,12 @@ msgstr "" msgid "Network forward %s deleted" msgstr "" -#: lxc/network_load_balancer.go:365 +#: lxc/network_load_balancer.go:370 #, c-format msgid "Network load balancer %s created" msgstr "" -#: lxc/network_load_balancer.go:767 +#: lxc/network_load_balancer.go:772 #, c-format msgid "Network load balancer %s deleted" msgstr "" @@ -4158,12 +4153,12 @@ msgstr "" msgid "Network usage:" msgstr "" -#: lxc/network_zone.go:934 +#: lxc/network_zone.go:939 #, c-format msgid "Network zone record %s created" msgstr "" -#: lxc/network_zone.go:1207 +#: lxc/network_zone.go:1212 #, c-format msgid "Network zone record %s deleted" msgstr "" @@ -4198,11 +4193,11 @@ msgstr "" msgid "No device found for this storage volume" msgstr "" -#: lxc/network_load_balancer.go:921 +#: lxc/network_load_balancer.go:926 msgid "No matching backend found" msgstr "" -#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1108 +#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1113 msgid "No matching port(s) found" msgstr "" @@ -4248,7 +4243,7 @@ msgstr "" msgid "Only \"custom\" volumes can be snapshotted" msgstr "" -#: lxc/remote.go:332 +#: lxc/remote.go:333 msgid "Only https URLs are supported for simplestreams" msgstr "" @@ -4273,7 +4268,7 @@ msgstr "" msgid "Optimized Storage" msgstr "" -#: lxc/main.go:96 +#: lxc/main.go:97 msgid "Override the source project" msgstr "" @@ -4319,11 +4314,11 @@ msgstr "" msgid "PROJECT" msgstr "" -#: lxc/remote.go:733 +#: lxc/remote.go:734 msgid "PROTOCOL" msgstr "" -#: lxc/image.go:1073 lxc/remote.go:735 +#: lxc/image.go:1073 lxc/remote.go:736 msgid "PUBLIC" msgstr "" @@ -4339,7 +4334,7 @@ msgstr "" msgid "Partitions:" msgstr "" -#: lxc/main.go:361 +#: lxc/main.go:363 #, c-format msgid "Password for %s: " msgstr "" @@ -4352,7 +4347,7 @@ msgstr "" msgid "Perform an incremental copy" msgstr "" -#: lxc/remote.go:182 +#: lxc/remote.go:183 msgid "Please provide an alternate server address (empty to abort):" msgstr "" @@ -4364,7 +4359,7 @@ msgstr "" msgid "Please provide cluster member name: " msgstr "" -#: lxc/remote.go:462 +#: lxc/remote.go:463 msgid "Please type 'y', 'n' or the fingerprint:" msgstr "" @@ -4386,10 +4381,10 @@ msgstr "" #: lxc/config.go:1278 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/network_load_balancer.go:695 lxc/network_peer.go:611 +#: lxc/network_zone.go:557 lxc/network_zone.go:1149 lxc/profile.go:539 +#: lxc/project.go:316 lxc/storage.go:311 lxc/storage_bucket.go:349 +#: lxc/storage_bucket.go:1098 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 "" @@ -4398,7 +4393,7 @@ msgstr "" msgid "Pretty rendering (short for --format=pretty)" msgstr "" -#: lxc/main.go:94 +#: lxc/main.go:95 msgid "Print help" msgstr "" @@ -4406,7 +4401,7 @@ msgstr "" msgid "Print the raw response" msgstr "" -#: lxc/main.go:93 +#: lxc/main.go:94 msgid "Print version number" msgstr "" @@ -4495,7 +4490,7 @@ msgstr "" msgid "Project %s renamed to %s" msgstr "" -#: lxc/remote.go:106 +#: lxc/remote.go:107 msgid "Project to use for the remote" msgstr "" @@ -4593,7 +4588,7 @@ msgid "" "pool \"default\"." msgstr "" -#: lxc/remote.go:105 +#: lxc/remote.go:106 msgid "Public image server" msgstr "" @@ -4641,7 +4636,7 @@ msgstr "" msgid "RESOURCE" msgstr "" -#: lxc/storage_bucket.go:828 +#: lxc/storage_bucket.go:833 msgid "ROLE" msgstr "" @@ -4684,45 +4679,45 @@ msgstr "" msgid "Refreshing the image: %s" msgstr "" -#: lxc/remote.go:785 +#: lxc/remote.go:786 #, c-format msgid "Remote %s already exists" msgstr "" -#: lxc/project.go:769 lxc/remote.go:776 lxc/remote.go:849 lxc/remote.go:905 -#: lxc/remote.go:945 +#: lxc/project.go:769 lxc/remote.go:777 lxc/remote.go:850 lxc/remote.go:906 +#: lxc/remote.go:946 #, c-format msgid "Remote %s doesn't exist" msgstr "" -#: lxc/remote.go:301 +#: lxc/remote.go:302 #, c-format msgid "Remote %s exists as <%s>" msgstr "" -#: lxc/remote.go:857 +#: lxc/remote.go:858 #, c-format msgid "Remote %s is global and cannot be removed" msgstr "" -#: lxc/remote.go:780 lxc/remote.go:853 lxc/remote.go:949 +#: lxc/remote.go:781 lxc/remote.go:854 lxc/remote.go:950 #, c-format msgid "Remote %s is static and cannot be modified" msgstr "" -#: lxc/remote.go:290 +#: lxc/remote.go:291 msgid "Remote address must not be empty" msgstr "" -#: lxc/remote.go:101 +#: lxc/remote.go:102 msgid "Remote admin password" msgstr "" -#: lxc/remote.go:295 +#: lxc/remote.go:296 msgid "Remote names may not contain colons" msgstr "" -#: lxc/remote.go:102 +#: lxc/remote.go:103 msgid "Remote trust token" msgstr "" @@ -4748,7 +4743,7 @@ msgstr "" msgid "Remove a member from the cluster" msgstr "" -#: lxc/network_zone.go:1285 +#: lxc/network_zone.go:1290 msgid "Remove a network zone record entry" msgstr "" @@ -4756,7 +4751,7 @@ msgstr "" msgid "Remove aliases" msgstr "" -#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1025 +#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1030 msgid "Remove all ports that match" msgstr "" @@ -4764,15 +4759,15 @@ msgstr "" msgid "Remove all rules that match" msgstr "" -#: lxc/network_load_balancer.go:862 +#: lxc/network_load_balancer.go:867 msgid "Remove backend from a load balancer" msgstr "" -#: lxc/network_load_balancer.go:861 +#: lxc/network_load_balancer.go:866 msgid "Remove backends from a load balancer" msgstr "" -#: lxc/network_zone.go:1286 +#: lxc/network_zone.go:1291 msgid "Remove entries from a network zone record" msgstr "" @@ -4796,7 +4791,7 @@ msgstr "" msgid "Remove ports from a forward" msgstr "" -#: lxc/network_load_balancer.go:1023 lxc/network_load_balancer.go:1024 +#: lxc/network_load_balancer.go:1028 lxc/network_load_balancer.go:1029 msgid "Remove ports from a load balancer" msgstr "" @@ -4804,7 +4799,7 @@ msgstr "" msgid "Remove profiles from instances" msgstr "" -#: lxc/remote.go:827 lxc/remote.go:828 +#: lxc/remote.go:828 lxc/remote.go:829 msgid "Remove remotes" msgstr "" @@ -4861,7 +4856,7 @@ msgstr "" msgid "Rename projects" msgstr "" -#: lxc/remote.go:754 lxc/remote.go:755 +#: lxc/remote.go:755 lxc/remote.go:756 msgid "Rename remotes" msgstr "" @@ -4939,7 +4934,7 @@ msgid "Restrict the certificate to one or more projects" msgstr "" #: lxc/console.go:44 -msgid "Retrieve the instance's console log" +msgid "Retrieve the container's console log" msgstr "" #: lxc/init.go:347 @@ -4955,7 +4950,7 @@ msgstr "" msgid "Revoke cluster member join token" msgstr "" -#: lxc/storage_bucket.go:851 +#: lxc/storage_bucket.go:856 msgid "Role (admin or read-only)" msgstr "" @@ -5006,7 +5001,7 @@ msgstr "" msgid "STATE" msgstr "" -#: lxc/remote.go:736 +#: lxc/remote.go:737 msgid "STATIC" msgstr "" @@ -5030,11 +5025,11 @@ msgstr "" msgid "STP" msgstr "" -#: lxc/storage_bucket.go:853 +#: lxc/storage_bucket.go:858 msgid "Secret key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:909 +#: lxc/storage_bucket.go:914 #, c-format msgid "Secret key: %s" msgstr "" @@ -5043,19 +5038,19 @@ msgstr "" msgid "Send a raw query to LXD" msgstr "" -#: lxc/remote.go:104 +#: lxc/remote.go:105 msgid "Server authentication type (tls or oidc)" msgstr "" -#: lxc/remote.go:460 +#: lxc/remote.go:461 msgid "Server certificate NACKed by user" msgstr "" -#: lxc/remote.go:599 +#: lxc/remote.go:600 msgid "Server doesn't trust us after authentication" msgstr "" -#: lxc/remote.go:103 +#: lxc/remote.go:104 msgid "Server protocol (lxd or simplestreams)" msgstr "" @@ -5154,11 +5149,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_load_balancer.go:450 +#: lxc/network_load_balancer.go:455 msgid "Set network load balancer keys" msgstr "" -#: lxc/network_load_balancer.go:451 +#: lxc/network_load_balancer.go:456 msgid "" "Set network load balancer keys\n" "\n" @@ -5180,11 +5175,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:353 +#: lxc/network_zone.go:358 msgid "Set network zone configuration keys" msgstr "" -#: lxc/network_zone.go:354 +#: lxc/network_zone.go:359 msgid "" "Set network zone configuration keys\n" "\n" @@ -5193,7 +5188,7 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:951 lxc/network_zone.go:952 +#: lxc/network_zone.go:956 lxc/network_zone.go:957 msgid "Set network zone record configuration keys" msgstr "" @@ -5223,11 +5218,11 @@ msgid "" " lxc project set [:] " msgstr "" -#: lxc/storage_bucket.go:529 +#: lxc/storage_bucket.go:534 msgid "Set storage bucket configuration keys" msgstr "" -#: lxc/storage_bucket.go:530 +#: lxc/storage_bucket.go:535 msgid "" "Set storage bucket configuration keys\n" "\n" @@ -5262,7 +5257,7 @@ msgid "" " lxc storage volume set [:] [/] " msgstr "" -#: lxc/remote.go:923 lxc/remote.go:924 +#: lxc/remote.go:924 lxc/remote.go:925 msgid "Set the URL for the remote" msgstr "" @@ -5290,7 +5285,7 @@ msgstr "" msgid "Set the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:458 +#: lxc/network_load_balancer.go:463 msgid "Set the key as a network load balancer property" msgstr "" @@ -5302,11 +5297,11 @@ msgstr "" msgid "Set the key as a network property" msgstr "" -#: lxc/network_zone.go:361 +#: lxc/network_zone.go:366 msgid "Set the key as a network zone property" msgstr "" -#: lxc/network_zone.go:957 +#: lxc/network_zone.go:962 msgid "Set the key as a network zone record property" msgstr "" @@ -5318,7 +5313,7 @@ msgstr "" msgid "Set the key as a project property" msgstr "" -#: lxc/storage_bucket.go:537 +#: lxc/storage_bucket.go:542 msgid "Set the key as a storage bucket property" msgstr "" @@ -5338,11 +5333,11 @@ msgstr "" msgid "Setup SSH SFTP listener on address:port instead of mounting" msgstr "" -#: lxc/main.go:97 +#: lxc/main.go:98 msgid "Show all debug messages" msgstr "" -#: lxc/main.go:98 +#: lxc/main.go:99 msgid "Show all information messages" msgstr "" @@ -5411,7 +5406,7 @@ msgstr "" msgid "Show instance or server information" msgstr "" -#: lxc/main.go:271 lxc/main.go:272 +#: lxc/main.go:272 lxc/main.go:273 msgid "Show less common commands" msgstr "" @@ -5443,15 +5438,15 @@ msgstr "" msgid "Show network peer configurations" msgstr "" -#: lxc/network_zone.go:155 lxc/network_zone.go:156 +#: lxc/network_zone.go:156 lxc/network_zone.go:157 msgid "Show network zone configurations" msgstr "" -#: lxc/network_zone.go:758 +#: lxc/network_zone.go:763 msgid "Show network zone record configuration" msgstr "" -#: lxc/network_zone.go:759 +#: lxc/network_zone.go:764 msgid "Show network zone record configurations" msgstr "" @@ -5463,11 +5458,11 @@ msgstr "" msgid "Show project options" msgstr "" -#: lxc/storage_bucket.go:623 lxc/storage_bucket.go:624 +#: lxc/storage_bucket.go:628 lxc/storage_bucket.go:629 msgid "Show storage bucket configurations" msgstr "" -#: lxc/storage_bucket.go:1123 lxc/storage_bucket.go:1124 +#: lxc/storage_bucket.go:1128 lxc/storage_bucket.go:1129 msgid "Show storage bucket key configurations" msgstr "" @@ -5493,7 +5488,7 @@ msgid "" "that are granted via identity provider group mappings. \n" msgstr "" -#: lxc/remote.go:630 lxc/remote.go:631 +#: lxc/remote.go:631 lxc/remote.go:632 msgid "Show the default remote" msgstr "" @@ -5617,22 +5612,22 @@ msgstr "" msgid "Stopping the instance failed: %s" msgstr "" -#: lxc/storage_bucket.go:161 +#: lxc/storage_bucket.go:166 #, c-format msgid "Storage bucket %s created" msgstr "" -#: lxc/storage_bucket.go:228 +#: lxc/storage_bucket.go:233 #, c-format msgid "Storage bucket %s deleted" msgstr "" -#: lxc/storage_bucket.go:907 +#: lxc/storage_bucket.go:912 #, c-format msgid "Storage bucket key %s added" msgstr "" -#: lxc/storage_bucket.go:973 +#: lxc/storage_bucket.go:978 #, c-format msgid "Storage bucket key %s removed" msgstr "" @@ -5705,7 +5700,7 @@ msgstr "" msgid "Switch the current project" msgstr "" -#: lxc/remote.go:883 lxc/remote.go:884 +#: lxc/remote.go:884 lxc/remote.go:885 msgid "Switch the default remote" msgstr "" @@ -5820,7 +5815,7 @@ msgstr "" msgid "The property %q does not exist on the instance snapshot %s/%s: %v" msgstr "" -#: lxc/network_load_balancer.go:424 +#: lxc/network_load_balancer.go:429 #, c-format msgid "The property %q does not exist on the load balancer %q: %v" msgstr "" @@ -5845,12 +5840,12 @@ msgstr "" msgid "The property %q does not exist on the network peer %q: %v" msgstr "" -#: lxc/network_zone.go:246 +#: lxc/network_zone.go:247 #, c-format msgid "The property %q does not exist on the network zone %q: %v" msgstr "" -#: lxc/network_zone.go:845 +#: lxc/network_zone.go:850 #, c-format msgid "The property %q does not exist on the network zone record %q: %v" msgstr "" @@ -5865,7 +5860,7 @@ msgstr "" msgid "The property %q does not exist on the project %q: %v" msgstr "" -#: lxc/storage_bucket.go:426 +#: lxc/storage_bucket.go:431 #, c-format msgid "The property %q does not exist on the storage bucket %q: %v" msgstr "" @@ -5919,7 +5914,7 @@ msgstr "" msgid "This LXD server is not available on the network" msgstr "" -#: lxc/main.go:293 +#: lxc/main.go:294 msgid "" "This client hasn't been configured to use a remote LXD server yet.\n" "As your platform can't run native Linux instances, you must connect to a " @@ -5951,11 +5946,11 @@ msgstr "" msgid "To create a new network, use: lxc network create" msgstr "" -#: lxc/console.go:210 +#: lxc/console.go:215 msgid "To detach from the console, press: +a q" msgstr "" -#: lxc/main.go:403 +#: lxc/main.go:406 msgid "" "To start your first container, try: lxc launch ubuntu:24.04\n" "Or for a virtual machine: lxc launch ubuntu:24.04 --vm" @@ -6053,7 +6048,7 @@ msgstr "" msgid "UPLOAD DATE" msgstr "" -#: lxc/cluster.go:184 lxc/remote.go:732 +#: lxc/cluster.go:184 lxc/remote.go:733 msgid "URL" msgstr "" @@ -6062,7 +6057,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:679 lxc/project.go:506 +#: lxc/network_zone.go:141 lxc/profile.go:679 lxc/project.go:506 #: lxc/storage.go:647 lxc/storage_volume.go:1564 msgid "USED BY" msgstr "" @@ -6081,7 +6076,7 @@ msgstr "" msgid "Unable to create a temporary file: %v" msgstr "" -#: lxc/remote.go:213 lxc/remote.go:247 +#: lxc/remote.go:214 lxc/remote.go:248 msgid "Unavailable remote server" msgstr "" @@ -6101,7 +6096,7 @@ msgstr "" msgid "Unknown column shorthand char '%c' in '%s'" msgstr "" -#: lxc/console.go:159 +#: lxc/console.go:164 #, c-format msgid "Unknown console type %q" msgstr "" @@ -6161,11 +6156,11 @@ msgstr "" msgid "Unset network forward keys" msgstr "" -#: lxc/network_load_balancer.go:548 +#: lxc/network_load_balancer.go:553 msgid "Unset network load balancer configuration keys" msgstr "" -#: lxc/network_load_balancer.go:549 +#: lxc/network_load_balancer.go:554 msgid "Unset network load balancer keys" msgstr "" @@ -6177,11 +6172,11 @@ msgstr "" msgid "Unset network peer keys" msgstr "" -#: lxc/network_zone.go:433 lxc/network_zone.go:434 +#: lxc/network_zone.go:438 lxc/network_zone.go:439 msgid "Unset network zone configuration keys" msgstr "" -#: lxc/network_zone.go:1027 lxc/network_zone.go:1028 +#: lxc/network_zone.go:1032 lxc/network_zone.go:1033 msgid "Unset network zone record configuration keys" msgstr "" @@ -6193,7 +6188,7 @@ msgstr "" msgid "Unset project configuration keys" msgstr "" -#: lxc/storage_bucket.go:692 lxc/storage_bucket.go:693 +#: lxc/storage_bucket.go:697 lxc/storage_bucket.go:698 msgid "Unset storage bucket configuration keys" msgstr "" @@ -6217,7 +6212,7 @@ msgstr "" msgid "Unset the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:552 +#: lxc/network_load_balancer.go:557 msgid "Unset the key as a network load balancer property" msgstr "" @@ -6229,11 +6224,11 @@ msgstr "" msgid "Unset the key as a network property" msgstr "" -#: lxc/network_zone.go:437 +#: lxc/network_zone.go:442 msgid "Unset the key as a network zone property" msgstr "" -#: lxc/network_zone.go:1031 +#: lxc/network_zone.go:1036 msgid "Unset the key as a network zone record property" msgstr "" @@ -6245,7 +6240,7 @@ msgstr "" msgid "Unset the key as a project property" msgstr "" -#: lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:701 msgid "Unset the key as a storage bucket property" msgstr "" @@ -6307,7 +6302,7 @@ msgid "" "Use storage driver optimized format (can only be restored on a similar pool)" msgstr "" -#: lxc/main.go:100 +#: lxc/main.go:101 msgid "Use with help or --help to view sub-commands" msgstr "" @@ -6404,7 +6399,7 @@ msgstr "" #: lxc/network.go:959 lxc/operation.go:156 lxc/project.go:458 #: lxc/project.go:463 lxc/project.go:468 lxc/project.go:473 lxc/project.go:478 -#: lxc/project.go:483 lxc/remote.go:693 lxc/remote.go:698 lxc/remote.go:703 +#: lxc/project.go:483 lxc/remote.go:694 lxc/remote.go:699 lxc/remote.go:704 msgid "YES" msgstr "" @@ -6439,7 +6434,7 @@ 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/network.go:909 lxc/network_acl.go:91 lxc/network_zone.go:83 #: 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 "[:]" @@ -6502,19 +6497,19 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:154 lxc/network_zone.go:463 lxc/network_zone.go:581 +#: lxc/network_zone.go:155 lxc/network_zone.go:468 lxc/network_zone.go:586 msgid "[:]" msgstr "" -#: lxc/network_zone.go:209 lxc/network_zone.go:432 +#: lxc/network_zone.go:210 lxc/network_zone.go:437 msgid "[:] " msgstr "" -#: lxc/network_zone.go:352 +#: lxc/network_zone.go:357 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:269 +#: lxc/network_zone.go:270 msgid "[:] [key=value...]" msgstr "" @@ -6760,30 +6755,30 @@ msgstr "" #: lxc/network_forward.go:169 lxc/network_forward.go:574 #: lxc/network_forward.go:715 lxc/network_load_balancer.go:171 -#: lxc/network_load_balancer.go:577 lxc/network_load_balancer.go:719 +#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:724 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:860 +#: lxc/network_load_balancer.go:865 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:796 +#: lxc/network_load_balancer.go:801 msgid "" "[:] " "[]" msgstr "" #: lxc/network_forward.go:377 lxc/network_forward.go:544 -#: lxc/network_load_balancer.go:381 lxc/network_load_balancer.go:547 +#: lxc/network_load_balancer.go:386 lxc/network_load_balancer.go:552 msgid "[:] " msgstr "" -#: lxc/network_forward.go:446 lxc/network_load_balancer.go:449 +#: lxc/network_forward.go:446 lxc/network_load_balancer.go:454 msgid "[:] =..." msgstr "" -#: lxc/network_load_balancer.go:961 +#: lxc/network_load_balancer.go:966 msgid "" "[:] " "[,...]" @@ -6795,7 +6790,7 @@ msgid "" " []" msgstr "" -#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1022 +#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1027 msgid "[:] [] []" msgstr "" @@ -6846,7 +6841,7 @@ msgid "[:]" msgstr "" #: lxc/storage.go:167 lxc/storage.go:218 lxc/storage.go:412 lxc/storage.go:759 -#: lxc/storage_bucket.go:449 +#: lxc/storage_bucket.go:454 msgid "[:]" msgstr "" @@ -6854,18 +6849,18 @@ msgstr "" msgid "[:] []" msgstr "" -#: lxc/storage_bucket.go:180 lxc/storage_bucket.go:242 -#: lxc/storage_bucket.go:622 lxc/storage_bucket.go:764 +#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:247 +#: lxc/storage_bucket.go:627 lxc/storage_bucket.go:769 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:375 lxc/storage_bucket.go:691 -#: lxc/storage_bucket.go:845 lxc/storage_bucket.go:923 -#: lxc/storage_bucket.go:987 lxc/storage_bucket.go:1122 +#: lxc/storage_bucket.go:380 lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:850 lxc/storage_bucket.go:928 +#: lxc/storage_bucket.go:992 lxc/storage_bucket.go:1127 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:528 +#: lxc/storage_bucket.go:533 msgid "[:] =..." msgstr "" @@ -7009,27 +7004,27 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:686 +#: lxc/network_zone.go:691 msgid "[:]" msgstr "" -#: lxc/network_zone.go:757 lxc/network_zone.go:1056 lxc/network_zone.go:1173 +#: lxc/network_zone.go:762 lxc/network_zone.go:1061 lxc/network_zone.go:1178 msgid "[:] " msgstr "" -#: lxc/network_zone.go:809 lxc/network_zone.go:1026 +#: lxc/network_zone.go:814 lxc/network_zone.go:1031 msgid "[:] " msgstr "" -#: lxc/network_zone.go:950 +#: lxc/network_zone.go:955 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:1238 lxc/network_zone.go:1284 +#: lxc/network_zone.go:1243 lxc/network_zone.go:1289 msgid "[:] " msgstr "" -#: lxc/network_zone.go:868 +#: lxc/network_zone.go:873 msgid "[:] [key=value...]" msgstr "" @@ -7053,7 +7048,7 @@ msgstr "" msgid "[:][] [...]" msgstr "" -#: lxc/remote.go:88 +#: lxc/remote.go:89 msgid "[] " msgstr "" @@ -7061,7 +7056,7 @@ msgstr "" msgid "[[:]]" msgstr "" -#: lxc/project.go:488 lxc/remote.go:722 +#: lxc/project.go:488 lxc/remote.go:723 msgid "current" msgstr "" @@ -7324,6 +7319,23 @@ msgid "" " Create a new OVN network called bar using baz as its uplink network" msgstr "" +#: lxc/network_load_balancer.go:239 +msgid "" +"lxc network load-balancer create n1 127.0.0.1\n" +"\n" +"lxc network load-balancer create n1 127.0.0.1 < config.yaml\n" +" Create network load-balancer for network n1 with configuration from " +"config.yaml" +msgstr "" + +#: lxc/network_zone.go:273 +msgid "" +"lxc network zone create z1\n" +"\n" +"lxc network zone create z1 < config.yaml\n" +" Create network zone z1 with configuration from config.yaml" +msgstr "" + #: lxc/operation.go:195 msgid "" "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n" @@ -7394,26 +7406,36 @@ msgid "" " Restore the snapshot." msgstr "" -#: lxc/storage_bucket.go:245 +#: lxc/storage_bucket.go:84 +msgid "" +"lxc storage bucket create p1 b01\n" +"\tCreate a new storage bucket name b01 in storage pool p1\n" +"\n" +"lxc storage bucket create p1 b01 < config.yaml\n" +"\tCreate a new storage bucket name b01 in storage pool p1 using the content " +"of config.yaml" +msgstr "" + +#: lxc/storage_bucket.go:250 msgid "" "lxc storage bucket edit [:] < bucket.yaml\n" " Update a storage bucket using the content of bucket.yaml." msgstr "" -#: lxc/storage_bucket.go:990 +#: lxc/storage_bucket.go:995 msgid "" "lxc storage bucket edit [:] < key.yaml\n" " Update a storage bucket key using the content of key.yaml." msgstr "" -#: lxc/storage_bucket.go:1125 +#: lxc/storage_bucket.go:1130 msgid "" "lxc storage bucket key show default data foo\n" " Will show the properties of a bucket key called \"foo\" for a bucket " "called \"data\" in the \"default\" pool." msgstr "" -#: lxc/storage_bucket.go:625 +#: lxc/storage_bucket.go:630 msgid "" "lxc storage bucket show default data\n" " Will show the properties of a bucket called \"data\" in the \"default\" " @@ -7432,7 +7454,7 @@ msgid "" "\t\tCreate a new custom volume using backup0.tar.gz as the source." msgstr "" -#: lxc/remote.go:459 +#: lxc/remote.go:460 msgid "n" msgstr "" @@ -7444,7 +7466,7 @@ msgstr "" msgid "no" msgstr "" -#: lxc/remote.go:452 +#: lxc/remote.go:453 msgid "ok (y/n/[fingerprint])?" msgstr "" @@ -7481,7 +7503,7 @@ msgstr "" msgid "used by" msgstr "" -#: lxc/remote.go:461 +#: lxc/remote.go:462 msgid "y" msgstr "" diff --git a/po/de.po b/po/de.po index bd81c5042c1f..d3df191b72bb 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-08-20 09:31+0100\n" +"POT-Creation-Date: 2024-08-30 09:27+0100\n" "PO-Revision-Date: 2022-03-10 15:06+0000\n" "Last-Translator: Krombel \n" "Language-Team: German " msgstr "" -#: lxc/remote.go:825 lxc/remote.go:882 +#: lxc/remote.go:826 lxc/remote.go:883 msgid "" msgstr "" -#: lxc/remote.go:922 +#: lxc/remote.go:923 msgid " " msgstr "" -#: lxc/remote.go:752 +#: lxc/remote.go:753 msgid " " msgstr "" @@ -820,7 +820,7 @@ msgstr "ALIASES" msgid "ARCHITECTURE" msgstr "ARCHITEKTUR" -#: lxc/remote.go:734 +#: lxc/remote.go:735 msgid "AUTH TYPE" msgstr "" @@ -828,15 +828,15 @@ msgstr "" msgid "AUTHENTICATION METHOD" msgstr "" -#: lxc/remote.go:100 +#: lxc/remote.go:101 msgid "Accept certificate" msgstr "Akzeptiere Zertifikat" -#: lxc/storage_bucket.go:852 +#: lxc/storage_bucket.go:857 msgid "Access key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:908 +#: lxc/storage_bucket.go:913 #, fuzzy, c-format msgid "Access key: %s" msgstr "Profil %s erstellt\n" @@ -874,20 +874,20 @@ msgstr "" msgid "Add a group to an identity provider group" msgstr "" -#: lxc/network_zone.go:1239 +#: lxc/network_zone.go:1244 #, fuzzy msgid "Add a network zone record entry" msgstr "Profil %s erstellt\n" -#: lxc/network_load_balancer.go:798 +#: lxc/network_load_balancer.go:803 msgid "Add backend to a load balancer" msgstr "" -#: lxc/network_load_balancer.go:797 +#: lxc/network_load_balancer.go:802 msgid "Add backends to a load balancer" msgstr "" -#: lxc/network_zone.go:1240 +#: lxc/network_zone.go:1245 msgid "Add entries to a network zone record" msgstr "" @@ -905,11 +905,11 @@ msgstr "" msgid "Add new aliases" msgstr "Aliasse:\n" -#: lxc/remote.go:89 +#: lxc/remote.go:90 msgid "Add new remote servers" msgstr "Neue entfernte Server hinzufügen" -#: lxc/remote.go:90 +#: lxc/remote.go:91 msgid "" "Add new remote servers\n" "\n" @@ -950,7 +950,7 @@ msgstr "" msgid "Add ports to a forward" msgstr "" -#: lxc/network_load_balancer.go:962 lxc/network_load_balancer.go:963 +#: lxc/network_load_balancer.go:967 lxc/network_load_balancer.go:968 msgid "Add ports to a load balancer" msgstr "" @@ -974,17 +974,17 @@ msgstr "kann nicht zum selben Container Namen kopieren" msgid "Address: %s" msgstr "Profil %s erstellt\n" -#: lxc/storage_bucket.go:164 +#: lxc/storage_bucket.go:169 #, fuzzy, c-format msgid "Admin access key: %s" msgstr "Profil %s erstellt\n" -#: lxc/remote.go:566 +#: lxc/remote.go:567 #, fuzzy, c-format msgid "Admin password (or token) for %s:" msgstr "Administrator Passwort für %s: " -#: lxc/storage_bucket.go:165 +#: lxc/storage_bucket.go:170 #, fuzzy, c-format msgid "Admin secret key: %s" msgstr "Erstellt: %s" @@ -1018,7 +1018,7 @@ msgstr "Aliasse:\n" msgid "All projects" msgstr "Fehlerhafte Profil URL %s" -#: lxc/remote.go:181 +#: lxc/remote.go:182 msgid "All server addresses are unavailable" msgstr "" @@ -1042,7 +1042,7 @@ msgstr "Architektur: %s\n" msgid "Are you sure you want to %s cluster member %q? (yes/no) [default=no]: " msgstr "" -#: lxc/console.go:383 +#: lxc/console.go:388 msgid "As neither could be found, the raw SPICE socket can be found at:" msgstr "" @@ -1096,7 +1096,7 @@ msgid "" "as well as retrieve past log entries from it." msgstr "" -#: lxc/remote.go:548 +#: lxc/remote.go:549 #, c-format msgid "Authentication type '%s' not supported by server" msgstr "" @@ -1115,11 +1115,11 @@ msgstr "" msgid "Auto update: %s" msgstr "automatisches Update: %s" -#: lxc/network_forward.go:240 lxc/network_load_balancer.go:242 +#: lxc/network_forward.go:240 lxc/network_load_balancer.go:247 msgid "Auto-allocate an IPv4 or IPv6 listen address. One of 'ipv4', 'ipv6'." msgstr "" -#: lxc/remote.go:136 +#: lxc/remote.go:137 #, fuzzy msgid "Available projects:" msgstr "Fehlerhafte Profil URL %s" @@ -1153,8 +1153,8 @@ msgid "Bad device override syntax, expecting ,=: %s" msgstr "" #: lxc/network.go:333 lxc/network_acl.go:382 lxc/network_forward.go:293 -#: lxc/network_load_balancer.go:296 lxc/network_peer.go:280 -#: lxc/network_zone.go:324 lxc/network_zone.go:922 lxc/storage_bucket.go:136 +#: lxc/network_load_balancer.go:301 lxc/network_peer.go:280 +#: lxc/network_zone.go:329 lxc/network_zone.go:927 lxc/storage_bucket.go:141 #, c-format msgid "Bad key/value pair: %s" msgstr "" @@ -1287,7 +1287,7 @@ msgstr "" msgid "Can't read from stdin: %w" msgstr "" -#: lxc/remote.go:861 +#: lxc/remote.go:862 msgid "Can't remove the default remote" msgstr "" @@ -1357,17 +1357,17 @@ msgstr "" msgid "Certificate add token for %s deleted" msgstr "Profil %s gelöscht\n" -#: lxc/remote.go:218 +#: lxc/remote.go:452 +#, fuzzy +msgid "Certificate fingerprint" +msgstr "Fingerabdruck des Zertifikats: % x\n" + +#: lxc/remote.go:219 #, c-format msgid "" "Certificate fingerprint mismatch between certificate token and server %q" msgstr "" -#: lxc/remote.go:451 -#, fuzzy, c-format -msgid "Certificate fingerprint: %s" -msgstr "Fingerabdruck des Zertifikats: % x\n" - #: lxc/network.go:893 msgid "Chassis" msgstr "" @@ -1377,7 +1377,7 @@ msgstr "" msgid "Client %s certificate add token:" msgstr "der Name des Ursprung Containers muss angegeben werden" -#: lxc/remote.go:603 +#: lxc/remote.go:604 #, fuzzy msgid "Client certificate now trusted by server:" msgstr "Gespeichertes Nutzerzertifikat auf dem Server: " @@ -1440,18 +1440,18 @@ msgstr "Gerät %s wurde von %s entfernt\n" #: lxc/network_forward.go:456 lxc/network_forward.go:579 #: lxc/network_forward.go:721 lxc/network_forward.go:798 #: lxc/network_forward.go:864 lxc/network_load_balancer.go:176 -#: lxc/network_load_balancer.go:241 lxc/network_load_balancer.go:459 -#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:725 -#: lxc/network_load_balancer.go:801 lxc/network_load_balancer.go:865 -#: lxc/network_load_balancer.go:966 lxc/network_load_balancer.go:1028 +#: lxc/network_load_balancer.go:246 lxc/network_load_balancer.go:464 +#: lxc/network_load_balancer.go:587 lxc/network_load_balancer.go:730 +#: lxc/network_load_balancer.go:806 lxc/network_load_balancer.go:870 +#: lxc/network_load_balancer.go:971 lxc/network_load_balancer.go:1033 #: lxc/storage.go:99 lxc/storage.go:347 lxc/storage.go:418 lxc/storage.go:671 -#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:85 -#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:248 -#: lxc/storage_bucket.go:379 lxc/storage_bucket.go:536 -#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:695 -#: lxc/storage_bucket.go:770 lxc/storage_bucket.go:850 -#: lxc/storage_bucket.go:928 lxc/storage_bucket.go:993 -#: lxc/storage_bucket.go:1129 lxc/storage_volume.go:358 +#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:90 +#: lxc/storage_bucket.go:190 lxc/storage_bucket.go:253 +#: lxc/storage_bucket.go:384 lxc/storage_bucket.go:541 +#: lxc/storage_bucket.go:634 lxc/storage_bucket.go:700 +#: lxc/storage_bucket.go:775 lxc/storage_bucket.go:855 +#: lxc/storage_bucket.go:933 lxc/storage_bucket.go:998 +#: lxc/storage_bucket.go:1134 lxc/storage_volume.go:358 #: lxc/storage_volume.go:560 lxc/storage_volume.go:639 #: lxc/storage_volume.go:883 lxc/storage_volume.go:1097 #: lxc/storage_volume.go:1210 lxc/storage_volume.go:1678 @@ -1479,11 +1479,11 @@ msgstr "" msgid "Columns" msgstr "Spalten" -#: lxc/main.go:81 +#: lxc/main.go:82 msgid "Command line client for LXD" msgstr "" -#: lxc/main.go:82 +#: lxc/main.go:83 msgid "" "Command line client for LXD\n" "\n" @@ -1518,19 +1518,15 @@ msgstr "kann nicht zum selben Container Namen kopieren" #: lxc/config.go:347 lxc/config.go:1277 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/network_load_balancer.go:694 lxc/network_peer.go:610 +#: lxc/network_zone.go:556 lxc/network_zone.go:1148 lxc/profile.go:538 +#: lxc/project.go:315 lxc/storage.go:310 lxc/storage_bucket.go:348 +#: lxc/storage_bucket.go:1097 lxc/storage_volume.go:1016 #: lxc/storage_volume.go:1048 #, fuzzy, c-format msgid "Config parsing error: %s" msgstr "YAML Analyse Fehler %v\n" -#: lxc/console.go:140 -msgid "Console log:" -msgstr "" - #: lxc/storage_volume.go:561 msgid "Content type, block or filesystem" msgstr "" @@ -1638,12 +1634,12 @@ msgstr "Fehler: %v\n" msgid "Cores:" msgstr "Fehler: %v\n" -#: lxc/remote.go:486 +#: lxc/remote.go:487 #, fuzzy, c-format msgid "Could not close server cert file %q: %w" msgstr "Kann Verzeichnis für Zertifikate auf dem Server nicht erstellen" -#: lxc/remote.go:224 lxc/remote.go:470 +#: lxc/remote.go:225 lxc/remote.go:471 msgid "Could not create server cert dir" msgstr "Kann Verzeichnis für Zertifikate auf dem Server nicht erstellen" @@ -1682,12 +1678,12 @@ msgstr "Fingerabdruck des Zertifikats: % x\n" msgid "Could not write new remote certificate for remote '%s' with error: %v" msgstr "" -#: lxc/remote.go:481 +#: lxc/remote.go:482 #, fuzzy, c-format msgid "Could not write server cert file %q: %w" msgstr "Kann Verzeichnis für Zertifikate auf dem Server nicht erstellen" -#: lxc/network_zone.go:1327 +#: lxc/network_zone.go:1332 msgid "Couldn't find a matching entry" msgstr "" @@ -1746,7 +1742,7 @@ msgstr "" msgid "Create instances from images" msgstr "kann nicht zum selben Container Namen kopieren" -#: lxc/storage_bucket.go:846 lxc/storage_bucket.go:847 +#: lxc/storage_bucket.go:851 lxc/storage_bucket.go:852 #, fuzzy msgid "Create key for a storage bucket" msgstr "Anhalten des Containers fehlgeschlagen!" @@ -1785,12 +1781,12 @@ msgstr "Anhalten des Containers fehlgeschlagen!" msgid "Create new network peering" msgstr "Anhalten des Containers fehlgeschlagen!" -#: lxc/network_zone.go:869 lxc/network_zone.go:870 +#: lxc/network_zone.go:874 lxc/network_zone.go:875 #, fuzzy msgid "Create new network zone record" msgstr "Anhalten des Containers fehlgeschlagen!" -#: lxc/network_zone.go:270 lxc/network_zone.go:271 +#: lxc/network_zone.go:271 lxc/network_zone.go:272 #, fuzzy msgid "Create new network zones" msgstr "Anhalten des Containers fehlgeschlagen!" @@ -1847,9 +1843,9 @@ msgstr "" #: 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/network_zone.go:140 lxc/network_zone.go:747 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_bucket.go:512 lxc/storage_bucket.go:832 #: lxc/storage_volume.go:1562 msgid "DESCRIPTION" msgstr "BESCHREIBUNG" @@ -1918,7 +1914,7 @@ msgstr "Anhalten des Containers fehlgeschlagen!" msgid "Delete instances and snapshots" msgstr "Herunterfahren des Containers erzwingen." -#: lxc/storage_bucket.go:924 lxc/storage_bucket.go:925 +#: lxc/storage_bucket.go:929 lxc/storage_bucket.go:930 #, fuzzy msgid "Delete key from a storage bucket" msgstr "Kein Zertifikat für diese Verbindung" @@ -1931,7 +1927,7 @@ msgstr "" msgid "Delete network forwards" msgstr "" -#: lxc/network_load_balancer.go:721 lxc/network_load_balancer.go:722 +#: lxc/network_load_balancer.go:726 lxc/network_load_balancer.go:727 #, fuzzy msgid "Delete network load balancers" msgstr "Kein Zertifikat für diese Verbindung" @@ -1940,12 +1936,12 @@ msgstr "Kein Zertifikat für diese Verbindung" msgid "Delete network peerings" msgstr "" -#: lxc/network_zone.go:1175 lxc/network_zone.go:1176 +#: lxc/network_zone.go:1180 lxc/network_zone.go:1181 #, fuzzy msgid "Delete network zone record" msgstr "Kein Zertifikat für diese Verbindung" -#: lxc/network_zone.go:583 lxc/network_zone.go:584 +#: lxc/network_zone.go:588 lxc/network_zone.go:589 #, fuzzy msgid "Delete network zones" msgstr "Kein Zertifikat für diese Verbindung" @@ -1963,7 +1959,7 @@ msgstr "" msgid "Delete projects" msgstr "Fehlerhafte Profil URL %s" -#: lxc/storage_bucket.go:182 lxc/storage_bucket.go:183 +#: lxc/storage_bucket.go:187 lxc/storage_bucket.go:188 #, fuzzy msgid "Delete storage buckets" msgstr "Kein Zertifikat für diese Verbindung" @@ -2021,7 +2017,7 @@ msgstr "" #: 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/info.go:32 lxc/init.go:43 lxc/launch.go:24 lxc/list.go:48 lxc/main.go:83 #: 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 @@ -2040,22 +2036,22 @@ msgstr "" #: 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_load_balancer.go:238 lxc/network_load_balancer.go:388 +#: lxc/network_load_balancer.go:456 lxc/network_load_balancer.go:554 +#: lxc/network_load_balancer.go:584 lxc/network_load_balancer.go:727 +#: lxc/network_load_balancer.go:788 lxc/network_load_balancer.go:803 +#: lxc/network_load_balancer.go:867 lxc/network_load_balancer.go:953 +#: lxc/network_load_balancer.go:968 lxc/network_load_balancer.go:1029 #: 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/network_zone.go:29 lxc/network_zone.go:86 lxc/network_zone.go:157 +#: lxc/network_zone.go:212 lxc/network_zone.go:272 lxc/network_zone.go:359 +#: lxc/network_zone.go:439 lxc/network_zone.go:470 lxc/network_zone.go:589 +#: lxc/network_zone.go:637 lxc/network_zone.go:694 lxc/network_zone.go:764 +#: lxc/network_zone.go:816 lxc/network_zone.go:875 lxc/network_zone.go:957 +#: lxc/network_zone.go:1033 lxc/network_zone.go:1063 lxc/network_zone.go:1181 +#: lxc/network_zone.go:1230 lxc/network_zone.go:1245 lxc/network_zone.go:1291 #: 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 @@ -2064,19 +2060,19 @@ msgstr "" #: 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:631 lxc/remote.go:669 lxc/remote.go:755 lxc/remote.go:828 -#: lxc/remote.go:884 lxc/remote.go:924 lxc/rename.go:21 lxc/restore.go:24 +#: lxc/query.go:34 lxc/rebuild.go:27 lxc/remote.go:35 lxc/remote.go:91 +#: lxc/remote.go:632 lxc/remote.go:670 lxc/remote.go:756 lxc/remote.go:829 +#: lxc/remote.go:885 lxc/remote.go:925 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_bucket.go:29 lxc/storage_bucket.go:83 lxc/storage_bucket.go:188 +#: lxc/storage_bucket.go:249 lxc/storage_bucket.go:382 +#: lxc/storage_bucket.go:458 lxc/storage_bucket.go:535 +#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:698 +#: lxc/storage_bucket.go:732 lxc/storage_bucket.go:773 +#: lxc/storage_bucket.go:852 lxc/storage_bucket.go:930 +#: lxc/storage_bucket.go:994 lxc/storage_bucket.go:1129 #: 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 @@ -2226,7 +2222,7 @@ msgstr "Herunterfahren des Containers erzwingen." msgid "Don't require user confirmation for using --force" msgstr "" -#: lxc/main.go:99 +#: lxc/main.go:100 msgid "Don't show progress information" msgstr "" @@ -2239,7 +2235,7 @@ msgstr "" msgid "Driver: %v (%v)" msgstr "" -#: lxc/network_zone.go:743 +#: lxc/network_zone.go:748 msgid "ENTRIES" msgstr "" @@ -2328,7 +2324,7 @@ msgstr "" msgid "Edit network forward configurations as YAML" msgstr "Alternatives config Verzeichnis." -#: lxc/network_load_balancer.go:578 lxc/network_load_balancer.go:579 +#: lxc/network_load_balancer.go:583 lxc/network_load_balancer.go:584 #, fuzzy msgid "Edit network load balancer configurations as YAML" msgstr "Alternatives config Verzeichnis." @@ -2338,12 +2334,12 @@ msgstr "Alternatives config Verzeichnis." msgid "Edit network peer configurations as YAML" msgstr "Alternatives config Verzeichnis." -#: lxc/network_zone.go:464 lxc/network_zone.go:465 +#: lxc/network_zone.go:469 lxc/network_zone.go:470 #, fuzzy msgid "Edit network zone configurations as YAML" msgstr "Alternatives config Verzeichnis." -#: lxc/network_zone.go:1057 lxc/network_zone.go:1058 +#: lxc/network_zone.go:1062 lxc/network_zone.go:1063 #, fuzzy msgid "Edit network zone record configurations as YAML" msgstr "Alternatives config Verzeichnis." @@ -2356,12 +2352,12 @@ msgstr "" msgid "Edit project configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:243 lxc/storage_bucket.go:244 +#: lxc/storage_bucket.go:248 lxc/storage_bucket.go:249 #, fuzzy msgid "Edit storage bucket configurations as YAML" msgstr "Alternatives config Verzeichnis." -#: lxc/storage_bucket.go:988 lxc/storage_bucket.go:989 +#: lxc/storage_bucket.go:993 lxc/storage_bucket.go:994 msgid "Edit storage bucket key as YAML" msgstr "" @@ -2403,7 +2399,7 @@ msgid "" " for the address if not yet set." msgstr "" -#: lxc/network_zone.go:1242 +#: lxc/network_zone.go:1247 msgid "Entry TTL" msgstr "" @@ -2433,9 +2429,9 @@ msgstr "" #: lxc/cluster.go:414 lxc/config.go:624 lxc/config.go:656 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/network_load_balancer.go:527 lxc/network_peer.go:463 +#: lxc/network_zone.go:414 lxc/network_zone.go:1008 lxc/profile.go:876 +#: lxc/project.go:634 lxc/storage.go:727 lxc/storage_bucket.go:602 #: lxc/storage_volume.go:1947 lxc/storage_volume.go:1985 #, fuzzy, c-format msgid "Error setting properties: %v" @@ -2447,10 +2443,10 @@ msgid "Error unsetting properties: %v" msgstr "Fehler beim hinzufügen des Alias %s\n" #: 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/network_forward.go:513 lxc/network_load_balancer.go:521 +#: lxc/network_peer.go:457 lxc/network_zone.go:408 lxc/network_zone.go:1002 #: lxc/profile.go:870 lxc/project.go:628 lxc/storage.go:721 -#: lxc/storage_bucket.go:591 lxc/storage_volume.go:1941 +#: lxc/storage_bucket.go:596 lxc/storage_volume.go:1941 #: lxc/storage_volume.go:1979 #, c-format msgid "Error unsetting property: %v" @@ -2649,7 +2645,7 @@ msgstr "kann nicht zum selben Container Namen kopieren" msgid "Failed parsing SSH host key: %w" msgstr "Akzeptiere Zertifikat" -#: lxc/console.go:361 +#: lxc/console.go:366 #, fuzzy, c-format msgid "Failed starting command: %w" msgstr "Akzeptiere Zertifikat" @@ -2664,11 +2660,11 @@ msgstr "Akzeptiere Zertifikat" msgid "Failed to accept incoming connection: %w" msgstr "Akzeptiere Zertifikat" -#: lxc/remote.go:190 +#: lxc/remote.go:191 msgid "Failed to add remote" msgstr "" -#: lxc/remote.go:241 +#: lxc/remote.go:242 #, fuzzy, c-format msgid "Failed to close server cert file %q: %w" msgstr "Akzeptiere Zertifikat" @@ -2678,7 +2674,7 @@ msgstr "Akzeptiere Zertifikat" msgid "Failed to connect to cluster member: %w" msgstr "kann nicht zum selben Container Namen kopieren" -#: lxc/remote.go:231 +#: lxc/remote.go:232 #, c-format msgid "Failed to create %q: %w" msgstr "" @@ -2688,12 +2684,12 @@ msgstr "" msgid "Failed to create alias %s: %w" msgstr "Akzeptiere Zertifikat" -#: lxc/remote.go:256 +#: lxc/remote.go:257 #, fuzzy, c-format msgid "Failed to create certificate: %w" msgstr "Akzeptiere Zertifikat" -#: lxc/remote.go:263 +#: lxc/remote.go:264 #, c-format msgid "Failed to find project: %w" msgstr "" @@ -2718,7 +2714,7 @@ msgstr "Akzeptiere Zertifikat" msgid "Failed to walk path for %s: %s" msgstr "" -#: lxc/remote.go:236 +#: lxc/remote.go:237 #, fuzzy, c-format msgid "Failed to write server cert file %q: %w" msgstr "Akzeptiere Zertifikat" @@ -2727,7 +2723,7 @@ msgstr "Akzeptiere Zertifikat" msgid "Fast mode (same as --columns=nsacPt)" msgstr "" -#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:115 +#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:116 #: lxc/operation.go:136 #, fuzzy msgid "Filtering isn't supported yet" @@ -2769,7 +2765,7 @@ msgstr "Herunterfahren des Containers erzwingen." msgid "Force the removal of running instances" msgstr "" -#: lxc/main.go:95 +#: lxc/main.go:96 msgid "Force using the local unix socket" msgstr "" @@ -2803,10 +2799,10 @@ msgstr "" #: 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/network_peer.go:84 lxc/network_zone.go:89 lxc/network_zone.go:697 #: lxc/operation.go:108 lxc/profile.go:637 lxc/project.go:412 -#: lxc/project.go:804 lxc/remote.go:673 lxc/storage.go:588 -#: lxc/storage_bucket.go:454 lxc/storage_bucket.go:769 +#: lxc/project.go:804 lxc/remote.go:674 lxc/storage.go:588 +#: lxc/storage_bucket.go:459 lxc/storage_bucket.go:774 #: lxc/storage_volume.go:1446 lxc/warning.go:93 msgid "Format (csv|json|table|yaml|compact)" msgstr "" @@ -2843,7 +2839,7 @@ msgstr "" msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)" msgstr "" -#: lxc/remote.go:737 +#: lxc/remote.go:738 msgid "GLOBAL" msgstr "" @@ -2863,7 +2859,7 @@ msgstr "" msgid "Generate manpages for all commands" msgstr "" -#: lxc/remote.go:159 lxc/remote.go:397 +#: lxc/remote.go:160 lxc/remote.go:398 #, fuzzy msgid "Generating a client certificate. This may take a minute..." msgstr "Generiere Nutzerzertifikat. Dies kann wenige Minuten dauern...\n" @@ -2898,7 +2894,7 @@ msgstr "" msgid "Get the key as a network forward property" msgstr "Kein Zertifikat für diese Verbindung" -#: lxc/network_load_balancer.go:386 +#: lxc/network_load_balancer.go:391 #, fuzzy msgid "Get the key as a network load balancer property" msgstr "Kein Zertifikat für diese Verbindung" @@ -2912,12 +2908,12 @@ msgstr "Kein Zertifikat für diese Verbindung" msgid "Get the key as a network property" msgstr "" -#: lxc/network_zone.go:214 +#: lxc/network_zone.go:215 #, fuzzy msgid "Get the key as a network zone property" msgstr "Anhalten des Containers fehlgeschlagen!" -#: lxc/network_zone.go:814 +#: lxc/network_zone.go:819 #, fuzzy msgid "Get the key as a network zone record property" msgstr "Profil %s erstellt\n" @@ -2930,7 +2926,7 @@ msgstr "" msgid "Get the key as a project property" msgstr "" -#: lxc/storage_bucket.go:380 +#: lxc/storage_bucket.go:385 #, fuzzy msgid "Get the key as a storage bucket property" msgstr "Anhalten des Containers fehlgeschlagen!" @@ -2978,7 +2974,7 @@ msgstr "" msgid "Get values for network forward configuration keys" msgstr "Profil %s erstellt\n" -#: lxc/network_load_balancer.go:382 lxc/network_load_balancer.go:383 +#: lxc/network_load_balancer.go:387 lxc/network_load_balancer.go:388 #, fuzzy msgid "Get values for network load balancer configuration keys" msgstr "Profil %s erstellt\n" @@ -2988,12 +2984,12 @@ msgstr "Profil %s erstellt\n" msgid "Get values for network peer configuration keys" msgstr "Profil %s erstellt\n" -#: lxc/network_zone.go:210 lxc/network_zone.go:211 +#: lxc/network_zone.go:211 lxc/network_zone.go:212 #, fuzzy msgid "Get values for network zone configuration keys" msgstr "Profil %s erstellt\n" -#: lxc/network_zone.go:810 lxc/network_zone.go:811 +#: lxc/network_zone.go:815 lxc/network_zone.go:816 #, fuzzy msgid "Get values for network zone record configuration keys" msgstr "Profil %s erstellt\n" @@ -3007,7 +3003,7 @@ msgstr "" msgid "Get values for project configuration keys" msgstr "Profil %s erstellt\n" -#: lxc/storage_bucket.go:376 lxc/storage_bucket.go:377 +#: lxc/storage_bucket.go:381 lxc/storage_bucket.go:382 #, fuzzy msgid "Get values for storage bucket configuration keys" msgstr "Profil %s erstellt\n" @@ -3151,7 +3147,7 @@ msgstr "" msgid "If the snapshot name already exists, delete and create a new one" msgstr "" -#: lxc/main.go:398 +#: lxc/main.go:400 msgid "" "If this is your first time running LXD on this machine, you should also run: " "lxd init" @@ -3313,7 +3309,7 @@ msgstr "" msgid "Instance type" msgstr "" -#: lxc/remote.go:349 +#: lxc/remote.go:350 #, c-format msgid "Invalid URL scheme \"%s\" in \"%s\"" msgstr "" @@ -3387,7 +3383,7 @@ msgstr "" msgid "Invalid new snapshot name, parent volume must be the same as source" msgstr "" -#: lxc/main.go:498 +#: lxc/main.go:502 #, fuzzy msgid "Invalid number of arguments" msgstr "ungültiges Argument %s" @@ -3397,7 +3393,7 @@ msgstr "ungültiges Argument %s" msgid "Invalid path %s" msgstr "Ungültiges Ziel %s" -#: lxc/remote.go:338 +#: lxc/remote.go:339 #, fuzzy, c-format msgid "Invalid protocol: %s" msgstr "Ungültiges Ziel %s" @@ -3450,7 +3446,7 @@ msgstr "" #: lxc/list.go:597 lxc/network.go:1059 lxc/network_forward.go:155 #: lxc/network_load_balancer.go:157 lxc/operation.go:177 -#: lxc/storage_bucket.go:511 lxc/storage_volume.go:1569 lxc/warning.go:220 +#: lxc/storage_bucket.go:516 lxc/storage_volume.go:1569 lxc/warning.go:220 msgid "LOCATION" msgstr "" @@ -3458,7 +3454,7 @@ msgstr "" msgid "LXD - Command line client" msgstr "" -#: lxc/console.go:382 +#: lxc/console.go:387 msgid "LXD automatically uses either spicy or remote-viewer when present." msgstr "" @@ -3555,16 +3551,16 @@ msgstr "Kein Zertifikat für diese Verbindung" msgid "List available network peers" msgstr "" -#: lxc/network_zone.go:85 +#: lxc/network_zone.go:86 msgid "List available network zone" msgstr "" -#: lxc/network_zone.go:688 lxc/network_zone.go:689 +#: lxc/network_zone.go:693 lxc/network_zone.go:694 #, fuzzy msgid "List available network zone records" msgstr "Kein Zertifikat für diese Verbindung" -#: lxc/network_zone.go:84 +#: lxc/network_zone.go:85 msgid "List available network zoneS" msgstr "" @@ -3773,12 +3769,12 @@ msgstr "" msgid "List projects" msgstr "" -#: lxc/storage_bucket.go:766 lxc/storage_bucket.go:768 +#: lxc/storage_bucket.go:771 lxc/storage_bucket.go:773 #, fuzzy msgid "List storage bucket keys" msgstr "Kein Zertifikat für diese Verbindung" -#: lxc/storage_bucket.go:451 lxc/storage_bucket.go:453 +#: lxc/storage_bucket.go:456 lxc/storage_bucket.go:458 #, fuzzy msgid "List storage buckets" msgstr "Kein Zertifikat für diese Verbindung" @@ -3808,7 +3804,7 @@ msgid "" " U - Current disk usage" msgstr "" -#: lxc/remote.go:668 lxc/remote.go:669 +#: lxc/remote.go:669 lxc/remote.go:670 msgid "List the available remotes" msgstr "" @@ -4060,12 +4056,12 @@ msgstr "Kein Zertifikat für diese Verbindung" msgid "Manage network forwards" msgstr "Kein Zertifikat für diese Verbindung" -#: lxc/network_load_balancer.go:782 lxc/network_load_balancer.go:783 +#: lxc/network_load_balancer.go:787 lxc/network_load_balancer.go:788 #, fuzzy msgid "Manage network load balancer backends" msgstr "Kein Zertifikat für diese Verbindung" -#: lxc/network_load_balancer.go:947 lxc/network_load_balancer.go:948 +#: lxc/network_load_balancer.go:952 lxc/network_load_balancer.go:953 #, fuzzy msgid "Manage network load balancer ports" msgstr "Kein Zertifikat für diese Verbindung" @@ -4080,17 +4076,17 @@ msgstr "Kein Zertifikat für diese Verbindung" msgid "Manage network peerings" msgstr "Kein Zertifikat für diese Verbindung" -#: lxc/network_zone.go:1224 lxc/network_zone.go:1225 +#: lxc/network_zone.go:1229 lxc/network_zone.go:1230 #, fuzzy msgid "Manage network zone record entries" msgstr "Kein Zertifikat für diese Verbindung" -#: lxc/network_zone.go:631 lxc/network_zone.go:632 +#: lxc/network_zone.go:636 lxc/network_zone.go:637 #, fuzzy msgid "Manage network zone records" msgstr "Kein Zertifikat für diese Verbindung" -#: lxc/network_zone.go:27 lxc/network_zone.go:28 +#: lxc/network_zone.go:28 lxc/network_zone.go:29 #, fuzzy msgid "Manage network zones" msgstr "Kein Zertifikat für diese Verbindung" @@ -4110,12 +4106,12 @@ msgstr "Fehlerhafte Profil URL %s" msgid "Manage projects" msgstr "Fehlerhafte Profil URL %s" -#: lxc/storage_bucket.go:726 +#: lxc/storage_bucket.go:731 #, fuzzy msgid "Manage storage bucket keys" msgstr "Kein Zertifikat für diese Verbindung" -#: lxc/storage_bucket.go:727 +#: lxc/storage_bucket.go:732 #, fuzzy msgid "Manage storage bucket keys." msgstr "Kein Zertifikat für diese Verbindung" @@ -4148,7 +4144,7 @@ msgid "" "\"custom\" (user created) volumes." msgstr "" -#: lxc/remote.go:33 lxc/remote.go:34 +#: lxc/remote.go:34 lxc/remote.go:35 msgid "Manage the list of remote servers" msgstr "" @@ -4232,12 +4228,12 @@ msgid "" "Minimum level for log messages (only available when using pretty format)" msgstr "" -#: lxc/storage_bucket.go:111 lxc/storage_bucket.go:211 -#: lxc/storage_bucket.go:287 lxc/storage_bucket.go:406 -#: lxc/storage_bucket.go:563 lxc/storage_bucket.go:655 -#: lxc/storage_bucket.go:797 lxc/storage_bucket.go:878 -#: lxc/storage_bucket.go:953 lxc/storage_bucket.go:1032 -#: lxc/storage_bucket.go:1155 +#: lxc/storage_bucket.go:116 lxc/storage_bucket.go:216 +#: lxc/storage_bucket.go:292 lxc/storage_bucket.go:411 +#: lxc/storage_bucket.go:568 lxc/storage_bucket.go:660 +#: lxc/storage_bucket.go:802 lxc/storage_bucket.go:883 +#: lxc/storage_bucket.go:958 lxc/storage_bucket.go:1037 +#: lxc/storage_bucket.go:1160 #, fuzzy msgid "Missing bucket name" msgstr "Fehlende Zusammenfassung." @@ -4290,8 +4286,8 @@ msgstr "der Name des Ursprung Containers muss angegeben werden" msgid "Missing instance name" msgstr "der Name des Ursprung Containers muss angegeben werden" -#: lxc/storage_bucket.go:882 lxc/storage_bucket.go:957 -#: lxc/storage_bucket.go:1036 lxc/storage_bucket.go:1159 +#: lxc/storage_bucket.go:887 lxc/storage_bucket.go:962 +#: lxc/storage_bucket.go:1041 lxc/storage_bucket.go:1164 #, fuzzy msgid "Missing key name" msgstr "Fehlende Zusammenfassung." @@ -4300,10 +4296,10 @@ msgstr "Fehlende Zusammenfassung." #: lxc/network_forward.go:481 lxc/network_forward.go:627 #: lxc/network_forward.go:746 lxc/network_forward.go:823 #: lxc/network_forward.go:889 lxc/network_load_balancer.go:201 -#: lxc/network_load_balancer.go:411 lxc/network_load_balancer.go:484 -#: lxc/network_load_balancer.go:630 lxc/network_load_balancer.go:750 -#: lxc/network_load_balancer.go:826 lxc/network_load_balancer.go:890 -#: lxc/network_load_balancer.go:991 lxc/network_load_balancer.go:1053 +#: lxc/network_load_balancer.go:416 lxc/network_load_balancer.go:489 +#: lxc/network_load_balancer.go:635 lxc/network_load_balancer.go:755 +#: lxc/network_load_balancer.go:831 lxc/network_load_balancer.go:895 +#: lxc/network_load_balancer.go:996 lxc/network_load_balancer.go:1058 #, fuzzy msgid "Missing listen address" msgstr "der Name des Ursprung Containers muss angegeben werden" @@ -4331,27 +4327,27 @@ msgstr "Profilname kann nicht geändert werden" #: lxc/network_forward.go:477 lxc/network_forward.go:623 #: lxc/network_forward.go:742 lxc/network_forward.go:819 #: lxc/network_forward.go:885 lxc/network_load_balancer.go:123 -#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:261 -#: lxc/network_load_balancer.go:407 lxc/network_load_balancer.go:480 -#: lxc/network_load_balancer.go:626 lxc/network_load_balancer.go:746 -#: lxc/network_load_balancer.go:822 lxc/network_load_balancer.go:886 -#: lxc/network_load_balancer.go:987 lxc/network_load_balancer.go:1049 +#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:266 +#: lxc/network_load_balancer.go:412 lxc/network_load_balancer.go:485 +#: lxc/network_load_balancer.go:631 lxc/network_load_balancer.go:751 +#: lxc/network_load_balancer.go:827 lxc/network_load_balancer.go:891 +#: lxc/network_load_balancer.go:992 lxc/network_load_balancer.go:1054 #: lxc/network_peer.go:110 lxc/network_peer.go:180 lxc/network_peer.go:237 #: lxc/network_peer.go:355 lxc/network_peer.go:426 lxc/network_peer.go:556 #: lxc/network_peer.go:665 msgid "Missing network name" msgstr "" -#: lxc/network_zone.go:178 lxc/network_zone.go:234 lxc/network_zone.go:294 -#: lxc/network_zone.go:382 lxc/network_zone.go:503 lxc/network_zone.go:606 -#: lxc/network_zone.go:712 lxc/network_zone.go:780 lxc/network_zone.go:892 -#: lxc/network_zone.go:976 lxc/network_zone.go:1197 lxc/network_zone.go:1262 -#: lxc/network_zone.go:1307 +#: lxc/network_zone.go:179 lxc/network_zone.go:235 lxc/network_zone.go:299 +#: lxc/network_zone.go:387 lxc/network_zone.go:508 lxc/network_zone.go:611 +#: lxc/network_zone.go:717 lxc/network_zone.go:785 lxc/network_zone.go:897 +#: lxc/network_zone.go:981 lxc/network_zone.go:1202 lxc/network_zone.go:1267 +#: lxc/network_zone.go:1312 #, fuzzy msgid "Missing network zone name" msgstr "Profilname kann nicht geändert werden" -#: lxc/network_zone.go:833 lxc/network_zone.go:1095 +#: lxc/network_zone.go:838 lxc/network_zone.go:1100 #, fuzzy msgid "Missing network zone record name" msgstr "Profilname kann nicht geändert werden" @@ -4363,13 +4359,13 @@ msgid "Missing peer name" msgstr "Fehlende Zusammenfassung." #: lxc/storage.go:194 lxc/storage.go:264 lxc/storage.go:370 lxc/storage.go:440 -#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:107 -#: lxc/storage_bucket.go:207 lxc/storage_bucket.go:283 -#: lxc/storage_bucket.go:402 lxc/storage_bucket.go:477 -#: lxc/storage_bucket.go:559 lxc/storage_bucket.go:651 -#: lxc/storage_bucket.go:793 lxc/storage_bucket.go:874 -#: lxc/storage_bucket.go:949 lxc/storage_bucket.go:1028 -#: lxc/storage_bucket.go:1151 lxc/storage_volume.go:189 +#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:112 +#: lxc/storage_bucket.go:212 lxc/storage_bucket.go:288 +#: lxc/storage_bucket.go:407 lxc/storage_bucket.go:482 +#: lxc/storage_bucket.go:564 lxc/storage_bucket.go:656 +#: lxc/storage_bucket.go:798 lxc/storage_bucket.go:879 +#: lxc/storage_bucket.go:954 lxc/storage_bucket.go:1033 +#: lxc/storage_bucket.go:1156 lxc/storage_volume.go:189 #: lxc/storage_volume.go:287 lxc/storage_volume.go:583 #: lxc/storage_volume.go:660 lxc/storage_volume.go:735 #: lxc/storage_volume.go:817 lxc/storage_volume.go:919 @@ -4499,7 +4495,7 @@ msgstr "" msgid "Moving the storage volume: %s" msgstr "Kein Zertifikat für diese Verbindung" -#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1097 +#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1102 msgid "Multiple ports match. Use --force to remove them all" msgstr "" @@ -4519,10 +4515,10 @@ msgstr "der Name des Ursprung Containers muss angegeben werden" #: 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:731 lxc/storage.go:638 lxc/storage_bucket.go:506 -#: lxc/storage_bucket.go:826 lxc/storage_volume.go:1561 +#: lxc/network_acl.go:147 lxc/network_peer.go:139 lxc/network_zone.go:139 +#: lxc/network_zone.go:746 lxc/profile.go:677 lxc/project.go:498 +#: lxc/remote.go:732 lxc/storage.go:638 lxc/storage_bucket.go:511 +#: lxc/storage_bucket.go:831 lxc/storage_volume.go:1561 msgid "NAME" msgstr "" @@ -4548,7 +4544,7 @@ msgstr "" #: lxc/network.go:957 lxc/operation.go:154 lxc/project.go:456 #: lxc/project.go:461 lxc/project.go:466 lxc/project.go:471 lxc/project.go:476 -#: lxc/project.go:481 lxc/remote.go:691 lxc/remote.go:696 lxc/remote.go:701 +#: lxc/project.go:481 lxc/remote.go:692 lxc/remote.go:697 lxc/remote.go:702 msgid "NO" msgstr "" @@ -4575,7 +4571,7 @@ msgstr "" msgid "Name" msgstr "" -#: lxc/remote.go:141 +#: lxc/remote.go:142 msgid "Name of the project to use for this remote:" msgstr "" @@ -4624,12 +4620,12 @@ msgstr "Profil %s gelöscht\n" msgid "Network ACL %s renamed to %s" msgstr "Profil %s erstellt\n" -#: lxc/network_zone.go:336 +#: lxc/network_zone.go:341 #, fuzzy, c-format msgid "Network Zone %s created" msgstr "Profil %s erstellt\n" -#: lxc/network_zone.go:616 +#: lxc/network_zone.go:621 #, fuzzy, c-format msgid "Network Zone %s deleted" msgstr "Profil %s gelöscht\n" @@ -4644,12 +4640,12 @@ msgstr "Profil %s erstellt\n" msgid "Network forward %s deleted" msgstr "Profil %s gelöscht\n" -#: lxc/network_load_balancer.go:365 +#: lxc/network_load_balancer.go:370 #, fuzzy, c-format msgid "Network load balancer %s created" msgstr "Profil %s erstellt\n" -#: lxc/network_load_balancer.go:767 +#: lxc/network_load_balancer.go:772 #, fuzzy, c-format msgid "Network load balancer %s deleted" msgstr "Profil %s gelöscht\n" @@ -4689,12 +4685,12 @@ msgstr "Profil %s erstellt\n" msgid "Network usage:" msgstr "Profil %s erstellt\n" -#: lxc/network_zone.go:934 +#: lxc/network_zone.go:939 #, fuzzy, c-format msgid "Network zone record %s created" msgstr "Profil %s erstellt\n" -#: lxc/network_zone.go:1207 +#: lxc/network_zone.go:1212 #, fuzzy, c-format msgid "Network zone record %s deleted" msgstr "Profil %s gelöscht\n" @@ -4732,11 +4728,11 @@ msgstr "Kein Zertifikat für diese Verbindung" msgid "No device found for this storage volume" msgstr "Kein Zertifikat für diese Verbindung" -#: lxc/network_load_balancer.go:921 +#: lxc/network_load_balancer.go:926 msgid "No matching backend found" msgstr "" -#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1108 +#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1113 msgid "No matching port(s) found" msgstr "" @@ -4783,7 +4779,7 @@ msgstr "" msgid "Only \"custom\" volumes can be snapshotted" msgstr "" -#: lxc/remote.go:332 +#: lxc/remote.go:333 msgid "Only https URLs are supported for simplestreams" msgstr "" @@ -4808,7 +4804,7 @@ msgstr "Profil %s gelöscht\n" msgid "Optimized Storage" msgstr "" -#: lxc/main.go:96 +#: lxc/main.go:97 msgid "Override the source project" msgstr "" @@ -4854,11 +4850,11 @@ msgstr "" msgid "PROJECT" msgstr "" -#: lxc/remote.go:733 +#: lxc/remote.go:734 msgid "PROTOCOL" msgstr "" -#: lxc/image.go:1073 lxc/remote.go:735 +#: lxc/image.go:1073 lxc/remote.go:736 msgid "PUBLIC" msgstr "" @@ -4874,7 +4870,7 @@ msgstr "" msgid "Partitions:" msgstr "" -#: lxc/main.go:361 +#: lxc/main.go:363 #, fuzzy, c-format msgid "Password for %s: " msgstr "Administrator Passwort für %s: " @@ -4888,7 +4884,7 @@ msgstr "kann nicht zum selben Container Namen kopieren" msgid "Perform an incremental copy" msgstr "" -#: lxc/remote.go:182 +#: lxc/remote.go:183 #, fuzzy msgid "Please provide an alternate server address (empty to abort):" msgstr "Alternatives config Verzeichnis." @@ -4902,7 +4898,7 @@ msgstr "" msgid "Please provide cluster member name: " msgstr "der Name des Ursprung Containers muss angegeben werden" -#: lxc/remote.go:462 +#: lxc/remote.go:463 msgid "Please type 'y', 'n' or the fingerprint:" msgstr "" @@ -4924,10 +4920,10 @@ msgstr "" #: lxc/config.go:1278 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/network_load_balancer.go:695 lxc/network_peer.go:611 +#: lxc/network_zone.go:557 lxc/network_zone.go:1149 lxc/profile.go:539 +#: lxc/project.go:316 lxc/storage.go:311 lxc/storage_bucket.go:349 +#: lxc/storage_bucket.go:1098 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 "" @@ -4936,7 +4932,7 @@ msgstr "" msgid "Pretty rendering (short for --format=pretty)" msgstr "" -#: lxc/main.go:94 +#: lxc/main.go:95 msgid "Print help" msgstr "" @@ -4944,7 +4940,7 @@ msgstr "" msgid "Print the raw response" msgstr "" -#: lxc/main.go:93 +#: lxc/main.go:94 msgid "Print version number" msgstr "" @@ -5038,7 +5034,7 @@ msgstr "Profil %s gelöscht\n" msgid "Project %s renamed to %s" msgstr "Profil %s wurde auf %s angewandt\n" -#: lxc/remote.go:106 +#: lxc/remote.go:107 msgid "Project to use for the remote" msgstr "" @@ -5137,7 +5133,7 @@ msgid "" "pool \"default\"." msgstr "" -#: lxc/remote.go:105 +#: lxc/remote.go:106 msgid "Public image server" msgstr "" @@ -5188,7 +5184,7 @@ msgstr "" msgid "RESOURCE" msgstr "" -#: lxc/storage_bucket.go:828 +#: lxc/storage_bucket.go:833 msgid "ROLE" msgstr "" @@ -5234,45 +5230,45 @@ msgstr "Herunterfahren des Containers erzwingen." msgid "Refreshing the image: %s" msgstr "" -#: lxc/remote.go:785 +#: lxc/remote.go:786 #, fuzzy, c-format msgid "Remote %s already exists" msgstr "entfernte Instanz %s existiert bereits" -#: lxc/project.go:769 lxc/remote.go:776 lxc/remote.go:849 lxc/remote.go:905 -#: lxc/remote.go:945 +#: lxc/project.go:769 lxc/remote.go:777 lxc/remote.go:850 lxc/remote.go:906 +#: lxc/remote.go:946 #, fuzzy, c-format msgid "Remote %s doesn't exist" msgstr "entfernte Instanz %s existiert nicht" -#: lxc/remote.go:301 +#: lxc/remote.go:302 #, fuzzy, c-format msgid "Remote %s exists as <%s>" msgstr "entfernte Instanz %s existiert als <%s>" -#: lxc/remote.go:857 +#: lxc/remote.go:858 #, c-format msgid "Remote %s is global and cannot be removed" msgstr "" -#: lxc/remote.go:780 lxc/remote.go:853 lxc/remote.go:949 +#: lxc/remote.go:781 lxc/remote.go:854 lxc/remote.go:950 #, c-format msgid "Remote %s is static and cannot be modified" msgstr "" -#: lxc/remote.go:290 +#: lxc/remote.go:291 msgid "Remote address must not be empty" msgstr "" -#: lxc/remote.go:101 +#: lxc/remote.go:102 msgid "Remote admin password" msgstr "Entferntes Administrator Passwort" -#: lxc/remote.go:295 +#: lxc/remote.go:296 msgid "Remote names may not contain colons" msgstr "" -#: lxc/remote.go:102 +#: lxc/remote.go:103 msgid "Remote trust token" msgstr "" @@ -5300,7 +5296,7 @@ msgstr "kann nicht zum selben Container Namen kopieren" msgid "Remove a member from the cluster" msgstr "" -#: lxc/network_zone.go:1285 +#: lxc/network_zone.go:1290 #, fuzzy msgid "Remove a network zone record entry" msgstr "Profil %s erstellt\n" @@ -5310,7 +5306,7 @@ msgstr "Profil %s erstellt\n" msgid "Remove aliases" msgstr "Entferntes Administrator Passwort" -#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1025 +#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1030 msgid "Remove all ports that match" msgstr "" @@ -5318,17 +5314,17 @@ msgstr "" msgid "Remove all rules that match" msgstr "" -#: lxc/network_load_balancer.go:862 +#: lxc/network_load_balancer.go:867 #, fuzzy msgid "Remove backend from a load balancer" msgstr "der Name des Ursprung Containers muss angegeben werden" -#: lxc/network_load_balancer.go:861 +#: lxc/network_load_balancer.go:866 #, fuzzy msgid "Remove backends from a load balancer" msgstr "der Name des Ursprung Containers muss angegeben werden" -#: lxc/network_zone.go:1286 +#: lxc/network_zone.go:1291 #, fuzzy msgid "Remove entries from a network zone record" msgstr "kann nicht zum selben Container Namen kopieren" @@ -5357,7 +5353,7 @@ msgstr "kann nicht zum selben Container Namen kopieren" msgid "Remove ports from a forward" msgstr "kann nicht zum selben Container Namen kopieren" -#: lxc/network_load_balancer.go:1023 lxc/network_load_balancer.go:1024 +#: lxc/network_load_balancer.go:1028 lxc/network_load_balancer.go:1029 #, fuzzy msgid "Remove ports from a load balancer" msgstr "kann nicht zum selben Container Namen kopieren" @@ -5367,7 +5363,7 @@ msgstr "kann nicht zum selben Container Namen kopieren" msgid "Remove profiles from instances" msgstr "kann nicht zum selben Container Namen kopieren" -#: lxc/remote.go:827 lxc/remote.go:828 +#: lxc/remote.go:828 lxc/remote.go:829 msgid "Remove remotes" msgstr "" @@ -5431,7 +5427,7 @@ msgstr "Fehlerhafte Profil URL %s" msgid "Rename projects" msgstr "Fehlerhafte Profil URL %s" -#: lxc/remote.go:754 lxc/remote.go:755 +#: lxc/remote.go:755 lxc/remote.go:756 msgid "Rename remotes" msgstr "" @@ -5516,7 +5512,7 @@ msgstr "" #: lxc/console.go:44 #, fuzzy -msgid "Retrieve the instance's console log" +msgid "Retrieve the container's console log" msgstr "Herunterfahren des Containers erzwingen." #: lxc/init.go:347 @@ -5534,7 +5530,7 @@ msgstr "der Name des Ursprung Containers muss angegeben werden" msgid "Revoke cluster member join token" msgstr "der Name des Ursprung Containers muss angegeben werden" -#: lxc/storage_bucket.go:851 +#: lxc/storage_bucket.go:856 msgid "Role (admin or read-only)" msgstr "" @@ -5586,7 +5582,7 @@ msgstr "Entferntes Administrator Passwort" msgid "STATE" msgstr "" -#: lxc/remote.go:736 +#: lxc/remote.go:737 msgid "STATIC" msgstr "" @@ -5610,11 +5606,11 @@ msgstr "" msgid "STP" msgstr "" -#: lxc/storage_bucket.go:853 +#: lxc/storage_bucket.go:858 msgid "Secret key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:909 +#: lxc/storage_bucket.go:914 #, fuzzy, c-format msgid "Secret key: %s" msgstr "Erstellt: %s" @@ -5623,21 +5619,21 @@ msgstr "Erstellt: %s" msgid "Send a raw query to LXD" msgstr "" -#: lxc/remote.go:104 +#: lxc/remote.go:105 msgid "Server authentication type (tls or oidc)" msgstr "" -#: lxc/remote.go:460 +#: lxc/remote.go:461 msgid "Server certificate NACKed by user" msgstr "Server Zertifikat vom Benutzer nicht akzeptiert" -#: lxc/remote.go:599 +#: lxc/remote.go:600 #, fuzzy msgid "Server doesn't trust us after authentication" msgstr "" "Der Server vertraut uns nicht nachdem er unser Zertifikat hinzugefügt hat" -#: lxc/remote.go:103 +#: lxc/remote.go:104 msgid "Server protocol (lxd or simplestreams)" msgstr "" @@ -5742,12 +5738,12 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_load_balancer.go:450 +#: lxc/network_load_balancer.go:455 #, fuzzy msgid "Set network load balancer keys" msgstr "Kein Zertifikat für diese Verbindung" -#: lxc/network_load_balancer.go:451 +#: lxc/network_load_balancer.go:456 msgid "" "Set network load balancer keys\n" "\n" @@ -5770,12 +5766,12 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:353 +#: lxc/network_zone.go:358 #, fuzzy msgid "Set network zone configuration keys" msgstr "Profil %s erstellt\n" -#: lxc/network_zone.go:354 +#: lxc/network_zone.go:359 msgid "" "Set network zone configuration keys\n" "\n" @@ -5784,7 +5780,7 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:951 lxc/network_zone.go:952 +#: lxc/network_zone.go:956 lxc/network_zone.go:957 #, fuzzy msgid "Set network zone record configuration keys" msgstr "Profil %s erstellt\n" @@ -5816,12 +5812,12 @@ msgid "" " lxc project set [:] " msgstr "" -#: lxc/storage_bucket.go:529 +#: lxc/storage_bucket.go:534 #, fuzzy msgid "Set storage bucket configuration keys" msgstr "Profil %s erstellt\n" -#: lxc/storage_bucket.go:530 +#: lxc/storage_bucket.go:535 msgid "" "Set storage bucket configuration keys\n" "\n" @@ -5858,7 +5854,7 @@ msgid "" " lxc storage volume set [:] [/] " msgstr "" -#: lxc/remote.go:923 lxc/remote.go:924 +#: lxc/remote.go:924 lxc/remote.go:925 msgid "Set the URL for the remote" msgstr "" @@ -5887,7 +5883,7 @@ msgstr "" msgid "Set the key as a network forward property" msgstr "Kein Zertifikat für diese Verbindung" -#: lxc/network_load_balancer.go:458 +#: lxc/network_load_balancer.go:463 #, fuzzy msgid "Set the key as a network load balancer property" msgstr "Kein Zertifikat für diese Verbindung" @@ -5901,12 +5897,12 @@ msgstr "Kein Zertifikat für diese Verbindung" msgid "Set the key as a network property" msgstr "" -#: lxc/network_zone.go:361 +#: lxc/network_zone.go:366 #, fuzzy msgid "Set the key as a network zone property" msgstr "Anhalten des Containers fehlgeschlagen!" -#: lxc/network_zone.go:957 +#: lxc/network_zone.go:962 #, fuzzy msgid "Set the key as a network zone record property" msgstr "Profil %s erstellt\n" @@ -5919,7 +5915,7 @@ msgstr "" msgid "Set the key as a project property" msgstr "" -#: lxc/storage_bucket.go:537 +#: lxc/storage_bucket.go:542 #, fuzzy msgid "Set the key as a storage bucket property" msgstr "Anhalten des Containers fehlgeschlagen!" @@ -5942,11 +5938,11 @@ msgstr "" msgid "Setup SSH SFTP listener on address:port instead of mounting" msgstr "" -#: lxc/main.go:97 +#: lxc/main.go:98 msgid "Show all debug messages" msgstr "" -#: lxc/main.go:98 +#: lxc/main.go:99 msgid "Show all information messages" msgstr "" @@ -6023,7 +6019,7 @@ msgstr "Profil %s erstellt\n" msgid "Show instance or server information" msgstr "Profil %s erstellt\n" -#: lxc/main.go:271 lxc/main.go:272 +#: lxc/main.go:272 lxc/main.go:273 msgid "Show less common commands" msgstr "" @@ -6060,17 +6056,17 @@ msgstr "Profil %s erstellt\n" msgid "Show network peer configurations" msgstr "Profil %s erstellt\n" -#: lxc/network_zone.go:155 lxc/network_zone.go:156 +#: lxc/network_zone.go:156 lxc/network_zone.go:157 #, fuzzy msgid "Show network zone configurations" msgstr "Profil %s erstellt\n" -#: lxc/network_zone.go:758 +#: lxc/network_zone.go:763 #, fuzzy msgid "Show network zone record configuration" msgstr "Profil %s erstellt\n" -#: lxc/network_zone.go:759 +#: lxc/network_zone.go:764 #, fuzzy msgid "Show network zone record configurations" msgstr "Profil %s erstellt\n" @@ -6083,12 +6079,12 @@ msgstr "" msgid "Show project options" msgstr "" -#: lxc/storage_bucket.go:623 lxc/storage_bucket.go:624 +#: lxc/storage_bucket.go:628 lxc/storage_bucket.go:629 #, fuzzy msgid "Show storage bucket configurations" msgstr "Profil %s erstellt\n" -#: lxc/storage_bucket.go:1123 lxc/storage_bucket.go:1124 +#: lxc/storage_bucket.go:1128 lxc/storage_bucket.go:1129 #, fuzzy msgid "Show storage bucket key configurations" msgstr "Profil %s erstellt\n" @@ -6117,7 +6113,7 @@ msgid "" "that are granted via identity provider group mappings. \n" msgstr "" -#: lxc/remote.go:630 lxc/remote.go:631 +#: lxc/remote.go:631 lxc/remote.go:632 msgid "Show the default remote" msgstr "" @@ -6249,22 +6245,22 @@ msgstr "Anhalten des Containers fehlgeschlagen!" msgid "Stopping the instance failed: %s" msgstr "Anhalten des Containers fehlgeschlagen!" -#: lxc/storage_bucket.go:161 +#: lxc/storage_bucket.go:166 #, fuzzy, c-format msgid "Storage bucket %s created" msgstr "Profil %s erstellt\n" -#: lxc/storage_bucket.go:228 +#: lxc/storage_bucket.go:233 #, fuzzy, c-format msgid "Storage bucket %s deleted" msgstr "Profil %s gelöscht\n" -#: lxc/storage_bucket.go:907 +#: lxc/storage_bucket.go:912 #, fuzzy, c-format msgid "Storage bucket key %s added" msgstr "Profil %s erstellt\n" -#: lxc/storage_bucket.go:973 +#: lxc/storage_bucket.go:978 #, fuzzy, c-format msgid "Storage bucket key %s removed" msgstr "Profil %s erstellt\n" @@ -6341,7 +6337,7 @@ msgstr "" msgid "Switch the current project" msgstr "" -#: lxc/remote.go:883 lxc/remote.go:884 +#: lxc/remote.go:884 lxc/remote.go:885 msgid "Switch the default remote" msgstr "" @@ -6462,7 +6458,7 @@ msgstr "der Name des Ursprung Containers muss angegeben werden" msgid "The property %q does not exist on the instance snapshot %s/%s: %v" msgstr "der Name des Ursprung Containers muss angegeben werden" -#: lxc/network_load_balancer.go:424 +#: lxc/network_load_balancer.go:429 #, fuzzy, c-format msgid "The property %q does not exist on the load balancer %q: %v" msgstr "der Name des Ursprung Containers muss angegeben werden" @@ -6487,12 +6483,12 @@ msgstr "der Name des Ursprung Containers muss angegeben werden" msgid "The property %q does not exist on the network peer %q: %v" msgstr "der Name des Ursprung Containers muss angegeben werden" -#: lxc/network_zone.go:246 +#: lxc/network_zone.go:247 #, fuzzy, c-format msgid "The property %q does not exist on the network zone %q: %v" msgstr "der Name des Ursprung Containers muss angegeben werden" -#: lxc/network_zone.go:845 +#: lxc/network_zone.go:850 #, fuzzy, c-format msgid "The property %q does not exist on the network zone record %q: %v" msgstr "der Name des Ursprung Containers muss angegeben werden" @@ -6507,7 +6503,7 @@ msgstr "der Name des Ursprung Containers muss angegeben werden" msgid "The property %q does not exist on the project %q: %v" msgstr "der Name des Ursprung Containers muss angegeben werden" -#: lxc/storage_bucket.go:426 +#: lxc/storage_bucket.go:431 #, fuzzy, c-format msgid "The property %q does not exist on the storage bucket %q: %v" msgstr "der Name des Ursprung Containers muss angegeben werden" @@ -6564,7 +6560,7 @@ msgstr "" msgid "This LXD server is not available on the network" msgstr "" -#: lxc/main.go:293 +#: lxc/main.go:294 msgid "" "This client hasn't been configured to use a remote LXD server yet.\n" "As your platform can't run native Linux instances, you must connect to a " @@ -6598,11 +6594,11 @@ msgstr "" msgid "To create a new network, use: lxc network create" msgstr "" -#: lxc/console.go:210 +#: lxc/console.go:215 msgid "To detach from the console, press: +a q" msgstr "" -#: lxc/main.go:403 +#: lxc/main.go:406 msgid "" "To start your first container, try: lxc launch ubuntu:24.04\n" "Or for a virtual machine: lxc launch ubuntu:24.04 --vm" @@ -6701,7 +6697,7 @@ msgstr "" msgid "UPLOAD DATE" msgstr "" -#: lxc/cluster.go:184 lxc/remote.go:732 +#: lxc/cluster.go:184 lxc/remote.go:733 msgid "URL" msgstr "" @@ -6710,7 +6706,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:679 lxc/project.go:506 +#: lxc/network_zone.go:141 lxc/profile.go:679 lxc/project.go:506 #: lxc/storage.go:647 lxc/storage_volume.go:1564 msgid "USED BY" msgstr "" @@ -6729,7 +6725,7 @@ msgstr "" msgid "Unable to create a temporary file: %v" msgstr "" -#: lxc/remote.go:213 lxc/remote.go:247 +#: lxc/remote.go:214 lxc/remote.go:248 #, fuzzy msgid "Unavailable remote server" msgstr "Neue entfernte Server hinzufügen" @@ -6750,7 +6746,7 @@ msgstr "Unbekannter Befehl %s für Abbild" msgid "Unknown column shorthand char '%c' in '%s'" msgstr "" -#: lxc/console.go:159 +#: lxc/console.go:164 #, fuzzy, c-format msgid "Unknown console type %q" msgstr "Unbekannter Befehl %s für Abbild" @@ -6818,12 +6814,12 @@ msgstr "Profil %s erstellt\n" msgid "Unset network forward keys" msgstr "Kein Zertifikat für diese Verbindung" -#: lxc/network_load_balancer.go:548 +#: lxc/network_load_balancer.go:553 #, fuzzy msgid "Unset network load balancer configuration keys" msgstr "Profil %s erstellt\n" -#: lxc/network_load_balancer.go:549 +#: lxc/network_load_balancer.go:554 #, fuzzy msgid "Unset network load balancer keys" msgstr "Kein Zertifikat für diese Verbindung" @@ -6838,12 +6834,12 @@ msgstr "Profil %s erstellt\n" msgid "Unset network peer keys" msgstr "Kein Zertifikat für diese Verbindung" -#: lxc/network_zone.go:433 lxc/network_zone.go:434 +#: lxc/network_zone.go:438 lxc/network_zone.go:439 #, fuzzy msgid "Unset network zone configuration keys" msgstr "Profil %s erstellt\n" -#: lxc/network_zone.go:1027 lxc/network_zone.go:1028 +#: lxc/network_zone.go:1032 lxc/network_zone.go:1033 #, fuzzy msgid "Unset network zone record configuration keys" msgstr "Profil %s erstellt\n" @@ -6857,7 +6853,7 @@ msgstr "" msgid "Unset project configuration keys" msgstr "Profil %s erstellt\n" -#: lxc/storage_bucket.go:692 lxc/storage_bucket.go:693 +#: lxc/storage_bucket.go:697 lxc/storage_bucket.go:698 #, fuzzy msgid "Unset storage bucket configuration keys" msgstr "Alternatives config Verzeichnis." @@ -6884,7 +6880,7 @@ msgstr "" msgid "Unset the key as a network forward property" msgstr "Kein Zertifikat für diese Verbindung" -#: lxc/network_load_balancer.go:552 +#: lxc/network_load_balancer.go:557 #, fuzzy msgid "Unset the key as a network load balancer property" msgstr "Kein Zertifikat für diese Verbindung" @@ -6899,12 +6895,12 @@ msgstr "Kein Zertifikat für diese Verbindung" msgid "Unset the key as a network property" msgstr "Kein Zertifikat für diese Verbindung" -#: lxc/network_zone.go:437 +#: lxc/network_zone.go:442 #, fuzzy msgid "Unset the key as a network zone property" msgstr "Anhalten des Containers fehlgeschlagen!" -#: lxc/network_zone.go:1031 +#: lxc/network_zone.go:1036 #, fuzzy msgid "Unset the key as a network zone record property" msgstr "Profil %s erstellt\n" @@ -6917,7 +6913,7 @@ msgstr "" msgid "Unset the key as a project property" msgstr "" -#: lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:701 #, fuzzy msgid "Unset the key as a storage bucket property" msgstr "Anhalten des Containers fehlgeschlagen!" @@ -6984,7 +6980,7 @@ msgid "" "Use storage driver optimized format (can only be restored on a similar pool)" msgstr "" -#: lxc/main.go:100 +#: lxc/main.go:101 msgid "Use with help or --help to view sub-commands" msgstr "" @@ -7090,7 +7086,7 @@ msgstr "" #: lxc/network.go:959 lxc/operation.go:156 lxc/project.go:458 #: lxc/project.go:463 lxc/project.go:468 lxc/project.go:473 lxc/project.go:478 -#: lxc/project.go:483 lxc/remote.go:693 lxc/remote.go:698 lxc/remote.go:703 +#: lxc/project.go:483 lxc/remote.go:694 lxc/remote.go:699 lxc/remote.go:704 msgid "YES" msgstr "" @@ -7137,7 +7133,7 @@ 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/network.go:909 lxc/network_acl.go:91 lxc/network_zone.go:83 #: lxc/operation.go:103 lxc/profile.go:630 lxc/project.go:407 #: lxc/storage.go:583 lxc/version.go:20 lxc/warning.go:68 #, fuzzy @@ -7260,7 +7256,7 @@ msgstr "" "Entfernt einen Container (oder Sicherungspunkt) und alle dazugehörigen\n" "Daten (Konfiguration, Sicherungspunkte, ...).\n" -#: lxc/network_zone.go:154 lxc/network_zone.go:463 lxc/network_zone.go:581 +#: lxc/network_zone.go:155 lxc/network_zone.go:468 lxc/network_zone.go:586 #, fuzzy msgid "[:]" msgstr "" @@ -7268,7 +7264,7 @@ msgstr "" "\n" "lxd %s \n" -#: lxc/network_zone.go:209 lxc/network_zone.go:432 +#: lxc/network_zone.go:210 lxc/network_zone.go:437 #, fuzzy msgid "[:] " msgstr "" @@ -7276,7 +7272,7 @@ msgstr "" "\n" "lxd %s \n" -#: lxc/network_zone.go:352 +#: lxc/network_zone.go:357 #, fuzzy msgid "[:] =..." msgstr "" @@ -7284,7 +7280,7 @@ msgstr "" "\n" "lxd %s \n" -#: lxc/network_zone.go:269 +#: lxc/network_zone.go:270 #, fuzzy msgid "[:] [key=value...]" msgstr "" @@ -7779,7 +7775,7 @@ msgstr "" #: lxc/network_forward.go:169 lxc/network_forward.go:574 #: lxc/network_forward.go:715 lxc/network_load_balancer.go:171 -#: lxc/network_load_balancer.go:577 lxc/network_load_balancer.go:719 +#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:724 #, fuzzy msgid "[:] " msgstr "" @@ -7787,7 +7783,7 @@ msgstr "" "\n" "lxd %s \n" -#: lxc/network_load_balancer.go:860 +#: lxc/network_load_balancer.go:865 #, fuzzy msgid "[:] " msgstr "" @@ -7795,7 +7791,7 @@ msgstr "" "\n" "lxd %s \n" -#: lxc/network_load_balancer.go:796 +#: lxc/network_load_balancer.go:801 #, fuzzy msgid "" "[:] " @@ -7806,7 +7802,7 @@ msgstr "" "lxd %s \n" #: lxc/network_forward.go:377 lxc/network_forward.go:544 -#: lxc/network_load_balancer.go:381 lxc/network_load_balancer.go:547 +#: lxc/network_load_balancer.go:386 lxc/network_load_balancer.go:552 #, fuzzy msgid "[:] " msgstr "" @@ -7814,7 +7810,7 @@ msgstr "" "\n" "lxd %s \n" -#: lxc/network_forward.go:446 lxc/network_load_balancer.go:449 +#: lxc/network_forward.go:446 lxc/network_load_balancer.go:454 #, fuzzy msgid "[:] =..." msgstr "" @@ -7822,7 +7818,7 @@ msgstr "" "\n" "lxd %s \n" -#: lxc/network_load_balancer.go:961 +#: lxc/network_load_balancer.go:966 #, fuzzy msgid "" "[:] " @@ -7838,7 +7834,7 @@ msgid "" " []" msgstr "" -#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1022 +#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1027 #, fuzzy msgid "[:] [] []" msgstr "" @@ -7937,7 +7933,7 @@ msgstr "" "lxd %s \n" #: lxc/storage.go:167 lxc/storage.go:218 lxc/storage.go:412 lxc/storage.go:759 -#: lxc/storage_bucket.go:449 +#: lxc/storage_bucket.go:454 #, fuzzy msgid "[:]" msgstr "" @@ -7953,8 +7949,8 @@ msgstr "" "\n" "lxd %s \n" -#: lxc/storage_bucket.go:180 lxc/storage_bucket.go:242 -#: lxc/storage_bucket.go:622 lxc/storage_bucket.go:764 +#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:247 +#: lxc/storage_bucket.go:627 lxc/storage_bucket.go:769 #, fuzzy msgid "[:] " msgstr "" @@ -7962,9 +7958,9 @@ msgstr "" "\n" "lxd %s \n" -#: lxc/storage_bucket.go:375 lxc/storage_bucket.go:691 -#: lxc/storage_bucket.go:845 lxc/storage_bucket.go:923 -#: lxc/storage_bucket.go:987 lxc/storage_bucket.go:1122 +#: lxc/storage_bucket.go:380 lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:850 lxc/storage_bucket.go:928 +#: lxc/storage_bucket.go:992 lxc/storage_bucket.go:1127 #, fuzzy msgid "[:] " msgstr "" @@ -7972,7 +7968,7 @@ msgstr "" "\n" "lxd %s \n" -#: lxc/storage_bucket.go:528 +#: lxc/storage_bucket.go:533 #, fuzzy msgid "[:] =..." msgstr "" @@ -8265,7 +8261,7 @@ msgstr "" "Entfernt einen Container (oder Sicherungspunkt) und alle dazugehörigen\n" "Daten (Konfiguration, Sicherungspunkte, ...).\n" -#: lxc/network_zone.go:686 +#: lxc/network_zone.go:691 #, fuzzy msgid "[:]" msgstr "" @@ -8273,7 +8269,7 @@ msgstr "" "\n" "lxd %s \n" -#: lxc/network_zone.go:757 lxc/network_zone.go:1056 lxc/network_zone.go:1173 +#: lxc/network_zone.go:762 lxc/network_zone.go:1061 lxc/network_zone.go:1178 #, fuzzy msgid "[:] " msgstr "" @@ -8281,7 +8277,7 @@ msgstr "" "\n" "lxd %s \n" -#: lxc/network_zone.go:809 lxc/network_zone.go:1026 +#: lxc/network_zone.go:814 lxc/network_zone.go:1031 #, fuzzy msgid "[:] " msgstr "" @@ -8289,7 +8285,7 @@ msgstr "" "\n" "lxd %s \n" -#: lxc/network_zone.go:950 +#: lxc/network_zone.go:955 #, fuzzy msgid "[:] =..." msgstr "" @@ -8297,7 +8293,7 @@ msgstr "" "\n" "lxd %s \n" -#: lxc/network_zone.go:1238 lxc/network_zone.go:1284 +#: lxc/network_zone.go:1243 lxc/network_zone.go:1289 #, fuzzy msgid "[:] " msgstr "" @@ -8305,7 +8301,7 @@ msgstr "" "\n" "lxd %s \n" -#: lxc/network_zone.go:868 +#: lxc/network_zone.go:873 #, fuzzy msgid "[:] [key=value...]" msgstr "" @@ -8355,7 +8351,7 @@ msgstr "" "\n" "lxd %s \n" -#: lxc/remote.go:88 +#: lxc/remote.go:89 #, fuzzy msgid "[] " msgstr "" @@ -8372,7 +8368,7 @@ msgstr "" "Entfernt einen Container (oder Sicherungspunkt) und alle dazugehörigen\n" "Daten (Konfiguration, Sicherungspunkte, ...).\n" -#: lxc/project.go:488 lxc/remote.go:722 +#: lxc/project.go:488 lxc/remote.go:723 msgid "current" msgstr "" @@ -8639,6 +8635,23 @@ msgid "" " Create a new OVN network called bar using baz as its uplink network" msgstr "" +#: lxc/network_load_balancer.go:239 +msgid "" +"lxc network load-balancer create n1 127.0.0.1\n" +"\n" +"lxc network load-balancer create n1 127.0.0.1 < config.yaml\n" +" Create network load-balancer for network n1 with configuration from " +"config.yaml" +msgstr "" + +#: lxc/network_zone.go:273 +msgid "" +"lxc network zone create z1\n" +"\n" +"lxc network zone create z1 < config.yaml\n" +" Create network zone z1 with configuration from config.yaml" +msgstr "" + #: lxc/operation.go:195 msgid "" "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n" @@ -8709,26 +8722,36 @@ msgid "" " Restore the snapshot." msgstr "" -#: lxc/storage_bucket.go:245 +#: lxc/storage_bucket.go:84 +msgid "" +"lxc storage bucket create p1 b01\n" +"\tCreate a new storage bucket name b01 in storage pool p1\n" +"\n" +"lxc storage bucket create p1 b01 < config.yaml\n" +"\tCreate a new storage bucket name b01 in storage pool p1 using the content " +"of config.yaml" +msgstr "" + +#: lxc/storage_bucket.go:250 msgid "" "lxc storage bucket edit [:] < bucket.yaml\n" " Update a storage bucket using the content of bucket.yaml." msgstr "" -#: lxc/storage_bucket.go:990 +#: lxc/storage_bucket.go:995 msgid "" "lxc storage bucket edit [:] < key.yaml\n" " Update a storage bucket key using the content of key.yaml." msgstr "" -#: lxc/storage_bucket.go:1125 +#: lxc/storage_bucket.go:1130 msgid "" "lxc storage bucket key show default data foo\n" " Will show the properties of a bucket key called \"foo\" for a bucket " "called \"data\" in the \"default\" pool." msgstr "" -#: lxc/storage_bucket.go:625 +#: lxc/storage_bucket.go:630 msgid "" "lxc storage bucket show default data\n" " Will show the properties of a bucket called \"data\" in the \"default\" " @@ -8747,7 +8770,7 @@ msgid "" "\t\tCreate a new custom volume using backup0.tar.gz as the source." msgstr "" -#: lxc/remote.go:459 +#: lxc/remote.go:460 msgid "n" msgstr "" @@ -8759,7 +8782,7 @@ msgstr "" msgid "no" msgstr "" -#: lxc/remote.go:452 +#: lxc/remote.go:453 msgid "ok (y/n/[fingerprint])?" msgstr "" @@ -8796,7 +8819,7 @@ msgstr "" msgid "used by" msgstr "" -#: lxc/remote.go:461 +#: lxc/remote.go:462 msgid "y" msgstr "" diff --git a/po/el.po b/po/el.po index 96ac2fac59e9..65685078f3d5 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-08-20 09:31+0100\n" +"POT-Creation-Date: 2024-08-30 09:27+0100\n" "PO-Revision-Date: 2022-03-10 15:06+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Greek " msgstr "" -#: lxc/remote.go:825 lxc/remote.go:882 +#: lxc/remote.go:826 lxc/remote.go:883 msgid "" msgstr "" -#: lxc/remote.go:922 +#: lxc/remote.go:923 msgid " " msgstr "" -#: lxc/remote.go:752 +#: lxc/remote.go:753 msgid " " msgstr "" @@ -556,7 +556,7 @@ msgstr "" msgid "ARCHITECTURE" msgstr "" -#: lxc/remote.go:734 +#: lxc/remote.go:735 msgid "AUTH TYPE" msgstr "" @@ -564,15 +564,15 @@ msgstr "" msgid "AUTHENTICATION METHOD" msgstr "" -#: lxc/remote.go:100 +#: lxc/remote.go:101 msgid "Accept certificate" msgstr "" -#: lxc/storage_bucket.go:852 +#: lxc/storage_bucket.go:857 msgid "Access key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:908 +#: lxc/storage_bucket.go:913 #, c-format msgid "Access key: %s" msgstr "" @@ -607,20 +607,20 @@ msgstr "" msgid "Add a group to an identity provider group" msgstr "" -#: lxc/network_zone.go:1239 +#: lxc/network_zone.go:1244 #, fuzzy msgid "Add a network zone record entry" msgstr " Χρήση δικτύου:" -#: lxc/network_load_balancer.go:798 +#: lxc/network_load_balancer.go:803 msgid "Add backend to a load balancer" msgstr "" -#: lxc/network_load_balancer.go:797 +#: lxc/network_load_balancer.go:802 msgid "Add backends to a load balancer" msgstr "" -#: lxc/network_zone.go:1240 +#: lxc/network_zone.go:1245 msgid "Add entries to a network zone record" msgstr "" @@ -636,11 +636,11 @@ msgstr "" msgid "Add new aliases" msgstr "" -#: lxc/remote.go:89 +#: lxc/remote.go:90 msgid "Add new remote servers" msgstr "" -#: lxc/remote.go:90 +#: lxc/remote.go:91 msgid "" "Add new remote servers\n" "\n" @@ -681,7 +681,7 @@ msgstr "" msgid "Add ports to a forward" msgstr "" -#: lxc/network_load_balancer.go:962 lxc/network_load_balancer.go:963 +#: lxc/network_load_balancer.go:967 lxc/network_load_balancer.go:968 msgid "Add ports to a load balancer" msgstr "" @@ -703,17 +703,17 @@ msgstr "" msgid "Address: %s" msgstr "" -#: lxc/storage_bucket.go:164 +#: lxc/storage_bucket.go:169 #, c-format msgid "Admin access key: %s" msgstr "" -#: lxc/remote.go:566 +#: lxc/remote.go:567 #, c-format msgid "Admin password (or token) for %s:" msgstr "" -#: lxc/storage_bucket.go:165 +#: lxc/storage_bucket.go:170 #, c-format msgid "Admin secret key: %s" msgstr "" @@ -745,7 +745,7 @@ msgstr "" msgid "All projects" msgstr "" -#: lxc/remote.go:181 +#: lxc/remote.go:182 msgid "All server addresses are unavailable" msgstr "" @@ -768,7 +768,7 @@ msgstr "" msgid "Are you sure you want to %s cluster member %q? (yes/no) [default=no]: " msgstr "" -#: lxc/console.go:383 +#: lxc/console.go:388 msgid "As neither could be found, the raw SPICE socket can be found at:" msgstr "" @@ -816,7 +816,7 @@ msgid "" "as well as retrieve past log entries from it." msgstr "" -#: lxc/remote.go:548 +#: lxc/remote.go:549 #, c-format msgid "Authentication type '%s' not supported by server" msgstr "" @@ -835,11 +835,11 @@ msgstr "" msgid "Auto update: %s" msgstr "" -#: lxc/network_forward.go:240 lxc/network_load_balancer.go:242 +#: lxc/network_forward.go:240 lxc/network_load_balancer.go:247 msgid "Auto-allocate an IPv4 or IPv6 listen address. One of 'ipv4', 'ipv6'." msgstr "" -#: lxc/remote.go:136 +#: lxc/remote.go:137 msgid "Available projects:" msgstr "" @@ -871,8 +871,8 @@ msgid "Bad device override syntax, expecting ,=: %s" msgstr "" #: lxc/network.go:333 lxc/network_acl.go:382 lxc/network_forward.go:293 -#: lxc/network_load_balancer.go:296 lxc/network_peer.go:280 -#: lxc/network_zone.go:324 lxc/network_zone.go:922 lxc/storage_bucket.go:136 +#: lxc/network_load_balancer.go:301 lxc/network_peer.go:280 +#: lxc/network_zone.go:329 lxc/network_zone.go:927 lxc/storage_bucket.go:141 #, c-format msgid "Bad key/value pair: %s" msgstr "" @@ -995,7 +995,7 @@ msgstr "" msgid "Can't read from stdin: %w" msgstr "" -#: lxc/remote.go:861 +#: lxc/remote.go:862 msgid "Can't remove the default remote" msgstr "" @@ -1061,15 +1061,14 @@ msgstr "" msgid "Certificate add token for %s deleted" msgstr " Χρήση δικτύου:" -#: lxc/remote.go:218 -#, c-format -msgid "" -"Certificate fingerprint mismatch between certificate token and server %q" +#: lxc/remote.go:452 +msgid "Certificate fingerprint" msgstr "" -#: lxc/remote.go:451 +#: lxc/remote.go:219 #, c-format -msgid "Certificate fingerprint: %s" +msgid "" +"Certificate fingerprint mismatch between certificate token and server %q" msgstr "" #: lxc/network.go:893 @@ -1081,7 +1080,7 @@ msgstr "" msgid "Client %s certificate add token:" msgstr " Χρήση δικτύου:" -#: lxc/remote.go:603 +#: lxc/remote.go:604 msgid "Client certificate now trusted by server:" msgstr "" @@ -1143,18 +1142,18 @@ msgstr "" #: lxc/network_forward.go:456 lxc/network_forward.go:579 #: lxc/network_forward.go:721 lxc/network_forward.go:798 #: lxc/network_forward.go:864 lxc/network_load_balancer.go:176 -#: lxc/network_load_balancer.go:241 lxc/network_load_balancer.go:459 -#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:725 -#: lxc/network_load_balancer.go:801 lxc/network_load_balancer.go:865 -#: lxc/network_load_balancer.go:966 lxc/network_load_balancer.go:1028 +#: lxc/network_load_balancer.go:246 lxc/network_load_balancer.go:464 +#: lxc/network_load_balancer.go:587 lxc/network_load_balancer.go:730 +#: lxc/network_load_balancer.go:806 lxc/network_load_balancer.go:870 +#: lxc/network_load_balancer.go:971 lxc/network_load_balancer.go:1033 #: lxc/storage.go:99 lxc/storage.go:347 lxc/storage.go:418 lxc/storage.go:671 -#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:85 -#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:248 -#: lxc/storage_bucket.go:379 lxc/storage_bucket.go:536 -#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:695 -#: lxc/storage_bucket.go:770 lxc/storage_bucket.go:850 -#: lxc/storage_bucket.go:928 lxc/storage_bucket.go:993 -#: lxc/storage_bucket.go:1129 lxc/storage_volume.go:358 +#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:90 +#: lxc/storage_bucket.go:190 lxc/storage_bucket.go:253 +#: lxc/storage_bucket.go:384 lxc/storage_bucket.go:541 +#: lxc/storage_bucket.go:634 lxc/storage_bucket.go:700 +#: lxc/storage_bucket.go:775 lxc/storage_bucket.go:855 +#: lxc/storage_bucket.go:933 lxc/storage_bucket.go:998 +#: lxc/storage_bucket.go:1134 lxc/storage_volume.go:358 #: lxc/storage_volume.go:560 lxc/storage_volume.go:639 #: lxc/storage_volume.go:883 lxc/storage_volume.go:1097 #: lxc/storage_volume.go:1210 lxc/storage_volume.go:1678 @@ -1182,11 +1181,11 @@ msgstr "" msgid "Columns" msgstr "" -#: lxc/main.go:81 +#: lxc/main.go:82 msgid "Command line client for LXD" msgstr "" -#: lxc/main.go:82 +#: lxc/main.go:83 msgid "" "Command line client for LXD\n" "\n" @@ -1218,19 +1217,15 @@ msgstr "" #: lxc/config.go:347 lxc/config.go:1277 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/network_load_balancer.go:694 lxc/network_peer.go:610 +#: lxc/network_zone.go:556 lxc/network_zone.go:1148 lxc/profile.go:538 +#: lxc/project.go:315 lxc/storage.go:310 lxc/storage_bucket.go:348 +#: lxc/storage_bucket.go:1097 lxc/storage_volume.go:1016 #: lxc/storage_volume.go:1048 #, c-format msgid "Config parsing error: %s" msgstr "" -#: lxc/console.go:140 -msgid "Console log:" -msgstr "" - #: lxc/storage_volume.go:561 msgid "Content type, block or filesystem" msgstr "" @@ -1333,12 +1328,12 @@ msgstr "" msgid "Cores:" msgstr "" -#: lxc/remote.go:486 +#: lxc/remote.go:487 #, c-format msgid "Could not close server cert file %q: %w" msgstr "" -#: lxc/remote.go:224 lxc/remote.go:470 +#: lxc/remote.go:225 lxc/remote.go:471 msgid "Could not create server cert dir" msgstr "" @@ -1377,12 +1372,12 @@ msgstr "" msgid "Could not write new remote certificate for remote '%s' with error: %v" msgstr "" -#: lxc/remote.go:481 +#: lxc/remote.go:482 #, c-format msgid "Could not write server cert file %q: %w" msgstr "" -#: lxc/network_zone.go:1327 +#: lxc/network_zone.go:1332 msgid "Couldn't find a matching entry" msgstr "" @@ -1434,7 +1429,7 @@ msgstr "" msgid "Create instances from images" msgstr "" -#: lxc/storage_bucket.go:846 lxc/storage_bucket.go:847 +#: lxc/storage_bucket.go:851 lxc/storage_bucket.go:852 msgid "Create key for a storage bucket" msgstr "" @@ -1468,12 +1463,12 @@ msgstr " Χρήση δικτύου:" msgid "Create new network peering" msgstr "" -#: lxc/network_zone.go:869 lxc/network_zone.go:870 +#: lxc/network_zone.go:874 lxc/network_zone.go:875 #, fuzzy msgid "Create new network zone record" msgstr " Χρήση δικτύου:" -#: lxc/network_zone.go:270 lxc/network_zone.go:271 +#: lxc/network_zone.go:271 lxc/network_zone.go:272 msgid "Create new network zones" msgstr "" @@ -1524,9 +1519,9 @@ msgstr "" #: 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/network_zone.go:140 lxc/network_zone.go:747 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_bucket.go:512 lxc/storage_bucket.go:832 #: lxc/storage_volume.go:1562 msgid "DESCRIPTION" msgstr "" @@ -1592,7 +1587,7 @@ msgstr "" msgid "Delete instances and snapshots" msgstr "" -#: lxc/storage_bucket.go:924 lxc/storage_bucket.go:925 +#: lxc/storage_bucket.go:929 lxc/storage_bucket.go:930 msgid "Delete key from a storage bucket" msgstr "" @@ -1604,7 +1599,7 @@ msgstr "" msgid "Delete network forwards" msgstr "" -#: lxc/network_load_balancer.go:721 lxc/network_load_balancer.go:722 +#: lxc/network_load_balancer.go:726 lxc/network_load_balancer.go:727 #, fuzzy msgid "Delete network load balancers" msgstr " Χρήση δικτύου:" @@ -1613,12 +1608,12 @@ msgstr " Χρήση δικτύου:" msgid "Delete network peerings" msgstr "" -#: lxc/network_zone.go:1175 lxc/network_zone.go:1176 +#: lxc/network_zone.go:1180 lxc/network_zone.go:1181 #, fuzzy msgid "Delete network zone record" msgstr " Χρήση δικτύου:" -#: lxc/network_zone.go:583 lxc/network_zone.go:584 +#: lxc/network_zone.go:588 lxc/network_zone.go:589 #, fuzzy msgid "Delete network zones" msgstr " Χρήση δικτύου:" @@ -1635,7 +1630,7 @@ msgstr "" msgid "Delete projects" msgstr "" -#: lxc/storage_bucket.go:182 lxc/storage_bucket.go:183 +#: lxc/storage_bucket.go:187 lxc/storage_bucket.go:188 #, fuzzy msgid "Delete storage buckets" msgstr " Χρήση δικτύου:" @@ -1692,7 +1687,7 @@ msgstr "" #: 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/info.go:32 lxc/init.go:43 lxc/launch.go:24 lxc/list.go:48 lxc/main.go:83 #: 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 @@ -1711,22 +1706,22 @@ msgstr "" #: 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_load_balancer.go:238 lxc/network_load_balancer.go:388 +#: lxc/network_load_balancer.go:456 lxc/network_load_balancer.go:554 +#: lxc/network_load_balancer.go:584 lxc/network_load_balancer.go:727 +#: lxc/network_load_balancer.go:788 lxc/network_load_balancer.go:803 +#: lxc/network_load_balancer.go:867 lxc/network_load_balancer.go:953 +#: lxc/network_load_balancer.go:968 lxc/network_load_balancer.go:1029 #: 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/network_zone.go:29 lxc/network_zone.go:86 lxc/network_zone.go:157 +#: lxc/network_zone.go:212 lxc/network_zone.go:272 lxc/network_zone.go:359 +#: lxc/network_zone.go:439 lxc/network_zone.go:470 lxc/network_zone.go:589 +#: lxc/network_zone.go:637 lxc/network_zone.go:694 lxc/network_zone.go:764 +#: lxc/network_zone.go:816 lxc/network_zone.go:875 lxc/network_zone.go:957 +#: lxc/network_zone.go:1033 lxc/network_zone.go:1063 lxc/network_zone.go:1181 +#: lxc/network_zone.go:1230 lxc/network_zone.go:1245 lxc/network_zone.go:1291 #: 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 @@ -1735,19 +1730,19 @@ msgstr "" #: 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:631 lxc/remote.go:669 lxc/remote.go:755 lxc/remote.go:828 -#: lxc/remote.go:884 lxc/remote.go:924 lxc/rename.go:21 lxc/restore.go:24 +#: lxc/query.go:34 lxc/rebuild.go:27 lxc/remote.go:35 lxc/remote.go:91 +#: lxc/remote.go:632 lxc/remote.go:670 lxc/remote.go:756 lxc/remote.go:829 +#: lxc/remote.go:885 lxc/remote.go:925 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_bucket.go:29 lxc/storage_bucket.go:83 lxc/storage_bucket.go:188 +#: lxc/storage_bucket.go:249 lxc/storage_bucket.go:382 +#: lxc/storage_bucket.go:458 lxc/storage_bucket.go:535 +#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:698 +#: lxc/storage_bucket.go:732 lxc/storage_bucket.go:773 +#: lxc/storage_bucket.go:852 lxc/storage_bucket.go:930 +#: lxc/storage_bucket.go:994 lxc/storage_bucket.go:1129 #: 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 @@ -1887,7 +1882,7 @@ msgstr "" msgid "Don't require user confirmation for using --force" msgstr "" -#: lxc/main.go:99 +#: lxc/main.go:100 msgid "Don't show progress information" msgstr "" @@ -1900,7 +1895,7 @@ msgstr "" msgid "Driver: %v (%v)" msgstr "" -#: lxc/network_zone.go:743 +#: lxc/network_zone.go:748 msgid "ENTRIES" msgstr "" @@ -1979,7 +1974,7 @@ msgstr "" msgid "Edit network forward configurations as YAML" msgstr "" -#: lxc/network_load_balancer.go:578 lxc/network_load_balancer.go:579 +#: lxc/network_load_balancer.go:583 lxc/network_load_balancer.go:584 #, fuzzy msgid "Edit network load balancer configurations as YAML" msgstr " Χρήση δικτύου:" @@ -1989,12 +1984,12 @@ msgstr " Χρήση δικτύου:" msgid "Edit network peer configurations as YAML" msgstr " Χρήση δικτύου:" -#: lxc/network_zone.go:464 lxc/network_zone.go:465 +#: lxc/network_zone.go:469 lxc/network_zone.go:470 #, fuzzy msgid "Edit network zone configurations as YAML" msgstr " Χρήση δικτύου:" -#: lxc/network_zone.go:1057 lxc/network_zone.go:1058 +#: lxc/network_zone.go:1062 lxc/network_zone.go:1063 #, fuzzy msgid "Edit network zone record configurations as YAML" msgstr " Χρήση δικτύου:" @@ -2007,12 +2002,12 @@ msgstr "" msgid "Edit project configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:243 lxc/storage_bucket.go:244 +#: lxc/storage_bucket.go:248 lxc/storage_bucket.go:249 #, fuzzy msgid "Edit storage bucket configurations as YAML" msgstr " Χρήση δικτύου:" -#: lxc/storage_bucket.go:988 lxc/storage_bucket.go:989 +#: lxc/storage_bucket.go:993 lxc/storage_bucket.go:994 msgid "Edit storage bucket key as YAML" msgstr "" @@ -2053,7 +2048,7 @@ msgid "" " for the address if not yet set." msgstr "" -#: lxc/network_zone.go:1242 +#: lxc/network_zone.go:1247 msgid "Entry TTL" msgstr "" @@ -2082,9 +2077,9 @@ msgstr "" #: lxc/cluster.go:414 lxc/config.go:624 lxc/config.go:656 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/network_load_balancer.go:527 lxc/network_peer.go:463 +#: lxc/network_zone.go:414 lxc/network_zone.go:1008 lxc/profile.go:876 +#: lxc/project.go:634 lxc/storage.go:727 lxc/storage_bucket.go:602 #: lxc/storage_volume.go:1947 lxc/storage_volume.go:1985 #, c-format msgid "Error setting properties: %v" @@ -2096,10 +2091,10 @@ 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/network_forward.go:513 lxc/network_load_balancer.go:521 +#: lxc/network_peer.go:457 lxc/network_zone.go:408 lxc/network_zone.go:1002 #: lxc/profile.go:870 lxc/project.go:628 lxc/storage.go:721 -#: lxc/storage_bucket.go:591 lxc/storage_volume.go:1941 +#: lxc/storage_bucket.go:596 lxc/storage_volume.go:1941 #: lxc/storage_volume.go:1979 #, c-format msgid "Error unsetting property: %v" @@ -2285,7 +2280,7 @@ msgstr " Χρήση δικτύου:" msgid "Failed parsing SSH host key: %w" msgstr "" -#: lxc/console.go:361 +#: lxc/console.go:366 #, c-format msgid "Failed starting command: %w" msgstr "" @@ -2300,11 +2295,11 @@ msgstr "" msgid "Failed to accept incoming connection: %w" msgstr "" -#: lxc/remote.go:190 +#: lxc/remote.go:191 msgid "Failed to add remote" msgstr "" -#: lxc/remote.go:241 +#: lxc/remote.go:242 #, fuzzy, c-format msgid "Failed to close server cert file %q: %w" msgstr " Χρήση δικτύου:" @@ -2314,7 +2309,7 @@ msgstr " Χρήση δικτύου:" msgid "Failed to connect to cluster member: %w" msgstr " Χρήση δικτύου:" -#: lxc/remote.go:231 +#: lxc/remote.go:232 #, c-format msgid "Failed to create %q: %w" msgstr "" @@ -2324,12 +2319,12 @@ msgstr "" msgid "Failed to create alias %s: %w" msgstr "" -#: lxc/remote.go:256 +#: lxc/remote.go:257 #, c-format msgid "Failed to create certificate: %w" msgstr "" -#: lxc/remote.go:263 +#: lxc/remote.go:264 #, c-format msgid "Failed to find project: %w" msgstr "" @@ -2354,7 +2349,7 @@ msgstr "" msgid "Failed to walk path for %s: %s" msgstr "" -#: lxc/remote.go:236 +#: lxc/remote.go:237 #, c-format msgid "Failed to write server cert file %q: %w" msgstr "" @@ -2363,7 +2358,7 @@ msgstr "" msgid "Fast mode (same as --columns=nsacPt)" msgstr "" -#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:115 +#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:116 #: lxc/operation.go:136 msgid "Filtering isn't supported yet" msgstr "" @@ -2401,7 +2396,7 @@ msgstr "" msgid "Force the removal of running instances" msgstr "" -#: lxc/main.go:95 +#: lxc/main.go:96 msgid "Force using the local unix socket" msgstr "" @@ -2435,10 +2430,10 @@ msgstr "" #: 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/network_peer.go:84 lxc/network_zone.go:89 lxc/network_zone.go:697 #: lxc/operation.go:108 lxc/profile.go:637 lxc/project.go:412 -#: lxc/project.go:804 lxc/remote.go:673 lxc/storage.go:588 -#: lxc/storage_bucket.go:454 lxc/storage_bucket.go:769 +#: lxc/project.go:804 lxc/remote.go:674 lxc/storage.go:588 +#: lxc/storage_bucket.go:459 lxc/storage_bucket.go:774 #: lxc/storage_volume.go:1446 lxc/warning.go:93 msgid "Format (csv|json|table|yaml|compact)" msgstr "" @@ -2475,7 +2470,7 @@ msgstr "" msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)" msgstr "" -#: lxc/remote.go:737 +#: lxc/remote.go:738 msgid "GLOBAL" msgstr "" @@ -2495,7 +2490,7 @@ msgstr "" msgid "Generate manpages for all commands" msgstr "" -#: lxc/remote.go:159 lxc/remote.go:397 +#: lxc/remote.go:160 lxc/remote.go:398 msgid "Generating a client certificate. This may take a minute..." msgstr "" @@ -2528,7 +2523,7 @@ msgstr "" msgid "Get the key as a network forward property" msgstr " Χρήση δικτύου:" -#: lxc/network_load_balancer.go:386 +#: lxc/network_load_balancer.go:391 #, fuzzy msgid "Get the key as a network load balancer property" msgstr " Χρήση δικτύου:" @@ -2542,12 +2537,12 @@ msgstr " Χρήση δικτύου:" msgid "Get the key as a network property" msgstr "" -#: lxc/network_zone.go:214 +#: lxc/network_zone.go:215 #, fuzzy msgid "Get the key as a network zone property" msgstr " Χρήση δικτύου:" -#: lxc/network_zone.go:814 +#: lxc/network_zone.go:819 #, fuzzy msgid "Get the key as a network zone record property" msgstr " Χρήση δικτύου:" @@ -2560,7 +2555,7 @@ msgstr "" msgid "Get the key as a project property" msgstr "" -#: lxc/storage_bucket.go:380 +#: lxc/storage_bucket.go:385 #, fuzzy msgid "Get the key as a storage bucket property" msgstr " Χρήση δικτύου:" @@ -2603,7 +2598,7 @@ msgstr "" msgid "Get values for network forward configuration keys" msgstr " Χρήση δικτύου:" -#: lxc/network_load_balancer.go:382 lxc/network_load_balancer.go:383 +#: lxc/network_load_balancer.go:387 lxc/network_load_balancer.go:388 #, fuzzy msgid "Get values for network load balancer configuration keys" msgstr " Χρήση δικτύου:" @@ -2613,12 +2608,12 @@ msgstr " Χρήση δικτύου:" msgid "Get values for network peer configuration keys" msgstr " Χρήση δικτύου:" -#: lxc/network_zone.go:210 lxc/network_zone.go:211 +#: lxc/network_zone.go:211 lxc/network_zone.go:212 #, fuzzy msgid "Get values for network zone configuration keys" msgstr " Χρήση δικτύου:" -#: lxc/network_zone.go:810 lxc/network_zone.go:811 +#: lxc/network_zone.go:815 lxc/network_zone.go:816 #, fuzzy msgid "Get values for network zone record configuration keys" msgstr " Χρήση δικτύου:" @@ -2631,7 +2626,7 @@ msgstr "" msgid "Get values for project configuration keys" msgstr "" -#: lxc/storage_bucket.go:376 lxc/storage_bucket.go:377 +#: lxc/storage_bucket.go:381 lxc/storage_bucket.go:382 #, fuzzy msgid "Get values for storage bucket configuration keys" msgstr " Χρήση δικτύου:" @@ -2772,7 +2767,7 @@ msgstr "" msgid "If the snapshot name already exists, delete and create a new one" msgstr "" -#: lxc/main.go:398 +#: lxc/main.go:400 msgid "" "If this is your first time running LXD on this machine, you should also run: " "lxd init" @@ -2929,7 +2924,7 @@ msgstr "" msgid "Instance type" msgstr "" -#: lxc/remote.go:349 +#: lxc/remote.go:350 #, c-format msgid "Invalid URL scheme \"%s\" in \"%s\"" msgstr "" @@ -3001,7 +2996,7 @@ msgstr "" msgid "Invalid new snapshot name, parent volume must be the same as source" msgstr "" -#: lxc/main.go:498 +#: lxc/main.go:502 msgid "Invalid number of arguments" msgstr "" @@ -3010,7 +3005,7 @@ msgstr "" msgid "Invalid path %s" msgstr "" -#: lxc/remote.go:338 +#: lxc/remote.go:339 #, c-format msgid "Invalid protocol: %s" msgstr "" @@ -3058,7 +3053,7 @@ msgstr "" #: lxc/list.go:597 lxc/network.go:1059 lxc/network_forward.go:155 #: lxc/network_load_balancer.go:157 lxc/operation.go:177 -#: lxc/storage_bucket.go:511 lxc/storage_volume.go:1569 lxc/warning.go:220 +#: lxc/storage_bucket.go:516 lxc/storage_volume.go:1569 lxc/warning.go:220 msgid "LOCATION" msgstr "" @@ -3066,7 +3061,7 @@ msgstr "" msgid "LXD - Command line client" msgstr "" -#: lxc/console.go:382 +#: lxc/console.go:387 msgid "LXD automatically uses either spicy or remote-viewer when present." msgstr "" @@ -3157,16 +3152,16 @@ msgstr " Χρήση δικτύου:" msgid "List available network peers" msgstr "" -#: lxc/network_zone.go:85 +#: lxc/network_zone.go:86 msgid "List available network zone" msgstr "" -#: lxc/network_zone.go:688 lxc/network_zone.go:689 +#: lxc/network_zone.go:693 lxc/network_zone.go:694 #, fuzzy msgid "List available network zone records" msgstr " Χρήση δικτύου:" -#: lxc/network_zone.go:84 +#: lxc/network_zone.go:85 msgid "List available network zoneS" msgstr "" @@ -3355,11 +3350,11 @@ msgstr "" msgid "List projects" msgstr "" -#: lxc/storage_bucket.go:766 lxc/storage_bucket.go:768 +#: lxc/storage_bucket.go:771 lxc/storage_bucket.go:773 msgid "List storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:451 lxc/storage_bucket.go:453 +#: lxc/storage_bucket.go:456 lxc/storage_bucket.go:458 msgid "List storage buckets" msgstr "" @@ -3387,7 +3382,7 @@ msgid "" " U - Current disk usage" msgstr "" -#: lxc/remote.go:668 lxc/remote.go:669 +#: lxc/remote.go:669 lxc/remote.go:670 msgid "List the available remotes" msgstr "" @@ -3617,12 +3612,12 @@ msgstr "" msgid "Manage network forwards" msgstr "" -#: lxc/network_load_balancer.go:782 lxc/network_load_balancer.go:783 +#: lxc/network_load_balancer.go:787 lxc/network_load_balancer.go:788 #, fuzzy msgid "Manage network load balancer backends" msgstr " Χρήση δικτύου:" -#: lxc/network_load_balancer.go:947 lxc/network_load_balancer.go:948 +#: lxc/network_load_balancer.go:952 lxc/network_load_balancer.go:953 #, fuzzy msgid "Manage network load balancer ports" msgstr " Χρήση δικτύου:" @@ -3636,17 +3631,17 @@ msgstr " Χρήση δικτύου:" msgid "Manage network peerings" msgstr "" -#: lxc/network_zone.go:1224 lxc/network_zone.go:1225 +#: lxc/network_zone.go:1229 lxc/network_zone.go:1230 #, fuzzy msgid "Manage network zone record entries" msgstr " Χρήση δικτύου:" -#: lxc/network_zone.go:631 lxc/network_zone.go:632 +#: lxc/network_zone.go:636 lxc/network_zone.go:637 #, fuzzy msgid "Manage network zone records" msgstr " Χρήση δικτύου:" -#: lxc/network_zone.go:27 lxc/network_zone.go:28 +#: lxc/network_zone.go:28 lxc/network_zone.go:29 #, fuzzy msgid "Manage network zones" msgstr " Χρήση δικτύου:" @@ -3664,12 +3659,12 @@ msgstr "" msgid "Manage projects" msgstr "" -#: lxc/storage_bucket.go:726 +#: lxc/storage_bucket.go:731 #, fuzzy msgid "Manage storage bucket keys" msgstr " Χρήση δικτύου:" -#: lxc/storage_bucket.go:727 +#: lxc/storage_bucket.go:732 msgid "Manage storage bucket keys." msgstr "" @@ -3699,7 +3694,7 @@ msgid "" "\"custom\" (user created) volumes." msgstr "" -#: lxc/remote.go:33 lxc/remote.go:34 +#: lxc/remote.go:34 lxc/remote.go:35 msgid "Manage the list of remote servers" msgstr "" @@ -3783,12 +3778,12 @@ msgid "" "Minimum level for log messages (only available when using pretty format)" msgstr "" -#: lxc/storage_bucket.go:111 lxc/storage_bucket.go:211 -#: lxc/storage_bucket.go:287 lxc/storage_bucket.go:406 -#: lxc/storage_bucket.go:563 lxc/storage_bucket.go:655 -#: lxc/storage_bucket.go:797 lxc/storage_bucket.go:878 -#: lxc/storage_bucket.go:953 lxc/storage_bucket.go:1032 -#: lxc/storage_bucket.go:1155 +#: lxc/storage_bucket.go:116 lxc/storage_bucket.go:216 +#: lxc/storage_bucket.go:292 lxc/storage_bucket.go:411 +#: lxc/storage_bucket.go:568 lxc/storage_bucket.go:660 +#: lxc/storage_bucket.go:802 lxc/storage_bucket.go:883 +#: lxc/storage_bucket.go:958 lxc/storage_bucket.go:1037 +#: lxc/storage_bucket.go:1160 #, fuzzy msgid "Missing bucket name" msgstr " Χρήση δικτύου:" @@ -3838,8 +3833,8 @@ msgstr " Χρήση δικτύου:" msgid "Missing instance name" msgstr "" -#: lxc/storage_bucket.go:882 lxc/storage_bucket.go:957 -#: lxc/storage_bucket.go:1036 lxc/storage_bucket.go:1159 +#: lxc/storage_bucket.go:887 lxc/storage_bucket.go:962 +#: lxc/storage_bucket.go:1041 lxc/storage_bucket.go:1164 #, fuzzy msgid "Missing key name" msgstr " Χρήση δικτύου:" @@ -3848,10 +3843,10 @@ msgstr " Χρήση δικτύου:" #: lxc/network_forward.go:481 lxc/network_forward.go:627 #: lxc/network_forward.go:746 lxc/network_forward.go:823 #: lxc/network_forward.go:889 lxc/network_load_balancer.go:201 -#: lxc/network_load_balancer.go:411 lxc/network_load_balancer.go:484 -#: lxc/network_load_balancer.go:630 lxc/network_load_balancer.go:750 -#: lxc/network_load_balancer.go:826 lxc/network_load_balancer.go:890 -#: lxc/network_load_balancer.go:991 lxc/network_load_balancer.go:1053 +#: lxc/network_load_balancer.go:416 lxc/network_load_balancer.go:489 +#: lxc/network_load_balancer.go:635 lxc/network_load_balancer.go:755 +#: lxc/network_load_balancer.go:831 lxc/network_load_balancer.go:895 +#: lxc/network_load_balancer.go:996 lxc/network_load_balancer.go:1058 msgid "Missing listen address" msgstr "" @@ -3876,26 +3871,26 @@ msgstr "" #: lxc/network_forward.go:477 lxc/network_forward.go:623 #: lxc/network_forward.go:742 lxc/network_forward.go:819 #: lxc/network_forward.go:885 lxc/network_load_balancer.go:123 -#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:261 -#: lxc/network_load_balancer.go:407 lxc/network_load_balancer.go:480 -#: lxc/network_load_balancer.go:626 lxc/network_load_balancer.go:746 -#: lxc/network_load_balancer.go:822 lxc/network_load_balancer.go:886 -#: lxc/network_load_balancer.go:987 lxc/network_load_balancer.go:1049 +#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:266 +#: lxc/network_load_balancer.go:412 lxc/network_load_balancer.go:485 +#: lxc/network_load_balancer.go:631 lxc/network_load_balancer.go:751 +#: lxc/network_load_balancer.go:827 lxc/network_load_balancer.go:891 +#: lxc/network_load_balancer.go:992 lxc/network_load_balancer.go:1054 #: lxc/network_peer.go:110 lxc/network_peer.go:180 lxc/network_peer.go:237 #: lxc/network_peer.go:355 lxc/network_peer.go:426 lxc/network_peer.go:556 #: lxc/network_peer.go:665 msgid "Missing network name" msgstr "" -#: lxc/network_zone.go:178 lxc/network_zone.go:234 lxc/network_zone.go:294 -#: lxc/network_zone.go:382 lxc/network_zone.go:503 lxc/network_zone.go:606 -#: lxc/network_zone.go:712 lxc/network_zone.go:780 lxc/network_zone.go:892 -#: lxc/network_zone.go:976 lxc/network_zone.go:1197 lxc/network_zone.go:1262 -#: lxc/network_zone.go:1307 +#: lxc/network_zone.go:179 lxc/network_zone.go:235 lxc/network_zone.go:299 +#: lxc/network_zone.go:387 lxc/network_zone.go:508 lxc/network_zone.go:611 +#: lxc/network_zone.go:717 lxc/network_zone.go:785 lxc/network_zone.go:897 +#: lxc/network_zone.go:981 lxc/network_zone.go:1202 lxc/network_zone.go:1267 +#: lxc/network_zone.go:1312 msgid "Missing network zone name" msgstr "" -#: lxc/network_zone.go:833 lxc/network_zone.go:1095 +#: lxc/network_zone.go:838 lxc/network_zone.go:1100 #, fuzzy msgid "Missing network zone record name" msgstr " Χρήση δικτύου:" @@ -3906,13 +3901,13 @@ msgid "Missing peer name" msgstr "" #: lxc/storage.go:194 lxc/storage.go:264 lxc/storage.go:370 lxc/storage.go:440 -#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:107 -#: lxc/storage_bucket.go:207 lxc/storage_bucket.go:283 -#: lxc/storage_bucket.go:402 lxc/storage_bucket.go:477 -#: lxc/storage_bucket.go:559 lxc/storage_bucket.go:651 -#: lxc/storage_bucket.go:793 lxc/storage_bucket.go:874 -#: lxc/storage_bucket.go:949 lxc/storage_bucket.go:1028 -#: lxc/storage_bucket.go:1151 lxc/storage_volume.go:189 +#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:112 +#: lxc/storage_bucket.go:212 lxc/storage_bucket.go:288 +#: lxc/storage_bucket.go:407 lxc/storage_bucket.go:482 +#: lxc/storage_bucket.go:564 lxc/storage_bucket.go:656 +#: lxc/storage_bucket.go:798 lxc/storage_bucket.go:879 +#: lxc/storage_bucket.go:954 lxc/storage_bucket.go:1033 +#: lxc/storage_bucket.go:1156 lxc/storage_volume.go:189 #: lxc/storage_volume.go:287 lxc/storage_volume.go:583 #: lxc/storage_volume.go:660 lxc/storage_volume.go:735 #: lxc/storage_volume.go:817 lxc/storage_volume.go:919 @@ -4033,7 +4028,7 @@ msgstr "" msgid "Moving the storage volume: %s" msgstr "" -#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1097 +#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1102 msgid "Multiple ports match. Use --force to remove them all" msgstr "" @@ -4052,10 +4047,10 @@ 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:677 lxc/project.go:498 -#: lxc/remote.go:731 lxc/storage.go:638 lxc/storage_bucket.go:506 -#: lxc/storage_bucket.go:826 lxc/storage_volume.go:1561 +#: lxc/network_acl.go:147 lxc/network_peer.go:139 lxc/network_zone.go:139 +#: lxc/network_zone.go:746 lxc/profile.go:677 lxc/project.go:498 +#: lxc/remote.go:732 lxc/storage.go:638 lxc/storage_bucket.go:511 +#: lxc/storage_bucket.go:831 lxc/storage_volume.go:1561 msgid "NAME" msgstr "" @@ -4081,7 +4076,7 @@ msgstr "" #: lxc/network.go:957 lxc/operation.go:154 lxc/project.go:456 #: lxc/project.go:461 lxc/project.go:466 lxc/project.go:471 lxc/project.go:476 -#: lxc/project.go:481 lxc/remote.go:691 lxc/remote.go:696 lxc/remote.go:701 +#: lxc/project.go:481 lxc/remote.go:692 lxc/remote.go:697 lxc/remote.go:702 msgid "NO" msgstr "" @@ -4108,7 +4103,7 @@ msgstr "" msgid "Name" msgstr "" -#: lxc/remote.go:141 +#: lxc/remote.go:142 msgid "Name of the project to use for this remote:" msgstr "" @@ -4157,12 +4152,12 @@ msgstr "" msgid "Network ACL %s renamed to %s" msgstr "" -#: lxc/network_zone.go:336 +#: lxc/network_zone.go:341 #, fuzzy, c-format msgid "Network Zone %s created" msgstr " Χρήση δικτύου:" -#: lxc/network_zone.go:616 +#: lxc/network_zone.go:621 #, fuzzy, c-format msgid "Network Zone %s deleted" msgstr " Χρήση δικτύου:" @@ -4177,12 +4172,12 @@ msgstr " Χρήση δικτύου:" msgid "Network forward %s deleted" msgstr " Χρήση δικτύου:" -#: lxc/network_load_balancer.go:365 +#: lxc/network_load_balancer.go:370 #, fuzzy, c-format msgid "Network load balancer %s created" msgstr " Χρήση δικτύου:" -#: lxc/network_load_balancer.go:767 +#: lxc/network_load_balancer.go:772 #, fuzzy, c-format msgid "Network load balancer %s deleted" msgstr " Χρήση δικτύου:" @@ -4222,12 +4217,12 @@ msgstr " Χρήση δικτύου:" msgid "Network usage:" msgstr " Χρήση δικτύου:" -#: lxc/network_zone.go:934 +#: lxc/network_zone.go:939 #, fuzzy, c-format msgid "Network zone record %s created" msgstr " Χρήση δικτύου:" -#: lxc/network_zone.go:1207 +#: lxc/network_zone.go:1212 #, fuzzy, c-format msgid "Network zone record %s deleted" msgstr " Χρήση δικτύου:" @@ -4262,11 +4257,11 @@ msgstr "" msgid "No device found for this storage volume" msgstr "" -#: lxc/network_load_balancer.go:921 +#: lxc/network_load_balancer.go:926 msgid "No matching backend found" msgstr "" -#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1108 +#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1113 msgid "No matching port(s) found" msgstr "" @@ -4312,7 +4307,7 @@ msgstr "" msgid "Only \"custom\" volumes can be snapshotted" msgstr "" -#: lxc/remote.go:332 +#: lxc/remote.go:333 msgid "Only https URLs are supported for simplestreams" msgstr "" @@ -4337,7 +4332,7 @@ msgstr "" msgid "Optimized Storage" msgstr "" -#: lxc/main.go:96 +#: lxc/main.go:97 msgid "Override the source project" msgstr "" @@ -4383,11 +4378,11 @@ msgstr "" msgid "PROJECT" msgstr "" -#: lxc/remote.go:733 +#: lxc/remote.go:734 msgid "PROTOCOL" msgstr "" -#: lxc/image.go:1073 lxc/remote.go:735 +#: lxc/image.go:1073 lxc/remote.go:736 msgid "PUBLIC" msgstr "" @@ -4403,7 +4398,7 @@ msgstr "" msgid "Partitions:" msgstr "" -#: lxc/main.go:361 +#: lxc/main.go:363 #, c-format msgid "Password for %s: " msgstr "" @@ -4416,7 +4411,7 @@ msgstr "" msgid "Perform an incremental copy" msgstr "" -#: lxc/remote.go:182 +#: lxc/remote.go:183 msgid "Please provide an alternate server address (empty to abort):" msgstr "" @@ -4429,7 +4424,7 @@ msgstr "" msgid "Please provide cluster member name: " msgstr " Χρήση δικτύου:" -#: lxc/remote.go:462 +#: lxc/remote.go:463 msgid "Please type 'y', 'n' or the fingerprint:" msgstr "" @@ -4451,10 +4446,10 @@ msgstr "" #: lxc/config.go:1278 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/network_load_balancer.go:695 lxc/network_peer.go:611 +#: lxc/network_zone.go:557 lxc/network_zone.go:1149 lxc/profile.go:539 +#: lxc/project.go:316 lxc/storage.go:311 lxc/storage_bucket.go:349 +#: lxc/storage_bucket.go:1098 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 "" @@ -4463,7 +4458,7 @@ msgstr "" msgid "Pretty rendering (short for --format=pretty)" msgstr "" -#: lxc/main.go:94 +#: lxc/main.go:95 msgid "Print help" msgstr "" @@ -4471,7 +4466,7 @@ msgstr "" msgid "Print the raw response" msgstr "" -#: lxc/main.go:93 +#: lxc/main.go:94 msgid "Print version number" msgstr "" @@ -4560,7 +4555,7 @@ msgstr "" msgid "Project %s renamed to %s" msgstr "" -#: lxc/remote.go:106 +#: lxc/remote.go:107 msgid "Project to use for the remote" msgstr "" @@ -4658,7 +4653,7 @@ msgid "" "pool \"default\"." msgstr "" -#: lxc/remote.go:105 +#: lxc/remote.go:106 msgid "Public image server" msgstr "" @@ -4706,7 +4701,7 @@ msgstr "" msgid "RESOURCE" msgstr "" -#: lxc/storage_bucket.go:828 +#: lxc/storage_bucket.go:833 msgid "ROLE" msgstr "" @@ -4749,45 +4744,45 @@ msgstr "" msgid "Refreshing the image: %s" msgstr "" -#: lxc/remote.go:785 +#: lxc/remote.go:786 #, c-format msgid "Remote %s already exists" msgstr "" -#: lxc/project.go:769 lxc/remote.go:776 lxc/remote.go:849 lxc/remote.go:905 -#: lxc/remote.go:945 +#: lxc/project.go:769 lxc/remote.go:777 lxc/remote.go:850 lxc/remote.go:906 +#: lxc/remote.go:946 #, c-format msgid "Remote %s doesn't exist" msgstr "" -#: lxc/remote.go:301 +#: lxc/remote.go:302 #, c-format msgid "Remote %s exists as <%s>" msgstr "" -#: lxc/remote.go:857 +#: lxc/remote.go:858 #, c-format msgid "Remote %s is global and cannot be removed" msgstr "" -#: lxc/remote.go:780 lxc/remote.go:853 lxc/remote.go:949 +#: lxc/remote.go:781 lxc/remote.go:854 lxc/remote.go:950 #, c-format msgid "Remote %s is static and cannot be modified" msgstr "" -#: lxc/remote.go:290 +#: lxc/remote.go:291 msgid "Remote address must not be empty" msgstr "" -#: lxc/remote.go:101 +#: lxc/remote.go:102 msgid "Remote admin password" msgstr "" -#: lxc/remote.go:295 +#: lxc/remote.go:296 msgid "Remote names may not contain colons" msgstr "" -#: lxc/remote.go:102 +#: lxc/remote.go:103 msgid "Remote trust token" msgstr "" @@ -4813,7 +4808,7 @@ msgstr "" msgid "Remove a member from the cluster" msgstr "" -#: lxc/network_zone.go:1285 +#: lxc/network_zone.go:1290 #, fuzzy msgid "Remove a network zone record entry" msgstr " Χρήση δικτύου:" @@ -4822,7 +4817,7 @@ msgstr " Χρήση δικτύου:" msgid "Remove aliases" msgstr "" -#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1025 +#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1030 msgid "Remove all ports that match" msgstr "" @@ -4830,17 +4825,17 @@ msgstr "" msgid "Remove all rules that match" msgstr "" -#: lxc/network_load_balancer.go:862 +#: lxc/network_load_balancer.go:867 #, fuzzy msgid "Remove backend from a load balancer" msgstr " Χρήση δικτύου:" -#: lxc/network_load_balancer.go:861 +#: lxc/network_load_balancer.go:866 #, fuzzy msgid "Remove backends from a load balancer" msgstr " Χρήση δικτύου:" -#: lxc/network_zone.go:1286 +#: lxc/network_zone.go:1291 msgid "Remove entries from a network zone record" msgstr "" @@ -4864,7 +4859,7 @@ msgstr "" msgid "Remove ports from a forward" msgstr "" -#: lxc/network_load_balancer.go:1023 lxc/network_load_balancer.go:1024 +#: lxc/network_load_balancer.go:1028 lxc/network_load_balancer.go:1029 #, fuzzy msgid "Remove ports from a load balancer" msgstr " Χρήση δικτύου:" @@ -4873,7 +4868,7 @@ msgstr " Χρήση δικτύου:" msgid "Remove profiles from instances" msgstr "" -#: lxc/remote.go:827 lxc/remote.go:828 +#: lxc/remote.go:828 lxc/remote.go:829 msgid "Remove remotes" msgstr "" @@ -4931,7 +4926,7 @@ msgstr "" msgid "Rename projects" msgstr "" -#: lxc/remote.go:754 lxc/remote.go:755 +#: lxc/remote.go:755 lxc/remote.go:756 msgid "Rename remotes" msgstr "" @@ -5009,7 +5004,7 @@ msgid "Restrict the certificate to one or more projects" msgstr "" #: lxc/console.go:44 -msgid "Retrieve the instance's console log" +msgid "Retrieve the container's console log" msgstr "" #: lxc/init.go:347 @@ -5026,7 +5021,7 @@ msgstr " Χρήση δικτύου:" msgid "Revoke cluster member join token" msgstr "" -#: lxc/storage_bucket.go:851 +#: lxc/storage_bucket.go:856 msgid "Role (admin or read-only)" msgstr "" @@ -5077,7 +5072,7 @@ msgstr "" msgid "STATE" msgstr "" -#: lxc/remote.go:736 +#: lxc/remote.go:737 msgid "STATIC" msgstr "" @@ -5101,11 +5096,11 @@ msgstr "" msgid "STP" msgstr "" -#: lxc/storage_bucket.go:853 +#: lxc/storage_bucket.go:858 msgid "Secret key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:909 +#: lxc/storage_bucket.go:914 #, c-format msgid "Secret key: %s" msgstr "" @@ -5114,19 +5109,19 @@ msgstr "" msgid "Send a raw query to LXD" msgstr "" -#: lxc/remote.go:104 +#: lxc/remote.go:105 msgid "Server authentication type (tls or oidc)" msgstr "" -#: lxc/remote.go:460 +#: lxc/remote.go:461 msgid "Server certificate NACKed by user" msgstr "" -#: lxc/remote.go:599 +#: lxc/remote.go:600 msgid "Server doesn't trust us after authentication" msgstr "" -#: lxc/remote.go:103 +#: lxc/remote.go:104 msgid "Server protocol (lxd or simplestreams)" msgstr "" @@ -5227,12 +5222,12 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_load_balancer.go:450 +#: lxc/network_load_balancer.go:455 #, fuzzy msgid "Set network load balancer keys" msgstr " Χρήση δικτύου:" -#: lxc/network_load_balancer.go:451 +#: lxc/network_load_balancer.go:456 msgid "" "Set network load balancer keys\n" "\n" @@ -5255,12 +5250,12 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:353 +#: lxc/network_zone.go:358 #, fuzzy msgid "Set network zone configuration keys" msgstr " Χρήση δικτύου:" -#: lxc/network_zone.go:354 +#: lxc/network_zone.go:359 msgid "" "Set network zone configuration keys\n" "\n" @@ -5269,7 +5264,7 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:951 lxc/network_zone.go:952 +#: lxc/network_zone.go:956 lxc/network_zone.go:957 #, fuzzy msgid "Set network zone record configuration keys" msgstr " Χρήση δικτύου:" @@ -5300,12 +5295,12 @@ msgid "" " lxc project set [:] " msgstr "" -#: lxc/storage_bucket.go:529 +#: lxc/storage_bucket.go:534 #, fuzzy msgid "Set storage bucket configuration keys" msgstr " Χρήση δικτύου:" -#: lxc/storage_bucket.go:530 +#: lxc/storage_bucket.go:535 msgid "" "Set storage bucket configuration keys\n" "\n" @@ -5340,7 +5335,7 @@ msgid "" " lxc storage volume set [:] [/] " msgstr "" -#: lxc/remote.go:923 lxc/remote.go:924 +#: lxc/remote.go:924 lxc/remote.go:925 msgid "Set the URL for the remote" msgstr "" @@ -5369,7 +5364,7 @@ msgstr "" msgid "Set the key as a network forward property" msgstr " Χρήση δικτύου:" -#: lxc/network_load_balancer.go:458 +#: lxc/network_load_balancer.go:463 #, fuzzy msgid "Set the key as a network load balancer property" msgstr " Χρήση δικτύου:" @@ -5383,12 +5378,12 @@ msgstr " Χρήση δικτύου:" msgid "Set the key as a network property" msgstr "" -#: lxc/network_zone.go:361 +#: lxc/network_zone.go:366 #, fuzzy msgid "Set the key as a network zone property" msgstr " Χρήση δικτύου:" -#: lxc/network_zone.go:957 +#: lxc/network_zone.go:962 #, fuzzy msgid "Set the key as a network zone record property" msgstr " Χρήση δικτύου:" @@ -5401,7 +5396,7 @@ msgstr "" msgid "Set the key as a project property" msgstr "" -#: lxc/storage_bucket.go:537 +#: lxc/storage_bucket.go:542 #, fuzzy msgid "Set the key as a storage bucket property" msgstr " Χρήση δικτύου:" @@ -5422,11 +5417,11 @@ msgstr "" msgid "Setup SSH SFTP listener on address:port instead of mounting" msgstr "" -#: lxc/main.go:97 +#: lxc/main.go:98 msgid "Show all debug messages" msgstr "" -#: lxc/main.go:98 +#: lxc/main.go:99 msgid "Show all information messages" msgstr "" @@ -5497,7 +5492,7 @@ msgstr "" msgid "Show instance or server information" msgstr "" -#: lxc/main.go:271 lxc/main.go:272 +#: lxc/main.go:272 lxc/main.go:273 msgid "Show less common commands" msgstr "" @@ -5532,17 +5527,17 @@ msgstr " Χρήση δικτύου:" msgid "Show network peer configurations" msgstr " Χρήση δικτύου:" -#: lxc/network_zone.go:155 lxc/network_zone.go:156 +#: lxc/network_zone.go:156 lxc/network_zone.go:157 #, fuzzy msgid "Show network zone configurations" msgstr " Χρήση δικτύου:" -#: lxc/network_zone.go:758 +#: lxc/network_zone.go:763 #, fuzzy msgid "Show network zone record configuration" msgstr " Χρήση δικτύου:" -#: lxc/network_zone.go:759 +#: lxc/network_zone.go:764 #, fuzzy msgid "Show network zone record configurations" msgstr " Χρήση δικτύου:" @@ -5555,12 +5550,12 @@ msgstr "" msgid "Show project options" msgstr "" -#: lxc/storage_bucket.go:623 lxc/storage_bucket.go:624 +#: lxc/storage_bucket.go:628 lxc/storage_bucket.go:629 #, fuzzy msgid "Show storage bucket configurations" msgstr " Χρήση δικτύου:" -#: lxc/storage_bucket.go:1123 lxc/storage_bucket.go:1124 +#: lxc/storage_bucket.go:1128 lxc/storage_bucket.go:1129 #, fuzzy msgid "Show storage bucket key configurations" msgstr " Χρήση δικτύου:" @@ -5587,7 +5582,7 @@ msgid "" "that are granted via identity provider group mappings. \n" msgstr "" -#: lxc/remote.go:630 lxc/remote.go:631 +#: lxc/remote.go:631 lxc/remote.go:632 msgid "Show the default remote" msgstr "" @@ -5712,22 +5707,22 @@ msgstr "" msgid "Stopping the instance failed: %s" msgstr "" -#: lxc/storage_bucket.go:161 +#: lxc/storage_bucket.go:166 #, fuzzy, c-format msgid "Storage bucket %s created" msgstr " Χρήση δικτύου:" -#: lxc/storage_bucket.go:228 +#: lxc/storage_bucket.go:233 #, fuzzy, c-format msgid "Storage bucket %s deleted" msgstr " Χρήση δικτύου:" -#: lxc/storage_bucket.go:907 +#: lxc/storage_bucket.go:912 #, c-format msgid "Storage bucket key %s added" msgstr "" -#: lxc/storage_bucket.go:973 +#: lxc/storage_bucket.go:978 #, c-format msgid "Storage bucket key %s removed" msgstr "" @@ -5800,7 +5795,7 @@ msgstr "" msgid "Switch the current project" msgstr "" -#: lxc/remote.go:883 lxc/remote.go:884 +#: lxc/remote.go:884 lxc/remote.go:885 msgid "Switch the default remote" msgstr "" @@ -5915,7 +5910,7 @@ msgstr " Χρήση δικτύου:" msgid "The property %q does not exist on the instance snapshot %s/%s: %v" msgstr " Χρήση δικτύου:" -#: lxc/network_load_balancer.go:424 +#: lxc/network_load_balancer.go:429 #, fuzzy, c-format msgid "The property %q does not exist on the load balancer %q: %v" msgstr " Χρήση δικτύου:" @@ -5940,12 +5935,12 @@ msgstr " Χρήση δικτύου:" msgid "The property %q does not exist on the network peer %q: %v" msgstr " Χρήση δικτύου:" -#: lxc/network_zone.go:246 +#: lxc/network_zone.go:247 #, fuzzy, c-format msgid "The property %q does not exist on the network zone %q: %v" msgstr " Χρήση δικτύου:" -#: lxc/network_zone.go:845 +#: lxc/network_zone.go:850 #, fuzzy, c-format msgid "The property %q does not exist on the network zone record %q: %v" msgstr " Χρήση δικτύου:" @@ -5960,7 +5955,7 @@ msgstr " Χρήση δικτύου:" msgid "The property %q does not exist on the project %q: %v" msgstr " Χρήση δικτύου:" -#: lxc/storage_bucket.go:426 +#: lxc/storage_bucket.go:431 #, fuzzy, c-format msgid "The property %q does not exist on the storage bucket %q: %v" msgstr " Χρήση δικτύου:" @@ -6015,7 +6010,7 @@ msgstr "" msgid "This LXD server is not available on the network" msgstr "" -#: lxc/main.go:293 +#: lxc/main.go:294 msgid "" "This client hasn't been configured to use a remote LXD server yet.\n" "As your platform can't run native Linux instances, you must connect to a " @@ -6047,11 +6042,11 @@ msgstr "" msgid "To create a new network, use: lxc network create" msgstr "" -#: lxc/console.go:210 +#: lxc/console.go:215 msgid "To detach from the console, press: +a q" msgstr "" -#: lxc/main.go:403 +#: lxc/main.go:406 msgid "" "To start your first container, try: lxc launch ubuntu:24.04\n" "Or for a virtual machine: lxc launch ubuntu:24.04 --vm" @@ -6149,7 +6144,7 @@ msgstr "" msgid "UPLOAD DATE" msgstr "" -#: lxc/cluster.go:184 lxc/remote.go:732 +#: lxc/cluster.go:184 lxc/remote.go:733 msgid "URL" msgstr "" @@ -6158,7 +6153,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:679 lxc/project.go:506 +#: lxc/network_zone.go:141 lxc/profile.go:679 lxc/project.go:506 #: lxc/storage.go:647 lxc/storage_volume.go:1564 msgid "USED BY" msgstr "" @@ -6177,7 +6172,7 @@ msgstr "" msgid "Unable to create a temporary file: %v" msgstr "" -#: lxc/remote.go:213 lxc/remote.go:247 +#: lxc/remote.go:214 lxc/remote.go:248 msgid "Unavailable remote server" msgstr "" @@ -6197,7 +6192,7 @@ msgstr "" msgid "Unknown column shorthand char '%c' in '%s'" msgstr "" -#: lxc/console.go:159 +#: lxc/console.go:164 #, c-format msgid "Unknown console type %q" msgstr "" @@ -6260,12 +6255,12 @@ msgstr " Χρήση δικτύου:" msgid "Unset network forward keys" msgstr " Χρήση δικτύου:" -#: lxc/network_load_balancer.go:548 +#: lxc/network_load_balancer.go:553 #, fuzzy msgid "Unset network load balancer configuration keys" msgstr " Χρήση δικτύου:" -#: lxc/network_load_balancer.go:549 +#: lxc/network_load_balancer.go:554 #, fuzzy msgid "Unset network load balancer keys" msgstr " Χρήση δικτύου:" @@ -6280,12 +6275,12 @@ msgstr " Χρήση δικτύου:" msgid "Unset network peer keys" msgstr " Χρήση δικτύου:" -#: lxc/network_zone.go:433 lxc/network_zone.go:434 +#: lxc/network_zone.go:438 lxc/network_zone.go:439 #, fuzzy msgid "Unset network zone configuration keys" msgstr " Χρήση δικτύου:" -#: lxc/network_zone.go:1027 lxc/network_zone.go:1028 +#: lxc/network_zone.go:1032 lxc/network_zone.go:1033 #, fuzzy msgid "Unset network zone record configuration keys" msgstr " Χρήση δικτύου:" @@ -6298,7 +6293,7 @@ msgstr "" msgid "Unset project configuration keys" msgstr "" -#: lxc/storage_bucket.go:692 lxc/storage_bucket.go:693 +#: lxc/storage_bucket.go:697 lxc/storage_bucket.go:698 #, fuzzy msgid "Unset storage bucket configuration keys" msgstr " Χρήση δικτύου:" @@ -6324,7 +6319,7 @@ msgstr "" msgid "Unset the key as a network forward property" msgstr " Χρήση δικτύου:" -#: lxc/network_load_balancer.go:552 +#: lxc/network_load_balancer.go:557 #, fuzzy msgid "Unset the key as a network load balancer property" msgstr " Χρήση δικτύου:" @@ -6339,12 +6334,12 @@ msgstr " Χρήση δικτύου:" msgid "Unset the key as a network property" msgstr " Χρήση δικτύου:" -#: lxc/network_zone.go:437 +#: lxc/network_zone.go:442 #, fuzzy msgid "Unset the key as a network zone property" msgstr " Χρήση δικτύου:" -#: lxc/network_zone.go:1031 +#: lxc/network_zone.go:1036 #, fuzzy msgid "Unset the key as a network zone record property" msgstr " Χρήση δικτύου:" @@ -6357,7 +6352,7 @@ msgstr "" msgid "Unset the key as a project property" msgstr "" -#: lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:701 #, fuzzy msgid "Unset the key as a storage bucket property" msgstr " Χρήση δικτύου:" @@ -6420,7 +6415,7 @@ msgid "" "Use storage driver optimized format (can only be restored on a similar pool)" msgstr "" -#: lxc/main.go:100 +#: lxc/main.go:101 msgid "Use with help or --help to view sub-commands" msgstr "" @@ -6517,7 +6512,7 @@ msgstr "" #: lxc/network.go:959 lxc/operation.go:156 lxc/project.go:458 #: lxc/project.go:463 lxc/project.go:468 lxc/project.go:473 lxc/project.go:478 -#: lxc/project.go:483 lxc/remote.go:693 lxc/remote.go:698 lxc/remote.go:703 +#: lxc/project.go:483 lxc/remote.go:694 lxc/remote.go:699 lxc/remote.go:704 msgid "YES" msgstr "" @@ -6552,7 +6547,7 @@ 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/network.go:909 lxc/network_acl.go:91 lxc/network_zone.go:83 #: 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 "[:]" @@ -6615,19 +6610,19 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:154 lxc/network_zone.go:463 lxc/network_zone.go:581 +#: lxc/network_zone.go:155 lxc/network_zone.go:468 lxc/network_zone.go:586 msgid "[:]" msgstr "" -#: lxc/network_zone.go:209 lxc/network_zone.go:432 +#: lxc/network_zone.go:210 lxc/network_zone.go:437 msgid "[:] " msgstr "" -#: lxc/network_zone.go:352 +#: lxc/network_zone.go:357 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:269 +#: lxc/network_zone.go:270 msgid "[:] [key=value...]" msgstr "" @@ -6873,30 +6868,30 @@ msgstr "" #: lxc/network_forward.go:169 lxc/network_forward.go:574 #: lxc/network_forward.go:715 lxc/network_load_balancer.go:171 -#: lxc/network_load_balancer.go:577 lxc/network_load_balancer.go:719 +#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:724 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:860 +#: lxc/network_load_balancer.go:865 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:796 +#: lxc/network_load_balancer.go:801 msgid "" "[:] " "[]" msgstr "" #: lxc/network_forward.go:377 lxc/network_forward.go:544 -#: lxc/network_load_balancer.go:381 lxc/network_load_balancer.go:547 +#: lxc/network_load_balancer.go:386 lxc/network_load_balancer.go:552 msgid "[:] " msgstr "" -#: lxc/network_forward.go:446 lxc/network_load_balancer.go:449 +#: lxc/network_forward.go:446 lxc/network_load_balancer.go:454 msgid "[:] =..." msgstr "" -#: lxc/network_load_balancer.go:961 +#: lxc/network_load_balancer.go:966 msgid "" "[:] " "[,...]" @@ -6908,7 +6903,7 @@ msgid "" " []" msgstr "" -#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1022 +#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1027 msgid "[:] [] []" msgstr "" @@ -6959,7 +6954,7 @@ msgid "[:]" msgstr "" #: lxc/storage.go:167 lxc/storage.go:218 lxc/storage.go:412 lxc/storage.go:759 -#: lxc/storage_bucket.go:449 +#: lxc/storage_bucket.go:454 msgid "[:]" msgstr "" @@ -6967,18 +6962,18 @@ msgstr "" msgid "[:] []" msgstr "" -#: lxc/storage_bucket.go:180 lxc/storage_bucket.go:242 -#: lxc/storage_bucket.go:622 lxc/storage_bucket.go:764 +#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:247 +#: lxc/storage_bucket.go:627 lxc/storage_bucket.go:769 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:375 lxc/storage_bucket.go:691 -#: lxc/storage_bucket.go:845 lxc/storage_bucket.go:923 -#: lxc/storage_bucket.go:987 lxc/storage_bucket.go:1122 +#: lxc/storage_bucket.go:380 lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:850 lxc/storage_bucket.go:928 +#: lxc/storage_bucket.go:992 lxc/storage_bucket.go:1127 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:528 +#: lxc/storage_bucket.go:533 msgid "[:] =..." msgstr "" @@ -7122,27 +7117,27 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:686 +#: lxc/network_zone.go:691 msgid "[:]" msgstr "" -#: lxc/network_zone.go:757 lxc/network_zone.go:1056 lxc/network_zone.go:1173 +#: lxc/network_zone.go:762 lxc/network_zone.go:1061 lxc/network_zone.go:1178 msgid "[:] " msgstr "" -#: lxc/network_zone.go:809 lxc/network_zone.go:1026 +#: lxc/network_zone.go:814 lxc/network_zone.go:1031 msgid "[:] " msgstr "" -#: lxc/network_zone.go:950 +#: lxc/network_zone.go:955 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:1238 lxc/network_zone.go:1284 +#: lxc/network_zone.go:1243 lxc/network_zone.go:1289 msgid "[:] " msgstr "" -#: lxc/network_zone.go:868 +#: lxc/network_zone.go:873 msgid "[:] [key=value...]" msgstr "" @@ -7166,7 +7161,7 @@ msgstr "" msgid "[:][] [...]" msgstr "" -#: lxc/remote.go:88 +#: lxc/remote.go:89 msgid "[] " msgstr "" @@ -7174,7 +7169,7 @@ msgstr "" msgid "[[:]]" msgstr "" -#: lxc/project.go:488 lxc/remote.go:722 +#: lxc/project.go:488 lxc/remote.go:723 msgid "current" msgstr "" @@ -7437,6 +7432,23 @@ msgid "" " Create a new OVN network called bar using baz as its uplink network" msgstr "" +#: lxc/network_load_balancer.go:239 +msgid "" +"lxc network load-balancer create n1 127.0.0.1\n" +"\n" +"lxc network load-balancer create n1 127.0.0.1 < config.yaml\n" +" Create network load-balancer for network n1 with configuration from " +"config.yaml" +msgstr "" + +#: lxc/network_zone.go:273 +msgid "" +"lxc network zone create z1\n" +"\n" +"lxc network zone create z1 < config.yaml\n" +" Create network zone z1 with configuration from config.yaml" +msgstr "" + #: lxc/operation.go:195 msgid "" "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n" @@ -7507,26 +7519,36 @@ msgid "" " Restore the snapshot." msgstr "" -#: lxc/storage_bucket.go:245 +#: lxc/storage_bucket.go:84 +msgid "" +"lxc storage bucket create p1 b01\n" +"\tCreate a new storage bucket name b01 in storage pool p1\n" +"\n" +"lxc storage bucket create p1 b01 < config.yaml\n" +"\tCreate a new storage bucket name b01 in storage pool p1 using the content " +"of config.yaml" +msgstr "" + +#: lxc/storage_bucket.go:250 msgid "" "lxc storage bucket edit [:] < bucket.yaml\n" " Update a storage bucket using the content of bucket.yaml." msgstr "" -#: lxc/storage_bucket.go:990 +#: lxc/storage_bucket.go:995 msgid "" "lxc storage bucket edit [:] < key.yaml\n" " Update a storage bucket key using the content of key.yaml." msgstr "" -#: lxc/storage_bucket.go:1125 +#: lxc/storage_bucket.go:1130 msgid "" "lxc storage bucket key show default data foo\n" " Will show the properties of a bucket key called \"foo\" for a bucket " "called \"data\" in the \"default\" pool." msgstr "" -#: lxc/storage_bucket.go:625 +#: lxc/storage_bucket.go:630 msgid "" "lxc storage bucket show default data\n" " Will show the properties of a bucket called \"data\" in the \"default\" " @@ -7545,7 +7567,7 @@ msgid "" "\t\tCreate a new custom volume using backup0.tar.gz as the source." msgstr "" -#: lxc/remote.go:459 +#: lxc/remote.go:460 msgid "n" msgstr "" @@ -7557,7 +7579,7 @@ msgstr "" msgid "no" msgstr "" -#: lxc/remote.go:452 +#: lxc/remote.go:453 msgid "ok (y/n/[fingerprint])?" msgstr "" @@ -7594,7 +7616,7 @@ msgstr "" msgid "used by" msgstr "" -#: lxc/remote.go:461 +#: lxc/remote.go:462 msgid "y" msgstr "" diff --git a/po/eo.po b/po/eo.po index c9ddc9481a35..9ae37dbada41 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-08-20 09:31+0100\n" +"POT-Creation-Date: 2024-08-30 09:27+0100\n" "PO-Revision-Date: 2022-03-10 15:11+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Esperanto " msgstr "" -#: lxc/remote.go:825 lxc/remote.go:882 +#: lxc/remote.go:826 lxc/remote.go:883 msgid "" msgstr "" -#: lxc/remote.go:922 +#: lxc/remote.go:923 msgid " " msgstr "" -#: lxc/remote.go:752 +#: lxc/remote.go:753 msgid " " msgstr "" @@ -556,7 +556,7 @@ msgstr "" msgid "ARCHITECTURE" msgstr "" -#: lxc/remote.go:734 +#: lxc/remote.go:735 msgid "AUTH TYPE" msgstr "" @@ -564,15 +564,15 @@ msgstr "" msgid "AUTHENTICATION METHOD" msgstr "" -#: lxc/remote.go:100 +#: lxc/remote.go:101 msgid "Accept certificate" msgstr "" -#: lxc/storage_bucket.go:852 +#: lxc/storage_bucket.go:857 msgid "Access key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:908 +#: lxc/storage_bucket.go:913 #, c-format msgid "Access key: %s" msgstr "" @@ -606,19 +606,19 @@ msgstr "" msgid "Add a group to an identity provider group" msgstr "" -#: lxc/network_zone.go:1239 +#: lxc/network_zone.go:1244 msgid "Add a network zone record entry" msgstr "" -#: lxc/network_load_balancer.go:798 +#: lxc/network_load_balancer.go:803 msgid "Add backend to a load balancer" msgstr "" -#: lxc/network_load_balancer.go:797 +#: lxc/network_load_balancer.go:802 msgid "Add backends to a load balancer" msgstr "" -#: lxc/network_zone.go:1240 +#: lxc/network_zone.go:1245 msgid "Add entries to a network zone record" msgstr "" @@ -634,11 +634,11 @@ msgstr "" msgid "Add new aliases" msgstr "" -#: lxc/remote.go:89 +#: lxc/remote.go:90 msgid "Add new remote servers" msgstr "" -#: lxc/remote.go:90 +#: lxc/remote.go:91 msgid "" "Add new remote servers\n" "\n" @@ -679,7 +679,7 @@ msgstr "" msgid "Add ports to a forward" msgstr "" -#: lxc/network_load_balancer.go:962 lxc/network_load_balancer.go:963 +#: lxc/network_load_balancer.go:967 lxc/network_load_balancer.go:968 msgid "Add ports to a load balancer" msgstr "" @@ -700,17 +700,17 @@ msgstr "" msgid "Address: %s" msgstr "" -#: lxc/storage_bucket.go:164 +#: lxc/storage_bucket.go:169 #, c-format msgid "Admin access key: %s" msgstr "" -#: lxc/remote.go:566 +#: lxc/remote.go:567 #, c-format msgid "Admin password (or token) for %s:" msgstr "" -#: lxc/storage_bucket.go:165 +#: lxc/storage_bucket.go:170 #, c-format msgid "Admin secret key: %s" msgstr "" @@ -742,7 +742,7 @@ msgstr "" msgid "All projects" msgstr "" -#: lxc/remote.go:181 +#: lxc/remote.go:182 msgid "All server addresses are unavailable" msgstr "" @@ -765,7 +765,7 @@ msgstr "" msgid "Are you sure you want to %s cluster member %q? (yes/no) [default=no]: " msgstr "" -#: lxc/console.go:383 +#: lxc/console.go:388 msgid "As neither could be found, the raw SPICE socket can be found at:" msgstr "" @@ -813,7 +813,7 @@ msgid "" "as well as retrieve past log entries from it." msgstr "" -#: lxc/remote.go:548 +#: lxc/remote.go:549 #, c-format msgid "Authentication type '%s' not supported by server" msgstr "" @@ -832,11 +832,11 @@ msgstr "" msgid "Auto update: %s" msgstr "" -#: lxc/network_forward.go:240 lxc/network_load_balancer.go:242 +#: lxc/network_forward.go:240 lxc/network_load_balancer.go:247 msgid "Auto-allocate an IPv4 or IPv6 listen address. One of 'ipv4', 'ipv6'." msgstr "" -#: lxc/remote.go:136 +#: lxc/remote.go:137 msgid "Available projects:" msgstr "" @@ -868,8 +868,8 @@ msgid "Bad device override syntax, expecting ,=: %s" msgstr "" #: lxc/network.go:333 lxc/network_acl.go:382 lxc/network_forward.go:293 -#: lxc/network_load_balancer.go:296 lxc/network_peer.go:280 -#: lxc/network_zone.go:324 lxc/network_zone.go:922 lxc/storage_bucket.go:136 +#: lxc/network_load_balancer.go:301 lxc/network_peer.go:280 +#: lxc/network_zone.go:329 lxc/network_zone.go:927 lxc/storage_bucket.go:141 #, c-format msgid "Bad key/value pair: %s" msgstr "" @@ -991,7 +991,7 @@ msgstr "" msgid "Can't read from stdin: %w" msgstr "" -#: lxc/remote.go:861 +#: lxc/remote.go:862 msgid "Can't remove the default remote" msgstr "" @@ -1057,15 +1057,14 @@ msgstr "" msgid "Certificate add token for %s deleted" msgstr "" -#: lxc/remote.go:218 -#, c-format -msgid "" -"Certificate fingerprint mismatch between certificate token and server %q" +#: lxc/remote.go:452 +msgid "Certificate fingerprint" msgstr "" -#: lxc/remote.go:451 +#: lxc/remote.go:219 #, c-format -msgid "Certificate fingerprint: %s" +msgid "" +"Certificate fingerprint mismatch between certificate token and server %q" msgstr "" #: lxc/network.go:893 @@ -1077,7 +1076,7 @@ msgstr "" msgid "Client %s certificate add token:" msgstr "" -#: lxc/remote.go:603 +#: lxc/remote.go:604 msgid "Client certificate now trusted by server:" msgstr "" @@ -1139,18 +1138,18 @@ msgstr "" #: lxc/network_forward.go:456 lxc/network_forward.go:579 #: lxc/network_forward.go:721 lxc/network_forward.go:798 #: lxc/network_forward.go:864 lxc/network_load_balancer.go:176 -#: lxc/network_load_balancer.go:241 lxc/network_load_balancer.go:459 -#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:725 -#: lxc/network_load_balancer.go:801 lxc/network_load_balancer.go:865 -#: lxc/network_load_balancer.go:966 lxc/network_load_balancer.go:1028 +#: lxc/network_load_balancer.go:246 lxc/network_load_balancer.go:464 +#: lxc/network_load_balancer.go:587 lxc/network_load_balancer.go:730 +#: lxc/network_load_balancer.go:806 lxc/network_load_balancer.go:870 +#: lxc/network_load_balancer.go:971 lxc/network_load_balancer.go:1033 #: lxc/storage.go:99 lxc/storage.go:347 lxc/storage.go:418 lxc/storage.go:671 -#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:85 -#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:248 -#: lxc/storage_bucket.go:379 lxc/storage_bucket.go:536 -#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:695 -#: lxc/storage_bucket.go:770 lxc/storage_bucket.go:850 -#: lxc/storage_bucket.go:928 lxc/storage_bucket.go:993 -#: lxc/storage_bucket.go:1129 lxc/storage_volume.go:358 +#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:90 +#: lxc/storage_bucket.go:190 lxc/storage_bucket.go:253 +#: lxc/storage_bucket.go:384 lxc/storage_bucket.go:541 +#: lxc/storage_bucket.go:634 lxc/storage_bucket.go:700 +#: lxc/storage_bucket.go:775 lxc/storage_bucket.go:855 +#: lxc/storage_bucket.go:933 lxc/storage_bucket.go:998 +#: lxc/storage_bucket.go:1134 lxc/storage_volume.go:358 #: lxc/storage_volume.go:560 lxc/storage_volume.go:639 #: lxc/storage_volume.go:883 lxc/storage_volume.go:1097 #: lxc/storage_volume.go:1210 lxc/storage_volume.go:1678 @@ -1178,11 +1177,11 @@ msgstr "" msgid "Columns" msgstr "" -#: lxc/main.go:81 +#: lxc/main.go:82 msgid "Command line client for LXD" msgstr "" -#: lxc/main.go:82 +#: lxc/main.go:83 msgid "" "Command line client for LXD\n" "\n" @@ -1214,19 +1213,15 @@ msgstr "" #: lxc/config.go:347 lxc/config.go:1277 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/network_load_balancer.go:694 lxc/network_peer.go:610 +#: lxc/network_zone.go:556 lxc/network_zone.go:1148 lxc/profile.go:538 +#: lxc/project.go:315 lxc/storage.go:310 lxc/storage_bucket.go:348 +#: lxc/storage_bucket.go:1097 lxc/storage_volume.go:1016 #: lxc/storage_volume.go:1048 #, c-format msgid "Config parsing error: %s" msgstr "" -#: lxc/console.go:140 -msgid "Console log:" -msgstr "" - #: lxc/storage_volume.go:561 msgid "Content type, block or filesystem" msgstr "" @@ -1329,12 +1324,12 @@ msgstr "" msgid "Cores:" msgstr "" -#: lxc/remote.go:486 +#: lxc/remote.go:487 #, c-format msgid "Could not close server cert file %q: %w" msgstr "" -#: lxc/remote.go:224 lxc/remote.go:470 +#: lxc/remote.go:225 lxc/remote.go:471 msgid "Could not create server cert dir" msgstr "" @@ -1373,12 +1368,12 @@ msgstr "" msgid "Could not write new remote certificate for remote '%s' with error: %v" msgstr "" -#: lxc/remote.go:481 +#: lxc/remote.go:482 #, c-format msgid "Could not write server cert file %q: %w" msgstr "" -#: lxc/network_zone.go:1327 +#: lxc/network_zone.go:1332 msgid "Couldn't find a matching entry" msgstr "" @@ -1430,7 +1425,7 @@ msgstr "" msgid "Create instances from images" msgstr "" -#: lxc/storage_bucket.go:846 lxc/storage_bucket.go:847 +#: lxc/storage_bucket.go:851 lxc/storage_bucket.go:852 msgid "Create key for a storage bucket" msgstr "" @@ -1462,11 +1457,11 @@ msgstr "" msgid "Create new network peering" msgstr "" -#: lxc/network_zone.go:869 lxc/network_zone.go:870 +#: lxc/network_zone.go:874 lxc/network_zone.go:875 msgid "Create new network zone record" msgstr "" -#: lxc/network_zone.go:270 lxc/network_zone.go:271 +#: lxc/network_zone.go:271 lxc/network_zone.go:272 msgid "Create new network zones" msgstr "" @@ -1517,9 +1512,9 @@ msgstr "" #: 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/network_zone.go:140 lxc/network_zone.go:747 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_bucket.go:512 lxc/storage_bucket.go:832 #: lxc/storage_volume.go:1562 msgid "DESCRIPTION" msgstr "" @@ -1584,7 +1579,7 @@ msgstr "" msgid "Delete instances and snapshots" msgstr "" -#: lxc/storage_bucket.go:924 lxc/storage_bucket.go:925 +#: lxc/storage_bucket.go:929 lxc/storage_bucket.go:930 msgid "Delete key from a storage bucket" msgstr "" @@ -1596,7 +1591,7 @@ msgstr "" msgid "Delete network forwards" msgstr "" -#: lxc/network_load_balancer.go:721 lxc/network_load_balancer.go:722 +#: lxc/network_load_balancer.go:726 lxc/network_load_balancer.go:727 msgid "Delete network load balancers" msgstr "" @@ -1604,11 +1599,11 @@ msgstr "" msgid "Delete network peerings" msgstr "" -#: lxc/network_zone.go:1175 lxc/network_zone.go:1176 +#: lxc/network_zone.go:1180 lxc/network_zone.go:1181 msgid "Delete network zone record" msgstr "" -#: lxc/network_zone.go:583 lxc/network_zone.go:584 +#: lxc/network_zone.go:588 lxc/network_zone.go:589 msgid "Delete network zones" msgstr "" @@ -1624,7 +1619,7 @@ msgstr "" msgid "Delete projects" msgstr "" -#: lxc/storage_bucket.go:182 lxc/storage_bucket.go:183 +#: lxc/storage_bucket.go:187 lxc/storage_bucket.go:188 msgid "Delete storage buckets" msgstr "" @@ -1680,7 +1675,7 @@ msgstr "" #: 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/info.go:32 lxc/init.go:43 lxc/launch.go:24 lxc/list.go:48 lxc/main.go:83 #: 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 @@ -1699,22 +1694,22 @@ msgstr "" #: 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_load_balancer.go:238 lxc/network_load_balancer.go:388 +#: lxc/network_load_balancer.go:456 lxc/network_load_balancer.go:554 +#: lxc/network_load_balancer.go:584 lxc/network_load_balancer.go:727 +#: lxc/network_load_balancer.go:788 lxc/network_load_balancer.go:803 +#: lxc/network_load_balancer.go:867 lxc/network_load_balancer.go:953 +#: lxc/network_load_balancer.go:968 lxc/network_load_balancer.go:1029 #: 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/network_zone.go:29 lxc/network_zone.go:86 lxc/network_zone.go:157 +#: lxc/network_zone.go:212 lxc/network_zone.go:272 lxc/network_zone.go:359 +#: lxc/network_zone.go:439 lxc/network_zone.go:470 lxc/network_zone.go:589 +#: lxc/network_zone.go:637 lxc/network_zone.go:694 lxc/network_zone.go:764 +#: lxc/network_zone.go:816 lxc/network_zone.go:875 lxc/network_zone.go:957 +#: lxc/network_zone.go:1033 lxc/network_zone.go:1063 lxc/network_zone.go:1181 +#: lxc/network_zone.go:1230 lxc/network_zone.go:1245 lxc/network_zone.go:1291 #: 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 @@ -1723,19 +1718,19 @@ msgstr "" #: 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:631 lxc/remote.go:669 lxc/remote.go:755 lxc/remote.go:828 -#: lxc/remote.go:884 lxc/remote.go:924 lxc/rename.go:21 lxc/restore.go:24 +#: lxc/query.go:34 lxc/rebuild.go:27 lxc/remote.go:35 lxc/remote.go:91 +#: lxc/remote.go:632 lxc/remote.go:670 lxc/remote.go:756 lxc/remote.go:829 +#: lxc/remote.go:885 lxc/remote.go:925 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_bucket.go:29 lxc/storage_bucket.go:83 lxc/storage_bucket.go:188 +#: lxc/storage_bucket.go:249 lxc/storage_bucket.go:382 +#: lxc/storage_bucket.go:458 lxc/storage_bucket.go:535 +#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:698 +#: lxc/storage_bucket.go:732 lxc/storage_bucket.go:773 +#: lxc/storage_bucket.go:852 lxc/storage_bucket.go:930 +#: lxc/storage_bucket.go:994 lxc/storage_bucket.go:1129 #: 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 @@ -1871,7 +1866,7 @@ msgstr "" msgid "Don't require user confirmation for using --force" msgstr "" -#: lxc/main.go:99 +#: lxc/main.go:100 msgid "Don't show progress information" msgstr "" @@ -1884,7 +1879,7 @@ msgstr "" msgid "Driver: %v (%v)" msgstr "" -#: lxc/network_zone.go:743 +#: lxc/network_zone.go:748 msgid "ENTRIES" msgstr "" @@ -1962,7 +1957,7 @@ msgstr "" msgid "Edit network forward configurations as YAML" msgstr "" -#: lxc/network_load_balancer.go:578 lxc/network_load_balancer.go:579 +#: lxc/network_load_balancer.go:583 lxc/network_load_balancer.go:584 msgid "Edit network load balancer configurations as YAML" msgstr "" @@ -1970,11 +1965,11 @@ msgstr "" msgid "Edit network peer configurations as YAML" msgstr "" -#: lxc/network_zone.go:464 lxc/network_zone.go:465 +#: lxc/network_zone.go:469 lxc/network_zone.go:470 msgid "Edit network zone configurations as YAML" msgstr "" -#: lxc/network_zone.go:1057 lxc/network_zone.go:1058 +#: lxc/network_zone.go:1062 lxc/network_zone.go:1063 msgid "Edit network zone record configurations as YAML" msgstr "" @@ -1986,11 +1981,11 @@ msgstr "" msgid "Edit project configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:243 lxc/storage_bucket.go:244 +#: lxc/storage_bucket.go:248 lxc/storage_bucket.go:249 msgid "Edit storage bucket configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:988 lxc/storage_bucket.go:989 +#: lxc/storage_bucket.go:993 lxc/storage_bucket.go:994 msgid "Edit storage bucket key as YAML" msgstr "" @@ -2031,7 +2026,7 @@ msgid "" " for the address if not yet set." msgstr "" -#: lxc/network_zone.go:1242 +#: lxc/network_zone.go:1247 msgid "Entry TTL" msgstr "" @@ -2060,9 +2055,9 @@ msgstr "" #: lxc/cluster.go:414 lxc/config.go:624 lxc/config.go:656 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/network_load_balancer.go:527 lxc/network_peer.go:463 +#: lxc/network_zone.go:414 lxc/network_zone.go:1008 lxc/profile.go:876 +#: lxc/project.go:634 lxc/storage.go:727 lxc/storage_bucket.go:602 #: lxc/storage_volume.go:1947 lxc/storage_volume.go:1985 #, c-format msgid "Error setting properties: %v" @@ -2074,10 +2069,10 @@ 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/network_forward.go:513 lxc/network_load_balancer.go:521 +#: lxc/network_peer.go:457 lxc/network_zone.go:408 lxc/network_zone.go:1002 #: lxc/profile.go:870 lxc/project.go:628 lxc/storage.go:721 -#: lxc/storage_bucket.go:591 lxc/storage_volume.go:1941 +#: lxc/storage_bucket.go:596 lxc/storage_volume.go:1941 #: lxc/storage_volume.go:1979 #, c-format msgid "Error unsetting property: %v" @@ -2263,7 +2258,7 @@ msgstr "" msgid "Failed parsing SSH host key: %w" msgstr "" -#: lxc/console.go:361 +#: lxc/console.go:366 #, c-format msgid "Failed starting command: %w" msgstr "" @@ -2278,11 +2273,11 @@ msgstr "" msgid "Failed to accept incoming connection: %w" msgstr "" -#: lxc/remote.go:190 +#: lxc/remote.go:191 msgid "Failed to add remote" msgstr "" -#: lxc/remote.go:241 +#: lxc/remote.go:242 #, c-format msgid "Failed to close server cert file %q: %w" msgstr "" @@ -2292,7 +2287,7 @@ msgstr "" msgid "Failed to connect to cluster member: %w" msgstr "" -#: lxc/remote.go:231 +#: lxc/remote.go:232 #, c-format msgid "Failed to create %q: %w" msgstr "" @@ -2302,12 +2297,12 @@ msgstr "" msgid "Failed to create alias %s: %w" msgstr "" -#: lxc/remote.go:256 +#: lxc/remote.go:257 #, c-format msgid "Failed to create certificate: %w" msgstr "" -#: lxc/remote.go:263 +#: lxc/remote.go:264 #, c-format msgid "Failed to find project: %w" msgstr "" @@ -2332,7 +2327,7 @@ msgstr "" msgid "Failed to walk path for %s: %s" msgstr "" -#: lxc/remote.go:236 +#: lxc/remote.go:237 #, c-format msgid "Failed to write server cert file %q: %w" msgstr "" @@ -2341,7 +2336,7 @@ msgstr "" msgid "Fast mode (same as --columns=nsacPt)" msgstr "" -#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:115 +#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:116 #: lxc/operation.go:136 msgid "Filtering isn't supported yet" msgstr "" @@ -2379,7 +2374,7 @@ msgstr "" msgid "Force the removal of running instances" msgstr "" -#: lxc/main.go:95 +#: lxc/main.go:96 msgid "Force using the local unix socket" msgstr "" @@ -2413,10 +2408,10 @@ msgstr "" #: 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/network_peer.go:84 lxc/network_zone.go:89 lxc/network_zone.go:697 #: lxc/operation.go:108 lxc/profile.go:637 lxc/project.go:412 -#: lxc/project.go:804 lxc/remote.go:673 lxc/storage.go:588 -#: lxc/storage_bucket.go:454 lxc/storage_bucket.go:769 +#: lxc/project.go:804 lxc/remote.go:674 lxc/storage.go:588 +#: lxc/storage_bucket.go:459 lxc/storage_bucket.go:774 #: lxc/storage_volume.go:1446 lxc/warning.go:93 msgid "Format (csv|json|table|yaml|compact)" msgstr "" @@ -2453,7 +2448,7 @@ msgstr "" msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)" msgstr "" -#: lxc/remote.go:737 +#: lxc/remote.go:738 msgid "GLOBAL" msgstr "" @@ -2473,7 +2468,7 @@ msgstr "" msgid "Generate manpages for all commands" msgstr "" -#: lxc/remote.go:159 lxc/remote.go:397 +#: lxc/remote.go:160 lxc/remote.go:398 msgid "Generating a client certificate. This may take a minute..." msgstr "" @@ -2505,7 +2500,7 @@ msgstr "" msgid "Get the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:386 +#: lxc/network_load_balancer.go:391 msgid "Get the key as a network load balancer property" msgstr "" @@ -2517,11 +2512,11 @@ msgstr "" msgid "Get the key as a network property" msgstr "" -#: lxc/network_zone.go:214 +#: lxc/network_zone.go:215 msgid "Get the key as a network zone property" msgstr "" -#: lxc/network_zone.go:814 +#: lxc/network_zone.go:819 msgid "Get the key as a network zone record property" msgstr "" @@ -2533,7 +2528,7 @@ msgstr "" msgid "Get the key as a project property" msgstr "" -#: lxc/storage_bucket.go:380 +#: lxc/storage_bucket.go:385 msgid "Get the key as a storage bucket property" msgstr "" @@ -2573,7 +2568,7 @@ msgstr "" msgid "Get values for network forward configuration keys" msgstr "" -#: lxc/network_load_balancer.go:382 lxc/network_load_balancer.go:383 +#: lxc/network_load_balancer.go:387 lxc/network_load_balancer.go:388 msgid "Get values for network load balancer configuration keys" msgstr "" @@ -2581,11 +2576,11 @@ msgstr "" msgid "Get values for network peer configuration keys" msgstr "" -#: lxc/network_zone.go:210 lxc/network_zone.go:211 +#: lxc/network_zone.go:211 lxc/network_zone.go:212 msgid "Get values for network zone configuration keys" msgstr "" -#: lxc/network_zone.go:810 lxc/network_zone.go:811 +#: lxc/network_zone.go:815 lxc/network_zone.go:816 msgid "Get values for network zone record configuration keys" msgstr "" @@ -2597,7 +2592,7 @@ msgstr "" msgid "Get values for project configuration keys" msgstr "" -#: lxc/storage_bucket.go:376 lxc/storage_bucket.go:377 +#: lxc/storage_bucket.go:381 lxc/storage_bucket.go:382 msgid "Get values for storage bucket configuration keys" msgstr "" @@ -2737,7 +2732,7 @@ msgstr "" msgid "If the snapshot name already exists, delete and create a new one" msgstr "" -#: lxc/main.go:398 +#: lxc/main.go:400 msgid "" "If this is your first time running LXD on this machine, you should also run: " "lxd init" @@ -2894,7 +2889,7 @@ msgstr "" msgid "Instance type" msgstr "" -#: lxc/remote.go:349 +#: lxc/remote.go:350 #, c-format msgid "Invalid URL scheme \"%s\" in \"%s\"" msgstr "" @@ -2966,7 +2961,7 @@ msgstr "" msgid "Invalid new snapshot name, parent volume must be the same as source" msgstr "" -#: lxc/main.go:498 +#: lxc/main.go:502 msgid "Invalid number of arguments" msgstr "" @@ -2975,7 +2970,7 @@ msgstr "" msgid "Invalid path %s" msgstr "" -#: lxc/remote.go:338 +#: lxc/remote.go:339 #, c-format msgid "Invalid protocol: %s" msgstr "" @@ -3023,7 +3018,7 @@ msgstr "" #: lxc/list.go:597 lxc/network.go:1059 lxc/network_forward.go:155 #: lxc/network_load_balancer.go:157 lxc/operation.go:177 -#: lxc/storage_bucket.go:511 lxc/storage_volume.go:1569 lxc/warning.go:220 +#: lxc/storage_bucket.go:516 lxc/storage_volume.go:1569 lxc/warning.go:220 msgid "LOCATION" msgstr "" @@ -3031,7 +3026,7 @@ msgstr "" msgid "LXD - Command line client" msgstr "" -#: lxc/console.go:382 +#: lxc/console.go:387 msgid "LXD automatically uses either spicy or remote-viewer when present." msgstr "" @@ -3121,15 +3116,15 @@ msgstr "" msgid "List available network peers" msgstr "" -#: lxc/network_zone.go:85 +#: lxc/network_zone.go:86 msgid "List available network zone" msgstr "" -#: lxc/network_zone.go:688 lxc/network_zone.go:689 +#: lxc/network_zone.go:693 lxc/network_zone.go:694 msgid "List available network zone records" msgstr "" -#: lxc/network_zone.go:84 +#: lxc/network_zone.go:85 msgid "List available network zoneS" msgstr "" @@ -3318,11 +3313,11 @@ msgstr "" msgid "List projects" msgstr "" -#: lxc/storage_bucket.go:766 lxc/storage_bucket.go:768 +#: lxc/storage_bucket.go:771 lxc/storage_bucket.go:773 msgid "List storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:451 lxc/storage_bucket.go:453 +#: lxc/storage_bucket.go:456 lxc/storage_bucket.go:458 msgid "List storage buckets" msgstr "" @@ -3350,7 +3345,7 @@ msgid "" " U - Current disk usage" msgstr "" -#: lxc/remote.go:668 lxc/remote.go:669 +#: lxc/remote.go:669 lxc/remote.go:670 msgid "List the available remotes" msgstr "" @@ -3577,11 +3572,11 @@ msgstr "" msgid "Manage network forwards" msgstr "" -#: lxc/network_load_balancer.go:782 lxc/network_load_balancer.go:783 +#: lxc/network_load_balancer.go:787 lxc/network_load_balancer.go:788 msgid "Manage network load balancer backends" msgstr "" -#: lxc/network_load_balancer.go:947 lxc/network_load_balancer.go:948 +#: lxc/network_load_balancer.go:952 lxc/network_load_balancer.go:953 msgid "Manage network load balancer ports" msgstr "" @@ -3593,15 +3588,15 @@ msgstr "" msgid "Manage network peerings" msgstr "" -#: lxc/network_zone.go:1224 lxc/network_zone.go:1225 +#: lxc/network_zone.go:1229 lxc/network_zone.go:1230 msgid "Manage network zone record entries" msgstr "" -#: lxc/network_zone.go:631 lxc/network_zone.go:632 +#: lxc/network_zone.go:636 lxc/network_zone.go:637 msgid "Manage network zone records" msgstr "" -#: lxc/network_zone.go:27 lxc/network_zone.go:28 +#: lxc/network_zone.go:28 lxc/network_zone.go:29 msgid "Manage network zones" msgstr "" @@ -3617,11 +3612,11 @@ msgstr "" msgid "Manage projects" msgstr "" -#: lxc/storage_bucket.go:726 +#: lxc/storage_bucket.go:731 msgid "Manage storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:727 +#: lxc/storage_bucket.go:732 msgid "Manage storage bucket keys." msgstr "" @@ -3649,7 +3644,7 @@ msgid "" "\"custom\" (user created) volumes." msgstr "" -#: lxc/remote.go:33 lxc/remote.go:34 +#: lxc/remote.go:34 lxc/remote.go:35 msgid "Manage the list of remote servers" msgstr "" @@ -3730,12 +3725,12 @@ msgid "" "Minimum level for log messages (only available when using pretty format)" msgstr "" -#: lxc/storage_bucket.go:111 lxc/storage_bucket.go:211 -#: lxc/storage_bucket.go:287 lxc/storage_bucket.go:406 -#: lxc/storage_bucket.go:563 lxc/storage_bucket.go:655 -#: lxc/storage_bucket.go:797 lxc/storage_bucket.go:878 -#: lxc/storage_bucket.go:953 lxc/storage_bucket.go:1032 -#: lxc/storage_bucket.go:1155 +#: lxc/storage_bucket.go:116 lxc/storage_bucket.go:216 +#: lxc/storage_bucket.go:292 lxc/storage_bucket.go:411 +#: lxc/storage_bucket.go:568 lxc/storage_bucket.go:660 +#: lxc/storage_bucket.go:802 lxc/storage_bucket.go:883 +#: lxc/storage_bucket.go:958 lxc/storage_bucket.go:1037 +#: lxc/storage_bucket.go:1160 msgid "Missing bucket name" msgstr "" @@ -3779,8 +3774,8 @@ msgstr "" msgid "Missing instance name" msgstr "" -#: lxc/storage_bucket.go:882 lxc/storage_bucket.go:957 -#: lxc/storage_bucket.go:1036 lxc/storage_bucket.go:1159 +#: lxc/storage_bucket.go:887 lxc/storage_bucket.go:962 +#: lxc/storage_bucket.go:1041 lxc/storage_bucket.go:1164 msgid "Missing key name" msgstr "" @@ -3788,10 +3783,10 @@ msgstr "" #: lxc/network_forward.go:481 lxc/network_forward.go:627 #: lxc/network_forward.go:746 lxc/network_forward.go:823 #: lxc/network_forward.go:889 lxc/network_load_balancer.go:201 -#: lxc/network_load_balancer.go:411 lxc/network_load_balancer.go:484 -#: lxc/network_load_balancer.go:630 lxc/network_load_balancer.go:750 -#: lxc/network_load_balancer.go:826 lxc/network_load_balancer.go:890 -#: lxc/network_load_balancer.go:991 lxc/network_load_balancer.go:1053 +#: lxc/network_load_balancer.go:416 lxc/network_load_balancer.go:489 +#: lxc/network_load_balancer.go:635 lxc/network_load_balancer.go:755 +#: lxc/network_load_balancer.go:831 lxc/network_load_balancer.go:895 +#: lxc/network_load_balancer.go:996 lxc/network_load_balancer.go:1058 msgid "Missing listen address" msgstr "" @@ -3816,26 +3811,26 @@ msgstr "" #: lxc/network_forward.go:477 lxc/network_forward.go:623 #: lxc/network_forward.go:742 lxc/network_forward.go:819 #: lxc/network_forward.go:885 lxc/network_load_balancer.go:123 -#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:261 -#: lxc/network_load_balancer.go:407 lxc/network_load_balancer.go:480 -#: lxc/network_load_balancer.go:626 lxc/network_load_balancer.go:746 -#: lxc/network_load_balancer.go:822 lxc/network_load_balancer.go:886 -#: lxc/network_load_balancer.go:987 lxc/network_load_balancer.go:1049 +#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:266 +#: lxc/network_load_balancer.go:412 lxc/network_load_balancer.go:485 +#: lxc/network_load_balancer.go:631 lxc/network_load_balancer.go:751 +#: lxc/network_load_balancer.go:827 lxc/network_load_balancer.go:891 +#: lxc/network_load_balancer.go:992 lxc/network_load_balancer.go:1054 #: lxc/network_peer.go:110 lxc/network_peer.go:180 lxc/network_peer.go:237 #: lxc/network_peer.go:355 lxc/network_peer.go:426 lxc/network_peer.go:556 #: lxc/network_peer.go:665 msgid "Missing network name" msgstr "" -#: lxc/network_zone.go:178 lxc/network_zone.go:234 lxc/network_zone.go:294 -#: lxc/network_zone.go:382 lxc/network_zone.go:503 lxc/network_zone.go:606 -#: lxc/network_zone.go:712 lxc/network_zone.go:780 lxc/network_zone.go:892 -#: lxc/network_zone.go:976 lxc/network_zone.go:1197 lxc/network_zone.go:1262 -#: lxc/network_zone.go:1307 +#: lxc/network_zone.go:179 lxc/network_zone.go:235 lxc/network_zone.go:299 +#: lxc/network_zone.go:387 lxc/network_zone.go:508 lxc/network_zone.go:611 +#: lxc/network_zone.go:717 lxc/network_zone.go:785 lxc/network_zone.go:897 +#: lxc/network_zone.go:981 lxc/network_zone.go:1202 lxc/network_zone.go:1267 +#: lxc/network_zone.go:1312 msgid "Missing network zone name" msgstr "" -#: lxc/network_zone.go:833 lxc/network_zone.go:1095 +#: lxc/network_zone.go:838 lxc/network_zone.go:1100 msgid "Missing network zone record name" msgstr "" @@ -3845,13 +3840,13 @@ msgid "Missing peer name" msgstr "" #: lxc/storage.go:194 lxc/storage.go:264 lxc/storage.go:370 lxc/storage.go:440 -#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:107 -#: lxc/storage_bucket.go:207 lxc/storage_bucket.go:283 -#: lxc/storage_bucket.go:402 lxc/storage_bucket.go:477 -#: lxc/storage_bucket.go:559 lxc/storage_bucket.go:651 -#: lxc/storage_bucket.go:793 lxc/storage_bucket.go:874 -#: lxc/storage_bucket.go:949 lxc/storage_bucket.go:1028 -#: lxc/storage_bucket.go:1151 lxc/storage_volume.go:189 +#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:112 +#: lxc/storage_bucket.go:212 lxc/storage_bucket.go:288 +#: lxc/storage_bucket.go:407 lxc/storage_bucket.go:482 +#: lxc/storage_bucket.go:564 lxc/storage_bucket.go:656 +#: lxc/storage_bucket.go:798 lxc/storage_bucket.go:879 +#: lxc/storage_bucket.go:954 lxc/storage_bucket.go:1033 +#: lxc/storage_bucket.go:1156 lxc/storage_volume.go:189 #: lxc/storage_volume.go:287 lxc/storage_volume.go:583 #: lxc/storage_volume.go:660 lxc/storage_volume.go:735 #: lxc/storage_volume.go:817 lxc/storage_volume.go:919 @@ -3971,7 +3966,7 @@ msgstr "" msgid "Moving the storage volume: %s" msgstr "" -#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1097 +#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1102 msgid "Multiple ports match. Use --force to remove them all" msgstr "" @@ -3990,10 +3985,10 @@ 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:677 lxc/project.go:498 -#: lxc/remote.go:731 lxc/storage.go:638 lxc/storage_bucket.go:506 -#: lxc/storage_bucket.go:826 lxc/storage_volume.go:1561 +#: lxc/network_acl.go:147 lxc/network_peer.go:139 lxc/network_zone.go:139 +#: lxc/network_zone.go:746 lxc/profile.go:677 lxc/project.go:498 +#: lxc/remote.go:732 lxc/storage.go:638 lxc/storage_bucket.go:511 +#: lxc/storage_bucket.go:831 lxc/storage_volume.go:1561 msgid "NAME" msgstr "" @@ -4019,7 +4014,7 @@ msgstr "" #: lxc/network.go:957 lxc/operation.go:154 lxc/project.go:456 #: lxc/project.go:461 lxc/project.go:466 lxc/project.go:471 lxc/project.go:476 -#: lxc/project.go:481 lxc/remote.go:691 lxc/remote.go:696 lxc/remote.go:701 +#: lxc/project.go:481 lxc/remote.go:692 lxc/remote.go:697 lxc/remote.go:702 msgid "NO" msgstr "" @@ -4046,7 +4041,7 @@ msgstr "" msgid "Name" msgstr "" -#: lxc/remote.go:141 +#: lxc/remote.go:142 msgid "Name of the project to use for this remote:" msgstr "" @@ -4095,12 +4090,12 @@ msgstr "" msgid "Network ACL %s renamed to %s" msgstr "" -#: lxc/network_zone.go:336 +#: lxc/network_zone.go:341 #, c-format msgid "Network Zone %s created" msgstr "" -#: lxc/network_zone.go:616 +#: lxc/network_zone.go:621 #, c-format msgid "Network Zone %s deleted" msgstr "" @@ -4115,12 +4110,12 @@ msgstr "" msgid "Network forward %s deleted" msgstr "" -#: lxc/network_load_balancer.go:365 +#: lxc/network_load_balancer.go:370 #, c-format msgid "Network load balancer %s created" msgstr "" -#: lxc/network_load_balancer.go:767 +#: lxc/network_load_balancer.go:772 #, c-format msgid "Network load balancer %s deleted" msgstr "" @@ -4158,12 +4153,12 @@ msgstr "" msgid "Network usage:" msgstr "" -#: lxc/network_zone.go:934 +#: lxc/network_zone.go:939 #, c-format msgid "Network zone record %s created" msgstr "" -#: lxc/network_zone.go:1207 +#: lxc/network_zone.go:1212 #, c-format msgid "Network zone record %s deleted" msgstr "" @@ -4198,11 +4193,11 @@ msgstr "" msgid "No device found for this storage volume" msgstr "" -#: lxc/network_load_balancer.go:921 +#: lxc/network_load_balancer.go:926 msgid "No matching backend found" msgstr "" -#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1108 +#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1113 msgid "No matching port(s) found" msgstr "" @@ -4248,7 +4243,7 @@ msgstr "" msgid "Only \"custom\" volumes can be snapshotted" msgstr "" -#: lxc/remote.go:332 +#: lxc/remote.go:333 msgid "Only https URLs are supported for simplestreams" msgstr "" @@ -4273,7 +4268,7 @@ msgstr "" msgid "Optimized Storage" msgstr "" -#: lxc/main.go:96 +#: lxc/main.go:97 msgid "Override the source project" msgstr "" @@ -4319,11 +4314,11 @@ msgstr "" msgid "PROJECT" msgstr "" -#: lxc/remote.go:733 +#: lxc/remote.go:734 msgid "PROTOCOL" msgstr "" -#: lxc/image.go:1073 lxc/remote.go:735 +#: lxc/image.go:1073 lxc/remote.go:736 msgid "PUBLIC" msgstr "" @@ -4339,7 +4334,7 @@ msgstr "" msgid "Partitions:" msgstr "" -#: lxc/main.go:361 +#: lxc/main.go:363 #, c-format msgid "Password for %s: " msgstr "" @@ -4352,7 +4347,7 @@ msgstr "" msgid "Perform an incremental copy" msgstr "" -#: lxc/remote.go:182 +#: lxc/remote.go:183 msgid "Please provide an alternate server address (empty to abort):" msgstr "" @@ -4364,7 +4359,7 @@ msgstr "" msgid "Please provide cluster member name: " msgstr "" -#: lxc/remote.go:462 +#: lxc/remote.go:463 msgid "Please type 'y', 'n' or the fingerprint:" msgstr "" @@ -4386,10 +4381,10 @@ msgstr "" #: lxc/config.go:1278 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/network_load_balancer.go:695 lxc/network_peer.go:611 +#: lxc/network_zone.go:557 lxc/network_zone.go:1149 lxc/profile.go:539 +#: lxc/project.go:316 lxc/storage.go:311 lxc/storage_bucket.go:349 +#: lxc/storage_bucket.go:1098 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 "" @@ -4398,7 +4393,7 @@ msgstr "" msgid "Pretty rendering (short for --format=pretty)" msgstr "" -#: lxc/main.go:94 +#: lxc/main.go:95 msgid "Print help" msgstr "" @@ -4406,7 +4401,7 @@ msgstr "" msgid "Print the raw response" msgstr "" -#: lxc/main.go:93 +#: lxc/main.go:94 msgid "Print version number" msgstr "" @@ -4495,7 +4490,7 @@ msgstr "" msgid "Project %s renamed to %s" msgstr "" -#: lxc/remote.go:106 +#: lxc/remote.go:107 msgid "Project to use for the remote" msgstr "" @@ -4593,7 +4588,7 @@ msgid "" "pool \"default\"." msgstr "" -#: lxc/remote.go:105 +#: lxc/remote.go:106 msgid "Public image server" msgstr "" @@ -4641,7 +4636,7 @@ msgstr "" msgid "RESOURCE" msgstr "" -#: lxc/storage_bucket.go:828 +#: lxc/storage_bucket.go:833 msgid "ROLE" msgstr "" @@ -4684,45 +4679,45 @@ msgstr "" msgid "Refreshing the image: %s" msgstr "" -#: lxc/remote.go:785 +#: lxc/remote.go:786 #, c-format msgid "Remote %s already exists" msgstr "" -#: lxc/project.go:769 lxc/remote.go:776 lxc/remote.go:849 lxc/remote.go:905 -#: lxc/remote.go:945 +#: lxc/project.go:769 lxc/remote.go:777 lxc/remote.go:850 lxc/remote.go:906 +#: lxc/remote.go:946 #, c-format msgid "Remote %s doesn't exist" msgstr "" -#: lxc/remote.go:301 +#: lxc/remote.go:302 #, c-format msgid "Remote %s exists as <%s>" msgstr "" -#: lxc/remote.go:857 +#: lxc/remote.go:858 #, c-format msgid "Remote %s is global and cannot be removed" msgstr "" -#: lxc/remote.go:780 lxc/remote.go:853 lxc/remote.go:949 +#: lxc/remote.go:781 lxc/remote.go:854 lxc/remote.go:950 #, c-format msgid "Remote %s is static and cannot be modified" msgstr "" -#: lxc/remote.go:290 +#: lxc/remote.go:291 msgid "Remote address must not be empty" msgstr "" -#: lxc/remote.go:101 +#: lxc/remote.go:102 msgid "Remote admin password" msgstr "" -#: lxc/remote.go:295 +#: lxc/remote.go:296 msgid "Remote names may not contain colons" msgstr "" -#: lxc/remote.go:102 +#: lxc/remote.go:103 msgid "Remote trust token" msgstr "" @@ -4748,7 +4743,7 @@ msgstr "" msgid "Remove a member from the cluster" msgstr "" -#: lxc/network_zone.go:1285 +#: lxc/network_zone.go:1290 msgid "Remove a network zone record entry" msgstr "" @@ -4756,7 +4751,7 @@ msgstr "" msgid "Remove aliases" msgstr "" -#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1025 +#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1030 msgid "Remove all ports that match" msgstr "" @@ -4764,15 +4759,15 @@ msgstr "" msgid "Remove all rules that match" msgstr "" -#: lxc/network_load_balancer.go:862 +#: lxc/network_load_balancer.go:867 msgid "Remove backend from a load balancer" msgstr "" -#: lxc/network_load_balancer.go:861 +#: lxc/network_load_balancer.go:866 msgid "Remove backends from a load balancer" msgstr "" -#: lxc/network_zone.go:1286 +#: lxc/network_zone.go:1291 msgid "Remove entries from a network zone record" msgstr "" @@ -4796,7 +4791,7 @@ msgstr "" msgid "Remove ports from a forward" msgstr "" -#: lxc/network_load_balancer.go:1023 lxc/network_load_balancer.go:1024 +#: lxc/network_load_balancer.go:1028 lxc/network_load_balancer.go:1029 msgid "Remove ports from a load balancer" msgstr "" @@ -4804,7 +4799,7 @@ msgstr "" msgid "Remove profiles from instances" msgstr "" -#: lxc/remote.go:827 lxc/remote.go:828 +#: lxc/remote.go:828 lxc/remote.go:829 msgid "Remove remotes" msgstr "" @@ -4861,7 +4856,7 @@ msgstr "" msgid "Rename projects" msgstr "" -#: lxc/remote.go:754 lxc/remote.go:755 +#: lxc/remote.go:755 lxc/remote.go:756 msgid "Rename remotes" msgstr "" @@ -4939,7 +4934,7 @@ msgid "Restrict the certificate to one or more projects" msgstr "" #: lxc/console.go:44 -msgid "Retrieve the instance's console log" +msgid "Retrieve the container's console log" msgstr "" #: lxc/init.go:347 @@ -4955,7 +4950,7 @@ msgstr "" msgid "Revoke cluster member join token" msgstr "" -#: lxc/storage_bucket.go:851 +#: lxc/storage_bucket.go:856 msgid "Role (admin or read-only)" msgstr "" @@ -5006,7 +5001,7 @@ msgstr "" msgid "STATE" msgstr "" -#: lxc/remote.go:736 +#: lxc/remote.go:737 msgid "STATIC" msgstr "" @@ -5030,11 +5025,11 @@ msgstr "" msgid "STP" msgstr "" -#: lxc/storage_bucket.go:853 +#: lxc/storage_bucket.go:858 msgid "Secret key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:909 +#: lxc/storage_bucket.go:914 #, c-format msgid "Secret key: %s" msgstr "" @@ -5043,19 +5038,19 @@ msgstr "" msgid "Send a raw query to LXD" msgstr "" -#: lxc/remote.go:104 +#: lxc/remote.go:105 msgid "Server authentication type (tls or oidc)" msgstr "" -#: lxc/remote.go:460 +#: lxc/remote.go:461 msgid "Server certificate NACKed by user" msgstr "" -#: lxc/remote.go:599 +#: lxc/remote.go:600 msgid "Server doesn't trust us after authentication" msgstr "" -#: lxc/remote.go:103 +#: lxc/remote.go:104 msgid "Server protocol (lxd or simplestreams)" msgstr "" @@ -5154,11 +5149,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_load_balancer.go:450 +#: lxc/network_load_balancer.go:455 msgid "Set network load balancer keys" msgstr "" -#: lxc/network_load_balancer.go:451 +#: lxc/network_load_balancer.go:456 msgid "" "Set network load balancer keys\n" "\n" @@ -5180,11 +5175,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:353 +#: lxc/network_zone.go:358 msgid "Set network zone configuration keys" msgstr "" -#: lxc/network_zone.go:354 +#: lxc/network_zone.go:359 msgid "" "Set network zone configuration keys\n" "\n" @@ -5193,7 +5188,7 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:951 lxc/network_zone.go:952 +#: lxc/network_zone.go:956 lxc/network_zone.go:957 msgid "Set network zone record configuration keys" msgstr "" @@ -5223,11 +5218,11 @@ msgid "" " lxc project set [:] " msgstr "" -#: lxc/storage_bucket.go:529 +#: lxc/storage_bucket.go:534 msgid "Set storage bucket configuration keys" msgstr "" -#: lxc/storage_bucket.go:530 +#: lxc/storage_bucket.go:535 msgid "" "Set storage bucket configuration keys\n" "\n" @@ -5262,7 +5257,7 @@ msgid "" " lxc storage volume set [:] [/] " msgstr "" -#: lxc/remote.go:923 lxc/remote.go:924 +#: lxc/remote.go:924 lxc/remote.go:925 msgid "Set the URL for the remote" msgstr "" @@ -5290,7 +5285,7 @@ msgstr "" msgid "Set the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:458 +#: lxc/network_load_balancer.go:463 msgid "Set the key as a network load balancer property" msgstr "" @@ -5302,11 +5297,11 @@ msgstr "" msgid "Set the key as a network property" msgstr "" -#: lxc/network_zone.go:361 +#: lxc/network_zone.go:366 msgid "Set the key as a network zone property" msgstr "" -#: lxc/network_zone.go:957 +#: lxc/network_zone.go:962 msgid "Set the key as a network zone record property" msgstr "" @@ -5318,7 +5313,7 @@ msgstr "" msgid "Set the key as a project property" msgstr "" -#: lxc/storage_bucket.go:537 +#: lxc/storage_bucket.go:542 msgid "Set the key as a storage bucket property" msgstr "" @@ -5338,11 +5333,11 @@ msgstr "" msgid "Setup SSH SFTP listener on address:port instead of mounting" msgstr "" -#: lxc/main.go:97 +#: lxc/main.go:98 msgid "Show all debug messages" msgstr "" -#: lxc/main.go:98 +#: lxc/main.go:99 msgid "Show all information messages" msgstr "" @@ -5411,7 +5406,7 @@ msgstr "" msgid "Show instance or server information" msgstr "" -#: lxc/main.go:271 lxc/main.go:272 +#: lxc/main.go:272 lxc/main.go:273 msgid "Show less common commands" msgstr "" @@ -5443,15 +5438,15 @@ msgstr "" msgid "Show network peer configurations" msgstr "" -#: lxc/network_zone.go:155 lxc/network_zone.go:156 +#: lxc/network_zone.go:156 lxc/network_zone.go:157 msgid "Show network zone configurations" msgstr "" -#: lxc/network_zone.go:758 +#: lxc/network_zone.go:763 msgid "Show network zone record configuration" msgstr "" -#: lxc/network_zone.go:759 +#: lxc/network_zone.go:764 msgid "Show network zone record configurations" msgstr "" @@ -5463,11 +5458,11 @@ msgstr "" msgid "Show project options" msgstr "" -#: lxc/storage_bucket.go:623 lxc/storage_bucket.go:624 +#: lxc/storage_bucket.go:628 lxc/storage_bucket.go:629 msgid "Show storage bucket configurations" msgstr "" -#: lxc/storage_bucket.go:1123 lxc/storage_bucket.go:1124 +#: lxc/storage_bucket.go:1128 lxc/storage_bucket.go:1129 msgid "Show storage bucket key configurations" msgstr "" @@ -5493,7 +5488,7 @@ msgid "" "that are granted via identity provider group mappings. \n" msgstr "" -#: lxc/remote.go:630 lxc/remote.go:631 +#: lxc/remote.go:631 lxc/remote.go:632 msgid "Show the default remote" msgstr "" @@ -5617,22 +5612,22 @@ msgstr "" msgid "Stopping the instance failed: %s" msgstr "" -#: lxc/storage_bucket.go:161 +#: lxc/storage_bucket.go:166 #, c-format msgid "Storage bucket %s created" msgstr "" -#: lxc/storage_bucket.go:228 +#: lxc/storage_bucket.go:233 #, c-format msgid "Storage bucket %s deleted" msgstr "" -#: lxc/storage_bucket.go:907 +#: lxc/storage_bucket.go:912 #, c-format msgid "Storage bucket key %s added" msgstr "" -#: lxc/storage_bucket.go:973 +#: lxc/storage_bucket.go:978 #, c-format msgid "Storage bucket key %s removed" msgstr "" @@ -5705,7 +5700,7 @@ msgstr "" msgid "Switch the current project" msgstr "" -#: lxc/remote.go:883 lxc/remote.go:884 +#: lxc/remote.go:884 lxc/remote.go:885 msgid "Switch the default remote" msgstr "" @@ -5820,7 +5815,7 @@ msgstr "" msgid "The property %q does not exist on the instance snapshot %s/%s: %v" msgstr "" -#: lxc/network_load_balancer.go:424 +#: lxc/network_load_balancer.go:429 #, c-format msgid "The property %q does not exist on the load balancer %q: %v" msgstr "" @@ -5845,12 +5840,12 @@ msgstr "" msgid "The property %q does not exist on the network peer %q: %v" msgstr "" -#: lxc/network_zone.go:246 +#: lxc/network_zone.go:247 #, c-format msgid "The property %q does not exist on the network zone %q: %v" msgstr "" -#: lxc/network_zone.go:845 +#: lxc/network_zone.go:850 #, c-format msgid "The property %q does not exist on the network zone record %q: %v" msgstr "" @@ -5865,7 +5860,7 @@ msgstr "" msgid "The property %q does not exist on the project %q: %v" msgstr "" -#: lxc/storage_bucket.go:426 +#: lxc/storage_bucket.go:431 #, c-format msgid "The property %q does not exist on the storage bucket %q: %v" msgstr "" @@ -5919,7 +5914,7 @@ msgstr "" msgid "This LXD server is not available on the network" msgstr "" -#: lxc/main.go:293 +#: lxc/main.go:294 msgid "" "This client hasn't been configured to use a remote LXD server yet.\n" "As your platform can't run native Linux instances, you must connect to a " @@ -5951,11 +5946,11 @@ msgstr "" msgid "To create a new network, use: lxc network create" msgstr "" -#: lxc/console.go:210 +#: lxc/console.go:215 msgid "To detach from the console, press: +a q" msgstr "" -#: lxc/main.go:403 +#: lxc/main.go:406 msgid "" "To start your first container, try: lxc launch ubuntu:24.04\n" "Or for a virtual machine: lxc launch ubuntu:24.04 --vm" @@ -6053,7 +6048,7 @@ msgstr "" msgid "UPLOAD DATE" msgstr "" -#: lxc/cluster.go:184 lxc/remote.go:732 +#: lxc/cluster.go:184 lxc/remote.go:733 msgid "URL" msgstr "" @@ -6062,7 +6057,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:679 lxc/project.go:506 +#: lxc/network_zone.go:141 lxc/profile.go:679 lxc/project.go:506 #: lxc/storage.go:647 lxc/storage_volume.go:1564 msgid "USED BY" msgstr "" @@ -6081,7 +6076,7 @@ msgstr "" msgid "Unable to create a temporary file: %v" msgstr "" -#: lxc/remote.go:213 lxc/remote.go:247 +#: lxc/remote.go:214 lxc/remote.go:248 msgid "Unavailable remote server" msgstr "" @@ -6101,7 +6096,7 @@ msgstr "" msgid "Unknown column shorthand char '%c' in '%s'" msgstr "" -#: lxc/console.go:159 +#: lxc/console.go:164 #, c-format msgid "Unknown console type %q" msgstr "" @@ -6161,11 +6156,11 @@ msgstr "" msgid "Unset network forward keys" msgstr "" -#: lxc/network_load_balancer.go:548 +#: lxc/network_load_balancer.go:553 msgid "Unset network load balancer configuration keys" msgstr "" -#: lxc/network_load_balancer.go:549 +#: lxc/network_load_balancer.go:554 msgid "Unset network load balancer keys" msgstr "" @@ -6177,11 +6172,11 @@ msgstr "" msgid "Unset network peer keys" msgstr "" -#: lxc/network_zone.go:433 lxc/network_zone.go:434 +#: lxc/network_zone.go:438 lxc/network_zone.go:439 msgid "Unset network zone configuration keys" msgstr "" -#: lxc/network_zone.go:1027 lxc/network_zone.go:1028 +#: lxc/network_zone.go:1032 lxc/network_zone.go:1033 msgid "Unset network zone record configuration keys" msgstr "" @@ -6193,7 +6188,7 @@ msgstr "" msgid "Unset project configuration keys" msgstr "" -#: lxc/storage_bucket.go:692 lxc/storage_bucket.go:693 +#: lxc/storage_bucket.go:697 lxc/storage_bucket.go:698 msgid "Unset storage bucket configuration keys" msgstr "" @@ -6217,7 +6212,7 @@ msgstr "" msgid "Unset the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:552 +#: lxc/network_load_balancer.go:557 msgid "Unset the key as a network load balancer property" msgstr "" @@ -6229,11 +6224,11 @@ msgstr "" msgid "Unset the key as a network property" msgstr "" -#: lxc/network_zone.go:437 +#: lxc/network_zone.go:442 msgid "Unset the key as a network zone property" msgstr "" -#: lxc/network_zone.go:1031 +#: lxc/network_zone.go:1036 msgid "Unset the key as a network zone record property" msgstr "" @@ -6245,7 +6240,7 @@ msgstr "" msgid "Unset the key as a project property" msgstr "" -#: lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:701 msgid "Unset the key as a storage bucket property" msgstr "" @@ -6307,7 +6302,7 @@ msgid "" "Use storage driver optimized format (can only be restored on a similar pool)" msgstr "" -#: lxc/main.go:100 +#: lxc/main.go:101 msgid "Use with help or --help to view sub-commands" msgstr "" @@ -6404,7 +6399,7 @@ msgstr "" #: lxc/network.go:959 lxc/operation.go:156 lxc/project.go:458 #: lxc/project.go:463 lxc/project.go:468 lxc/project.go:473 lxc/project.go:478 -#: lxc/project.go:483 lxc/remote.go:693 lxc/remote.go:698 lxc/remote.go:703 +#: lxc/project.go:483 lxc/remote.go:694 lxc/remote.go:699 lxc/remote.go:704 msgid "YES" msgstr "" @@ -6439,7 +6434,7 @@ 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/network.go:909 lxc/network_acl.go:91 lxc/network_zone.go:83 #: 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 "[:]" @@ -6502,19 +6497,19 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:154 lxc/network_zone.go:463 lxc/network_zone.go:581 +#: lxc/network_zone.go:155 lxc/network_zone.go:468 lxc/network_zone.go:586 msgid "[:]" msgstr "" -#: lxc/network_zone.go:209 lxc/network_zone.go:432 +#: lxc/network_zone.go:210 lxc/network_zone.go:437 msgid "[:] " msgstr "" -#: lxc/network_zone.go:352 +#: lxc/network_zone.go:357 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:269 +#: lxc/network_zone.go:270 msgid "[:] [key=value...]" msgstr "" @@ -6760,30 +6755,30 @@ msgstr "" #: lxc/network_forward.go:169 lxc/network_forward.go:574 #: lxc/network_forward.go:715 lxc/network_load_balancer.go:171 -#: lxc/network_load_balancer.go:577 lxc/network_load_balancer.go:719 +#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:724 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:860 +#: lxc/network_load_balancer.go:865 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:796 +#: lxc/network_load_balancer.go:801 msgid "" "[:] " "[]" msgstr "" #: lxc/network_forward.go:377 lxc/network_forward.go:544 -#: lxc/network_load_balancer.go:381 lxc/network_load_balancer.go:547 +#: lxc/network_load_balancer.go:386 lxc/network_load_balancer.go:552 msgid "[:] " msgstr "" -#: lxc/network_forward.go:446 lxc/network_load_balancer.go:449 +#: lxc/network_forward.go:446 lxc/network_load_balancer.go:454 msgid "[:] =..." msgstr "" -#: lxc/network_load_balancer.go:961 +#: lxc/network_load_balancer.go:966 msgid "" "[:] " "[,...]" @@ -6795,7 +6790,7 @@ msgid "" " []" msgstr "" -#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1022 +#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1027 msgid "[:] [] []" msgstr "" @@ -6846,7 +6841,7 @@ msgid "[:]" msgstr "" #: lxc/storage.go:167 lxc/storage.go:218 lxc/storage.go:412 lxc/storage.go:759 -#: lxc/storage_bucket.go:449 +#: lxc/storage_bucket.go:454 msgid "[:]" msgstr "" @@ -6854,18 +6849,18 @@ msgstr "" msgid "[:] []" msgstr "" -#: lxc/storage_bucket.go:180 lxc/storage_bucket.go:242 -#: lxc/storage_bucket.go:622 lxc/storage_bucket.go:764 +#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:247 +#: lxc/storage_bucket.go:627 lxc/storage_bucket.go:769 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:375 lxc/storage_bucket.go:691 -#: lxc/storage_bucket.go:845 lxc/storage_bucket.go:923 -#: lxc/storage_bucket.go:987 lxc/storage_bucket.go:1122 +#: lxc/storage_bucket.go:380 lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:850 lxc/storage_bucket.go:928 +#: lxc/storage_bucket.go:992 lxc/storage_bucket.go:1127 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:528 +#: lxc/storage_bucket.go:533 msgid "[:] =..." msgstr "" @@ -7009,27 +7004,27 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:686 +#: lxc/network_zone.go:691 msgid "[:]" msgstr "" -#: lxc/network_zone.go:757 lxc/network_zone.go:1056 lxc/network_zone.go:1173 +#: lxc/network_zone.go:762 lxc/network_zone.go:1061 lxc/network_zone.go:1178 msgid "[:] " msgstr "" -#: lxc/network_zone.go:809 lxc/network_zone.go:1026 +#: lxc/network_zone.go:814 lxc/network_zone.go:1031 msgid "[:] " msgstr "" -#: lxc/network_zone.go:950 +#: lxc/network_zone.go:955 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:1238 lxc/network_zone.go:1284 +#: lxc/network_zone.go:1243 lxc/network_zone.go:1289 msgid "[:] " msgstr "" -#: lxc/network_zone.go:868 +#: lxc/network_zone.go:873 msgid "[:] [key=value...]" msgstr "" @@ -7053,7 +7048,7 @@ msgstr "" msgid "[:][] [...]" msgstr "" -#: lxc/remote.go:88 +#: lxc/remote.go:89 msgid "[] " msgstr "" @@ -7061,7 +7056,7 @@ msgstr "" msgid "[[:]]" msgstr "" -#: lxc/project.go:488 lxc/remote.go:722 +#: lxc/project.go:488 lxc/remote.go:723 msgid "current" msgstr "" @@ -7324,6 +7319,23 @@ msgid "" " Create a new OVN network called bar using baz as its uplink network" msgstr "" +#: lxc/network_load_balancer.go:239 +msgid "" +"lxc network load-balancer create n1 127.0.0.1\n" +"\n" +"lxc network load-balancer create n1 127.0.0.1 < config.yaml\n" +" Create network load-balancer for network n1 with configuration from " +"config.yaml" +msgstr "" + +#: lxc/network_zone.go:273 +msgid "" +"lxc network zone create z1\n" +"\n" +"lxc network zone create z1 < config.yaml\n" +" Create network zone z1 with configuration from config.yaml" +msgstr "" + #: lxc/operation.go:195 msgid "" "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n" @@ -7394,26 +7406,36 @@ msgid "" " Restore the snapshot." msgstr "" -#: lxc/storage_bucket.go:245 +#: lxc/storage_bucket.go:84 +msgid "" +"lxc storage bucket create p1 b01\n" +"\tCreate a new storage bucket name b01 in storage pool p1\n" +"\n" +"lxc storage bucket create p1 b01 < config.yaml\n" +"\tCreate a new storage bucket name b01 in storage pool p1 using the content " +"of config.yaml" +msgstr "" + +#: lxc/storage_bucket.go:250 msgid "" "lxc storage bucket edit [:] < bucket.yaml\n" " Update a storage bucket using the content of bucket.yaml." msgstr "" -#: lxc/storage_bucket.go:990 +#: lxc/storage_bucket.go:995 msgid "" "lxc storage bucket edit [:] < key.yaml\n" " Update a storage bucket key using the content of key.yaml." msgstr "" -#: lxc/storage_bucket.go:1125 +#: lxc/storage_bucket.go:1130 msgid "" "lxc storage bucket key show default data foo\n" " Will show the properties of a bucket key called \"foo\" for a bucket " "called \"data\" in the \"default\" pool." msgstr "" -#: lxc/storage_bucket.go:625 +#: lxc/storage_bucket.go:630 msgid "" "lxc storage bucket show default data\n" " Will show the properties of a bucket called \"data\" in the \"default\" " @@ -7432,7 +7454,7 @@ msgid "" "\t\tCreate a new custom volume using backup0.tar.gz as the source." msgstr "" -#: lxc/remote.go:459 +#: lxc/remote.go:460 msgid "n" msgstr "" @@ -7444,7 +7466,7 @@ msgstr "" msgid "no" msgstr "" -#: lxc/remote.go:452 +#: lxc/remote.go:453 msgid "ok (y/n/[fingerprint])?" msgstr "" @@ -7481,7 +7503,7 @@ msgstr "" msgid "used by" msgstr "" -#: lxc/remote.go:461 +#: lxc/remote.go:462 msgid "y" msgstr "" diff --git a/po/es.po b/po/es.po index 73a5f4c578ce..a2f0cb8145bd 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-08-20 09:31+0100\n" +"POT-Creation-Date: 2024-08-30 09:27+0100\n" "PO-Revision-Date: 2023-06-16 20:55+0000\n" "Last-Translator: Francisco Serrador \n" "Language-Team: Spanish " msgstr "" -#: lxc/remote.go:825 lxc/remote.go:882 +#: lxc/remote.go:826 lxc/remote.go:883 msgid "" msgstr "" -#: lxc/remote.go:922 +#: lxc/remote.go:923 msgid " " msgstr "" -#: lxc/remote.go:752 +#: lxc/remote.go:753 msgid " " msgstr "" @@ -799,7 +799,7 @@ msgstr "ALIASES" msgid "ARCHITECTURE" msgstr "ARQUITECTURA" -#: lxc/remote.go:734 +#: lxc/remote.go:735 msgid "AUTH TYPE" msgstr "" @@ -807,15 +807,15 @@ msgstr "" msgid "AUTHENTICATION METHOD" msgstr "" -#: lxc/remote.go:100 +#: lxc/remote.go:101 msgid "Accept certificate" msgstr "Acepta certificado" -#: lxc/storage_bucket.go:852 +#: lxc/storage_bucket.go:857 msgid "Access key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:908 +#: lxc/storage_bucket.go:913 #, fuzzy, c-format msgid "Access key: %s" msgstr "Expira: %s" @@ -850,20 +850,20 @@ msgstr "" msgid "Add a group to an identity provider group" msgstr "" -#: lxc/network_zone.go:1239 +#: lxc/network_zone.go:1244 #, fuzzy msgid "Add a network zone record entry" msgstr "Perfil %s creado" -#: lxc/network_load_balancer.go:798 +#: lxc/network_load_balancer.go:803 msgid "Add backend to a load balancer" msgstr "" -#: lxc/network_load_balancer.go:797 +#: lxc/network_load_balancer.go:802 msgid "Add backends to a load balancer" msgstr "" -#: lxc/network_zone.go:1240 +#: lxc/network_zone.go:1245 msgid "Add entries to a network zone record" msgstr "" @@ -880,11 +880,11 @@ msgstr "" msgid "Add new aliases" msgstr "Aliases:" -#: lxc/remote.go:89 +#: lxc/remote.go:90 msgid "Add new remote servers" msgstr "" -#: lxc/remote.go:90 +#: lxc/remote.go:91 msgid "" "Add new remote servers\n" "\n" @@ -925,7 +925,7 @@ msgstr "" msgid "Add ports to a forward" msgstr "" -#: lxc/network_load_balancer.go:962 lxc/network_load_balancer.go:963 +#: lxc/network_load_balancer.go:967 lxc/network_load_balancer.go:968 msgid "Add ports to a load balancer" msgstr "" @@ -947,17 +947,17 @@ msgstr "" msgid "Address: %s" msgstr "Expira: %s" -#: lxc/storage_bucket.go:164 +#: lxc/storage_bucket.go:169 #, fuzzy, c-format msgid "Admin access key: %s" msgstr "Expira: %s" -#: lxc/remote.go:566 +#: lxc/remote.go:567 #, fuzzy, c-format msgid "Admin password (or token) for %s:" msgstr "Contraseña admin para %s: " -#: lxc/storage_bucket.go:165 +#: lxc/storage_bucket.go:170 #, fuzzy, c-format msgid "Admin secret key: %s" msgstr "Creado: %s" @@ -989,7 +989,7 @@ msgstr "Aliases:" msgid "All projects" msgstr "" -#: lxc/remote.go:181 +#: lxc/remote.go:182 msgid "All server addresses are unavailable" msgstr "" @@ -1013,7 +1013,7 @@ msgstr "Arquitectura: %s" msgid "Are you sure you want to %s cluster member %q? (yes/no) [default=no]: " msgstr "" -#: lxc/console.go:383 +#: lxc/console.go:388 msgid "As neither could be found, the raw SPICE socket can be found at:" msgstr "" @@ -1062,7 +1062,7 @@ msgid "" "as well as retrieve past log entries from it." msgstr "" -#: lxc/remote.go:548 +#: lxc/remote.go:549 #, c-format msgid "Authentication type '%s' not supported by server" msgstr "Tipo de autenticación %s no está soportada por el servidor" @@ -1081,11 +1081,11 @@ msgstr "" msgid "Auto update: %s" msgstr "Auto actualización: %s" -#: lxc/network_forward.go:240 lxc/network_load_balancer.go:242 +#: lxc/network_forward.go:240 lxc/network_load_balancer.go:247 msgid "Auto-allocate an IPv4 or IPv6 listen address. One of 'ipv4', 'ipv6'." msgstr "" -#: lxc/remote.go:136 +#: lxc/remote.go:137 msgid "Available projects:" msgstr "" @@ -1117,8 +1117,8 @@ msgid "Bad device override syntax, expecting ,=: %s" msgstr "" #: lxc/network.go:333 lxc/network_acl.go:382 lxc/network_forward.go:293 -#: lxc/network_load_balancer.go:296 lxc/network_peer.go:280 -#: lxc/network_zone.go:324 lxc/network_zone.go:922 lxc/storage_bucket.go:136 +#: lxc/network_load_balancer.go:301 lxc/network_peer.go:280 +#: lxc/network_zone.go:329 lxc/network_zone.go:927 lxc/storage_bucket.go:141 #, c-format msgid "Bad key/value pair: %s" msgstr "" @@ -1244,7 +1244,7 @@ msgstr "No se puede jalar un directorio sin - recursivo" msgid "Can't read from stdin: %w" msgstr "No se peude leer desde stdin: %s" -#: lxc/remote.go:861 +#: lxc/remote.go:862 msgid "Can't remove the default remote" msgstr "" @@ -1311,17 +1311,17 @@ msgstr "Cacheado: %s" msgid "Certificate add token for %s deleted" msgstr "Perfil %s eliminado" -#: lxc/remote.go:218 +#: lxc/remote.go:452 +#, fuzzy +msgid "Certificate fingerprint" +msgstr "Certificado de la huella digital: %s" + +#: lxc/remote.go:219 #, c-format msgid "" "Certificate fingerprint mismatch between certificate token and server %q" msgstr "" -#: lxc/remote.go:451 -#, c-format -msgid "Certificate fingerprint: %s" -msgstr "Certificado de la huella digital: %s" - #: lxc/network.go:893 msgid "Chassis" msgstr "" @@ -1331,7 +1331,7 @@ msgstr "" msgid "Client %s certificate add token:" msgstr "Nombre del Miembro del Cluster" -#: lxc/remote.go:603 +#: lxc/remote.go:604 #, fuzzy msgid "Client certificate now trusted by server:" msgstr "Certificado del cliente almacenado en el servidor: " @@ -1394,18 +1394,18 @@ msgstr "Perfil %s eliminado de %s" #: lxc/network_forward.go:456 lxc/network_forward.go:579 #: lxc/network_forward.go:721 lxc/network_forward.go:798 #: lxc/network_forward.go:864 lxc/network_load_balancer.go:176 -#: lxc/network_load_balancer.go:241 lxc/network_load_balancer.go:459 -#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:725 -#: lxc/network_load_balancer.go:801 lxc/network_load_balancer.go:865 -#: lxc/network_load_balancer.go:966 lxc/network_load_balancer.go:1028 +#: lxc/network_load_balancer.go:246 lxc/network_load_balancer.go:464 +#: lxc/network_load_balancer.go:587 lxc/network_load_balancer.go:730 +#: lxc/network_load_balancer.go:806 lxc/network_load_balancer.go:870 +#: lxc/network_load_balancer.go:971 lxc/network_load_balancer.go:1033 #: lxc/storage.go:99 lxc/storage.go:347 lxc/storage.go:418 lxc/storage.go:671 -#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:85 -#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:248 -#: lxc/storage_bucket.go:379 lxc/storage_bucket.go:536 -#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:695 -#: lxc/storage_bucket.go:770 lxc/storage_bucket.go:850 -#: lxc/storage_bucket.go:928 lxc/storage_bucket.go:993 -#: lxc/storage_bucket.go:1129 lxc/storage_volume.go:358 +#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:90 +#: lxc/storage_bucket.go:190 lxc/storage_bucket.go:253 +#: lxc/storage_bucket.go:384 lxc/storage_bucket.go:541 +#: lxc/storage_bucket.go:634 lxc/storage_bucket.go:700 +#: lxc/storage_bucket.go:775 lxc/storage_bucket.go:855 +#: lxc/storage_bucket.go:933 lxc/storage_bucket.go:998 +#: lxc/storage_bucket.go:1134 lxc/storage_volume.go:358 #: lxc/storage_volume.go:560 lxc/storage_volume.go:639 #: lxc/storage_volume.go:883 lxc/storage_volume.go:1097 #: lxc/storage_volume.go:1210 lxc/storage_volume.go:1678 @@ -1433,11 +1433,11 @@ msgstr "" msgid "Columns" msgstr "Columnas" -#: lxc/main.go:81 +#: lxc/main.go:82 msgid "Command line client for LXD" msgstr "Cliente de Linea de Comandos para LXD" -#: lxc/main.go:82 +#: lxc/main.go:83 msgid "" "Command line client for LXD\n" "\n" @@ -1471,19 +1471,15 @@ msgstr "Perfil para aplicar al nuevo contenedor" #: lxc/config.go:347 lxc/config.go:1277 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/network_load_balancer.go:694 lxc/network_peer.go:610 +#: lxc/network_zone.go:556 lxc/network_zone.go:1148 lxc/profile.go:538 +#: lxc/project.go:315 lxc/storage.go:310 lxc/storage_bucket.go:348 +#: lxc/storage_bucket.go:1097 lxc/storage_volume.go:1016 #: lxc/storage_volume.go:1048 #, c-format msgid "Config parsing error: %s" msgstr "" -#: lxc/console.go:140 -msgid "Console log:" -msgstr "Log de la consola:" - #: lxc/storage_volume.go:561 msgid "Content type, block or filesystem" msgstr "" @@ -1588,12 +1584,12 @@ msgstr "Expira: %s" msgid "Cores:" msgstr "Expira: %s" -#: lxc/remote.go:486 +#: lxc/remote.go:487 #, fuzzy, c-format msgid "Could not close server cert file %q: %w" msgstr "Certificado de la huella digital: %s" -#: lxc/remote.go:224 lxc/remote.go:470 +#: lxc/remote.go:225 lxc/remote.go:471 msgid "Could not create server cert dir" msgstr "" @@ -1632,12 +1628,12 @@ msgstr "Certificado de la huella digital: %s" msgid "Could not write new remote certificate for remote '%s' with error: %v" msgstr "" -#: lxc/remote.go:481 +#: lxc/remote.go:482 #, fuzzy, c-format msgid "Could not write server cert file %q: %w" msgstr "Certificado de la huella digital: %s" -#: lxc/network_zone.go:1327 +#: lxc/network_zone.go:1332 msgid "Couldn't find a matching entry" msgstr "" @@ -1693,7 +1689,7 @@ msgstr "" msgid "Create instances from images" msgstr "" -#: lxc/storage_bucket.go:846 lxc/storage_bucket.go:847 +#: lxc/storage_bucket.go:851 lxc/storage_bucket.go:852 msgid "Create key for a storage bucket" msgstr "" @@ -1727,12 +1723,12 @@ msgstr "Perfil %s creado" msgid "Create new network peering" msgstr "" -#: lxc/network_zone.go:869 lxc/network_zone.go:870 +#: lxc/network_zone.go:874 lxc/network_zone.go:875 #, fuzzy msgid "Create new network zone record" msgstr "Perfil %s creado" -#: lxc/network_zone.go:270 lxc/network_zone.go:271 +#: lxc/network_zone.go:271 lxc/network_zone.go:272 msgid "Create new network zones" msgstr "" @@ -1784,9 +1780,9 @@ msgstr "" #: 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/network_zone.go:140 lxc/network_zone.go:747 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_bucket.go:512 lxc/storage_bucket.go:832 #: lxc/storage_volume.go:1562 msgid "DESCRIPTION" msgstr "DESCRIPCIÓN" @@ -1853,7 +1849,7 @@ msgstr "" msgid "Delete instances and snapshots" msgstr "No se puede proveer el nombre del container a la lista" -#: lxc/storage_bucket.go:924 lxc/storage_bucket.go:925 +#: lxc/storage_bucket.go:929 lxc/storage_bucket.go:930 msgid "Delete key from a storage bucket" msgstr "" @@ -1865,7 +1861,7 @@ msgstr "" msgid "Delete network forwards" msgstr "" -#: lxc/network_load_balancer.go:721 lxc/network_load_balancer.go:722 +#: lxc/network_load_balancer.go:726 lxc/network_load_balancer.go:727 #, fuzzy msgid "Delete network load balancers" msgstr "Perfil %s creado" @@ -1874,12 +1870,12 @@ msgstr "Perfil %s creado" msgid "Delete network peerings" msgstr "" -#: lxc/network_zone.go:1175 lxc/network_zone.go:1176 +#: lxc/network_zone.go:1180 lxc/network_zone.go:1181 #, fuzzy msgid "Delete network zone record" msgstr "Perfil %s creado" -#: lxc/network_zone.go:583 lxc/network_zone.go:584 +#: lxc/network_zone.go:588 lxc/network_zone.go:589 #, fuzzy msgid "Delete network zones" msgstr "Perfil %s creado" @@ -1896,7 +1892,7 @@ msgstr "" msgid "Delete projects" msgstr "" -#: lxc/storage_bucket.go:182 lxc/storage_bucket.go:183 +#: lxc/storage_bucket.go:187 lxc/storage_bucket.go:188 #, fuzzy msgid "Delete storage buckets" msgstr "Perfil %s creado" @@ -1953,7 +1949,7 @@ msgstr "" #: 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/info.go:32 lxc/init.go:43 lxc/launch.go:24 lxc/list.go:48 lxc/main.go:83 #: 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 @@ -1972,22 +1968,22 @@ msgstr "" #: 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_load_balancer.go:238 lxc/network_load_balancer.go:388 +#: lxc/network_load_balancer.go:456 lxc/network_load_balancer.go:554 +#: lxc/network_load_balancer.go:584 lxc/network_load_balancer.go:727 +#: lxc/network_load_balancer.go:788 lxc/network_load_balancer.go:803 +#: lxc/network_load_balancer.go:867 lxc/network_load_balancer.go:953 +#: lxc/network_load_balancer.go:968 lxc/network_load_balancer.go:1029 #: 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/network_zone.go:29 lxc/network_zone.go:86 lxc/network_zone.go:157 +#: lxc/network_zone.go:212 lxc/network_zone.go:272 lxc/network_zone.go:359 +#: lxc/network_zone.go:439 lxc/network_zone.go:470 lxc/network_zone.go:589 +#: lxc/network_zone.go:637 lxc/network_zone.go:694 lxc/network_zone.go:764 +#: lxc/network_zone.go:816 lxc/network_zone.go:875 lxc/network_zone.go:957 +#: lxc/network_zone.go:1033 lxc/network_zone.go:1063 lxc/network_zone.go:1181 +#: lxc/network_zone.go:1230 lxc/network_zone.go:1245 lxc/network_zone.go:1291 #: 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 @@ -1996,19 +1992,19 @@ msgstr "" #: 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:631 lxc/remote.go:669 lxc/remote.go:755 lxc/remote.go:828 -#: lxc/remote.go:884 lxc/remote.go:924 lxc/rename.go:21 lxc/restore.go:24 +#: lxc/query.go:34 lxc/rebuild.go:27 lxc/remote.go:35 lxc/remote.go:91 +#: lxc/remote.go:632 lxc/remote.go:670 lxc/remote.go:756 lxc/remote.go:829 +#: lxc/remote.go:885 lxc/remote.go:925 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_bucket.go:29 lxc/storage_bucket.go:83 lxc/storage_bucket.go:188 +#: lxc/storage_bucket.go:249 lxc/storage_bucket.go:382 +#: lxc/storage_bucket.go:458 lxc/storage_bucket.go:535 +#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:698 +#: lxc/storage_bucket.go:732 lxc/storage_bucket.go:773 +#: lxc/storage_bucket.go:852 lxc/storage_bucket.go:930 +#: lxc/storage_bucket.go:994 lxc/storage_bucket.go:1129 #: 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 @@ -2147,7 +2143,7 @@ msgstr "No se puede proveer el nombre del container a la lista" msgid "Don't require user confirmation for using --force" msgstr "" -#: lxc/main.go:99 +#: lxc/main.go:100 msgid "Don't show progress information" msgstr "" @@ -2160,7 +2156,7 @@ msgstr "" msgid "Driver: %v (%v)" msgstr "" -#: lxc/network_zone.go:743 +#: lxc/network_zone.go:748 msgid "ENTRIES" msgstr "" @@ -2240,7 +2236,7 @@ msgstr "" msgid "Edit network forward configurations as YAML" msgstr "" -#: lxc/network_load_balancer.go:578 lxc/network_load_balancer.go:579 +#: lxc/network_load_balancer.go:583 lxc/network_load_balancer.go:584 #, fuzzy msgid "Edit network load balancer configurations as YAML" msgstr "Perfil %s creado" @@ -2250,12 +2246,12 @@ msgstr "Perfil %s creado" msgid "Edit network peer configurations as YAML" msgstr "Perfil %s creado" -#: lxc/network_zone.go:464 lxc/network_zone.go:465 +#: lxc/network_zone.go:469 lxc/network_zone.go:470 #, fuzzy msgid "Edit network zone configurations as YAML" msgstr "Perfil %s creado" -#: lxc/network_zone.go:1057 lxc/network_zone.go:1058 +#: lxc/network_zone.go:1062 lxc/network_zone.go:1063 #, fuzzy msgid "Edit network zone record configurations as YAML" msgstr "Perfil %s creado" @@ -2268,12 +2264,12 @@ msgstr "" msgid "Edit project configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:243 lxc/storage_bucket.go:244 +#: lxc/storage_bucket.go:248 lxc/storage_bucket.go:249 #, fuzzy msgid "Edit storage bucket configurations as YAML" msgstr "Perfil %s creado" -#: lxc/storage_bucket.go:988 lxc/storage_bucket.go:989 +#: lxc/storage_bucket.go:993 lxc/storage_bucket.go:994 msgid "Edit storage bucket key as YAML" msgstr "" @@ -2314,7 +2310,7 @@ msgid "" " for the address if not yet set." msgstr "" -#: lxc/network_zone.go:1242 +#: lxc/network_zone.go:1247 msgid "Entry TTL" msgstr "" @@ -2343,9 +2339,9 @@ msgstr "" #: lxc/cluster.go:414 lxc/config.go:624 lxc/config.go:656 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/network_load_balancer.go:527 lxc/network_peer.go:463 +#: lxc/network_zone.go:414 lxc/network_zone.go:1008 lxc/profile.go:876 +#: lxc/project.go:634 lxc/storage.go:727 lxc/storage_bucket.go:602 #: lxc/storage_volume.go:1947 lxc/storage_volume.go:1985 #, fuzzy, c-format msgid "Error setting properties: %v" @@ -2357,10 +2353,10 @@ msgid "Error unsetting properties: %v" msgstr "Error actualizando el archivo de plantilla: %s" #: 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/network_forward.go:513 lxc/network_load_balancer.go:521 +#: lxc/network_peer.go:457 lxc/network_zone.go:408 lxc/network_zone.go:1002 #: lxc/profile.go:870 lxc/project.go:628 lxc/storage.go:721 -#: lxc/storage_bucket.go:591 lxc/storage_volume.go:1941 +#: lxc/storage_bucket.go:596 lxc/storage_volume.go:1941 #: lxc/storage_volume.go:1979 #, c-format msgid "Error unsetting property: %v" @@ -2550,7 +2546,7 @@ msgstr "Nombre del Miembro del Cluster" msgid "Failed parsing SSH host key: %w" msgstr "Acepta certificado" -#: lxc/console.go:361 +#: lxc/console.go:366 #, fuzzy, c-format msgid "Failed starting command: %w" msgstr "Acepta certificado" @@ -2565,11 +2561,11 @@ msgstr "Acepta certificado" msgid "Failed to accept incoming connection: %w" msgstr "Acepta certificado" -#: lxc/remote.go:190 +#: lxc/remote.go:191 msgid "Failed to add remote" msgstr "" -#: lxc/remote.go:241 +#: lxc/remote.go:242 #, fuzzy, c-format msgid "Failed to close server cert file %q: %w" msgstr "Acepta certificado" @@ -2579,7 +2575,7 @@ msgstr "Acepta certificado" msgid "Failed to connect to cluster member: %w" msgstr "Nombre del Miembro del Cluster" -#: lxc/remote.go:231 +#: lxc/remote.go:232 #, c-format msgid "Failed to create %q: %w" msgstr "" @@ -2589,12 +2585,12 @@ msgstr "" msgid "Failed to create alias %s: %w" msgstr "Acepta certificado" -#: lxc/remote.go:256 +#: lxc/remote.go:257 #, fuzzy, c-format msgid "Failed to create certificate: %w" msgstr "Acepta certificado" -#: lxc/remote.go:263 +#: lxc/remote.go:264 #, c-format msgid "Failed to find project: %w" msgstr "" @@ -2619,7 +2615,7 @@ msgstr "Acepta certificado" msgid "Failed to walk path for %s: %s" msgstr "" -#: lxc/remote.go:236 +#: lxc/remote.go:237 #, fuzzy, c-format msgid "Failed to write server cert file %q: %w" msgstr "Acepta certificado" @@ -2628,7 +2624,7 @@ msgstr "Acepta certificado" msgid "Fast mode (same as --columns=nsacPt)" msgstr "" -#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:115 +#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:116 #: lxc/operation.go:136 msgid "Filtering isn't supported yet" msgstr "El filtrado no está soportado aún" @@ -2667,7 +2663,7 @@ msgstr "Creando el contenedor" msgid "Force the removal of running instances" msgstr "" -#: lxc/main.go:95 +#: lxc/main.go:96 msgid "Force using the local unix socket" msgstr "" @@ -2701,10 +2697,10 @@ msgstr "" #: 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/network_peer.go:84 lxc/network_zone.go:89 lxc/network_zone.go:697 #: lxc/operation.go:108 lxc/profile.go:637 lxc/project.go:412 -#: lxc/project.go:804 lxc/remote.go:673 lxc/storage.go:588 -#: lxc/storage_bucket.go:454 lxc/storage_bucket.go:769 +#: lxc/project.go:804 lxc/remote.go:674 lxc/storage.go:588 +#: lxc/storage_bucket.go:459 lxc/storage_bucket.go:774 #: lxc/storage_volume.go:1446 lxc/warning.go:93 msgid "Format (csv|json|table|yaml|compact)" msgstr "" @@ -2741,7 +2737,7 @@ msgstr "" msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)" msgstr "" -#: lxc/remote.go:737 +#: lxc/remote.go:738 msgid "GLOBAL" msgstr "" @@ -2761,7 +2757,7 @@ msgstr "" msgid "Generate manpages for all commands" msgstr "" -#: lxc/remote.go:159 lxc/remote.go:397 +#: lxc/remote.go:160 lxc/remote.go:398 msgid "Generating a client certificate. This may take a minute..." msgstr "" @@ -2795,7 +2791,7 @@ msgstr "" msgid "Get the key as a network forward property" msgstr "Perfil %s creado" -#: lxc/network_load_balancer.go:386 +#: lxc/network_load_balancer.go:391 #, fuzzy msgid "Get the key as a network load balancer property" msgstr "Nombre del contenedor es: %s" @@ -2809,12 +2805,12 @@ msgstr "Perfil %s creado" msgid "Get the key as a network property" msgstr "" -#: lxc/network_zone.go:214 +#: lxc/network_zone.go:215 #, fuzzy msgid "Get the key as a network zone property" msgstr "Perfil %s creado" -#: lxc/network_zone.go:814 +#: lxc/network_zone.go:819 #, fuzzy msgid "Get the key as a network zone record property" msgstr "Perfil %s creado" @@ -2827,7 +2823,7 @@ msgstr "" msgid "Get the key as a project property" msgstr "" -#: lxc/storage_bucket.go:380 +#: lxc/storage_bucket.go:385 #, fuzzy msgid "Get the key as a storage bucket property" msgstr "Perfil %s creado" @@ -2870,7 +2866,7 @@ msgstr "" msgid "Get values for network forward configuration keys" msgstr "Perfil %s creado" -#: lxc/network_load_balancer.go:382 lxc/network_load_balancer.go:383 +#: lxc/network_load_balancer.go:387 lxc/network_load_balancer.go:388 #, fuzzy msgid "Get values for network load balancer configuration keys" msgstr "Perfil %s creado" @@ -2880,12 +2876,12 @@ msgstr "Perfil %s creado" msgid "Get values for network peer configuration keys" msgstr "Perfil %s creado" -#: lxc/network_zone.go:210 lxc/network_zone.go:211 +#: lxc/network_zone.go:211 lxc/network_zone.go:212 #, fuzzy msgid "Get values for network zone configuration keys" msgstr "Perfil %s creado" -#: lxc/network_zone.go:810 lxc/network_zone.go:811 +#: lxc/network_zone.go:815 lxc/network_zone.go:816 #, fuzzy msgid "Get values for network zone record configuration keys" msgstr "Perfil %s creado" @@ -2898,7 +2894,7 @@ msgstr "" msgid "Get values for project configuration keys" msgstr "" -#: lxc/storage_bucket.go:376 lxc/storage_bucket.go:377 +#: lxc/storage_bucket.go:381 lxc/storage_bucket.go:382 #, fuzzy msgid "Get values for storage bucket configuration keys" msgstr "Perfil %s creado" @@ -3042,7 +3038,7 @@ msgstr "" msgid "If the snapshot name already exists, delete and create a new one" msgstr "" -#: lxc/main.go:398 +#: lxc/main.go:400 msgid "" "If this is your first time running LXD on this machine, you should also run: " "lxd init" @@ -3203,7 +3199,7 @@ msgstr "Nombre del contenedor es: %s" msgid "Instance type" msgstr "" -#: lxc/remote.go:349 +#: lxc/remote.go:350 #, c-format msgid "Invalid URL scheme \"%s\" in \"%s\"" msgstr "" @@ -3276,7 +3272,7 @@ msgstr "" msgid "Invalid new snapshot name, parent volume must be the same as source" msgstr "" -#: lxc/main.go:498 +#: lxc/main.go:502 msgid "Invalid number of arguments" msgstr "" @@ -3285,7 +3281,7 @@ msgstr "" msgid "Invalid path %s" msgstr "" -#: lxc/remote.go:338 +#: lxc/remote.go:339 #, c-format msgid "Invalid protocol: %s" msgstr "" @@ -3334,7 +3330,7 @@ msgstr "" #: lxc/list.go:597 lxc/network.go:1059 lxc/network_forward.go:155 #: lxc/network_load_balancer.go:157 lxc/operation.go:177 -#: lxc/storage_bucket.go:511 lxc/storage_volume.go:1569 lxc/warning.go:220 +#: lxc/storage_bucket.go:516 lxc/storage_volume.go:1569 lxc/warning.go:220 msgid "LOCATION" msgstr "" @@ -3342,7 +3338,7 @@ msgstr "" msgid "LXD - Command line client" msgstr "" -#: lxc/console.go:382 +#: lxc/console.go:387 msgid "LXD automatically uses either spicy or remote-viewer when present." msgstr "" @@ -3439,16 +3435,16 @@ msgstr "Nombre del contenedor es: %s" msgid "List available network peers" msgstr "" -#: lxc/network_zone.go:85 +#: lxc/network_zone.go:86 msgid "List available network zone" msgstr "" -#: lxc/network_zone.go:688 lxc/network_zone.go:689 +#: lxc/network_zone.go:693 lxc/network_zone.go:694 #, fuzzy msgid "List available network zone records" msgstr "Nombre del contenedor es: %s" -#: lxc/network_zone.go:84 +#: lxc/network_zone.go:85 msgid "List available network zoneS" msgstr "" @@ -3641,11 +3637,11 @@ msgstr "" msgid "List projects" msgstr "" -#: lxc/storage_bucket.go:766 lxc/storage_bucket.go:768 +#: lxc/storage_bucket.go:771 lxc/storage_bucket.go:773 msgid "List storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:451 lxc/storage_bucket.go:453 +#: lxc/storage_bucket.go:456 lxc/storage_bucket.go:458 #, fuzzy msgid "List storage buckets" msgstr "Aliases:" @@ -3674,7 +3670,7 @@ msgid "" " U - Current disk usage" msgstr "" -#: lxc/remote.go:668 lxc/remote.go:669 +#: lxc/remote.go:669 lxc/remote.go:670 msgid "List the available remotes" msgstr "" @@ -3906,12 +3902,12 @@ msgstr "" msgid "Manage network forwards" msgstr "" -#: lxc/network_load_balancer.go:782 lxc/network_load_balancer.go:783 +#: lxc/network_load_balancer.go:787 lxc/network_load_balancer.go:788 #, fuzzy msgid "Manage network load balancer backends" msgstr "Nombre del contenedor es: %s" -#: lxc/network_load_balancer.go:947 lxc/network_load_balancer.go:948 +#: lxc/network_load_balancer.go:952 lxc/network_load_balancer.go:953 #, fuzzy msgid "Manage network load balancer ports" msgstr "Nombre del contenedor es: %s" @@ -3925,17 +3921,17 @@ msgstr "Nombre del contenedor es: %s" msgid "Manage network peerings" msgstr "" -#: lxc/network_zone.go:1224 lxc/network_zone.go:1225 +#: lxc/network_zone.go:1229 lxc/network_zone.go:1230 #, fuzzy msgid "Manage network zone record entries" msgstr "Nombre del contenedor es: %s" -#: lxc/network_zone.go:631 lxc/network_zone.go:632 +#: lxc/network_zone.go:636 lxc/network_zone.go:637 #, fuzzy msgid "Manage network zone records" msgstr "Nombre del contenedor es: %s" -#: lxc/network_zone.go:27 lxc/network_zone.go:28 +#: lxc/network_zone.go:28 lxc/network_zone.go:29 #, fuzzy msgid "Manage network zones" msgstr "Nombre del contenedor es: %s" @@ -3953,12 +3949,12 @@ msgstr "" msgid "Manage projects" msgstr "" -#: lxc/storage_bucket.go:726 +#: lxc/storage_bucket.go:731 #, fuzzy msgid "Manage storage bucket keys" msgstr "Nombre del contenedor es: %s" -#: lxc/storage_bucket.go:727 +#: lxc/storage_bucket.go:732 msgid "Manage storage bucket keys." msgstr "" @@ -3988,7 +3984,7 @@ msgid "" "\"custom\" (user created) volumes." msgstr "" -#: lxc/remote.go:33 lxc/remote.go:34 +#: lxc/remote.go:34 lxc/remote.go:35 msgid "Manage the list of remote servers" msgstr "" @@ -4071,12 +4067,12 @@ msgid "" "Minimum level for log messages (only available when using pretty format)" msgstr "" -#: lxc/storage_bucket.go:111 lxc/storage_bucket.go:211 -#: lxc/storage_bucket.go:287 lxc/storage_bucket.go:406 -#: lxc/storage_bucket.go:563 lxc/storage_bucket.go:655 -#: lxc/storage_bucket.go:797 lxc/storage_bucket.go:878 -#: lxc/storage_bucket.go:953 lxc/storage_bucket.go:1032 -#: lxc/storage_bucket.go:1155 +#: lxc/storage_bucket.go:116 lxc/storage_bucket.go:216 +#: lxc/storage_bucket.go:292 lxc/storage_bucket.go:411 +#: lxc/storage_bucket.go:568 lxc/storage_bucket.go:660 +#: lxc/storage_bucket.go:802 lxc/storage_bucket.go:883 +#: lxc/storage_bucket.go:958 lxc/storage_bucket.go:1037 +#: lxc/storage_bucket.go:1160 #, fuzzy msgid "Missing bucket name" msgstr "Nombre del contenedor es: %s" @@ -4129,8 +4125,8 @@ msgstr "Nombre del Miembro del Cluster" msgid "Missing instance name" msgstr "Nombre del contenedor es: %s" -#: lxc/storage_bucket.go:882 lxc/storage_bucket.go:957 -#: lxc/storage_bucket.go:1036 lxc/storage_bucket.go:1159 +#: lxc/storage_bucket.go:887 lxc/storage_bucket.go:962 +#: lxc/storage_bucket.go:1041 lxc/storage_bucket.go:1164 #, fuzzy msgid "Missing key name" msgstr "Nombre del contenedor es: %s" @@ -4139,10 +4135,10 @@ msgstr "Nombre del contenedor es: %s" #: lxc/network_forward.go:481 lxc/network_forward.go:627 #: lxc/network_forward.go:746 lxc/network_forward.go:823 #: lxc/network_forward.go:889 lxc/network_load_balancer.go:201 -#: lxc/network_load_balancer.go:411 lxc/network_load_balancer.go:484 -#: lxc/network_load_balancer.go:630 lxc/network_load_balancer.go:750 -#: lxc/network_load_balancer.go:826 lxc/network_load_balancer.go:890 -#: lxc/network_load_balancer.go:991 lxc/network_load_balancer.go:1053 +#: lxc/network_load_balancer.go:416 lxc/network_load_balancer.go:489 +#: lxc/network_load_balancer.go:635 lxc/network_load_balancer.go:755 +#: lxc/network_load_balancer.go:831 lxc/network_load_balancer.go:895 +#: lxc/network_load_balancer.go:996 lxc/network_load_balancer.go:1058 #, fuzzy msgid "Missing listen address" msgstr "Nombre del contenedor es: %s" @@ -4169,27 +4165,27 @@ msgstr "Nombre del contenedor es: %s" #: lxc/network_forward.go:477 lxc/network_forward.go:623 #: lxc/network_forward.go:742 lxc/network_forward.go:819 #: lxc/network_forward.go:885 lxc/network_load_balancer.go:123 -#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:261 -#: lxc/network_load_balancer.go:407 lxc/network_load_balancer.go:480 -#: lxc/network_load_balancer.go:626 lxc/network_load_balancer.go:746 -#: lxc/network_load_balancer.go:822 lxc/network_load_balancer.go:886 -#: lxc/network_load_balancer.go:987 lxc/network_load_balancer.go:1049 +#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:266 +#: lxc/network_load_balancer.go:412 lxc/network_load_balancer.go:485 +#: lxc/network_load_balancer.go:631 lxc/network_load_balancer.go:751 +#: lxc/network_load_balancer.go:827 lxc/network_load_balancer.go:891 +#: lxc/network_load_balancer.go:992 lxc/network_load_balancer.go:1054 #: lxc/network_peer.go:110 lxc/network_peer.go:180 lxc/network_peer.go:237 #: lxc/network_peer.go:355 lxc/network_peer.go:426 lxc/network_peer.go:556 #: lxc/network_peer.go:665 msgid "Missing network name" msgstr "" -#: lxc/network_zone.go:178 lxc/network_zone.go:234 lxc/network_zone.go:294 -#: lxc/network_zone.go:382 lxc/network_zone.go:503 lxc/network_zone.go:606 -#: lxc/network_zone.go:712 lxc/network_zone.go:780 lxc/network_zone.go:892 -#: lxc/network_zone.go:976 lxc/network_zone.go:1197 lxc/network_zone.go:1262 -#: lxc/network_zone.go:1307 +#: lxc/network_zone.go:179 lxc/network_zone.go:235 lxc/network_zone.go:299 +#: lxc/network_zone.go:387 lxc/network_zone.go:508 lxc/network_zone.go:611 +#: lxc/network_zone.go:717 lxc/network_zone.go:785 lxc/network_zone.go:897 +#: lxc/network_zone.go:981 lxc/network_zone.go:1202 lxc/network_zone.go:1267 +#: lxc/network_zone.go:1312 #, fuzzy msgid "Missing network zone name" msgstr "Nombre del contenedor es: %s" -#: lxc/network_zone.go:833 lxc/network_zone.go:1095 +#: lxc/network_zone.go:838 lxc/network_zone.go:1100 #, fuzzy msgid "Missing network zone record name" msgstr "Nombre del contenedor es: %s" @@ -4201,13 +4197,13 @@ msgid "Missing peer name" msgstr "Nombre del contenedor es: %s" #: lxc/storage.go:194 lxc/storage.go:264 lxc/storage.go:370 lxc/storage.go:440 -#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:107 -#: lxc/storage_bucket.go:207 lxc/storage_bucket.go:283 -#: lxc/storage_bucket.go:402 lxc/storage_bucket.go:477 -#: lxc/storage_bucket.go:559 lxc/storage_bucket.go:651 -#: lxc/storage_bucket.go:793 lxc/storage_bucket.go:874 -#: lxc/storage_bucket.go:949 lxc/storage_bucket.go:1028 -#: lxc/storage_bucket.go:1151 lxc/storage_volume.go:189 +#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:112 +#: lxc/storage_bucket.go:212 lxc/storage_bucket.go:288 +#: lxc/storage_bucket.go:407 lxc/storage_bucket.go:482 +#: lxc/storage_bucket.go:564 lxc/storage_bucket.go:656 +#: lxc/storage_bucket.go:798 lxc/storage_bucket.go:879 +#: lxc/storage_bucket.go:954 lxc/storage_bucket.go:1033 +#: lxc/storage_bucket.go:1156 lxc/storage_volume.go:189 #: lxc/storage_volume.go:287 lxc/storage_volume.go:583 #: lxc/storage_volume.go:660 lxc/storage_volume.go:735 #: lxc/storage_volume.go:817 lxc/storage_volume.go:919 @@ -4332,7 +4328,7 @@ msgstr "" msgid "Moving the storage volume: %s" msgstr "" -#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1097 +#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1102 msgid "Multiple ports match. Use --force to remove them all" msgstr "" @@ -4351,10 +4347,10 @@ 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:677 lxc/project.go:498 -#: lxc/remote.go:731 lxc/storage.go:638 lxc/storage_bucket.go:506 -#: lxc/storage_bucket.go:826 lxc/storage_volume.go:1561 +#: lxc/network_acl.go:147 lxc/network_peer.go:139 lxc/network_zone.go:139 +#: lxc/network_zone.go:746 lxc/profile.go:677 lxc/project.go:498 +#: lxc/remote.go:732 lxc/storage.go:638 lxc/storage_bucket.go:511 +#: lxc/storage_bucket.go:831 lxc/storage_volume.go:1561 msgid "NAME" msgstr "" @@ -4380,7 +4376,7 @@ msgstr "" #: lxc/network.go:957 lxc/operation.go:154 lxc/project.go:456 #: lxc/project.go:461 lxc/project.go:466 lxc/project.go:471 lxc/project.go:476 -#: lxc/project.go:481 lxc/remote.go:691 lxc/remote.go:696 lxc/remote.go:701 +#: lxc/project.go:481 lxc/remote.go:692 lxc/remote.go:697 lxc/remote.go:702 msgid "NO" msgstr "" @@ -4407,7 +4403,7 @@ msgstr "" msgid "Name" msgstr "" -#: lxc/remote.go:141 +#: lxc/remote.go:142 msgid "Name of the project to use for this remote:" msgstr "" @@ -4456,12 +4452,12 @@ msgstr "Perfil %s eliminado" msgid "Network ACL %s renamed to %s" msgstr "Perfil %s renombrado a %s" -#: lxc/network_zone.go:336 +#: lxc/network_zone.go:341 #, fuzzy, c-format msgid "Network Zone %s created" msgstr "Perfil %s creado" -#: lxc/network_zone.go:616 +#: lxc/network_zone.go:621 #, fuzzy, c-format msgid "Network Zone %s deleted" msgstr "Perfil %s eliminado" @@ -4476,12 +4472,12 @@ msgstr "Perfil %s creado" msgid "Network forward %s deleted" msgstr "Perfil %s eliminado" -#: lxc/network_load_balancer.go:365 +#: lxc/network_load_balancer.go:370 #, fuzzy, c-format msgid "Network load balancer %s created" msgstr "Perfil %s creado" -#: lxc/network_load_balancer.go:767 +#: lxc/network_load_balancer.go:772 #, fuzzy, c-format msgid "Network load balancer %s deleted" msgstr "Perfil %s eliminado" @@ -4519,12 +4515,12 @@ msgstr "" msgid "Network usage:" msgstr "" -#: lxc/network_zone.go:934 +#: lxc/network_zone.go:939 #, fuzzy, c-format msgid "Network zone record %s created" msgstr "Perfil %s creado" -#: lxc/network_zone.go:1207 +#: lxc/network_zone.go:1212 #, fuzzy, c-format msgid "Network zone record %s deleted" msgstr "Perfil %s eliminado" @@ -4559,11 +4555,11 @@ msgstr "" msgid "No device found for this storage volume" msgstr "" -#: lxc/network_load_balancer.go:921 +#: lxc/network_load_balancer.go:926 msgid "No matching backend found" msgstr "" -#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1108 +#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1113 msgid "No matching port(s) found" msgstr "" @@ -4609,7 +4605,7 @@ msgstr "" msgid "Only \"custom\" volumes can be snapshotted" msgstr "" -#: lxc/remote.go:332 +#: lxc/remote.go:333 msgid "Only https URLs are supported for simplestreams" msgstr "" @@ -4634,7 +4630,7 @@ msgstr "" msgid "Optimized Storage" msgstr "" -#: lxc/main.go:96 +#: lxc/main.go:97 msgid "Override the source project" msgstr "" @@ -4680,11 +4676,11 @@ msgstr "" msgid "PROJECT" msgstr "" -#: lxc/remote.go:733 +#: lxc/remote.go:734 msgid "PROTOCOL" msgstr "" -#: lxc/image.go:1073 lxc/remote.go:735 +#: lxc/image.go:1073 lxc/remote.go:736 msgid "PUBLIC" msgstr "" @@ -4700,7 +4696,7 @@ msgstr "" msgid "Partitions:" msgstr "" -#: lxc/main.go:361 +#: lxc/main.go:363 #, fuzzy, c-format msgid "Password for %s: " msgstr "Contraseña admin para %s:" @@ -4713,7 +4709,7 @@ msgstr "" msgid "Perform an incremental copy" msgstr "" -#: lxc/remote.go:182 +#: lxc/remote.go:183 msgid "Please provide an alternate server address (empty to abort):" msgstr "" @@ -4726,7 +4722,7 @@ msgstr "" msgid "Please provide cluster member name: " msgstr "Nombre del Miembro del Cluster" -#: lxc/remote.go:462 +#: lxc/remote.go:463 msgid "Please type 'y', 'n' or the fingerprint:" msgstr "" @@ -4748,10 +4744,10 @@ msgstr "" #: lxc/config.go:1278 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/network_load_balancer.go:695 lxc/network_peer.go:611 +#: lxc/network_zone.go:557 lxc/network_zone.go:1149 lxc/profile.go:539 +#: lxc/project.go:316 lxc/storage.go:311 lxc/storage_bucket.go:349 +#: lxc/storage_bucket.go:1098 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 "" @@ -4760,7 +4756,7 @@ msgstr "" msgid "Pretty rendering (short for --format=pretty)" msgstr "" -#: lxc/main.go:94 +#: lxc/main.go:95 msgid "Print help" msgstr "" @@ -4768,7 +4764,7 @@ msgstr "" msgid "Print the raw response" msgstr "" -#: lxc/main.go:93 +#: lxc/main.go:94 msgid "Print version number" msgstr "" @@ -4861,7 +4857,7 @@ msgstr "" msgid "Project %s renamed to %s" msgstr "" -#: lxc/remote.go:106 +#: lxc/remote.go:107 msgid "Project to use for the remote" msgstr "" @@ -4959,7 +4955,7 @@ msgid "" "pool \"default\"." msgstr "" -#: lxc/remote.go:105 +#: lxc/remote.go:106 msgid "Public image server" msgstr "" @@ -5007,7 +5003,7 @@ msgstr "" msgid "RESOURCE" msgstr "" -#: lxc/storage_bucket.go:828 +#: lxc/storage_bucket.go:833 msgid "ROLE" msgstr "" @@ -5052,45 +5048,45 @@ msgstr "No se puede proveer el nombre del container a la lista" msgid "Refreshing the image: %s" msgstr "Refrescando la imagen: %s" -#: lxc/remote.go:785 +#: lxc/remote.go:786 #, c-format msgid "Remote %s already exists" msgstr "" -#: lxc/project.go:769 lxc/remote.go:776 lxc/remote.go:849 lxc/remote.go:905 -#: lxc/remote.go:945 +#: lxc/project.go:769 lxc/remote.go:777 lxc/remote.go:850 lxc/remote.go:906 +#: lxc/remote.go:946 #, c-format msgid "Remote %s doesn't exist" msgstr "" -#: lxc/remote.go:301 +#: lxc/remote.go:302 #, c-format msgid "Remote %s exists as <%s>" msgstr "" -#: lxc/remote.go:857 +#: lxc/remote.go:858 #, c-format msgid "Remote %s is global and cannot be removed" msgstr "" -#: lxc/remote.go:780 lxc/remote.go:853 lxc/remote.go:949 +#: lxc/remote.go:781 lxc/remote.go:854 lxc/remote.go:950 #, c-format msgid "Remote %s is static and cannot be modified" msgstr "" -#: lxc/remote.go:290 +#: lxc/remote.go:291 msgid "Remote address must not be empty" msgstr "" -#: lxc/remote.go:101 +#: lxc/remote.go:102 msgid "Remote admin password" msgstr "" -#: lxc/remote.go:295 +#: lxc/remote.go:296 msgid "Remote names may not contain colons" msgstr "" -#: lxc/remote.go:102 +#: lxc/remote.go:103 msgid "Remote trust token" msgstr "" @@ -5117,7 +5113,7 @@ msgstr "" msgid "Remove a member from the cluster" msgstr "" -#: lxc/network_zone.go:1285 +#: lxc/network_zone.go:1290 #, fuzzy msgid "Remove a network zone record entry" msgstr "Perfil %s creado" @@ -5126,7 +5122,7 @@ msgstr "Perfil %s creado" msgid "Remove aliases" msgstr "" -#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1025 +#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1030 msgid "Remove all ports that match" msgstr "" @@ -5134,17 +5130,17 @@ msgstr "" msgid "Remove all rules that match" msgstr "" -#: lxc/network_load_balancer.go:862 +#: lxc/network_load_balancer.go:867 #, fuzzy msgid "Remove backend from a load balancer" msgstr "Nombre del Miembro del Cluster" -#: lxc/network_load_balancer.go:861 +#: lxc/network_load_balancer.go:866 #, fuzzy msgid "Remove backends from a load balancer" msgstr "Nombre del Miembro del Cluster" -#: lxc/network_zone.go:1286 +#: lxc/network_zone.go:1291 msgid "Remove entries from a network zone record" msgstr "" @@ -5168,7 +5164,7 @@ msgstr "" msgid "Remove ports from a forward" msgstr "" -#: lxc/network_load_balancer.go:1023 lxc/network_load_balancer.go:1024 +#: lxc/network_load_balancer.go:1028 lxc/network_load_balancer.go:1029 #, fuzzy msgid "Remove ports from a load balancer" msgstr "Nombre del Miembro del Cluster" @@ -5177,7 +5173,7 @@ msgstr "Nombre del Miembro del Cluster" msgid "Remove profiles from instances" msgstr "" -#: lxc/remote.go:827 lxc/remote.go:828 +#: lxc/remote.go:828 lxc/remote.go:829 msgid "Remove remotes" msgstr "" @@ -5236,7 +5232,7 @@ msgstr "" msgid "Rename projects" msgstr "" -#: lxc/remote.go:754 lxc/remote.go:755 +#: lxc/remote.go:755 lxc/remote.go:756 msgid "Rename remotes" msgstr "" @@ -5317,7 +5313,7 @@ msgid "Restrict the certificate to one or more projects" msgstr "" #: lxc/console.go:44 -msgid "Retrieve the instance's console log" +msgid "Retrieve the container's console log" msgstr "" #: lxc/init.go:347 @@ -5335,7 +5331,7 @@ msgstr "Nombre del Miembro del Cluster" msgid "Revoke cluster member join token" msgstr "Nombre del Miembro del Cluster" -#: lxc/storage_bucket.go:851 +#: lxc/storage_bucket.go:856 msgid "Role (admin or read-only)" msgstr "" @@ -5387,7 +5383,7 @@ msgstr "" msgid "STATE" msgstr "" -#: lxc/remote.go:736 +#: lxc/remote.go:737 msgid "STATIC" msgstr "" @@ -5411,11 +5407,11 @@ msgstr "" msgid "STP" msgstr "" -#: lxc/storage_bucket.go:853 +#: lxc/storage_bucket.go:858 msgid "Secret key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:909 +#: lxc/storage_bucket.go:914 #, fuzzy, c-format msgid "Secret key: %s" msgstr "Creado: %s" @@ -5424,19 +5420,19 @@ msgstr "Creado: %s" msgid "Send a raw query to LXD" msgstr "" -#: lxc/remote.go:104 +#: lxc/remote.go:105 msgid "Server authentication type (tls or oidc)" msgstr "" -#: lxc/remote.go:460 +#: lxc/remote.go:461 msgid "Server certificate NACKed by user" msgstr "" -#: lxc/remote.go:599 +#: lxc/remote.go:600 msgid "Server doesn't trust us after authentication" msgstr "" -#: lxc/remote.go:103 +#: lxc/remote.go:104 msgid "Server protocol (lxd or simplestreams)" msgstr "" @@ -5538,12 +5534,12 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_load_balancer.go:450 +#: lxc/network_load_balancer.go:455 #, fuzzy msgid "Set network load balancer keys" msgstr "Perfil %s creado" -#: lxc/network_load_balancer.go:451 +#: lxc/network_load_balancer.go:456 msgid "" "Set network load balancer keys\n" "\n" @@ -5566,12 +5562,12 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:353 +#: lxc/network_zone.go:358 #, fuzzy msgid "Set network zone configuration keys" msgstr "Perfil %s creado" -#: lxc/network_zone.go:354 +#: lxc/network_zone.go:359 msgid "" "Set network zone configuration keys\n" "\n" @@ -5580,7 +5576,7 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:951 lxc/network_zone.go:952 +#: lxc/network_zone.go:956 lxc/network_zone.go:957 #, fuzzy msgid "Set network zone record configuration keys" msgstr "Perfil %s creado" @@ -5611,12 +5607,12 @@ msgid "" " lxc project set [:] " msgstr "" -#: lxc/storage_bucket.go:529 +#: lxc/storage_bucket.go:534 #, fuzzy msgid "Set storage bucket configuration keys" msgstr "Perfil %s creado" -#: lxc/storage_bucket.go:530 +#: lxc/storage_bucket.go:535 msgid "" "Set storage bucket configuration keys\n" "\n" @@ -5651,7 +5647,7 @@ msgid "" " lxc storage volume set [:] [/] " msgstr "" -#: lxc/remote.go:923 lxc/remote.go:924 +#: lxc/remote.go:924 lxc/remote.go:925 msgid "Set the URL for the remote" msgstr "" @@ -5680,7 +5676,7 @@ msgstr "" msgid "Set the key as a network forward property" msgstr "Perfil %s creado" -#: lxc/network_load_balancer.go:458 +#: lxc/network_load_balancer.go:463 #, fuzzy msgid "Set the key as a network load balancer property" msgstr "Perfil %s creado" @@ -5694,12 +5690,12 @@ msgstr "Perfil %s creado" msgid "Set the key as a network property" msgstr "" -#: lxc/network_zone.go:361 +#: lxc/network_zone.go:366 #, fuzzy msgid "Set the key as a network zone property" msgstr "Perfil %s creado" -#: lxc/network_zone.go:957 +#: lxc/network_zone.go:962 #, fuzzy msgid "Set the key as a network zone record property" msgstr "Perfil %s creado" @@ -5712,7 +5708,7 @@ msgstr "" msgid "Set the key as a project property" msgstr "" -#: lxc/storage_bucket.go:537 +#: lxc/storage_bucket.go:542 #, fuzzy msgid "Set the key as a storage bucket property" msgstr "Nombre del contenedor es: %s" @@ -5733,11 +5729,11 @@ msgstr "" msgid "Setup SSH SFTP listener on address:port instead of mounting" msgstr "" -#: lxc/main.go:97 +#: lxc/main.go:98 msgid "Show all debug messages" msgstr "" -#: lxc/main.go:98 +#: lxc/main.go:99 msgid "Show all information messages" msgstr "" @@ -5809,7 +5805,7 @@ msgstr "" msgid "Show instance or server information" msgstr "" -#: lxc/main.go:271 lxc/main.go:272 +#: lxc/main.go:272 lxc/main.go:273 msgid "Show less common commands" msgstr "" @@ -5844,17 +5840,17 @@ msgstr "Perfil %s creado" msgid "Show network peer configurations" msgstr "Perfil %s creado" -#: lxc/network_zone.go:155 lxc/network_zone.go:156 +#: lxc/network_zone.go:156 lxc/network_zone.go:157 #, fuzzy msgid "Show network zone configurations" msgstr "Perfil %s creado" -#: lxc/network_zone.go:758 +#: lxc/network_zone.go:763 #, fuzzy msgid "Show network zone record configuration" msgstr "Perfil %s creado" -#: lxc/network_zone.go:759 +#: lxc/network_zone.go:764 #, fuzzy msgid "Show network zone record configurations" msgstr "Perfil %s creado" @@ -5867,12 +5863,12 @@ msgstr "" msgid "Show project options" msgstr "" -#: lxc/storage_bucket.go:623 lxc/storage_bucket.go:624 +#: lxc/storage_bucket.go:628 lxc/storage_bucket.go:629 #, fuzzy msgid "Show storage bucket configurations" msgstr "Perfil %s creado" -#: lxc/storage_bucket.go:1123 lxc/storage_bucket.go:1124 +#: lxc/storage_bucket.go:1128 lxc/storage_bucket.go:1129 #, fuzzy msgid "Show storage bucket key configurations" msgstr "Perfil %s creado" @@ -5899,7 +5895,7 @@ msgid "" "that are granted via identity provider group mappings. \n" msgstr "" -#: lxc/remote.go:630 lxc/remote.go:631 +#: lxc/remote.go:631 lxc/remote.go:632 msgid "Show the default remote" msgstr "" @@ -6025,22 +6021,22 @@ msgstr "" msgid "Stopping the instance failed: %s" msgstr "Copiando la imagen: %s" -#: lxc/storage_bucket.go:161 +#: lxc/storage_bucket.go:166 #, fuzzy, c-format msgid "Storage bucket %s created" msgstr "Perfil %s creado" -#: lxc/storage_bucket.go:228 +#: lxc/storage_bucket.go:233 #, fuzzy, c-format msgid "Storage bucket %s deleted" msgstr "Perfil %s eliminado" -#: lxc/storage_bucket.go:907 +#: lxc/storage_bucket.go:912 #, c-format msgid "Storage bucket key %s added" msgstr "" -#: lxc/storage_bucket.go:973 +#: lxc/storage_bucket.go:978 #, c-format msgid "Storage bucket key %s removed" msgstr "" @@ -6113,7 +6109,7 @@ msgstr "" msgid "Switch the current project" msgstr "" -#: lxc/remote.go:883 lxc/remote.go:884 +#: lxc/remote.go:884 lxc/remote.go:885 msgid "Switch the default remote" msgstr "" @@ -6230,7 +6226,7 @@ msgstr "Nombre del Miembro del Cluster" msgid "The property %q does not exist on the instance snapshot %s/%s: %v" msgstr "Nombre del Miembro del Cluster" -#: lxc/network_load_balancer.go:424 +#: lxc/network_load_balancer.go:429 #, fuzzy, c-format msgid "The property %q does not exist on the load balancer %q: %v" msgstr "Nombre del Miembro del Cluster" @@ -6255,12 +6251,12 @@ msgstr "Nombre del Miembro del Cluster" msgid "The property %q does not exist on the network peer %q: %v" msgstr "Nombre del Miembro del Cluster" -#: lxc/network_zone.go:246 +#: lxc/network_zone.go:247 #, fuzzy, c-format msgid "The property %q does not exist on the network zone %q: %v" msgstr "Nombre del Miembro del Cluster" -#: lxc/network_zone.go:845 +#: lxc/network_zone.go:850 #, fuzzy, c-format msgid "The property %q does not exist on the network zone record %q: %v" msgstr "Nombre del Miembro del Cluster" @@ -6275,7 +6271,7 @@ msgstr "Nombre del Miembro del Cluster" msgid "The property %q does not exist on the project %q: %v" msgstr "Nombre del Miembro del Cluster" -#: lxc/storage_bucket.go:426 +#: lxc/storage_bucket.go:431 #, fuzzy, c-format msgid "The property %q does not exist on the storage bucket %q: %v" msgstr "Nombre del Miembro del Cluster" @@ -6331,7 +6327,7 @@ msgstr "" msgid "This LXD server is not available on the network" msgstr "El directorio importado no está disponible en esta plataforma" -#: lxc/main.go:293 +#: lxc/main.go:294 msgid "" "This client hasn't been configured to use a remote LXD server yet.\n" "As your platform can't run native Linux instances, you must connect to a " @@ -6363,11 +6359,11 @@ msgstr "" msgid "To create a new network, use: lxc network create" msgstr "" -#: lxc/console.go:210 +#: lxc/console.go:215 msgid "To detach from the console, press: +a q" msgstr "" -#: lxc/main.go:403 +#: lxc/main.go:406 msgid "" "To start your first container, try: lxc launch ubuntu:24.04\n" "Or for a virtual machine: lxc launch ubuntu:24.04 --vm" @@ -6467,7 +6463,7 @@ msgstr "" msgid "UPLOAD DATE" msgstr "" -#: lxc/cluster.go:184 lxc/remote.go:732 +#: lxc/cluster.go:184 lxc/remote.go:733 msgid "URL" msgstr "" @@ -6476,7 +6472,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:679 lxc/project.go:506 +#: lxc/network_zone.go:141 lxc/profile.go:679 lxc/project.go:506 #: lxc/storage.go:647 lxc/storage_volume.go:1564 msgid "USED BY" msgstr "" @@ -6495,7 +6491,7 @@ msgstr "" msgid "Unable to create a temporary file: %v" msgstr "" -#: lxc/remote.go:213 lxc/remote.go:247 +#: lxc/remote.go:214 lxc/remote.go:248 msgid "Unavailable remote server" msgstr "" @@ -6515,7 +6511,7 @@ msgstr "" msgid "Unknown column shorthand char '%c' in '%s'" msgstr "" -#: lxc/console.go:159 +#: lxc/console.go:164 #, c-format msgid "Unknown console type %q" msgstr "" @@ -6579,12 +6575,12 @@ msgstr "Perfil %s creado" msgid "Unset network forward keys" msgstr "Perfil %s creado" -#: lxc/network_load_balancer.go:548 +#: lxc/network_load_balancer.go:553 #, fuzzy msgid "Unset network load balancer configuration keys" msgstr "Perfil %s creado" -#: lxc/network_load_balancer.go:549 +#: lxc/network_load_balancer.go:554 #, fuzzy msgid "Unset network load balancer keys" msgstr "Perfil %s creado" @@ -6599,12 +6595,12 @@ msgstr "Perfil %s creado" msgid "Unset network peer keys" msgstr "Perfil %s creado" -#: lxc/network_zone.go:433 lxc/network_zone.go:434 +#: lxc/network_zone.go:438 lxc/network_zone.go:439 #, fuzzy msgid "Unset network zone configuration keys" msgstr "Perfil %s creado" -#: lxc/network_zone.go:1027 lxc/network_zone.go:1028 +#: lxc/network_zone.go:1032 lxc/network_zone.go:1033 #, fuzzy msgid "Unset network zone record configuration keys" msgstr "Perfil %s creado" @@ -6617,7 +6613,7 @@ msgstr "" msgid "Unset project configuration keys" msgstr "" -#: lxc/storage_bucket.go:692 lxc/storage_bucket.go:693 +#: lxc/storage_bucket.go:697 lxc/storage_bucket.go:698 #, fuzzy msgid "Unset storage bucket configuration keys" msgstr "Perfil %s creado" @@ -6643,7 +6639,7 @@ msgstr "" msgid "Unset the key as a network forward property" msgstr "Perfil %s creado" -#: lxc/network_load_balancer.go:552 +#: lxc/network_load_balancer.go:557 #, fuzzy msgid "Unset the key as a network load balancer property" msgstr "Perfil %s creado" @@ -6658,12 +6654,12 @@ msgstr "Perfil %s creado" msgid "Unset the key as a network property" msgstr "Perfil %s creado" -#: lxc/network_zone.go:437 +#: lxc/network_zone.go:442 #, fuzzy msgid "Unset the key as a network zone property" msgstr "Perfil %s creado" -#: lxc/network_zone.go:1031 +#: lxc/network_zone.go:1036 #, fuzzy msgid "Unset the key as a network zone record property" msgstr "Perfil %s creado" @@ -6676,7 +6672,7 @@ msgstr "" msgid "Unset the key as a project property" msgstr "" -#: lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:701 #, fuzzy msgid "Unset the key as a storage bucket property" msgstr "Perfil %s creado" @@ -6740,7 +6736,7 @@ msgid "" "Use storage driver optimized format (can only be restored on a similar pool)" msgstr "" -#: lxc/main.go:100 +#: lxc/main.go:101 msgid "Use with help or --help to view sub-commands" msgstr "" @@ -6837,7 +6833,7 @@ msgstr "" #: lxc/network.go:959 lxc/operation.go:156 lxc/project.go:458 #: lxc/project.go:463 lxc/project.go:468 lxc/project.go:473 lxc/project.go:478 -#: lxc/project.go:483 lxc/remote.go:693 lxc/remote.go:698 lxc/remote.go:703 +#: lxc/project.go:483 lxc/remote.go:694 lxc/remote.go:699 lxc/remote.go:704 msgid "YES" msgstr "" @@ -6874,7 +6870,7 @@ msgstr "No se puede proveer el nombre del container a la lista" #: 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/network.go:909 lxc/network_acl.go:91 lxc/network_zone.go:83 #: lxc/operation.go:103 lxc/profile.go:630 lxc/project.go:407 #: lxc/storage.go:583 lxc/version.go:20 lxc/warning.go:68 #, fuzzy @@ -6951,22 +6947,22 @@ 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/network_zone.go:154 lxc/network_zone.go:463 lxc/network_zone.go:581 +#: lxc/network_zone.go:155 lxc/network_zone.go:468 lxc/network_zone.go:586 #, fuzzy msgid "[:]" msgstr "No se puede proveer el nombre del container a la lista" -#: lxc/network_zone.go:209 lxc/network_zone.go:432 +#: lxc/network_zone.go:210 lxc/network_zone.go:437 #, fuzzy msgid "[:] " msgstr "No se puede proveer el nombre del container a la lista" -#: lxc/network_zone.go:352 +#: lxc/network_zone.go:357 #, fuzzy msgid "[:] =..." msgstr "No se puede proveer el nombre del container a la lista" -#: lxc/network_zone.go:269 +#: lxc/network_zone.go:270 #, fuzzy msgid "[:] [key=value...]" msgstr "No se puede proveer el nombre del container a la lista" @@ -7267,17 +7263,17 @@ msgstr "No se puede proveer el nombre del container a la lista" #: lxc/network_forward.go:169 lxc/network_forward.go:574 #: lxc/network_forward.go:715 lxc/network_load_balancer.go:171 -#: lxc/network_load_balancer.go:577 lxc/network_load_balancer.go:719 +#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:724 #, fuzzy msgid "[:] " msgstr "No se puede proveer el nombre del container a la lista" -#: lxc/network_load_balancer.go:860 +#: lxc/network_load_balancer.go:865 #, fuzzy msgid "[:] " msgstr "No se puede proveer el nombre del container a la lista" -#: lxc/network_load_balancer.go:796 +#: lxc/network_load_balancer.go:801 #, fuzzy msgid "" "[:] " @@ -7285,17 +7281,17 @@ msgid "" msgstr "No se puede proveer el nombre del container a la lista" #: lxc/network_forward.go:377 lxc/network_forward.go:544 -#: lxc/network_load_balancer.go:381 lxc/network_load_balancer.go:547 +#: lxc/network_load_balancer.go:386 lxc/network_load_balancer.go:552 #, fuzzy msgid "[:] " msgstr "No se puede proveer el nombre del container a la lista" -#: lxc/network_forward.go:446 lxc/network_load_balancer.go:449 +#: lxc/network_forward.go:446 lxc/network_load_balancer.go:454 #, fuzzy msgid "[:] =..." msgstr "No se puede proveer el nombre del container a la lista" -#: lxc/network_load_balancer.go:961 +#: lxc/network_load_balancer.go:966 #, fuzzy msgid "" "[:] " @@ -7308,7 +7304,7 @@ msgid "" " []" msgstr "" -#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1022 +#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1027 #, fuzzy msgid "[:] [] []" msgstr "No se puede proveer el nombre del container a la lista" @@ -7371,7 +7367,7 @@ msgid "[:]" msgstr "No se puede proveer el nombre del container a la lista" #: lxc/storage.go:167 lxc/storage.go:218 lxc/storage.go:412 lxc/storage.go:759 -#: lxc/storage_bucket.go:449 +#: lxc/storage_bucket.go:454 #, fuzzy msgid "[:]" msgstr "No se puede proveer el nombre del container a la lista" @@ -7381,20 +7377,20 @@ 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/storage_bucket.go:180 lxc/storage_bucket.go:242 -#: lxc/storage_bucket.go:622 lxc/storage_bucket.go:764 +#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:247 +#: lxc/storage_bucket.go:627 lxc/storage_bucket.go:769 #, fuzzy msgid "[:] " msgstr "No se puede proveer el nombre del container a la lista" -#: lxc/storage_bucket.go:375 lxc/storage_bucket.go:691 -#: lxc/storage_bucket.go:845 lxc/storage_bucket.go:923 -#: lxc/storage_bucket.go:987 lxc/storage_bucket.go:1122 +#: lxc/storage_bucket.go:380 lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:850 lxc/storage_bucket.go:928 +#: lxc/storage_bucket.go:992 lxc/storage_bucket.go:1127 #, fuzzy msgid "[:] " msgstr "No se puede proveer el nombre del container a la lista" -#: lxc/storage_bucket.go:528 +#: lxc/storage_bucket.go:533 #, fuzzy msgid "[:] =..." msgstr "No se puede proveer el nombre del container a la lista" @@ -7573,32 +7569,32 @@ 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/network_zone.go:686 +#: lxc/network_zone.go:691 #, fuzzy msgid "[:]" msgstr "No se puede proveer el nombre del container a la lista" -#: lxc/network_zone.go:757 lxc/network_zone.go:1056 lxc/network_zone.go:1173 +#: lxc/network_zone.go:762 lxc/network_zone.go:1061 lxc/network_zone.go:1178 #, fuzzy msgid "[:] " msgstr "No se puede proveer el nombre del container a la lista" -#: lxc/network_zone.go:809 lxc/network_zone.go:1026 +#: lxc/network_zone.go:814 lxc/network_zone.go:1031 #, fuzzy msgid "[:] " msgstr "No se puede proveer el nombre del container a la lista" -#: lxc/network_zone.go:950 +#: lxc/network_zone.go:955 #, fuzzy msgid "[:] =..." msgstr "No se puede proveer el nombre del container a la lista" -#: lxc/network_zone.go:1238 lxc/network_zone.go:1284 +#: lxc/network_zone.go:1243 lxc/network_zone.go:1289 #, fuzzy msgid "[:] " msgstr "No se puede proveer el nombre del container a la lista" -#: lxc/network_zone.go:868 +#: lxc/network_zone.go:873 #, fuzzy msgid "[:] [key=value...]" msgstr "No se puede proveer el nombre del container a la lista" @@ -7628,7 +7624,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/remote.go:88 +#: lxc/remote.go:89 #, fuzzy msgid "[] " msgstr "No se puede proveer el nombre del container a la lista" @@ -7638,7 +7634,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/project.go:488 lxc/remote.go:722 +#: lxc/project.go:488 lxc/remote.go:723 msgid "current" msgstr "" @@ -7901,6 +7897,23 @@ msgid "" " Create a new OVN network called bar using baz as its uplink network" msgstr "" +#: lxc/network_load_balancer.go:239 +msgid "" +"lxc network load-balancer create n1 127.0.0.1\n" +"\n" +"lxc network load-balancer create n1 127.0.0.1 < config.yaml\n" +" Create network load-balancer for network n1 with configuration from " +"config.yaml" +msgstr "" + +#: lxc/network_zone.go:273 +msgid "" +"lxc network zone create z1\n" +"\n" +"lxc network zone create z1 < config.yaml\n" +" Create network zone z1 with configuration from config.yaml" +msgstr "" + #: lxc/operation.go:195 msgid "" "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n" @@ -7971,26 +7984,36 @@ msgid "" " Restore the snapshot." msgstr "" -#: lxc/storage_bucket.go:245 +#: lxc/storage_bucket.go:84 +msgid "" +"lxc storage bucket create p1 b01\n" +"\tCreate a new storage bucket name b01 in storage pool p1\n" +"\n" +"lxc storage bucket create p1 b01 < config.yaml\n" +"\tCreate a new storage bucket name b01 in storage pool p1 using the content " +"of config.yaml" +msgstr "" + +#: lxc/storage_bucket.go:250 msgid "" "lxc storage bucket edit [:] < bucket.yaml\n" " Update a storage bucket using the content of bucket.yaml." msgstr "" -#: lxc/storage_bucket.go:990 +#: lxc/storage_bucket.go:995 msgid "" "lxc storage bucket edit [:] < key.yaml\n" " Update a storage bucket key using the content of key.yaml." msgstr "" -#: lxc/storage_bucket.go:1125 +#: lxc/storage_bucket.go:1130 msgid "" "lxc storage bucket key show default data foo\n" " Will show the properties of a bucket key called \"foo\" for a bucket " "called \"data\" in the \"default\" pool." msgstr "" -#: lxc/storage_bucket.go:625 +#: lxc/storage_bucket.go:630 msgid "" "lxc storage bucket show default data\n" " Will show the properties of a bucket called \"data\" in the \"default\" " @@ -8009,7 +8032,7 @@ msgid "" "\t\tCreate a new custom volume using backup0.tar.gz as the source." msgstr "" -#: lxc/remote.go:459 +#: lxc/remote.go:460 msgid "n" msgstr "" @@ -8021,7 +8044,7 @@ msgstr "" msgid "no" msgstr "" -#: lxc/remote.go:452 +#: lxc/remote.go:453 msgid "ok (y/n/[fingerprint])?" msgstr "" @@ -8058,7 +8081,7 @@ msgstr "" msgid "used by" msgstr "" -#: lxc/remote.go:461 +#: lxc/remote.go:462 msgid "y" msgstr "" @@ -8067,6 +8090,9 @@ msgstr "" msgid "yes" msgstr "" +#~ msgid "Console log:" +#~ msgstr "Log de la consola:" + #, fuzzy, c-format #~ msgid "Fingerprint %q not found" #~ msgstr "Huella dactilar: %s" diff --git a/po/fa.po b/po/fa.po index 0de4d6e80c7a..db80853c948f 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-08-20 09:31+0100\n" +"POT-Creation-Date: 2024-08-30 09:27+0100\n" "PO-Revision-Date: 2022-03-10 15:09+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Persian 1;\n" "X-Generator: Weblate 4.12-dev\n" -#: lxc/storage_bucket.go:255 lxc/storage_bucket.go:1000 +#: lxc/storage_bucket.go:260 lxc/storage_bucket.go:1005 msgid "" "### This is a YAML representation of a storage bucket.\n" "### Any line starting with a '# will be ignored.\n" @@ -281,7 +281,7 @@ msgid "" "### Note that the listen_address and location cannot be changed." msgstr "" -#: lxc/network_load_balancer.go:588 +#: lxc/network_load_balancer.go:593 msgid "" "### This is a YAML representation of the network load balancer.\n" "### Any line starting with a '# will be ignored.\n" @@ -322,7 +322,7 @@ msgid "" "cannot be changed." msgstr "" -#: lxc/network_zone.go:1066 +#: lxc/network_zone.go:1071 msgid "" "### This is a YAML representation of the network zone record.\n" "### Any line starting with a '# will be ignored.\n" @@ -336,7 +336,7 @@ msgid "" "### user.foo: bah\n" msgstr "" -#: lxc/network_zone.go:473 +#: lxc/network_zone.go:478 msgid "" "### This is a YAML representation of the network zone.\n" "### Any line starting with a '# will be ignored.\n" @@ -515,15 +515,15 @@ msgstr "" msgid " " msgstr "" -#: lxc/remote.go:825 lxc/remote.go:882 +#: lxc/remote.go:826 lxc/remote.go:883 msgid "" msgstr "" -#: lxc/remote.go:922 +#: lxc/remote.go:923 msgid " " msgstr "" -#: lxc/remote.go:752 +#: lxc/remote.go:753 msgid " " msgstr "" @@ -556,7 +556,7 @@ msgstr "" msgid "ARCHITECTURE" msgstr "" -#: lxc/remote.go:734 +#: lxc/remote.go:735 msgid "AUTH TYPE" msgstr "" @@ -564,15 +564,15 @@ msgstr "" msgid "AUTHENTICATION METHOD" msgstr "" -#: lxc/remote.go:100 +#: lxc/remote.go:101 msgid "Accept certificate" msgstr "" -#: lxc/storage_bucket.go:852 +#: lxc/storage_bucket.go:857 msgid "Access key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:908 +#: lxc/storage_bucket.go:913 #, c-format msgid "Access key: %s" msgstr "" @@ -606,19 +606,19 @@ msgstr "" msgid "Add a group to an identity provider group" msgstr "" -#: lxc/network_zone.go:1239 +#: lxc/network_zone.go:1244 msgid "Add a network zone record entry" msgstr "" -#: lxc/network_load_balancer.go:798 +#: lxc/network_load_balancer.go:803 msgid "Add backend to a load balancer" msgstr "" -#: lxc/network_load_balancer.go:797 +#: lxc/network_load_balancer.go:802 msgid "Add backends to a load balancer" msgstr "" -#: lxc/network_zone.go:1240 +#: lxc/network_zone.go:1245 msgid "Add entries to a network zone record" msgstr "" @@ -634,11 +634,11 @@ msgstr "" msgid "Add new aliases" msgstr "" -#: lxc/remote.go:89 +#: lxc/remote.go:90 msgid "Add new remote servers" msgstr "" -#: lxc/remote.go:90 +#: lxc/remote.go:91 msgid "" "Add new remote servers\n" "\n" @@ -679,7 +679,7 @@ msgstr "" msgid "Add ports to a forward" msgstr "" -#: lxc/network_load_balancer.go:962 lxc/network_load_balancer.go:963 +#: lxc/network_load_balancer.go:967 lxc/network_load_balancer.go:968 msgid "Add ports to a load balancer" msgstr "" @@ -700,17 +700,17 @@ msgstr "" msgid "Address: %s" msgstr "" -#: lxc/storage_bucket.go:164 +#: lxc/storage_bucket.go:169 #, c-format msgid "Admin access key: %s" msgstr "" -#: lxc/remote.go:566 +#: lxc/remote.go:567 #, c-format msgid "Admin password (or token) for %s:" msgstr "" -#: lxc/storage_bucket.go:165 +#: lxc/storage_bucket.go:170 #, c-format msgid "Admin secret key: %s" msgstr "" @@ -742,7 +742,7 @@ msgstr "" msgid "All projects" msgstr "" -#: lxc/remote.go:181 +#: lxc/remote.go:182 msgid "All server addresses are unavailable" msgstr "" @@ -765,7 +765,7 @@ msgstr "" msgid "Are you sure you want to %s cluster member %q? (yes/no) [default=no]: " msgstr "" -#: lxc/console.go:383 +#: lxc/console.go:388 msgid "As neither could be found, the raw SPICE socket can be found at:" msgstr "" @@ -813,7 +813,7 @@ msgid "" "as well as retrieve past log entries from it." msgstr "" -#: lxc/remote.go:548 +#: lxc/remote.go:549 #, c-format msgid "Authentication type '%s' not supported by server" msgstr "" @@ -832,11 +832,11 @@ msgstr "" msgid "Auto update: %s" msgstr "" -#: lxc/network_forward.go:240 lxc/network_load_balancer.go:242 +#: lxc/network_forward.go:240 lxc/network_load_balancer.go:247 msgid "Auto-allocate an IPv4 or IPv6 listen address. One of 'ipv4', 'ipv6'." msgstr "" -#: lxc/remote.go:136 +#: lxc/remote.go:137 msgid "Available projects:" msgstr "" @@ -868,8 +868,8 @@ msgid "Bad device override syntax, expecting ,=: %s" msgstr "" #: lxc/network.go:333 lxc/network_acl.go:382 lxc/network_forward.go:293 -#: lxc/network_load_balancer.go:296 lxc/network_peer.go:280 -#: lxc/network_zone.go:324 lxc/network_zone.go:922 lxc/storage_bucket.go:136 +#: lxc/network_load_balancer.go:301 lxc/network_peer.go:280 +#: lxc/network_zone.go:329 lxc/network_zone.go:927 lxc/storage_bucket.go:141 #, c-format msgid "Bad key/value pair: %s" msgstr "" @@ -991,7 +991,7 @@ msgstr "" msgid "Can't read from stdin: %w" msgstr "" -#: lxc/remote.go:861 +#: lxc/remote.go:862 msgid "Can't remove the default remote" msgstr "" @@ -1057,15 +1057,14 @@ msgstr "" msgid "Certificate add token for %s deleted" msgstr "" -#: lxc/remote.go:218 -#, c-format -msgid "" -"Certificate fingerprint mismatch between certificate token and server %q" +#: lxc/remote.go:452 +msgid "Certificate fingerprint" msgstr "" -#: lxc/remote.go:451 +#: lxc/remote.go:219 #, c-format -msgid "Certificate fingerprint: %s" +msgid "" +"Certificate fingerprint mismatch between certificate token and server %q" msgstr "" #: lxc/network.go:893 @@ -1077,7 +1076,7 @@ msgstr "" msgid "Client %s certificate add token:" msgstr "" -#: lxc/remote.go:603 +#: lxc/remote.go:604 msgid "Client certificate now trusted by server:" msgstr "" @@ -1139,18 +1138,18 @@ msgstr "" #: lxc/network_forward.go:456 lxc/network_forward.go:579 #: lxc/network_forward.go:721 lxc/network_forward.go:798 #: lxc/network_forward.go:864 lxc/network_load_balancer.go:176 -#: lxc/network_load_balancer.go:241 lxc/network_load_balancer.go:459 -#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:725 -#: lxc/network_load_balancer.go:801 lxc/network_load_balancer.go:865 -#: lxc/network_load_balancer.go:966 lxc/network_load_balancer.go:1028 +#: lxc/network_load_balancer.go:246 lxc/network_load_balancer.go:464 +#: lxc/network_load_balancer.go:587 lxc/network_load_balancer.go:730 +#: lxc/network_load_balancer.go:806 lxc/network_load_balancer.go:870 +#: lxc/network_load_balancer.go:971 lxc/network_load_balancer.go:1033 #: lxc/storage.go:99 lxc/storage.go:347 lxc/storage.go:418 lxc/storage.go:671 -#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:85 -#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:248 -#: lxc/storage_bucket.go:379 lxc/storage_bucket.go:536 -#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:695 -#: lxc/storage_bucket.go:770 lxc/storage_bucket.go:850 -#: lxc/storage_bucket.go:928 lxc/storage_bucket.go:993 -#: lxc/storage_bucket.go:1129 lxc/storage_volume.go:358 +#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:90 +#: lxc/storage_bucket.go:190 lxc/storage_bucket.go:253 +#: lxc/storage_bucket.go:384 lxc/storage_bucket.go:541 +#: lxc/storage_bucket.go:634 lxc/storage_bucket.go:700 +#: lxc/storage_bucket.go:775 lxc/storage_bucket.go:855 +#: lxc/storage_bucket.go:933 lxc/storage_bucket.go:998 +#: lxc/storage_bucket.go:1134 lxc/storage_volume.go:358 #: lxc/storage_volume.go:560 lxc/storage_volume.go:639 #: lxc/storage_volume.go:883 lxc/storage_volume.go:1097 #: lxc/storage_volume.go:1210 lxc/storage_volume.go:1678 @@ -1178,11 +1177,11 @@ msgstr "" msgid "Columns" msgstr "" -#: lxc/main.go:81 +#: lxc/main.go:82 msgid "Command line client for LXD" msgstr "" -#: lxc/main.go:82 +#: lxc/main.go:83 msgid "" "Command line client for LXD\n" "\n" @@ -1214,19 +1213,15 @@ msgstr "" #: lxc/config.go:347 lxc/config.go:1277 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/network_load_balancer.go:694 lxc/network_peer.go:610 +#: lxc/network_zone.go:556 lxc/network_zone.go:1148 lxc/profile.go:538 +#: lxc/project.go:315 lxc/storage.go:310 lxc/storage_bucket.go:348 +#: lxc/storage_bucket.go:1097 lxc/storage_volume.go:1016 #: lxc/storage_volume.go:1048 #, c-format msgid "Config parsing error: %s" msgstr "" -#: lxc/console.go:140 -msgid "Console log:" -msgstr "" - #: lxc/storage_volume.go:561 msgid "Content type, block or filesystem" msgstr "" @@ -1329,12 +1324,12 @@ msgstr "" msgid "Cores:" msgstr "" -#: lxc/remote.go:486 +#: lxc/remote.go:487 #, c-format msgid "Could not close server cert file %q: %w" msgstr "" -#: lxc/remote.go:224 lxc/remote.go:470 +#: lxc/remote.go:225 lxc/remote.go:471 msgid "Could not create server cert dir" msgstr "" @@ -1373,12 +1368,12 @@ msgstr "" msgid "Could not write new remote certificate for remote '%s' with error: %v" msgstr "" -#: lxc/remote.go:481 +#: lxc/remote.go:482 #, c-format msgid "Could not write server cert file %q: %w" msgstr "" -#: lxc/network_zone.go:1327 +#: lxc/network_zone.go:1332 msgid "Couldn't find a matching entry" msgstr "" @@ -1430,7 +1425,7 @@ msgstr "" msgid "Create instances from images" msgstr "" -#: lxc/storage_bucket.go:846 lxc/storage_bucket.go:847 +#: lxc/storage_bucket.go:851 lxc/storage_bucket.go:852 msgid "Create key for a storage bucket" msgstr "" @@ -1462,11 +1457,11 @@ msgstr "" msgid "Create new network peering" msgstr "" -#: lxc/network_zone.go:869 lxc/network_zone.go:870 +#: lxc/network_zone.go:874 lxc/network_zone.go:875 msgid "Create new network zone record" msgstr "" -#: lxc/network_zone.go:270 lxc/network_zone.go:271 +#: lxc/network_zone.go:271 lxc/network_zone.go:272 msgid "Create new network zones" msgstr "" @@ -1517,9 +1512,9 @@ msgstr "" #: 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/network_zone.go:140 lxc/network_zone.go:747 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_bucket.go:512 lxc/storage_bucket.go:832 #: lxc/storage_volume.go:1562 msgid "DESCRIPTION" msgstr "" @@ -1584,7 +1579,7 @@ msgstr "" msgid "Delete instances and snapshots" msgstr "" -#: lxc/storage_bucket.go:924 lxc/storage_bucket.go:925 +#: lxc/storage_bucket.go:929 lxc/storage_bucket.go:930 msgid "Delete key from a storage bucket" msgstr "" @@ -1596,7 +1591,7 @@ msgstr "" msgid "Delete network forwards" msgstr "" -#: lxc/network_load_balancer.go:721 lxc/network_load_balancer.go:722 +#: lxc/network_load_balancer.go:726 lxc/network_load_balancer.go:727 msgid "Delete network load balancers" msgstr "" @@ -1604,11 +1599,11 @@ msgstr "" msgid "Delete network peerings" msgstr "" -#: lxc/network_zone.go:1175 lxc/network_zone.go:1176 +#: lxc/network_zone.go:1180 lxc/network_zone.go:1181 msgid "Delete network zone record" msgstr "" -#: lxc/network_zone.go:583 lxc/network_zone.go:584 +#: lxc/network_zone.go:588 lxc/network_zone.go:589 msgid "Delete network zones" msgstr "" @@ -1624,7 +1619,7 @@ msgstr "" msgid "Delete projects" msgstr "" -#: lxc/storage_bucket.go:182 lxc/storage_bucket.go:183 +#: lxc/storage_bucket.go:187 lxc/storage_bucket.go:188 msgid "Delete storage buckets" msgstr "" @@ -1680,7 +1675,7 @@ msgstr "" #: 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/info.go:32 lxc/init.go:43 lxc/launch.go:24 lxc/list.go:48 lxc/main.go:83 #: 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 @@ -1699,22 +1694,22 @@ msgstr "" #: 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_load_balancer.go:238 lxc/network_load_balancer.go:388 +#: lxc/network_load_balancer.go:456 lxc/network_load_balancer.go:554 +#: lxc/network_load_balancer.go:584 lxc/network_load_balancer.go:727 +#: lxc/network_load_balancer.go:788 lxc/network_load_balancer.go:803 +#: lxc/network_load_balancer.go:867 lxc/network_load_balancer.go:953 +#: lxc/network_load_balancer.go:968 lxc/network_load_balancer.go:1029 #: 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/network_zone.go:29 lxc/network_zone.go:86 lxc/network_zone.go:157 +#: lxc/network_zone.go:212 lxc/network_zone.go:272 lxc/network_zone.go:359 +#: lxc/network_zone.go:439 lxc/network_zone.go:470 lxc/network_zone.go:589 +#: lxc/network_zone.go:637 lxc/network_zone.go:694 lxc/network_zone.go:764 +#: lxc/network_zone.go:816 lxc/network_zone.go:875 lxc/network_zone.go:957 +#: lxc/network_zone.go:1033 lxc/network_zone.go:1063 lxc/network_zone.go:1181 +#: lxc/network_zone.go:1230 lxc/network_zone.go:1245 lxc/network_zone.go:1291 #: 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 @@ -1723,19 +1718,19 @@ msgstr "" #: 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:631 lxc/remote.go:669 lxc/remote.go:755 lxc/remote.go:828 -#: lxc/remote.go:884 lxc/remote.go:924 lxc/rename.go:21 lxc/restore.go:24 +#: lxc/query.go:34 lxc/rebuild.go:27 lxc/remote.go:35 lxc/remote.go:91 +#: lxc/remote.go:632 lxc/remote.go:670 lxc/remote.go:756 lxc/remote.go:829 +#: lxc/remote.go:885 lxc/remote.go:925 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_bucket.go:29 lxc/storage_bucket.go:83 lxc/storage_bucket.go:188 +#: lxc/storage_bucket.go:249 lxc/storage_bucket.go:382 +#: lxc/storage_bucket.go:458 lxc/storage_bucket.go:535 +#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:698 +#: lxc/storage_bucket.go:732 lxc/storage_bucket.go:773 +#: lxc/storage_bucket.go:852 lxc/storage_bucket.go:930 +#: lxc/storage_bucket.go:994 lxc/storage_bucket.go:1129 #: 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 @@ -1871,7 +1866,7 @@ msgstr "" msgid "Don't require user confirmation for using --force" msgstr "" -#: lxc/main.go:99 +#: lxc/main.go:100 msgid "Don't show progress information" msgstr "" @@ -1884,7 +1879,7 @@ msgstr "" msgid "Driver: %v (%v)" msgstr "" -#: lxc/network_zone.go:743 +#: lxc/network_zone.go:748 msgid "ENTRIES" msgstr "" @@ -1962,7 +1957,7 @@ msgstr "" msgid "Edit network forward configurations as YAML" msgstr "" -#: lxc/network_load_balancer.go:578 lxc/network_load_balancer.go:579 +#: lxc/network_load_balancer.go:583 lxc/network_load_balancer.go:584 msgid "Edit network load balancer configurations as YAML" msgstr "" @@ -1970,11 +1965,11 @@ msgstr "" msgid "Edit network peer configurations as YAML" msgstr "" -#: lxc/network_zone.go:464 lxc/network_zone.go:465 +#: lxc/network_zone.go:469 lxc/network_zone.go:470 msgid "Edit network zone configurations as YAML" msgstr "" -#: lxc/network_zone.go:1057 lxc/network_zone.go:1058 +#: lxc/network_zone.go:1062 lxc/network_zone.go:1063 msgid "Edit network zone record configurations as YAML" msgstr "" @@ -1986,11 +1981,11 @@ msgstr "" msgid "Edit project configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:243 lxc/storage_bucket.go:244 +#: lxc/storage_bucket.go:248 lxc/storage_bucket.go:249 msgid "Edit storage bucket configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:988 lxc/storage_bucket.go:989 +#: lxc/storage_bucket.go:993 lxc/storage_bucket.go:994 msgid "Edit storage bucket key as YAML" msgstr "" @@ -2031,7 +2026,7 @@ msgid "" " for the address if not yet set." msgstr "" -#: lxc/network_zone.go:1242 +#: lxc/network_zone.go:1247 msgid "Entry TTL" msgstr "" @@ -2060,9 +2055,9 @@ msgstr "" #: lxc/cluster.go:414 lxc/config.go:624 lxc/config.go:656 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/network_load_balancer.go:527 lxc/network_peer.go:463 +#: lxc/network_zone.go:414 lxc/network_zone.go:1008 lxc/profile.go:876 +#: lxc/project.go:634 lxc/storage.go:727 lxc/storage_bucket.go:602 #: lxc/storage_volume.go:1947 lxc/storage_volume.go:1985 #, c-format msgid "Error setting properties: %v" @@ -2074,10 +2069,10 @@ 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/network_forward.go:513 lxc/network_load_balancer.go:521 +#: lxc/network_peer.go:457 lxc/network_zone.go:408 lxc/network_zone.go:1002 #: lxc/profile.go:870 lxc/project.go:628 lxc/storage.go:721 -#: lxc/storage_bucket.go:591 lxc/storage_volume.go:1941 +#: lxc/storage_bucket.go:596 lxc/storage_volume.go:1941 #: lxc/storage_volume.go:1979 #, c-format msgid "Error unsetting property: %v" @@ -2263,7 +2258,7 @@ msgstr "" msgid "Failed parsing SSH host key: %w" msgstr "" -#: lxc/console.go:361 +#: lxc/console.go:366 #, c-format msgid "Failed starting command: %w" msgstr "" @@ -2278,11 +2273,11 @@ msgstr "" msgid "Failed to accept incoming connection: %w" msgstr "" -#: lxc/remote.go:190 +#: lxc/remote.go:191 msgid "Failed to add remote" msgstr "" -#: lxc/remote.go:241 +#: lxc/remote.go:242 #, c-format msgid "Failed to close server cert file %q: %w" msgstr "" @@ -2292,7 +2287,7 @@ msgstr "" msgid "Failed to connect to cluster member: %w" msgstr "" -#: lxc/remote.go:231 +#: lxc/remote.go:232 #, c-format msgid "Failed to create %q: %w" msgstr "" @@ -2302,12 +2297,12 @@ msgstr "" msgid "Failed to create alias %s: %w" msgstr "" -#: lxc/remote.go:256 +#: lxc/remote.go:257 #, c-format msgid "Failed to create certificate: %w" msgstr "" -#: lxc/remote.go:263 +#: lxc/remote.go:264 #, c-format msgid "Failed to find project: %w" msgstr "" @@ -2332,7 +2327,7 @@ msgstr "" msgid "Failed to walk path for %s: %s" msgstr "" -#: lxc/remote.go:236 +#: lxc/remote.go:237 #, c-format msgid "Failed to write server cert file %q: %w" msgstr "" @@ -2341,7 +2336,7 @@ msgstr "" msgid "Fast mode (same as --columns=nsacPt)" msgstr "" -#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:115 +#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:116 #: lxc/operation.go:136 msgid "Filtering isn't supported yet" msgstr "" @@ -2379,7 +2374,7 @@ msgstr "" msgid "Force the removal of running instances" msgstr "" -#: lxc/main.go:95 +#: lxc/main.go:96 msgid "Force using the local unix socket" msgstr "" @@ -2413,10 +2408,10 @@ msgstr "" #: 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/network_peer.go:84 lxc/network_zone.go:89 lxc/network_zone.go:697 #: lxc/operation.go:108 lxc/profile.go:637 lxc/project.go:412 -#: lxc/project.go:804 lxc/remote.go:673 lxc/storage.go:588 -#: lxc/storage_bucket.go:454 lxc/storage_bucket.go:769 +#: lxc/project.go:804 lxc/remote.go:674 lxc/storage.go:588 +#: lxc/storage_bucket.go:459 lxc/storage_bucket.go:774 #: lxc/storage_volume.go:1446 lxc/warning.go:93 msgid "Format (csv|json|table|yaml|compact)" msgstr "" @@ -2453,7 +2448,7 @@ msgstr "" msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)" msgstr "" -#: lxc/remote.go:737 +#: lxc/remote.go:738 msgid "GLOBAL" msgstr "" @@ -2473,7 +2468,7 @@ msgstr "" msgid "Generate manpages for all commands" msgstr "" -#: lxc/remote.go:159 lxc/remote.go:397 +#: lxc/remote.go:160 lxc/remote.go:398 msgid "Generating a client certificate. This may take a minute..." msgstr "" @@ -2505,7 +2500,7 @@ msgstr "" msgid "Get the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:386 +#: lxc/network_load_balancer.go:391 msgid "Get the key as a network load balancer property" msgstr "" @@ -2517,11 +2512,11 @@ msgstr "" msgid "Get the key as a network property" msgstr "" -#: lxc/network_zone.go:214 +#: lxc/network_zone.go:215 msgid "Get the key as a network zone property" msgstr "" -#: lxc/network_zone.go:814 +#: lxc/network_zone.go:819 msgid "Get the key as a network zone record property" msgstr "" @@ -2533,7 +2528,7 @@ msgstr "" msgid "Get the key as a project property" msgstr "" -#: lxc/storage_bucket.go:380 +#: lxc/storage_bucket.go:385 msgid "Get the key as a storage bucket property" msgstr "" @@ -2573,7 +2568,7 @@ msgstr "" msgid "Get values for network forward configuration keys" msgstr "" -#: lxc/network_load_balancer.go:382 lxc/network_load_balancer.go:383 +#: lxc/network_load_balancer.go:387 lxc/network_load_balancer.go:388 msgid "Get values for network load balancer configuration keys" msgstr "" @@ -2581,11 +2576,11 @@ msgstr "" msgid "Get values for network peer configuration keys" msgstr "" -#: lxc/network_zone.go:210 lxc/network_zone.go:211 +#: lxc/network_zone.go:211 lxc/network_zone.go:212 msgid "Get values for network zone configuration keys" msgstr "" -#: lxc/network_zone.go:810 lxc/network_zone.go:811 +#: lxc/network_zone.go:815 lxc/network_zone.go:816 msgid "Get values for network zone record configuration keys" msgstr "" @@ -2597,7 +2592,7 @@ msgstr "" msgid "Get values for project configuration keys" msgstr "" -#: lxc/storage_bucket.go:376 lxc/storage_bucket.go:377 +#: lxc/storage_bucket.go:381 lxc/storage_bucket.go:382 msgid "Get values for storage bucket configuration keys" msgstr "" @@ -2737,7 +2732,7 @@ msgstr "" msgid "If the snapshot name already exists, delete and create a new one" msgstr "" -#: lxc/main.go:398 +#: lxc/main.go:400 msgid "" "If this is your first time running LXD on this machine, you should also run: " "lxd init" @@ -2894,7 +2889,7 @@ msgstr "" msgid "Instance type" msgstr "" -#: lxc/remote.go:349 +#: lxc/remote.go:350 #, c-format msgid "Invalid URL scheme \"%s\" in \"%s\"" msgstr "" @@ -2966,7 +2961,7 @@ msgstr "" msgid "Invalid new snapshot name, parent volume must be the same as source" msgstr "" -#: lxc/main.go:498 +#: lxc/main.go:502 msgid "Invalid number of arguments" msgstr "" @@ -2975,7 +2970,7 @@ msgstr "" msgid "Invalid path %s" msgstr "" -#: lxc/remote.go:338 +#: lxc/remote.go:339 #, c-format msgid "Invalid protocol: %s" msgstr "" @@ -3023,7 +3018,7 @@ msgstr "" #: lxc/list.go:597 lxc/network.go:1059 lxc/network_forward.go:155 #: lxc/network_load_balancer.go:157 lxc/operation.go:177 -#: lxc/storage_bucket.go:511 lxc/storage_volume.go:1569 lxc/warning.go:220 +#: lxc/storage_bucket.go:516 lxc/storage_volume.go:1569 lxc/warning.go:220 msgid "LOCATION" msgstr "" @@ -3031,7 +3026,7 @@ msgstr "" msgid "LXD - Command line client" msgstr "" -#: lxc/console.go:382 +#: lxc/console.go:387 msgid "LXD automatically uses either spicy or remote-viewer when present." msgstr "" @@ -3121,15 +3116,15 @@ msgstr "" msgid "List available network peers" msgstr "" -#: lxc/network_zone.go:85 +#: lxc/network_zone.go:86 msgid "List available network zone" msgstr "" -#: lxc/network_zone.go:688 lxc/network_zone.go:689 +#: lxc/network_zone.go:693 lxc/network_zone.go:694 msgid "List available network zone records" msgstr "" -#: lxc/network_zone.go:84 +#: lxc/network_zone.go:85 msgid "List available network zoneS" msgstr "" @@ -3318,11 +3313,11 @@ msgstr "" msgid "List projects" msgstr "" -#: lxc/storage_bucket.go:766 lxc/storage_bucket.go:768 +#: lxc/storage_bucket.go:771 lxc/storage_bucket.go:773 msgid "List storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:451 lxc/storage_bucket.go:453 +#: lxc/storage_bucket.go:456 lxc/storage_bucket.go:458 msgid "List storage buckets" msgstr "" @@ -3350,7 +3345,7 @@ msgid "" " U - Current disk usage" msgstr "" -#: lxc/remote.go:668 lxc/remote.go:669 +#: lxc/remote.go:669 lxc/remote.go:670 msgid "List the available remotes" msgstr "" @@ -3577,11 +3572,11 @@ msgstr "" msgid "Manage network forwards" msgstr "" -#: lxc/network_load_balancer.go:782 lxc/network_load_balancer.go:783 +#: lxc/network_load_balancer.go:787 lxc/network_load_balancer.go:788 msgid "Manage network load balancer backends" msgstr "" -#: lxc/network_load_balancer.go:947 lxc/network_load_balancer.go:948 +#: lxc/network_load_balancer.go:952 lxc/network_load_balancer.go:953 msgid "Manage network load balancer ports" msgstr "" @@ -3593,15 +3588,15 @@ msgstr "" msgid "Manage network peerings" msgstr "" -#: lxc/network_zone.go:1224 lxc/network_zone.go:1225 +#: lxc/network_zone.go:1229 lxc/network_zone.go:1230 msgid "Manage network zone record entries" msgstr "" -#: lxc/network_zone.go:631 lxc/network_zone.go:632 +#: lxc/network_zone.go:636 lxc/network_zone.go:637 msgid "Manage network zone records" msgstr "" -#: lxc/network_zone.go:27 lxc/network_zone.go:28 +#: lxc/network_zone.go:28 lxc/network_zone.go:29 msgid "Manage network zones" msgstr "" @@ -3617,11 +3612,11 @@ msgstr "" msgid "Manage projects" msgstr "" -#: lxc/storage_bucket.go:726 +#: lxc/storage_bucket.go:731 msgid "Manage storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:727 +#: lxc/storage_bucket.go:732 msgid "Manage storage bucket keys." msgstr "" @@ -3649,7 +3644,7 @@ msgid "" "\"custom\" (user created) volumes." msgstr "" -#: lxc/remote.go:33 lxc/remote.go:34 +#: lxc/remote.go:34 lxc/remote.go:35 msgid "Manage the list of remote servers" msgstr "" @@ -3730,12 +3725,12 @@ msgid "" "Minimum level for log messages (only available when using pretty format)" msgstr "" -#: lxc/storage_bucket.go:111 lxc/storage_bucket.go:211 -#: lxc/storage_bucket.go:287 lxc/storage_bucket.go:406 -#: lxc/storage_bucket.go:563 lxc/storage_bucket.go:655 -#: lxc/storage_bucket.go:797 lxc/storage_bucket.go:878 -#: lxc/storage_bucket.go:953 lxc/storage_bucket.go:1032 -#: lxc/storage_bucket.go:1155 +#: lxc/storage_bucket.go:116 lxc/storage_bucket.go:216 +#: lxc/storage_bucket.go:292 lxc/storage_bucket.go:411 +#: lxc/storage_bucket.go:568 lxc/storage_bucket.go:660 +#: lxc/storage_bucket.go:802 lxc/storage_bucket.go:883 +#: lxc/storage_bucket.go:958 lxc/storage_bucket.go:1037 +#: lxc/storage_bucket.go:1160 msgid "Missing bucket name" msgstr "" @@ -3779,8 +3774,8 @@ msgstr "" msgid "Missing instance name" msgstr "" -#: lxc/storage_bucket.go:882 lxc/storage_bucket.go:957 -#: lxc/storage_bucket.go:1036 lxc/storage_bucket.go:1159 +#: lxc/storage_bucket.go:887 lxc/storage_bucket.go:962 +#: lxc/storage_bucket.go:1041 lxc/storage_bucket.go:1164 msgid "Missing key name" msgstr "" @@ -3788,10 +3783,10 @@ msgstr "" #: lxc/network_forward.go:481 lxc/network_forward.go:627 #: lxc/network_forward.go:746 lxc/network_forward.go:823 #: lxc/network_forward.go:889 lxc/network_load_balancer.go:201 -#: lxc/network_load_balancer.go:411 lxc/network_load_balancer.go:484 -#: lxc/network_load_balancer.go:630 lxc/network_load_balancer.go:750 -#: lxc/network_load_balancer.go:826 lxc/network_load_balancer.go:890 -#: lxc/network_load_balancer.go:991 lxc/network_load_balancer.go:1053 +#: lxc/network_load_balancer.go:416 lxc/network_load_balancer.go:489 +#: lxc/network_load_balancer.go:635 lxc/network_load_balancer.go:755 +#: lxc/network_load_balancer.go:831 lxc/network_load_balancer.go:895 +#: lxc/network_load_balancer.go:996 lxc/network_load_balancer.go:1058 msgid "Missing listen address" msgstr "" @@ -3816,26 +3811,26 @@ msgstr "" #: lxc/network_forward.go:477 lxc/network_forward.go:623 #: lxc/network_forward.go:742 lxc/network_forward.go:819 #: lxc/network_forward.go:885 lxc/network_load_balancer.go:123 -#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:261 -#: lxc/network_load_balancer.go:407 lxc/network_load_balancer.go:480 -#: lxc/network_load_balancer.go:626 lxc/network_load_balancer.go:746 -#: lxc/network_load_balancer.go:822 lxc/network_load_balancer.go:886 -#: lxc/network_load_balancer.go:987 lxc/network_load_balancer.go:1049 +#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:266 +#: lxc/network_load_balancer.go:412 lxc/network_load_balancer.go:485 +#: lxc/network_load_balancer.go:631 lxc/network_load_balancer.go:751 +#: lxc/network_load_balancer.go:827 lxc/network_load_balancer.go:891 +#: lxc/network_load_balancer.go:992 lxc/network_load_balancer.go:1054 #: lxc/network_peer.go:110 lxc/network_peer.go:180 lxc/network_peer.go:237 #: lxc/network_peer.go:355 lxc/network_peer.go:426 lxc/network_peer.go:556 #: lxc/network_peer.go:665 msgid "Missing network name" msgstr "" -#: lxc/network_zone.go:178 lxc/network_zone.go:234 lxc/network_zone.go:294 -#: lxc/network_zone.go:382 lxc/network_zone.go:503 lxc/network_zone.go:606 -#: lxc/network_zone.go:712 lxc/network_zone.go:780 lxc/network_zone.go:892 -#: lxc/network_zone.go:976 lxc/network_zone.go:1197 lxc/network_zone.go:1262 -#: lxc/network_zone.go:1307 +#: lxc/network_zone.go:179 lxc/network_zone.go:235 lxc/network_zone.go:299 +#: lxc/network_zone.go:387 lxc/network_zone.go:508 lxc/network_zone.go:611 +#: lxc/network_zone.go:717 lxc/network_zone.go:785 lxc/network_zone.go:897 +#: lxc/network_zone.go:981 lxc/network_zone.go:1202 lxc/network_zone.go:1267 +#: lxc/network_zone.go:1312 msgid "Missing network zone name" msgstr "" -#: lxc/network_zone.go:833 lxc/network_zone.go:1095 +#: lxc/network_zone.go:838 lxc/network_zone.go:1100 msgid "Missing network zone record name" msgstr "" @@ -3845,13 +3840,13 @@ msgid "Missing peer name" msgstr "" #: lxc/storage.go:194 lxc/storage.go:264 lxc/storage.go:370 lxc/storage.go:440 -#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:107 -#: lxc/storage_bucket.go:207 lxc/storage_bucket.go:283 -#: lxc/storage_bucket.go:402 lxc/storage_bucket.go:477 -#: lxc/storage_bucket.go:559 lxc/storage_bucket.go:651 -#: lxc/storage_bucket.go:793 lxc/storage_bucket.go:874 -#: lxc/storage_bucket.go:949 lxc/storage_bucket.go:1028 -#: lxc/storage_bucket.go:1151 lxc/storage_volume.go:189 +#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:112 +#: lxc/storage_bucket.go:212 lxc/storage_bucket.go:288 +#: lxc/storage_bucket.go:407 lxc/storage_bucket.go:482 +#: lxc/storage_bucket.go:564 lxc/storage_bucket.go:656 +#: lxc/storage_bucket.go:798 lxc/storage_bucket.go:879 +#: lxc/storage_bucket.go:954 lxc/storage_bucket.go:1033 +#: lxc/storage_bucket.go:1156 lxc/storage_volume.go:189 #: lxc/storage_volume.go:287 lxc/storage_volume.go:583 #: lxc/storage_volume.go:660 lxc/storage_volume.go:735 #: lxc/storage_volume.go:817 lxc/storage_volume.go:919 @@ -3971,7 +3966,7 @@ msgstr "" msgid "Moving the storage volume: %s" msgstr "" -#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1097 +#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1102 msgid "Multiple ports match. Use --force to remove them all" msgstr "" @@ -3990,10 +3985,10 @@ 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:677 lxc/project.go:498 -#: lxc/remote.go:731 lxc/storage.go:638 lxc/storage_bucket.go:506 -#: lxc/storage_bucket.go:826 lxc/storage_volume.go:1561 +#: lxc/network_acl.go:147 lxc/network_peer.go:139 lxc/network_zone.go:139 +#: lxc/network_zone.go:746 lxc/profile.go:677 lxc/project.go:498 +#: lxc/remote.go:732 lxc/storage.go:638 lxc/storage_bucket.go:511 +#: lxc/storage_bucket.go:831 lxc/storage_volume.go:1561 msgid "NAME" msgstr "" @@ -4019,7 +4014,7 @@ msgstr "" #: lxc/network.go:957 lxc/operation.go:154 lxc/project.go:456 #: lxc/project.go:461 lxc/project.go:466 lxc/project.go:471 lxc/project.go:476 -#: lxc/project.go:481 lxc/remote.go:691 lxc/remote.go:696 lxc/remote.go:701 +#: lxc/project.go:481 lxc/remote.go:692 lxc/remote.go:697 lxc/remote.go:702 msgid "NO" msgstr "" @@ -4046,7 +4041,7 @@ msgstr "" msgid "Name" msgstr "" -#: lxc/remote.go:141 +#: lxc/remote.go:142 msgid "Name of the project to use for this remote:" msgstr "" @@ -4095,12 +4090,12 @@ msgstr "" msgid "Network ACL %s renamed to %s" msgstr "" -#: lxc/network_zone.go:336 +#: lxc/network_zone.go:341 #, c-format msgid "Network Zone %s created" msgstr "" -#: lxc/network_zone.go:616 +#: lxc/network_zone.go:621 #, c-format msgid "Network Zone %s deleted" msgstr "" @@ -4115,12 +4110,12 @@ msgstr "" msgid "Network forward %s deleted" msgstr "" -#: lxc/network_load_balancer.go:365 +#: lxc/network_load_balancer.go:370 #, c-format msgid "Network load balancer %s created" msgstr "" -#: lxc/network_load_balancer.go:767 +#: lxc/network_load_balancer.go:772 #, c-format msgid "Network load balancer %s deleted" msgstr "" @@ -4158,12 +4153,12 @@ msgstr "" msgid "Network usage:" msgstr "" -#: lxc/network_zone.go:934 +#: lxc/network_zone.go:939 #, c-format msgid "Network zone record %s created" msgstr "" -#: lxc/network_zone.go:1207 +#: lxc/network_zone.go:1212 #, c-format msgid "Network zone record %s deleted" msgstr "" @@ -4198,11 +4193,11 @@ msgstr "" msgid "No device found for this storage volume" msgstr "" -#: lxc/network_load_balancer.go:921 +#: lxc/network_load_balancer.go:926 msgid "No matching backend found" msgstr "" -#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1108 +#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1113 msgid "No matching port(s) found" msgstr "" @@ -4248,7 +4243,7 @@ msgstr "" msgid "Only \"custom\" volumes can be snapshotted" msgstr "" -#: lxc/remote.go:332 +#: lxc/remote.go:333 msgid "Only https URLs are supported for simplestreams" msgstr "" @@ -4273,7 +4268,7 @@ msgstr "" msgid "Optimized Storage" msgstr "" -#: lxc/main.go:96 +#: lxc/main.go:97 msgid "Override the source project" msgstr "" @@ -4319,11 +4314,11 @@ msgstr "" msgid "PROJECT" msgstr "" -#: lxc/remote.go:733 +#: lxc/remote.go:734 msgid "PROTOCOL" msgstr "" -#: lxc/image.go:1073 lxc/remote.go:735 +#: lxc/image.go:1073 lxc/remote.go:736 msgid "PUBLIC" msgstr "" @@ -4339,7 +4334,7 @@ msgstr "" msgid "Partitions:" msgstr "" -#: lxc/main.go:361 +#: lxc/main.go:363 #, c-format msgid "Password for %s: " msgstr "" @@ -4352,7 +4347,7 @@ msgstr "" msgid "Perform an incremental copy" msgstr "" -#: lxc/remote.go:182 +#: lxc/remote.go:183 msgid "Please provide an alternate server address (empty to abort):" msgstr "" @@ -4364,7 +4359,7 @@ msgstr "" msgid "Please provide cluster member name: " msgstr "" -#: lxc/remote.go:462 +#: lxc/remote.go:463 msgid "Please type 'y', 'n' or the fingerprint:" msgstr "" @@ -4386,10 +4381,10 @@ msgstr "" #: lxc/config.go:1278 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/network_load_balancer.go:695 lxc/network_peer.go:611 +#: lxc/network_zone.go:557 lxc/network_zone.go:1149 lxc/profile.go:539 +#: lxc/project.go:316 lxc/storage.go:311 lxc/storage_bucket.go:349 +#: lxc/storage_bucket.go:1098 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 "" @@ -4398,7 +4393,7 @@ msgstr "" msgid "Pretty rendering (short for --format=pretty)" msgstr "" -#: lxc/main.go:94 +#: lxc/main.go:95 msgid "Print help" msgstr "" @@ -4406,7 +4401,7 @@ msgstr "" msgid "Print the raw response" msgstr "" -#: lxc/main.go:93 +#: lxc/main.go:94 msgid "Print version number" msgstr "" @@ -4495,7 +4490,7 @@ msgstr "" msgid "Project %s renamed to %s" msgstr "" -#: lxc/remote.go:106 +#: lxc/remote.go:107 msgid "Project to use for the remote" msgstr "" @@ -4593,7 +4588,7 @@ msgid "" "pool \"default\"." msgstr "" -#: lxc/remote.go:105 +#: lxc/remote.go:106 msgid "Public image server" msgstr "" @@ -4641,7 +4636,7 @@ msgstr "" msgid "RESOURCE" msgstr "" -#: lxc/storage_bucket.go:828 +#: lxc/storage_bucket.go:833 msgid "ROLE" msgstr "" @@ -4684,45 +4679,45 @@ msgstr "" msgid "Refreshing the image: %s" msgstr "" -#: lxc/remote.go:785 +#: lxc/remote.go:786 #, c-format msgid "Remote %s already exists" msgstr "" -#: lxc/project.go:769 lxc/remote.go:776 lxc/remote.go:849 lxc/remote.go:905 -#: lxc/remote.go:945 +#: lxc/project.go:769 lxc/remote.go:777 lxc/remote.go:850 lxc/remote.go:906 +#: lxc/remote.go:946 #, c-format msgid "Remote %s doesn't exist" msgstr "" -#: lxc/remote.go:301 +#: lxc/remote.go:302 #, c-format msgid "Remote %s exists as <%s>" msgstr "" -#: lxc/remote.go:857 +#: lxc/remote.go:858 #, c-format msgid "Remote %s is global and cannot be removed" msgstr "" -#: lxc/remote.go:780 lxc/remote.go:853 lxc/remote.go:949 +#: lxc/remote.go:781 lxc/remote.go:854 lxc/remote.go:950 #, c-format msgid "Remote %s is static and cannot be modified" msgstr "" -#: lxc/remote.go:290 +#: lxc/remote.go:291 msgid "Remote address must not be empty" msgstr "" -#: lxc/remote.go:101 +#: lxc/remote.go:102 msgid "Remote admin password" msgstr "" -#: lxc/remote.go:295 +#: lxc/remote.go:296 msgid "Remote names may not contain colons" msgstr "" -#: lxc/remote.go:102 +#: lxc/remote.go:103 msgid "Remote trust token" msgstr "" @@ -4748,7 +4743,7 @@ msgstr "" msgid "Remove a member from the cluster" msgstr "" -#: lxc/network_zone.go:1285 +#: lxc/network_zone.go:1290 msgid "Remove a network zone record entry" msgstr "" @@ -4756,7 +4751,7 @@ msgstr "" msgid "Remove aliases" msgstr "" -#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1025 +#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1030 msgid "Remove all ports that match" msgstr "" @@ -4764,15 +4759,15 @@ msgstr "" msgid "Remove all rules that match" msgstr "" -#: lxc/network_load_balancer.go:862 +#: lxc/network_load_balancer.go:867 msgid "Remove backend from a load balancer" msgstr "" -#: lxc/network_load_balancer.go:861 +#: lxc/network_load_balancer.go:866 msgid "Remove backends from a load balancer" msgstr "" -#: lxc/network_zone.go:1286 +#: lxc/network_zone.go:1291 msgid "Remove entries from a network zone record" msgstr "" @@ -4796,7 +4791,7 @@ msgstr "" msgid "Remove ports from a forward" msgstr "" -#: lxc/network_load_balancer.go:1023 lxc/network_load_balancer.go:1024 +#: lxc/network_load_balancer.go:1028 lxc/network_load_balancer.go:1029 msgid "Remove ports from a load balancer" msgstr "" @@ -4804,7 +4799,7 @@ msgstr "" msgid "Remove profiles from instances" msgstr "" -#: lxc/remote.go:827 lxc/remote.go:828 +#: lxc/remote.go:828 lxc/remote.go:829 msgid "Remove remotes" msgstr "" @@ -4861,7 +4856,7 @@ msgstr "" msgid "Rename projects" msgstr "" -#: lxc/remote.go:754 lxc/remote.go:755 +#: lxc/remote.go:755 lxc/remote.go:756 msgid "Rename remotes" msgstr "" @@ -4939,7 +4934,7 @@ msgid "Restrict the certificate to one or more projects" msgstr "" #: lxc/console.go:44 -msgid "Retrieve the instance's console log" +msgid "Retrieve the container's console log" msgstr "" #: lxc/init.go:347 @@ -4955,7 +4950,7 @@ msgstr "" msgid "Revoke cluster member join token" msgstr "" -#: lxc/storage_bucket.go:851 +#: lxc/storage_bucket.go:856 msgid "Role (admin or read-only)" msgstr "" @@ -5006,7 +5001,7 @@ msgstr "" msgid "STATE" msgstr "" -#: lxc/remote.go:736 +#: lxc/remote.go:737 msgid "STATIC" msgstr "" @@ -5030,11 +5025,11 @@ msgstr "" msgid "STP" msgstr "" -#: lxc/storage_bucket.go:853 +#: lxc/storage_bucket.go:858 msgid "Secret key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:909 +#: lxc/storage_bucket.go:914 #, c-format msgid "Secret key: %s" msgstr "" @@ -5043,19 +5038,19 @@ msgstr "" msgid "Send a raw query to LXD" msgstr "" -#: lxc/remote.go:104 +#: lxc/remote.go:105 msgid "Server authentication type (tls or oidc)" msgstr "" -#: lxc/remote.go:460 +#: lxc/remote.go:461 msgid "Server certificate NACKed by user" msgstr "" -#: lxc/remote.go:599 +#: lxc/remote.go:600 msgid "Server doesn't trust us after authentication" msgstr "" -#: lxc/remote.go:103 +#: lxc/remote.go:104 msgid "Server protocol (lxd or simplestreams)" msgstr "" @@ -5154,11 +5149,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_load_balancer.go:450 +#: lxc/network_load_balancer.go:455 msgid "Set network load balancer keys" msgstr "" -#: lxc/network_load_balancer.go:451 +#: lxc/network_load_balancer.go:456 msgid "" "Set network load balancer keys\n" "\n" @@ -5180,11 +5175,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:353 +#: lxc/network_zone.go:358 msgid "Set network zone configuration keys" msgstr "" -#: lxc/network_zone.go:354 +#: lxc/network_zone.go:359 msgid "" "Set network zone configuration keys\n" "\n" @@ -5193,7 +5188,7 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:951 lxc/network_zone.go:952 +#: lxc/network_zone.go:956 lxc/network_zone.go:957 msgid "Set network zone record configuration keys" msgstr "" @@ -5223,11 +5218,11 @@ msgid "" " lxc project set [:] " msgstr "" -#: lxc/storage_bucket.go:529 +#: lxc/storage_bucket.go:534 msgid "Set storage bucket configuration keys" msgstr "" -#: lxc/storage_bucket.go:530 +#: lxc/storage_bucket.go:535 msgid "" "Set storage bucket configuration keys\n" "\n" @@ -5262,7 +5257,7 @@ msgid "" " lxc storage volume set [:] [/] " msgstr "" -#: lxc/remote.go:923 lxc/remote.go:924 +#: lxc/remote.go:924 lxc/remote.go:925 msgid "Set the URL for the remote" msgstr "" @@ -5290,7 +5285,7 @@ msgstr "" msgid "Set the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:458 +#: lxc/network_load_balancer.go:463 msgid "Set the key as a network load balancer property" msgstr "" @@ -5302,11 +5297,11 @@ msgstr "" msgid "Set the key as a network property" msgstr "" -#: lxc/network_zone.go:361 +#: lxc/network_zone.go:366 msgid "Set the key as a network zone property" msgstr "" -#: lxc/network_zone.go:957 +#: lxc/network_zone.go:962 msgid "Set the key as a network zone record property" msgstr "" @@ -5318,7 +5313,7 @@ msgstr "" msgid "Set the key as a project property" msgstr "" -#: lxc/storage_bucket.go:537 +#: lxc/storage_bucket.go:542 msgid "Set the key as a storage bucket property" msgstr "" @@ -5338,11 +5333,11 @@ msgstr "" msgid "Setup SSH SFTP listener on address:port instead of mounting" msgstr "" -#: lxc/main.go:97 +#: lxc/main.go:98 msgid "Show all debug messages" msgstr "" -#: lxc/main.go:98 +#: lxc/main.go:99 msgid "Show all information messages" msgstr "" @@ -5411,7 +5406,7 @@ msgstr "" msgid "Show instance or server information" msgstr "" -#: lxc/main.go:271 lxc/main.go:272 +#: lxc/main.go:272 lxc/main.go:273 msgid "Show less common commands" msgstr "" @@ -5443,15 +5438,15 @@ msgstr "" msgid "Show network peer configurations" msgstr "" -#: lxc/network_zone.go:155 lxc/network_zone.go:156 +#: lxc/network_zone.go:156 lxc/network_zone.go:157 msgid "Show network zone configurations" msgstr "" -#: lxc/network_zone.go:758 +#: lxc/network_zone.go:763 msgid "Show network zone record configuration" msgstr "" -#: lxc/network_zone.go:759 +#: lxc/network_zone.go:764 msgid "Show network zone record configurations" msgstr "" @@ -5463,11 +5458,11 @@ msgstr "" msgid "Show project options" msgstr "" -#: lxc/storage_bucket.go:623 lxc/storage_bucket.go:624 +#: lxc/storage_bucket.go:628 lxc/storage_bucket.go:629 msgid "Show storage bucket configurations" msgstr "" -#: lxc/storage_bucket.go:1123 lxc/storage_bucket.go:1124 +#: lxc/storage_bucket.go:1128 lxc/storage_bucket.go:1129 msgid "Show storage bucket key configurations" msgstr "" @@ -5493,7 +5488,7 @@ msgid "" "that are granted via identity provider group mappings. \n" msgstr "" -#: lxc/remote.go:630 lxc/remote.go:631 +#: lxc/remote.go:631 lxc/remote.go:632 msgid "Show the default remote" msgstr "" @@ -5617,22 +5612,22 @@ msgstr "" msgid "Stopping the instance failed: %s" msgstr "" -#: lxc/storage_bucket.go:161 +#: lxc/storage_bucket.go:166 #, c-format msgid "Storage bucket %s created" msgstr "" -#: lxc/storage_bucket.go:228 +#: lxc/storage_bucket.go:233 #, c-format msgid "Storage bucket %s deleted" msgstr "" -#: lxc/storage_bucket.go:907 +#: lxc/storage_bucket.go:912 #, c-format msgid "Storage bucket key %s added" msgstr "" -#: lxc/storage_bucket.go:973 +#: lxc/storage_bucket.go:978 #, c-format msgid "Storage bucket key %s removed" msgstr "" @@ -5705,7 +5700,7 @@ msgstr "" msgid "Switch the current project" msgstr "" -#: lxc/remote.go:883 lxc/remote.go:884 +#: lxc/remote.go:884 lxc/remote.go:885 msgid "Switch the default remote" msgstr "" @@ -5820,7 +5815,7 @@ msgstr "" msgid "The property %q does not exist on the instance snapshot %s/%s: %v" msgstr "" -#: lxc/network_load_balancer.go:424 +#: lxc/network_load_balancer.go:429 #, c-format msgid "The property %q does not exist on the load balancer %q: %v" msgstr "" @@ -5845,12 +5840,12 @@ msgstr "" msgid "The property %q does not exist on the network peer %q: %v" msgstr "" -#: lxc/network_zone.go:246 +#: lxc/network_zone.go:247 #, c-format msgid "The property %q does not exist on the network zone %q: %v" msgstr "" -#: lxc/network_zone.go:845 +#: lxc/network_zone.go:850 #, c-format msgid "The property %q does not exist on the network zone record %q: %v" msgstr "" @@ -5865,7 +5860,7 @@ msgstr "" msgid "The property %q does not exist on the project %q: %v" msgstr "" -#: lxc/storage_bucket.go:426 +#: lxc/storage_bucket.go:431 #, c-format msgid "The property %q does not exist on the storage bucket %q: %v" msgstr "" @@ -5919,7 +5914,7 @@ msgstr "" msgid "This LXD server is not available on the network" msgstr "" -#: lxc/main.go:293 +#: lxc/main.go:294 msgid "" "This client hasn't been configured to use a remote LXD server yet.\n" "As your platform can't run native Linux instances, you must connect to a " @@ -5951,11 +5946,11 @@ msgstr "" msgid "To create a new network, use: lxc network create" msgstr "" -#: lxc/console.go:210 +#: lxc/console.go:215 msgid "To detach from the console, press: +a q" msgstr "" -#: lxc/main.go:403 +#: lxc/main.go:406 msgid "" "To start your first container, try: lxc launch ubuntu:24.04\n" "Or for a virtual machine: lxc launch ubuntu:24.04 --vm" @@ -6053,7 +6048,7 @@ msgstr "" msgid "UPLOAD DATE" msgstr "" -#: lxc/cluster.go:184 lxc/remote.go:732 +#: lxc/cluster.go:184 lxc/remote.go:733 msgid "URL" msgstr "" @@ -6062,7 +6057,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:679 lxc/project.go:506 +#: lxc/network_zone.go:141 lxc/profile.go:679 lxc/project.go:506 #: lxc/storage.go:647 lxc/storage_volume.go:1564 msgid "USED BY" msgstr "" @@ -6081,7 +6076,7 @@ msgstr "" msgid "Unable to create a temporary file: %v" msgstr "" -#: lxc/remote.go:213 lxc/remote.go:247 +#: lxc/remote.go:214 lxc/remote.go:248 msgid "Unavailable remote server" msgstr "" @@ -6101,7 +6096,7 @@ msgstr "" msgid "Unknown column shorthand char '%c' in '%s'" msgstr "" -#: lxc/console.go:159 +#: lxc/console.go:164 #, c-format msgid "Unknown console type %q" msgstr "" @@ -6161,11 +6156,11 @@ msgstr "" msgid "Unset network forward keys" msgstr "" -#: lxc/network_load_balancer.go:548 +#: lxc/network_load_balancer.go:553 msgid "Unset network load balancer configuration keys" msgstr "" -#: lxc/network_load_balancer.go:549 +#: lxc/network_load_balancer.go:554 msgid "Unset network load balancer keys" msgstr "" @@ -6177,11 +6172,11 @@ msgstr "" msgid "Unset network peer keys" msgstr "" -#: lxc/network_zone.go:433 lxc/network_zone.go:434 +#: lxc/network_zone.go:438 lxc/network_zone.go:439 msgid "Unset network zone configuration keys" msgstr "" -#: lxc/network_zone.go:1027 lxc/network_zone.go:1028 +#: lxc/network_zone.go:1032 lxc/network_zone.go:1033 msgid "Unset network zone record configuration keys" msgstr "" @@ -6193,7 +6188,7 @@ msgstr "" msgid "Unset project configuration keys" msgstr "" -#: lxc/storage_bucket.go:692 lxc/storage_bucket.go:693 +#: lxc/storage_bucket.go:697 lxc/storage_bucket.go:698 msgid "Unset storage bucket configuration keys" msgstr "" @@ -6217,7 +6212,7 @@ msgstr "" msgid "Unset the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:552 +#: lxc/network_load_balancer.go:557 msgid "Unset the key as a network load balancer property" msgstr "" @@ -6229,11 +6224,11 @@ msgstr "" msgid "Unset the key as a network property" msgstr "" -#: lxc/network_zone.go:437 +#: lxc/network_zone.go:442 msgid "Unset the key as a network zone property" msgstr "" -#: lxc/network_zone.go:1031 +#: lxc/network_zone.go:1036 msgid "Unset the key as a network zone record property" msgstr "" @@ -6245,7 +6240,7 @@ msgstr "" msgid "Unset the key as a project property" msgstr "" -#: lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:701 msgid "Unset the key as a storage bucket property" msgstr "" @@ -6307,7 +6302,7 @@ msgid "" "Use storage driver optimized format (can only be restored on a similar pool)" msgstr "" -#: lxc/main.go:100 +#: lxc/main.go:101 msgid "Use with help or --help to view sub-commands" msgstr "" @@ -6404,7 +6399,7 @@ msgstr "" #: lxc/network.go:959 lxc/operation.go:156 lxc/project.go:458 #: lxc/project.go:463 lxc/project.go:468 lxc/project.go:473 lxc/project.go:478 -#: lxc/project.go:483 lxc/remote.go:693 lxc/remote.go:698 lxc/remote.go:703 +#: lxc/project.go:483 lxc/remote.go:694 lxc/remote.go:699 lxc/remote.go:704 msgid "YES" msgstr "" @@ -6439,7 +6434,7 @@ 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/network.go:909 lxc/network_acl.go:91 lxc/network_zone.go:83 #: 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 "[:]" @@ -6502,19 +6497,19 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:154 lxc/network_zone.go:463 lxc/network_zone.go:581 +#: lxc/network_zone.go:155 lxc/network_zone.go:468 lxc/network_zone.go:586 msgid "[:]" msgstr "" -#: lxc/network_zone.go:209 lxc/network_zone.go:432 +#: lxc/network_zone.go:210 lxc/network_zone.go:437 msgid "[:] " msgstr "" -#: lxc/network_zone.go:352 +#: lxc/network_zone.go:357 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:269 +#: lxc/network_zone.go:270 msgid "[:] [key=value...]" msgstr "" @@ -6760,30 +6755,30 @@ msgstr "" #: lxc/network_forward.go:169 lxc/network_forward.go:574 #: lxc/network_forward.go:715 lxc/network_load_balancer.go:171 -#: lxc/network_load_balancer.go:577 lxc/network_load_balancer.go:719 +#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:724 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:860 +#: lxc/network_load_balancer.go:865 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:796 +#: lxc/network_load_balancer.go:801 msgid "" "[:] " "[]" msgstr "" #: lxc/network_forward.go:377 lxc/network_forward.go:544 -#: lxc/network_load_balancer.go:381 lxc/network_load_balancer.go:547 +#: lxc/network_load_balancer.go:386 lxc/network_load_balancer.go:552 msgid "[:] " msgstr "" -#: lxc/network_forward.go:446 lxc/network_load_balancer.go:449 +#: lxc/network_forward.go:446 lxc/network_load_balancer.go:454 msgid "[:] =..." msgstr "" -#: lxc/network_load_balancer.go:961 +#: lxc/network_load_balancer.go:966 msgid "" "[:] " "[,...]" @@ -6795,7 +6790,7 @@ msgid "" " []" msgstr "" -#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1022 +#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1027 msgid "[:] [] []" msgstr "" @@ -6846,7 +6841,7 @@ msgid "[:]" msgstr "" #: lxc/storage.go:167 lxc/storage.go:218 lxc/storage.go:412 lxc/storage.go:759 -#: lxc/storage_bucket.go:449 +#: lxc/storage_bucket.go:454 msgid "[:]" msgstr "" @@ -6854,18 +6849,18 @@ msgstr "" msgid "[:] []" msgstr "" -#: lxc/storage_bucket.go:180 lxc/storage_bucket.go:242 -#: lxc/storage_bucket.go:622 lxc/storage_bucket.go:764 +#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:247 +#: lxc/storage_bucket.go:627 lxc/storage_bucket.go:769 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:375 lxc/storage_bucket.go:691 -#: lxc/storage_bucket.go:845 lxc/storage_bucket.go:923 -#: lxc/storage_bucket.go:987 lxc/storage_bucket.go:1122 +#: lxc/storage_bucket.go:380 lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:850 lxc/storage_bucket.go:928 +#: lxc/storage_bucket.go:992 lxc/storage_bucket.go:1127 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:528 +#: lxc/storage_bucket.go:533 msgid "[:] =..." msgstr "" @@ -7009,27 +7004,27 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:686 +#: lxc/network_zone.go:691 msgid "[:]" msgstr "" -#: lxc/network_zone.go:757 lxc/network_zone.go:1056 lxc/network_zone.go:1173 +#: lxc/network_zone.go:762 lxc/network_zone.go:1061 lxc/network_zone.go:1178 msgid "[:] " msgstr "" -#: lxc/network_zone.go:809 lxc/network_zone.go:1026 +#: lxc/network_zone.go:814 lxc/network_zone.go:1031 msgid "[:] " msgstr "" -#: lxc/network_zone.go:950 +#: lxc/network_zone.go:955 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:1238 lxc/network_zone.go:1284 +#: lxc/network_zone.go:1243 lxc/network_zone.go:1289 msgid "[:] " msgstr "" -#: lxc/network_zone.go:868 +#: lxc/network_zone.go:873 msgid "[:] [key=value...]" msgstr "" @@ -7053,7 +7048,7 @@ msgstr "" msgid "[:][] [...]" msgstr "" -#: lxc/remote.go:88 +#: lxc/remote.go:89 msgid "[] " msgstr "" @@ -7061,7 +7056,7 @@ msgstr "" msgid "[[:]]" msgstr "" -#: lxc/project.go:488 lxc/remote.go:722 +#: lxc/project.go:488 lxc/remote.go:723 msgid "current" msgstr "" @@ -7324,6 +7319,23 @@ msgid "" " Create a new OVN network called bar using baz as its uplink network" msgstr "" +#: lxc/network_load_balancer.go:239 +msgid "" +"lxc network load-balancer create n1 127.0.0.1\n" +"\n" +"lxc network load-balancer create n1 127.0.0.1 < config.yaml\n" +" Create network load-balancer for network n1 with configuration from " +"config.yaml" +msgstr "" + +#: lxc/network_zone.go:273 +msgid "" +"lxc network zone create z1\n" +"\n" +"lxc network zone create z1 < config.yaml\n" +" Create network zone z1 with configuration from config.yaml" +msgstr "" + #: lxc/operation.go:195 msgid "" "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n" @@ -7394,26 +7406,36 @@ msgid "" " Restore the snapshot." msgstr "" -#: lxc/storage_bucket.go:245 +#: lxc/storage_bucket.go:84 +msgid "" +"lxc storage bucket create p1 b01\n" +"\tCreate a new storage bucket name b01 in storage pool p1\n" +"\n" +"lxc storage bucket create p1 b01 < config.yaml\n" +"\tCreate a new storage bucket name b01 in storage pool p1 using the content " +"of config.yaml" +msgstr "" + +#: lxc/storage_bucket.go:250 msgid "" "lxc storage bucket edit [:] < bucket.yaml\n" " Update a storage bucket using the content of bucket.yaml." msgstr "" -#: lxc/storage_bucket.go:990 +#: lxc/storage_bucket.go:995 msgid "" "lxc storage bucket edit [:] < key.yaml\n" " Update a storage bucket key using the content of key.yaml." msgstr "" -#: lxc/storage_bucket.go:1125 +#: lxc/storage_bucket.go:1130 msgid "" "lxc storage bucket key show default data foo\n" " Will show the properties of a bucket key called \"foo\" for a bucket " "called \"data\" in the \"default\" pool." msgstr "" -#: lxc/storage_bucket.go:625 +#: lxc/storage_bucket.go:630 msgid "" "lxc storage bucket show default data\n" " Will show the properties of a bucket called \"data\" in the \"default\" " @@ -7432,7 +7454,7 @@ msgid "" "\t\tCreate a new custom volume using backup0.tar.gz as the source." msgstr "" -#: lxc/remote.go:459 +#: lxc/remote.go:460 msgid "n" msgstr "" @@ -7444,7 +7466,7 @@ msgstr "" msgid "no" msgstr "" -#: lxc/remote.go:452 +#: lxc/remote.go:453 msgid "ok (y/n/[fingerprint])?" msgstr "" @@ -7481,7 +7503,7 @@ msgstr "" msgid "used by" msgstr "" -#: lxc/remote.go:461 +#: lxc/remote.go:462 msgid "y" msgstr "" diff --git a/po/fi.po b/po/fi.po index f2ae3d0d5fec..ab140a1918c9 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-08-20 09:31+0100\n" +"POT-Creation-Date: 2024-08-30 09:27+0100\n" "PO-Revision-Date: 2022-03-10 15:08+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Finnish " msgstr "" -#: lxc/remote.go:825 lxc/remote.go:882 +#: lxc/remote.go:826 lxc/remote.go:883 msgid "" msgstr "" -#: lxc/remote.go:922 +#: lxc/remote.go:923 msgid " " msgstr "" -#: lxc/remote.go:752 +#: lxc/remote.go:753 msgid " " msgstr "" @@ -556,7 +556,7 @@ msgstr "" msgid "ARCHITECTURE" msgstr "" -#: lxc/remote.go:734 +#: lxc/remote.go:735 msgid "AUTH TYPE" msgstr "" @@ -564,15 +564,15 @@ msgstr "" msgid "AUTHENTICATION METHOD" msgstr "" -#: lxc/remote.go:100 +#: lxc/remote.go:101 msgid "Accept certificate" msgstr "" -#: lxc/storage_bucket.go:852 +#: lxc/storage_bucket.go:857 msgid "Access key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:908 +#: lxc/storage_bucket.go:913 #, c-format msgid "Access key: %s" msgstr "" @@ -606,19 +606,19 @@ msgstr "" msgid "Add a group to an identity provider group" msgstr "" -#: lxc/network_zone.go:1239 +#: lxc/network_zone.go:1244 msgid "Add a network zone record entry" msgstr "" -#: lxc/network_load_balancer.go:798 +#: lxc/network_load_balancer.go:803 msgid "Add backend to a load balancer" msgstr "" -#: lxc/network_load_balancer.go:797 +#: lxc/network_load_balancer.go:802 msgid "Add backends to a load balancer" msgstr "" -#: lxc/network_zone.go:1240 +#: lxc/network_zone.go:1245 msgid "Add entries to a network zone record" msgstr "" @@ -634,11 +634,11 @@ msgstr "" msgid "Add new aliases" msgstr "" -#: lxc/remote.go:89 +#: lxc/remote.go:90 msgid "Add new remote servers" msgstr "" -#: lxc/remote.go:90 +#: lxc/remote.go:91 msgid "" "Add new remote servers\n" "\n" @@ -679,7 +679,7 @@ msgstr "" msgid "Add ports to a forward" msgstr "" -#: lxc/network_load_balancer.go:962 lxc/network_load_balancer.go:963 +#: lxc/network_load_balancer.go:967 lxc/network_load_balancer.go:968 msgid "Add ports to a load balancer" msgstr "" @@ -700,17 +700,17 @@ msgstr "" msgid "Address: %s" msgstr "" -#: lxc/storage_bucket.go:164 +#: lxc/storage_bucket.go:169 #, c-format msgid "Admin access key: %s" msgstr "" -#: lxc/remote.go:566 +#: lxc/remote.go:567 #, c-format msgid "Admin password (or token) for %s:" msgstr "" -#: lxc/storage_bucket.go:165 +#: lxc/storage_bucket.go:170 #, c-format msgid "Admin secret key: %s" msgstr "" @@ -742,7 +742,7 @@ msgstr "" msgid "All projects" msgstr "" -#: lxc/remote.go:181 +#: lxc/remote.go:182 msgid "All server addresses are unavailable" msgstr "" @@ -765,7 +765,7 @@ msgstr "" msgid "Are you sure you want to %s cluster member %q? (yes/no) [default=no]: " msgstr "" -#: lxc/console.go:383 +#: lxc/console.go:388 msgid "As neither could be found, the raw SPICE socket can be found at:" msgstr "" @@ -813,7 +813,7 @@ msgid "" "as well as retrieve past log entries from it." msgstr "" -#: lxc/remote.go:548 +#: lxc/remote.go:549 #, c-format msgid "Authentication type '%s' not supported by server" msgstr "" @@ -832,11 +832,11 @@ msgstr "" msgid "Auto update: %s" msgstr "" -#: lxc/network_forward.go:240 lxc/network_load_balancer.go:242 +#: lxc/network_forward.go:240 lxc/network_load_balancer.go:247 msgid "Auto-allocate an IPv4 or IPv6 listen address. One of 'ipv4', 'ipv6'." msgstr "" -#: lxc/remote.go:136 +#: lxc/remote.go:137 msgid "Available projects:" msgstr "" @@ -868,8 +868,8 @@ msgid "Bad device override syntax, expecting ,=: %s" msgstr "" #: lxc/network.go:333 lxc/network_acl.go:382 lxc/network_forward.go:293 -#: lxc/network_load_balancer.go:296 lxc/network_peer.go:280 -#: lxc/network_zone.go:324 lxc/network_zone.go:922 lxc/storage_bucket.go:136 +#: lxc/network_load_balancer.go:301 lxc/network_peer.go:280 +#: lxc/network_zone.go:329 lxc/network_zone.go:927 lxc/storage_bucket.go:141 #, c-format msgid "Bad key/value pair: %s" msgstr "" @@ -991,7 +991,7 @@ msgstr "" msgid "Can't read from stdin: %w" msgstr "" -#: lxc/remote.go:861 +#: lxc/remote.go:862 msgid "Can't remove the default remote" msgstr "" @@ -1057,15 +1057,14 @@ msgstr "" msgid "Certificate add token for %s deleted" msgstr "" -#: lxc/remote.go:218 -#, c-format -msgid "" -"Certificate fingerprint mismatch between certificate token and server %q" +#: lxc/remote.go:452 +msgid "Certificate fingerprint" msgstr "" -#: lxc/remote.go:451 +#: lxc/remote.go:219 #, c-format -msgid "Certificate fingerprint: %s" +msgid "" +"Certificate fingerprint mismatch between certificate token and server %q" msgstr "" #: lxc/network.go:893 @@ -1077,7 +1076,7 @@ msgstr "" msgid "Client %s certificate add token:" msgstr "" -#: lxc/remote.go:603 +#: lxc/remote.go:604 msgid "Client certificate now trusted by server:" msgstr "" @@ -1139,18 +1138,18 @@ msgstr "" #: lxc/network_forward.go:456 lxc/network_forward.go:579 #: lxc/network_forward.go:721 lxc/network_forward.go:798 #: lxc/network_forward.go:864 lxc/network_load_balancer.go:176 -#: lxc/network_load_balancer.go:241 lxc/network_load_balancer.go:459 -#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:725 -#: lxc/network_load_balancer.go:801 lxc/network_load_balancer.go:865 -#: lxc/network_load_balancer.go:966 lxc/network_load_balancer.go:1028 +#: lxc/network_load_balancer.go:246 lxc/network_load_balancer.go:464 +#: lxc/network_load_balancer.go:587 lxc/network_load_balancer.go:730 +#: lxc/network_load_balancer.go:806 lxc/network_load_balancer.go:870 +#: lxc/network_load_balancer.go:971 lxc/network_load_balancer.go:1033 #: lxc/storage.go:99 lxc/storage.go:347 lxc/storage.go:418 lxc/storage.go:671 -#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:85 -#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:248 -#: lxc/storage_bucket.go:379 lxc/storage_bucket.go:536 -#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:695 -#: lxc/storage_bucket.go:770 lxc/storage_bucket.go:850 -#: lxc/storage_bucket.go:928 lxc/storage_bucket.go:993 -#: lxc/storage_bucket.go:1129 lxc/storage_volume.go:358 +#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:90 +#: lxc/storage_bucket.go:190 lxc/storage_bucket.go:253 +#: lxc/storage_bucket.go:384 lxc/storage_bucket.go:541 +#: lxc/storage_bucket.go:634 lxc/storage_bucket.go:700 +#: lxc/storage_bucket.go:775 lxc/storage_bucket.go:855 +#: lxc/storage_bucket.go:933 lxc/storage_bucket.go:998 +#: lxc/storage_bucket.go:1134 lxc/storage_volume.go:358 #: lxc/storage_volume.go:560 lxc/storage_volume.go:639 #: lxc/storage_volume.go:883 lxc/storage_volume.go:1097 #: lxc/storage_volume.go:1210 lxc/storage_volume.go:1678 @@ -1178,11 +1177,11 @@ msgstr "" msgid "Columns" msgstr "" -#: lxc/main.go:81 +#: lxc/main.go:82 msgid "Command line client for LXD" msgstr "" -#: lxc/main.go:82 +#: lxc/main.go:83 msgid "" "Command line client for LXD\n" "\n" @@ -1214,19 +1213,15 @@ msgstr "" #: lxc/config.go:347 lxc/config.go:1277 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/network_load_balancer.go:694 lxc/network_peer.go:610 +#: lxc/network_zone.go:556 lxc/network_zone.go:1148 lxc/profile.go:538 +#: lxc/project.go:315 lxc/storage.go:310 lxc/storage_bucket.go:348 +#: lxc/storage_bucket.go:1097 lxc/storage_volume.go:1016 #: lxc/storage_volume.go:1048 #, c-format msgid "Config parsing error: %s" msgstr "" -#: lxc/console.go:140 -msgid "Console log:" -msgstr "" - #: lxc/storage_volume.go:561 msgid "Content type, block or filesystem" msgstr "" @@ -1329,12 +1324,12 @@ msgstr "" msgid "Cores:" msgstr "" -#: lxc/remote.go:486 +#: lxc/remote.go:487 #, c-format msgid "Could not close server cert file %q: %w" msgstr "" -#: lxc/remote.go:224 lxc/remote.go:470 +#: lxc/remote.go:225 lxc/remote.go:471 msgid "Could not create server cert dir" msgstr "" @@ -1373,12 +1368,12 @@ msgstr "" msgid "Could not write new remote certificate for remote '%s' with error: %v" msgstr "" -#: lxc/remote.go:481 +#: lxc/remote.go:482 #, c-format msgid "Could not write server cert file %q: %w" msgstr "" -#: lxc/network_zone.go:1327 +#: lxc/network_zone.go:1332 msgid "Couldn't find a matching entry" msgstr "" @@ -1430,7 +1425,7 @@ msgstr "" msgid "Create instances from images" msgstr "" -#: lxc/storage_bucket.go:846 lxc/storage_bucket.go:847 +#: lxc/storage_bucket.go:851 lxc/storage_bucket.go:852 msgid "Create key for a storage bucket" msgstr "" @@ -1462,11 +1457,11 @@ msgstr "" msgid "Create new network peering" msgstr "" -#: lxc/network_zone.go:869 lxc/network_zone.go:870 +#: lxc/network_zone.go:874 lxc/network_zone.go:875 msgid "Create new network zone record" msgstr "" -#: lxc/network_zone.go:270 lxc/network_zone.go:271 +#: lxc/network_zone.go:271 lxc/network_zone.go:272 msgid "Create new network zones" msgstr "" @@ -1517,9 +1512,9 @@ msgstr "" #: 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/network_zone.go:140 lxc/network_zone.go:747 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_bucket.go:512 lxc/storage_bucket.go:832 #: lxc/storage_volume.go:1562 msgid "DESCRIPTION" msgstr "" @@ -1584,7 +1579,7 @@ msgstr "" msgid "Delete instances and snapshots" msgstr "" -#: lxc/storage_bucket.go:924 lxc/storage_bucket.go:925 +#: lxc/storage_bucket.go:929 lxc/storage_bucket.go:930 msgid "Delete key from a storage bucket" msgstr "" @@ -1596,7 +1591,7 @@ msgstr "" msgid "Delete network forwards" msgstr "" -#: lxc/network_load_balancer.go:721 lxc/network_load_balancer.go:722 +#: lxc/network_load_balancer.go:726 lxc/network_load_balancer.go:727 msgid "Delete network load balancers" msgstr "" @@ -1604,11 +1599,11 @@ msgstr "" msgid "Delete network peerings" msgstr "" -#: lxc/network_zone.go:1175 lxc/network_zone.go:1176 +#: lxc/network_zone.go:1180 lxc/network_zone.go:1181 msgid "Delete network zone record" msgstr "" -#: lxc/network_zone.go:583 lxc/network_zone.go:584 +#: lxc/network_zone.go:588 lxc/network_zone.go:589 msgid "Delete network zones" msgstr "" @@ -1624,7 +1619,7 @@ msgstr "" msgid "Delete projects" msgstr "" -#: lxc/storage_bucket.go:182 lxc/storage_bucket.go:183 +#: lxc/storage_bucket.go:187 lxc/storage_bucket.go:188 msgid "Delete storage buckets" msgstr "" @@ -1680,7 +1675,7 @@ msgstr "" #: 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/info.go:32 lxc/init.go:43 lxc/launch.go:24 lxc/list.go:48 lxc/main.go:83 #: 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 @@ -1699,22 +1694,22 @@ msgstr "" #: 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_load_balancer.go:238 lxc/network_load_balancer.go:388 +#: lxc/network_load_balancer.go:456 lxc/network_load_balancer.go:554 +#: lxc/network_load_balancer.go:584 lxc/network_load_balancer.go:727 +#: lxc/network_load_balancer.go:788 lxc/network_load_balancer.go:803 +#: lxc/network_load_balancer.go:867 lxc/network_load_balancer.go:953 +#: lxc/network_load_balancer.go:968 lxc/network_load_balancer.go:1029 #: 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/network_zone.go:29 lxc/network_zone.go:86 lxc/network_zone.go:157 +#: lxc/network_zone.go:212 lxc/network_zone.go:272 lxc/network_zone.go:359 +#: lxc/network_zone.go:439 lxc/network_zone.go:470 lxc/network_zone.go:589 +#: lxc/network_zone.go:637 lxc/network_zone.go:694 lxc/network_zone.go:764 +#: lxc/network_zone.go:816 lxc/network_zone.go:875 lxc/network_zone.go:957 +#: lxc/network_zone.go:1033 lxc/network_zone.go:1063 lxc/network_zone.go:1181 +#: lxc/network_zone.go:1230 lxc/network_zone.go:1245 lxc/network_zone.go:1291 #: 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 @@ -1723,19 +1718,19 @@ msgstr "" #: 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:631 lxc/remote.go:669 lxc/remote.go:755 lxc/remote.go:828 -#: lxc/remote.go:884 lxc/remote.go:924 lxc/rename.go:21 lxc/restore.go:24 +#: lxc/query.go:34 lxc/rebuild.go:27 lxc/remote.go:35 lxc/remote.go:91 +#: lxc/remote.go:632 lxc/remote.go:670 lxc/remote.go:756 lxc/remote.go:829 +#: lxc/remote.go:885 lxc/remote.go:925 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_bucket.go:29 lxc/storage_bucket.go:83 lxc/storage_bucket.go:188 +#: lxc/storage_bucket.go:249 lxc/storage_bucket.go:382 +#: lxc/storage_bucket.go:458 lxc/storage_bucket.go:535 +#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:698 +#: lxc/storage_bucket.go:732 lxc/storage_bucket.go:773 +#: lxc/storage_bucket.go:852 lxc/storage_bucket.go:930 +#: lxc/storage_bucket.go:994 lxc/storage_bucket.go:1129 #: 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 @@ -1871,7 +1866,7 @@ msgstr "" msgid "Don't require user confirmation for using --force" msgstr "" -#: lxc/main.go:99 +#: lxc/main.go:100 msgid "Don't show progress information" msgstr "" @@ -1884,7 +1879,7 @@ msgstr "" msgid "Driver: %v (%v)" msgstr "" -#: lxc/network_zone.go:743 +#: lxc/network_zone.go:748 msgid "ENTRIES" msgstr "" @@ -1962,7 +1957,7 @@ msgstr "" msgid "Edit network forward configurations as YAML" msgstr "" -#: lxc/network_load_balancer.go:578 lxc/network_load_balancer.go:579 +#: lxc/network_load_balancer.go:583 lxc/network_load_balancer.go:584 msgid "Edit network load balancer configurations as YAML" msgstr "" @@ -1970,11 +1965,11 @@ msgstr "" msgid "Edit network peer configurations as YAML" msgstr "" -#: lxc/network_zone.go:464 lxc/network_zone.go:465 +#: lxc/network_zone.go:469 lxc/network_zone.go:470 msgid "Edit network zone configurations as YAML" msgstr "" -#: lxc/network_zone.go:1057 lxc/network_zone.go:1058 +#: lxc/network_zone.go:1062 lxc/network_zone.go:1063 msgid "Edit network zone record configurations as YAML" msgstr "" @@ -1986,11 +1981,11 @@ msgstr "" msgid "Edit project configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:243 lxc/storage_bucket.go:244 +#: lxc/storage_bucket.go:248 lxc/storage_bucket.go:249 msgid "Edit storage bucket configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:988 lxc/storage_bucket.go:989 +#: lxc/storage_bucket.go:993 lxc/storage_bucket.go:994 msgid "Edit storage bucket key as YAML" msgstr "" @@ -2031,7 +2026,7 @@ msgid "" " for the address if not yet set." msgstr "" -#: lxc/network_zone.go:1242 +#: lxc/network_zone.go:1247 msgid "Entry TTL" msgstr "" @@ -2060,9 +2055,9 @@ msgstr "" #: lxc/cluster.go:414 lxc/config.go:624 lxc/config.go:656 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/network_load_balancer.go:527 lxc/network_peer.go:463 +#: lxc/network_zone.go:414 lxc/network_zone.go:1008 lxc/profile.go:876 +#: lxc/project.go:634 lxc/storage.go:727 lxc/storage_bucket.go:602 #: lxc/storage_volume.go:1947 lxc/storage_volume.go:1985 #, c-format msgid "Error setting properties: %v" @@ -2074,10 +2069,10 @@ 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/network_forward.go:513 lxc/network_load_balancer.go:521 +#: lxc/network_peer.go:457 lxc/network_zone.go:408 lxc/network_zone.go:1002 #: lxc/profile.go:870 lxc/project.go:628 lxc/storage.go:721 -#: lxc/storage_bucket.go:591 lxc/storage_volume.go:1941 +#: lxc/storage_bucket.go:596 lxc/storage_volume.go:1941 #: lxc/storage_volume.go:1979 #, c-format msgid "Error unsetting property: %v" @@ -2263,7 +2258,7 @@ msgstr "" msgid "Failed parsing SSH host key: %w" msgstr "" -#: lxc/console.go:361 +#: lxc/console.go:366 #, c-format msgid "Failed starting command: %w" msgstr "" @@ -2278,11 +2273,11 @@ msgstr "" msgid "Failed to accept incoming connection: %w" msgstr "" -#: lxc/remote.go:190 +#: lxc/remote.go:191 msgid "Failed to add remote" msgstr "" -#: lxc/remote.go:241 +#: lxc/remote.go:242 #, c-format msgid "Failed to close server cert file %q: %w" msgstr "" @@ -2292,7 +2287,7 @@ msgstr "" msgid "Failed to connect to cluster member: %w" msgstr "" -#: lxc/remote.go:231 +#: lxc/remote.go:232 #, c-format msgid "Failed to create %q: %w" msgstr "" @@ -2302,12 +2297,12 @@ msgstr "" msgid "Failed to create alias %s: %w" msgstr "" -#: lxc/remote.go:256 +#: lxc/remote.go:257 #, c-format msgid "Failed to create certificate: %w" msgstr "" -#: lxc/remote.go:263 +#: lxc/remote.go:264 #, c-format msgid "Failed to find project: %w" msgstr "" @@ -2332,7 +2327,7 @@ msgstr "" msgid "Failed to walk path for %s: %s" msgstr "" -#: lxc/remote.go:236 +#: lxc/remote.go:237 #, c-format msgid "Failed to write server cert file %q: %w" msgstr "" @@ -2341,7 +2336,7 @@ msgstr "" msgid "Fast mode (same as --columns=nsacPt)" msgstr "" -#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:115 +#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:116 #: lxc/operation.go:136 msgid "Filtering isn't supported yet" msgstr "" @@ -2379,7 +2374,7 @@ msgstr "" msgid "Force the removal of running instances" msgstr "" -#: lxc/main.go:95 +#: lxc/main.go:96 msgid "Force using the local unix socket" msgstr "" @@ -2413,10 +2408,10 @@ msgstr "" #: 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/network_peer.go:84 lxc/network_zone.go:89 lxc/network_zone.go:697 #: lxc/operation.go:108 lxc/profile.go:637 lxc/project.go:412 -#: lxc/project.go:804 lxc/remote.go:673 lxc/storage.go:588 -#: lxc/storage_bucket.go:454 lxc/storage_bucket.go:769 +#: lxc/project.go:804 lxc/remote.go:674 lxc/storage.go:588 +#: lxc/storage_bucket.go:459 lxc/storage_bucket.go:774 #: lxc/storage_volume.go:1446 lxc/warning.go:93 msgid "Format (csv|json|table|yaml|compact)" msgstr "" @@ -2453,7 +2448,7 @@ msgstr "" msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)" msgstr "" -#: lxc/remote.go:737 +#: lxc/remote.go:738 msgid "GLOBAL" msgstr "" @@ -2473,7 +2468,7 @@ msgstr "" msgid "Generate manpages for all commands" msgstr "" -#: lxc/remote.go:159 lxc/remote.go:397 +#: lxc/remote.go:160 lxc/remote.go:398 msgid "Generating a client certificate. This may take a minute..." msgstr "" @@ -2505,7 +2500,7 @@ msgstr "" msgid "Get the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:386 +#: lxc/network_load_balancer.go:391 msgid "Get the key as a network load balancer property" msgstr "" @@ -2517,11 +2512,11 @@ msgstr "" msgid "Get the key as a network property" msgstr "" -#: lxc/network_zone.go:214 +#: lxc/network_zone.go:215 msgid "Get the key as a network zone property" msgstr "" -#: lxc/network_zone.go:814 +#: lxc/network_zone.go:819 msgid "Get the key as a network zone record property" msgstr "" @@ -2533,7 +2528,7 @@ msgstr "" msgid "Get the key as a project property" msgstr "" -#: lxc/storage_bucket.go:380 +#: lxc/storage_bucket.go:385 msgid "Get the key as a storage bucket property" msgstr "" @@ -2573,7 +2568,7 @@ msgstr "" msgid "Get values for network forward configuration keys" msgstr "" -#: lxc/network_load_balancer.go:382 lxc/network_load_balancer.go:383 +#: lxc/network_load_balancer.go:387 lxc/network_load_balancer.go:388 msgid "Get values for network load balancer configuration keys" msgstr "" @@ -2581,11 +2576,11 @@ msgstr "" msgid "Get values for network peer configuration keys" msgstr "" -#: lxc/network_zone.go:210 lxc/network_zone.go:211 +#: lxc/network_zone.go:211 lxc/network_zone.go:212 msgid "Get values for network zone configuration keys" msgstr "" -#: lxc/network_zone.go:810 lxc/network_zone.go:811 +#: lxc/network_zone.go:815 lxc/network_zone.go:816 msgid "Get values for network zone record configuration keys" msgstr "" @@ -2597,7 +2592,7 @@ msgstr "" msgid "Get values for project configuration keys" msgstr "" -#: lxc/storage_bucket.go:376 lxc/storage_bucket.go:377 +#: lxc/storage_bucket.go:381 lxc/storage_bucket.go:382 msgid "Get values for storage bucket configuration keys" msgstr "" @@ -2737,7 +2732,7 @@ msgstr "" msgid "If the snapshot name already exists, delete and create a new one" msgstr "" -#: lxc/main.go:398 +#: lxc/main.go:400 msgid "" "If this is your first time running LXD on this machine, you should also run: " "lxd init" @@ -2894,7 +2889,7 @@ msgstr "" msgid "Instance type" msgstr "" -#: lxc/remote.go:349 +#: lxc/remote.go:350 #, c-format msgid "Invalid URL scheme \"%s\" in \"%s\"" msgstr "" @@ -2966,7 +2961,7 @@ msgstr "" msgid "Invalid new snapshot name, parent volume must be the same as source" msgstr "" -#: lxc/main.go:498 +#: lxc/main.go:502 msgid "Invalid number of arguments" msgstr "" @@ -2975,7 +2970,7 @@ msgstr "" msgid "Invalid path %s" msgstr "" -#: lxc/remote.go:338 +#: lxc/remote.go:339 #, c-format msgid "Invalid protocol: %s" msgstr "" @@ -3023,7 +3018,7 @@ msgstr "" #: lxc/list.go:597 lxc/network.go:1059 lxc/network_forward.go:155 #: lxc/network_load_balancer.go:157 lxc/operation.go:177 -#: lxc/storage_bucket.go:511 lxc/storage_volume.go:1569 lxc/warning.go:220 +#: lxc/storage_bucket.go:516 lxc/storage_volume.go:1569 lxc/warning.go:220 msgid "LOCATION" msgstr "" @@ -3031,7 +3026,7 @@ msgstr "" msgid "LXD - Command line client" msgstr "" -#: lxc/console.go:382 +#: lxc/console.go:387 msgid "LXD automatically uses either spicy or remote-viewer when present." msgstr "" @@ -3121,15 +3116,15 @@ msgstr "" msgid "List available network peers" msgstr "" -#: lxc/network_zone.go:85 +#: lxc/network_zone.go:86 msgid "List available network zone" msgstr "" -#: lxc/network_zone.go:688 lxc/network_zone.go:689 +#: lxc/network_zone.go:693 lxc/network_zone.go:694 msgid "List available network zone records" msgstr "" -#: lxc/network_zone.go:84 +#: lxc/network_zone.go:85 msgid "List available network zoneS" msgstr "" @@ -3318,11 +3313,11 @@ msgstr "" msgid "List projects" msgstr "" -#: lxc/storage_bucket.go:766 lxc/storage_bucket.go:768 +#: lxc/storage_bucket.go:771 lxc/storage_bucket.go:773 msgid "List storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:451 lxc/storage_bucket.go:453 +#: lxc/storage_bucket.go:456 lxc/storage_bucket.go:458 msgid "List storage buckets" msgstr "" @@ -3350,7 +3345,7 @@ msgid "" " U - Current disk usage" msgstr "" -#: lxc/remote.go:668 lxc/remote.go:669 +#: lxc/remote.go:669 lxc/remote.go:670 msgid "List the available remotes" msgstr "" @@ -3577,11 +3572,11 @@ msgstr "" msgid "Manage network forwards" msgstr "" -#: lxc/network_load_balancer.go:782 lxc/network_load_balancer.go:783 +#: lxc/network_load_balancer.go:787 lxc/network_load_balancer.go:788 msgid "Manage network load balancer backends" msgstr "" -#: lxc/network_load_balancer.go:947 lxc/network_load_balancer.go:948 +#: lxc/network_load_balancer.go:952 lxc/network_load_balancer.go:953 msgid "Manage network load balancer ports" msgstr "" @@ -3593,15 +3588,15 @@ msgstr "" msgid "Manage network peerings" msgstr "" -#: lxc/network_zone.go:1224 lxc/network_zone.go:1225 +#: lxc/network_zone.go:1229 lxc/network_zone.go:1230 msgid "Manage network zone record entries" msgstr "" -#: lxc/network_zone.go:631 lxc/network_zone.go:632 +#: lxc/network_zone.go:636 lxc/network_zone.go:637 msgid "Manage network zone records" msgstr "" -#: lxc/network_zone.go:27 lxc/network_zone.go:28 +#: lxc/network_zone.go:28 lxc/network_zone.go:29 msgid "Manage network zones" msgstr "" @@ -3617,11 +3612,11 @@ msgstr "" msgid "Manage projects" msgstr "" -#: lxc/storage_bucket.go:726 +#: lxc/storage_bucket.go:731 msgid "Manage storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:727 +#: lxc/storage_bucket.go:732 msgid "Manage storage bucket keys." msgstr "" @@ -3649,7 +3644,7 @@ msgid "" "\"custom\" (user created) volumes." msgstr "" -#: lxc/remote.go:33 lxc/remote.go:34 +#: lxc/remote.go:34 lxc/remote.go:35 msgid "Manage the list of remote servers" msgstr "" @@ -3730,12 +3725,12 @@ msgid "" "Minimum level for log messages (only available when using pretty format)" msgstr "" -#: lxc/storage_bucket.go:111 lxc/storage_bucket.go:211 -#: lxc/storage_bucket.go:287 lxc/storage_bucket.go:406 -#: lxc/storage_bucket.go:563 lxc/storage_bucket.go:655 -#: lxc/storage_bucket.go:797 lxc/storage_bucket.go:878 -#: lxc/storage_bucket.go:953 lxc/storage_bucket.go:1032 -#: lxc/storage_bucket.go:1155 +#: lxc/storage_bucket.go:116 lxc/storage_bucket.go:216 +#: lxc/storage_bucket.go:292 lxc/storage_bucket.go:411 +#: lxc/storage_bucket.go:568 lxc/storage_bucket.go:660 +#: lxc/storage_bucket.go:802 lxc/storage_bucket.go:883 +#: lxc/storage_bucket.go:958 lxc/storage_bucket.go:1037 +#: lxc/storage_bucket.go:1160 msgid "Missing bucket name" msgstr "" @@ -3779,8 +3774,8 @@ msgstr "" msgid "Missing instance name" msgstr "" -#: lxc/storage_bucket.go:882 lxc/storage_bucket.go:957 -#: lxc/storage_bucket.go:1036 lxc/storage_bucket.go:1159 +#: lxc/storage_bucket.go:887 lxc/storage_bucket.go:962 +#: lxc/storage_bucket.go:1041 lxc/storage_bucket.go:1164 msgid "Missing key name" msgstr "" @@ -3788,10 +3783,10 @@ msgstr "" #: lxc/network_forward.go:481 lxc/network_forward.go:627 #: lxc/network_forward.go:746 lxc/network_forward.go:823 #: lxc/network_forward.go:889 lxc/network_load_balancer.go:201 -#: lxc/network_load_balancer.go:411 lxc/network_load_balancer.go:484 -#: lxc/network_load_balancer.go:630 lxc/network_load_balancer.go:750 -#: lxc/network_load_balancer.go:826 lxc/network_load_balancer.go:890 -#: lxc/network_load_balancer.go:991 lxc/network_load_balancer.go:1053 +#: lxc/network_load_balancer.go:416 lxc/network_load_balancer.go:489 +#: lxc/network_load_balancer.go:635 lxc/network_load_balancer.go:755 +#: lxc/network_load_balancer.go:831 lxc/network_load_balancer.go:895 +#: lxc/network_load_balancer.go:996 lxc/network_load_balancer.go:1058 msgid "Missing listen address" msgstr "" @@ -3816,26 +3811,26 @@ msgstr "" #: lxc/network_forward.go:477 lxc/network_forward.go:623 #: lxc/network_forward.go:742 lxc/network_forward.go:819 #: lxc/network_forward.go:885 lxc/network_load_balancer.go:123 -#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:261 -#: lxc/network_load_balancer.go:407 lxc/network_load_balancer.go:480 -#: lxc/network_load_balancer.go:626 lxc/network_load_balancer.go:746 -#: lxc/network_load_balancer.go:822 lxc/network_load_balancer.go:886 -#: lxc/network_load_balancer.go:987 lxc/network_load_balancer.go:1049 +#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:266 +#: lxc/network_load_balancer.go:412 lxc/network_load_balancer.go:485 +#: lxc/network_load_balancer.go:631 lxc/network_load_balancer.go:751 +#: lxc/network_load_balancer.go:827 lxc/network_load_balancer.go:891 +#: lxc/network_load_balancer.go:992 lxc/network_load_balancer.go:1054 #: lxc/network_peer.go:110 lxc/network_peer.go:180 lxc/network_peer.go:237 #: lxc/network_peer.go:355 lxc/network_peer.go:426 lxc/network_peer.go:556 #: lxc/network_peer.go:665 msgid "Missing network name" msgstr "" -#: lxc/network_zone.go:178 lxc/network_zone.go:234 lxc/network_zone.go:294 -#: lxc/network_zone.go:382 lxc/network_zone.go:503 lxc/network_zone.go:606 -#: lxc/network_zone.go:712 lxc/network_zone.go:780 lxc/network_zone.go:892 -#: lxc/network_zone.go:976 lxc/network_zone.go:1197 lxc/network_zone.go:1262 -#: lxc/network_zone.go:1307 +#: lxc/network_zone.go:179 lxc/network_zone.go:235 lxc/network_zone.go:299 +#: lxc/network_zone.go:387 lxc/network_zone.go:508 lxc/network_zone.go:611 +#: lxc/network_zone.go:717 lxc/network_zone.go:785 lxc/network_zone.go:897 +#: lxc/network_zone.go:981 lxc/network_zone.go:1202 lxc/network_zone.go:1267 +#: lxc/network_zone.go:1312 msgid "Missing network zone name" msgstr "" -#: lxc/network_zone.go:833 lxc/network_zone.go:1095 +#: lxc/network_zone.go:838 lxc/network_zone.go:1100 msgid "Missing network zone record name" msgstr "" @@ -3845,13 +3840,13 @@ msgid "Missing peer name" msgstr "" #: lxc/storage.go:194 lxc/storage.go:264 lxc/storage.go:370 lxc/storage.go:440 -#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:107 -#: lxc/storage_bucket.go:207 lxc/storage_bucket.go:283 -#: lxc/storage_bucket.go:402 lxc/storage_bucket.go:477 -#: lxc/storage_bucket.go:559 lxc/storage_bucket.go:651 -#: lxc/storage_bucket.go:793 lxc/storage_bucket.go:874 -#: lxc/storage_bucket.go:949 lxc/storage_bucket.go:1028 -#: lxc/storage_bucket.go:1151 lxc/storage_volume.go:189 +#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:112 +#: lxc/storage_bucket.go:212 lxc/storage_bucket.go:288 +#: lxc/storage_bucket.go:407 lxc/storage_bucket.go:482 +#: lxc/storage_bucket.go:564 lxc/storage_bucket.go:656 +#: lxc/storage_bucket.go:798 lxc/storage_bucket.go:879 +#: lxc/storage_bucket.go:954 lxc/storage_bucket.go:1033 +#: lxc/storage_bucket.go:1156 lxc/storage_volume.go:189 #: lxc/storage_volume.go:287 lxc/storage_volume.go:583 #: lxc/storage_volume.go:660 lxc/storage_volume.go:735 #: lxc/storage_volume.go:817 lxc/storage_volume.go:919 @@ -3971,7 +3966,7 @@ msgstr "" msgid "Moving the storage volume: %s" msgstr "" -#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1097 +#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1102 msgid "Multiple ports match. Use --force to remove them all" msgstr "" @@ -3990,10 +3985,10 @@ 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:677 lxc/project.go:498 -#: lxc/remote.go:731 lxc/storage.go:638 lxc/storage_bucket.go:506 -#: lxc/storage_bucket.go:826 lxc/storage_volume.go:1561 +#: lxc/network_acl.go:147 lxc/network_peer.go:139 lxc/network_zone.go:139 +#: lxc/network_zone.go:746 lxc/profile.go:677 lxc/project.go:498 +#: lxc/remote.go:732 lxc/storage.go:638 lxc/storage_bucket.go:511 +#: lxc/storage_bucket.go:831 lxc/storage_volume.go:1561 msgid "NAME" msgstr "" @@ -4019,7 +4014,7 @@ msgstr "" #: lxc/network.go:957 lxc/operation.go:154 lxc/project.go:456 #: lxc/project.go:461 lxc/project.go:466 lxc/project.go:471 lxc/project.go:476 -#: lxc/project.go:481 lxc/remote.go:691 lxc/remote.go:696 lxc/remote.go:701 +#: lxc/project.go:481 lxc/remote.go:692 lxc/remote.go:697 lxc/remote.go:702 msgid "NO" msgstr "" @@ -4046,7 +4041,7 @@ msgstr "" msgid "Name" msgstr "" -#: lxc/remote.go:141 +#: lxc/remote.go:142 msgid "Name of the project to use for this remote:" msgstr "" @@ -4095,12 +4090,12 @@ msgstr "" msgid "Network ACL %s renamed to %s" msgstr "" -#: lxc/network_zone.go:336 +#: lxc/network_zone.go:341 #, c-format msgid "Network Zone %s created" msgstr "" -#: lxc/network_zone.go:616 +#: lxc/network_zone.go:621 #, c-format msgid "Network Zone %s deleted" msgstr "" @@ -4115,12 +4110,12 @@ msgstr "" msgid "Network forward %s deleted" msgstr "" -#: lxc/network_load_balancer.go:365 +#: lxc/network_load_balancer.go:370 #, c-format msgid "Network load balancer %s created" msgstr "" -#: lxc/network_load_balancer.go:767 +#: lxc/network_load_balancer.go:772 #, c-format msgid "Network load balancer %s deleted" msgstr "" @@ -4158,12 +4153,12 @@ msgstr "" msgid "Network usage:" msgstr "" -#: lxc/network_zone.go:934 +#: lxc/network_zone.go:939 #, c-format msgid "Network zone record %s created" msgstr "" -#: lxc/network_zone.go:1207 +#: lxc/network_zone.go:1212 #, c-format msgid "Network zone record %s deleted" msgstr "" @@ -4198,11 +4193,11 @@ msgstr "" msgid "No device found for this storage volume" msgstr "" -#: lxc/network_load_balancer.go:921 +#: lxc/network_load_balancer.go:926 msgid "No matching backend found" msgstr "" -#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1108 +#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1113 msgid "No matching port(s) found" msgstr "" @@ -4248,7 +4243,7 @@ msgstr "" msgid "Only \"custom\" volumes can be snapshotted" msgstr "" -#: lxc/remote.go:332 +#: lxc/remote.go:333 msgid "Only https URLs are supported for simplestreams" msgstr "" @@ -4273,7 +4268,7 @@ msgstr "" msgid "Optimized Storage" msgstr "" -#: lxc/main.go:96 +#: lxc/main.go:97 msgid "Override the source project" msgstr "" @@ -4319,11 +4314,11 @@ msgstr "" msgid "PROJECT" msgstr "" -#: lxc/remote.go:733 +#: lxc/remote.go:734 msgid "PROTOCOL" msgstr "" -#: lxc/image.go:1073 lxc/remote.go:735 +#: lxc/image.go:1073 lxc/remote.go:736 msgid "PUBLIC" msgstr "" @@ -4339,7 +4334,7 @@ msgstr "" msgid "Partitions:" msgstr "" -#: lxc/main.go:361 +#: lxc/main.go:363 #, c-format msgid "Password for %s: " msgstr "" @@ -4352,7 +4347,7 @@ msgstr "" msgid "Perform an incremental copy" msgstr "" -#: lxc/remote.go:182 +#: lxc/remote.go:183 msgid "Please provide an alternate server address (empty to abort):" msgstr "" @@ -4364,7 +4359,7 @@ msgstr "" msgid "Please provide cluster member name: " msgstr "" -#: lxc/remote.go:462 +#: lxc/remote.go:463 msgid "Please type 'y', 'n' or the fingerprint:" msgstr "" @@ -4386,10 +4381,10 @@ msgstr "" #: lxc/config.go:1278 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/network_load_balancer.go:695 lxc/network_peer.go:611 +#: lxc/network_zone.go:557 lxc/network_zone.go:1149 lxc/profile.go:539 +#: lxc/project.go:316 lxc/storage.go:311 lxc/storage_bucket.go:349 +#: lxc/storage_bucket.go:1098 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 "" @@ -4398,7 +4393,7 @@ msgstr "" msgid "Pretty rendering (short for --format=pretty)" msgstr "" -#: lxc/main.go:94 +#: lxc/main.go:95 msgid "Print help" msgstr "" @@ -4406,7 +4401,7 @@ msgstr "" msgid "Print the raw response" msgstr "" -#: lxc/main.go:93 +#: lxc/main.go:94 msgid "Print version number" msgstr "" @@ -4495,7 +4490,7 @@ msgstr "" msgid "Project %s renamed to %s" msgstr "" -#: lxc/remote.go:106 +#: lxc/remote.go:107 msgid "Project to use for the remote" msgstr "" @@ -4593,7 +4588,7 @@ msgid "" "pool \"default\"." msgstr "" -#: lxc/remote.go:105 +#: lxc/remote.go:106 msgid "Public image server" msgstr "" @@ -4641,7 +4636,7 @@ msgstr "" msgid "RESOURCE" msgstr "" -#: lxc/storage_bucket.go:828 +#: lxc/storage_bucket.go:833 msgid "ROLE" msgstr "" @@ -4684,45 +4679,45 @@ msgstr "" msgid "Refreshing the image: %s" msgstr "" -#: lxc/remote.go:785 +#: lxc/remote.go:786 #, c-format msgid "Remote %s already exists" msgstr "" -#: lxc/project.go:769 lxc/remote.go:776 lxc/remote.go:849 lxc/remote.go:905 -#: lxc/remote.go:945 +#: lxc/project.go:769 lxc/remote.go:777 lxc/remote.go:850 lxc/remote.go:906 +#: lxc/remote.go:946 #, c-format msgid "Remote %s doesn't exist" msgstr "" -#: lxc/remote.go:301 +#: lxc/remote.go:302 #, c-format msgid "Remote %s exists as <%s>" msgstr "" -#: lxc/remote.go:857 +#: lxc/remote.go:858 #, c-format msgid "Remote %s is global and cannot be removed" msgstr "" -#: lxc/remote.go:780 lxc/remote.go:853 lxc/remote.go:949 +#: lxc/remote.go:781 lxc/remote.go:854 lxc/remote.go:950 #, c-format msgid "Remote %s is static and cannot be modified" msgstr "" -#: lxc/remote.go:290 +#: lxc/remote.go:291 msgid "Remote address must not be empty" msgstr "" -#: lxc/remote.go:101 +#: lxc/remote.go:102 msgid "Remote admin password" msgstr "" -#: lxc/remote.go:295 +#: lxc/remote.go:296 msgid "Remote names may not contain colons" msgstr "" -#: lxc/remote.go:102 +#: lxc/remote.go:103 msgid "Remote trust token" msgstr "" @@ -4748,7 +4743,7 @@ msgstr "" msgid "Remove a member from the cluster" msgstr "" -#: lxc/network_zone.go:1285 +#: lxc/network_zone.go:1290 msgid "Remove a network zone record entry" msgstr "" @@ -4756,7 +4751,7 @@ msgstr "" msgid "Remove aliases" msgstr "" -#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1025 +#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1030 msgid "Remove all ports that match" msgstr "" @@ -4764,15 +4759,15 @@ msgstr "" msgid "Remove all rules that match" msgstr "" -#: lxc/network_load_balancer.go:862 +#: lxc/network_load_balancer.go:867 msgid "Remove backend from a load balancer" msgstr "" -#: lxc/network_load_balancer.go:861 +#: lxc/network_load_balancer.go:866 msgid "Remove backends from a load balancer" msgstr "" -#: lxc/network_zone.go:1286 +#: lxc/network_zone.go:1291 msgid "Remove entries from a network zone record" msgstr "" @@ -4796,7 +4791,7 @@ msgstr "" msgid "Remove ports from a forward" msgstr "" -#: lxc/network_load_balancer.go:1023 lxc/network_load_balancer.go:1024 +#: lxc/network_load_balancer.go:1028 lxc/network_load_balancer.go:1029 msgid "Remove ports from a load balancer" msgstr "" @@ -4804,7 +4799,7 @@ msgstr "" msgid "Remove profiles from instances" msgstr "" -#: lxc/remote.go:827 lxc/remote.go:828 +#: lxc/remote.go:828 lxc/remote.go:829 msgid "Remove remotes" msgstr "" @@ -4861,7 +4856,7 @@ msgstr "" msgid "Rename projects" msgstr "" -#: lxc/remote.go:754 lxc/remote.go:755 +#: lxc/remote.go:755 lxc/remote.go:756 msgid "Rename remotes" msgstr "" @@ -4939,7 +4934,7 @@ msgid "Restrict the certificate to one or more projects" msgstr "" #: lxc/console.go:44 -msgid "Retrieve the instance's console log" +msgid "Retrieve the container's console log" msgstr "" #: lxc/init.go:347 @@ -4955,7 +4950,7 @@ msgstr "" msgid "Revoke cluster member join token" msgstr "" -#: lxc/storage_bucket.go:851 +#: lxc/storage_bucket.go:856 msgid "Role (admin or read-only)" msgstr "" @@ -5006,7 +5001,7 @@ msgstr "" msgid "STATE" msgstr "" -#: lxc/remote.go:736 +#: lxc/remote.go:737 msgid "STATIC" msgstr "" @@ -5030,11 +5025,11 @@ msgstr "" msgid "STP" msgstr "" -#: lxc/storage_bucket.go:853 +#: lxc/storage_bucket.go:858 msgid "Secret key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:909 +#: lxc/storage_bucket.go:914 #, c-format msgid "Secret key: %s" msgstr "" @@ -5043,19 +5038,19 @@ msgstr "" msgid "Send a raw query to LXD" msgstr "" -#: lxc/remote.go:104 +#: lxc/remote.go:105 msgid "Server authentication type (tls or oidc)" msgstr "" -#: lxc/remote.go:460 +#: lxc/remote.go:461 msgid "Server certificate NACKed by user" msgstr "" -#: lxc/remote.go:599 +#: lxc/remote.go:600 msgid "Server doesn't trust us after authentication" msgstr "" -#: lxc/remote.go:103 +#: lxc/remote.go:104 msgid "Server protocol (lxd or simplestreams)" msgstr "" @@ -5154,11 +5149,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_load_balancer.go:450 +#: lxc/network_load_balancer.go:455 msgid "Set network load balancer keys" msgstr "" -#: lxc/network_load_balancer.go:451 +#: lxc/network_load_balancer.go:456 msgid "" "Set network load balancer keys\n" "\n" @@ -5180,11 +5175,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:353 +#: lxc/network_zone.go:358 msgid "Set network zone configuration keys" msgstr "" -#: lxc/network_zone.go:354 +#: lxc/network_zone.go:359 msgid "" "Set network zone configuration keys\n" "\n" @@ -5193,7 +5188,7 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:951 lxc/network_zone.go:952 +#: lxc/network_zone.go:956 lxc/network_zone.go:957 msgid "Set network zone record configuration keys" msgstr "" @@ -5223,11 +5218,11 @@ msgid "" " lxc project set [:] " msgstr "" -#: lxc/storage_bucket.go:529 +#: lxc/storage_bucket.go:534 msgid "Set storage bucket configuration keys" msgstr "" -#: lxc/storage_bucket.go:530 +#: lxc/storage_bucket.go:535 msgid "" "Set storage bucket configuration keys\n" "\n" @@ -5262,7 +5257,7 @@ msgid "" " lxc storage volume set [:] [/] " msgstr "" -#: lxc/remote.go:923 lxc/remote.go:924 +#: lxc/remote.go:924 lxc/remote.go:925 msgid "Set the URL for the remote" msgstr "" @@ -5290,7 +5285,7 @@ msgstr "" msgid "Set the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:458 +#: lxc/network_load_balancer.go:463 msgid "Set the key as a network load balancer property" msgstr "" @@ -5302,11 +5297,11 @@ msgstr "" msgid "Set the key as a network property" msgstr "" -#: lxc/network_zone.go:361 +#: lxc/network_zone.go:366 msgid "Set the key as a network zone property" msgstr "" -#: lxc/network_zone.go:957 +#: lxc/network_zone.go:962 msgid "Set the key as a network zone record property" msgstr "" @@ -5318,7 +5313,7 @@ msgstr "" msgid "Set the key as a project property" msgstr "" -#: lxc/storage_bucket.go:537 +#: lxc/storage_bucket.go:542 msgid "Set the key as a storage bucket property" msgstr "" @@ -5338,11 +5333,11 @@ msgstr "" msgid "Setup SSH SFTP listener on address:port instead of mounting" msgstr "" -#: lxc/main.go:97 +#: lxc/main.go:98 msgid "Show all debug messages" msgstr "" -#: lxc/main.go:98 +#: lxc/main.go:99 msgid "Show all information messages" msgstr "" @@ -5411,7 +5406,7 @@ msgstr "" msgid "Show instance or server information" msgstr "" -#: lxc/main.go:271 lxc/main.go:272 +#: lxc/main.go:272 lxc/main.go:273 msgid "Show less common commands" msgstr "" @@ -5443,15 +5438,15 @@ msgstr "" msgid "Show network peer configurations" msgstr "" -#: lxc/network_zone.go:155 lxc/network_zone.go:156 +#: lxc/network_zone.go:156 lxc/network_zone.go:157 msgid "Show network zone configurations" msgstr "" -#: lxc/network_zone.go:758 +#: lxc/network_zone.go:763 msgid "Show network zone record configuration" msgstr "" -#: lxc/network_zone.go:759 +#: lxc/network_zone.go:764 msgid "Show network zone record configurations" msgstr "" @@ -5463,11 +5458,11 @@ msgstr "" msgid "Show project options" msgstr "" -#: lxc/storage_bucket.go:623 lxc/storage_bucket.go:624 +#: lxc/storage_bucket.go:628 lxc/storage_bucket.go:629 msgid "Show storage bucket configurations" msgstr "" -#: lxc/storage_bucket.go:1123 lxc/storage_bucket.go:1124 +#: lxc/storage_bucket.go:1128 lxc/storage_bucket.go:1129 msgid "Show storage bucket key configurations" msgstr "" @@ -5493,7 +5488,7 @@ msgid "" "that are granted via identity provider group mappings. \n" msgstr "" -#: lxc/remote.go:630 lxc/remote.go:631 +#: lxc/remote.go:631 lxc/remote.go:632 msgid "Show the default remote" msgstr "" @@ -5617,22 +5612,22 @@ msgstr "" msgid "Stopping the instance failed: %s" msgstr "" -#: lxc/storage_bucket.go:161 +#: lxc/storage_bucket.go:166 #, c-format msgid "Storage bucket %s created" msgstr "" -#: lxc/storage_bucket.go:228 +#: lxc/storage_bucket.go:233 #, c-format msgid "Storage bucket %s deleted" msgstr "" -#: lxc/storage_bucket.go:907 +#: lxc/storage_bucket.go:912 #, c-format msgid "Storage bucket key %s added" msgstr "" -#: lxc/storage_bucket.go:973 +#: lxc/storage_bucket.go:978 #, c-format msgid "Storage bucket key %s removed" msgstr "" @@ -5705,7 +5700,7 @@ msgstr "" msgid "Switch the current project" msgstr "" -#: lxc/remote.go:883 lxc/remote.go:884 +#: lxc/remote.go:884 lxc/remote.go:885 msgid "Switch the default remote" msgstr "" @@ -5820,7 +5815,7 @@ msgstr "" msgid "The property %q does not exist on the instance snapshot %s/%s: %v" msgstr "" -#: lxc/network_load_balancer.go:424 +#: lxc/network_load_balancer.go:429 #, c-format msgid "The property %q does not exist on the load balancer %q: %v" msgstr "" @@ -5845,12 +5840,12 @@ msgstr "" msgid "The property %q does not exist on the network peer %q: %v" msgstr "" -#: lxc/network_zone.go:246 +#: lxc/network_zone.go:247 #, c-format msgid "The property %q does not exist on the network zone %q: %v" msgstr "" -#: lxc/network_zone.go:845 +#: lxc/network_zone.go:850 #, c-format msgid "The property %q does not exist on the network zone record %q: %v" msgstr "" @@ -5865,7 +5860,7 @@ msgstr "" msgid "The property %q does not exist on the project %q: %v" msgstr "" -#: lxc/storage_bucket.go:426 +#: lxc/storage_bucket.go:431 #, c-format msgid "The property %q does not exist on the storage bucket %q: %v" msgstr "" @@ -5919,7 +5914,7 @@ msgstr "" msgid "This LXD server is not available on the network" msgstr "" -#: lxc/main.go:293 +#: lxc/main.go:294 msgid "" "This client hasn't been configured to use a remote LXD server yet.\n" "As your platform can't run native Linux instances, you must connect to a " @@ -5951,11 +5946,11 @@ msgstr "" msgid "To create a new network, use: lxc network create" msgstr "" -#: lxc/console.go:210 +#: lxc/console.go:215 msgid "To detach from the console, press: +a q" msgstr "" -#: lxc/main.go:403 +#: lxc/main.go:406 msgid "" "To start your first container, try: lxc launch ubuntu:24.04\n" "Or for a virtual machine: lxc launch ubuntu:24.04 --vm" @@ -6053,7 +6048,7 @@ msgstr "" msgid "UPLOAD DATE" msgstr "" -#: lxc/cluster.go:184 lxc/remote.go:732 +#: lxc/cluster.go:184 lxc/remote.go:733 msgid "URL" msgstr "" @@ -6062,7 +6057,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:679 lxc/project.go:506 +#: lxc/network_zone.go:141 lxc/profile.go:679 lxc/project.go:506 #: lxc/storage.go:647 lxc/storage_volume.go:1564 msgid "USED BY" msgstr "" @@ -6081,7 +6076,7 @@ msgstr "" msgid "Unable to create a temporary file: %v" msgstr "" -#: lxc/remote.go:213 lxc/remote.go:247 +#: lxc/remote.go:214 lxc/remote.go:248 msgid "Unavailable remote server" msgstr "" @@ -6101,7 +6096,7 @@ msgstr "" msgid "Unknown column shorthand char '%c' in '%s'" msgstr "" -#: lxc/console.go:159 +#: lxc/console.go:164 #, c-format msgid "Unknown console type %q" msgstr "" @@ -6161,11 +6156,11 @@ msgstr "" msgid "Unset network forward keys" msgstr "" -#: lxc/network_load_balancer.go:548 +#: lxc/network_load_balancer.go:553 msgid "Unset network load balancer configuration keys" msgstr "" -#: lxc/network_load_balancer.go:549 +#: lxc/network_load_balancer.go:554 msgid "Unset network load balancer keys" msgstr "" @@ -6177,11 +6172,11 @@ msgstr "" msgid "Unset network peer keys" msgstr "" -#: lxc/network_zone.go:433 lxc/network_zone.go:434 +#: lxc/network_zone.go:438 lxc/network_zone.go:439 msgid "Unset network zone configuration keys" msgstr "" -#: lxc/network_zone.go:1027 lxc/network_zone.go:1028 +#: lxc/network_zone.go:1032 lxc/network_zone.go:1033 msgid "Unset network zone record configuration keys" msgstr "" @@ -6193,7 +6188,7 @@ msgstr "" msgid "Unset project configuration keys" msgstr "" -#: lxc/storage_bucket.go:692 lxc/storage_bucket.go:693 +#: lxc/storage_bucket.go:697 lxc/storage_bucket.go:698 msgid "Unset storage bucket configuration keys" msgstr "" @@ -6217,7 +6212,7 @@ msgstr "" msgid "Unset the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:552 +#: lxc/network_load_balancer.go:557 msgid "Unset the key as a network load balancer property" msgstr "" @@ -6229,11 +6224,11 @@ msgstr "" msgid "Unset the key as a network property" msgstr "" -#: lxc/network_zone.go:437 +#: lxc/network_zone.go:442 msgid "Unset the key as a network zone property" msgstr "" -#: lxc/network_zone.go:1031 +#: lxc/network_zone.go:1036 msgid "Unset the key as a network zone record property" msgstr "" @@ -6245,7 +6240,7 @@ msgstr "" msgid "Unset the key as a project property" msgstr "" -#: lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:701 msgid "Unset the key as a storage bucket property" msgstr "" @@ -6307,7 +6302,7 @@ msgid "" "Use storage driver optimized format (can only be restored on a similar pool)" msgstr "" -#: lxc/main.go:100 +#: lxc/main.go:101 msgid "Use with help or --help to view sub-commands" msgstr "" @@ -6404,7 +6399,7 @@ msgstr "" #: lxc/network.go:959 lxc/operation.go:156 lxc/project.go:458 #: lxc/project.go:463 lxc/project.go:468 lxc/project.go:473 lxc/project.go:478 -#: lxc/project.go:483 lxc/remote.go:693 lxc/remote.go:698 lxc/remote.go:703 +#: lxc/project.go:483 lxc/remote.go:694 lxc/remote.go:699 lxc/remote.go:704 msgid "YES" msgstr "" @@ -6439,7 +6434,7 @@ 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/network.go:909 lxc/network_acl.go:91 lxc/network_zone.go:83 #: 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 "[:]" @@ -6502,19 +6497,19 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:154 lxc/network_zone.go:463 lxc/network_zone.go:581 +#: lxc/network_zone.go:155 lxc/network_zone.go:468 lxc/network_zone.go:586 msgid "[:]" msgstr "" -#: lxc/network_zone.go:209 lxc/network_zone.go:432 +#: lxc/network_zone.go:210 lxc/network_zone.go:437 msgid "[:] " msgstr "" -#: lxc/network_zone.go:352 +#: lxc/network_zone.go:357 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:269 +#: lxc/network_zone.go:270 msgid "[:] [key=value...]" msgstr "" @@ -6760,30 +6755,30 @@ msgstr "" #: lxc/network_forward.go:169 lxc/network_forward.go:574 #: lxc/network_forward.go:715 lxc/network_load_balancer.go:171 -#: lxc/network_load_balancer.go:577 lxc/network_load_balancer.go:719 +#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:724 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:860 +#: lxc/network_load_balancer.go:865 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:796 +#: lxc/network_load_balancer.go:801 msgid "" "[:] " "[]" msgstr "" #: lxc/network_forward.go:377 lxc/network_forward.go:544 -#: lxc/network_load_balancer.go:381 lxc/network_load_balancer.go:547 +#: lxc/network_load_balancer.go:386 lxc/network_load_balancer.go:552 msgid "[:] " msgstr "" -#: lxc/network_forward.go:446 lxc/network_load_balancer.go:449 +#: lxc/network_forward.go:446 lxc/network_load_balancer.go:454 msgid "[:] =..." msgstr "" -#: lxc/network_load_balancer.go:961 +#: lxc/network_load_balancer.go:966 msgid "" "[:] " "[,...]" @@ -6795,7 +6790,7 @@ msgid "" " []" msgstr "" -#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1022 +#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1027 msgid "[:] [] []" msgstr "" @@ -6846,7 +6841,7 @@ msgid "[:]" msgstr "" #: lxc/storage.go:167 lxc/storage.go:218 lxc/storage.go:412 lxc/storage.go:759 -#: lxc/storage_bucket.go:449 +#: lxc/storage_bucket.go:454 msgid "[:]" msgstr "" @@ -6854,18 +6849,18 @@ msgstr "" msgid "[:] []" msgstr "" -#: lxc/storage_bucket.go:180 lxc/storage_bucket.go:242 -#: lxc/storage_bucket.go:622 lxc/storage_bucket.go:764 +#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:247 +#: lxc/storage_bucket.go:627 lxc/storage_bucket.go:769 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:375 lxc/storage_bucket.go:691 -#: lxc/storage_bucket.go:845 lxc/storage_bucket.go:923 -#: lxc/storage_bucket.go:987 lxc/storage_bucket.go:1122 +#: lxc/storage_bucket.go:380 lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:850 lxc/storage_bucket.go:928 +#: lxc/storage_bucket.go:992 lxc/storage_bucket.go:1127 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:528 +#: lxc/storage_bucket.go:533 msgid "[:] =..." msgstr "" @@ -7009,27 +7004,27 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:686 +#: lxc/network_zone.go:691 msgid "[:]" msgstr "" -#: lxc/network_zone.go:757 lxc/network_zone.go:1056 lxc/network_zone.go:1173 +#: lxc/network_zone.go:762 lxc/network_zone.go:1061 lxc/network_zone.go:1178 msgid "[:] " msgstr "" -#: lxc/network_zone.go:809 lxc/network_zone.go:1026 +#: lxc/network_zone.go:814 lxc/network_zone.go:1031 msgid "[:] " msgstr "" -#: lxc/network_zone.go:950 +#: lxc/network_zone.go:955 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:1238 lxc/network_zone.go:1284 +#: lxc/network_zone.go:1243 lxc/network_zone.go:1289 msgid "[:] " msgstr "" -#: lxc/network_zone.go:868 +#: lxc/network_zone.go:873 msgid "[:] [key=value...]" msgstr "" @@ -7053,7 +7048,7 @@ msgstr "" msgid "[:][] [...]" msgstr "" -#: lxc/remote.go:88 +#: lxc/remote.go:89 msgid "[] " msgstr "" @@ -7061,7 +7056,7 @@ msgstr "" msgid "[[:]]" msgstr "" -#: lxc/project.go:488 lxc/remote.go:722 +#: lxc/project.go:488 lxc/remote.go:723 msgid "current" msgstr "" @@ -7324,6 +7319,23 @@ msgid "" " Create a new OVN network called bar using baz as its uplink network" msgstr "" +#: lxc/network_load_balancer.go:239 +msgid "" +"lxc network load-balancer create n1 127.0.0.1\n" +"\n" +"lxc network load-balancer create n1 127.0.0.1 < config.yaml\n" +" Create network load-balancer for network n1 with configuration from " +"config.yaml" +msgstr "" + +#: lxc/network_zone.go:273 +msgid "" +"lxc network zone create z1\n" +"\n" +"lxc network zone create z1 < config.yaml\n" +" Create network zone z1 with configuration from config.yaml" +msgstr "" + #: lxc/operation.go:195 msgid "" "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n" @@ -7394,26 +7406,36 @@ msgid "" " Restore the snapshot." msgstr "" -#: lxc/storage_bucket.go:245 +#: lxc/storage_bucket.go:84 +msgid "" +"lxc storage bucket create p1 b01\n" +"\tCreate a new storage bucket name b01 in storage pool p1\n" +"\n" +"lxc storage bucket create p1 b01 < config.yaml\n" +"\tCreate a new storage bucket name b01 in storage pool p1 using the content " +"of config.yaml" +msgstr "" + +#: lxc/storage_bucket.go:250 msgid "" "lxc storage bucket edit [:] < bucket.yaml\n" " Update a storage bucket using the content of bucket.yaml." msgstr "" -#: lxc/storage_bucket.go:990 +#: lxc/storage_bucket.go:995 msgid "" "lxc storage bucket edit [:] < key.yaml\n" " Update a storage bucket key using the content of key.yaml." msgstr "" -#: lxc/storage_bucket.go:1125 +#: lxc/storage_bucket.go:1130 msgid "" "lxc storage bucket key show default data foo\n" " Will show the properties of a bucket key called \"foo\" for a bucket " "called \"data\" in the \"default\" pool." msgstr "" -#: lxc/storage_bucket.go:625 +#: lxc/storage_bucket.go:630 msgid "" "lxc storage bucket show default data\n" " Will show the properties of a bucket called \"data\" in the \"default\" " @@ -7432,7 +7454,7 @@ msgid "" "\t\tCreate a new custom volume using backup0.tar.gz as the source." msgstr "" -#: lxc/remote.go:459 +#: lxc/remote.go:460 msgid "n" msgstr "" @@ -7444,7 +7466,7 @@ msgstr "" msgid "no" msgstr "" -#: lxc/remote.go:452 +#: lxc/remote.go:453 msgid "ok (y/n/[fingerprint])?" msgstr "" @@ -7481,7 +7503,7 @@ msgstr "" msgid "used by" msgstr "" -#: lxc/remote.go:461 +#: lxc/remote.go:462 msgid "y" msgstr "" diff --git a/po/fr.po b/po/fr.po index 33f4107fa9c8..92c810181751 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-08-20 09:31+0100\n" +"POT-Creation-Date: 2024-08-30 09:27+0100\n" "PO-Revision-Date: 2022-03-10 15:06+0000\n" "Last-Translator: Wivik \n" "Language-Team: French 1;\n" "X-Generator: Weblate 4.12-dev\n" -#: lxc/storage_bucket.go:255 lxc/storage_bucket.go:1000 +#: lxc/storage_bucket.go:260 lxc/storage_bucket.go:1005 #, fuzzy msgid "" "### This is a YAML representation of a storage bucket.\n" @@ -424,7 +424,7 @@ msgstr "" "###\n" "### Notez que seule la configuration peut être modifiée." -#: lxc/network_load_balancer.go:588 +#: lxc/network_load_balancer.go:593 #, fuzzy msgid "" "### This is a YAML representation of the network load balancer.\n" @@ -500,7 +500,7 @@ msgstr "" "###\n" "### Notez que le nom est affiché mais ne peut être modifié" -#: lxc/network_zone.go:1066 +#: lxc/network_zone.go:1071 #, fuzzy msgid "" "### This is a YAML representation of the network zone record.\n" @@ -521,7 +521,7 @@ msgstr "" "### Un exemple serait :\n" "### description: Mon image personnalisée" -#: lxc/network_zone.go:473 +#: lxc/network_zone.go:478 #, fuzzy msgid "" "### This is a YAML representation of the network zone.\n" @@ -764,17 +764,17 @@ msgstr "Cible invalide %s" msgid " " msgstr " " -#: lxc/remote.go:825 lxc/remote.go:882 +#: lxc/remote.go:826 lxc/remote.go:883 #, fuzzy msgid "" msgstr "Serveur distant : %s" -#: lxc/remote.go:922 +#: lxc/remote.go:923 #, fuzzy msgid " " msgstr "Serveur distant : %s" -#: lxc/remote.go:752 +#: lxc/remote.go:753 msgid " " msgstr "" @@ -817,7 +817,7 @@ msgstr "ALIAS" msgid "ARCHITECTURE" msgstr "ARCHITECTURE" -#: lxc/remote.go:734 +#: lxc/remote.go:735 #, fuzzy msgid "AUTH TYPE" msgstr "TYPE" @@ -826,15 +826,15 @@ msgstr "TYPE" msgid "AUTHENTICATION METHOD" msgstr "" -#: lxc/remote.go:100 +#: lxc/remote.go:101 msgid "Accept certificate" msgstr "Accepter le certificat" -#: lxc/storage_bucket.go:852 +#: lxc/storage_bucket.go:857 msgid "Access key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:908 +#: lxc/storage_bucket.go:913 #, fuzzy, c-format msgid "Access key: %s" msgstr "Expire : %s" @@ -870,20 +870,20 @@ msgstr "" msgid "Add a group to an identity provider group" msgstr "" -#: lxc/network_zone.go:1239 +#: lxc/network_zone.go:1244 #, fuzzy msgid "Add a network zone record entry" msgstr "Clé de configuration invalide" -#: lxc/network_load_balancer.go:798 +#: lxc/network_load_balancer.go:803 msgid "Add backend to a load balancer" msgstr "" -#: lxc/network_load_balancer.go:797 +#: lxc/network_load_balancer.go:802 msgid "Add backends to a load balancer" msgstr "" -#: lxc/network_zone.go:1240 +#: lxc/network_zone.go:1245 msgid "Add entries to a network zone record" msgstr "" @@ -901,11 +901,11 @@ msgstr "" msgid "Add new aliases" msgstr "Alias :" -#: lxc/remote.go:89 +#: lxc/remote.go:90 msgid "Add new remote servers" msgstr "Ajouter de nouveaux serveurs distants" -#: lxc/remote.go:90 +#: lxc/remote.go:91 msgid "" "Add new remote servers\n" "\n" @@ -955,7 +955,7 @@ msgstr "" msgid "Add ports to a forward" msgstr "" -#: lxc/network_load_balancer.go:962 lxc/network_load_balancer.go:963 +#: lxc/network_load_balancer.go:967 lxc/network_load_balancer.go:968 msgid "Add ports to a load balancer" msgstr "" @@ -979,17 +979,17 @@ msgstr "Création du conteneur" msgid "Address: %s" msgstr "Expire : %s" -#: lxc/storage_bucket.go:164 +#: lxc/storage_bucket.go:169 #, fuzzy, c-format msgid "Admin access key: %s" msgstr "Expire : %s" -#: lxc/remote.go:566 +#: lxc/remote.go:567 #, fuzzy, c-format msgid "Admin password (or token) for %s:" msgstr "Mot de passe administrateur pour %s : " -#: lxc/storage_bucket.go:165 +#: lxc/storage_bucket.go:170 #, fuzzy, c-format msgid "Admin secret key: %s" msgstr "Créé : %s" @@ -1022,7 +1022,7 @@ msgstr "Alias :" msgid "All projects" msgstr "Rendre l'image publique" -#: lxc/remote.go:181 +#: lxc/remote.go:182 msgid "All server addresses are unavailable" msgstr "" @@ -1046,7 +1046,7 @@ msgstr "Architecture : %s" msgid "Are you sure you want to %s cluster member %q? (yes/no) [default=no]: " msgstr "" -#: lxc/console.go:383 +#: lxc/console.go:388 msgid "As neither could be found, the raw SPICE socket can be found at:" msgstr "" @@ -1099,7 +1099,7 @@ msgid "" "as well as retrieve past log entries from it." msgstr "" -#: lxc/remote.go:548 +#: lxc/remote.go:549 #, c-format msgid "Authentication type '%s' not supported by server" msgstr "Le type d'authentification '%s' n'est pas supporté par le serveur" @@ -1118,11 +1118,11 @@ msgstr "" msgid "Auto update: %s" msgstr "Mise à jour auto. : %s" -#: lxc/network_forward.go:240 lxc/network_load_balancer.go:242 +#: lxc/network_forward.go:240 lxc/network_load_balancer.go:247 msgid "Auto-allocate an IPv4 or IPv6 listen address. One of 'ipv4', 'ipv6'." msgstr "" -#: lxc/remote.go:136 +#: lxc/remote.go:137 #, fuzzy msgid "Available projects:" msgstr "Rendre l'image publique" @@ -1156,8 +1156,8 @@ msgid "Bad device override syntax, expecting ,=: %s" msgstr "" #: lxc/network.go:333 lxc/network_acl.go:382 lxc/network_forward.go:293 -#: lxc/network_load_balancer.go:296 lxc/network_peer.go:280 -#: lxc/network_zone.go:324 lxc/network_zone.go:922 lxc/storage_bucket.go:136 +#: lxc/network_load_balancer.go:301 lxc/network_peer.go:280 +#: lxc/network_zone.go:329 lxc/network_zone.go:927 lxc/storage_bucket.go:141 #, c-format msgid "Bad key/value pair: %s" msgstr "" @@ -1282,7 +1282,7 @@ msgstr "impossible de récupérer un répertoire sans --recursive" msgid "Can't read from stdin: %w" msgstr "Impossible de lire depuis stdin : %s" -#: lxc/remote.go:861 +#: lxc/remote.go:862 #, fuzzy msgid "Can't remove the default remote" msgstr "impossible de supprimer le serveur distant par défaut" @@ -1351,17 +1351,17 @@ msgstr "Créé : %s" msgid "Certificate add token for %s deleted" msgstr "Le réseau %s a été supprimé" -#: lxc/remote.go:218 +#: lxc/remote.go:452 +#, fuzzy +msgid "Certificate fingerprint" +msgstr "Empreinte du certificat : %s" + +#: lxc/remote.go:219 #, c-format msgid "" "Certificate fingerprint mismatch between certificate token and server %q" msgstr "" -#: lxc/remote.go:451 -#, c-format -msgid "Certificate fingerprint: %s" -msgstr "Empreinte du certificat : %s" - #: lxc/network.go:893 msgid "Chassis" msgstr "" @@ -1371,7 +1371,7 @@ msgstr "" msgid "Client %s certificate add token:" msgstr "Vous devez fournir le nom d'un conteneur pour : " -#: lxc/remote.go:603 +#: lxc/remote.go:604 #, fuzzy msgid "Client certificate now trusted by server:" msgstr "Certificat client enregistré sur le serveur : " @@ -1434,18 +1434,18 @@ msgstr "Périphérique %s retiré de %s" #: lxc/network_forward.go:456 lxc/network_forward.go:579 #: lxc/network_forward.go:721 lxc/network_forward.go:798 #: lxc/network_forward.go:864 lxc/network_load_balancer.go:176 -#: lxc/network_load_balancer.go:241 lxc/network_load_balancer.go:459 -#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:725 -#: lxc/network_load_balancer.go:801 lxc/network_load_balancer.go:865 -#: lxc/network_load_balancer.go:966 lxc/network_load_balancer.go:1028 +#: lxc/network_load_balancer.go:246 lxc/network_load_balancer.go:464 +#: lxc/network_load_balancer.go:587 lxc/network_load_balancer.go:730 +#: lxc/network_load_balancer.go:806 lxc/network_load_balancer.go:870 +#: lxc/network_load_balancer.go:971 lxc/network_load_balancer.go:1033 #: lxc/storage.go:99 lxc/storage.go:347 lxc/storage.go:418 lxc/storage.go:671 -#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:85 -#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:248 -#: lxc/storage_bucket.go:379 lxc/storage_bucket.go:536 -#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:695 -#: lxc/storage_bucket.go:770 lxc/storage_bucket.go:850 -#: lxc/storage_bucket.go:928 lxc/storage_bucket.go:993 -#: lxc/storage_bucket.go:1129 lxc/storage_volume.go:358 +#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:90 +#: lxc/storage_bucket.go:190 lxc/storage_bucket.go:253 +#: lxc/storage_bucket.go:384 lxc/storage_bucket.go:541 +#: lxc/storage_bucket.go:634 lxc/storage_bucket.go:700 +#: lxc/storage_bucket.go:775 lxc/storage_bucket.go:855 +#: lxc/storage_bucket.go:933 lxc/storage_bucket.go:998 +#: lxc/storage_bucket.go:1134 lxc/storage_volume.go:358 #: lxc/storage_volume.go:560 lxc/storage_volume.go:639 #: lxc/storage_volume.go:883 lxc/storage_volume.go:1097 #: lxc/storage_volume.go:1210 lxc/storage_volume.go:1678 @@ -1473,11 +1473,11 @@ msgstr "" msgid "Columns" msgstr "Colonnes" -#: lxc/main.go:81 +#: lxc/main.go:82 msgid "Command line client for LXD" msgstr "" -#: lxc/main.go:82 +#: lxc/main.go:83 #, fuzzy msgid "" "Command line client for LXD\n" @@ -1520,19 +1520,15 @@ msgstr "Clé/valeur de configuration à appliquer au nouveau conteneur" #: lxc/config.go:347 lxc/config.go:1277 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/network_load_balancer.go:694 lxc/network_peer.go:610 +#: lxc/network_zone.go:556 lxc/network_zone.go:1148 lxc/profile.go:538 +#: lxc/project.go:315 lxc/storage.go:310 lxc/storage_bucket.go:348 +#: lxc/storage_bucket.go:1097 lxc/storage_volume.go:1016 #: lxc/storage_volume.go:1048 #, c-format msgid "Config parsing error: %s" msgstr "Erreur lors de la lecture de la configuration : %s" -#: lxc/console.go:140 -msgid "Console log:" -msgstr "" - #: lxc/storage_volume.go:561 msgid "Content type, block or filesystem" msgstr "" @@ -1641,12 +1637,12 @@ msgstr "erreur : %v" msgid "Cores:" msgstr "erreur : %v" -#: lxc/remote.go:486 +#: lxc/remote.go:487 #, fuzzy, c-format msgid "Could not close server cert file %q: %w" msgstr "Impossible de créer le dossier de stockage des certificats serveurs" -#: lxc/remote.go:224 lxc/remote.go:470 +#: lxc/remote.go:225 lxc/remote.go:471 msgid "Could not create server cert dir" msgstr "Impossible de créer le dossier de stockage des certificats serveurs" @@ -1685,12 +1681,12 @@ msgstr "Impossible d'assainir le chemin %s" msgid "Could not write new remote certificate for remote '%s' with error: %v" msgstr "" -#: lxc/remote.go:481 +#: lxc/remote.go:482 #, fuzzy, c-format msgid "Could not write server cert file %q: %w" msgstr "Impossible de créer le dossier de stockage des certificats serveurs" -#: lxc/network_zone.go:1327 +#: lxc/network_zone.go:1332 msgid "Couldn't find a matching entry" msgstr "" @@ -1765,7 +1761,7 @@ msgstr "" msgid "Create instances from images" msgstr "Création du conteneur" -#: lxc/storage_bucket.go:846 lxc/storage_bucket.go:847 +#: lxc/storage_bucket.go:851 lxc/storage_bucket.go:852 #, fuzzy msgid "Create key for a storage bucket" msgstr "Copie de l'image : %s" @@ -1804,12 +1800,12 @@ msgstr "Copie de l'image : %s" msgid "Create new network peering" msgstr "Copie de l'image : %s" -#: lxc/network_zone.go:869 lxc/network_zone.go:870 +#: lxc/network_zone.go:874 lxc/network_zone.go:875 #, fuzzy msgid "Create new network zone record" msgstr "Copie de l'image : %s" -#: lxc/network_zone.go:270 lxc/network_zone.go:271 +#: lxc/network_zone.go:271 lxc/network_zone.go:272 #, fuzzy msgid "Create new network zones" msgstr "Copie de l'image : %s" @@ -1866,9 +1862,9 @@ msgstr "" #: 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/network_zone.go:140 lxc/network_zone.go:747 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_bucket.go:512 lxc/storage_bucket.go:832 #: lxc/storage_volume.go:1562 msgid "DESCRIPTION" msgstr "DESCRIPTION" @@ -1940,7 +1936,7 @@ msgstr "L'arrêt du conteneur a échoué !" msgid "Delete instances and snapshots" msgstr "Forcer le conteneur à s'arrêter" -#: lxc/storage_bucket.go:924 lxc/storage_bucket.go:925 +#: lxc/storage_bucket.go:929 lxc/storage_bucket.go:930 #, fuzzy msgid "Delete key from a storage bucket" msgstr "Copie de l'image : %s" @@ -1953,7 +1949,7 @@ msgstr "" msgid "Delete network forwards" msgstr "" -#: lxc/network_load_balancer.go:721 lxc/network_load_balancer.go:722 +#: lxc/network_load_balancer.go:726 lxc/network_load_balancer.go:727 #, fuzzy msgid "Delete network load balancers" msgstr "Récupération de l'image : %s" @@ -1963,12 +1959,12 @@ msgstr "Récupération de l'image : %s" msgid "Delete network peerings" msgstr "Récupération de l'image : %s" -#: lxc/network_zone.go:1175 lxc/network_zone.go:1176 +#: lxc/network_zone.go:1180 lxc/network_zone.go:1181 #, fuzzy msgid "Delete network zone record" msgstr "Récupération de l'image : %s" -#: lxc/network_zone.go:583 lxc/network_zone.go:584 +#: lxc/network_zone.go:588 lxc/network_zone.go:589 #, fuzzy msgid "Delete network zones" msgstr "Récupération de l'image : %s" @@ -1986,7 +1982,7 @@ msgstr "" msgid "Delete projects" msgstr "Récupération de l'image : %s" -#: lxc/storage_bucket.go:182 lxc/storage_bucket.go:183 +#: lxc/storage_bucket.go:187 lxc/storage_bucket.go:188 #, fuzzy msgid "Delete storage buckets" msgstr "Copie de l'image : %s" @@ -2045,7 +2041,7 @@ msgstr "Récupération de l'image : %s" #: 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/info.go:32 lxc/init.go:43 lxc/launch.go:24 lxc/list.go:48 lxc/main.go:83 #: 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 @@ -2064,22 +2060,22 @@ msgstr "Récupération de l'image : %s" #: 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_load_balancer.go:238 lxc/network_load_balancer.go:388 +#: lxc/network_load_balancer.go:456 lxc/network_load_balancer.go:554 +#: lxc/network_load_balancer.go:584 lxc/network_load_balancer.go:727 +#: lxc/network_load_balancer.go:788 lxc/network_load_balancer.go:803 +#: lxc/network_load_balancer.go:867 lxc/network_load_balancer.go:953 +#: lxc/network_load_balancer.go:968 lxc/network_load_balancer.go:1029 #: 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/network_zone.go:29 lxc/network_zone.go:86 lxc/network_zone.go:157 +#: lxc/network_zone.go:212 lxc/network_zone.go:272 lxc/network_zone.go:359 +#: lxc/network_zone.go:439 lxc/network_zone.go:470 lxc/network_zone.go:589 +#: lxc/network_zone.go:637 lxc/network_zone.go:694 lxc/network_zone.go:764 +#: lxc/network_zone.go:816 lxc/network_zone.go:875 lxc/network_zone.go:957 +#: lxc/network_zone.go:1033 lxc/network_zone.go:1063 lxc/network_zone.go:1181 +#: lxc/network_zone.go:1230 lxc/network_zone.go:1245 lxc/network_zone.go:1291 #: 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 @@ -2088,19 +2084,19 @@ msgstr "Récupération de l'image : %s" #: 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:631 lxc/remote.go:669 lxc/remote.go:755 lxc/remote.go:828 -#: lxc/remote.go:884 lxc/remote.go:924 lxc/rename.go:21 lxc/restore.go:24 +#: lxc/query.go:34 lxc/rebuild.go:27 lxc/remote.go:35 lxc/remote.go:91 +#: lxc/remote.go:632 lxc/remote.go:670 lxc/remote.go:756 lxc/remote.go:829 +#: lxc/remote.go:885 lxc/remote.go:925 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_bucket.go:29 lxc/storage_bucket.go:83 lxc/storage_bucket.go:188 +#: lxc/storage_bucket.go:249 lxc/storage_bucket.go:382 +#: lxc/storage_bucket.go:458 lxc/storage_bucket.go:535 +#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:698 +#: lxc/storage_bucket.go:732 lxc/storage_bucket.go:773 +#: lxc/storage_bucket.go:852 lxc/storage_bucket.go:930 +#: lxc/storage_bucket.go:994 lxc/storage_bucket.go:1129 #: 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 @@ -2245,7 +2241,7 @@ msgstr "Forcer le conteneur à s'arrêter" msgid "Don't require user confirmation for using --force" msgstr "Requérir une confirmation de l'utilisateur" -#: lxc/main.go:99 +#: lxc/main.go:100 msgid "Don't show progress information" msgstr "" @@ -2258,7 +2254,7 @@ msgstr "" msgid "Driver: %v (%v)" msgstr "" -#: lxc/network_zone.go:743 +#: lxc/network_zone.go:748 msgid "ENTRIES" msgstr "" @@ -2347,7 +2343,7 @@ msgstr "" msgid "Edit network forward configurations as YAML" msgstr "Clé de configuration invalide" -#: lxc/network_load_balancer.go:578 lxc/network_load_balancer.go:579 +#: lxc/network_load_balancer.go:583 lxc/network_load_balancer.go:584 #, fuzzy msgid "Edit network load balancer configurations as YAML" msgstr "Clé de configuration invalide" @@ -2357,12 +2353,12 @@ msgstr "Clé de configuration invalide" msgid "Edit network peer configurations as YAML" msgstr "Clé de configuration invalide" -#: lxc/network_zone.go:464 lxc/network_zone.go:465 +#: lxc/network_zone.go:469 lxc/network_zone.go:470 #, fuzzy msgid "Edit network zone configurations as YAML" msgstr "Clé de configuration invalide" -#: lxc/network_zone.go:1057 lxc/network_zone.go:1058 +#: lxc/network_zone.go:1062 lxc/network_zone.go:1063 #, fuzzy msgid "Edit network zone record configurations as YAML" msgstr "Clé de configuration invalide" @@ -2376,12 +2372,12 @@ msgstr "" msgid "Edit project configurations as YAML" msgstr "Clé de configuration invalide" -#: lxc/storage_bucket.go:243 lxc/storage_bucket.go:244 +#: lxc/storage_bucket.go:248 lxc/storage_bucket.go:249 #, fuzzy msgid "Edit storage bucket configurations as YAML" msgstr "Clé de configuration invalide" -#: lxc/storage_bucket.go:988 lxc/storage_bucket.go:989 +#: lxc/storage_bucket.go:993 lxc/storage_bucket.go:994 msgid "Edit storage bucket key as YAML" msgstr "" @@ -2423,7 +2419,7 @@ msgid "" " for the address if not yet set." msgstr "" -#: lxc/network_zone.go:1242 +#: lxc/network_zone.go:1247 msgid "Entry TTL" msgstr "" @@ -2453,9 +2449,9 @@ msgstr "Récupération de l'image : %s" #: lxc/cluster.go:414 lxc/config.go:624 lxc/config.go:656 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/network_load_balancer.go:527 lxc/network_peer.go:463 +#: lxc/network_zone.go:414 lxc/network_zone.go:1008 lxc/profile.go:876 +#: lxc/project.go:634 lxc/storage.go:727 lxc/storage_bucket.go:602 #: lxc/storage_volume.go:1947 lxc/storage_volume.go:1985 #, fuzzy, c-format msgid "Error setting properties: %v" @@ -2467,10 +2463,10 @@ msgid "Error unsetting properties: %v" msgstr "Récupération de l'image : %s" #: 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/network_forward.go:513 lxc/network_load_balancer.go:521 +#: lxc/network_peer.go:457 lxc/network_zone.go:408 lxc/network_zone.go:1002 #: lxc/profile.go:870 lxc/project.go:628 lxc/storage.go:721 -#: lxc/storage_bucket.go:591 lxc/storage_volume.go:1941 +#: lxc/storage_bucket.go:596 lxc/storage_volume.go:1941 #: lxc/storage_volume.go:1979 #, c-format msgid "Error unsetting property: %v" @@ -2680,7 +2676,7 @@ msgstr "Échec lors de la génération de 'lxc.%s.1': %v" msgid "Failed parsing SSH host key: %w" msgstr "Échec lors de la génération de 'lxc.%s.1': %v" -#: lxc/console.go:361 +#: lxc/console.go:366 #, fuzzy, c-format msgid "Failed starting command: %w" msgstr "Échec lors de la génération de 'lxc.%s.1': %v" @@ -2695,12 +2691,12 @@ msgstr "Échec lors de la génération de 'lxc.%s.1': %v" msgid "Failed to accept incoming connection: %w" msgstr "Échec lors de la génération de 'lxc.1': %v" -#: lxc/remote.go:190 +#: lxc/remote.go:191 #, fuzzy msgid "Failed to add remote" msgstr "Échec lors de la génération de 'lxc.%s.1': %v" -#: lxc/remote.go:241 +#: lxc/remote.go:242 #, fuzzy, c-format msgid "Failed to close server cert file %q: %w" msgstr "Échec lors de la génération de 'lxc.%s.1': %v" @@ -2710,7 +2706,7 @@ msgstr "Échec lors de la génération de 'lxc.%s.1': %v" msgid "Failed to connect to cluster member: %w" msgstr "Profil à appliquer au nouveau conteneur" -#: lxc/remote.go:231 +#: lxc/remote.go:232 #, fuzzy, c-format msgid "Failed to create %q: %w" msgstr "Échec lors de la génération de 'lxc.%s.1': %v" @@ -2720,12 +2716,12 @@ msgstr "Échec lors de la génération de 'lxc.%s.1': %v" msgid "Failed to create alias %s: %w" msgstr "Échec lors de la génération de 'lxc.%s.1': %v" -#: lxc/remote.go:256 +#: lxc/remote.go:257 #, fuzzy, c-format msgid "Failed to create certificate: %w" msgstr "Échec lors de la génération de 'lxc.%s.1': %v" -#: lxc/remote.go:263 +#: lxc/remote.go:264 #, fuzzy, c-format msgid "Failed to find project: %w" msgstr "Échec lors de la génération de 'lxc.1': %v" @@ -2750,7 +2746,7 @@ msgstr "Échec lors de la génération de 'lxc.%s.1': %v" msgid "Failed to walk path for %s: %s" msgstr "" -#: lxc/remote.go:236 +#: lxc/remote.go:237 #, fuzzy, c-format msgid "Failed to write server cert file %q: %w" msgstr "Échec lors de la génération de 'lxc.%s.1': %v" @@ -2760,7 +2756,7 @@ msgstr "Échec lors de la génération de 'lxc.%s.1': %v" msgid "Fast mode (same as --columns=nsacPt)" msgstr "Mode rapide (identique à --columns=nsacPt" -#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:115 +#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:116 #: lxc/operation.go:136 msgid "Filtering isn't supported yet" msgstr "" @@ -2802,7 +2798,7 @@ msgstr "Forcer le conteneur à s'arrêter" msgid "Force the removal of running instances" msgstr "Forcer la suppression des conteneurs arrêtés" -#: lxc/main.go:95 +#: lxc/main.go:96 msgid "Force using the local unix socket" msgstr "Forcer l'utilisation de la socket unix locale" @@ -2836,10 +2832,10 @@ msgstr "" #: 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/network_peer.go:84 lxc/network_zone.go:89 lxc/network_zone.go:697 #: lxc/operation.go:108 lxc/profile.go:637 lxc/project.go:412 -#: lxc/project.go:804 lxc/remote.go:673 lxc/storage.go:588 -#: lxc/storage_bucket.go:454 lxc/storage_bucket.go:769 +#: lxc/project.go:804 lxc/remote.go:674 lxc/storage.go:588 +#: lxc/storage_bucket.go:459 lxc/storage_bucket.go:774 #: lxc/storage_volume.go:1446 lxc/warning.go:93 msgid "Format (csv|json|table|yaml|compact)" msgstr "" @@ -2876,7 +2872,7 @@ msgstr "" msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)" msgstr "" -#: lxc/remote.go:737 +#: lxc/remote.go:738 msgid "GLOBAL" msgstr "" @@ -2896,7 +2892,7 @@ msgstr "" msgid "Generate manpages for all commands" msgstr "" -#: lxc/remote.go:159 lxc/remote.go:397 +#: lxc/remote.go:160 lxc/remote.go:398 msgid "Generating a client certificate. This may take a minute..." msgstr "Génération d'un certificat client. Ceci peut prendre une minute…" @@ -2930,7 +2926,7 @@ msgstr "" msgid "Get the key as a network forward property" msgstr "Copie de l'image : %s" -#: lxc/network_load_balancer.go:386 +#: lxc/network_load_balancer.go:391 #, fuzzy msgid "Get the key as a network load balancer property" msgstr "Copie de l'image : %s" @@ -2944,12 +2940,12 @@ msgstr "Nom du réseau" msgid "Get the key as a network property" msgstr "" -#: lxc/network_zone.go:214 +#: lxc/network_zone.go:215 #, fuzzy msgid "Get the key as a network zone property" msgstr "Copie de l'image : %s" -#: lxc/network_zone.go:814 +#: lxc/network_zone.go:819 #, fuzzy msgid "Get the key as a network zone record property" msgstr "Clé de configuration invalide" @@ -2962,7 +2958,7 @@ msgstr "" msgid "Get the key as a project property" msgstr "" -#: lxc/storage_bucket.go:380 +#: lxc/storage_bucket.go:385 #, fuzzy msgid "Get the key as a storage bucket property" msgstr "Copie de l'image : %s" @@ -3011,7 +3007,7 @@ msgstr "Clé de configuration invalide" msgid "Get values for network forward configuration keys" msgstr "Clé de configuration invalide" -#: lxc/network_load_balancer.go:382 lxc/network_load_balancer.go:383 +#: lxc/network_load_balancer.go:387 lxc/network_load_balancer.go:388 #, fuzzy msgid "Get values for network load balancer configuration keys" msgstr "Clé de configuration invalide" @@ -3021,12 +3017,12 @@ msgstr "Clé de configuration invalide" msgid "Get values for network peer configuration keys" msgstr "Clé de configuration invalide" -#: lxc/network_zone.go:210 lxc/network_zone.go:211 +#: lxc/network_zone.go:211 lxc/network_zone.go:212 #, fuzzy msgid "Get values for network zone configuration keys" msgstr "Clé de configuration invalide" -#: lxc/network_zone.go:810 lxc/network_zone.go:811 +#: lxc/network_zone.go:815 lxc/network_zone.go:816 #, fuzzy msgid "Get values for network zone record configuration keys" msgstr "Clé de configuration invalide" @@ -3041,7 +3037,7 @@ msgstr "Clé de configuration invalide" msgid "Get values for project configuration keys" msgstr "Clé de configuration invalide" -#: lxc/storage_bucket.go:376 lxc/storage_bucket.go:377 +#: lxc/storage_bucket.go:381 lxc/storage_bucket.go:382 #, fuzzy msgid "Get values for storage bucket configuration keys" msgstr "Clé de configuration invalide" @@ -3187,7 +3183,7 @@ msgstr "" msgid "If the snapshot name already exists, delete and create a new one" msgstr "" -#: lxc/main.go:398 +#: lxc/main.go:400 #, fuzzy msgid "" "If this is your first time running LXD on this machine, you should also run: " @@ -3358,7 +3354,7 @@ msgstr "Le nom du conteneur est : %s" msgid "Instance type" msgstr "" -#: lxc/remote.go:349 +#: lxc/remote.go:350 #, c-format msgid "Invalid URL scheme \"%s\" in \"%s\"" msgstr "Schème d'URL invalide \"%s\" in \"%s\"" @@ -3431,7 +3427,7 @@ msgstr "" msgid "Invalid new snapshot name, parent volume must be the same as source" msgstr "" -#: lxc/main.go:498 +#: lxc/main.go:502 #, fuzzy msgid "Invalid number of arguments" msgstr "nombre d'arguments incorrect pour la sous-comande" @@ -3441,7 +3437,7 @@ msgstr "nombre d'arguments incorrect pour la sous-comande" msgid "Invalid path %s" msgstr "Cible invalide %s" -#: lxc/remote.go:338 +#: lxc/remote.go:339 #, fuzzy, c-format msgid "Invalid protocol: %s" msgstr "Cible invalide %s" @@ -3491,7 +3487,7 @@ msgstr "" #: lxc/list.go:597 lxc/network.go:1059 lxc/network_forward.go:155 #: lxc/network_load_balancer.go:157 lxc/operation.go:177 -#: lxc/storage_bucket.go:511 lxc/storage_volume.go:1569 lxc/warning.go:220 +#: lxc/storage_bucket.go:516 lxc/storage_volume.go:1569 lxc/warning.go:220 msgid "LOCATION" msgstr "" @@ -3499,7 +3495,7 @@ msgstr "" msgid "LXD - Command line client" msgstr "" -#: lxc/console.go:382 +#: lxc/console.go:387 msgid "LXD automatically uses either spicy or remote-viewer when present." msgstr "" @@ -3596,16 +3592,16 @@ msgstr "Nom du réseau" msgid "List available network peers" msgstr "" -#: lxc/network_zone.go:85 +#: lxc/network_zone.go:86 msgid "List available network zone" msgstr "" -#: lxc/network_zone.go:688 lxc/network_zone.go:689 +#: lxc/network_zone.go:693 lxc/network_zone.go:694 #, fuzzy msgid "List available network zone records" msgstr "Nom du réseau" -#: lxc/network_zone.go:84 +#: lxc/network_zone.go:85 msgid "List available network zoneS" msgstr "" @@ -3860,12 +3856,12 @@ msgstr "" msgid "List projects" msgstr "" -#: lxc/storage_bucket.go:766 lxc/storage_bucket.go:768 +#: lxc/storage_bucket.go:771 lxc/storage_bucket.go:773 #, fuzzy msgid "List storage bucket keys" msgstr "Copie de l'image : %s" -#: lxc/storage_bucket.go:451 lxc/storage_bucket.go:453 +#: lxc/storage_bucket.go:456 lxc/storage_bucket.go:458 #, fuzzy msgid "List storage buckets" msgstr "Copie de l'image : %s" @@ -3895,7 +3891,7 @@ msgid "" " U - Current disk usage" msgstr "" -#: lxc/remote.go:668 lxc/remote.go:669 +#: lxc/remote.go:669 lxc/remote.go:670 msgid "List the available remotes" msgstr "" @@ -4142,12 +4138,12 @@ msgstr "Copie de l'image : %s" msgid "Manage network forwards" msgstr "Nom du réseau" -#: lxc/network_load_balancer.go:782 lxc/network_load_balancer.go:783 +#: lxc/network_load_balancer.go:787 lxc/network_load_balancer.go:788 #, fuzzy msgid "Manage network load balancer backends" msgstr "Nom du réseau" -#: lxc/network_load_balancer.go:947 lxc/network_load_balancer.go:948 +#: lxc/network_load_balancer.go:952 lxc/network_load_balancer.go:953 #, fuzzy msgid "Manage network load balancer ports" msgstr "Copie de l'image : %s" @@ -4162,17 +4158,17 @@ msgstr "Nom du réseau" msgid "Manage network peerings" msgstr "Nom du réseau" -#: lxc/network_zone.go:1224 lxc/network_zone.go:1225 +#: lxc/network_zone.go:1229 lxc/network_zone.go:1230 #, fuzzy msgid "Manage network zone record entries" msgstr "Nom du réseau" -#: lxc/network_zone.go:631 lxc/network_zone.go:632 +#: lxc/network_zone.go:636 lxc/network_zone.go:637 #, fuzzy msgid "Manage network zone records" msgstr "Nom du réseau" -#: lxc/network_zone.go:27 lxc/network_zone.go:28 +#: lxc/network_zone.go:28 lxc/network_zone.go:29 #, fuzzy msgid "Manage network zones" msgstr "Nom du réseau" @@ -4191,12 +4187,12 @@ msgstr "" msgid "Manage projects" msgstr "Rendre l'image publique" -#: lxc/storage_bucket.go:726 +#: lxc/storage_bucket.go:731 #, fuzzy msgid "Manage storage bucket keys" msgstr "Copie de l'image : %s" -#: lxc/storage_bucket.go:727 +#: lxc/storage_bucket.go:732 #, fuzzy msgid "Manage storage bucket keys." msgstr "Copie de l'image : %s" @@ -4229,7 +4225,7 @@ msgid "" "\"custom\" (user created) volumes." msgstr "" -#: lxc/remote.go:33 lxc/remote.go:34 +#: lxc/remote.go:34 lxc/remote.go:35 msgid "Manage the list of remote servers" msgstr "" @@ -4315,12 +4311,12 @@ msgid "" "Minimum level for log messages (only available when using pretty format)" msgstr "" -#: lxc/storage_bucket.go:111 lxc/storage_bucket.go:211 -#: lxc/storage_bucket.go:287 lxc/storage_bucket.go:406 -#: lxc/storage_bucket.go:563 lxc/storage_bucket.go:655 -#: lxc/storage_bucket.go:797 lxc/storage_bucket.go:878 -#: lxc/storage_bucket.go:953 lxc/storage_bucket.go:1032 -#: lxc/storage_bucket.go:1155 +#: lxc/storage_bucket.go:116 lxc/storage_bucket.go:216 +#: lxc/storage_bucket.go:292 lxc/storage_bucket.go:411 +#: lxc/storage_bucket.go:568 lxc/storage_bucket.go:660 +#: lxc/storage_bucket.go:802 lxc/storage_bucket.go:883 +#: lxc/storage_bucket.go:958 lxc/storage_bucket.go:1037 +#: lxc/storage_bucket.go:1160 #, fuzzy msgid "Missing bucket name" msgstr "Résumé manquant." @@ -4373,8 +4369,8 @@ msgstr "Vous devez fournir le nom d'un conteneur pour : " msgid "Missing instance name" msgstr "Vous devez fournir le nom d'un conteneur pour : " -#: lxc/storage_bucket.go:882 lxc/storage_bucket.go:957 -#: lxc/storage_bucket.go:1036 lxc/storage_bucket.go:1159 +#: lxc/storage_bucket.go:887 lxc/storage_bucket.go:962 +#: lxc/storage_bucket.go:1041 lxc/storage_bucket.go:1164 #, fuzzy msgid "Missing key name" msgstr "Résumé manquant." @@ -4383,10 +4379,10 @@ msgstr "Résumé manquant." #: lxc/network_forward.go:481 lxc/network_forward.go:627 #: lxc/network_forward.go:746 lxc/network_forward.go:823 #: lxc/network_forward.go:889 lxc/network_load_balancer.go:201 -#: lxc/network_load_balancer.go:411 lxc/network_load_balancer.go:484 -#: lxc/network_load_balancer.go:630 lxc/network_load_balancer.go:750 -#: lxc/network_load_balancer.go:826 lxc/network_load_balancer.go:890 -#: lxc/network_load_balancer.go:991 lxc/network_load_balancer.go:1053 +#: lxc/network_load_balancer.go:416 lxc/network_load_balancer.go:489 +#: lxc/network_load_balancer.go:635 lxc/network_load_balancer.go:755 +#: lxc/network_load_balancer.go:831 lxc/network_load_balancer.go:895 +#: lxc/network_load_balancer.go:996 lxc/network_load_balancer.go:1058 #, fuzzy msgid "Missing listen address" msgstr "Vous devez fournir le nom d'un conteneur pour : " @@ -4414,11 +4410,11 @@ msgstr "Nom du réseau" #: lxc/network_forward.go:477 lxc/network_forward.go:623 #: lxc/network_forward.go:742 lxc/network_forward.go:819 #: lxc/network_forward.go:885 lxc/network_load_balancer.go:123 -#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:261 -#: lxc/network_load_balancer.go:407 lxc/network_load_balancer.go:480 -#: lxc/network_load_balancer.go:626 lxc/network_load_balancer.go:746 -#: lxc/network_load_balancer.go:822 lxc/network_load_balancer.go:886 -#: lxc/network_load_balancer.go:987 lxc/network_load_balancer.go:1049 +#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:266 +#: lxc/network_load_balancer.go:412 lxc/network_load_balancer.go:485 +#: lxc/network_load_balancer.go:631 lxc/network_load_balancer.go:751 +#: lxc/network_load_balancer.go:827 lxc/network_load_balancer.go:891 +#: lxc/network_load_balancer.go:992 lxc/network_load_balancer.go:1054 #: lxc/network_peer.go:110 lxc/network_peer.go:180 lxc/network_peer.go:237 #: lxc/network_peer.go:355 lxc/network_peer.go:426 lxc/network_peer.go:556 #: lxc/network_peer.go:665 @@ -4426,16 +4422,16 @@ msgstr "Nom du réseau" msgid "Missing network name" msgstr "Nom du réseau" -#: lxc/network_zone.go:178 lxc/network_zone.go:234 lxc/network_zone.go:294 -#: lxc/network_zone.go:382 lxc/network_zone.go:503 lxc/network_zone.go:606 -#: lxc/network_zone.go:712 lxc/network_zone.go:780 lxc/network_zone.go:892 -#: lxc/network_zone.go:976 lxc/network_zone.go:1197 lxc/network_zone.go:1262 -#: lxc/network_zone.go:1307 +#: lxc/network_zone.go:179 lxc/network_zone.go:235 lxc/network_zone.go:299 +#: lxc/network_zone.go:387 lxc/network_zone.go:508 lxc/network_zone.go:611 +#: lxc/network_zone.go:717 lxc/network_zone.go:785 lxc/network_zone.go:897 +#: lxc/network_zone.go:981 lxc/network_zone.go:1202 lxc/network_zone.go:1267 +#: lxc/network_zone.go:1312 #, fuzzy msgid "Missing network zone name" msgstr "Nom du réseau" -#: lxc/network_zone.go:833 lxc/network_zone.go:1095 +#: lxc/network_zone.go:838 lxc/network_zone.go:1100 #, fuzzy msgid "Missing network zone record name" msgstr "Nom du réseau" @@ -4447,13 +4443,13 @@ msgid "Missing peer name" msgstr "Résumé manquant." #: lxc/storage.go:194 lxc/storage.go:264 lxc/storage.go:370 lxc/storage.go:440 -#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:107 -#: lxc/storage_bucket.go:207 lxc/storage_bucket.go:283 -#: lxc/storage_bucket.go:402 lxc/storage_bucket.go:477 -#: lxc/storage_bucket.go:559 lxc/storage_bucket.go:651 -#: lxc/storage_bucket.go:793 lxc/storage_bucket.go:874 -#: lxc/storage_bucket.go:949 lxc/storage_bucket.go:1028 -#: lxc/storage_bucket.go:1151 lxc/storage_volume.go:189 +#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:112 +#: lxc/storage_bucket.go:212 lxc/storage_bucket.go:288 +#: lxc/storage_bucket.go:407 lxc/storage_bucket.go:482 +#: lxc/storage_bucket.go:564 lxc/storage_bucket.go:656 +#: lxc/storage_bucket.go:798 lxc/storage_bucket.go:879 +#: lxc/storage_bucket.go:954 lxc/storage_bucket.go:1033 +#: lxc/storage_bucket.go:1156 lxc/storage_volume.go:189 #: lxc/storage_volume.go:287 lxc/storage_volume.go:583 #: lxc/storage_volume.go:660 lxc/storage_volume.go:735 #: lxc/storage_volume.go:817 lxc/storage_volume.go:919 @@ -4586,7 +4582,7 @@ msgstr "" msgid "Moving the storage volume: %s" msgstr "Copie de l'image : %s" -#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1097 +#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1102 msgid "Multiple ports match. Use --force to remove them all" msgstr "" @@ -4606,10 +4602,10 @@ msgstr "Vous devez fournir le nom d'un conteneur pour : " #: 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:731 lxc/storage.go:638 lxc/storage_bucket.go:506 -#: lxc/storage_bucket.go:826 lxc/storage_volume.go:1561 +#: lxc/network_acl.go:147 lxc/network_peer.go:139 lxc/network_zone.go:139 +#: lxc/network_zone.go:746 lxc/profile.go:677 lxc/project.go:498 +#: lxc/remote.go:732 lxc/storage.go:638 lxc/storage_bucket.go:511 +#: lxc/storage_bucket.go:831 lxc/storage_volume.go:1561 msgid "NAME" msgstr "NOM" @@ -4635,7 +4631,7 @@ msgstr "" #: lxc/network.go:957 lxc/operation.go:154 lxc/project.go:456 #: lxc/project.go:461 lxc/project.go:466 lxc/project.go:471 lxc/project.go:476 -#: lxc/project.go:481 lxc/remote.go:691 lxc/remote.go:696 lxc/remote.go:701 +#: lxc/project.go:481 lxc/remote.go:692 lxc/remote.go:697 lxc/remote.go:702 msgid "NO" msgstr "NON" @@ -4663,7 +4659,7 @@ msgstr "" msgid "Name" msgstr "Nom : %s" -#: lxc/remote.go:141 +#: lxc/remote.go:142 msgid "Name of the project to use for this remote:" msgstr "" @@ -4712,12 +4708,12 @@ msgstr "Le réseau %s a été supprimé" msgid "Network ACL %s renamed to %s" msgstr "Le réseau %s a été créé" -#: lxc/network_zone.go:336 +#: lxc/network_zone.go:341 #, fuzzy, c-format msgid "Network Zone %s created" msgstr "Le réseau %s a été créé" -#: lxc/network_zone.go:616 +#: lxc/network_zone.go:621 #, fuzzy, c-format msgid "Network Zone %s deleted" msgstr "Le réseau %s a été supprimé" @@ -4732,12 +4728,12 @@ msgstr "Le réseau %s a été créé" msgid "Network forward %s deleted" msgstr "Le réseau %s a été supprimé" -#: lxc/network_load_balancer.go:365 +#: lxc/network_load_balancer.go:370 #, fuzzy, c-format msgid "Network load balancer %s created" msgstr "Le réseau %s a été créé" -#: lxc/network_load_balancer.go:767 +#: lxc/network_load_balancer.go:772 #, fuzzy, c-format msgid "Network load balancer %s deleted" msgstr "Le réseau %s a été supprimé" @@ -4777,12 +4773,12 @@ msgstr "Nom du réseau" msgid "Network usage:" msgstr " Réseau utilisé :" -#: lxc/network_zone.go:934 +#: lxc/network_zone.go:939 #, fuzzy, c-format msgid "Network zone record %s created" msgstr "Le réseau %s a été créé" -#: lxc/network_zone.go:1207 +#: lxc/network_zone.go:1212 #, fuzzy, c-format msgid "Network zone record %s deleted" msgstr "Le réseau %s a été supprimé" @@ -4820,11 +4816,11 @@ msgstr "Aucun périphérique existant pour ce réseau" msgid "No device found for this storage volume" msgstr "Aucun périphérique existant pour ce réseau" -#: lxc/network_load_balancer.go:921 +#: lxc/network_load_balancer.go:926 msgid "No matching backend found" msgstr "" -#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1108 +#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1113 msgid "No matching port(s) found" msgstr "" @@ -4877,7 +4873,7 @@ msgid "Only \"custom\" volumes can be snapshotted" msgstr "" "Seuls les volumes \"personnalisés\" peuvent être attachés aux conteneurs." -#: lxc/remote.go:332 +#: lxc/remote.go:333 msgid "Only https URLs are supported for simplestreams" msgstr "Seules les URLs https sont supportées par simplestreams" @@ -4906,7 +4902,7 @@ msgstr "Le réseau %s a été supprimé" msgid "Optimized Storage" msgstr "" -#: lxc/main.go:96 +#: lxc/main.go:97 #, fuzzy msgid "Override the source project" msgstr "impossible de supprimer le serveur distant par défaut" @@ -4953,11 +4949,11 @@ msgstr "PROFILS" msgid "PROJECT" msgstr "" -#: lxc/remote.go:733 +#: lxc/remote.go:734 msgid "PROTOCOL" msgstr "PROTOCOLE" -#: lxc/image.go:1073 lxc/remote.go:735 +#: lxc/image.go:1073 lxc/remote.go:736 msgid "PUBLIC" msgstr "PUBLIC" @@ -4974,7 +4970,7 @@ msgstr "Paquets émis" msgid "Partitions:" msgstr "Options :" -#: lxc/main.go:361 +#: lxc/main.go:363 #, fuzzy, c-format msgid "Password for %s: " msgstr "Mot de passe administrateur pour %s : " @@ -4988,7 +4984,7 @@ msgstr "Création du conteneur" msgid "Perform an incremental copy" msgstr "" -#: lxc/remote.go:182 +#: lxc/remote.go:183 #, fuzzy msgid "Please provide an alternate server address (empty to abort):" msgstr "Chemin vers un dossier de configuration serveur alternatif" @@ -5002,7 +4998,7 @@ msgstr "" msgid "Please provide cluster member name: " msgstr "Vous devez fournir le nom d'un conteneur pour : " -#: lxc/remote.go:462 +#: lxc/remote.go:463 msgid "Please type 'y', 'n' or the fingerprint:" msgstr "" @@ -5024,10 +5020,10 @@ msgstr "" #: lxc/config.go:1278 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/network_load_balancer.go:695 lxc/network_peer.go:611 +#: lxc/network_zone.go:557 lxc/network_zone.go:1149 lxc/profile.go:539 +#: lxc/project.go:316 lxc/storage.go:311 lxc/storage_bucket.go:349 +#: lxc/storage_bucket.go:1098 lxc/storage_volume.go:1017 #: lxc/storage_volume.go:1049 #, fuzzy msgid "Press enter to open the editor again or ctrl+c to abort change" @@ -5037,7 +5033,7 @@ msgstr "Appuyer sur Entrée pour ouvrir à nouveau l'éditeur" msgid "Pretty rendering (short for --format=pretty)" msgstr "" -#: lxc/main.go:94 +#: lxc/main.go:95 msgid "Print help" msgstr "" @@ -5045,7 +5041,7 @@ msgstr "" msgid "Print the raw response" msgstr "" -#: lxc/main.go:93 +#: lxc/main.go:94 msgid "Print version number" msgstr "" @@ -5139,7 +5135,7 @@ msgstr "Profil %s supprimé" msgid "Project %s renamed to %s" msgstr "Profil %s ajouté à %s" -#: lxc/remote.go:106 +#: lxc/remote.go:107 msgid "Project to use for the remote" msgstr "" @@ -5237,7 +5233,7 @@ msgid "" "pool \"default\"." msgstr "" -#: lxc/remote.go:105 +#: lxc/remote.go:106 msgid "Public image server" msgstr "Serveur d'images public" @@ -5289,7 +5285,7 @@ msgstr "" msgid "RESOURCE" msgstr "SOURCE" -#: lxc/storage_bucket.go:828 +#: lxc/storage_bucket.go:833 msgid "ROLE" msgstr "" @@ -5337,45 +5333,45 @@ msgstr "Ignorer l'état du conteneur (seulement pour start)" msgid "Refreshing the image: %s" msgstr "Récupération de l'image : %s" -#: lxc/remote.go:785 +#: lxc/remote.go:786 #, fuzzy, c-format msgid "Remote %s already exists" msgstr "le serveur distant %s existe déjà" -#: lxc/project.go:769 lxc/remote.go:776 lxc/remote.go:849 lxc/remote.go:905 -#: lxc/remote.go:945 +#: lxc/project.go:769 lxc/remote.go:777 lxc/remote.go:850 lxc/remote.go:906 +#: lxc/remote.go:946 #, fuzzy, c-format msgid "Remote %s doesn't exist" msgstr "le serveur distant %s n'existe pas" -#: lxc/remote.go:301 +#: lxc/remote.go:302 #, fuzzy, c-format msgid "Remote %s exists as <%s>" msgstr "le serveur distant %s existe en tant que <%s>" -#: lxc/remote.go:857 +#: lxc/remote.go:858 #, fuzzy, c-format msgid "Remote %s is global and cannot be removed" msgstr "le serveur distant %s est statique et ne peut être modifié" -#: lxc/remote.go:780 lxc/remote.go:853 lxc/remote.go:949 +#: lxc/remote.go:781 lxc/remote.go:854 lxc/remote.go:950 #, fuzzy, c-format msgid "Remote %s is static and cannot be modified" msgstr "le serveur distant %s est statique et ne peut être modifié" -#: lxc/remote.go:290 +#: lxc/remote.go:291 msgid "Remote address must not be empty" msgstr "" -#: lxc/remote.go:101 +#: lxc/remote.go:102 msgid "Remote admin password" msgstr "Mot de passe de l'administrateur distant" -#: lxc/remote.go:295 +#: lxc/remote.go:296 msgid "Remote names may not contain colons" msgstr "" -#: lxc/remote.go:102 +#: lxc/remote.go:103 #, fuzzy msgid "Remote trust token" msgstr "Ajouter de nouveaux clients de confiance" @@ -5404,7 +5400,7 @@ msgstr "Création du conteneur" msgid "Remove a member from the cluster" msgstr "" -#: lxc/network_zone.go:1285 +#: lxc/network_zone.go:1290 #, fuzzy msgid "Remove a network zone record entry" msgstr "Clé de configuration invalide" @@ -5414,7 +5410,7 @@ msgstr "Clé de configuration invalide" msgid "Remove aliases" msgstr "Mot de passe de l'administrateur distant" -#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1025 +#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1030 msgid "Remove all ports that match" msgstr "" @@ -5422,17 +5418,17 @@ msgstr "" msgid "Remove all rules that match" msgstr "" -#: lxc/network_load_balancer.go:862 +#: lxc/network_load_balancer.go:867 #, fuzzy msgid "Remove backend from a load balancer" msgstr "Vous devez fournir le nom d'un conteneur pour : " -#: lxc/network_load_balancer.go:861 +#: lxc/network_load_balancer.go:866 #, fuzzy msgid "Remove backends from a load balancer" msgstr "Vous devez fournir le nom d'un conteneur pour : " -#: lxc/network_zone.go:1286 +#: lxc/network_zone.go:1291 #, fuzzy msgid "Remove entries from a network zone record" msgstr "Création du conteneur" @@ -5461,7 +5457,7 @@ msgstr "Création du conteneur" msgid "Remove ports from a forward" msgstr "Création du conteneur" -#: lxc/network_load_balancer.go:1023 lxc/network_load_balancer.go:1024 +#: lxc/network_load_balancer.go:1028 lxc/network_load_balancer.go:1029 #, fuzzy msgid "Remove ports from a load balancer" msgstr "Création du conteneur" @@ -5471,7 +5467,7 @@ msgstr "Création du conteneur" msgid "Remove profiles from instances" msgstr "Création du conteneur" -#: lxc/remote.go:827 lxc/remote.go:828 +#: lxc/remote.go:828 lxc/remote.go:829 msgid "Remove remotes" msgstr "" @@ -5535,7 +5531,7 @@ msgstr "" msgid "Rename projects" msgstr "Créé : %s" -#: lxc/remote.go:754 lxc/remote.go:755 +#: lxc/remote.go:755 lxc/remote.go:756 msgid "Rename remotes" msgstr "" @@ -5637,7 +5633,7 @@ msgstr "" #: lxc/console.go:44 #, fuzzy -msgid "Retrieve the instance's console log" +msgid "Retrieve the container's console log" msgstr "Forcer l'arrêt du conteneur (seulement pour stop)" #: lxc/init.go:347 @@ -5655,7 +5651,7 @@ msgstr "Vous devez fournir le nom d'un conteneur pour : " msgid "Revoke cluster member join token" msgstr "Vous devez fournir le nom d'un conteneur pour : " -#: lxc/storage_bucket.go:851 +#: lxc/storage_bucket.go:856 msgid "Role (admin or read-only)" msgstr "" @@ -5707,7 +5703,7 @@ msgstr "Mot de passe de l'administrateur distant" msgid "STATE" msgstr "ÉTAT" -#: lxc/remote.go:736 +#: lxc/remote.go:737 msgid "STATIC" msgstr "STATIQUE" @@ -5734,11 +5730,11 @@ msgstr "ENSEMBLE DE STOCKAGE" msgid "STP" msgstr "" -#: lxc/storage_bucket.go:853 +#: lxc/storage_bucket.go:858 msgid "Secret key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:909 +#: lxc/storage_bucket.go:914 #, fuzzy, c-format msgid "Secret key: %s" msgstr "Créé : %s" @@ -5747,21 +5743,21 @@ msgstr "Créé : %s" msgid "Send a raw query to LXD" msgstr "" -#: lxc/remote.go:104 +#: lxc/remote.go:105 msgid "Server authentication type (tls or oidc)" msgstr "" -#: lxc/remote.go:460 +#: lxc/remote.go:461 msgid "Server certificate NACKed by user" msgstr "Certificat serveur rejeté par l'utilisateur" -#: lxc/remote.go:599 +#: lxc/remote.go:600 #, fuzzy msgid "Server doesn't trust us after authentication" msgstr "" "Le serveur ne nous fait pas confiance après l'ajout de notre certificat" -#: lxc/remote.go:103 +#: lxc/remote.go:104 msgid "Server protocol (lxd or simplestreams)" msgstr "Protocole du serveur (lxd ou simplestreams)" @@ -5867,12 +5863,12 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_load_balancer.go:450 +#: lxc/network_load_balancer.go:455 #, fuzzy msgid "Set network load balancer keys" msgstr "Nom du réseau" -#: lxc/network_load_balancer.go:451 +#: lxc/network_load_balancer.go:456 msgid "" "Set network load balancer keys\n" "\n" @@ -5895,12 +5891,12 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:353 +#: lxc/network_zone.go:358 #, fuzzy msgid "Set network zone configuration keys" msgstr "Clé de configuration invalide" -#: lxc/network_zone.go:354 +#: lxc/network_zone.go:359 msgid "" "Set network zone configuration keys\n" "\n" @@ -5909,7 +5905,7 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:951 lxc/network_zone.go:952 +#: lxc/network_zone.go:956 lxc/network_zone.go:957 #, fuzzy msgid "Set network zone record configuration keys" msgstr "Clé de configuration invalide" @@ -5942,12 +5938,12 @@ msgid "" " lxc project set [:] " msgstr "" -#: lxc/storage_bucket.go:529 +#: lxc/storage_bucket.go:534 #, fuzzy msgid "Set storage bucket configuration keys" msgstr "Clé de configuration invalide" -#: lxc/storage_bucket.go:530 +#: lxc/storage_bucket.go:535 msgid "" "Set storage bucket configuration keys\n" "\n" @@ -5984,7 +5980,7 @@ msgid "" " lxc storage volume set [:] [/] " msgstr "" -#: lxc/remote.go:923 lxc/remote.go:924 +#: lxc/remote.go:924 lxc/remote.go:925 msgid "Set the URL for the remote" msgstr "" @@ -6013,7 +6009,7 @@ msgstr "" msgid "Set the key as a network forward property" msgstr "Nom du réseau" -#: lxc/network_load_balancer.go:458 +#: lxc/network_load_balancer.go:463 #, fuzzy msgid "Set the key as a network load balancer property" msgstr "Nom du réseau" @@ -6027,12 +6023,12 @@ msgstr "Nom du réseau" msgid "Set the key as a network property" msgstr "" -#: lxc/network_zone.go:361 +#: lxc/network_zone.go:366 #, fuzzy msgid "Set the key as a network zone property" msgstr "Copie de l'image : %s" -#: lxc/network_zone.go:957 +#: lxc/network_zone.go:962 #, fuzzy msgid "Set the key as a network zone record property" msgstr "Clé de configuration invalide" @@ -6045,7 +6041,7 @@ msgstr "" msgid "Set the key as a project property" msgstr "" -#: lxc/storage_bucket.go:537 +#: lxc/storage_bucket.go:542 #, fuzzy msgid "Set the key as a storage bucket property" msgstr "Copie de l'image : %s" @@ -6068,11 +6064,11 @@ msgstr "" msgid "Setup SSH SFTP listener on address:port instead of mounting" msgstr "" -#: lxc/main.go:97 +#: lxc/main.go:98 msgid "Show all debug messages" msgstr "" -#: lxc/main.go:98 +#: lxc/main.go:99 msgid "Show all information messages" msgstr "" @@ -6149,7 +6145,7 @@ msgstr "Afficher la configuration étendue" msgid "Show instance or server information" msgstr "Afficher des informations supplémentaires" -#: lxc/main.go:271 lxc/main.go:272 +#: lxc/main.go:272 lxc/main.go:273 #, fuzzy msgid "Show less common commands" msgstr "Afficher les commandes moins communes" @@ -6189,17 +6185,17 @@ msgstr "Afficher la configuration étendue" msgid "Show network peer configurations" msgstr "Afficher la configuration étendue" -#: lxc/network_zone.go:155 lxc/network_zone.go:156 +#: lxc/network_zone.go:156 lxc/network_zone.go:157 #, fuzzy msgid "Show network zone configurations" msgstr "Afficher la configuration étendue" -#: lxc/network_zone.go:758 +#: lxc/network_zone.go:763 #, fuzzy msgid "Show network zone record configuration" msgstr "Afficher la configuration étendue" -#: lxc/network_zone.go:759 +#: lxc/network_zone.go:764 #, fuzzy msgid "Show network zone record configurations" msgstr "Afficher la configuration étendue" @@ -6214,12 +6210,12 @@ msgstr "Afficher la configuration étendue" msgid "Show project options" msgstr "Afficher la configuration étendue" -#: lxc/storage_bucket.go:623 lxc/storage_bucket.go:624 +#: lxc/storage_bucket.go:628 lxc/storage_bucket.go:629 #, fuzzy msgid "Show storage bucket configurations" msgstr "Afficher la configuration étendue" -#: lxc/storage_bucket.go:1123 lxc/storage_bucket.go:1124 +#: lxc/storage_bucket.go:1128 lxc/storage_bucket.go:1129 #, fuzzy msgid "Show storage bucket key configurations" msgstr "Afficher la configuration étendue" @@ -6248,7 +6244,7 @@ msgid "" "that are granted via identity provider group mappings. \n" msgstr "" -#: lxc/remote.go:630 lxc/remote.go:631 +#: lxc/remote.go:631 lxc/remote.go:632 #, fuzzy msgid "Show the default remote" msgstr "impossible de supprimer le serveur distant par défaut" @@ -6383,22 +6379,22 @@ msgstr "L'arrêt du conteneur a échoué !" msgid "Stopping the instance failed: %s" msgstr "L'arrêt du conteneur a échoué !" -#: lxc/storage_bucket.go:161 +#: lxc/storage_bucket.go:166 #, fuzzy, c-format msgid "Storage bucket %s created" msgstr "Profil %s créé" -#: lxc/storage_bucket.go:228 +#: lxc/storage_bucket.go:233 #, fuzzy, c-format msgid "Storage bucket %s deleted" msgstr "Profil %s supprimé" -#: lxc/storage_bucket.go:907 +#: lxc/storage_bucket.go:912 #, fuzzy, c-format msgid "Storage bucket key %s added" msgstr "Profil %s créé" -#: lxc/storage_bucket.go:973 +#: lxc/storage_bucket.go:978 #, fuzzy, c-format msgid "Storage bucket key %s removed" msgstr "Profil %s créé" @@ -6475,7 +6471,7 @@ msgstr "Swap (pointe)" msgid "Switch the current project" msgstr "impossible de supprimer le serveur distant par défaut" -#: lxc/remote.go:883 lxc/remote.go:884 +#: lxc/remote.go:884 lxc/remote.go:885 #, fuzzy msgid "Switch the default remote" msgstr "impossible de supprimer le serveur distant par défaut" @@ -6601,7 +6597,7 @@ msgstr "Vous devez fournir le nom d'un conteneur pour : " msgid "The property %q does not exist on the instance snapshot %s/%s: %v" msgstr "Vous devez fournir le nom d'un conteneur pour : " -#: lxc/network_load_balancer.go:424 +#: lxc/network_load_balancer.go:429 #, fuzzy, c-format msgid "The property %q does not exist on the load balancer %q: %v" msgstr "Vous devez fournir le nom d'un conteneur pour : " @@ -6626,12 +6622,12 @@ msgstr "Vous devez fournir le nom d'un conteneur pour : " msgid "The property %q does not exist on the network peer %q: %v" msgstr "Vous devez fournir le nom d'un conteneur pour : " -#: lxc/network_zone.go:246 +#: lxc/network_zone.go:247 #, fuzzy, c-format msgid "The property %q does not exist on the network zone %q: %v" msgstr "Vous devez fournir le nom d'un conteneur pour : " -#: lxc/network_zone.go:845 +#: lxc/network_zone.go:850 #, fuzzy, c-format msgid "The property %q does not exist on the network zone record %q: %v" msgstr "Vous devez fournir le nom d'un conteneur pour : " @@ -6646,7 +6642,7 @@ msgstr "Vous devez fournir le nom d'un conteneur pour : " msgid "The property %q does not exist on the project %q: %v" msgstr "Vous devez fournir le nom d'un conteneur pour : " -#: lxc/storage_bucket.go:426 +#: lxc/storage_bucket.go:431 #, fuzzy, c-format msgid "The property %q does not exist on the storage bucket %q: %v" msgstr "Vous devez fournir le nom d'un conteneur pour : " @@ -6702,7 +6698,7 @@ msgstr "" msgid "This LXD server is not available on the network" msgstr "L'importation de répertoire n'est pas disponible sur cette plateforme" -#: lxc/main.go:293 +#: lxc/main.go:294 msgid "" "This client hasn't been configured to use a remote LXD server yet.\n" "As your platform can't run native Linux instances, you must connect to a " @@ -6736,11 +6732,11 @@ msgstr "Pour attacher un réseau à un conteneur, utiliser : lxc network attach" msgid "To create a new network, use: lxc network create" msgstr "Pour créer un réseau, utiliser : lxc network create" -#: lxc/console.go:210 +#: lxc/console.go:215 msgid "To detach from the console, press: +a q" msgstr "" -#: lxc/main.go:403 +#: lxc/main.go:406 #, fuzzy msgid "" "To start your first container, try: lxc launch ubuntu:24.04\n" @@ -6842,7 +6838,7 @@ msgstr "" msgid "UPLOAD DATE" msgstr "DATE DE PUBLICATION" -#: lxc/cluster.go:184 lxc/remote.go:732 +#: lxc/cluster.go:184 lxc/remote.go:733 msgid "URL" msgstr "URL" @@ -6851,7 +6847,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:679 lxc/project.go:506 +#: lxc/network_zone.go:141 lxc/profile.go:679 lxc/project.go:506 #: lxc/storage.go:647 lxc/storage_volume.go:1564 msgid "USED BY" msgstr "UTILISÉ PAR" @@ -6870,7 +6866,7 @@ msgstr "" msgid "Unable to create a temporary file: %v" msgstr "" -#: lxc/remote.go:213 lxc/remote.go:247 +#: lxc/remote.go:214 lxc/remote.go:248 #, fuzzy msgid "Unavailable remote server" msgstr "Ajouter de nouveaux serveurs distants" @@ -6891,7 +6887,7 @@ msgstr "" msgid "Unknown column shorthand char '%c' in '%s'" msgstr "" -#: lxc/console.go:159 +#: lxc/console.go:164 #, c-format msgid "Unknown console type %q" msgstr "" @@ -6960,12 +6956,12 @@ msgstr "Clé de configuration invalide" msgid "Unset network forward keys" msgstr "Nom du réseau" -#: lxc/network_load_balancer.go:548 +#: lxc/network_load_balancer.go:553 #, fuzzy msgid "Unset network load balancer configuration keys" msgstr "Clé de configuration invalide" -#: lxc/network_load_balancer.go:549 +#: lxc/network_load_balancer.go:554 #, fuzzy msgid "Unset network load balancer keys" msgstr "Nom du réseau" @@ -6980,12 +6976,12 @@ msgstr "Clé de configuration invalide" msgid "Unset network peer keys" msgstr "Nom du réseau" -#: lxc/network_zone.go:433 lxc/network_zone.go:434 +#: lxc/network_zone.go:438 lxc/network_zone.go:439 #, fuzzy msgid "Unset network zone configuration keys" msgstr "Clé de configuration invalide" -#: lxc/network_zone.go:1027 lxc/network_zone.go:1028 +#: lxc/network_zone.go:1032 lxc/network_zone.go:1033 #, fuzzy msgid "Unset network zone record configuration keys" msgstr "Clé de configuration invalide" @@ -7000,7 +6996,7 @@ msgstr "Clé de configuration invalide" msgid "Unset project configuration keys" msgstr "Clé de configuration invalide" -#: lxc/storage_bucket.go:692 lxc/storage_bucket.go:693 +#: lxc/storage_bucket.go:697 lxc/storage_bucket.go:698 #, fuzzy msgid "Unset storage bucket configuration keys" msgstr "Clé de configuration invalide" @@ -7028,7 +7024,7 @@ msgstr "" msgid "Unset the key as a network forward property" msgstr "Nom du réseau" -#: lxc/network_load_balancer.go:552 +#: lxc/network_load_balancer.go:557 #, fuzzy msgid "Unset the key as a network load balancer property" msgstr "Nom du réseau" @@ -7043,12 +7039,12 @@ msgstr "Nom du réseau" msgid "Unset the key as a network property" msgstr "Nom du réseau" -#: lxc/network_zone.go:437 +#: lxc/network_zone.go:442 #, fuzzy msgid "Unset the key as a network zone property" msgstr "Copie de l'image : %s" -#: lxc/network_zone.go:1031 +#: lxc/network_zone.go:1036 #, fuzzy msgid "Unset the key as a network zone record property" msgstr "Clé de configuration invalide" @@ -7061,7 +7057,7 @@ msgstr "" msgid "Unset the key as a project property" msgstr "" -#: lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:701 #, fuzzy msgid "Unset the key as a storage bucket property" msgstr "Copie de l'image : %s" @@ -7128,7 +7124,7 @@ msgid "" "Use storage driver optimized format (can only be restored on a similar pool)" msgstr "" -#: lxc/main.go:100 +#: lxc/main.go:101 msgid "Use with help or --help to view sub-commands" msgstr "" @@ -7232,7 +7228,7 @@ msgstr "" #: lxc/network.go:959 lxc/operation.go:156 lxc/project.go:458 #: lxc/project.go:463 lxc/project.go:468 lxc/project.go:473 lxc/project.go:478 -#: lxc/project.go:483 lxc/remote.go:693 lxc/remote.go:698 lxc/remote.go:703 +#: lxc/project.go:483 lxc/remote.go:694 lxc/remote.go:699 lxc/remote.go:704 msgid "YES" msgstr "OUI" @@ -7279,7 +7275,7 @@ 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/network.go:909 lxc/network_acl.go:91 lxc/network_zone.go:83 #: lxc/operation.go:103 lxc/profile.go:630 lxc/project.go:407 #: lxc/storage.go:583 lxc/version.go:20 lxc/warning.go:68 #, fuzzy @@ -7408,7 +7404,7 @@ msgstr "" "Détruit les conteneurs ou les instantanés ainsi que toute donnée associée " "(configuration, instantanés, …)." -#: lxc/network_zone.go:154 lxc/network_zone.go:463 lxc/network_zone.go:581 +#: lxc/network_zone.go:155 lxc/network_zone.go:468 lxc/network_zone.go:586 #, fuzzy msgid "[:]" msgstr "" @@ -7416,7 +7412,7 @@ msgstr "" "\n" "lxc %s [:] [[:]...]%s" -#: lxc/network_zone.go:209 lxc/network_zone.go:432 +#: lxc/network_zone.go:210 lxc/network_zone.go:437 #, fuzzy msgid "[:] " msgstr "" @@ -7424,7 +7420,7 @@ msgstr "" "\n" "lxc %s [:] [[:]...]%s" -#: lxc/network_zone.go:352 +#: lxc/network_zone.go:357 #, fuzzy msgid "[:] =..." msgstr "" @@ -7432,7 +7428,7 @@ msgstr "" "\n" "lxc %s [:] [[:]...]%s" -#: lxc/network_zone.go:269 +#: lxc/network_zone.go:270 #, fuzzy msgid "[:] [key=value...]" msgstr "" @@ -7999,7 +7995,7 @@ msgstr "" #: lxc/network_forward.go:169 lxc/network_forward.go:574 #: lxc/network_forward.go:715 lxc/network_load_balancer.go:171 -#: lxc/network_load_balancer.go:577 lxc/network_load_balancer.go:719 +#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:724 #, fuzzy msgid "[:] " msgstr "" @@ -8007,7 +8003,7 @@ msgstr "" "\n" "lxc %s [:] [[:]...]%s" -#: lxc/network_load_balancer.go:860 +#: lxc/network_load_balancer.go:865 #, fuzzy msgid "[:] " msgstr "" @@ -8015,7 +8011,7 @@ msgstr "" "\n" "lxc %s [:] [[:]...]%s" -#: lxc/network_load_balancer.go:796 +#: lxc/network_load_balancer.go:801 #, fuzzy msgid "" "[:] " @@ -8026,7 +8022,7 @@ msgstr "" "lxc %s [:] [[:]...]%s" #: lxc/network_forward.go:377 lxc/network_forward.go:544 -#: lxc/network_load_balancer.go:381 lxc/network_load_balancer.go:547 +#: lxc/network_load_balancer.go:386 lxc/network_load_balancer.go:552 #, fuzzy msgid "[:] " msgstr "" @@ -8034,7 +8030,7 @@ msgstr "" "\n" "lxc %s [:] [[:]...]%s" -#: lxc/network_forward.go:446 lxc/network_load_balancer.go:449 +#: lxc/network_forward.go:446 lxc/network_load_balancer.go:454 #, fuzzy msgid "[:] =..." msgstr "" @@ -8042,7 +8038,7 @@ msgstr "" "\n" "lxc %s [:] [[:]...]%s" -#: lxc/network_load_balancer.go:961 +#: lxc/network_load_balancer.go:966 #, fuzzy msgid "" "[:] " @@ -8058,7 +8054,7 @@ msgid "" " []" msgstr "" -#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1022 +#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1027 #, fuzzy msgid "[:] [] []" msgstr "" @@ -8157,7 +8153,7 @@ msgstr "" "lxc %s [:] [[:]...]%s" #: lxc/storage.go:167 lxc/storage.go:218 lxc/storage.go:412 lxc/storage.go:759 -#: lxc/storage_bucket.go:449 +#: lxc/storage_bucket.go:454 #, fuzzy msgid "[:]" msgstr "" @@ -8173,8 +8169,8 @@ msgstr "" "\n" "lxc %s [:] [[:]...]%s" -#: lxc/storage_bucket.go:180 lxc/storage_bucket.go:242 -#: lxc/storage_bucket.go:622 lxc/storage_bucket.go:764 +#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:247 +#: lxc/storage_bucket.go:627 lxc/storage_bucket.go:769 #, fuzzy msgid "[:] " msgstr "" @@ -8182,9 +8178,9 @@ msgstr "" "\n" "lxc %s [:] [[:]...]%s" -#: lxc/storage_bucket.go:375 lxc/storage_bucket.go:691 -#: lxc/storage_bucket.go:845 lxc/storage_bucket.go:923 -#: lxc/storage_bucket.go:987 lxc/storage_bucket.go:1122 +#: lxc/storage_bucket.go:380 lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:850 lxc/storage_bucket.go:928 +#: lxc/storage_bucket.go:992 lxc/storage_bucket.go:1127 #, fuzzy msgid "[:] " msgstr "" @@ -8192,7 +8188,7 @@ msgstr "" "\n" "lxc %s [:] [[:]...]%s" -#: lxc/storage_bucket.go:528 +#: lxc/storage_bucket.go:533 #, fuzzy msgid "[:] =..." msgstr "" @@ -8512,7 +8508,7 @@ msgstr "" "Détruit les conteneurs ou les instantanés ainsi que toute donnée associée " "(configuration, instantanés, …)." -#: lxc/network_zone.go:686 +#: lxc/network_zone.go:691 #, fuzzy msgid "[:]" msgstr "" @@ -8520,7 +8516,7 @@ msgstr "" "\n" "lxc %s [:] [[:]...]%s" -#: lxc/network_zone.go:757 lxc/network_zone.go:1056 lxc/network_zone.go:1173 +#: lxc/network_zone.go:762 lxc/network_zone.go:1061 lxc/network_zone.go:1178 #, fuzzy msgid "[:] " msgstr "" @@ -8528,7 +8524,7 @@ msgstr "" "\n" "lxc %s [:] [[:]...]%s" -#: lxc/network_zone.go:809 lxc/network_zone.go:1026 +#: lxc/network_zone.go:814 lxc/network_zone.go:1031 #, fuzzy msgid "[:] " msgstr "" @@ -8536,7 +8532,7 @@ msgstr "" "\n" "lxc %s [:] [[:]...]%s" -#: lxc/network_zone.go:950 +#: lxc/network_zone.go:955 #, fuzzy msgid "[:] =..." msgstr "" @@ -8544,7 +8540,7 @@ msgstr "" "\n" "lxc %s [:] [[:]...]%s" -#: lxc/network_zone.go:1238 lxc/network_zone.go:1284 +#: lxc/network_zone.go:1243 lxc/network_zone.go:1289 #, fuzzy msgid "[:] " msgstr "" @@ -8552,7 +8548,7 @@ msgstr "" "\n" "lxc %s [:] [[:]...]%s" -#: lxc/network_zone.go:868 +#: lxc/network_zone.go:873 #, fuzzy msgid "[:] [key=value...]" msgstr "" @@ -8608,7 +8604,7 @@ msgstr "" "\n" "lxc %s [:] [[:]...]%s" -#: lxc/remote.go:88 +#: lxc/remote.go:89 #, fuzzy msgid "[] " msgstr "" @@ -8628,7 +8624,7 @@ msgstr "" "Détruit les conteneurs ou les instantanés ainsi que toute donnée associée " "(configuration, instantanés, …)." -#: lxc/project.go:488 lxc/remote.go:722 +#: lxc/project.go:488 lxc/remote.go:723 #, fuzzy msgid "current" msgstr "Swap (courant)" @@ -8914,6 +8910,23 @@ msgid "" " Create a new OVN network called bar using baz as its uplink network" msgstr "" +#: lxc/network_load_balancer.go:239 +msgid "" +"lxc network load-balancer create n1 127.0.0.1\n" +"\n" +"lxc network load-balancer create n1 127.0.0.1 < config.yaml\n" +" Create network load-balancer for network n1 with configuration from " +"config.yaml" +msgstr "" + +#: lxc/network_zone.go:273 +msgid "" +"lxc network zone create z1\n" +"\n" +"lxc network zone create z1 < config.yaml\n" +" Create network zone z1 with configuration from config.yaml" +msgstr "" + #: lxc/operation.go:195 msgid "" "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n" @@ -8984,26 +8997,36 @@ msgid "" " Restore the snapshot." msgstr "" -#: lxc/storage_bucket.go:245 +#: lxc/storage_bucket.go:84 +msgid "" +"lxc storage bucket create p1 b01\n" +"\tCreate a new storage bucket name b01 in storage pool p1\n" +"\n" +"lxc storage bucket create p1 b01 < config.yaml\n" +"\tCreate a new storage bucket name b01 in storage pool p1 using the content " +"of config.yaml" +msgstr "" + +#: lxc/storage_bucket.go:250 msgid "" "lxc storage bucket edit [:] < bucket.yaml\n" " Update a storage bucket using the content of bucket.yaml." msgstr "" -#: lxc/storage_bucket.go:990 +#: lxc/storage_bucket.go:995 msgid "" "lxc storage bucket edit [:] < key.yaml\n" " Update a storage bucket key using the content of key.yaml." msgstr "" -#: lxc/storage_bucket.go:1125 +#: lxc/storage_bucket.go:1130 msgid "" "lxc storage bucket key show default data foo\n" " Will show the properties of a bucket key called \"foo\" for a bucket " "called \"data\" in the \"default\" pool." msgstr "" -#: lxc/storage_bucket.go:625 +#: lxc/storage_bucket.go:630 msgid "" "lxc storage bucket show default data\n" " Will show the properties of a bucket called \"data\" in the \"default\" " @@ -9022,7 +9045,7 @@ msgid "" "\t\tCreate a new custom volume using backup0.tar.gz as the source." msgstr "" -#: lxc/remote.go:459 +#: lxc/remote.go:460 #, fuzzy msgid "n" msgstr "non" @@ -9035,7 +9058,7 @@ msgstr "" msgid "no" msgstr "non" -#: lxc/remote.go:452 +#: lxc/remote.go:453 msgid "ok (y/n/[fingerprint])?" msgstr "" @@ -9072,7 +9095,7 @@ msgstr "inaccessible" msgid "used by" msgstr "utilisé par" -#: lxc/remote.go:461 +#: lxc/remote.go:462 msgid "y" msgstr "o" diff --git a/po/he.po b/po/he.po index 248810e3d2f1..ac3b5c59d7f5 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-08-20 09:31+0100\n" +"POT-Creation-Date: 2024-08-30 09:27+0100\n" "PO-Revision-Date: 2022-03-10 15:11+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Hebrew " msgstr "" -#: lxc/remote.go:825 lxc/remote.go:882 +#: lxc/remote.go:826 lxc/remote.go:883 msgid "" msgstr "" -#: lxc/remote.go:922 +#: lxc/remote.go:923 msgid " " msgstr "" -#: lxc/remote.go:752 +#: lxc/remote.go:753 msgid " " msgstr "" @@ -557,7 +557,7 @@ msgstr "" msgid "ARCHITECTURE" msgstr "" -#: lxc/remote.go:734 +#: lxc/remote.go:735 msgid "AUTH TYPE" msgstr "" @@ -565,15 +565,15 @@ msgstr "" msgid "AUTHENTICATION METHOD" msgstr "" -#: lxc/remote.go:100 +#: lxc/remote.go:101 msgid "Accept certificate" msgstr "" -#: lxc/storage_bucket.go:852 +#: lxc/storage_bucket.go:857 msgid "Access key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:908 +#: lxc/storage_bucket.go:913 #, c-format msgid "Access key: %s" msgstr "" @@ -607,19 +607,19 @@ msgstr "" msgid "Add a group to an identity provider group" msgstr "" -#: lxc/network_zone.go:1239 +#: lxc/network_zone.go:1244 msgid "Add a network zone record entry" msgstr "" -#: lxc/network_load_balancer.go:798 +#: lxc/network_load_balancer.go:803 msgid "Add backend to a load balancer" msgstr "" -#: lxc/network_load_balancer.go:797 +#: lxc/network_load_balancer.go:802 msgid "Add backends to a load balancer" msgstr "" -#: lxc/network_zone.go:1240 +#: lxc/network_zone.go:1245 msgid "Add entries to a network zone record" msgstr "" @@ -635,11 +635,11 @@ msgstr "" msgid "Add new aliases" msgstr "" -#: lxc/remote.go:89 +#: lxc/remote.go:90 msgid "Add new remote servers" msgstr "" -#: lxc/remote.go:90 +#: lxc/remote.go:91 msgid "" "Add new remote servers\n" "\n" @@ -680,7 +680,7 @@ msgstr "" msgid "Add ports to a forward" msgstr "" -#: lxc/network_load_balancer.go:962 lxc/network_load_balancer.go:963 +#: lxc/network_load_balancer.go:967 lxc/network_load_balancer.go:968 msgid "Add ports to a load balancer" msgstr "" @@ -701,17 +701,17 @@ msgstr "" msgid "Address: %s" msgstr "" -#: lxc/storage_bucket.go:164 +#: lxc/storage_bucket.go:169 #, c-format msgid "Admin access key: %s" msgstr "" -#: lxc/remote.go:566 +#: lxc/remote.go:567 #, c-format msgid "Admin password (or token) for %s:" msgstr "" -#: lxc/storage_bucket.go:165 +#: lxc/storage_bucket.go:170 #, c-format msgid "Admin secret key: %s" msgstr "" @@ -743,7 +743,7 @@ msgstr "" msgid "All projects" msgstr "" -#: lxc/remote.go:181 +#: lxc/remote.go:182 msgid "All server addresses are unavailable" msgstr "" @@ -766,7 +766,7 @@ msgstr "" msgid "Are you sure you want to %s cluster member %q? (yes/no) [default=no]: " msgstr "" -#: lxc/console.go:383 +#: lxc/console.go:388 msgid "As neither could be found, the raw SPICE socket can be found at:" msgstr "" @@ -814,7 +814,7 @@ msgid "" "as well as retrieve past log entries from it." msgstr "" -#: lxc/remote.go:548 +#: lxc/remote.go:549 #, c-format msgid "Authentication type '%s' not supported by server" msgstr "" @@ -833,11 +833,11 @@ msgstr "" msgid "Auto update: %s" msgstr "" -#: lxc/network_forward.go:240 lxc/network_load_balancer.go:242 +#: lxc/network_forward.go:240 lxc/network_load_balancer.go:247 msgid "Auto-allocate an IPv4 or IPv6 listen address. One of 'ipv4', 'ipv6'." msgstr "" -#: lxc/remote.go:136 +#: lxc/remote.go:137 msgid "Available projects:" msgstr "" @@ -869,8 +869,8 @@ msgid "Bad device override syntax, expecting ,=: %s" msgstr "" #: lxc/network.go:333 lxc/network_acl.go:382 lxc/network_forward.go:293 -#: lxc/network_load_balancer.go:296 lxc/network_peer.go:280 -#: lxc/network_zone.go:324 lxc/network_zone.go:922 lxc/storage_bucket.go:136 +#: lxc/network_load_balancer.go:301 lxc/network_peer.go:280 +#: lxc/network_zone.go:329 lxc/network_zone.go:927 lxc/storage_bucket.go:141 #, c-format msgid "Bad key/value pair: %s" msgstr "" @@ -992,7 +992,7 @@ msgstr "" msgid "Can't read from stdin: %w" msgstr "" -#: lxc/remote.go:861 +#: lxc/remote.go:862 msgid "Can't remove the default remote" msgstr "" @@ -1058,15 +1058,14 @@ msgstr "" msgid "Certificate add token for %s deleted" msgstr "" -#: lxc/remote.go:218 -#, c-format -msgid "" -"Certificate fingerprint mismatch between certificate token and server %q" +#: lxc/remote.go:452 +msgid "Certificate fingerprint" msgstr "" -#: lxc/remote.go:451 +#: lxc/remote.go:219 #, c-format -msgid "Certificate fingerprint: %s" +msgid "" +"Certificate fingerprint mismatch between certificate token and server %q" msgstr "" #: lxc/network.go:893 @@ -1078,7 +1077,7 @@ msgstr "" msgid "Client %s certificate add token:" msgstr "" -#: lxc/remote.go:603 +#: lxc/remote.go:604 msgid "Client certificate now trusted by server:" msgstr "" @@ -1140,18 +1139,18 @@ msgstr "" #: lxc/network_forward.go:456 lxc/network_forward.go:579 #: lxc/network_forward.go:721 lxc/network_forward.go:798 #: lxc/network_forward.go:864 lxc/network_load_balancer.go:176 -#: lxc/network_load_balancer.go:241 lxc/network_load_balancer.go:459 -#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:725 -#: lxc/network_load_balancer.go:801 lxc/network_load_balancer.go:865 -#: lxc/network_load_balancer.go:966 lxc/network_load_balancer.go:1028 +#: lxc/network_load_balancer.go:246 lxc/network_load_balancer.go:464 +#: lxc/network_load_balancer.go:587 lxc/network_load_balancer.go:730 +#: lxc/network_load_balancer.go:806 lxc/network_load_balancer.go:870 +#: lxc/network_load_balancer.go:971 lxc/network_load_balancer.go:1033 #: lxc/storage.go:99 lxc/storage.go:347 lxc/storage.go:418 lxc/storage.go:671 -#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:85 -#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:248 -#: lxc/storage_bucket.go:379 lxc/storage_bucket.go:536 -#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:695 -#: lxc/storage_bucket.go:770 lxc/storage_bucket.go:850 -#: lxc/storage_bucket.go:928 lxc/storage_bucket.go:993 -#: lxc/storage_bucket.go:1129 lxc/storage_volume.go:358 +#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:90 +#: lxc/storage_bucket.go:190 lxc/storage_bucket.go:253 +#: lxc/storage_bucket.go:384 lxc/storage_bucket.go:541 +#: lxc/storage_bucket.go:634 lxc/storage_bucket.go:700 +#: lxc/storage_bucket.go:775 lxc/storage_bucket.go:855 +#: lxc/storage_bucket.go:933 lxc/storage_bucket.go:998 +#: lxc/storage_bucket.go:1134 lxc/storage_volume.go:358 #: lxc/storage_volume.go:560 lxc/storage_volume.go:639 #: lxc/storage_volume.go:883 lxc/storage_volume.go:1097 #: lxc/storage_volume.go:1210 lxc/storage_volume.go:1678 @@ -1179,11 +1178,11 @@ msgstr "" msgid "Columns" msgstr "" -#: lxc/main.go:81 +#: lxc/main.go:82 msgid "Command line client for LXD" msgstr "" -#: lxc/main.go:82 +#: lxc/main.go:83 msgid "" "Command line client for LXD\n" "\n" @@ -1215,19 +1214,15 @@ msgstr "" #: lxc/config.go:347 lxc/config.go:1277 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/network_load_balancer.go:694 lxc/network_peer.go:610 +#: lxc/network_zone.go:556 lxc/network_zone.go:1148 lxc/profile.go:538 +#: lxc/project.go:315 lxc/storage.go:310 lxc/storage_bucket.go:348 +#: lxc/storage_bucket.go:1097 lxc/storage_volume.go:1016 #: lxc/storage_volume.go:1048 #, c-format msgid "Config parsing error: %s" msgstr "" -#: lxc/console.go:140 -msgid "Console log:" -msgstr "" - #: lxc/storage_volume.go:561 msgid "Content type, block or filesystem" msgstr "" @@ -1330,12 +1325,12 @@ msgstr "" msgid "Cores:" msgstr "" -#: lxc/remote.go:486 +#: lxc/remote.go:487 #, c-format msgid "Could not close server cert file %q: %w" msgstr "" -#: lxc/remote.go:224 lxc/remote.go:470 +#: lxc/remote.go:225 lxc/remote.go:471 msgid "Could not create server cert dir" msgstr "" @@ -1374,12 +1369,12 @@ msgstr "" msgid "Could not write new remote certificate for remote '%s' with error: %v" msgstr "" -#: lxc/remote.go:481 +#: lxc/remote.go:482 #, c-format msgid "Could not write server cert file %q: %w" msgstr "" -#: lxc/network_zone.go:1327 +#: lxc/network_zone.go:1332 msgid "Couldn't find a matching entry" msgstr "" @@ -1431,7 +1426,7 @@ msgstr "" msgid "Create instances from images" msgstr "" -#: lxc/storage_bucket.go:846 lxc/storage_bucket.go:847 +#: lxc/storage_bucket.go:851 lxc/storage_bucket.go:852 msgid "Create key for a storage bucket" msgstr "" @@ -1463,11 +1458,11 @@ msgstr "" msgid "Create new network peering" msgstr "" -#: lxc/network_zone.go:869 lxc/network_zone.go:870 +#: lxc/network_zone.go:874 lxc/network_zone.go:875 msgid "Create new network zone record" msgstr "" -#: lxc/network_zone.go:270 lxc/network_zone.go:271 +#: lxc/network_zone.go:271 lxc/network_zone.go:272 msgid "Create new network zones" msgstr "" @@ -1518,9 +1513,9 @@ msgstr "" #: 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/network_zone.go:140 lxc/network_zone.go:747 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_bucket.go:512 lxc/storage_bucket.go:832 #: lxc/storage_volume.go:1562 msgid "DESCRIPTION" msgstr "" @@ -1585,7 +1580,7 @@ msgstr "" msgid "Delete instances and snapshots" msgstr "" -#: lxc/storage_bucket.go:924 lxc/storage_bucket.go:925 +#: lxc/storage_bucket.go:929 lxc/storage_bucket.go:930 msgid "Delete key from a storage bucket" msgstr "" @@ -1597,7 +1592,7 @@ msgstr "" msgid "Delete network forwards" msgstr "" -#: lxc/network_load_balancer.go:721 lxc/network_load_balancer.go:722 +#: lxc/network_load_balancer.go:726 lxc/network_load_balancer.go:727 msgid "Delete network load balancers" msgstr "" @@ -1605,11 +1600,11 @@ msgstr "" msgid "Delete network peerings" msgstr "" -#: lxc/network_zone.go:1175 lxc/network_zone.go:1176 +#: lxc/network_zone.go:1180 lxc/network_zone.go:1181 msgid "Delete network zone record" msgstr "" -#: lxc/network_zone.go:583 lxc/network_zone.go:584 +#: lxc/network_zone.go:588 lxc/network_zone.go:589 msgid "Delete network zones" msgstr "" @@ -1625,7 +1620,7 @@ msgstr "" msgid "Delete projects" msgstr "" -#: lxc/storage_bucket.go:182 lxc/storage_bucket.go:183 +#: lxc/storage_bucket.go:187 lxc/storage_bucket.go:188 msgid "Delete storage buckets" msgstr "" @@ -1681,7 +1676,7 @@ msgstr "" #: 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/info.go:32 lxc/init.go:43 lxc/launch.go:24 lxc/list.go:48 lxc/main.go:83 #: 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 @@ -1700,22 +1695,22 @@ msgstr "" #: 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_load_balancer.go:238 lxc/network_load_balancer.go:388 +#: lxc/network_load_balancer.go:456 lxc/network_load_balancer.go:554 +#: lxc/network_load_balancer.go:584 lxc/network_load_balancer.go:727 +#: lxc/network_load_balancer.go:788 lxc/network_load_balancer.go:803 +#: lxc/network_load_balancer.go:867 lxc/network_load_balancer.go:953 +#: lxc/network_load_balancer.go:968 lxc/network_load_balancer.go:1029 #: 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/network_zone.go:29 lxc/network_zone.go:86 lxc/network_zone.go:157 +#: lxc/network_zone.go:212 lxc/network_zone.go:272 lxc/network_zone.go:359 +#: lxc/network_zone.go:439 lxc/network_zone.go:470 lxc/network_zone.go:589 +#: lxc/network_zone.go:637 lxc/network_zone.go:694 lxc/network_zone.go:764 +#: lxc/network_zone.go:816 lxc/network_zone.go:875 lxc/network_zone.go:957 +#: lxc/network_zone.go:1033 lxc/network_zone.go:1063 lxc/network_zone.go:1181 +#: lxc/network_zone.go:1230 lxc/network_zone.go:1245 lxc/network_zone.go:1291 #: 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 @@ -1724,19 +1719,19 @@ msgstr "" #: 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:631 lxc/remote.go:669 lxc/remote.go:755 lxc/remote.go:828 -#: lxc/remote.go:884 lxc/remote.go:924 lxc/rename.go:21 lxc/restore.go:24 +#: lxc/query.go:34 lxc/rebuild.go:27 lxc/remote.go:35 lxc/remote.go:91 +#: lxc/remote.go:632 lxc/remote.go:670 lxc/remote.go:756 lxc/remote.go:829 +#: lxc/remote.go:885 lxc/remote.go:925 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_bucket.go:29 lxc/storage_bucket.go:83 lxc/storage_bucket.go:188 +#: lxc/storage_bucket.go:249 lxc/storage_bucket.go:382 +#: lxc/storage_bucket.go:458 lxc/storage_bucket.go:535 +#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:698 +#: lxc/storage_bucket.go:732 lxc/storage_bucket.go:773 +#: lxc/storage_bucket.go:852 lxc/storage_bucket.go:930 +#: lxc/storage_bucket.go:994 lxc/storage_bucket.go:1129 #: 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 @@ -1872,7 +1867,7 @@ msgstr "" msgid "Don't require user confirmation for using --force" msgstr "" -#: lxc/main.go:99 +#: lxc/main.go:100 msgid "Don't show progress information" msgstr "" @@ -1885,7 +1880,7 @@ msgstr "" msgid "Driver: %v (%v)" msgstr "" -#: lxc/network_zone.go:743 +#: lxc/network_zone.go:748 msgid "ENTRIES" msgstr "" @@ -1963,7 +1958,7 @@ msgstr "" msgid "Edit network forward configurations as YAML" msgstr "" -#: lxc/network_load_balancer.go:578 lxc/network_load_balancer.go:579 +#: lxc/network_load_balancer.go:583 lxc/network_load_balancer.go:584 msgid "Edit network load balancer configurations as YAML" msgstr "" @@ -1971,11 +1966,11 @@ msgstr "" msgid "Edit network peer configurations as YAML" msgstr "" -#: lxc/network_zone.go:464 lxc/network_zone.go:465 +#: lxc/network_zone.go:469 lxc/network_zone.go:470 msgid "Edit network zone configurations as YAML" msgstr "" -#: lxc/network_zone.go:1057 lxc/network_zone.go:1058 +#: lxc/network_zone.go:1062 lxc/network_zone.go:1063 msgid "Edit network zone record configurations as YAML" msgstr "" @@ -1987,11 +1982,11 @@ msgstr "" msgid "Edit project configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:243 lxc/storage_bucket.go:244 +#: lxc/storage_bucket.go:248 lxc/storage_bucket.go:249 msgid "Edit storage bucket configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:988 lxc/storage_bucket.go:989 +#: lxc/storage_bucket.go:993 lxc/storage_bucket.go:994 msgid "Edit storage bucket key as YAML" msgstr "" @@ -2032,7 +2027,7 @@ msgid "" " for the address if not yet set." msgstr "" -#: lxc/network_zone.go:1242 +#: lxc/network_zone.go:1247 msgid "Entry TTL" msgstr "" @@ -2061,9 +2056,9 @@ msgstr "" #: lxc/cluster.go:414 lxc/config.go:624 lxc/config.go:656 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/network_load_balancer.go:527 lxc/network_peer.go:463 +#: lxc/network_zone.go:414 lxc/network_zone.go:1008 lxc/profile.go:876 +#: lxc/project.go:634 lxc/storage.go:727 lxc/storage_bucket.go:602 #: lxc/storage_volume.go:1947 lxc/storage_volume.go:1985 #, c-format msgid "Error setting properties: %v" @@ -2075,10 +2070,10 @@ 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/network_forward.go:513 lxc/network_load_balancer.go:521 +#: lxc/network_peer.go:457 lxc/network_zone.go:408 lxc/network_zone.go:1002 #: lxc/profile.go:870 lxc/project.go:628 lxc/storage.go:721 -#: lxc/storage_bucket.go:591 lxc/storage_volume.go:1941 +#: lxc/storage_bucket.go:596 lxc/storage_volume.go:1941 #: lxc/storage_volume.go:1979 #, c-format msgid "Error unsetting property: %v" @@ -2264,7 +2259,7 @@ msgstr "" msgid "Failed parsing SSH host key: %w" msgstr "" -#: lxc/console.go:361 +#: lxc/console.go:366 #, c-format msgid "Failed starting command: %w" msgstr "" @@ -2279,11 +2274,11 @@ msgstr "" msgid "Failed to accept incoming connection: %w" msgstr "" -#: lxc/remote.go:190 +#: lxc/remote.go:191 msgid "Failed to add remote" msgstr "" -#: lxc/remote.go:241 +#: lxc/remote.go:242 #, c-format msgid "Failed to close server cert file %q: %w" msgstr "" @@ -2293,7 +2288,7 @@ msgstr "" msgid "Failed to connect to cluster member: %w" msgstr "" -#: lxc/remote.go:231 +#: lxc/remote.go:232 #, c-format msgid "Failed to create %q: %w" msgstr "" @@ -2303,12 +2298,12 @@ msgstr "" msgid "Failed to create alias %s: %w" msgstr "" -#: lxc/remote.go:256 +#: lxc/remote.go:257 #, c-format msgid "Failed to create certificate: %w" msgstr "" -#: lxc/remote.go:263 +#: lxc/remote.go:264 #, c-format msgid "Failed to find project: %w" msgstr "" @@ -2333,7 +2328,7 @@ msgstr "" msgid "Failed to walk path for %s: %s" msgstr "" -#: lxc/remote.go:236 +#: lxc/remote.go:237 #, c-format msgid "Failed to write server cert file %q: %w" msgstr "" @@ -2342,7 +2337,7 @@ msgstr "" msgid "Fast mode (same as --columns=nsacPt)" msgstr "" -#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:115 +#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:116 #: lxc/operation.go:136 msgid "Filtering isn't supported yet" msgstr "" @@ -2380,7 +2375,7 @@ msgstr "" msgid "Force the removal of running instances" msgstr "" -#: lxc/main.go:95 +#: lxc/main.go:96 msgid "Force using the local unix socket" msgstr "" @@ -2414,10 +2409,10 @@ msgstr "" #: 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/network_peer.go:84 lxc/network_zone.go:89 lxc/network_zone.go:697 #: lxc/operation.go:108 lxc/profile.go:637 lxc/project.go:412 -#: lxc/project.go:804 lxc/remote.go:673 lxc/storage.go:588 -#: lxc/storage_bucket.go:454 lxc/storage_bucket.go:769 +#: lxc/project.go:804 lxc/remote.go:674 lxc/storage.go:588 +#: lxc/storage_bucket.go:459 lxc/storage_bucket.go:774 #: lxc/storage_volume.go:1446 lxc/warning.go:93 msgid "Format (csv|json|table|yaml|compact)" msgstr "" @@ -2454,7 +2449,7 @@ msgstr "" msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)" msgstr "" -#: lxc/remote.go:737 +#: lxc/remote.go:738 msgid "GLOBAL" msgstr "" @@ -2474,7 +2469,7 @@ msgstr "" msgid "Generate manpages for all commands" msgstr "" -#: lxc/remote.go:159 lxc/remote.go:397 +#: lxc/remote.go:160 lxc/remote.go:398 msgid "Generating a client certificate. This may take a minute..." msgstr "" @@ -2506,7 +2501,7 @@ msgstr "" msgid "Get the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:386 +#: lxc/network_load_balancer.go:391 msgid "Get the key as a network load balancer property" msgstr "" @@ -2518,11 +2513,11 @@ msgstr "" msgid "Get the key as a network property" msgstr "" -#: lxc/network_zone.go:214 +#: lxc/network_zone.go:215 msgid "Get the key as a network zone property" msgstr "" -#: lxc/network_zone.go:814 +#: lxc/network_zone.go:819 msgid "Get the key as a network zone record property" msgstr "" @@ -2534,7 +2529,7 @@ msgstr "" msgid "Get the key as a project property" msgstr "" -#: lxc/storage_bucket.go:380 +#: lxc/storage_bucket.go:385 msgid "Get the key as a storage bucket property" msgstr "" @@ -2574,7 +2569,7 @@ msgstr "" msgid "Get values for network forward configuration keys" msgstr "" -#: lxc/network_load_balancer.go:382 lxc/network_load_balancer.go:383 +#: lxc/network_load_balancer.go:387 lxc/network_load_balancer.go:388 msgid "Get values for network load balancer configuration keys" msgstr "" @@ -2582,11 +2577,11 @@ msgstr "" msgid "Get values for network peer configuration keys" msgstr "" -#: lxc/network_zone.go:210 lxc/network_zone.go:211 +#: lxc/network_zone.go:211 lxc/network_zone.go:212 msgid "Get values for network zone configuration keys" msgstr "" -#: lxc/network_zone.go:810 lxc/network_zone.go:811 +#: lxc/network_zone.go:815 lxc/network_zone.go:816 msgid "Get values for network zone record configuration keys" msgstr "" @@ -2598,7 +2593,7 @@ msgstr "" msgid "Get values for project configuration keys" msgstr "" -#: lxc/storage_bucket.go:376 lxc/storage_bucket.go:377 +#: lxc/storage_bucket.go:381 lxc/storage_bucket.go:382 msgid "Get values for storage bucket configuration keys" msgstr "" @@ -2738,7 +2733,7 @@ msgstr "" msgid "If the snapshot name already exists, delete and create a new one" msgstr "" -#: lxc/main.go:398 +#: lxc/main.go:400 msgid "" "If this is your first time running LXD on this machine, you should also run: " "lxd init" @@ -2895,7 +2890,7 @@ msgstr "" msgid "Instance type" msgstr "" -#: lxc/remote.go:349 +#: lxc/remote.go:350 #, c-format msgid "Invalid URL scheme \"%s\" in \"%s\"" msgstr "" @@ -2967,7 +2962,7 @@ msgstr "" msgid "Invalid new snapshot name, parent volume must be the same as source" msgstr "" -#: lxc/main.go:498 +#: lxc/main.go:502 msgid "Invalid number of arguments" msgstr "" @@ -2976,7 +2971,7 @@ msgstr "" msgid "Invalid path %s" msgstr "" -#: lxc/remote.go:338 +#: lxc/remote.go:339 #, c-format msgid "Invalid protocol: %s" msgstr "" @@ -3024,7 +3019,7 @@ msgstr "" #: lxc/list.go:597 lxc/network.go:1059 lxc/network_forward.go:155 #: lxc/network_load_balancer.go:157 lxc/operation.go:177 -#: lxc/storage_bucket.go:511 lxc/storage_volume.go:1569 lxc/warning.go:220 +#: lxc/storage_bucket.go:516 lxc/storage_volume.go:1569 lxc/warning.go:220 msgid "LOCATION" msgstr "" @@ -3032,7 +3027,7 @@ msgstr "" msgid "LXD - Command line client" msgstr "" -#: lxc/console.go:382 +#: lxc/console.go:387 msgid "LXD automatically uses either spicy or remote-viewer when present." msgstr "" @@ -3122,15 +3117,15 @@ msgstr "" msgid "List available network peers" msgstr "" -#: lxc/network_zone.go:85 +#: lxc/network_zone.go:86 msgid "List available network zone" msgstr "" -#: lxc/network_zone.go:688 lxc/network_zone.go:689 +#: lxc/network_zone.go:693 lxc/network_zone.go:694 msgid "List available network zone records" msgstr "" -#: lxc/network_zone.go:84 +#: lxc/network_zone.go:85 msgid "List available network zoneS" msgstr "" @@ -3319,11 +3314,11 @@ msgstr "" msgid "List projects" msgstr "" -#: lxc/storage_bucket.go:766 lxc/storage_bucket.go:768 +#: lxc/storage_bucket.go:771 lxc/storage_bucket.go:773 msgid "List storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:451 lxc/storage_bucket.go:453 +#: lxc/storage_bucket.go:456 lxc/storage_bucket.go:458 msgid "List storage buckets" msgstr "" @@ -3351,7 +3346,7 @@ msgid "" " U - Current disk usage" msgstr "" -#: lxc/remote.go:668 lxc/remote.go:669 +#: lxc/remote.go:669 lxc/remote.go:670 msgid "List the available remotes" msgstr "" @@ -3578,11 +3573,11 @@ msgstr "" msgid "Manage network forwards" msgstr "" -#: lxc/network_load_balancer.go:782 lxc/network_load_balancer.go:783 +#: lxc/network_load_balancer.go:787 lxc/network_load_balancer.go:788 msgid "Manage network load balancer backends" msgstr "" -#: lxc/network_load_balancer.go:947 lxc/network_load_balancer.go:948 +#: lxc/network_load_balancer.go:952 lxc/network_load_balancer.go:953 msgid "Manage network load balancer ports" msgstr "" @@ -3594,15 +3589,15 @@ msgstr "" msgid "Manage network peerings" msgstr "" -#: lxc/network_zone.go:1224 lxc/network_zone.go:1225 +#: lxc/network_zone.go:1229 lxc/network_zone.go:1230 msgid "Manage network zone record entries" msgstr "" -#: lxc/network_zone.go:631 lxc/network_zone.go:632 +#: lxc/network_zone.go:636 lxc/network_zone.go:637 msgid "Manage network zone records" msgstr "" -#: lxc/network_zone.go:27 lxc/network_zone.go:28 +#: lxc/network_zone.go:28 lxc/network_zone.go:29 msgid "Manage network zones" msgstr "" @@ -3618,11 +3613,11 @@ msgstr "" msgid "Manage projects" msgstr "" -#: lxc/storage_bucket.go:726 +#: lxc/storage_bucket.go:731 msgid "Manage storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:727 +#: lxc/storage_bucket.go:732 msgid "Manage storage bucket keys." msgstr "" @@ -3650,7 +3645,7 @@ msgid "" "\"custom\" (user created) volumes." msgstr "" -#: lxc/remote.go:33 lxc/remote.go:34 +#: lxc/remote.go:34 lxc/remote.go:35 msgid "Manage the list of remote servers" msgstr "" @@ -3731,12 +3726,12 @@ msgid "" "Minimum level for log messages (only available when using pretty format)" msgstr "" -#: lxc/storage_bucket.go:111 lxc/storage_bucket.go:211 -#: lxc/storage_bucket.go:287 lxc/storage_bucket.go:406 -#: lxc/storage_bucket.go:563 lxc/storage_bucket.go:655 -#: lxc/storage_bucket.go:797 lxc/storage_bucket.go:878 -#: lxc/storage_bucket.go:953 lxc/storage_bucket.go:1032 -#: lxc/storage_bucket.go:1155 +#: lxc/storage_bucket.go:116 lxc/storage_bucket.go:216 +#: lxc/storage_bucket.go:292 lxc/storage_bucket.go:411 +#: lxc/storage_bucket.go:568 lxc/storage_bucket.go:660 +#: lxc/storage_bucket.go:802 lxc/storage_bucket.go:883 +#: lxc/storage_bucket.go:958 lxc/storage_bucket.go:1037 +#: lxc/storage_bucket.go:1160 msgid "Missing bucket name" msgstr "" @@ -3780,8 +3775,8 @@ msgstr "" msgid "Missing instance name" msgstr "" -#: lxc/storage_bucket.go:882 lxc/storage_bucket.go:957 -#: lxc/storage_bucket.go:1036 lxc/storage_bucket.go:1159 +#: lxc/storage_bucket.go:887 lxc/storage_bucket.go:962 +#: lxc/storage_bucket.go:1041 lxc/storage_bucket.go:1164 msgid "Missing key name" msgstr "" @@ -3789,10 +3784,10 @@ msgstr "" #: lxc/network_forward.go:481 lxc/network_forward.go:627 #: lxc/network_forward.go:746 lxc/network_forward.go:823 #: lxc/network_forward.go:889 lxc/network_load_balancer.go:201 -#: lxc/network_load_balancer.go:411 lxc/network_load_balancer.go:484 -#: lxc/network_load_balancer.go:630 lxc/network_load_balancer.go:750 -#: lxc/network_load_balancer.go:826 lxc/network_load_balancer.go:890 -#: lxc/network_load_balancer.go:991 lxc/network_load_balancer.go:1053 +#: lxc/network_load_balancer.go:416 lxc/network_load_balancer.go:489 +#: lxc/network_load_balancer.go:635 lxc/network_load_balancer.go:755 +#: lxc/network_load_balancer.go:831 lxc/network_load_balancer.go:895 +#: lxc/network_load_balancer.go:996 lxc/network_load_balancer.go:1058 msgid "Missing listen address" msgstr "" @@ -3817,26 +3812,26 @@ msgstr "" #: lxc/network_forward.go:477 lxc/network_forward.go:623 #: lxc/network_forward.go:742 lxc/network_forward.go:819 #: lxc/network_forward.go:885 lxc/network_load_balancer.go:123 -#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:261 -#: lxc/network_load_balancer.go:407 lxc/network_load_balancer.go:480 -#: lxc/network_load_balancer.go:626 lxc/network_load_balancer.go:746 -#: lxc/network_load_balancer.go:822 lxc/network_load_balancer.go:886 -#: lxc/network_load_balancer.go:987 lxc/network_load_balancer.go:1049 +#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:266 +#: lxc/network_load_balancer.go:412 lxc/network_load_balancer.go:485 +#: lxc/network_load_balancer.go:631 lxc/network_load_balancer.go:751 +#: lxc/network_load_balancer.go:827 lxc/network_load_balancer.go:891 +#: lxc/network_load_balancer.go:992 lxc/network_load_balancer.go:1054 #: lxc/network_peer.go:110 lxc/network_peer.go:180 lxc/network_peer.go:237 #: lxc/network_peer.go:355 lxc/network_peer.go:426 lxc/network_peer.go:556 #: lxc/network_peer.go:665 msgid "Missing network name" msgstr "" -#: lxc/network_zone.go:178 lxc/network_zone.go:234 lxc/network_zone.go:294 -#: lxc/network_zone.go:382 lxc/network_zone.go:503 lxc/network_zone.go:606 -#: lxc/network_zone.go:712 lxc/network_zone.go:780 lxc/network_zone.go:892 -#: lxc/network_zone.go:976 lxc/network_zone.go:1197 lxc/network_zone.go:1262 -#: lxc/network_zone.go:1307 +#: lxc/network_zone.go:179 lxc/network_zone.go:235 lxc/network_zone.go:299 +#: lxc/network_zone.go:387 lxc/network_zone.go:508 lxc/network_zone.go:611 +#: lxc/network_zone.go:717 lxc/network_zone.go:785 lxc/network_zone.go:897 +#: lxc/network_zone.go:981 lxc/network_zone.go:1202 lxc/network_zone.go:1267 +#: lxc/network_zone.go:1312 msgid "Missing network zone name" msgstr "" -#: lxc/network_zone.go:833 lxc/network_zone.go:1095 +#: lxc/network_zone.go:838 lxc/network_zone.go:1100 msgid "Missing network zone record name" msgstr "" @@ -3846,13 +3841,13 @@ msgid "Missing peer name" msgstr "" #: lxc/storage.go:194 lxc/storage.go:264 lxc/storage.go:370 lxc/storage.go:440 -#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:107 -#: lxc/storage_bucket.go:207 lxc/storage_bucket.go:283 -#: lxc/storage_bucket.go:402 lxc/storage_bucket.go:477 -#: lxc/storage_bucket.go:559 lxc/storage_bucket.go:651 -#: lxc/storage_bucket.go:793 lxc/storage_bucket.go:874 -#: lxc/storage_bucket.go:949 lxc/storage_bucket.go:1028 -#: lxc/storage_bucket.go:1151 lxc/storage_volume.go:189 +#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:112 +#: lxc/storage_bucket.go:212 lxc/storage_bucket.go:288 +#: lxc/storage_bucket.go:407 lxc/storage_bucket.go:482 +#: lxc/storage_bucket.go:564 lxc/storage_bucket.go:656 +#: lxc/storage_bucket.go:798 lxc/storage_bucket.go:879 +#: lxc/storage_bucket.go:954 lxc/storage_bucket.go:1033 +#: lxc/storage_bucket.go:1156 lxc/storage_volume.go:189 #: lxc/storage_volume.go:287 lxc/storage_volume.go:583 #: lxc/storage_volume.go:660 lxc/storage_volume.go:735 #: lxc/storage_volume.go:817 lxc/storage_volume.go:919 @@ -3972,7 +3967,7 @@ msgstr "" msgid "Moving the storage volume: %s" msgstr "" -#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1097 +#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1102 msgid "Multiple ports match. Use --force to remove them all" msgstr "" @@ -3991,10 +3986,10 @@ 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:677 lxc/project.go:498 -#: lxc/remote.go:731 lxc/storage.go:638 lxc/storage_bucket.go:506 -#: lxc/storage_bucket.go:826 lxc/storage_volume.go:1561 +#: lxc/network_acl.go:147 lxc/network_peer.go:139 lxc/network_zone.go:139 +#: lxc/network_zone.go:746 lxc/profile.go:677 lxc/project.go:498 +#: lxc/remote.go:732 lxc/storage.go:638 lxc/storage_bucket.go:511 +#: lxc/storage_bucket.go:831 lxc/storage_volume.go:1561 msgid "NAME" msgstr "" @@ -4020,7 +4015,7 @@ msgstr "" #: lxc/network.go:957 lxc/operation.go:154 lxc/project.go:456 #: lxc/project.go:461 lxc/project.go:466 lxc/project.go:471 lxc/project.go:476 -#: lxc/project.go:481 lxc/remote.go:691 lxc/remote.go:696 lxc/remote.go:701 +#: lxc/project.go:481 lxc/remote.go:692 lxc/remote.go:697 lxc/remote.go:702 msgid "NO" msgstr "" @@ -4047,7 +4042,7 @@ msgstr "" msgid "Name" msgstr "" -#: lxc/remote.go:141 +#: lxc/remote.go:142 msgid "Name of the project to use for this remote:" msgstr "" @@ -4096,12 +4091,12 @@ msgstr "" msgid "Network ACL %s renamed to %s" msgstr "" -#: lxc/network_zone.go:336 +#: lxc/network_zone.go:341 #, c-format msgid "Network Zone %s created" msgstr "" -#: lxc/network_zone.go:616 +#: lxc/network_zone.go:621 #, c-format msgid "Network Zone %s deleted" msgstr "" @@ -4116,12 +4111,12 @@ msgstr "" msgid "Network forward %s deleted" msgstr "" -#: lxc/network_load_balancer.go:365 +#: lxc/network_load_balancer.go:370 #, c-format msgid "Network load balancer %s created" msgstr "" -#: lxc/network_load_balancer.go:767 +#: lxc/network_load_balancer.go:772 #, c-format msgid "Network load balancer %s deleted" msgstr "" @@ -4159,12 +4154,12 @@ msgstr "" msgid "Network usage:" msgstr "" -#: lxc/network_zone.go:934 +#: lxc/network_zone.go:939 #, c-format msgid "Network zone record %s created" msgstr "" -#: lxc/network_zone.go:1207 +#: lxc/network_zone.go:1212 #, c-format msgid "Network zone record %s deleted" msgstr "" @@ -4199,11 +4194,11 @@ msgstr "" msgid "No device found for this storage volume" msgstr "" -#: lxc/network_load_balancer.go:921 +#: lxc/network_load_balancer.go:926 msgid "No matching backend found" msgstr "" -#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1108 +#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1113 msgid "No matching port(s) found" msgstr "" @@ -4249,7 +4244,7 @@ msgstr "" msgid "Only \"custom\" volumes can be snapshotted" msgstr "" -#: lxc/remote.go:332 +#: lxc/remote.go:333 msgid "Only https URLs are supported for simplestreams" msgstr "" @@ -4274,7 +4269,7 @@ msgstr "" msgid "Optimized Storage" msgstr "" -#: lxc/main.go:96 +#: lxc/main.go:97 msgid "Override the source project" msgstr "" @@ -4320,11 +4315,11 @@ msgstr "" msgid "PROJECT" msgstr "" -#: lxc/remote.go:733 +#: lxc/remote.go:734 msgid "PROTOCOL" msgstr "" -#: lxc/image.go:1073 lxc/remote.go:735 +#: lxc/image.go:1073 lxc/remote.go:736 msgid "PUBLIC" msgstr "" @@ -4340,7 +4335,7 @@ msgstr "" msgid "Partitions:" msgstr "" -#: lxc/main.go:361 +#: lxc/main.go:363 #, c-format msgid "Password for %s: " msgstr "" @@ -4353,7 +4348,7 @@ msgstr "" msgid "Perform an incremental copy" msgstr "" -#: lxc/remote.go:182 +#: lxc/remote.go:183 msgid "Please provide an alternate server address (empty to abort):" msgstr "" @@ -4365,7 +4360,7 @@ msgstr "" msgid "Please provide cluster member name: " msgstr "" -#: lxc/remote.go:462 +#: lxc/remote.go:463 msgid "Please type 'y', 'n' or the fingerprint:" msgstr "" @@ -4387,10 +4382,10 @@ msgstr "" #: lxc/config.go:1278 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/network_load_balancer.go:695 lxc/network_peer.go:611 +#: lxc/network_zone.go:557 lxc/network_zone.go:1149 lxc/profile.go:539 +#: lxc/project.go:316 lxc/storage.go:311 lxc/storage_bucket.go:349 +#: lxc/storage_bucket.go:1098 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 "" @@ -4399,7 +4394,7 @@ msgstr "" msgid "Pretty rendering (short for --format=pretty)" msgstr "" -#: lxc/main.go:94 +#: lxc/main.go:95 msgid "Print help" msgstr "" @@ -4407,7 +4402,7 @@ msgstr "" msgid "Print the raw response" msgstr "" -#: lxc/main.go:93 +#: lxc/main.go:94 msgid "Print version number" msgstr "" @@ -4496,7 +4491,7 @@ msgstr "" msgid "Project %s renamed to %s" msgstr "" -#: lxc/remote.go:106 +#: lxc/remote.go:107 msgid "Project to use for the remote" msgstr "" @@ -4594,7 +4589,7 @@ msgid "" "pool \"default\"." msgstr "" -#: lxc/remote.go:105 +#: lxc/remote.go:106 msgid "Public image server" msgstr "" @@ -4642,7 +4637,7 @@ msgstr "" msgid "RESOURCE" msgstr "" -#: lxc/storage_bucket.go:828 +#: lxc/storage_bucket.go:833 msgid "ROLE" msgstr "" @@ -4685,45 +4680,45 @@ msgstr "" msgid "Refreshing the image: %s" msgstr "" -#: lxc/remote.go:785 +#: lxc/remote.go:786 #, c-format msgid "Remote %s already exists" msgstr "" -#: lxc/project.go:769 lxc/remote.go:776 lxc/remote.go:849 lxc/remote.go:905 -#: lxc/remote.go:945 +#: lxc/project.go:769 lxc/remote.go:777 lxc/remote.go:850 lxc/remote.go:906 +#: lxc/remote.go:946 #, c-format msgid "Remote %s doesn't exist" msgstr "" -#: lxc/remote.go:301 +#: lxc/remote.go:302 #, c-format msgid "Remote %s exists as <%s>" msgstr "" -#: lxc/remote.go:857 +#: lxc/remote.go:858 #, c-format msgid "Remote %s is global and cannot be removed" msgstr "" -#: lxc/remote.go:780 lxc/remote.go:853 lxc/remote.go:949 +#: lxc/remote.go:781 lxc/remote.go:854 lxc/remote.go:950 #, c-format msgid "Remote %s is static and cannot be modified" msgstr "" -#: lxc/remote.go:290 +#: lxc/remote.go:291 msgid "Remote address must not be empty" msgstr "" -#: lxc/remote.go:101 +#: lxc/remote.go:102 msgid "Remote admin password" msgstr "" -#: lxc/remote.go:295 +#: lxc/remote.go:296 msgid "Remote names may not contain colons" msgstr "" -#: lxc/remote.go:102 +#: lxc/remote.go:103 msgid "Remote trust token" msgstr "" @@ -4749,7 +4744,7 @@ msgstr "" msgid "Remove a member from the cluster" msgstr "" -#: lxc/network_zone.go:1285 +#: lxc/network_zone.go:1290 msgid "Remove a network zone record entry" msgstr "" @@ -4757,7 +4752,7 @@ msgstr "" msgid "Remove aliases" msgstr "" -#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1025 +#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1030 msgid "Remove all ports that match" msgstr "" @@ -4765,15 +4760,15 @@ msgstr "" msgid "Remove all rules that match" msgstr "" -#: lxc/network_load_balancer.go:862 +#: lxc/network_load_balancer.go:867 msgid "Remove backend from a load balancer" msgstr "" -#: lxc/network_load_balancer.go:861 +#: lxc/network_load_balancer.go:866 msgid "Remove backends from a load balancer" msgstr "" -#: lxc/network_zone.go:1286 +#: lxc/network_zone.go:1291 msgid "Remove entries from a network zone record" msgstr "" @@ -4797,7 +4792,7 @@ msgstr "" msgid "Remove ports from a forward" msgstr "" -#: lxc/network_load_balancer.go:1023 lxc/network_load_balancer.go:1024 +#: lxc/network_load_balancer.go:1028 lxc/network_load_balancer.go:1029 msgid "Remove ports from a load balancer" msgstr "" @@ -4805,7 +4800,7 @@ msgstr "" msgid "Remove profiles from instances" msgstr "" -#: lxc/remote.go:827 lxc/remote.go:828 +#: lxc/remote.go:828 lxc/remote.go:829 msgid "Remove remotes" msgstr "" @@ -4862,7 +4857,7 @@ msgstr "" msgid "Rename projects" msgstr "" -#: lxc/remote.go:754 lxc/remote.go:755 +#: lxc/remote.go:755 lxc/remote.go:756 msgid "Rename remotes" msgstr "" @@ -4940,7 +4935,7 @@ msgid "Restrict the certificate to one or more projects" msgstr "" #: lxc/console.go:44 -msgid "Retrieve the instance's console log" +msgid "Retrieve the container's console log" msgstr "" #: lxc/init.go:347 @@ -4956,7 +4951,7 @@ msgstr "" msgid "Revoke cluster member join token" msgstr "" -#: lxc/storage_bucket.go:851 +#: lxc/storage_bucket.go:856 msgid "Role (admin or read-only)" msgstr "" @@ -5007,7 +5002,7 @@ msgstr "" msgid "STATE" msgstr "" -#: lxc/remote.go:736 +#: lxc/remote.go:737 msgid "STATIC" msgstr "" @@ -5031,11 +5026,11 @@ msgstr "" msgid "STP" msgstr "" -#: lxc/storage_bucket.go:853 +#: lxc/storage_bucket.go:858 msgid "Secret key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:909 +#: lxc/storage_bucket.go:914 #, c-format msgid "Secret key: %s" msgstr "" @@ -5044,19 +5039,19 @@ msgstr "" msgid "Send a raw query to LXD" msgstr "" -#: lxc/remote.go:104 +#: lxc/remote.go:105 msgid "Server authentication type (tls or oidc)" msgstr "" -#: lxc/remote.go:460 +#: lxc/remote.go:461 msgid "Server certificate NACKed by user" msgstr "" -#: lxc/remote.go:599 +#: lxc/remote.go:600 msgid "Server doesn't trust us after authentication" msgstr "" -#: lxc/remote.go:103 +#: lxc/remote.go:104 msgid "Server protocol (lxd or simplestreams)" msgstr "" @@ -5155,11 +5150,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_load_balancer.go:450 +#: lxc/network_load_balancer.go:455 msgid "Set network load balancer keys" msgstr "" -#: lxc/network_load_balancer.go:451 +#: lxc/network_load_balancer.go:456 msgid "" "Set network load balancer keys\n" "\n" @@ -5181,11 +5176,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:353 +#: lxc/network_zone.go:358 msgid "Set network zone configuration keys" msgstr "" -#: lxc/network_zone.go:354 +#: lxc/network_zone.go:359 msgid "" "Set network zone configuration keys\n" "\n" @@ -5194,7 +5189,7 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:951 lxc/network_zone.go:952 +#: lxc/network_zone.go:956 lxc/network_zone.go:957 msgid "Set network zone record configuration keys" msgstr "" @@ -5224,11 +5219,11 @@ msgid "" " lxc project set [:] " msgstr "" -#: lxc/storage_bucket.go:529 +#: lxc/storage_bucket.go:534 msgid "Set storage bucket configuration keys" msgstr "" -#: lxc/storage_bucket.go:530 +#: lxc/storage_bucket.go:535 msgid "" "Set storage bucket configuration keys\n" "\n" @@ -5263,7 +5258,7 @@ msgid "" " lxc storage volume set [:] [/] " msgstr "" -#: lxc/remote.go:923 lxc/remote.go:924 +#: lxc/remote.go:924 lxc/remote.go:925 msgid "Set the URL for the remote" msgstr "" @@ -5291,7 +5286,7 @@ msgstr "" msgid "Set the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:458 +#: lxc/network_load_balancer.go:463 msgid "Set the key as a network load balancer property" msgstr "" @@ -5303,11 +5298,11 @@ msgstr "" msgid "Set the key as a network property" msgstr "" -#: lxc/network_zone.go:361 +#: lxc/network_zone.go:366 msgid "Set the key as a network zone property" msgstr "" -#: lxc/network_zone.go:957 +#: lxc/network_zone.go:962 msgid "Set the key as a network zone record property" msgstr "" @@ -5319,7 +5314,7 @@ msgstr "" msgid "Set the key as a project property" msgstr "" -#: lxc/storage_bucket.go:537 +#: lxc/storage_bucket.go:542 msgid "Set the key as a storage bucket property" msgstr "" @@ -5339,11 +5334,11 @@ msgstr "" msgid "Setup SSH SFTP listener on address:port instead of mounting" msgstr "" -#: lxc/main.go:97 +#: lxc/main.go:98 msgid "Show all debug messages" msgstr "" -#: lxc/main.go:98 +#: lxc/main.go:99 msgid "Show all information messages" msgstr "" @@ -5412,7 +5407,7 @@ msgstr "" msgid "Show instance or server information" msgstr "" -#: lxc/main.go:271 lxc/main.go:272 +#: lxc/main.go:272 lxc/main.go:273 msgid "Show less common commands" msgstr "" @@ -5444,15 +5439,15 @@ msgstr "" msgid "Show network peer configurations" msgstr "" -#: lxc/network_zone.go:155 lxc/network_zone.go:156 +#: lxc/network_zone.go:156 lxc/network_zone.go:157 msgid "Show network zone configurations" msgstr "" -#: lxc/network_zone.go:758 +#: lxc/network_zone.go:763 msgid "Show network zone record configuration" msgstr "" -#: lxc/network_zone.go:759 +#: lxc/network_zone.go:764 msgid "Show network zone record configurations" msgstr "" @@ -5464,11 +5459,11 @@ msgstr "" msgid "Show project options" msgstr "" -#: lxc/storage_bucket.go:623 lxc/storage_bucket.go:624 +#: lxc/storage_bucket.go:628 lxc/storage_bucket.go:629 msgid "Show storage bucket configurations" msgstr "" -#: lxc/storage_bucket.go:1123 lxc/storage_bucket.go:1124 +#: lxc/storage_bucket.go:1128 lxc/storage_bucket.go:1129 msgid "Show storage bucket key configurations" msgstr "" @@ -5494,7 +5489,7 @@ msgid "" "that are granted via identity provider group mappings. \n" msgstr "" -#: lxc/remote.go:630 lxc/remote.go:631 +#: lxc/remote.go:631 lxc/remote.go:632 msgid "Show the default remote" msgstr "" @@ -5618,22 +5613,22 @@ msgstr "" msgid "Stopping the instance failed: %s" msgstr "" -#: lxc/storage_bucket.go:161 +#: lxc/storage_bucket.go:166 #, c-format msgid "Storage bucket %s created" msgstr "" -#: lxc/storage_bucket.go:228 +#: lxc/storage_bucket.go:233 #, c-format msgid "Storage bucket %s deleted" msgstr "" -#: lxc/storage_bucket.go:907 +#: lxc/storage_bucket.go:912 #, c-format msgid "Storage bucket key %s added" msgstr "" -#: lxc/storage_bucket.go:973 +#: lxc/storage_bucket.go:978 #, c-format msgid "Storage bucket key %s removed" msgstr "" @@ -5706,7 +5701,7 @@ msgstr "" msgid "Switch the current project" msgstr "" -#: lxc/remote.go:883 lxc/remote.go:884 +#: lxc/remote.go:884 lxc/remote.go:885 msgid "Switch the default remote" msgstr "" @@ -5821,7 +5816,7 @@ msgstr "" msgid "The property %q does not exist on the instance snapshot %s/%s: %v" msgstr "" -#: lxc/network_load_balancer.go:424 +#: lxc/network_load_balancer.go:429 #, c-format msgid "The property %q does not exist on the load balancer %q: %v" msgstr "" @@ -5846,12 +5841,12 @@ msgstr "" msgid "The property %q does not exist on the network peer %q: %v" msgstr "" -#: lxc/network_zone.go:246 +#: lxc/network_zone.go:247 #, c-format msgid "The property %q does not exist on the network zone %q: %v" msgstr "" -#: lxc/network_zone.go:845 +#: lxc/network_zone.go:850 #, c-format msgid "The property %q does not exist on the network zone record %q: %v" msgstr "" @@ -5866,7 +5861,7 @@ msgstr "" msgid "The property %q does not exist on the project %q: %v" msgstr "" -#: lxc/storage_bucket.go:426 +#: lxc/storage_bucket.go:431 #, c-format msgid "The property %q does not exist on the storage bucket %q: %v" msgstr "" @@ -5920,7 +5915,7 @@ msgstr "" msgid "This LXD server is not available on the network" msgstr "" -#: lxc/main.go:293 +#: lxc/main.go:294 msgid "" "This client hasn't been configured to use a remote LXD server yet.\n" "As your platform can't run native Linux instances, you must connect to a " @@ -5952,11 +5947,11 @@ msgstr "" msgid "To create a new network, use: lxc network create" msgstr "" -#: lxc/console.go:210 +#: lxc/console.go:215 msgid "To detach from the console, press: +a q" msgstr "" -#: lxc/main.go:403 +#: lxc/main.go:406 msgid "" "To start your first container, try: lxc launch ubuntu:24.04\n" "Or for a virtual machine: lxc launch ubuntu:24.04 --vm" @@ -6054,7 +6049,7 @@ msgstr "" msgid "UPLOAD DATE" msgstr "" -#: lxc/cluster.go:184 lxc/remote.go:732 +#: lxc/cluster.go:184 lxc/remote.go:733 msgid "URL" msgstr "" @@ -6063,7 +6058,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:679 lxc/project.go:506 +#: lxc/network_zone.go:141 lxc/profile.go:679 lxc/project.go:506 #: lxc/storage.go:647 lxc/storage_volume.go:1564 msgid "USED BY" msgstr "" @@ -6082,7 +6077,7 @@ msgstr "" msgid "Unable to create a temporary file: %v" msgstr "" -#: lxc/remote.go:213 lxc/remote.go:247 +#: lxc/remote.go:214 lxc/remote.go:248 msgid "Unavailable remote server" msgstr "" @@ -6102,7 +6097,7 @@ msgstr "" msgid "Unknown column shorthand char '%c' in '%s'" msgstr "" -#: lxc/console.go:159 +#: lxc/console.go:164 #, c-format msgid "Unknown console type %q" msgstr "" @@ -6162,11 +6157,11 @@ msgstr "" msgid "Unset network forward keys" msgstr "" -#: lxc/network_load_balancer.go:548 +#: lxc/network_load_balancer.go:553 msgid "Unset network load balancer configuration keys" msgstr "" -#: lxc/network_load_balancer.go:549 +#: lxc/network_load_balancer.go:554 msgid "Unset network load balancer keys" msgstr "" @@ -6178,11 +6173,11 @@ msgstr "" msgid "Unset network peer keys" msgstr "" -#: lxc/network_zone.go:433 lxc/network_zone.go:434 +#: lxc/network_zone.go:438 lxc/network_zone.go:439 msgid "Unset network zone configuration keys" msgstr "" -#: lxc/network_zone.go:1027 lxc/network_zone.go:1028 +#: lxc/network_zone.go:1032 lxc/network_zone.go:1033 msgid "Unset network zone record configuration keys" msgstr "" @@ -6194,7 +6189,7 @@ msgstr "" msgid "Unset project configuration keys" msgstr "" -#: lxc/storage_bucket.go:692 lxc/storage_bucket.go:693 +#: lxc/storage_bucket.go:697 lxc/storage_bucket.go:698 msgid "Unset storage bucket configuration keys" msgstr "" @@ -6218,7 +6213,7 @@ msgstr "" msgid "Unset the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:552 +#: lxc/network_load_balancer.go:557 msgid "Unset the key as a network load balancer property" msgstr "" @@ -6230,11 +6225,11 @@ msgstr "" msgid "Unset the key as a network property" msgstr "" -#: lxc/network_zone.go:437 +#: lxc/network_zone.go:442 msgid "Unset the key as a network zone property" msgstr "" -#: lxc/network_zone.go:1031 +#: lxc/network_zone.go:1036 msgid "Unset the key as a network zone record property" msgstr "" @@ -6246,7 +6241,7 @@ msgstr "" msgid "Unset the key as a project property" msgstr "" -#: lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:701 msgid "Unset the key as a storage bucket property" msgstr "" @@ -6308,7 +6303,7 @@ msgid "" "Use storage driver optimized format (can only be restored on a similar pool)" msgstr "" -#: lxc/main.go:100 +#: lxc/main.go:101 msgid "Use with help or --help to view sub-commands" msgstr "" @@ -6405,7 +6400,7 @@ msgstr "" #: lxc/network.go:959 lxc/operation.go:156 lxc/project.go:458 #: lxc/project.go:463 lxc/project.go:468 lxc/project.go:473 lxc/project.go:478 -#: lxc/project.go:483 lxc/remote.go:693 lxc/remote.go:698 lxc/remote.go:703 +#: lxc/project.go:483 lxc/remote.go:694 lxc/remote.go:699 lxc/remote.go:704 msgid "YES" msgstr "" @@ -6440,7 +6435,7 @@ 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/network.go:909 lxc/network_acl.go:91 lxc/network_zone.go:83 #: 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 "[:]" @@ -6503,19 +6498,19 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:154 lxc/network_zone.go:463 lxc/network_zone.go:581 +#: lxc/network_zone.go:155 lxc/network_zone.go:468 lxc/network_zone.go:586 msgid "[:]" msgstr "" -#: lxc/network_zone.go:209 lxc/network_zone.go:432 +#: lxc/network_zone.go:210 lxc/network_zone.go:437 msgid "[:] " msgstr "" -#: lxc/network_zone.go:352 +#: lxc/network_zone.go:357 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:269 +#: lxc/network_zone.go:270 msgid "[:] [key=value...]" msgstr "" @@ -6761,30 +6756,30 @@ msgstr "" #: lxc/network_forward.go:169 lxc/network_forward.go:574 #: lxc/network_forward.go:715 lxc/network_load_balancer.go:171 -#: lxc/network_load_balancer.go:577 lxc/network_load_balancer.go:719 +#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:724 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:860 +#: lxc/network_load_balancer.go:865 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:796 +#: lxc/network_load_balancer.go:801 msgid "" "[:] " "[]" msgstr "" #: lxc/network_forward.go:377 lxc/network_forward.go:544 -#: lxc/network_load_balancer.go:381 lxc/network_load_balancer.go:547 +#: lxc/network_load_balancer.go:386 lxc/network_load_balancer.go:552 msgid "[:] " msgstr "" -#: lxc/network_forward.go:446 lxc/network_load_balancer.go:449 +#: lxc/network_forward.go:446 lxc/network_load_balancer.go:454 msgid "[:] =..." msgstr "" -#: lxc/network_load_balancer.go:961 +#: lxc/network_load_balancer.go:966 msgid "" "[:] " "[,...]" @@ -6796,7 +6791,7 @@ msgid "" " []" msgstr "" -#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1022 +#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1027 msgid "[:] [] []" msgstr "" @@ -6847,7 +6842,7 @@ msgid "[:]" msgstr "" #: lxc/storage.go:167 lxc/storage.go:218 lxc/storage.go:412 lxc/storage.go:759 -#: lxc/storage_bucket.go:449 +#: lxc/storage_bucket.go:454 msgid "[:]" msgstr "" @@ -6855,18 +6850,18 @@ msgstr "" msgid "[:] []" msgstr "" -#: lxc/storage_bucket.go:180 lxc/storage_bucket.go:242 -#: lxc/storage_bucket.go:622 lxc/storage_bucket.go:764 +#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:247 +#: lxc/storage_bucket.go:627 lxc/storage_bucket.go:769 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:375 lxc/storage_bucket.go:691 -#: lxc/storage_bucket.go:845 lxc/storage_bucket.go:923 -#: lxc/storage_bucket.go:987 lxc/storage_bucket.go:1122 +#: lxc/storage_bucket.go:380 lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:850 lxc/storage_bucket.go:928 +#: lxc/storage_bucket.go:992 lxc/storage_bucket.go:1127 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:528 +#: lxc/storage_bucket.go:533 msgid "[:] =..." msgstr "" @@ -7010,27 +7005,27 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:686 +#: lxc/network_zone.go:691 msgid "[:]" msgstr "" -#: lxc/network_zone.go:757 lxc/network_zone.go:1056 lxc/network_zone.go:1173 +#: lxc/network_zone.go:762 lxc/network_zone.go:1061 lxc/network_zone.go:1178 msgid "[:] " msgstr "" -#: lxc/network_zone.go:809 lxc/network_zone.go:1026 +#: lxc/network_zone.go:814 lxc/network_zone.go:1031 msgid "[:] " msgstr "" -#: lxc/network_zone.go:950 +#: lxc/network_zone.go:955 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:1238 lxc/network_zone.go:1284 +#: lxc/network_zone.go:1243 lxc/network_zone.go:1289 msgid "[:] " msgstr "" -#: lxc/network_zone.go:868 +#: lxc/network_zone.go:873 msgid "[:] [key=value...]" msgstr "" @@ -7054,7 +7049,7 @@ msgstr "" msgid "[:][] [...]" msgstr "" -#: lxc/remote.go:88 +#: lxc/remote.go:89 msgid "[] " msgstr "" @@ -7062,7 +7057,7 @@ msgstr "" msgid "[[:]]" msgstr "" -#: lxc/project.go:488 lxc/remote.go:722 +#: lxc/project.go:488 lxc/remote.go:723 msgid "current" msgstr "" @@ -7325,6 +7320,23 @@ msgid "" " Create a new OVN network called bar using baz as its uplink network" msgstr "" +#: lxc/network_load_balancer.go:239 +msgid "" +"lxc network load-balancer create n1 127.0.0.1\n" +"\n" +"lxc network load-balancer create n1 127.0.0.1 < config.yaml\n" +" Create network load-balancer for network n1 with configuration from " +"config.yaml" +msgstr "" + +#: lxc/network_zone.go:273 +msgid "" +"lxc network zone create z1\n" +"\n" +"lxc network zone create z1 < config.yaml\n" +" Create network zone z1 with configuration from config.yaml" +msgstr "" + #: lxc/operation.go:195 msgid "" "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n" @@ -7395,26 +7407,36 @@ msgid "" " Restore the snapshot." msgstr "" -#: lxc/storage_bucket.go:245 +#: lxc/storage_bucket.go:84 +msgid "" +"lxc storage bucket create p1 b01\n" +"\tCreate a new storage bucket name b01 in storage pool p1\n" +"\n" +"lxc storage bucket create p1 b01 < config.yaml\n" +"\tCreate a new storage bucket name b01 in storage pool p1 using the content " +"of config.yaml" +msgstr "" + +#: lxc/storage_bucket.go:250 msgid "" "lxc storage bucket edit [:] < bucket.yaml\n" " Update a storage bucket using the content of bucket.yaml." msgstr "" -#: lxc/storage_bucket.go:990 +#: lxc/storage_bucket.go:995 msgid "" "lxc storage bucket edit [:] < key.yaml\n" " Update a storage bucket key using the content of key.yaml." msgstr "" -#: lxc/storage_bucket.go:1125 +#: lxc/storage_bucket.go:1130 msgid "" "lxc storage bucket key show default data foo\n" " Will show the properties of a bucket key called \"foo\" for a bucket " "called \"data\" in the \"default\" pool." msgstr "" -#: lxc/storage_bucket.go:625 +#: lxc/storage_bucket.go:630 msgid "" "lxc storage bucket show default data\n" " Will show the properties of a bucket called \"data\" in the \"default\" " @@ -7433,7 +7455,7 @@ msgid "" "\t\tCreate a new custom volume using backup0.tar.gz as the source." msgstr "" -#: lxc/remote.go:459 +#: lxc/remote.go:460 msgid "n" msgstr "" @@ -7445,7 +7467,7 @@ msgstr "" msgid "no" msgstr "" -#: lxc/remote.go:452 +#: lxc/remote.go:453 msgid "ok (y/n/[fingerprint])?" msgstr "" @@ -7482,7 +7504,7 @@ msgstr "" msgid "used by" msgstr "" -#: lxc/remote.go:461 +#: lxc/remote.go:462 msgid "y" msgstr "" diff --git a/po/hi.po b/po/hi.po index de761c73ef67..c46713760494 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-08-20 09:31+0100\n" +"POT-Creation-Date: 2024-08-30 09:27+0100\n" "PO-Revision-Date: 2022-03-10 15:08+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Hindi 1;\n" "X-Generator: Weblate 4.12-dev\n" -#: lxc/storage_bucket.go:255 lxc/storage_bucket.go:1000 +#: lxc/storage_bucket.go:260 lxc/storage_bucket.go:1005 msgid "" "### This is a YAML representation of a storage bucket.\n" "### Any line starting with a '# will be ignored.\n" @@ -281,7 +281,7 @@ msgid "" "### Note that the listen_address and location cannot be changed." msgstr "" -#: lxc/network_load_balancer.go:588 +#: lxc/network_load_balancer.go:593 msgid "" "### This is a YAML representation of the network load balancer.\n" "### Any line starting with a '# will be ignored.\n" @@ -322,7 +322,7 @@ msgid "" "cannot be changed." msgstr "" -#: lxc/network_zone.go:1066 +#: lxc/network_zone.go:1071 msgid "" "### This is a YAML representation of the network zone record.\n" "### Any line starting with a '# will be ignored.\n" @@ -336,7 +336,7 @@ msgid "" "### user.foo: bah\n" msgstr "" -#: lxc/network_zone.go:473 +#: lxc/network_zone.go:478 msgid "" "### This is a YAML representation of the network zone.\n" "### Any line starting with a '# will be ignored.\n" @@ -515,15 +515,15 @@ msgstr "" msgid " " msgstr "" -#: lxc/remote.go:825 lxc/remote.go:882 +#: lxc/remote.go:826 lxc/remote.go:883 msgid "" msgstr "" -#: lxc/remote.go:922 +#: lxc/remote.go:923 msgid " " msgstr "" -#: lxc/remote.go:752 +#: lxc/remote.go:753 msgid " " msgstr "" @@ -556,7 +556,7 @@ msgstr "" msgid "ARCHITECTURE" msgstr "" -#: lxc/remote.go:734 +#: lxc/remote.go:735 msgid "AUTH TYPE" msgstr "" @@ -564,15 +564,15 @@ msgstr "" msgid "AUTHENTICATION METHOD" msgstr "" -#: lxc/remote.go:100 +#: lxc/remote.go:101 msgid "Accept certificate" msgstr "" -#: lxc/storage_bucket.go:852 +#: lxc/storage_bucket.go:857 msgid "Access key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:908 +#: lxc/storage_bucket.go:913 #, c-format msgid "Access key: %s" msgstr "" @@ -606,19 +606,19 @@ msgstr "" msgid "Add a group to an identity provider group" msgstr "" -#: lxc/network_zone.go:1239 +#: lxc/network_zone.go:1244 msgid "Add a network zone record entry" msgstr "" -#: lxc/network_load_balancer.go:798 +#: lxc/network_load_balancer.go:803 msgid "Add backend to a load balancer" msgstr "" -#: lxc/network_load_balancer.go:797 +#: lxc/network_load_balancer.go:802 msgid "Add backends to a load balancer" msgstr "" -#: lxc/network_zone.go:1240 +#: lxc/network_zone.go:1245 msgid "Add entries to a network zone record" msgstr "" @@ -634,11 +634,11 @@ msgstr "" msgid "Add new aliases" msgstr "" -#: lxc/remote.go:89 +#: lxc/remote.go:90 msgid "Add new remote servers" msgstr "" -#: lxc/remote.go:90 +#: lxc/remote.go:91 msgid "" "Add new remote servers\n" "\n" @@ -679,7 +679,7 @@ msgstr "" msgid "Add ports to a forward" msgstr "" -#: lxc/network_load_balancer.go:962 lxc/network_load_balancer.go:963 +#: lxc/network_load_balancer.go:967 lxc/network_load_balancer.go:968 msgid "Add ports to a load balancer" msgstr "" @@ -700,17 +700,17 @@ msgstr "" msgid "Address: %s" msgstr "" -#: lxc/storage_bucket.go:164 +#: lxc/storage_bucket.go:169 #, c-format msgid "Admin access key: %s" msgstr "" -#: lxc/remote.go:566 +#: lxc/remote.go:567 #, c-format msgid "Admin password (or token) for %s:" msgstr "" -#: lxc/storage_bucket.go:165 +#: lxc/storage_bucket.go:170 #, c-format msgid "Admin secret key: %s" msgstr "" @@ -742,7 +742,7 @@ msgstr "" msgid "All projects" msgstr "" -#: lxc/remote.go:181 +#: lxc/remote.go:182 msgid "All server addresses are unavailable" msgstr "" @@ -765,7 +765,7 @@ msgstr "" msgid "Are you sure you want to %s cluster member %q? (yes/no) [default=no]: " msgstr "" -#: lxc/console.go:383 +#: lxc/console.go:388 msgid "As neither could be found, the raw SPICE socket can be found at:" msgstr "" @@ -813,7 +813,7 @@ msgid "" "as well as retrieve past log entries from it." msgstr "" -#: lxc/remote.go:548 +#: lxc/remote.go:549 #, c-format msgid "Authentication type '%s' not supported by server" msgstr "" @@ -832,11 +832,11 @@ msgstr "" msgid "Auto update: %s" msgstr "" -#: lxc/network_forward.go:240 lxc/network_load_balancer.go:242 +#: lxc/network_forward.go:240 lxc/network_load_balancer.go:247 msgid "Auto-allocate an IPv4 or IPv6 listen address. One of 'ipv4', 'ipv6'." msgstr "" -#: lxc/remote.go:136 +#: lxc/remote.go:137 msgid "Available projects:" msgstr "" @@ -868,8 +868,8 @@ msgid "Bad device override syntax, expecting ,=: %s" msgstr "" #: lxc/network.go:333 lxc/network_acl.go:382 lxc/network_forward.go:293 -#: lxc/network_load_balancer.go:296 lxc/network_peer.go:280 -#: lxc/network_zone.go:324 lxc/network_zone.go:922 lxc/storage_bucket.go:136 +#: lxc/network_load_balancer.go:301 lxc/network_peer.go:280 +#: lxc/network_zone.go:329 lxc/network_zone.go:927 lxc/storage_bucket.go:141 #, c-format msgid "Bad key/value pair: %s" msgstr "" @@ -991,7 +991,7 @@ msgstr "" msgid "Can't read from stdin: %w" msgstr "" -#: lxc/remote.go:861 +#: lxc/remote.go:862 msgid "Can't remove the default remote" msgstr "" @@ -1057,15 +1057,14 @@ msgstr "" msgid "Certificate add token for %s deleted" msgstr "" -#: lxc/remote.go:218 -#, c-format -msgid "" -"Certificate fingerprint mismatch between certificate token and server %q" +#: lxc/remote.go:452 +msgid "Certificate fingerprint" msgstr "" -#: lxc/remote.go:451 +#: lxc/remote.go:219 #, c-format -msgid "Certificate fingerprint: %s" +msgid "" +"Certificate fingerprint mismatch between certificate token and server %q" msgstr "" #: lxc/network.go:893 @@ -1077,7 +1076,7 @@ msgstr "" msgid "Client %s certificate add token:" msgstr "" -#: lxc/remote.go:603 +#: lxc/remote.go:604 msgid "Client certificate now trusted by server:" msgstr "" @@ -1139,18 +1138,18 @@ msgstr "" #: lxc/network_forward.go:456 lxc/network_forward.go:579 #: lxc/network_forward.go:721 lxc/network_forward.go:798 #: lxc/network_forward.go:864 lxc/network_load_balancer.go:176 -#: lxc/network_load_balancer.go:241 lxc/network_load_balancer.go:459 -#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:725 -#: lxc/network_load_balancer.go:801 lxc/network_load_balancer.go:865 -#: lxc/network_load_balancer.go:966 lxc/network_load_balancer.go:1028 +#: lxc/network_load_balancer.go:246 lxc/network_load_balancer.go:464 +#: lxc/network_load_balancer.go:587 lxc/network_load_balancer.go:730 +#: lxc/network_load_balancer.go:806 lxc/network_load_balancer.go:870 +#: lxc/network_load_balancer.go:971 lxc/network_load_balancer.go:1033 #: lxc/storage.go:99 lxc/storage.go:347 lxc/storage.go:418 lxc/storage.go:671 -#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:85 -#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:248 -#: lxc/storage_bucket.go:379 lxc/storage_bucket.go:536 -#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:695 -#: lxc/storage_bucket.go:770 lxc/storage_bucket.go:850 -#: lxc/storage_bucket.go:928 lxc/storage_bucket.go:993 -#: lxc/storage_bucket.go:1129 lxc/storage_volume.go:358 +#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:90 +#: lxc/storage_bucket.go:190 lxc/storage_bucket.go:253 +#: lxc/storage_bucket.go:384 lxc/storage_bucket.go:541 +#: lxc/storage_bucket.go:634 lxc/storage_bucket.go:700 +#: lxc/storage_bucket.go:775 lxc/storage_bucket.go:855 +#: lxc/storage_bucket.go:933 lxc/storage_bucket.go:998 +#: lxc/storage_bucket.go:1134 lxc/storage_volume.go:358 #: lxc/storage_volume.go:560 lxc/storage_volume.go:639 #: lxc/storage_volume.go:883 lxc/storage_volume.go:1097 #: lxc/storage_volume.go:1210 lxc/storage_volume.go:1678 @@ -1178,11 +1177,11 @@ msgstr "" msgid "Columns" msgstr "" -#: lxc/main.go:81 +#: lxc/main.go:82 msgid "Command line client for LXD" msgstr "" -#: lxc/main.go:82 +#: lxc/main.go:83 msgid "" "Command line client for LXD\n" "\n" @@ -1214,19 +1213,15 @@ msgstr "" #: lxc/config.go:347 lxc/config.go:1277 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/network_load_balancer.go:694 lxc/network_peer.go:610 +#: lxc/network_zone.go:556 lxc/network_zone.go:1148 lxc/profile.go:538 +#: lxc/project.go:315 lxc/storage.go:310 lxc/storage_bucket.go:348 +#: lxc/storage_bucket.go:1097 lxc/storage_volume.go:1016 #: lxc/storage_volume.go:1048 #, c-format msgid "Config parsing error: %s" msgstr "" -#: lxc/console.go:140 -msgid "Console log:" -msgstr "" - #: lxc/storage_volume.go:561 msgid "Content type, block or filesystem" msgstr "" @@ -1329,12 +1324,12 @@ msgstr "" msgid "Cores:" msgstr "" -#: lxc/remote.go:486 +#: lxc/remote.go:487 #, c-format msgid "Could not close server cert file %q: %w" msgstr "" -#: lxc/remote.go:224 lxc/remote.go:470 +#: lxc/remote.go:225 lxc/remote.go:471 msgid "Could not create server cert dir" msgstr "" @@ -1373,12 +1368,12 @@ msgstr "" msgid "Could not write new remote certificate for remote '%s' with error: %v" msgstr "" -#: lxc/remote.go:481 +#: lxc/remote.go:482 #, c-format msgid "Could not write server cert file %q: %w" msgstr "" -#: lxc/network_zone.go:1327 +#: lxc/network_zone.go:1332 msgid "Couldn't find a matching entry" msgstr "" @@ -1430,7 +1425,7 @@ msgstr "" msgid "Create instances from images" msgstr "" -#: lxc/storage_bucket.go:846 lxc/storage_bucket.go:847 +#: lxc/storage_bucket.go:851 lxc/storage_bucket.go:852 msgid "Create key for a storage bucket" msgstr "" @@ -1462,11 +1457,11 @@ msgstr "" msgid "Create new network peering" msgstr "" -#: lxc/network_zone.go:869 lxc/network_zone.go:870 +#: lxc/network_zone.go:874 lxc/network_zone.go:875 msgid "Create new network zone record" msgstr "" -#: lxc/network_zone.go:270 lxc/network_zone.go:271 +#: lxc/network_zone.go:271 lxc/network_zone.go:272 msgid "Create new network zones" msgstr "" @@ -1517,9 +1512,9 @@ msgstr "" #: 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/network_zone.go:140 lxc/network_zone.go:747 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_bucket.go:512 lxc/storage_bucket.go:832 #: lxc/storage_volume.go:1562 msgid "DESCRIPTION" msgstr "" @@ -1584,7 +1579,7 @@ msgstr "" msgid "Delete instances and snapshots" msgstr "" -#: lxc/storage_bucket.go:924 lxc/storage_bucket.go:925 +#: lxc/storage_bucket.go:929 lxc/storage_bucket.go:930 msgid "Delete key from a storage bucket" msgstr "" @@ -1596,7 +1591,7 @@ msgstr "" msgid "Delete network forwards" msgstr "" -#: lxc/network_load_balancer.go:721 lxc/network_load_balancer.go:722 +#: lxc/network_load_balancer.go:726 lxc/network_load_balancer.go:727 msgid "Delete network load balancers" msgstr "" @@ -1604,11 +1599,11 @@ msgstr "" msgid "Delete network peerings" msgstr "" -#: lxc/network_zone.go:1175 lxc/network_zone.go:1176 +#: lxc/network_zone.go:1180 lxc/network_zone.go:1181 msgid "Delete network zone record" msgstr "" -#: lxc/network_zone.go:583 lxc/network_zone.go:584 +#: lxc/network_zone.go:588 lxc/network_zone.go:589 msgid "Delete network zones" msgstr "" @@ -1624,7 +1619,7 @@ msgstr "" msgid "Delete projects" msgstr "" -#: lxc/storage_bucket.go:182 lxc/storage_bucket.go:183 +#: lxc/storage_bucket.go:187 lxc/storage_bucket.go:188 msgid "Delete storage buckets" msgstr "" @@ -1680,7 +1675,7 @@ msgstr "" #: 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/info.go:32 lxc/init.go:43 lxc/launch.go:24 lxc/list.go:48 lxc/main.go:83 #: 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 @@ -1699,22 +1694,22 @@ msgstr "" #: 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_load_balancer.go:238 lxc/network_load_balancer.go:388 +#: lxc/network_load_balancer.go:456 lxc/network_load_balancer.go:554 +#: lxc/network_load_balancer.go:584 lxc/network_load_balancer.go:727 +#: lxc/network_load_balancer.go:788 lxc/network_load_balancer.go:803 +#: lxc/network_load_balancer.go:867 lxc/network_load_balancer.go:953 +#: lxc/network_load_balancer.go:968 lxc/network_load_balancer.go:1029 #: 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/network_zone.go:29 lxc/network_zone.go:86 lxc/network_zone.go:157 +#: lxc/network_zone.go:212 lxc/network_zone.go:272 lxc/network_zone.go:359 +#: lxc/network_zone.go:439 lxc/network_zone.go:470 lxc/network_zone.go:589 +#: lxc/network_zone.go:637 lxc/network_zone.go:694 lxc/network_zone.go:764 +#: lxc/network_zone.go:816 lxc/network_zone.go:875 lxc/network_zone.go:957 +#: lxc/network_zone.go:1033 lxc/network_zone.go:1063 lxc/network_zone.go:1181 +#: lxc/network_zone.go:1230 lxc/network_zone.go:1245 lxc/network_zone.go:1291 #: 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 @@ -1723,19 +1718,19 @@ msgstr "" #: 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:631 lxc/remote.go:669 lxc/remote.go:755 lxc/remote.go:828 -#: lxc/remote.go:884 lxc/remote.go:924 lxc/rename.go:21 lxc/restore.go:24 +#: lxc/query.go:34 lxc/rebuild.go:27 lxc/remote.go:35 lxc/remote.go:91 +#: lxc/remote.go:632 lxc/remote.go:670 lxc/remote.go:756 lxc/remote.go:829 +#: lxc/remote.go:885 lxc/remote.go:925 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_bucket.go:29 lxc/storage_bucket.go:83 lxc/storage_bucket.go:188 +#: lxc/storage_bucket.go:249 lxc/storage_bucket.go:382 +#: lxc/storage_bucket.go:458 lxc/storage_bucket.go:535 +#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:698 +#: lxc/storage_bucket.go:732 lxc/storage_bucket.go:773 +#: lxc/storage_bucket.go:852 lxc/storage_bucket.go:930 +#: lxc/storage_bucket.go:994 lxc/storage_bucket.go:1129 #: 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 @@ -1871,7 +1866,7 @@ msgstr "" msgid "Don't require user confirmation for using --force" msgstr "" -#: lxc/main.go:99 +#: lxc/main.go:100 msgid "Don't show progress information" msgstr "" @@ -1884,7 +1879,7 @@ msgstr "" msgid "Driver: %v (%v)" msgstr "" -#: lxc/network_zone.go:743 +#: lxc/network_zone.go:748 msgid "ENTRIES" msgstr "" @@ -1962,7 +1957,7 @@ msgstr "" msgid "Edit network forward configurations as YAML" msgstr "" -#: lxc/network_load_balancer.go:578 lxc/network_load_balancer.go:579 +#: lxc/network_load_balancer.go:583 lxc/network_load_balancer.go:584 msgid "Edit network load balancer configurations as YAML" msgstr "" @@ -1970,11 +1965,11 @@ msgstr "" msgid "Edit network peer configurations as YAML" msgstr "" -#: lxc/network_zone.go:464 lxc/network_zone.go:465 +#: lxc/network_zone.go:469 lxc/network_zone.go:470 msgid "Edit network zone configurations as YAML" msgstr "" -#: lxc/network_zone.go:1057 lxc/network_zone.go:1058 +#: lxc/network_zone.go:1062 lxc/network_zone.go:1063 msgid "Edit network zone record configurations as YAML" msgstr "" @@ -1986,11 +1981,11 @@ msgstr "" msgid "Edit project configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:243 lxc/storage_bucket.go:244 +#: lxc/storage_bucket.go:248 lxc/storage_bucket.go:249 msgid "Edit storage bucket configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:988 lxc/storage_bucket.go:989 +#: lxc/storage_bucket.go:993 lxc/storage_bucket.go:994 msgid "Edit storage bucket key as YAML" msgstr "" @@ -2031,7 +2026,7 @@ msgid "" " for the address if not yet set." msgstr "" -#: lxc/network_zone.go:1242 +#: lxc/network_zone.go:1247 msgid "Entry TTL" msgstr "" @@ -2060,9 +2055,9 @@ msgstr "" #: lxc/cluster.go:414 lxc/config.go:624 lxc/config.go:656 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/network_load_balancer.go:527 lxc/network_peer.go:463 +#: lxc/network_zone.go:414 lxc/network_zone.go:1008 lxc/profile.go:876 +#: lxc/project.go:634 lxc/storage.go:727 lxc/storage_bucket.go:602 #: lxc/storage_volume.go:1947 lxc/storage_volume.go:1985 #, c-format msgid "Error setting properties: %v" @@ -2074,10 +2069,10 @@ 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/network_forward.go:513 lxc/network_load_balancer.go:521 +#: lxc/network_peer.go:457 lxc/network_zone.go:408 lxc/network_zone.go:1002 #: lxc/profile.go:870 lxc/project.go:628 lxc/storage.go:721 -#: lxc/storage_bucket.go:591 lxc/storage_volume.go:1941 +#: lxc/storage_bucket.go:596 lxc/storage_volume.go:1941 #: lxc/storage_volume.go:1979 #, c-format msgid "Error unsetting property: %v" @@ -2263,7 +2258,7 @@ msgstr "" msgid "Failed parsing SSH host key: %w" msgstr "" -#: lxc/console.go:361 +#: lxc/console.go:366 #, c-format msgid "Failed starting command: %w" msgstr "" @@ -2278,11 +2273,11 @@ msgstr "" msgid "Failed to accept incoming connection: %w" msgstr "" -#: lxc/remote.go:190 +#: lxc/remote.go:191 msgid "Failed to add remote" msgstr "" -#: lxc/remote.go:241 +#: lxc/remote.go:242 #, c-format msgid "Failed to close server cert file %q: %w" msgstr "" @@ -2292,7 +2287,7 @@ msgstr "" msgid "Failed to connect to cluster member: %w" msgstr "" -#: lxc/remote.go:231 +#: lxc/remote.go:232 #, c-format msgid "Failed to create %q: %w" msgstr "" @@ -2302,12 +2297,12 @@ msgstr "" msgid "Failed to create alias %s: %w" msgstr "" -#: lxc/remote.go:256 +#: lxc/remote.go:257 #, c-format msgid "Failed to create certificate: %w" msgstr "" -#: lxc/remote.go:263 +#: lxc/remote.go:264 #, c-format msgid "Failed to find project: %w" msgstr "" @@ -2332,7 +2327,7 @@ msgstr "" msgid "Failed to walk path for %s: %s" msgstr "" -#: lxc/remote.go:236 +#: lxc/remote.go:237 #, c-format msgid "Failed to write server cert file %q: %w" msgstr "" @@ -2341,7 +2336,7 @@ msgstr "" msgid "Fast mode (same as --columns=nsacPt)" msgstr "" -#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:115 +#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:116 #: lxc/operation.go:136 msgid "Filtering isn't supported yet" msgstr "" @@ -2379,7 +2374,7 @@ msgstr "" msgid "Force the removal of running instances" msgstr "" -#: lxc/main.go:95 +#: lxc/main.go:96 msgid "Force using the local unix socket" msgstr "" @@ -2413,10 +2408,10 @@ msgstr "" #: 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/network_peer.go:84 lxc/network_zone.go:89 lxc/network_zone.go:697 #: lxc/operation.go:108 lxc/profile.go:637 lxc/project.go:412 -#: lxc/project.go:804 lxc/remote.go:673 lxc/storage.go:588 -#: lxc/storage_bucket.go:454 lxc/storage_bucket.go:769 +#: lxc/project.go:804 lxc/remote.go:674 lxc/storage.go:588 +#: lxc/storage_bucket.go:459 lxc/storage_bucket.go:774 #: lxc/storage_volume.go:1446 lxc/warning.go:93 msgid "Format (csv|json|table|yaml|compact)" msgstr "" @@ -2453,7 +2448,7 @@ msgstr "" msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)" msgstr "" -#: lxc/remote.go:737 +#: lxc/remote.go:738 msgid "GLOBAL" msgstr "" @@ -2473,7 +2468,7 @@ msgstr "" msgid "Generate manpages for all commands" msgstr "" -#: lxc/remote.go:159 lxc/remote.go:397 +#: lxc/remote.go:160 lxc/remote.go:398 msgid "Generating a client certificate. This may take a minute..." msgstr "" @@ -2505,7 +2500,7 @@ msgstr "" msgid "Get the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:386 +#: lxc/network_load_balancer.go:391 msgid "Get the key as a network load balancer property" msgstr "" @@ -2517,11 +2512,11 @@ msgstr "" msgid "Get the key as a network property" msgstr "" -#: lxc/network_zone.go:214 +#: lxc/network_zone.go:215 msgid "Get the key as a network zone property" msgstr "" -#: lxc/network_zone.go:814 +#: lxc/network_zone.go:819 msgid "Get the key as a network zone record property" msgstr "" @@ -2533,7 +2528,7 @@ msgstr "" msgid "Get the key as a project property" msgstr "" -#: lxc/storage_bucket.go:380 +#: lxc/storage_bucket.go:385 msgid "Get the key as a storage bucket property" msgstr "" @@ -2573,7 +2568,7 @@ msgstr "" msgid "Get values for network forward configuration keys" msgstr "" -#: lxc/network_load_balancer.go:382 lxc/network_load_balancer.go:383 +#: lxc/network_load_balancer.go:387 lxc/network_load_balancer.go:388 msgid "Get values for network load balancer configuration keys" msgstr "" @@ -2581,11 +2576,11 @@ msgstr "" msgid "Get values for network peer configuration keys" msgstr "" -#: lxc/network_zone.go:210 lxc/network_zone.go:211 +#: lxc/network_zone.go:211 lxc/network_zone.go:212 msgid "Get values for network zone configuration keys" msgstr "" -#: lxc/network_zone.go:810 lxc/network_zone.go:811 +#: lxc/network_zone.go:815 lxc/network_zone.go:816 msgid "Get values for network zone record configuration keys" msgstr "" @@ -2597,7 +2592,7 @@ msgstr "" msgid "Get values for project configuration keys" msgstr "" -#: lxc/storage_bucket.go:376 lxc/storage_bucket.go:377 +#: lxc/storage_bucket.go:381 lxc/storage_bucket.go:382 msgid "Get values for storage bucket configuration keys" msgstr "" @@ -2737,7 +2732,7 @@ msgstr "" msgid "If the snapshot name already exists, delete and create a new one" msgstr "" -#: lxc/main.go:398 +#: lxc/main.go:400 msgid "" "If this is your first time running LXD on this machine, you should also run: " "lxd init" @@ -2894,7 +2889,7 @@ msgstr "" msgid "Instance type" msgstr "" -#: lxc/remote.go:349 +#: lxc/remote.go:350 #, c-format msgid "Invalid URL scheme \"%s\" in \"%s\"" msgstr "" @@ -2966,7 +2961,7 @@ msgstr "" msgid "Invalid new snapshot name, parent volume must be the same as source" msgstr "" -#: lxc/main.go:498 +#: lxc/main.go:502 msgid "Invalid number of arguments" msgstr "" @@ -2975,7 +2970,7 @@ msgstr "" msgid "Invalid path %s" msgstr "" -#: lxc/remote.go:338 +#: lxc/remote.go:339 #, c-format msgid "Invalid protocol: %s" msgstr "" @@ -3023,7 +3018,7 @@ msgstr "" #: lxc/list.go:597 lxc/network.go:1059 lxc/network_forward.go:155 #: lxc/network_load_balancer.go:157 lxc/operation.go:177 -#: lxc/storage_bucket.go:511 lxc/storage_volume.go:1569 lxc/warning.go:220 +#: lxc/storage_bucket.go:516 lxc/storage_volume.go:1569 lxc/warning.go:220 msgid "LOCATION" msgstr "" @@ -3031,7 +3026,7 @@ msgstr "" msgid "LXD - Command line client" msgstr "" -#: lxc/console.go:382 +#: lxc/console.go:387 msgid "LXD automatically uses either spicy or remote-viewer when present." msgstr "" @@ -3121,15 +3116,15 @@ msgstr "" msgid "List available network peers" msgstr "" -#: lxc/network_zone.go:85 +#: lxc/network_zone.go:86 msgid "List available network zone" msgstr "" -#: lxc/network_zone.go:688 lxc/network_zone.go:689 +#: lxc/network_zone.go:693 lxc/network_zone.go:694 msgid "List available network zone records" msgstr "" -#: lxc/network_zone.go:84 +#: lxc/network_zone.go:85 msgid "List available network zoneS" msgstr "" @@ -3318,11 +3313,11 @@ msgstr "" msgid "List projects" msgstr "" -#: lxc/storage_bucket.go:766 lxc/storage_bucket.go:768 +#: lxc/storage_bucket.go:771 lxc/storage_bucket.go:773 msgid "List storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:451 lxc/storage_bucket.go:453 +#: lxc/storage_bucket.go:456 lxc/storage_bucket.go:458 msgid "List storage buckets" msgstr "" @@ -3350,7 +3345,7 @@ msgid "" " U - Current disk usage" msgstr "" -#: lxc/remote.go:668 lxc/remote.go:669 +#: lxc/remote.go:669 lxc/remote.go:670 msgid "List the available remotes" msgstr "" @@ -3577,11 +3572,11 @@ msgstr "" msgid "Manage network forwards" msgstr "" -#: lxc/network_load_balancer.go:782 lxc/network_load_balancer.go:783 +#: lxc/network_load_balancer.go:787 lxc/network_load_balancer.go:788 msgid "Manage network load balancer backends" msgstr "" -#: lxc/network_load_balancer.go:947 lxc/network_load_balancer.go:948 +#: lxc/network_load_balancer.go:952 lxc/network_load_balancer.go:953 msgid "Manage network load balancer ports" msgstr "" @@ -3593,15 +3588,15 @@ msgstr "" msgid "Manage network peerings" msgstr "" -#: lxc/network_zone.go:1224 lxc/network_zone.go:1225 +#: lxc/network_zone.go:1229 lxc/network_zone.go:1230 msgid "Manage network zone record entries" msgstr "" -#: lxc/network_zone.go:631 lxc/network_zone.go:632 +#: lxc/network_zone.go:636 lxc/network_zone.go:637 msgid "Manage network zone records" msgstr "" -#: lxc/network_zone.go:27 lxc/network_zone.go:28 +#: lxc/network_zone.go:28 lxc/network_zone.go:29 msgid "Manage network zones" msgstr "" @@ -3617,11 +3612,11 @@ msgstr "" msgid "Manage projects" msgstr "" -#: lxc/storage_bucket.go:726 +#: lxc/storage_bucket.go:731 msgid "Manage storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:727 +#: lxc/storage_bucket.go:732 msgid "Manage storage bucket keys." msgstr "" @@ -3649,7 +3644,7 @@ msgid "" "\"custom\" (user created) volumes." msgstr "" -#: lxc/remote.go:33 lxc/remote.go:34 +#: lxc/remote.go:34 lxc/remote.go:35 msgid "Manage the list of remote servers" msgstr "" @@ -3730,12 +3725,12 @@ msgid "" "Minimum level for log messages (only available when using pretty format)" msgstr "" -#: lxc/storage_bucket.go:111 lxc/storage_bucket.go:211 -#: lxc/storage_bucket.go:287 lxc/storage_bucket.go:406 -#: lxc/storage_bucket.go:563 lxc/storage_bucket.go:655 -#: lxc/storage_bucket.go:797 lxc/storage_bucket.go:878 -#: lxc/storage_bucket.go:953 lxc/storage_bucket.go:1032 -#: lxc/storage_bucket.go:1155 +#: lxc/storage_bucket.go:116 lxc/storage_bucket.go:216 +#: lxc/storage_bucket.go:292 lxc/storage_bucket.go:411 +#: lxc/storage_bucket.go:568 lxc/storage_bucket.go:660 +#: lxc/storage_bucket.go:802 lxc/storage_bucket.go:883 +#: lxc/storage_bucket.go:958 lxc/storage_bucket.go:1037 +#: lxc/storage_bucket.go:1160 msgid "Missing bucket name" msgstr "" @@ -3779,8 +3774,8 @@ msgstr "" msgid "Missing instance name" msgstr "" -#: lxc/storage_bucket.go:882 lxc/storage_bucket.go:957 -#: lxc/storage_bucket.go:1036 lxc/storage_bucket.go:1159 +#: lxc/storage_bucket.go:887 lxc/storage_bucket.go:962 +#: lxc/storage_bucket.go:1041 lxc/storage_bucket.go:1164 msgid "Missing key name" msgstr "" @@ -3788,10 +3783,10 @@ msgstr "" #: lxc/network_forward.go:481 lxc/network_forward.go:627 #: lxc/network_forward.go:746 lxc/network_forward.go:823 #: lxc/network_forward.go:889 lxc/network_load_balancer.go:201 -#: lxc/network_load_balancer.go:411 lxc/network_load_balancer.go:484 -#: lxc/network_load_balancer.go:630 lxc/network_load_balancer.go:750 -#: lxc/network_load_balancer.go:826 lxc/network_load_balancer.go:890 -#: lxc/network_load_balancer.go:991 lxc/network_load_balancer.go:1053 +#: lxc/network_load_balancer.go:416 lxc/network_load_balancer.go:489 +#: lxc/network_load_balancer.go:635 lxc/network_load_balancer.go:755 +#: lxc/network_load_balancer.go:831 lxc/network_load_balancer.go:895 +#: lxc/network_load_balancer.go:996 lxc/network_load_balancer.go:1058 msgid "Missing listen address" msgstr "" @@ -3816,26 +3811,26 @@ msgstr "" #: lxc/network_forward.go:477 lxc/network_forward.go:623 #: lxc/network_forward.go:742 lxc/network_forward.go:819 #: lxc/network_forward.go:885 lxc/network_load_balancer.go:123 -#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:261 -#: lxc/network_load_balancer.go:407 lxc/network_load_balancer.go:480 -#: lxc/network_load_balancer.go:626 lxc/network_load_balancer.go:746 -#: lxc/network_load_balancer.go:822 lxc/network_load_balancer.go:886 -#: lxc/network_load_balancer.go:987 lxc/network_load_balancer.go:1049 +#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:266 +#: lxc/network_load_balancer.go:412 lxc/network_load_balancer.go:485 +#: lxc/network_load_balancer.go:631 lxc/network_load_balancer.go:751 +#: lxc/network_load_balancer.go:827 lxc/network_load_balancer.go:891 +#: lxc/network_load_balancer.go:992 lxc/network_load_balancer.go:1054 #: lxc/network_peer.go:110 lxc/network_peer.go:180 lxc/network_peer.go:237 #: lxc/network_peer.go:355 lxc/network_peer.go:426 lxc/network_peer.go:556 #: lxc/network_peer.go:665 msgid "Missing network name" msgstr "" -#: lxc/network_zone.go:178 lxc/network_zone.go:234 lxc/network_zone.go:294 -#: lxc/network_zone.go:382 lxc/network_zone.go:503 lxc/network_zone.go:606 -#: lxc/network_zone.go:712 lxc/network_zone.go:780 lxc/network_zone.go:892 -#: lxc/network_zone.go:976 lxc/network_zone.go:1197 lxc/network_zone.go:1262 -#: lxc/network_zone.go:1307 +#: lxc/network_zone.go:179 lxc/network_zone.go:235 lxc/network_zone.go:299 +#: lxc/network_zone.go:387 lxc/network_zone.go:508 lxc/network_zone.go:611 +#: lxc/network_zone.go:717 lxc/network_zone.go:785 lxc/network_zone.go:897 +#: lxc/network_zone.go:981 lxc/network_zone.go:1202 lxc/network_zone.go:1267 +#: lxc/network_zone.go:1312 msgid "Missing network zone name" msgstr "" -#: lxc/network_zone.go:833 lxc/network_zone.go:1095 +#: lxc/network_zone.go:838 lxc/network_zone.go:1100 msgid "Missing network zone record name" msgstr "" @@ -3845,13 +3840,13 @@ msgid "Missing peer name" msgstr "" #: lxc/storage.go:194 lxc/storage.go:264 lxc/storage.go:370 lxc/storage.go:440 -#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:107 -#: lxc/storage_bucket.go:207 lxc/storage_bucket.go:283 -#: lxc/storage_bucket.go:402 lxc/storage_bucket.go:477 -#: lxc/storage_bucket.go:559 lxc/storage_bucket.go:651 -#: lxc/storage_bucket.go:793 lxc/storage_bucket.go:874 -#: lxc/storage_bucket.go:949 lxc/storage_bucket.go:1028 -#: lxc/storage_bucket.go:1151 lxc/storage_volume.go:189 +#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:112 +#: lxc/storage_bucket.go:212 lxc/storage_bucket.go:288 +#: lxc/storage_bucket.go:407 lxc/storage_bucket.go:482 +#: lxc/storage_bucket.go:564 lxc/storage_bucket.go:656 +#: lxc/storage_bucket.go:798 lxc/storage_bucket.go:879 +#: lxc/storage_bucket.go:954 lxc/storage_bucket.go:1033 +#: lxc/storage_bucket.go:1156 lxc/storage_volume.go:189 #: lxc/storage_volume.go:287 lxc/storage_volume.go:583 #: lxc/storage_volume.go:660 lxc/storage_volume.go:735 #: lxc/storage_volume.go:817 lxc/storage_volume.go:919 @@ -3971,7 +3966,7 @@ msgstr "" msgid "Moving the storage volume: %s" msgstr "" -#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1097 +#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1102 msgid "Multiple ports match. Use --force to remove them all" msgstr "" @@ -3990,10 +3985,10 @@ 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:677 lxc/project.go:498 -#: lxc/remote.go:731 lxc/storage.go:638 lxc/storage_bucket.go:506 -#: lxc/storage_bucket.go:826 lxc/storage_volume.go:1561 +#: lxc/network_acl.go:147 lxc/network_peer.go:139 lxc/network_zone.go:139 +#: lxc/network_zone.go:746 lxc/profile.go:677 lxc/project.go:498 +#: lxc/remote.go:732 lxc/storage.go:638 lxc/storage_bucket.go:511 +#: lxc/storage_bucket.go:831 lxc/storage_volume.go:1561 msgid "NAME" msgstr "" @@ -4019,7 +4014,7 @@ msgstr "" #: lxc/network.go:957 lxc/operation.go:154 lxc/project.go:456 #: lxc/project.go:461 lxc/project.go:466 lxc/project.go:471 lxc/project.go:476 -#: lxc/project.go:481 lxc/remote.go:691 lxc/remote.go:696 lxc/remote.go:701 +#: lxc/project.go:481 lxc/remote.go:692 lxc/remote.go:697 lxc/remote.go:702 msgid "NO" msgstr "" @@ -4046,7 +4041,7 @@ msgstr "" msgid "Name" msgstr "" -#: lxc/remote.go:141 +#: lxc/remote.go:142 msgid "Name of the project to use for this remote:" msgstr "" @@ -4095,12 +4090,12 @@ msgstr "" msgid "Network ACL %s renamed to %s" msgstr "" -#: lxc/network_zone.go:336 +#: lxc/network_zone.go:341 #, c-format msgid "Network Zone %s created" msgstr "" -#: lxc/network_zone.go:616 +#: lxc/network_zone.go:621 #, c-format msgid "Network Zone %s deleted" msgstr "" @@ -4115,12 +4110,12 @@ msgstr "" msgid "Network forward %s deleted" msgstr "" -#: lxc/network_load_balancer.go:365 +#: lxc/network_load_balancer.go:370 #, c-format msgid "Network load balancer %s created" msgstr "" -#: lxc/network_load_balancer.go:767 +#: lxc/network_load_balancer.go:772 #, c-format msgid "Network load balancer %s deleted" msgstr "" @@ -4158,12 +4153,12 @@ msgstr "" msgid "Network usage:" msgstr "" -#: lxc/network_zone.go:934 +#: lxc/network_zone.go:939 #, c-format msgid "Network zone record %s created" msgstr "" -#: lxc/network_zone.go:1207 +#: lxc/network_zone.go:1212 #, c-format msgid "Network zone record %s deleted" msgstr "" @@ -4198,11 +4193,11 @@ msgstr "" msgid "No device found for this storage volume" msgstr "" -#: lxc/network_load_balancer.go:921 +#: lxc/network_load_balancer.go:926 msgid "No matching backend found" msgstr "" -#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1108 +#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1113 msgid "No matching port(s) found" msgstr "" @@ -4248,7 +4243,7 @@ msgstr "" msgid "Only \"custom\" volumes can be snapshotted" msgstr "" -#: lxc/remote.go:332 +#: lxc/remote.go:333 msgid "Only https URLs are supported for simplestreams" msgstr "" @@ -4273,7 +4268,7 @@ msgstr "" msgid "Optimized Storage" msgstr "" -#: lxc/main.go:96 +#: lxc/main.go:97 msgid "Override the source project" msgstr "" @@ -4319,11 +4314,11 @@ msgstr "" msgid "PROJECT" msgstr "" -#: lxc/remote.go:733 +#: lxc/remote.go:734 msgid "PROTOCOL" msgstr "" -#: lxc/image.go:1073 lxc/remote.go:735 +#: lxc/image.go:1073 lxc/remote.go:736 msgid "PUBLIC" msgstr "" @@ -4339,7 +4334,7 @@ msgstr "" msgid "Partitions:" msgstr "" -#: lxc/main.go:361 +#: lxc/main.go:363 #, c-format msgid "Password for %s: " msgstr "" @@ -4352,7 +4347,7 @@ msgstr "" msgid "Perform an incremental copy" msgstr "" -#: lxc/remote.go:182 +#: lxc/remote.go:183 msgid "Please provide an alternate server address (empty to abort):" msgstr "" @@ -4364,7 +4359,7 @@ msgstr "" msgid "Please provide cluster member name: " msgstr "" -#: lxc/remote.go:462 +#: lxc/remote.go:463 msgid "Please type 'y', 'n' or the fingerprint:" msgstr "" @@ -4386,10 +4381,10 @@ msgstr "" #: lxc/config.go:1278 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/network_load_balancer.go:695 lxc/network_peer.go:611 +#: lxc/network_zone.go:557 lxc/network_zone.go:1149 lxc/profile.go:539 +#: lxc/project.go:316 lxc/storage.go:311 lxc/storage_bucket.go:349 +#: lxc/storage_bucket.go:1098 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 "" @@ -4398,7 +4393,7 @@ msgstr "" msgid "Pretty rendering (short for --format=pretty)" msgstr "" -#: lxc/main.go:94 +#: lxc/main.go:95 msgid "Print help" msgstr "" @@ -4406,7 +4401,7 @@ msgstr "" msgid "Print the raw response" msgstr "" -#: lxc/main.go:93 +#: lxc/main.go:94 msgid "Print version number" msgstr "" @@ -4495,7 +4490,7 @@ msgstr "" msgid "Project %s renamed to %s" msgstr "" -#: lxc/remote.go:106 +#: lxc/remote.go:107 msgid "Project to use for the remote" msgstr "" @@ -4593,7 +4588,7 @@ msgid "" "pool \"default\"." msgstr "" -#: lxc/remote.go:105 +#: lxc/remote.go:106 msgid "Public image server" msgstr "" @@ -4641,7 +4636,7 @@ msgstr "" msgid "RESOURCE" msgstr "" -#: lxc/storage_bucket.go:828 +#: lxc/storage_bucket.go:833 msgid "ROLE" msgstr "" @@ -4684,45 +4679,45 @@ msgstr "" msgid "Refreshing the image: %s" msgstr "" -#: lxc/remote.go:785 +#: lxc/remote.go:786 #, c-format msgid "Remote %s already exists" msgstr "" -#: lxc/project.go:769 lxc/remote.go:776 lxc/remote.go:849 lxc/remote.go:905 -#: lxc/remote.go:945 +#: lxc/project.go:769 lxc/remote.go:777 lxc/remote.go:850 lxc/remote.go:906 +#: lxc/remote.go:946 #, c-format msgid "Remote %s doesn't exist" msgstr "" -#: lxc/remote.go:301 +#: lxc/remote.go:302 #, c-format msgid "Remote %s exists as <%s>" msgstr "" -#: lxc/remote.go:857 +#: lxc/remote.go:858 #, c-format msgid "Remote %s is global and cannot be removed" msgstr "" -#: lxc/remote.go:780 lxc/remote.go:853 lxc/remote.go:949 +#: lxc/remote.go:781 lxc/remote.go:854 lxc/remote.go:950 #, c-format msgid "Remote %s is static and cannot be modified" msgstr "" -#: lxc/remote.go:290 +#: lxc/remote.go:291 msgid "Remote address must not be empty" msgstr "" -#: lxc/remote.go:101 +#: lxc/remote.go:102 msgid "Remote admin password" msgstr "" -#: lxc/remote.go:295 +#: lxc/remote.go:296 msgid "Remote names may not contain colons" msgstr "" -#: lxc/remote.go:102 +#: lxc/remote.go:103 msgid "Remote trust token" msgstr "" @@ -4748,7 +4743,7 @@ msgstr "" msgid "Remove a member from the cluster" msgstr "" -#: lxc/network_zone.go:1285 +#: lxc/network_zone.go:1290 msgid "Remove a network zone record entry" msgstr "" @@ -4756,7 +4751,7 @@ msgstr "" msgid "Remove aliases" msgstr "" -#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1025 +#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1030 msgid "Remove all ports that match" msgstr "" @@ -4764,15 +4759,15 @@ msgstr "" msgid "Remove all rules that match" msgstr "" -#: lxc/network_load_balancer.go:862 +#: lxc/network_load_balancer.go:867 msgid "Remove backend from a load balancer" msgstr "" -#: lxc/network_load_balancer.go:861 +#: lxc/network_load_balancer.go:866 msgid "Remove backends from a load balancer" msgstr "" -#: lxc/network_zone.go:1286 +#: lxc/network_zone.go:1291 msgid "Remove entries from a network zone record" msgstr "" @@ -4796,7 +4791,7 @@ msgstr "" msgid "Remove ports from a forward" msgstr "" -#: lxc/network_load_balancer.go:1023 lxc/network_load_balancer.go:1024 +#: lxc/network_load_balancer.go:1028 lxc/network_load_balancer.go:1029 msgid "Remove ports from a load balancer" msgstr "" @@ -4804,7 +4799,7 @@ msgstr "" msgid "Remove profiles from instances" msgstr "" -#: lxc/remote.go:827 lxc/remote.go:828 +#: lxc/remote.go:828 lxc/remote.go:829 msgid "Remove remotes" msgstr "" @@ -4861,7 +4856,7 @@ msgstr "" msgid "Rename projects" msgstr "" -#: lxc/remote.go:754 lxc/remote.go:755 +#: lxc/remote.go:755 lxc/remote.go:756 msgid "Rename remotes" msgstr "" @@ -4939,7 +4934,7 @@ msgid "Restrict the certificate to one or more projects" msgstr "" #: lxc/console.go:44 -msgid "Retrieve the instance's console log" +msgid "Retrieve the container's console log" msgstr "" #: lxc/init.go:347 @@ -4955,7 +4950,7 @@ msgstr "" msgid "Revoke cluster member join token" msgstr "" -#: lxc/storage_bucket.go:851 +#: lxc/storage_bucket.go:856 msgid "Role (admin or read-only)" msgstr "" @@ -5006,7 +5001,7 @@ msgstr "" msgid "STATE" msgstr "" -#: lxc/remote.go:736 +#: lxc/remote.go:737 msgid "STATIC" msgstr "" @@ -5030,11 +5025,11 @@ msgstr "" msgid "STP" msgstr "" -#: lxc/storage_bucket.go:853 +#: lxc/storage_bucket.go:858 msgid "Secret key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:909 +#: lxc/storage_bucket.go:914 #, c-format msgid "Secret key: %s" msgstr "" @@ -5043,19 +5038,19 @@ msgstr "" msgid "Send a raw query to LXD" msgstr "" -#: lxc/remote.go:104 +#: lxc/remote.go:105 msgid "Server authentication type (tls or oidc)" msgstr "" -#: lxc/remote.go:460 +#: lxc/remote.go:461 msgid "Server certificate NACKed by user" msgstr "" -#: lxc/remote.go:599 +#: lxc/remote.go:600 msgid "Server doesn't trust us after authentication" msgstr "" -#: lxc/remote.go:103 +#: lxc/remote.go:104 msgid "Server protocol (lxd or simplestreams)" msgstr "" @@ -5154,11 +5149,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_load_balancer.go:450 +#: lxc/network_load_balancer.go:455 msgid "Set network load balancer keys" msgstr "" -#: lxc/network_load_balancer.go:451 +#: lxc/network_load_balancer.go:456 msgid "" "Set network load balancer keys\n" "\n" @@ -5180,11 +5175,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:353 +#: lxc/network_zone.go:358 msgid "Set network zone configuration keys" msgstr "" -#: lxc/network_zone.go:354 +#: lxc/network_zone.go:359 msgid "" "Set network zone configuration keys\n" "\n" @@ -5193,7 +5188,7 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:951 lxc/network_zone.go:952 +#: lxc/network_zone.go:956 lxc/network_zone.go:957 msgid "Set network zone record configuration keys" msgstr "" @@ -5223,11 +5218,11 @@ msgid "" " lxc project set [:] " msgstr "" -#: lxc/storage_bucket.go:529 +#: lxc/storage_bucket.go:534 msgid "Set storage bucket configuration keys" msgstr "" -#: lxc/storage_bucket.go:530 +#: lxc/storage_bucket.go:535 msgid "" "Set storage bucket configuration keys\n" "\n" @@ -5262,7 +5257,7 @@ msgid "" " lxc storage volume set [:] [/] " msgstr "" -#: lxc/remote.go:923 lxc/remote.go:924 +#: lxc/remote.go:924 lxc/remote.go:925 msgid "Set the URL for the remote" msgstr "" @@ -5290,7 +5285,7 @@ msgstr "" msgid "Set the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:458 +#: lxc/network_load_balancer.go:463 msgid "Set the key as a network load balancer property" msgstr "" @@ -5302,11 +5297,11 @@ msgstr "" msgid "Set the key as a network property" msgstr "" -#: lxc/network_zone.go:361 +#: lxc/network_zone.go:366 msgid "Set the key as a network zone property" msgstr "" -#: lxc/network_zone.go:957 +#: lxc/network_zone.go:962 msgid "Set the key as a network zone record property" msgstr "" @@ -5318,7 +5313,7 @@ msgstr "" msgid "Set the key as a project property" msgstr "" -#: lxc/storage_bucket.go:537 +#: lxc/storage_bucket.go:542 msgid "Set the key as a storage bucket property" msgstr "" @@ -5338,11 +5333,11 @@ msgstr "" msgid "Setup SSH SFTP listener on address:port instead of mounting" msgstr "" -#: lxc/main.go:97 +#: lxc/main.go:98 msgid "Show all debug messages" msgstr "" -#: lxc/main.go:98 +#: lxc/main.go:99 msgid "Show all information messages" msgstr "" @@ -5411,7 +5406,7 @@ msgstr "" msgid "Show instance or server information" msgstr "" -#: lxc/main.go:271 lxc/main.go:272 +#: lxc/main.go:272 lxc/main.go:273 msgid "Show less common commands" msgstr "" @@ -5443,15 +5438,15 @@ msgstr "" msgid "Show network peer configurations" msgstr "" -#: lxc/network_zone.go:155 lxc/network_zone.go:156 +#: lxc/network_zone.go:156 lxc/network_zone.go:157 msgid "Show network zone configurations" msgstr "" -#: lxc/network_zone.go:758 +#: lxc/network_zone.go:763 msgid "Show network zone record configuration" msgstr "" -#: lxc/network_zone.go:759 +#: lxc/network_zone.go:764 msgid "Show network zone record configurations" msgstr "" @@ -5463,11 +5458,11 @@ msgstr "" msgid "Show project options" msgstr "" -#: lxc/storage_bucket.go:623 lxc/storage_bucket.go:624 +#: lxc/storage_bucket.go:628 lxc/storage_bucket.go:629 msgid "Show storage bucket configurations" msgstr "" -#: lxc/storage_bucket.go:1123 lxc/storage_bucket.go:1124 +#: lxc/storage_bucket.go:1128 lxc/storage_bucket.go:1129 msgid "Show storage bucket key configurations" msgstr "" @@ -5493,7 +5488,7 @@ msgid "" "that are granted via identity provider group mappings. \n" msgstr "" -#: lxc/remote.go:630 lxc/remote.go:631 +#: lxc/remote.go:631 lxc/remote.go:632 msgid "Show the default remote" msgstr "" @@ -5617,22 +5612,22 @@ msgstr "" msgid "Stopping the instance failed: %s" msgstr "" -#: lxc/storage_bucket.go:161 +#: lxc/storage_bucket.go:166 #, c-format msgid "Storage bucket %s created" msgstr "" -#: lxc/storage_bucket.go:228 +#: lxc/storage_bucket.go:233 #, c-format msgid "Storage bucket %s deleted" msgstr "" -#: lxc/storage_bucket.go:907 +#: lxc/storage_bucket.go:912 #, c-format msgid "Storage bucket key %s added" msgstr "" -#: lxc/storage_bucket.go:973 +#: lxc/storage_bucket.go:978 #, c-format msgid "Storage bucket key %s removed" msgstr "" @@ -5705,7 +5700,7 @@ msgstr "" msgid "Switch the current project" msgstr "" -#: lxc/remote.go:883 lxc/remote.go:884 +#: lxc/remote.go:884 lxc/remote.go:885 msgid "Switch the default remote" msgstr "" @@ -5820,7 +5815,7 @@ msgstr "" msgid "The property %q does not exist on the instance snapshot %s/%s: %v" msgstr "" -#: lxc/network_load_balancer.go:424 +#: lxc/network_load_balancer.go:429 #, c-format msgid "The property %q does not exist on the load balancer %q: %v" msgstr "" @@ -5845,12 +5840,12 @@ msgstr "" msgid "The property %q does not exist on the network peer %q: %v" msgstr "" -#: lxc/network_zone.go:246 +#: lxc/network_zone.go:247 #, c-format msgid "The property %q does not exist on the network zone %q: %v" msgstr "" -#: lxc/network_zone.go:845 +#: lxc/network_zone.go:850 #, c-format msgid "The property %q does not exist on the network zone record %q: %v" msgstr "" @@ -5865,7 +5860,7 @@ msgstr "" msgid "The property %q does not exist on the project %q: %v" msgstr "" -#: lxc/storage_bucket.go:426 +#: lxc/storage_bucket.go:431 #, c-format msgid "The property %q does not exist on the storage bucket %q: %v" msgstr "" @@ -5919,7 +5914,7 @@ msgstr "" msgid "This LXD server is not available on the network" msgstr "" -#: lxc/main.go:293 +#: lxc/main.go:294 msgid "" "This client hasn't been configured to use a remote LXD server yet.\n" "As your platform can't run native Linux instances, you must connect to a " @@ -5951,11 +5946,11 @@ msgstr "" msgid "To create a new network, use: lxc network create" msgstr "" -#: lxc/console.go:210 +#: lxc/console.go:215 msgid "To detach from the console, press: +a q" msgstr "" -#: lxc/main.go:403 +#: lxc/main.go:406 msgid "" "To start your first container, try: lxc launch ubuntu:24.04\n" "Or for a virtual machine: lxc launch ubuntu:24.04 --vm" @@ -6053,7 +6048,7 @@ msgstr "" msgid "UPLOAD DATE" msgstr "" -#: lxc/cluster.go:184 lxc/remote.go:732 +#: lxc/cluster.go:184 lxc/remote.go:733 msgid "URL" msgstr "" @@ -6062,7 +6057,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:679 lxc/project.go:506 +#: lxc/network_zone.go:141 lxc/profile.go:679 lxc/project.go:506 #: lxc/storage.go:647 lxc/storage_volume.go:1564 msgid "USED BY" msgstr "" @@ -6081,7 +6076,7 @@ msgstr "" msgid "Unable to create a temporary file: %v" msgstr "" -#: lxc/remote.go:213 lxc/remote.go:247 +#: lxc/remote.go:214 lxc/remote.go:248 msgid "Unavailable remote server" msgstr "" @@ -6101,7 +6096,7 @@ msgstr "" msgid "Unknown column shorthand char '%c' in '%s'" msgstr "" -#: lxc/console.go:159 +#: lxc/console.go:164 #, c-format msgid "Unknown console type %q" msgstr "" @@ -6161,11 +6156,11 @@ msgstr "" msgid "Unset network forward keys" msgstr "" -#: lxc/network_load_balancer.go:548 +#: lxc/network_load_balancer.go:553 msgid "Unset network load balancer configuration keys" msgstr "" -#: lxc/network_load_balancer.go:549 +#: lxc/network_load_balancer.go:554 msgid "Unset network load balancer keys" msgstr "" @@ -6177,11 +6172,11 @@ msgstr "" msgid "Unset network peer keys" msgstr "" -#: lxc/network_zone.go:433 lxc/network_zone.go:434 +#: lxc/network_zone.go:438 lxc/network_zone.go:439 msgid "Unset network zone configuration keys" msgstr "" -#: lxc/network_zone.go:1027 lxc/network_zone.go:1028 +#: lxc/network_zone.go:1032 lxc/network_zone.go:1033 msgid "Unset network zone record configuration keys" msgstr "" @@ -6193,7 +6188,7 @@ msgstr "" msgid "Unset project configuration keys" msgstr "" -#: lxc/storage_bucket.go:692 lxc/storage_bucket.go:693 +#: lxc/storage_bucket.go:697 lxc/storage_bucket.go:698 msgid "Unset storage bucket configuration keys" msgstr "" @@ -6217,7 +6212,7 @@ msgstr "" msgid "Unset the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:552 +#: lxc/network_load_balancer.go:557 msgid "Unset the key as a network load balancer property" msgstr "" @@ -6229,11 +6224,11 @@ msgstr "" msgid "Unset the key as a network property" msgstr "" -#: lxc/network_zone.go:437 +#: lxc/network_zone.go:442 msgid "Unset the key as a network zone property" msgstr "" -#: lxc/network_zone.go:1031 +#: lxc/network_zone.go:1036 msgid "Unset the key as a network zone record property" msgstr "" @@ -6245,7 +6240,7 @@ msgstr "" msgid "Unset the key as a project property" msgstr "" -#: lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:701 msgid "Unset the key as a storage bucket property" msgstr "" @@ -6307,7 +6302,7 @@ msgid "" "Use storage driver optimized format (can only be restored on a similar pool)" msgstr "" -#: lxc/main.go:100 +#: lxc/main.go:101 msgid "Use with help or --help to view sub-commands" msgstr "" @@ -6404,7 +6399,7 @@ msgstr "" #: lxc/network.go:959 lxc/operation.go:156 lxc/project.go:458 #: lxc/project.go:463 lxc/project.go:468 lxc/project.go:473 lxc/project.go:478 -#: lxc/project.go:483 lxc/remote.go:693 lxc/remote.go:698 lxc/remote.go:703 +#: lxc/project.go:483 lxc/remote.go:694 lxc/remote.go:699 lxc/remote.go:704 msgid "YES" msgstr "" @@ -6439,7 +6434,7 @@ 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/network.go:909 lxc/network_acl.go:91 lxc/network_zone.go:83 #: 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 "[:]" @@ -6502,19 +6497,19 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:154 lxc/network_zone.go:463 lxc/network_zone.go:581 +#: lxc/network_zone.go:155 lxc/network_zone.go:468 lxc/network_zone.go:586 msgid "[:]" msgstr "" -#: lxc/network_zone.go:209 lxc/network_zone.go:432 +#: lxc/network_zone.go:210 lxc/network_zone.go:437 msgid "[:] " msgstr "" -#: lxc/network_zone.go:352 +#: lxc/network_zone.go:357 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:269 +#: lxc/network_zone.go:270 msgid "[:] [key=value...]" msgstr "" @@ -6760,30 +6755,30 @@ msgstr "" #: lxc/network_forward.go:169 lxc/network_forward.go:574 #: lxc/network_forward.go:715 lxc/network_load_balancer.go:171 -#: lxc/network_load_balancer.go:577 lxc/network_load_balancer.go:719 +#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:724 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:860 +#: lxc/network_load_balancer.go:865 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:796 +#: lxc/network_load_balancer.go:801 msgid "" "[:] " "[]" msgstr "" #: lxc/network_forward.go:377 lxc/network_forward.go:544 -#: lxc/network_load_balancer.go:381 lxc/network_load_balancer.go:547 +#: lxc/network_load_balancer.go:386 lxc/network_load_balancer.go:552 msgid "[:] " msgstr "" -#: lxc/network_forward.go:446 lxc/network_load_balancer.go:449 +#: lxc/network_forward.go:446 lxc/network_load_balancer.go:454 msgid "[:] =..." msgstr "" -#: lxc/network_load_balancer.go:961 +#: lxc/network_load_balancer.go:966 msgid "" "[:] " "[,...]" @@ -6795,7 +6790,7 @@ msgid "" " []" msgstr "" -#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1022 +#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1027 msgid "[:] [] []" msgstr "" @@ -6846,7 +6841,7 @@ msgid "[:]" msgstr "" #: lxc/storage.go:167 lxc/storage.go:218 lxc/storage.go:412 lxc/storage.go:759 -#: lxc/storage_bucket.go:449 +#: lxc/storage_bucket.go:454 msgid "[:]" msgstr "" @@ -6854,18 +6849,18 @@ msgstr "" msgid "[:] []" msgstr "" -#: lxc/storage_bucket.go:180 lxc/storage_bucket.go:242 -#: lxc/storage_bucket.go:622 lxc/storage_bucket.go:764 +#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:247 +#: lxc/storage_bucket.go:627 lxc/storage_bucket.go:769 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:375 lxc/storage_bucket.go:691 -#: lxc/storage_bucket.go:845 lxc/storage_bucket.go:923 -#: lxc/storage_bucket.go:987 lxc/storage_bucket.go:1122 +#: lxc/storage_bucket.go:380 lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:850 lxc/storage_bucket.go:928 +#: lxc/storage_bucket.go:992 lxc/storage_bucket.go:1127 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:528 +#: lxc/storage_bucket.go:533 msgid "[:] =..." msgstr "" @@ -7009,27 +7004,27 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:686 +#: lxc/network_zone.go:691 msgid "[:]" msgstr "" -#: lxc/network_zone.go:757 lxc/network_zone.go:1056 lxc/network_zone.go:1173 +#: lxc/network_zone.go:762 lxc/network_zone.go:1061 lxc/network_zone.go:1178 msgid "[:] " msgstr "" -#: lxc/network_zone.go:809 lxc/network_zone.go:1026 +#: lxc/network_zone.go:814 lxc/network_zone.go:1031 msgid "[:] " msgstr "" -#: lxc/network_zone.go:950 +#: lxc/network_zone.go:955 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:1238 lxc/network_zone.go:1284 +#: lxc/network_zone.go:1243 lxc/network_zone.go:1289 msgid "[:] " msgstr "" -#: lxc/network_zone.go:868 +#: lxc/network_zone.go:873 msgid "[:] [key=value...]" msgstr "" @@ -7053,7 +7048,7 @@ msgstr "" msgid "[:][] [...]" msgstr "" -#: lxc/remote.go:88 +#: lxc/remote.go:89 msgid "[] " msgstr "" @@ -7061,7 +7056,7 @@ msgstr "" msgid "[[:]]" msgstr "" -#: lxc/project.go:488 lxc/remote.go:722 +#: lxc/project.go:488 lxc/remote.go:723 msgid "current" msgstr "" @@ -7324,6 +7319,23 @@ msgid "" " Create a new OVN network called bar using baz as its uplink network" msgstr "" +#: lxc/network_load_balancer.go:239 +msgid "" +"lxc network load-balancer create n1 127.0.0.1\n" +"\n" +"lxc network load-balancer create n1 127.0.0.1 < config.yaml\n" +" Create network load-balancer for network n1 with configuration from " +"config.yaml" +msgstr "" + +#: lxc/network_zone.go:273 +msgid "" +"lxc network zone create z1\n" +"\n" +"lxc network zone create z1 < config.yaml\n" +" Create network zone z1 with configuration from config.yaml" +msgstr "" + #: lxc/operation.go:195 msgid "" "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n" @@ -7394,26 +7406,36 @@ msgid "" " Restore the snapshot." msgstr "" -#: lxc/storage_bucket.go:245 +#: lxc/storage_bucket.go:84 +msgid "" +"lxc storage bucket create p1 b01\n" +"\tCreate a new storage bucket name b01 in storage pool p1\n" +"\n" +"lxc storage bucket create p1 b01 < config.yaml\n" +"\tCreate a new storage bucket name b01 in storage pool p1 using the content " +"of config.yaml" +msgstr "" + +#: lxc/storage_bucket.go:250 msgid "" "lxc storage bucket edit [:] < bucket.yaml\n" " Update a storage bucket using the content of bucket.yaml." msgstr "" -#: lxc/storage_bucket.go:990 +#: lxc/storage_bucket.go:995 msgid "" "lxc storage bucket edit [:] < key.yaml\n" " Update a storage bucket key using the content of key.yaml." msgstr "" -#: lxc/storage_bucket.go:1125 +#: lxc/storage_bucket.go:1130 msgid "" "lxc storage bucket key show default data foo\n" " Will show the properties of a bucket key called \"foo\" for a bucket " "called \"data\" in the \"default\" pool." msgstr "" -#: lxc/storage_bucket.go:625 +#: lxc/storage_bucket.go:630 msgid "" "lxc storage bucket show default data\n" " Will show the properties of a bucket called \"data\" in the \"default\" " @@ -7432,7 +7454,7 @@ msgid "" "\t\tCreate a new custom volume using backup0.tar.gz as the source." msgstr "" -#: lxc/remote.go:459 +#: lxc/remote.go:460 msgid "n" msgstr "" @@ -7444,7 +7466,7 @@ msgstr "" msgid "no" msgstr "" -#: lxc/remote.go:452 +#: lxc/remote.go:453 msgid "ok (y/n/[fingerprint])?" msgstr "" @@ -7481,7 +7503,7 @@ msgstr "" msgid "used by" msgstr "" -#: lxc/remote.go:461 +#: lxc/remote.go:462 msgid "y" msgstr "" diff --git a/po/id.po b/po/id.po index 3fcf66cb761c..62bc19e80613 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-08-20 09:31+0100\n" +"POT-Creation-Date: 2024-08-30 09:27+0100\n" "PO-Revision-Date: 2022-03-10 15:07+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Indonesian " msgstr "" -#: lxc/remote.go:825 lxc/remote.go:882 +#: lxc/remote.go:826 lxc/remote.go:883 msgid "" msgstr "" -#: lxc/remote.go:922 +#: lxc/remote.go:923 msgid " " msgstr "" -#: lxc/remote.go:752 +#: lxc/remote.go:753 msgid " " msgstr "" @@ -556,7 +556,7 @@ msgstr "" msgid "ARCHITECTURE" msgstr "" -#: lxc/remote.go:734 +#: lxc/remote.go:735 msgid "AUTH TYPE" msgstr "" @@ -564,15 +564,15 @@ msgstr "" msgid "AUTHENTICATION METHOD" msgstr "" -#: lxc/remote.go:100 +#: lxc/remote.go:101 msgid "Accept certificate" msgstr "" -#: lxc/storage_bucket.go:852 +#: lxc/storage_bucket.go:857 msgid "Access key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:908 +#: lxc/storage_bucket.go:913 #, c-format msgid "Access key: %s" msgstr "" @@ -606,19 +606,19 @@ msgstr "" msgid "Add a group to an identity provider group" msgstr "" -#: lxc/network_zone.go:1239 +#: lxc/network_zone.go:1244 msgid "Add a network zone record entry" msgstr "" -#: lxc/network_load_balancer.go:798 +#: lxc/network_load_balancer.go:803 msgid "Add backend to a load balancer" msgstr "" -#: lxc/network_load_balancer.go:797 +#: lxc/network_load_balancer.go:802 msgid "Add backends to a load balancer" msgstr "" -#: lxc/network_zone.go:1240 +#: lxc/network_zone.go:1245 msgid "Add entries to a network zone record" msgstr "" @@ -634,11 +634,11 @@ msgstr "" msgid "Add new aliases" msgstr "" -#: lxc/remote.go:89 +#: lxc/remote.go:90 msgid "Add new remote servers" msgstr "" -#: lxc/remote.go:90 +#: lxc/remote.go:91 msgid "" "Add new remote servers\n" "\n" @@ -679,7 +679,7 @@ msgstr "" msgid "Add ports to a forward" msgstr "" -#: lxc/network_load_balancer.go:962 lxc/network_load_balancer.go:963 +#: lxc/network_load_balancer.go:967 lxc/network_load_balancer.go:968 msgid "Add ports to a load balancer" msgstr "" @@ -700,17 +700,17 @@ msgstr "" msgid "Address: %s" msgstr "" -#: lxc/storage_bucket.go:164 +#: lxc/storage_bucket.go:169 #, c-format msgid "Admin access key: %s" msgstr "" -#: lxc/remote.go:566 +#: lxc/remote.go:567 #, c-format msgid "Admin password (or token) for %s:" msgstr "" -#: lxc/storage_bucket.go:165 +#: lxc/storage_bucket.go:170 #, c-format msgid "Admin secret key: %s" msgstr "" @@ -742,7 +742,7 @@ msgstr "" msgid "All projects" msgstr "" -#: lxc/remote.go:181 +#: lxc/remote.go:182 msgid "All server addresses are unavailable" msgstr "" @@ -765,7 +765,7 @@ msgstr "" msgid "Are you sure you want to %s cluster member %q? (yes/no) [default=no]: " msgstr "" -#: lxc/console.go:383 +#: lxc/console.go:388 msgid "As neither could be found, the raw SPICE socket can be found at:" msgstr "" @@ -813,7 +813,7 @@ msgid "" "as well as retrieve past log entries from it." msgstr "" -#: lxc/remote.go:548 +#: lxc/remote.go:549 #, c-format msgid "Authentication type '%s' not supported by server" msgstr "" @@ -832,11 +832,11 @@ msgstr "" msgid "Auto update: %s" msgstr "" -#: lxc/network_forward.go:240 lxc/network_load_balancer.go:242 +#: lxc/network_forward.go:240 lxc/network_load_balancer.go:247 msgid "Auto-allocate an IPv4 or IPv6 listen address. One of 'ipv4', 'ipv6'." msgstr "" -#: lxc/remote.go:136 +#: lxc/remote.go:137 msgid "Available projects:" msgstr "" @@ -868,8 +868,8 @@ msgid "Bad device override syntax, expecting ,=: %s" msgstr "" #: lxc/network.go:333 lxc/network_acl.go:382 lxc/network_forward.go:293 -#: lxc/network_load_balancer.go:296 lxc/network_peer.go:280 -#: lxc/network_zone.go:324 lxc/network_zone.go:922 lxc/storage_bucket.go:136 +#: lxc/network_load_balancer.go:301 lxc/network_peer.go:280 +#: lxc/network_zone.go:329 lxc/network_zone.go:927 lxc/storage_bucket.go:141 #, c-format msgid "Bad key/value pair: %s" msgstr "" @@ -991,7 +991,7 @@ msgstr "" msgid "Can't read from stdin: %w" msgstr "" -#: lxc/remote.go:861 +#: lxc/remote.go:862 msgid "Can't remove the default remote" msgstr "" @@ -1057,15 +1057,14 @@ msgstr "" msgid "Certificate add token for %s deleted" msgstr "" -#: lxc/remote.go:218 -#, c-format -msgid "" -"Certificate fingerprint mismatch between certificate token and server %q" +#: lxc/remote.go:452 +msgid "Certificate fingerprint" msgstr "" -#: lxc/remote.go:451 +#: lxc/remote.go:219 #, c-format -msgid "Certificate fingerprint: %s" +msgid "" +"Certificate fingerprint mismatch between certificate token and server %q" msgstr "" #: lxc/network.go:893 @@ -1077,7 +1076,7 @@ msgstr "" msgid "Client %s certificate add token:" msgstr "" -#: lxc/remote.go:603 +#: lxc/remote.go:604 msgid "Client certificate now trusted by server:" msgstr "" @@ -1139,18 +1138,18 @@ msgstr "" #: lxc/network_forward.go:456 lxc/network_forward.go:579 #: lxc/network_forward.go:721 lxc/network_forward.go:798 #: lxc/network_forward.go:864 lxc/network_load_balancer.go:176 -#: lxc/network_load_balancer.go:241 lxc/network_load_balancer.go:459 -#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:725 -#: lxc/network_load_balancer.go:801 lxc/network_load_balancer.go:865 -#: lxc/network_load_balancer.go:966 lxc/network_load_balancer.go:1028 +#: lxc/network_load_balancer.go:246 lxc/network_load_balancer.go:464 +#: lxc/network_load_balancer.go:587 lxc/network_load_balancer.go:730 +#: lxc/network_load_balancer.go:806 lxc/network_load_balancer.go:870 +#: lxc/network_load_balancer.go:971 lxc/network_load_balancer.go:1033 #: lxc/storage.go:99 lxc/storage.go:347 lxc/storage.go:418 lxc/storage.go:671 -#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:85 -#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:248 -#: lxc/storage_bucket.go:379 lxc/storage_bucket.go:536 -#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:695 -#: lxc/storage_bucket.go:770 lxc/storage_bucket.go:850 -#: lxc/storage_bucket.go:928 lxc/storage_bucket.go:993 -#: lxc/storage_bucket.go:1129 lxc/storage_volume.go:358 +#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:90 +#: lxc/storage_bucket.go:190 lxc/storage_bucket.go:253 +#: lxc/storage_bucket.go:384 lxc/storage_bucket.go:541 +#: lxc/storage_bucket.go:634 lxc/storage_bucket.go:700 +#: lxc/storage_bucket.go:775 lxc/storage_bucket.go:855 +#: lxc/storage_bucket.go:933 lxc/storage_bucket.go:998 +#: lxc/storage_bucket.go:1134 lxc/storage_volume.go:358 #: lxc/storage_volume.go:560 lxc/storage_volume.go:639 #: lxc/storage_volume.go:883 lxc/storage_volume.go:1097 #: lxc/storage_volume.go:1210 lxc/storage_volume.go:1678 @@ -1178,11 +1177,11 @@ msgstr "" msgid "Columns" msgstr "" -#: lxc/main.go:81 +#: lxc/main.go:82 msgid "Command line client for LXD" msgstr "" -#: lxc/main.go:82 +#: lxc/main.go:83 msgid "" "Command line client for LXD\n" "\n" @@ -1214,19 +1213,15 @@ msgstr "" #: lxc/config.go:347 lxc/config.go:1277 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/network_load_balancer.go:694 lxc/network_peer.go:610 +#: lxc/network_zone.go:556 lxc/network_zone.go:1148 lxc/profile.go:538 +#: lxc/project.go:315 lxc/storage.go:310 lxc/storage_bucket.go:348 +#: lxc/storage_bucket.go:1097 lxc/storage_volume.go:1016 #: lxc/storage_volume.go:1048 #, c-format msgid "Config parsing error: %s" msgstr "" -#: lxc/console.go:140 -msgid "Console log:" -msgstr "" - #: lxc/storage_volume.go:561 msgid "Content type, block or filesystem" msgstr "" @@ -1329,12 +1324,12 @@ msgstr "" msgid "Cores:" msgstr "" -#: lxc/remote.go:486 +#: lxc/remote.go:487 #, c-format msgid "Could not close server cert file %q: %w" msgstr "" -#: lxc/remote.go:224 lxc/remote.go:470 +#: lxc/remote.go:225 lxc/remote.go:471 msgid "Could not create server cert dir" msgstr "" @@ -1373,12 +1368,12 @@ msgstr "" msgid "Could not write new remote certificate for remote '%s' with error: %v" msgstr "" -#: lxc/remote.go:481 +#: lxc/remote.go:482 #, c-format msgid "Could not write server cert file %q: %w" msgstr "" -#: lxc/network_zone.go:1327 +#: lxc/network_zone.go:1332 msgid "Couldn't find a matching entry" msgstr "" @@ -1430,7 +1425,7 @@ msgstr "" msgid "Create instances from images" msgstr "" -#: lxc/storage_bucket.go:846 lxc/storage_bucket.go:847 +#: lxc/storage_bucket.go:851 lxc/storage_bucket.go:852 msgid "Create key for a storage bucket" msgstr "" @@ -1462,11 +1457,11 @@ msgstr "" msgid "Create new network peering" msgstr "" -#: lxc/network_zone.go:869 lxc/network_zone.go:870 +#: lxc/network_zone.go:874 lxc/network_zone.go:875 msgid "Create new network zone record" msgstr "" -#: lxc/network_zone.go:270 lxc/network_zone.go:271 +#: lxc/network_zone.go:271 lxc/network_zone.go:272 msgid "Create new network zones" msgstr "" @@ -1517,9 +1512,9 @@ msgstr "" #: 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/network_zone.go:140 lxc/network_zone.go:747 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_bucket.go:512 lxc/storage_bucket.go:832 #: lxc/storage_volume.go:1562 msgid "DESCRIPTION" msgstr "" @@ -1584,7 +1579,7 @@ msgstr "" msgid "Delete instances and snapshots" msgstr "" -#: lxc/storage_bucket.go:924 lxc/storage_bucket.go:925 +#: lxc/storage_bucket.go:929 lxc/storage_bucket.go:930 msgid "Delete key from a storage bucket" msgstr "" @@ -1596,7 +1591,7 @@ msgstr "" msgid "Delete network forwards" msgstr "" -#: lxc/network_load_balancer.go:721 lxc/network_load_balancer.go:722 +#: lxc/network_load_balancer.go:726 lxc/network_load_balancer.go:727 msgid "Delete network load balancers" msgstr "" @@ -1604,11 +1599,11 @@ msgstr "" msgid "Delete network peerings" msgstr "" -#: lxc/network_zone.go:1175 lxc/network_zone.go:1176 +#: lxc/network_zone.go:1180 lxc/network_zone.go:1181 msgid "Delete network zone record" msgstr "" -#: lxc/network_zone.go:583 lxc/network_zone.go:584 +#: lxc/network_zone.go:588 lxc/network_zone.go:589 msgid "Delete network zones" msgstr "" @@ -1624,7 +1619,7 @@ msgstr "" msgid "Delete projects" msgstr "" -#: lxc/storage_bucket.go:182 lxc/storage_bucket.go:183 +#: lxc/storage_bucket.go:187 lxc/storage_bucket.go:188 msgid "Delete storage buckets" msgstr "" @@ -1680,7 +1675,7 @@ msgstr "" #: 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/info.go:32 lxc/init.go:43 lxc/launch.go:24 lxc/list.go:48 lxc/main.go:83 #: 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 @@ -1699,22 +1694,22 @@ msgstr "" #: 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_load_balancer.go:238 lxc/network_load_balancer.go:388 +#: lxc/network_load_balancer.go:456 lxc/network_load_balancer.go:554 +#: lxc/network_load_balancer.go:584 lxc/network_load_balancer.go:727 +#: lxc/network_load_balancer.go:788 lxc/network_load_balancer.go:803 +#: lxc/network_load_balancer.go:867 lxc/network_load_balancer.go:953 +#: lxc/network_load_balancer.go:968 lxc/network_load_balancer.go:1029 #: 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/network_zone.go:29 lxc/network_zone.go:86 lxc/network_zone.go:157 +#: lxc/network_zone.go:212 lxc/network_zone.go:272 lxc/network_zone.go:359 +#: lxc/network_zone.go:439 lxc/network_zone.go:470 lxc/network_zone.go:589 +#: lxc/network_zone.go:637 lxc/network_zone.go:694 lxc/network_zone.go:764 +#: lxc/network_zone.go:816 lxc/network_zone.go:875 lxc/network_zone.go:957 +#: lxc/network_zone.go:1033 lxc/network_zone.go:1063 lxc/network_zone.go:1181 +#: lxc/network_zone.go:1230 lxc/network_zone.go:1245 lxc/network_zone.go:1291 #: 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 @@ -1723,19 +1718,19 @@ msgstr "" #: 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:631 lxc/remote.go:669 lxc/remote.go:755 lxc/remote.go:828 -#: lxc/remote.go:884 lxc/remote.go:924 lxc/rename.go:21 lxc/restore.go:24 +#: lxc/query.go:34 lxc/rebuild.go:27 lxc/remote.go:35 lxc/remote.go:91 +#: lxc/remote.go:632 lxc/remote.go:670 lxc/remote.go:756 lxc/remote.go:829 +#: lxc/remote.go:885 lxc/remote.go:925 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_bucket.go:29 lxc/storage_bucket.go:83 lxc/storage_bucket.go:188 +#: lxc/storage_bucket.go:249 lxc/storage_bucket.go:382 +#: lxc/storage_bucket.go:458 lxc/storage_bucket.go:535 +#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:698 +#: lxc/storage_bucket.go:732 lxc/storage_bucket.go:773 +#: lxc/storage_bucket.go:852 lxc/storage_bucket.go:930 +#: lxc/storage_bucket.go:994 lxc/storage_bucket.go:1129 #: 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 @@ -1871,7 +1866,7 @@ msgstr "" msgid "Don't require user confirmation for using --force" msgstr "" -#: lxc/main.go:99 +#: lxc/main.go:100 msgid "Don't show progress information" msgstr "" @@ -1884,7 +1879,7 @@ msgstr "" msgid "Driver: %v (%v)" msgstr "" -#: lxc/network_zone.go:743 +#: lxc/network_zone.go:748 msgid "ENTRIES" msgstr "" @@ -1962,7 +1957,7 @@ msgstr "" msgid "Edit network forward configurations as YAML" msgstr "" -#: lxc/network_load_balancer.go:578 lxc/network_load_balancer.go:579 +#: lxc/network_load_balancer.go:583 lxc/network_load_balancer.go:584 msgid "Edit network load balancer configurations as YAML" msgstr "" @@ -1970,11 +1965,11 @@ msgstr "" msgid "Edit network peer configurations as YAML" msgstr "" -#: lxc/network_zone.go:464 lxc/network_zone.go:465 +#: lxc/network_zone.go:469 lxc/network_zone.go:470 msgid "Edit network zone configurations as YAML" msgstr "" -#: lxc/network_zone.go:1057 lxc/network_zone.go:1058 +#: lxc/network_zone.go:1062 lxc/network_zone.go:1063 msgid "Edit network zone record configurations as YAML" msgstr "" @@ -1986,11 +1981,11 @@ msgstr "" msgid "Edit project configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:243 lxc/storage_bucket.go:244 +#: lxc/storage_bucket.go:248 lxc/storage_bucket.go:249 msgid "Edit storage bucket configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:988 lxc/storage_bucket.go:989 +#: lxc/storage_bucket.go:993 lxc/storage_bucket.go:994 msgid "Edit storage bucket key as YAML" msgstr "" @@ -2031,7 +2026,7 @@ msgid "" " for the address if not yet set." msgstr "" -#: lxc/network_zone.go:1242 +#: lxc/network_zone.go:1247 msgid "Entry TTL" msgstr "" @@ -2060,9 +2055,9 @@ msgstr "" #: lxc/cluster.go:414 lxc/config.go:624 lxc/config.go:656 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/network_load_balancer.go:527 lxc/network_peer.go:463 +#: lxc/network_zone.go:414 lxc/network_zone.go:1008 lxc/profile.go:876 +#: lxc/project.go:634 lxc/storage.go:727 lxc/storage_bucket.go:602 #: lxc/storage_volume.go:1947 lxc/storage_volume.go:1985 #, c-format msgid "Error setting properties: %v" @@ -2074,10 +2069,10 @@ 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/network_forward.go:513 lxc/network_load_balancer.go:521 +#: lxc/network_peer.go:457 lxc/network_zone.go:408 lxc/network_zone.go:1002 #: lxc/profile.go:870 lxc/project.go:628 lxc/storage.go:721 -#: lxc/storage_bucket.go:591 lxc/storage_volume.go:1941 +#: lxc/storage_bucket.go:596 lxc/storage_volume.go:1941 #: lxc/storage_volume.go:1979 #, c-format msgid "Error unsetting property: %v" @@ -2263,7 +2258,7 @@ msgstr "" msgid "Failed parsing SSH host key: %w" msgstr "" -#: lxc/console.go:361 +#: lxc/console.go:366 #, c-format msgid "Failed starting command: %w" msgstr "" @@ -2278,11 +2273,11 @@ msgstr "" msgid "Failed to accept incoming connection: %w" msgstr "" -#: lxc/remote.go:190 +#: lxc/remote.go:191 msgid "Failed to add remote" msgstr "" -#: lxc/remote.go:241 +#: lxc/remote.go:242 #, c-format msgid "Failed to close server cert file %q: %w" msgstr "" @@ -2292,7 +2287,7 @@ msgstr "" msgid "Failed to connect to cluster member: %w" msgstr "" -#: lxc/remote.go:231 +#: lxc/remote.go:232 #, c-format msgid "Failed to create %q: %w" msgstr "" @@ -2302,12 +2297,12 @@ msgstr "" msgid "Failed to create alias %s: %w" msgstr "" -#: lxc/remote.go:256 +#: lxc/remote.go:257 #, c-format msgid "Failed to create certificate: %w" msgstr "" -#: lxc/remote.go:263 +#: lxc/remote.go:264 #, c-format msgid "Failed to find project: %w" msgstr "" @@ -2332,7 +2327,7 @@ msgstr "" msgid "Failed to walk path for %s: %s" msgstr "" -#: lxc/remote.go:236 +#: lxc/remote.go:237 #, c-format msgid "Failed to write server cert file %q: %w" msgstr "" @@ -2341,7 +2336,7 @@ msgstr "" msgid "Fast mode (same as --columns=nsacPt)" msgstr "" -#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:115 +#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:116 #: lxc/operation.go:136 msgid "Filtering isn't supported yet" msgstr "" @@ -2379,7 +2374,7 @@ msgstr "" msgid "Force the removal of running instances" msgstr "" -#: lxc/main.go:95 +#: lxc/main.go:96 msgid "Force using the local unix socket" msgstr "" @@ -2413,10 +2408,10 @@ msgstr "" #: 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/network_peer.go:84 lxc/network_zone.go:89 lxc/network_zone.go:697 #: lxc/operation.go:108 lxc/profile.go:637 lxc/project.go:412 -#: lxc/project.go:804 lxc/remote.go:673 lxc/storage.go:588 -#: lxc/storage_bucket.go:454 lxc/storage_bucket.go:769 +#: lxc/project.go:804 lxc/remote.go:674 lxc/storage.go:588 +#: lxc/storage_bucket.go:459 lxc/storage_bucket.go:774 #: lxc/storage_volume.go:1446 lxc/warning.go:93 msgid "Format (csv|json|table|yaml|compact)" msgstr "" @@ -2453,7 +2448,7 @@ msgstr "" msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)" msgstr "" -#: lxc/remote.go:737 +#: lxc/remote.go:738 msgid "GLOBAL" msgstr "" @@ -2473,7 +2468,7 @@ msgstr "" msgid "Generate manpages for all commands" msgstr "" -#: lxc/remote.go:159 lxc/remote.go:397 +#: lxc/remote.go:160 lxc/remote.go:398 msgid "Generating a client certificate. This may take a minute..." msgstr "" @@ -2505,7 +2500,7 @@ msgstr "" msgid "Get the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:386 +#: lxc/network_load_balancer.go:391 msgid "Get the key as a network load balancer property" msgstr "" @@ -2517,11 +2512,11 @@ msgstr "" msgid "Get the key as a network property" msgstr "" -#: lxc/network_zone.go:214 +#: lxc/network_zone.go:215 msgid "Get the key as a network zone property" msgstr "" -#: lxc/network_zone.go:814 +#: lxc/network_zone.go:819 msgid "Get the key as a network zone record property" msgstr "" @@ -2533,7 +2528,7 @@ msgstr "" msgid "Get the key as a project property" msgstr "" -#: lxc/storage_bucket.go:380 +#: lxc/storage_bucket.go:385 msgid "Get the key as a storage bucket property" msgstr "" @@ -2573,7 +2568,7 @@ msgstr "" msgid "Get values for network forward configuration keys" msgstr "" -#: lxc/network_load_balancer.go:382 lxc/network_load_balancer.go:383 +#: lxc/network_load_balancer.go:387 lxc/network_load_balancer.go:388 msgid "Get values for network load balancer configuration keys" msgstr "" @@ -2581,11 +2576,11 @@ msgstr "" msgid "Get values for network peer configuration keys" msgstr "" -#: lxc/network_zone.go:210 lxc/network_zone.go:211 +#: lxc/network_zone.go:211 lxc/network_zone.go:212 msgid "Get values for network zone configuration keys" msgstr "" -#: lxc/network_zone.go:810 lxc/network_zone.go:811 +#: lxc/network_zone.go:815 lxc/network_zone.go:816 msgid "Get values for network zone record configuration keys" msgstr "" @@ -2597,7 +2592,7 @@ msgstr "" msgid "Get values for project configuration keys" msgstr "" -#: lxc/storage_bucket.go:376 lxc/storage_bucket.go:377 +#: lxc/storage_bucket.go:381 lxc/storage_bucket.go:382 msgid "Get values for storage bucket configuration keys" msgstr "" @@ -2737,7 +2732,7 @@ msgstr "" msgid "If the snapshot name already exists, delete and create a new one" msgstr "" -#: lxc/main.go:398 +#: lxc/main.go:400 msgid "" "If this is your first time running LXD on this machine, you should also run: " "lxd init" @@ -2894,7 +2889,7 @@ msgstr "" msgid "Instance type" msgstr "" -#: lxc/remote.go:349 +#: lxc/remote.go:350 #, c-format msgid "Invalid URL scheme \"%s\" in \"%s\"" msgstr "" @@ -2966,7 +2961,7 @@ msgstr "" msgid "Invalid new snapshot name, parent volume must be the same as source" msgstr "" -#: lxc/main.go:498 +#: lxc/main.go:502 msgid "Invalid number of arguments" msgstr "" @@ -2975,7 +2970,7 @@ msgstr "" msgid "Invalid path %s" msgstr "" -#: lxc/remote.go:338 +#: lxc/remote.go:339 #, c-format msgid "Invalid protocol: %s" msgstr "" @@ -3023,7 +3018,7 @@ msgstr "" #: lxc/list.go:597 lxc/network.go:1059 lxc/network_forward.go:155 #: lxc/network_load_balancer.go:157 lxc/operation.go:177 -#: lxc/storage_bucket.go:511 lxc/storage_volume.go:1569 lxc/warning.go:220 +#: lxc/storage_bucket.go:516 lxc/storage_volume.go:1569 lxc/warning.go:220 msgid "LOCATION" msgstr "" @@ -3031,7 +3026,7 @@ msgstr "" msgid "LXD - Command line client" msgstr "" -#: lxc/console.go:382 +#: lxc/console.go:387 msgid "LXD automatically uses either spicy or remote-viewer when present." msgstr "" @@ -3121,15 +3116,15 @@ msgstr "" msgid "List available network peers" msgstr "" -#: lxc/network_zone.go:85 +#: lxc/network_zone.go:86 msgid "List available network zone" msgstr "" -#: lxc/network_zone.go:688 lxc/network_zone.go:689 +#: lxc/network_zone.go:693 lxc/network_zone.go:694 msgid "List available network zone records" msgstr "" -#: lxc/network_zone.go:84 +#: lxc/network_zone.go:85 msgid "List available network zoneS" msgstr "" @@ -3318,11 +3313,11 @@ msgstr "" msgid "List projects" msgstr "" -#: lxc/storage_bucket.go:766 lxc/storage_bucket.go:768 +#: lxc/storage_bucket.go:771 lxc/storage_bucket.go:773 msgid "List storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:451 lxc/storage_bucket.go:453 +#: lxc/storage_bucket.go:456 lxc/storage_bucket.go:458 msgid "List storage buckets" msgstr "" @@ -3350,7 +3345,7 @@ msgid "" " U - Current disk usage" msgstr "" -#: lxc/remote.go:668 lxc/remote.go:669 +#: lxc/remote.go:669 lxc/remote.go:670 msgid "List the available remotes" msgstr "" @@ -3577,11 +3572,11 @@ msgstr "" msgid "Manage network forwards" msgstr "" -#: lxc/network_load_balancer.go:782 lxc/network_load_balancer.go:783 +#: lxc/network_load_balancer.go:787 lxc/network_load_balancer.go:788 msgid "Manage network load balancer backends" msgstr "" -#: lxc/network_load_balancer.go:947 lxc/network_load_balancer.go:948 +#: lxc/network_load_balancer.go:952 lxc/network_load_balancer.go:953 msgid "Manage network load balancer ports" msgstr "" @@ -3593,15 +3588,15 @@ msgstr "" msgid "Manage network peerings" msgstr "" -#: lxc/network_zone.go:1224 lxc/network_zone.go:1225 +#: lxc/network_zone.go:1229 lxc/network_zone.go:1230 msgid "Manage network zone record entries" msgstr "" -#: lxc/network_zone.go:631 lxc/network_zone.go:632 +#: lxc/network_zone.go:636 lxc/network_zone.go:637 msgid "Manage network zone records" msgstr "" -#: lxc/network_zone.go:27 lxc/network_zone.go:28 +#: lxc/network_zone.go:28 lxc/network_zone.go:29 msgid "Manage network zones" msgstr "" @@ -3617,11 +3612,11 @@ msgstr "" msgid "Manage projects" msgstr "" -#: lxc/storage_bucket.go:726 +#: lxc/storage_bucket.go:731 msgid "Manage storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:727 +#: lxc/storage_bucket.go:732 msgid "Manage storage bucket keys." msgstr "" @@ -3649,7 +3644,7 @@ msgid "" "\"custom\" (user created) volumes." msgstr "" -#: lxc/remote.go:33 lxc/remote.go:34 +#: lxc/remote.go:34 lxc/remote.go:35 msgid "Manage the list of remote servers" msgstr "" @@ -3730,12 +3725,12 @@ msgid "" "Minimum level for log messages (only available when using pretty format)" msgstr "" -#: lxc/storage_bucket.go:111 lxc/storage_bucket.go:211 -#: lxc/storage_bucket.go:287 lxc/storage_bucket.go:406 -#: lxc/storage_bucket.go:563 lxc/storage_bucket.go:655 -#: lxc/storage_bucket.go:797 lxc/storage_bucket.go:878 -#: lxc/storage_bucket.go:953 lxc/storage_bucket.go:1032 -#: lxc/storage_bucket.go:1155 +#: lxc/storage_bucket.go:116 lxc/storage_bucket.go:216 +#: lxc/storage_bucket.go:292 lxc/storage_bucket.go:411 +#: lxc/storage_bucket.go:568 lxc/storage_bucket.go:660 +#: lxc/storage_bucket.go:802 lxc/storage_bucket.go:883 +#: lxc/storage_bucket.go:958 lxc/storage_bucket.go:1037 +#: lxc/storage_bucket.go:1160 msgid "Missing bucket name" msgstr "" @@ -3779,8 +3774,8 @@ msgstr "" msgid "Missing instance name" msgstr "" -#: lxc/storage_bucket.go:882 lxc/storage_bucket.go:957 -#: lxc/storage_bucket.go:1036 lxc/storage_bucket.go:1159 +#: lxc/storage_bucket.go:887 lxc/storage_bucket.go:962 +#: lxc/storage_bucket.go:1041 lxc/storage_bucket.go:1164 msgid "Missing key name" msgstr "" @@ -3788,10 +3783,10 @@ msgstr "" #: lxc/network_forward.go:481 lxc/network_forward.go:627 #: lxc/network_forward.go:746 lxc/network_forward.go:823 #: lxc/network_forward.go:889 lxc/network_load_balancer.go:201 -#: lxc/network_load_balancer.go:411 lxc/network_load_balancer.go:484 -#: lxc/network_load_balancer.go:630 lxc/network_load_balancer.go:750 -#: lxc/network_load_balancer.go:826 lxc/network_load_balancer.go:890 -#: lxc/network_load_balancer.go:991 lxc/network_load_balancer.go:1053 +#: lxc/network_load_balancer.go:416 lxc/network_load_balancer.go:489 +#: lxc/network_load_balancer.go:635 lxc/network_load_balancer.go:755 +#: lxc/network_load_balancer.go:831 lxc/network_load_balancer.go:895 +#: lxc/network_load_balancer.go:996 lxc/network_load_balancer.go:1058 msgid "Missing listen address" msgstr "" @@ -3816,26 +3811,26 @@ msgstr "" #: lxc/network_forward.go:477 lxc/network_forward.go:623 #: lxc/network_forward.go:742 lxc/network_forward.go:819 #: lxc/network_forward.go:885 lxc/network_load_balancer.go:123 -#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:261 -#: lxc/network_load_balancer.go:407 lxc/network_load_balancer.go:480 -#: lxc/network_load_balancer.go:626 lxc/network_load_balancer.go:746 -#: lxc/network_load_balancer.go:822 lxc/network_load_balancer.go:886 -#: lxc/network_load_balancer.go:987 lxc/network_load_balancer.go:1049 +#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:266 +#: lxc/network_load_balancer.go:412 lxc/network_load_balancer.go:485 +#: lxc/network_load_balancer.go:631 lxc/network_load_balancer.go:751 +#: lxc/network_load_balancer.go:827 lxc/network_load_balancer.go:891 +#: lxc/network_load_balancer.go:992 lxc/network_load_balancer.go:1054 #: lxc/network_peer.go:110 lxc/network_peer.go:180 lxc/network_peer.go:237 #: lxc/network_peer.go:355 lxc/network_peer.go:426 lxc/network_peer.go:556 #: lxc/network_peer.go:665 msgid "Missing network name" msgstr "" -#: lxc/network_zone.go:178 lxc/network_zone.go:234 lxc/network_zone.go:294 -#: lxc/network_zone.go:382 lxc/network_zone.go:503 lxc/network_zone.go:606 -#: lxc/network_zone.go:712 lxc/network_zone.go:780 lxc/network_zone.go:892 -#: lxc/network_zone.go:976 lxc/network_zone.go:1197 lxc/network_zone.go:1262 -#: lxc/network_zone.go:1307 +#: lxc/network_zone.go:179 lxc/network_zone.go:235 lxc/network_zone.go:299 +#: lxc/network_zone.go:387 lxc/network_zone.go:508 lxc/network_zone.go:611 +#: lxc/network_zone.go:717 lxc/network_zone.go:785 lxc/network_zone.go:897 +#: lxc/network_zone.go:981 lxc/network_zone.go:1202 lxc/network_zone.go:1267 +#: lxc/network_zone.go:1312 msgid "Missing network zone name" msgstr "" -#: lxc/network_zone.go:833 lxc/network_zone.go:1095 +#: lxc/network_zone.go:838 lxc/network_zone.go:1100 msgid "Missing network zone record name" msgstr "" @@ -3845,13 +3840,13 @@ msgid "Missing peer name" msgstr "" #: lxc/storage.go:194 lxc/storage.go:264 lxc/storage.go:370 lxc/storage.go:440 -#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:107 -#: lxc/storage_bucket.go:207 lxc/storage_bucket.go:283 -#: lxc/storage_bucket.go:402 lxc/storage_bucket.go:477 -#: lxc/storage_bucket.go:559 lxc/storage_bucket.go:651 -#: lxc/storage_bucket.go:793 lxc/storage_bucket.go:874 -#: lxc/storage_bucket.go:949 lxc/storage_bucket.go:1028 -#: lxc/storage_bucket.go:1151 lxc/storage_volume.go:189 +#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:112 +#: lxc/storage_bucket.go:212 lxc/storage_bucket.go:288 +#: lxc/storage_bucket.go:407 lxc/storage_bucket.go:482 +#: lxc/storage_bucket.go:564 lxc/storage_bucket.go:656 +#: lxc/storage_bucket.go:798 lxc/storage_bucket.go:879 +#: lxc/storage_bucket.go:954 lxc/storage_bucket.go:1033 +#: lxc/storage_bucket.go:1156 lxc/storage_volume.go:189 #: lxc/storage_volume.go:287 lxc/storage_volume.go:583 #: lxc/storage_volume.go:660 lxc/storage_volume.go:735 #: lxc/storage_volume.go:817 lxc/storage_volume.go:919 @@ -3971,7 +3966,7 @@ msgstr "" msgid "Moving the storage volume: %s" msgstr "" -#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1097 +#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1102 msgid "Multiple ports match. Use --force to remove them all" msgstr "" @@ -3990,10 +3985,10 @@ 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:677 lxc/project.go:498 -#: lxc/remote.go:731 lxc/storage.go:638 lxc/storage_bucket.go:506 -#: lxc/storage_bucket.go:826 lxc/storage_volume.go:1561 +#: lxc/network_acl.go:147 lxc/network_peer.go:139 lxc/network_zone.go:139 +#: lxc/network_zone.go:746 lxc/profile.go:677 lxc/project.go:498 +#: lxc/remote.go:732 lxc/storage.go:638 lxc/storage_bucket.go:511 +#: lxc/storage_bucket.go:831 lxc/storage_volume.go:1561 msgid "NAME" msgstr "" @@ -4019,7 +4014,7 @@ msgstr "" #: lxc/network.go:957 lxc/operation.go:154 lxc/project.go:456 #: lxc/project.go:461 lxc/project.go:466 lxc/project.go:471 lxc/project.go:476 -#: lxc/project.go:481 lxc/remote.go:691 lxc/remote.go:696 lxc/remote.go:701 +#: lxc/project.go:481 lxc/remote.go:692 lxc/remote.go:697 lxc/remote.go:702 msgid "NO" msgstr "" @@ -4046,7 +4041,7 @@ msgstr "" msgid "Name" msgstr "" -#: lxc/remote.go:141 +#: lxc/remote.go:142 msgid "Name of the project to use for this remote:" msgstr "" @@ -4095,12 +4090,12 @@ msgstr "" msgid "Network ACL %s renamed to %s" msgstr "" -#: lxc/network_zone.go:336 +#: lxc/network_zone.go:341 #, c-format msgid "Network Zone %s created" msgstr "" -#: lxc/network_zone.go:616 +#: lxc/network_zone.go:621 #, c-format msgid "Network Zone %s deleted" msgstr "" @@ -4115,12 +4110,12 @@ msgstr "" msgid "Network forward %s deleted" msgstr "" -#: lxc/network_load_balancer.go:365 +#: lxc/network_load_balancer.go:370 #, c-format msgid "Network load balancer %s created" msgstr "" -#: lxc/network_load_balancer.go:767 +#: lxc/network_load_balancer.go:772 #, c-format msgid "Network load balancer %s deleted" msgstr "" @@ -4158,12 +4153,12 @@ msgstr "" msgid "Network usage:" msgstr "" -#: lxc/network_zone.go:934 +#: lxc/network_zone.go:939 #, c-format msgid "Network zone record %s created" msgstr "" -#: lxc/network_zone.go:1207 +#: lxc/network_zone.go:1212 #, c-format msgid "Network zone record %s deleted" msgstr "" @@ -4198,11 +4193,11 @@ msgstr "" msgid "No device found for this storage volume" msgstr "" -#: lxc/network_load_balancer.go:921 +#: lxc/network_load_balancer.go:926 msgid "No matching backend found" msgstr "" -#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1108 +#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1113 msgid "No matching port(s) found" msgstr "" @@ -4248,7 +4243,7 @@ msgstr "" msgid "Only \"custom\" volumes can be snapshotted" msgstr "" -#: lxc/remote.go:332 +#: lxc/remote.go:333 msgid "Only https URLs are supported for simplestreams" msgstr "" @@ -4273,7 +4268,7 @@ msgstr "" msgid "Optimized Storage" msgstr "" -#: lxc/main.go:96 +#: lxc/main.go:97 msgid "Override the source project" msgstr "" @@ -4319,11 +4314,11 @@ msgstr "" msgid "PROJECT" msgstr "" -#: lxc/remote.go:733 +#: lxc/remote.go:734 msgid "PROTOCOL" msgstr "" -#: lxc/image.go:1073 lxc/remote.go:735 +#: lxc/image.go:1073 lxc/remote.go:736 msgid "PUBLIC" msgstr "" @@ -4339,7 +4334,7 @@ msgstr "" msgid "Partitions:" msgstr "" -#: lxc/main.go:361 +#: lxc/main.go:363 #, c-format msgid "Password for %s: " msgstr "" @@ -4352,7 +4347,7 @@ msgstr "" msgid "Perform an incremental copy" msgstr "" -#: lxc/remote.go:182 +#: lxc/remote.go:183 msgid "Please provide an alternate server address (empty to abort):" msgstr "" @@ -4364,7 +4359,7 @@ msgstr "" msgid "Please provide cluster member name: " msgstr "" -#: lxc/remote.go:462 +#: lxc/remote.go:463 msgid "Please type 'y', 'n' or the fingerprint:" msgstr "" @@ -4386,10 +4381,10 @@ msgstr "" #: lxc/config.go:1278 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/network_load_balancer.go:695 lxc/network_peer.go:611 +#: lxc/network_zone.go:557 lxc/network_zone.go:1149 lxc/profile.go:539 +#: lxc/project.go:316 lxc/storage.go:311 lxc/storage_bucket.go:349 +#: lxc/storage_bucket.go:1098 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 "" @@ -4398,7 +4393,7 @@ msgstr "" msgid "Pretty rendering (short for --format=pretty)" msgstr "" -#: lxc/main.go:94 +#: lxc/main.go:95 msgid "Print help" msgstr "" @@ -4406,7 +4401,7 @@ msgstr "" msgid "Print the raw response" msgstr "" -#: lxc/main.go:93 +#: lxc/main.go:94 msgid "Print version number" msgstr "" @@ -4495,7 +4490,7 @@ msgstr "" msgid "Project %s renamed to %s" msgstr "" -#: lxc/remote.go:106 +#: lxc/remote.go:107 msgid "Project to use for the remote" msgstr "" @@ -4593,7 +4588,7 @@ msgid "" "pool \"default\"." msgstr "" -#: lxc/remote.go:105 +#: lxc/remote.go:106 msgid "Public image server" msgstr "" @@ -4641,7 +4636,7 @@ msgstr "" msgid "RESOURCE" msgstr "" -#: lxc/storage_bucket.go:828 +#: lxc/storage_bucket.go:833 msgid "ROLE" msgstr "" @@ -4684,45 +4679,45 @@ msgstr "" msgid "Refreshing the image: %s" msgstr "" -#: lxc/remote.go:785 +#: lxc/remote.go:786 #, c-format msgid "Remote %s already exists" msgstr "" -#: lxc/project.go:769 lxc/remote.go:776 lxc/remote.go:849 lxc/remote.go:905 -#: lxc/remote.go:945 +#: lxc/project.go:769 lxc/remote.go:777 lxc/remote.go:850 lxc/remote.go:906 +#: lxc/remote.go:946 #, c-format msgid "Remote %s doesn't exist" msgstr "" -#: lxc/remote.go:301 +#: lxc/remote.go:302 #, c-format msgid "Remote %s exists as <%s>" msgstr "" -#: lxc/remote.go:857 +#: lxc/remote.go:858 #, c-format msgid "Remote %s is global and cannot be removed" msgstr "" -#: lxc/remote.go:780 lxc/remote.go:853 lxc/remote.go:949 +#: lxc/remote.go:781 lxc/remote.go:854 lxc/remote.go:950 #, c-format msgid "Remote %s is static and cannot be modified" msgstr "" -#: lxc/remote.go:290 +#: lxc/remote.go:291 msgid "Remote address must not be empty" msgstr "" -#: lxc/remote.go:101 +#: lxc/remote.go:102 msgid "Remote admin password" msgstr "" -#: lxc/remote.go:295 +#: lxc/remote.go:296 msgid "Remote names may not contain colons" msgstr "" -#: lxc/remote.go:102 +#: lxc/remote.go:103 msgid "Remote trust token" msgstr "" @@ -4748,7 +4743,7 @@ msgstr "" msgid "Remove a member from the cluster" msgstr "" -#: lxc/network_zone.go:1285 +#: lxc/network_zone.go:1290 msgid "Remove a network zone record entry" msgstr "" @@ -4756,7 +4751,7 @@ msgstr "" msgid "Remove aliases" msgstr "" -#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1025 +#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1030 msgid "Remove all ports that match" msgstr "" @@ -4764,15 +4759,15 @@ msgstr "" msgid "Remove all rules that match" msgstr "" -#: lxc/network_load_balancer.go:862 +#: lxc/network_load_balancer.go:867 msgid "Remove backend from a load balancer" msgstr "" -#: lxc/network_load_balancer.go:861 +#: lxc/network_load_balancer.go:866 msgid "Remove backends from a load balancer" msgstr "" -#: lxc/network_zone.go:1286 +#: lxc/network_zone.go:1291 msgid "Remove entries from a network zone record" msgstr "" @@ -4796,7 +4791,7 @@ msgstr "" msgid "Remove ports from a forward" msgstr "" -#: lxc/network_load_balancer.go:1023 lxc/network_load_balancer.go:1024 +#: lxc/network_load_balancer.go:1028 lxc/network_load_balancer.go:1029 msgid "Remove ports from a load balancer" msgstr "" @@ -4804,7 +4799,7 @@ msgstr "" msgid "Remove profiles from instances" msgstr "" -#: lxc/remote.go:827 lxc/remote.go:828 +#: lxc/remote.go:828 lxc/remote.go:829 msgid "Remove remotes" msgstr "" @@ -4861,7 +4856,7 @@ msgstr "" msgid "Rename projects" msgstr "" -#: lxc/remote.go:754 lxc/remote.go:755 +#: lxc/remote.go:755 lxc/remote.go:756 msgid "Rename remotes" msgstr "" @@ -4939,7 +4934,7 @@ msgid "Restrict the certificate to one or more projects" msgstr "" #: lxc/console.go:44 -msgid "Retrieve the instance's console log" +msgid "Retrieve the container's console log" msgstr "" #: lxc/init.go:347 @@ -4955,7 +4950,7 @@ msgstr "" msgid "Revoke cluster member join token" msgstr "" -#: lxc/storage_bucket.go:851 +#: lxc/storage_bucket.go:856 msgid "Role (admin or read-only)" msgstr "" @@ -5006,7 +5001,7 @@ msgstr "" msgid "STATE" msgstr "" -#: lxc/remote.go:736 +#: lxc/remote.go:737 msgid "STATIC" msgstr "" @@ -5030,11 +5025,11 @@ msgstr "" msgid "STP" msgstr "" -#: lxc/storage_bucket.go:853 +#: lxc/storage_bucket.go:858 msgid "Secret key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:909 +#: lxc/storage_bucket.go:914 #, c-format msgid "Secret key: %s" msgstr "" @@ -5043,19 +5038,19 @@ msgstr "" msgid "Send a raw query to LXD" msgstr "" -#: lxc/remote.go:104 +#: lxc/remote.go:105 msgid "Server authentication type (tls or oidc)" msgstr "" -#: lxc/remote.go:460 +#: lxc/remote.go:461 msgid "Server certificate NACKed by user" msgstr "" -#: lxc/remote.go:599 +#: lxc/remote.go:600 msgid "Server doesn't trust us after authentication" msgstr "" -#: lxc/remote.go:103 +#: lxc/remote.go:104 msgid "Server protocol (lxd or simplestreams)" msgstr "" @@ -5154,11 +5149,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_load_balancer.go:450 +#: lxc/network_load_balancer.go:455 msgid "Set network load balancer keys" msgstr "" -#: lxc/network_load_balancer.go:451 +#: lxc/network_load_balancer.go:456 msgid "" "Set network load balancer keys\n" "\n" @@ -5180,11 +5175,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:353 +#: lxc/network_zone.go:358 msgid "Set network zone configuration keys" msgstr "" -#: lxc/network_zone.go:354 +#: lxc/network_zone.go:359 msgid "" "Set network zone configuration keys\n" "\n" @@ -5193,7 +5188,7 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:951 lxc/network_zone.go:952 +#: lxc/network_zone.go:956 lxc/network_zone.go:957 msgid "Set network zone record configuration keys" msgstr "" @@ -5223,11 +5218,11 @@ msgid "" " lxc project set [:] " msgstr "" -#: lxc/storage_bucket.go:529 +#: lxc/storage_bucket.go:534 msgid "Set storage bucket configuration keys" msgstr "" -#: lxc/storage_bucket.go:530 +#: lxc/storage_bucket.go:535 msgid "" "Set storage bucket configuration keys\n" "\n" @@ -5262,7 +5257,7 @@ msgid "" " lxc storage volume set [:] [/] " msgstr "" -#: lxc/remote.go:923 lxc/remote.go:924 +#: lxc/remote.go:924 lxc/remote.go:925 msgid "Set the URL for the remote" msgstr "" @@ -5290,7 +5285,7 @@ msgstr "" msgid "Set the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:458 +#: lxc/network_load_balancer.go:463 msgid "Set the key as a network load balancer property" msgstr "" @@ -5302,11 +5297,11 @@ msgstr "" msgid "Set the key as a network property" msgstr "" -#: lxc/network_zone.go:361 +#: lxc/network_zone.go:366 msgid "Set the key as a network zone property" msgstr "" -#: lxc/network_zone.go:957 +#: lxc/network_zone.go:962 msgid "Set the key as a network zone record property" msgstr "" @@ -5318,7 +5313,7 @@ msgstr "" msgid "Set the key as a project property" msgstr "" -#: lxc/storage_bucket.go:537 +#: lxc/storage_bucket.go:542 msgid "Set the key as a storage bucket property" msgstr "" @@ -5338,11 +5333,11 @@ msgstr "" msgid "Setup SSH SFTP listener on address:port instead of mounting" msgstr "" -#: lxc/main.go:97 +#: lxc/main.go:98 msgid "Show all debug messages" msgstr "" -#: lxc/main.go:98 +#: lxc/main.go:99 msgid "Show all information messages" msgstr "" @@ -5411,7 +5406,7 @@ msgstr "" msgid "Show instance or server information" msgstr "" -#: lxc/main.go:271 lxc/main.go:272 +#: lxc/main.go:272 lxc/main.go:273 msgid "Show less common commands" msgstr "" @@ -5443,15 +5438,15 @@ msgstr "" msgid "Show network peer configurations" msgstr "" -#: lxc/network_zone.go:155 lxc/network_zone.go:156 +#: lxc/network_zone.go:156 lxc/network_zone.go:157 msgid "Show network zone configurations" msgstr "" -#: lxc/network_zone.go:758 +#: lxc/network_zone.go:763 msgid "Show network zone record configuration" msgstr "" -#: lxc/network_zone.go:759 +#: lxc/network_zone.go:764 msgid "Show network zone record configurations" msgstr "" @@ -5463,11 +5458,11 @@ msgstr "" msgid "Show project options" msgstr "" -#: lxc/storage_bucket.go:623 lxc/storage_bucket.go:624 +#: lxc/storage_bucket.go:628 lxc/storage_bucket.go:629 msgid "Show storage bucket configurations" msgstr "" -#: lxc/storage_bucket.go:1123 lxc/storage_bucket.go:1124 +#: lxc/storage_bucket.go:1128 lxc/storage_bucket.go:1129 msgid "Show storage bucket key configurations" msgstr "" @@ -5493,7 +5488,7 @@ msgid "" "that are granted via identity provider group mappings. \n" msgstr "" -#: lxc/remote.go:630 lxc/remote.go:631 +#: lxc/remote.go:631 lxc/remote.go:632 msgid "Show the default remote" msgstr "" @@ -5617,22 +5612,22 @@ msgstr "" msgid "Stopping the instance failed: %s" msgstr "" -#: lxc/storage_bucket.go:161 +#: lxc/storage_bucket.go:166 #, c-format msgid "Storage bucket %s created" msgstr "" -#: lxc/storage_bucket.go:228 +#: lxc/storage_bucket.go:233 #, c-format msgid "Storage bucket %s deleted" msgstr "" -#: lxc/storage_bucket.go:907 +#: lxc/storage_bucket.go:912 #, c-format msgid "Storage bucket key %s added" msgstr "" -#: lxc/storage_bucket.go:973 +#: lxc/storage_bucket.go:978 #, c-format msgid "Storage bucket key %s removed" msgstr "" @@ -5705,7 +5700,7 @@ msgstr "" msgid "Switch the current project" msgstr "" -#: lxc/remote.go:883 lxc/remote.go:884 +#: lxc/remote.go:884 lxc/remote.go:885 msgid "Switch the default remote" msgstr "" @@ -5820,7 +5815,7 @@ msgstr "" msgid "The property %q does not exist on the instance snapshot %s/%s: %v" msgstr "" -#: lxc/network_load_balancer.go:424 +#: lxc/network_load_balancer.go:429 #, c-format msgid "The property %q does not exist on the load balancer %q: %v" msgstr "" @@ -5845,12 +5840,12 @@ msgstr "" msgid "The property %q does not exist on the network peer %q: %v" msgstr "" -#: lxc/network_zone.go:246 +#: lxc/network_zone.go:247 #, c-format msgid "The property %q does not exist on the network zone %q: %v" msgstr "" -#: lxc/network_zone.go:845 +#: lxc/network_zone.go:850 #, c-format msgid "The property %q does not exist on the network zone record %q: %v" msgstr "" @@ -5865,7 +5860,7 @@ msgstr "" msgid "The property %q does not exist on the project %q: %v" msgstr "" -#: lxc/storage_bucket.go:426 +#: lxc/storage_bucket.go:431 #, c-format msgid "The property %q does not exist on the storage bucket %q: %v" msgstr "" @@ -5919,7 +5914,7 @@ msgstr "" msgid "This LXD server is not available on the network" msgstr "" -#: lxc/main.go:293 +#: lxc/main.go:294 msgid "" "This client hasn't been configured to use a remote LXD server yet.\n" "As your platform can't run native Linux instances, you must connect to a " @@ -5951,11 +5946,11 @@ msgstr "" msgid "To create a new network, use: lxc network create" msgstr "" -#: lxc/console.go:210 +#: lxc/console.go:215 msgid "To detach from the console, press: +a q" msgstr "" -#: lxc/main.go:403 +#: lxc/main.go:406 msgid "" "To start your first container, try: lxc launch ubuntu:24.04\n" "Or for a virtual machine: lxc launch ubuntu:24.04 --vm" @@ -6053,7 +6048,7 @@ msgstr "" msgid "UPLOAD DATE" msgstr "" -#: lxc/cluster.go:184 lxc/remote.go:732 +#: lxc/cluster.go:184 lxc/remote.go:733 msgid "URL" msgstr "" @@ -6062,7 +6057,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:679 lxc/project.go:506 +#: lxc/network_zone.go:141 lxc/profile.go:679 lxc/project.go:506 #: lxc/storage.go:647 lxc/storage_volume.go:1564 msgid "USED BY" msgstr "" @@ -6081,7 +6076,7 @@ msgstr "" msgid "Unable to create a temporary file: %v" msgstr "" -#: lxc/remote.go:213 lxc/remote.go:247 +#: lxc/remote.go:214 lxc/remote.go:248 msgid "Unavailable remote server" msgstr "" @@ -6101,7 +6096,7 @@ msgstr "" msgid "Unknown column shorthand char '%c' in '%s'" msgstr "" -#: lxc/console.go:159 +#: lxc/console.go:164 #, c-format msgid "Unknown console type %q" msgstr "" @@ -6161,11 +6156,11 @@ msgstr "" msgid "Unset network forward keys" msgstr "" -#: lxc/network_load_balancer.go:548 +#: lxc/network_load_balancer.go:553 msgid "Unset network load balancer configuration keys" msgstr "" -#: lxc/network_load_balancer.go:549 +#: lxc/network_load_balancer.go:554 msgid "Unset network load balancer keys" msgstr "" @@ -6177,11 +6172,11 @@ msgstr "" msgid "Unset network peer keys" msgstr "" -#: lxc/network_zone.go:433 lxc/network_zone.go:434 +#: lxc/network_zone.go:438 lxc/network_zone.go:439 msgid "Unset network zone configuration keys" msgstr "" -#: lxc/network_zone.go:1027 lxc/network_zone.go:1028 +#: lxc/network_zone.go:1032 lxc/network_zone.go:1033 msgid "Unset network zone record configuration keys" msgstr "" @@ -6193,7 +6188,7 @@ msgstr "" msgid "Unset project configuration keys" msgstr "" -#: lxc/storage_bucket.go:692 lxc/storage_bucket.go:693 +#: lxc/storage_bucket.go:697 lxc/storage_bucket.go:698 msgid "Unset storage bucket configuration keys" msgstr "" @@ -6217,7 +6212,7 @@ msgstr "" msgid "Unset the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:552 +#: lxc/network_load_balancer.go:557 msgid "Unset the key as a network load balancer property" msgstr "" @@ -6229,11 +6224,11 @@ msgstr "" msgid "Unset the key as a network property" msgstr "" -#: lxc/network_zone.go:437 +#: lxc/network_zone.go:442 msgid "Unset the key as a network zone property" msgstr "" -#: lxc/network_zone.go:1031 +#: lxc/network_zone.go:1036 msgid "Unset the key as a network zone record property" msgstr "" @@ -6245,7 +6240,7 @@ msgstr "" msgid "Unset the key as a project property" msgstr "" -#: lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:701 msgid "Unset the key as a storage bucket property" msgstr "" @@ -6307,7 +6302,7 @@ msgid "" "Use storage driver optimized format (can only be restored on a similar pool)" msgstr "" -#: lxc/main.go:100 +#: lxc/main.go:101 msgid "Use with help or --help to view sub-commands" msgstr "" @@ -6404,7 +6399,7 @@ msgstr "" #: lxc/network.go:959 lxc/operation.go:156 lxc/project.go:458 #: lxc/project.go:463 lxc/project.go:468 lxc/project.go:473 lxc/project.go:478 -#: lxc/project.go:483 lxc/remote.go:693 lxc/remote.go:698 lxc/remote.go:703 +#: lxc/project.go:483 lxc/remote.go:694 lxc/remote.go:699 lxc/remote.go:704 msgid "YES" msgstr "" @@ -6439,7 +6434,7 @@ 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/network.go:909 lxc/network_acl.go:91 lxc/network_zone.go:83 #: 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 "[:]" @@ -6502,19 +6497,19 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:154 lxc/network_zone.go:463 lxc/network_zone.go:581 +#: lxc/network_zone.go:155 lxc/network_zone.go:468 lxc/network_zone.go:586 msgid "[:]" msgstr "" -#: lxc/network_zone.go:209 lxc/network_zone.go:432 +#: lxc/network_zone.go:210 lxc/network_zone.go:437 msgid "[:] " msgstr "" -#: lxc/network_zone.go:352 +#: lxc/network_zone.go:357 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:269 +#: lxc/network_zone.go:270 msgid "[:] [key=value...]" msgstr "" @@ -6760,30 +6755,30 @@ msgstr "" #: lxc/network_forward.go:169 lxc/network_forward.go:574 #: lxc/network_forward.go:715 lxc/network_load_balancer.go:171 -#: lxc/network_load_balancer.go:577 lxc/network_load_balancer.go:719 +#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:724 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:860 +#: lxc/network_load_balancer.go:865 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:796 +#: lxc/network_load_balancer.go:801 msgid "" "[:] " "[]" msgstr "" #: lxc/network_forward.go:377 lxc/network_forward.go:544 -#: lxc/network_load_balancer.go:381 lxc/network_load_balancer.go:547 +#: lxc/network_load_balancer.go:386 lxc/network_load_balancer.go:552 msgid "[:] " msgstr "" -#: lxc/network_forward.go:446 lxc/network_load_balancer.go:449 +#: lxc/network_forward.go:446 lxc/network_load_balancer.go:454 msgid "[:] =..." msgstr "" -#: lxc/network_load_balancer.go:961 +#: lxc/network_load_balancer.go:966 msgid "" "[:] " "[,...]" @@ -6795,7 +6790,7 @@ msgid "" " []" msgstr "" -#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1022 +#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1027 msgid "[:] [] []" msgstr "" @@ -6846,7 +6841,7 @@ msgid "[:]" msgstr "" #: lxc/storage.go:167 lxc/storage.go:218 lxc/storage.go:412 lxc/storage.go:759 -#: lxc/storage_bucket.go:449 +#: lxc/storage_bucket.go:454 msgid "[:]" msgstr "" @@ -6854,18 +6849,18 @@ msgstr "" msgid "[:] []" msgstr "" -#: lxc/storage_bucket.go:180 lxc/storage_bucket.go:242 -#: lxc/storage_bucket.go:622 lxc/storage_bucket.go:764 +#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:247 +#: lxc/storage_bucket.go:627 lxc/storage_bucket.go:769 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:375 lxc/storage_bucket.go:691 -#: lxc/storage_bucket.go:845 lxc/storage_bucket.go:923 -#: lxc/storage_bucket.go:987 lxc/storage_bucket.go:1122 +#: lxc/storage_bucket.go:380 lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:850 lxc/storage_bucket.go:928 +#: lxc/storage_bucket.go:992 lxc/storage_bucket.go:1127 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:528 +#: lxc/storage_bucket.go:533 msgid "[:] =..." msgstr "" @@ -7009,27 +7004,27 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:686 +#: lxc/network_zone.go:691 msgid "[:]" msgstr "" -#: lxc/network_zone.go:757 lxc/network_zone.go:1056 lxc/network_zone.go:1173 +#: lxc/network_zone.go:762 lxc/network_zone.go:1061 lxc/network_zone.go:1178 msgid "[:] " msgstr "" -#: lxc/network_zone.go:809 lxc/network_zone.go:1026 +#: lxc/network_zone.go:814 lxc/network_zone.go:1031 msgid "[:] " msgstr "" -#: lxc/network_zone.go:950 +#: lxc/network_zone.go:955 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:1238 lxc/network_zone.go:1284 +#: lxc/network_zone.go:1243 lxc/network_zone.go:1289 msgid "[:] " msgstr "" -#: lxc/network_zone.go:868 +#: lxc/network_zone.go:873 msgid "[:] [key=value...]" msgstr "" @@ -7053,7 +7048,7 @@ msgstr "" msgid "[:][] [...]" msgstr "" -#: lxc/remote.go:88 +#: lxc/remote.go:89 msgid "[] " msgstr "" @@ -7061,7 +7056,7 @@ msgstr "" msgid "[[:]]" msgstr "" -#: lxc/project.go:488 lxc/remote.go:722 +#: lxc/project.go:488 lxc/remote.go:723 msgid "current" msgstr "" @@ -7324,6 +7319,23 @@ msgid "" " Create a new OVN network called bar using baz as its uplink network" msgstr "" +#: lxc/network_load_balancer.go:239 +msgid "" +"lxc network load-balancer create n1 127.0.0.1\n" +"\n" +"lxc network load-balancer create n1 127.0.0.1 < config.yaml\n" +" Create network load-balancer for network n1 with configuration from " +"config.yaml" +msgstr "" + +#: lxc/network_zone.go:273 +msgid "" +"lxc network zone create z1\n" +"\n" +"lxc network zone create z1 < config.yaml\n" +" Create network zone z1 with configuration from config.yaml" +msgstr "" + #: lxc/operation.go:195 msgid "" "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n" @@ -7394,26 +7406,36 @@ msgid "" " Restore the snapshot." msgstr "" -#: lxc/storage_bucket.go:245 +#: lxc/storage_bucket.go:84 +msgid "" +"lxc storage bucket create p1 b01\n" +"\tCreate a new storage bucket name b01 in storage pool p1\n" +"\n" +"lxc storage bucket create p1 b01 < config.yaml\n" +"\tCreate a new storage bucket name b01 in storage pool p1 using the content " +"of config.yaml" +msgstr "" + +#: lxc/storage_bucket.go:250 msgid "" "lxc storage bucket edit [:] < bucket.yaml\n" " Update a storage bucket using the content of bucket.yaml." msgstr "" -#: lxc/storage_bucket.go:990 +#: lxc/storage_bucket.go:995 msgid "" "lxc storage bucket edit [:] < key.yaml\n" " Update a storage bucket key using the content of key.yaml." msgstr "" -#: lxc/storage_bucket.go:1125 +#: lxc/storage_bucket.go:1130 msgid "" "lxc storage bucket key show default data foo\n" " Will show the properties of a bucket key called \"foo\" for a bucket " "called \"data\" in the \"default\" pool." msgstr "" -#: lxc/storage_bucket.go:625 +#: lxc/storage_bucket.go:630 msgid "" "lxc storage bucket show default data\n" " Will show the properties of a bucket called \"data\" in the \"default\" " @@ -7432,7 +7454,7 @@ msgid "" "\t\tCreate a new custom volume using backup0.tar.gz as the source." msgstr "" -#: lxc/remote.go:459 +#: lxc/remote.go:460 msgid "n" msgstr "" @@ -7444,7 +7466,7 @@ msgstr "" msgid "no" msgstr "" -#: lxc/remote.go:452 +#: lxc/remote.go:453 msgid "ok (y/n/[fingerprint])?" msgstr "" @@ -7481,7 +7503,7 @@ msgstr "" msgid "used by" msgstr "" -#: lxc/remote.go:461 +#: lxc/remote.go:462 msgid "y" msgstr "" diff --git a/po/it.po b/po/it.po index 10c461abdefa..19ca3931eb16 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-08-20 09:31+0100\n" +"POT-Creation-Date: 2024-08-30 09:27+0100\n" "PO-Revision-Date: 2022-03-10 15:07+0000\n" "Last-Translator: Luigi Operoso \n" "Language-Team: Italian " msgstr "" -#: lxc/remote.go:825 lxc/remote.go:882 +#: lxc/remote.go:826 lxc/remote.go:883 msgid "" msgstr "" -#: lxc/remote.go:922 +#: lxc/remote.go:923 msgid " " msgstr "" -#: lxc/remote.go:752 +#: lxc/remote.go:753 msgid " " msgstr "" @@ -801,7 +801,7 @@ msgstr "ALIAS" msgid "ARCHITECTURE" msgstr "ARCHITETTURA" -#: lxc/remote.go:734 +#: lxc/remote.go:735 msgid "AUTH TYPE" msgstr "" @@ -809,15 +809,15 @@ msgstr "" msgid "AUTHENTICATION METHOD" msgstr "" -#: lxc/remote.go:100 +#: lxc/remote.go:101 msgid "Accept certificate" msgstr "Accetta certificato" -#: lxc/storage_bucket.go:852 +#: lxc/storage_bucket.go:857 msgid "Access key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:908 +#: lxc/storage_bucket.go:913 #, c-format msgid "Access key: %s" msgstr "" @@ -852,20 +852,20 @@ msgstr "" msgid "Add a group to an identity provider group" msgstr "" -#: lxc/network_zone.go:1239 +#: lxc/network_zone.go:1244 #, fuzzy msgid "Add a network zone record entry" msgstr "Il nome del container è: %s" -#: lxc/network_load_balancer.go:798 +#: lxc/network_load_balancer.go:803 msgid "Add backend to a load balancer" msgstr "" -#: lxc/network_load_balancer.go:797 +#: lxc/network_load_balancer.go:802 msgid "Add backends to a load balancer" msgstr "" -#: lxc/network_zone.go:1240 +#: lxc/network_zone.go:1245 msgid "Add entries to a network zone record" msgstr "" @@ -882,11 +882,11 @@ msgstr "" msgid "Add new aliases" msgstr "Aggiungi nuovi alias" -#: lxc/remote.go:89 +#: lxc/remote.go:90 msgid "Add new remote servers" msgstr "Aggiungi un nuovo server remoto" -#: lxc/remote.go:90 +#: lxc/remote.go:91 msgid "" "Add new remote servers\n" "\n" @@ -927,7 +927,7 @@ msgstr "" msgid "Add ports to a forward" msgstr "" -#: lxc/network_load_balancer.go:962 lxc/network_load_balancer.go:963 +#: lxc/network_load_balancer.go:967 lxc/network_load_balancer.go:968 msgid "Add ports to a load balancer" msgstr "" @@ -949,17 +949,17 @@ msgstr "" msgid "Address: %s" msgstr "" -#: lxc/storage_bucket.go:164 +#: lxc/storage_bucket.go:169 #, fuzzy, c-format msgid "Admin access key: %s" msgstr "Password amministratore per %s: " -#: lxc/remote.go:566 +#: lxc/remote.go:567 #, fuzzy, c-format msgid "Admin password (or token) for %s:" msgstr "Password amministratore per %s: " -#: lxc/storage_bucket.go:165 +#: lxc/storage_bucket.go:170 #, fuzzy, c-format msgid "Admin secret key: %s" msgstr "Aggiornamento automatico: %s" @@ -991,7 +991,7 @@ msgstr "Alias:" msgid "All projects" msgstr "" -#: lxc/remote.go:181 +#: lxc/remote.go:182 msgid "All server addresses are unavailable" msgstr "" @@ -1015,7 +1015,7 @@ msgstr "Architettura: %s" msgid "Are you sure you want to %s cluster member %q? (yes/no) [default=no]: " msgstr "" -#: lxc/console.go:383 +#: lxc/console.go:388 msgid "As neither could be found, the raw SPICE socket can be found at:" msgstr "" @@ -1064,7 +1064,7 @@ msgid "" "as well as retrieve past log entries from it." msgstr "" -#: lxc/remote.go:548 +#: lxc/remote.go:549 #, c-format msgid "Authentication type '%s' not supported by server" msgstr "" @@ -1083,11 +1083,11 @@ msgstr "" msgid "Auto update: %s" msgstr "Aggiornamento automatico: %s" -#: lxc/network_forward.go:240 lxc/network_load_balancer.go:242 +#: lxc/network_forward.go:240 lxc/network_load_balancer.go:247 msgid "Auto-allocate an IPv4 or IPv6 listen address. One of 'ipv4', 'ipv6'." msgstr "" -#: lxc/remote.go:136 +#: lxc/remote.go:137 msgid "Available projects:" msgstr "" @@ -1119,8 +1119,8 @@ msgid "Bad device override syntax, expecting ,=: %s" msgstr "" #: lxc/network.go:333 lxc/network_acl.go:382 lxc/network_forward.go:293 -#: lxc/network_load_balancer.go:296 lxc/network_peer.go:280 -#: lxc/network_zone.go:324 lxc/network_zone.go:922 lxc/storage_bucket.go:136 +#: lxc/network_load_balancer.go:301 lxc/network_peer.go:280 +#: lxc/network_zone.go:329 lxc/network_zone.go:927 lxc/storage_bucket.go:141 #, c-format msgid "Bad key/value pair: %s" msgstr "" @@ -1243,7 +1243,7 @@ msgstr "Impossibile effettuare il pull di una directory senza --recursive" msgid "Can't read from stdin: %w" msgstr "Impossible leggere da stdin: %s" -#: lxc/remote.go:861 +#: lxc/remote.go:862 msgid "Can't remove the default remote" msgstr "" @@ -1309,17 +1309,17 @@ msgstr "" msgid "Certificate add token for %s deleted" msgstr "Il nome del container è: %s" -#: lxc/remote.go:218 +#: lxc/remote.go:452 +#, fuzzy +msgid "Certificate fingerprint" +msgstr "Creazione del container in corso" + +#: lxc/remote.go:219 #, c-format msgid "" "Certificate fingerprint mismatch between certificate token and server %q" msgstr "" -#: lxc/remote.go:451 -#, c-format -msgid "Certificate fingerprint: %s" -msgstr "" - #: lxc/network.go:893 msgid "Chassis" msgstr "" @@ -1329,7 +1329,7 @@ msgstr "" msgid "Client %s certificate add token:" msgstr "Il nome del container è: %s" -#: lxc/remote.go:603 +#: lxc/remote.go:604 #, fuzzy msgid "Client certificate now trusted by server:" msgstr "Certificato del client salvato dal server: " @@ -1392,18 +1392,18 @@ msgstr "" #: lxc/network_forward.go:456 lxc/network_forward.go:579 #: lxc/network_forward.go:721 lxc/network_forward.go:798 #: lxc/network_forward.go:864 lxc/network_load_balancer.go:176 -#: lxc/network_load_balancer.go:241 lxc/network_load_balancer.go:459 -#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:725 -#: lxc/network_load_balancer.go:801 lxc/network_load_balancer.go:865 -#: lxc/network_load_balancer.go:966 lxc/network_load_balancer.go:1028 +#: lxc/network_load_balancer.go:246 lxc/network_load_balancer.go:464 +#: lxc/network_load_balancer.go:587 lxc/network_load_balancer.go:730 +#: lxc/network_load_balancer.go:806 lxc/network_load_balancer.go:870 +#: lxc/network_load_balancer.go:971 lxc/network_load_balancer.go:1033 #: lxc/storage.go:99 lxc/storage.go:347 lxc/storage.go:418 lxc/storage.go:671 -#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:85 -#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:248 -#: lxc/storage_bucket.go:379 lxc/storage_bucket.go:536 -#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:695 -#: lxc/storage_bucket.go:770 lxc/storage_bucket.go:850 -#: lxc/storage_bucket.go:928 lxc/storage_bucket.go:993 -#: lxc/storage_bucket.go:1129 lxc/storage_volume.go:358 +#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:90 +#: lxc/storage_bucket.go:190 lxc/storage_bucket.go:253 +#: lxc/storage_bucket.go:384 lxc/storage_bucket.go:541 +#: lxc/storage_bucket.go:634 lxc/storage_bucket.go:700 +#: lxc/storage_bucket.go:775 lxc/storage_bucket.go:855 +#: lxc/storage_bucket.go:933 lxc/storage_bucket.go:998 +#: lxc/storage_bucket.go:1134 lxc/storage_volume.go:358 #: lxc/storage_volume.go:560 lxc/storage_volume.go:639 #: lxc/storage_volume.go:883 lxc/storage_volume.go:1097 #: lxc/storage_volume.go:1210 lxc/storage_volume.go:1678 @@ -1431,11 +1431,11 @@ msgstr "" msgid "Columns" msgstr "Colonne" -#: lxc/main.go:81 +#: lxc/main.go:82 msgid "Command line client for LXD" msgstr "" -#: lxc/main.go:82 +#: lxc/main.go:83 msgid "" "Command line client for LXD\n" "\n" @@ -1467,19 +1467,15 @@ msgstr "" #: lxc/config.go:347 lxc/config.go:1277 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/network_load_balancer.go:694 lxc/network_peer.go:610 +#: lxc/network_zone.go:556 lxc/network_zone.go:1148 lxc/profile.go:538 +#: lxc/project.go:315 lxc/storage.go:310 lxc/storage_bucket.go:348 +#: lxc/storage_bucket.go:1097 lxc/storage_volume.go:1016 #: lxc/storage_volume.go:1048 #, c-format msgid "Config parsing error: %s" msgstr "" -#: lxc/console.go:140 -msgid "Console log:" -msgstr "" - #: lxc/storage_volume.go:561 msgid "Content type, block or filesystem" msgstr "" @@ -1582,12 +1578,12 @@ msgstr "" msgid "Cores:" msgstr "" -#: lxc/remote.go:486 +#: lxc/remote.go:487 #, fuzzy, c-format msgid "Could not close server cert file %q: %w" msgstr "Certificato del client salvato dal server: " -#: lxc/remote.go:224 lxc/remote.go:470 +#: lxc/remote.go:225 lxc/remote.go:471 msgid "Could not create server cert dir" msgstr "" @@ -1626,12 +1622,12 @@ msgstr "Certificato del client salvato dal server: " msgid "Could not write new remote certificate for remote '%s' with error: %v" msgstr "" -#: lxc/remote.go:481 +#: lxc/remote.go:482 #, fuzzy, c-format msgid "Could not write server cert file %q: %w" msgstr "Certificato del client salvato dal server: " -#: lxc/network_zone.go:1327 +#: lxc/network_zone.go:1332 msgid "Couldn't find a matching entry" msgstr "" @@ -1688,7 +1684,7 @@ msgstr "" msgid "Create instances from images" msgstr "Creazione del container in corso" -#: lxc/storage_bucket.go:846 lxc/storage_bucket.go:847 +#: lxc/storage_bucket.go:851 lxc/storage_bucket.go:852 msgid "Create key for a storage bucket" msgstr "" @@ -1723,12 +1719,12 @@ msgstr "Creazione del container in corso" msgid "Create new network peering" msgstr "" -#: lxc/network_zone.go:869 lxc/network_zone.go:870 +#: lxc/network_zone.go:874 lxc/network_zone.go:875 #, fuzzy msgid "Create new network zone record" msgstr "Creazione del container in corso" -#: lxc/network_zone.go:270 lxc/network_zone.go:271 +#: lxc/network_zone.go:271 lxc/network_zone.go:272 msgid "Create new network zones" msgstr "" @@ -1780,9 +1776,9 @@ msgstr "" #: 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/network_zone.go:140 lxc/network_zone.go:747 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_bucket.go:512 lxc/storage_bucket.go:832 #: lxc/storage_volume.go:1562 msgid "DESCRIPTION" msgstr "DESCRIZIONE" @@ -1849,7 +1845,7 @@ msgstr "" msgid "Delete instances and snapshots" msgstr "Creazione del container in corso" -#: lxc/storage_bucket.go:924 lxc/storage_bucket.go:925 +#: lxc/storage_bucket.go:929 lxc/storage_bucket.go:930 msgid "Delete key from a storage bucket" msgstr "" @@ -1861,7 +1857,7 @@ msgstr "" msgid "Delete network forwards" msgstr "" -#: lxc/network_load_balancer.go:721 lxc/network_load_balancer.go:722 +#: lxc/network_load_balancer.go:726 lxc/network_load_balancer.go:727 #, fuzzy msgid "Delete network load balancers" msgstr "Il nome del container è: %s" @@ -1870,12 +1866,12 @@ msgstr "Il nome del container è: %s" msgid "Delete network peerings" msgstr "" -#: lxc/network_zone.go:1175 lxc/network_zone.go:1176 +#: lxc/network_zone.go:1180 lxc/network_zone.go:1181 #, fuzzy msgid "Delete network zone record" msgstr "Il nome del container è: %s" -#: lxc/network_zone.go:583 lxc/network_zone.go:584 +#: lxc/network_zone.go:588 lxc/network_zone.go:589 msgid "Delete network zones" msgstr "" @@ -1891,7 +1887,7 @@ msgstr "" msgid "Delete projects" msgstr "" -#: lxc/storage_bucket.go:182 lxc/storage_bucket.go:183 +#: lxc/storage_bucket.go:187 lxc/storage_bucket.go:188 #, fuzzy msgid "Delete storage buckets" msgstr "Il nome del container è: %s" @@ -1948,7 +1944,7 @@ msgstr "" #: 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/info.go:32 lxc/init.go:43 lxc/launch.go:24 lxc/list.go:48 lxc/main.go:83 #: 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 @@ -1967,22 +1963,22 @@ msgstr "" #: 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_load_balancer.go:238 lxc/network_load_balancer.go:388 +#: lxc/network_load_balancer.go:456 lxc/network_load_balancer.go:554 +#: lxc/network_load_balancer.go:584 lxc/network_load_balancer.go:727 +#: lxc/network_load_balancer.go:788 lxc/network_load_balancer.go:803 +#: lxc/network_load_balancer.go:867 lxc/network_load_balancer.go:953 +#: lxc/network_load_balancer.go:968 lxc/network_load_balancer.go:1029 #: 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/network_zone.go:29 lxc/network_zone.go:86 lxc/network_zone.go:157 +#: lxc/network_zone.go:212 lxc/network_zone.go:272 lxc/network_zone.go:359 +#: lxc/network_zone.go:439 lxc/network_zone.go:470 lxc/network_zone.go:589 +#: lxc/network_zone.go:637 lxc/network_zone.go:694 lxc/network_zone.go:764 +#: lxc/network_zone.go:816 lxc/network_zone.go:875 lxc/network_zone.go:957 +#: lxc/network_zone.go:1033 lxc/network_zone.go:1063 lxc/network_zone.go:1181 +#: lxc/network_zone.go:1230 lxc/network_zone.go:1245 lxc/network_zone.go:1291 #: 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 @@ -1991,19 +1987,19 @@ msgstr "" #: 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:631 lxc/remote.go:669 lxc/remote.go:755 lxc/remote.go:828 -#: lxc/remote.go:884 lxc/remote.go:924 lxc/rename.go:21 lxc/restore.go:24 +#: lxc/query.go:34 lxc/rebuild.go:27 lxc/remote.go:35 lxc/remote.go:91 +#: lxc/remote.go:632 lxc/remote.go:670 lxc/remote.go:756 lxc/remote.go:829 +#: lxc/remote.go:885 lxc/remote.go:925 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_bucket.go:29 lxc/storage_bucket.go:83 lxc/storage_bucket.go:188 +#: lxc/storage_bucket.go:249 lxc/storage_bucket.go:382 +#: lxc/storage_bucket.go:458 lxc/storage_bucket.go:535 +#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:698 +#: lxc/storage_bucket.go:732 lxc/storage_bucket.go:773 +#: lxc/storage_bucket.go:852 lxc/storage_bucket.go:930 +#: lxc/storage_bucket.go:994 lxc/storage_bucket.go:1129 #: 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 @@ -2144,7 +2140,7 @@ msgstr "Creazione del container in corso" msgid "Don't require user confirmation for using --force" msgstr "" -#: lxc/main.go:99 +#: lxc/main.go:100 msgid "Don't show progress information" msgstr "" @@ -2157,7 +2153,7 @@ msgstr "" msgid "Driver: %v (%v)" msgstr "" -#: lxc/network_zone.go:743 +#: lxc/network_zone.go:748 msgid "ENTRIES" msgstr "" @@ -2238,7 +2234,7 @@ msgstr "" msgid "Edit network forward configurations as YAML" msgstr "" -#: lxc/network_load_balancer.go:578 lxc/network_load_balancer.go:579 +#: lxc/network_load_balancer.go:583 lxc/network_load_balancer.go:584 #, fuzzy msgid "Edit network load balancer configurations as YAML" msgstr "Il nome del container è: %s" @@ -2247,12 +2243,12 @@ msgstr "Il nome del container è: %s" msgid "Edit network peer configurations as YAML" msgstr "" -#: lxc/network_zone.go:464 lxc/network_zone.go:465 +#: lxc/network_zone.go:469 lxc/network_zone.go:470 #, fuzzy msgid "Edit network zone configurations as YAML" msgstr "Il nome del container è: %s" -#: lxc/network_zone.go:1057 lxc/network_zone.go:1058 +#: lxc/network_zone.go:1062 lxc/network_zone.go:1063 #, fuzzy msgid "Edit network zone record configurations as YAML" msgstr "Il nome del container è: %s" @@ -2265,12 +2261,12 @@ msgstr "" msgid "Edit project configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:243 lxc/storage_bucket.go:244 +#: lxc/storage_bucket.go:248 lxc/storage_bucket.go:249 #, fuzzy msgid "Edit storage bucket configurations as YAML" msgstr "Il nome del container è: %s" -#: lxc/storage_bucket.go:988 lxc/storage_bucket.go:989 +#: lxc/storage_bucket.go:993 lxc/storage_bucket.go:994 msgid "Edit storage bucket key as YAML" msgstr "" @@ -2311,7 +2307,7 @@ msgid "" " for the address if not yet set." msgstr "" -#: lxc/network_zone.go:1242 +#: lxc/network_zone.go:1247 msgid "Entry TTL" msgstr "" @@ -2340,9 +2336,9 @@ msgstr "" #: lxc/cluster.go:414 lxc/config.go:624 lxc/config.go:656 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/network_load_balancer.go:527 lxc/network_peer.go:463 +#: lxc/network_zone.go:414 lxc/network_zone.go:1008 lxc/profile.go:876 +#: lxc/project.go:634 lxc/storage.go:727 lxc/storage_bucket.go:602 #: lxc/storage_volume.go:1947 lxc/storage_volume.go:1985 #, c-format msgid "Error setting properties: %v" @@ -2354,10 +2350,10 @@ 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/network_forward.go:513 lxc/network_load_balancer.go:521 +#: lxc/network_peer.go:457 lxc/network_zone.go:408 lxc/network_zone.go:1002 #: lxc/profile.go:870 lxc/project.go:628 lxc/storage.go:721 -#: lxc/storage_bucket.go:591 lxc/storage_volume.go:1941 +#: lxc/storage_bucket.go:596 lxc/storage_volume.go:1941 #: lxc/storage_volume.go:1979 #, c-format msgid "Error unsetting property: %v" @@ -2546,7 +2542,7 @@ msgstr "Il nome del container è: %s" msgid "Failed parsing SSH host key: %w" msgstr "Accetta certificato" -#: lxc/console.go:361 +#: lxc/console.go:366 #, fuzzy, c-format msgid "Failed starting command: %w" msgstr "Accetta certificato" @@ -2561,11 +2557,11 @@ msgstr "Accetta certificato" msgid "Failed to accept incoming connection: %w" msgstr "Accetta certificato" -#: lxc/remote.go:190 +#: lxc/remote.go:191 msgid "Failed to add remote" msgstr "" -#: lxc/remote.go:241 +#: lxc/remote.go:242 #, fuzzy, c-format msgid "Failed to close server cert file %q: %w" msgstr "Accetta certificato" @@ -2575,7 +2571,7 @@ msgstr "Accetta certificato" msgid "Failed to connect to cluster member: %w" msgstr "Il nome del container è: %s" -#: lxc/remote.go:231 +#: lxc/remote.go:232 #, c-format msgid "Failed to create %q: %w" msgstr "" @@ -2585,12 +2581,12 @@ msgstr "" msgid "Failed to create alias %s: %w" msgstr "Accetta certificato" -#: lxc/remote.go:256 +#: lxc/remote.go:257 #, fuzzy, c-format msgid "Failed to create certificate: %w" msgstr "Accetta certificato" -#: lxc/remote.go:263 +#: lxc/remote.go:264 #, c-format msgid "Failed to find project: %w" msgstr "" @@ -2615,7 +2611,7 @@ msgstr "Accetta certificato" msgid "Failed to walk path for %s: %s" msgstr "" -#: lxc/remote.go:236 +#: lxc/remote.go:237 #, fuzzy, c-format msgid "Failed to write server cert file %q: %w" msgstr "Accetta certificato" @@ -2624,7 +2620,7 @@ msgstr "Accetta certificato" msgid "Fast mode (same as --columns=nsacPt)" msgstr "" -#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:115 +#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:116 #: lxc/operation.go:136 #, fuzzy msgid "Filtering isn't supported yet" @@ -2664,7 +2660,7 @@ msgstr "Creazione del container in corso" msgid "Force the removal of running instances" msgstr "" -#: lxc/main.go:95 +#: lxc/main.go:96 msgid "Force using the local unix socket" msgstr "" @@ -2698,10 +2694,10 @@ msgstr "" #: 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/network_peer.go:84 lxc/network_zone.go:89 lxc/network_zone.go:697 #: lxc/operation.go:108 lxc/profile.go:637 lxc/project.go:412 -#: lxc/project.go:804 lxc/remote.go:673 lxc/storage.go:588 -#: lxc/storage_bucket.go:454 lxc/storage_bucket.go:769 +#: lxc/project.go:804 lxc/remote.go:674 lxc/storage.go:588 +#: lxc/storage_bucket.go:459 lxc/storage_bucket.go:774 #: lxc/storage_volume.go:1446 lxc/warning.go:93 msgid "Format (csv|json|table|yaml|compact)" msgstr "" @@ -2738,7 +2734,7 @@ msgstr "" msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)" msgstr "" -#: lxc/remote.go:737 +#: lxc/remote.go:738 msgid "GLOBAL" msgstr "" @@ -2758,7 +2754,7 @@ msgstr "" msgid "Generate manpages for all commands" msgstr "" -#: lxc/remote.go:159 lxc/remote.go:397 +#: lxc/remote.go:160 lxc/remote.go:398 msgid "Generating a client certificate. This may take a minute..." msgstr "" @@ -2791,7 +2787,7 @@ msgstr "" msgid "Get the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:386 +#: lxc/network_load_balancer.go:391 #, fuzzy msgid "Get the key as a network load balancer property" msgstr "Creazione del container in corso" @@ -2804,12 +2800,12 @@ msgstr "" msgid "Get the key as a network property" msgstr "" -#: lxc/network_zone.go:214 +#: lxc/network_zone.go:215 #, fuzzy msgid "Get the key as a network zone property" msgstr "Creazione del container in corso" -#: lxc/network_zone.go:814 +#: lxc/network_zone.go:819 #, fuzzy msgid "Get the key as a network zone record property" msgstr "Il nome del container è: %s" @@ -2822,7 +2818,7 @@ msgstr "" msgid "Get the key as a project property" msgstr "" -#: lxc/storage_bucket.go:380 +#: lxc/storage_bucket.go:385 #, fuzzy msgid "Get the key as a storage bucket property" msgstr "Il nome del container è: %s" @@ -2864,7 +2860,7 @@ msgstr "" msgid "Get values for network forward configuration keys" msgstr "" -#: lxc/network_load_balancer.go:382 lxc/network_load_balancer.go:383 +#: lxc/network_load_balancer.go:387 lxc/network_load_balancer.go:388 #, fuzzy msgid "Get values for network load balancer configuration keys" msgstr "Il nome del container è: %s" @@ -2874,12 +2870,12 @@ msgstr "Il nome del container è: %s" msgid "Get values for network peer configuration keys" msgstr "Il nome del container è: %s" -#: lxc/network_zone.go:210 lxc/network_zone.go:211 +#: lxc/network_zone.go:211 lxc/network_zone.go:212 #, fuzzy msgid "Get values for network zone configuration keys" msgstr "Il nome del container è: %s" -#: lxc/network_zone.go:810 lxc/network_zone.go:811 +#: lxc/network_zone.go:815 lxc/network_zone.go:816 #, fuzzy msgid "Get values for network zone record configuration keys" msgstr "Il nome del container è: %s" @@ -2892,7 +2888,7 @@ msgstr "" msgid "Get values for project configuration keys" msgstr "" -#: lxc/storage_bucket.go:376 lxc/storage_bucket.go:377 +#: lxc/storage_bucket.go:381 lxc/storage_bucket.go:382 #, fuzzy msgid "Get values for storage bucket configuration keys" msgstr "Il nome del container è: %s" @@ -3034,7 +3030,7 @@ msgstr "" msgid "If the snapshot name already exists, delete and create a new one" msgstr "" -#: lxc/main.go:398 +#: lxc/main.go:400 msgid "" "If this is your first time running LXD on this machine, you should also run: " "lxd init" @@ -3195,7 +3191,7 @@ msgstr "Il nome del container è: %s" msgid "Instance type" msgstr "" -#: lxc/remote.go:349 +#: lxc/remote.go:350 #, c-format msgid "Invalid URL scheme \"%s\" in \"%s\"" msgstr "" @@ -3268,7 +3264,7 @@ msgstr "" msgid "Invalid new snapshot name, parent volume must be the same as source" msgstr "" -#: lxc/main.go:498 +#: lxc/main.go:502 #, fuzzy msgid "Invalid number of arguments" msgstr "numero errato di argomenti del sottocomando" @@ -3278,7 +3274,7 @@ msgstr "numero errato di argomenti del sottocomando" msgid "Invalid path %s" msgstr "" -#: lxc/remote.go:338 +#: lxc/remote.go:339 #, fuzzy, c-format msgid "Invalid protocol: %s" msgstr "Proprietà errata: %s" @@ -3327,7 +3323,7 @@ msgstr "" #: lxc/list.go:597 lxc/network.go:1059 lxc/network_forward.go:155 #: lxc/network_load_balancer.go:157 lxc/operation.go:177 -#: lxc/storage_bucket.go:511 lxc/storage_volume.go:1569 lxc/warning.go:220 +#: lxc/storage_bucket.go:516 lxc/storage_volume.go:1569 lxc/warning.go:220 msgid "LOCATION" msgstr "" @@ -3335,7 +3331,7 @@ msgstr "" msgid "LXD - Command line client" msgstr "" -#: lxc/console.go:382 +#: lxc/console.go:387 msgid "LXD automatically uses either spicy or remote-viewer when present." msgstr "" @@ -3432,16 +3428,16 @@ msgstr "Creazione del container in corso" msgid "List available network peers" msgstr "" -#: lxc/network_zone.go:85 +#: lxc/network_zone.go:86 msgid "List available network zone" msgstr "" -#: lxc/network_zone.go:688 lxc/network_zone.go:689 +#: lxc/network_zone.go:693 lxc/network_zone.go:694 #, fuzzy msgid "List available network zone records" msgstr "Creazione del container in corso" -#: lxc/network_zone.go:84 +#: lxc/network_zone.go:85 msgid "List available network zoneS" msgstr "" @@ -3635,11 +3631,11 @@ msgstr "" msgid "List projects" msgstr "" -#: lxc/storage_bucket.go:766 lxc/storage_bucket.go:768 +#: lxc/storage_bucket.go:771 lxc/storage_bucket.go:773 msgid "List storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:451 lxc/storage_bucket.go:453 +#: lxc/storage_bucket.go:456 lxc/storage_bucket.go:458 #, fuzzy msgid "List storage buckets" msgstr "Creazione del container in corso" @@ -3668,7 +3664,7 @@ msgid "" " U - Current disk usage" msgstr "" -#: lxc/remote.go:668 lxc/remote.go:669 +#: lxc/remote.go:669 lxc/remote.go:670 msgid "List the available remotes" msgstr "" @@ -3905,12 +3901,12 @@ msgstr "" msgid "Manage network forwards" msgstr "" -#: lxc/network_load_balancer.go:782 lxc/network_load_balancer.go:783 +#: lxc/network_load_balancer.go:787 lxc/network_load_balancer.go:788 #, fuzzy msgid "Manage network load balancer backends" msgstr "Creazione del container in corso" -#: lxc/network_load_balancer.go:947 lxc/network_load_balancer.go:948 +#: lxc/network_load_balancer.go:952 lxc/network_load_balancer.go:953 #, fuzzy msgid "Manage network load balancer ports" msgstr "Creazione del container in corso" @@ -3925,17 +3921,17 @@ msgstr "Creazione del container in corso" msgid "Manage network peerings" msgstr "Creazione del container in corso" -#: lxc/network_zone.go:1224 lxc/network_zone.go:1225 +#: lxc/network_zone.go:1229 lxc/network_zone.go:1230 #, fuzzy msgid "Manage network zone record entries" msgstr "Creazione del container in corso" -#: lxc/network_zone.go:631 lxc/network_zone.go:632 +#: lxc/network_zone.go:636 lxc/network_zone.go:637 #, fuzzy msgid "Manage network zone records" msgstr "Creazione del container in corso" -#: lxc/network_zone.go:27 lxc/network_zone.go:28 +#: lxc/network_zone.go:28 lxc/network_zone.go:29 #, fuzzy msgid "Manage network zones" msgstr "Creazione del container in corso" @@ -3953,12 +3949,12 @@ msgstr "" msgid "Manage projects" msgstr "" -#: lxc/storage_bucket.go:726 +#: lxc/storage_bucket.go:731 #, fuzzy msgid "Manage storage bucket keys" msgstr "Creazione del container in corso" -#: lxc/storage_bucket.go:727 +#: lxc/storage_bucket.go:732 msgid "Manage storage bucket keys." msgstr "" @@ -3988,7 +3984,7 @@ msgid "" "\"custom\" (user created) volumes." msgstr "" -#: lxc/remote.go:33 lxc/remote.go:34 +#: lxc/remote.go:34 lxc/remote.go:35 msgid "Manage the list of remote servers" msgstr "" @@ -4071,12 +4067,12 @@ msgid "" "Minimum level for log messages (only available when using pretty format)" msgstr "" -#: lxc/storage_bucket.go:111 lxc/storage_bucket.go:211 -#: lxc/storage_bucket.go:287 lxc/storage_bucket.go:406 -#: lxc/storage_bucket.go:563 lxc/storage_bucket.go:655 -#: lxc/storage_bucket.go:797 lxc/storage_bucket.go:878 -#: lxc/storage_bucket.go:953 lxc/storage_bucket.go:1032 -#: lxc/storage_bucket.go:1155 +#: lxc/storage_bucket.go:116 lxc/storage_bucket.go:216 +#: lxc/storage_bucket.go:292 lxc/storage_bucket.go:411 +#: lxc/storage_bucket.go:568 lxc/storage_bucket.go:660 +#: lxc/storage_bucket.go:802 lxc/storage_bucket.go:883 +#: lxc/storage_bucket.go:958 lxc/storage_bucket.go:1037 +#: lxc/storage_bucket.go:1160 #, fuzzy msgid "Missing bucket name" msgstr "Il nome del container è: %s" @@ -4128,8 +4124,8 @@ msgstr "Il nome del container è: %s" msgid "Missing instance name" msgstr "Il nome del container è: %s" -#: lxc/storage_bucket.go:882 lxc/storage_bucket.go:957 -#: lxc/storage_bucket.go:1036 lxc/storage_bucket.go:1159 +#: lxc/storage_bucket.go:887 lxc/storage_bucket.go:962 +#: lxc/storage_bucket.go:1041 lxc/storage_bucket.go:1164 #, fuzzy msgid "Missing key name" msgstr "Il nome del container è: %s" @@ -4138,10 +4134,10 @@ msgstr "Il nome del container è: %s" #: lxc/network_forward.go:481 lxc/network_forward.go:627 #: lxc/network_forward.go:746 lxc/network_forward.go:823 #: lxc/network_forward.go:889 lxc/network_load_balancer.go:201 -#: lxc/network_load_balancer.go:411 lxc/network_load_balancer.go:484 -#: lxc/network_load_balancer.go:630 lxc/network_load_balancer.go:750 -#: lxc/network_load_balancer.go:826 lxc/network_load_balancer.go:890 -#: lxc/network_load_balancer.go:991 lxc/network_load_balancer.go:1053 +#: lxc/network_load_balancer.go:416 lxc/network_load_balancer.go:489 +#: lxc/network_load_balancer.go:635 lxc/network_load_balancer.go:755 +#: lxc/network_load_balancer.go:831 lxc/network_load_balancer.go:895 +#: lxc/network_load_balancer.go:996 lxc/network_load_balancer.go:1058 #, fuzzy msgid "Missing listen address" msgstr "Il nome del container è: %s" @@ -4168,27 +4164,27 @@ msgstr "Il nome del container è: %s" #: lxc/network_forward.go:477 lxc/network_forward.go:623 #: lxc/network_forward.go:742 lxc/network_forward.go:819 #: lxc/network_forward.go:885 lxc/network_load_balancer.go:123 -#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:261 -#: lxc/network_load_balancer.go:407 lxc/network_load_balancer.go:480 -#: lxc/network_load_balancer.go:626 lxc/network_load_balancer.go:746 -#: lxc/network_load_balancer.go:822 lxc/network_load_balancer.go:886 -#: lxc/network_load_balancer.go:987 lxc/network_load_balancer.go:1049 +#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:266 +#: lxc/network_load_balancer.go:412 lxc/network_load_balancer.go:485 +#: lxc/network_load_balancer.go:631 lxc/network_load_balancer.go:751 +#: lxc/network_load_balancer.go:827 lxc/network_load_balancer.go:891 +#: lxc/network_load_balancer.go:992 lxc/network_load_balancer.go:1054 #: lxc/network_peer.go:110 lxc/network_peer.go:180 lxc/network_peer.go:237 #: lxc/network_peer.go:355 lxc/network_peer.go:426 lxc/network_peer.go:556 #: lxc/network_peer.go:665 msgid "Missing network name" msgstr "" -#: lxc/network_zone.go:178 lxc/network_zone.go:234 lxc/network_zone.go:294 -#: lxc/network_zone.go:382 lxc/network_zone.go:503 lxc/network_zone.go:606 -#: lxc/network_zone.go:712 lxc/network_zone.go:780 lxc/network_zone.go:892 -#: lxc/network_zone.go:976 lxc/network_zone.go:1197 lxc/network_zone.go:1262 -#: lxc/network_zone.go:1307 +#: lxc/network_zone.go:179 lxc/network_zone.go:235 lxc/network_zone.go:299 +#: lxc/network_zone.go:387 lxc/network_zone.go:508 lxc/network_zone.go:611 +#: lxc/network_zone.go:717 lxc/network_zone.go:785 lxc/network_zone.go:897 +#: lxc/network_zone.go:981 lxc/network_zone.go:1202 lxc/network_zone.go:1267 +#: lxc/network_zone.go:1312 #, fuzzy msgid "Missing network zone name" msgstr "Il nome del container è: %s" -#: lxc/network_zone.go:833 lxc/network_zone.go:1095 +#: lxc/network_zone.go:838 lxc/network_zone.go:1100 #, fuzzy msgid "Missing network zone record name" msgstr "Il nome del container è: %s" @@ -4200,13 +4196,13 @@ msgid "Missing peer name" msgstr "Il nome del container è: %s" #: lxc/storage.go:194 lxc/storage.go:264 lxc/storage.go:370 lxc/storage.go:440 -#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:107 -#: lxc/storage_bucket.go:207 lxc/storage_bucket.go:283 -#: lxc/storage_bucket.go:402 lxc/storage_bucket.go:477 -#: lxc/storage_bucket.go:559 lxc/storage_bucket.go:651 -#: lxc/storage_bucket.go:793 lxc/storage_bucket.go:874 -#: lxc/storage_bucket.go:949 lxc/storage_bucket.go:1028 -#: lxc/storage_bucket.go:1151 lxc/storage_volume.go:189 +#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:112 +#: lxc/storage_bucket.go:212 lxc/storage_bucket.go:288 +#: lxc/storage_bucket.go:407 lxc/storage_bucket.go:482 +#: lxc/storage_bucket.go:564 lxc/storage_bucket.go:656 +#: lxc/storage_bucket.go:798 lxc/storage_bucket.go:879 +#: lxc/storage_bucket.go:954 lxc/storage_bucket.go:1033 +#: lxc/storage_bucket.go:1156 lxc/storage_volume.go:189 #: lxc/storage_volume.go:287 lxc/storage_volume.go:583 #: lxc/storage_volume.go:660 lxc/storage_volume.go:735 #: lxc/storage_volume.go:817 lxc/storage_volume.go:919 @@ -4330,7 +4326,7 @@ msgstr "" msgid "Moving the storage volume: %s" msgstr "" -#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1097 +#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1102 msgid "Multiple ports match. Use --force to remove them all" msgstr "" @@ -4349,10 +4345,10 @@ 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:677 lxc/project.go:498 -#: lxc/remote.go:731 lxc/storage.go:638 lxc/storage_bucket.go:506 -#: lxc/storage_bucket.go:826 lxc/storage_volume.go:1561 +#: lxc/network_acl.go:147 lxc/network_peer.go:139 lxc/network_zone.go:139 +#: lxc/network_zone.go:746 lxc/profile.go:677 lxc/project.go:498 +#: lxc/remote.go:732 lxc/storage.go:638 lxc/storage_bucket.go:511 +#: lxc/storage_bucket.go:831 lxc/storage_volume.go:1561 msgid "NAME" msgstr "" @@ -4378,7 +4374,7 @@ msgstr "" #: lxc/network.go:957 lxc/operation.go:154 lxc/project.go:456 #: lxc/project.go:461 lxc/project.go:466 lxc/project.go:471 lxc/project.go:476 -#: lxc/project.go:481 lxc/remote.go:691 lxc/remote.go:696 lxc/remote.go:701 +#: lxc/project.go:481 lxc/remote.go:692 lxc/remote.go:697 lxc/remote.go:702 msgid "NO" msgstr "" @@ -4405,7 +4401,7 @@ msgstr "" msgid "Name" msgstr "" -#: lxc/remote.go:141 +#: lxc/remote.go:142 msgid "Name of the project to use for this remote:" msgstr "" @@ -4454,12 +4450,12 @@ msgstr "" msgid "Network ACL %s renamed to %s" msgstr "" -#: lxc/network_zone.go:336 +#: lxc/network_zone.go:341 #, c-format msgid "Network Zone %s created" msgstr "" -#: lxc/network_zone.go:616 +#: lxc/network_zone.go:621 #, c-format msgid "Network Zone %s deleted" msgstr "" @@ -4474,12 +4470,12 @@ msgstr "" msgid "Network forward %s deleted" msgstr "" -#: lxc/network_load_balancer.go:365 +#: lxc/network_load_balancer.go:370 #, c-format msgid "Network load balancer %s created" msgstr "" -#: lxc/network_load_balancer.go:767 +#: lxc/network_load_balancer.go:772 #, c-format msgid "Network load balancer %s deleted" msgstr "" @@ -4517,12 +4513,12 @@ msgstr "" msgid "Network usage:" msgstr "" -#: lxc/network_zone.go:934 +#: lxc/network_zone.go:939 #, c-format msgid "Network zone record %s created" msgstr "" -#: lxc/network_zone.go:1207 +#: lxc/network_zone.go:1212 #, c-format msgid "Network zone record %s deleted" msgstr "" @@ -4557,11 +4553,11 @@ msgstr "" msgid "No device found for this storage volume" msgstr "" -#: lxc/network_load_balancer.go:921 +#: lxc/network_load_balancer.go:926 msgid "No matching backend found" msgstr "" -#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1108 +#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1113 msgid "No matching port(s) found" msgstr "" @@ -4608,7 +4604,7 @@ msgstr "" msgid "Only \"custom\" volumes can be snapshotted" msgstr "" -#: lxc/remote.go:332 +#: lxc/remote.go:333 msgid "Only https URLs are supported for simplestreams" msgstr "" @@ -4633,7 +4629,7 @@ msgstr "" msgid "Optimized Storage" msgstr "" -#: lxc/main.go:96 +#: lxc/main.go:97 msgid "Override the source project" msgstr "" @@ -4679,11 +4675,11 @@ msgstr "" msgid "PROJECT" msgstr "" -#: lxc/remote.go:733 +#: lxc/remote.go:734 msgid "PROTOCOL" msgstr "" -#: lxc/image.go:1073 lxc/remote.go:735 +#: lxc/image.go:1073 lxc/remote.go:736 msgid "PUBLIC" msgstr "" @@ -4699,7 +4695,7 @@ msgstr "" msgid "Partitions:" msgstr "" -#: lxc/main.go:361 +#: lxc/main.go:363 #, fuzzy, c-format msgid "Password for %s: " msgstr "Password amministratore per %s: " @@ -4713,7 +4709,7 @@ msgstr "Creazione del container in corso" msgid "Perform an incremental copy" msgstr "" -#: lxc/remote.go:182 +#: lxc/remote.go:183 msgid "Please provide an alternate server address (empty to abort):" msgstr "" @@ -4726,7 +4722,7 @@ msgstr "" msgid "Please provide cluster member name: " msgstr "Il nome del container è: %s" -#: lxc/remote.go:462 +#: lxc/remote.go:463 msgid "Please type 'y', 'n' or the fingerprint:" msgstr "" @@ -4748,10 +4744,10 @@ msgstr "" #: lxc/config.go:1278 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/network_load_balancer.go:695 lxc/network_peer.go:611 +#: lxc/network_zone.go:557 lxc/network_zone.go:1149 lxc/profile.go:539 +#: lxc/project.go:316 lxc/storage.go:311 lxc/storage_bucket.go:349 +#: lxc/storage_bucket.go:1098 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 "" @@ -4760,7 +4756,7 @@ msgstr "" msgid "Pretty rendering (short for --format=pretty)" msgstr "" -#: lxc/main.go:94 +#: lxc/main.go:95 msgid "Print help" msgstr "" @@ -4768,7 +4764,7 @@ msgstr "" msgid "Print the raw response" msgstr "" -#: lxc/main.go:93 +#: lxc/main.go:94 msgid "Print version number" msgstr "" @@ -4859,7 +4855,7 @@ msgstr "" msgid "Project %s renamed to %s" msgstr "" -#: lxc/remote.go:106 +#: lxc/remote.go:107 msgid "Project to use for the remote" msgstr "" @@ -4957,7 +4953,7 @@ msgid "" "pool \"default\"." msgstr "" -#: lxc/remote.go:105 +#: lxc/remote.go:106 msgid "Public image server" msgstr "" @@ -5006,7 +5002,7 @@ msgstr "" msgid "RESOURCE" msgstr "" -#: lxc/storage_bucket.go:828 +#: lxc/storage_bucket.go:833 msgid "ROLE" msgstr "" @@ -5051,45 +5047,45 @@ msgstr "Creazione del container in corso" msgid "Refreshing the image: %s" msgstr "" -#: lxc/remote.go:785 +#: lxc/remote.go:786 #, fuzzy, c-format msgid "Remote %s already exists" msgstr "il remote %s esiste già" -#: lxc/project.go:769 lxc/remote.go:776 lxc/remote.go:849 lxc/remote.go:905 -#: lxc/remote.go:945 +#: lxc/project.go:769 lxc/remote.go:777 lxc/remote.go:850 lxc/remote.go:906 +#: lxc/remote.go:946 #, fuzzy, c-format msgid "Remote %s doesn't exist" msgstr "il remote %s non esiste" -#: lxc/remote.go:301 +#: lxc/remote.go:302 #, fuzzy, c-format msgid "Remote %s exists as <%s>" msgstr "il remote %s esiste come %s" -#: lxc/remote.go:857 +#: lxc/remote.go:858 #, fuzzy, c-format msgid "Remote %s is global and cannot be removed" msgstr "il remote %s è statico e non può essere modificato" -#: lxc/remote.go:780 lxc/remote.go:853 lxc/remote.go:949 +#: lxc/remote.go:781 lxc/remote.go:854 lxc/remote.go:950 #, fuzzy, c-format msgid "Remote %s is static and cannot be modified" msgstr "il remote %s è statico e non può essere modificato" -#: lxc/remote.go:290 +#: lxc/remote.go:291 msgid "Remote address must not be empty" msgstr "" -#: lxc/remote.go:101 +#: lxc/remote.go:102 msgid "Remote admin password" msgstr "" -#: lxc/remote.go:295 +#: lxc/remote.go:296 msgid "Remote names may not contain colons" msgstr "" -#: lxc/remote.go:102 +#: lxc/remote.go:103 msgid "Remote trust token" msgstr "" @@ -5116,7 +5112,7 @@ msgstr "" msgid "Remove a member from the cluster" msgstr "" -#: lxc/network_zone.go:1285 +#: lxc/network_zone.go:1290 #, fuzzy msgid "Remove a network zone record entry" msgstr "Il nome del container è: %s" @@ -5125,7 +5121,7 @@ msgstr "Il nome del container è: %s" msgid "Remove aliases" msgstr "" -#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1025 +#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1030 msgid "Remove all ports that match" msgstr "" @@ -5133,17 +5129,17 @@ msgstr "" msgid "Remove all rules that match" msgstr "" -#: lxc/network_load_balancer.go:862 +#: lxc/network_load_balancer.go:867 #, fuzzy msgid "Remove backend from a load balancer" msgstr "Il nome del container è: %s" -#: lxc/network_load_balancer.go:861 +#: lxc/network_load_balancer.go:866 #, fuzzy msgid "Remove backends from a load balancer" msgstr "Il nome del container è: %s" -#: lxc/network_zone.go:1286 +#: lxc/network_zone.go:1291 msgid "Remove entries from a network zone record" msgstr "" @@ -5168,7 +5164,7 @@ msgstr "" msgid "Remove ports from a forward" msgstr "" -#: lxc/network_load_balancer.go:1023 lxc/network_load_balancer.go:1024 +#: lxc/network_load_balancer.go:1028 lxc/network_load_balancer.go:1029 #, fuzzy msgid "Remove ports from a load balancer" msgstr "Il nome del container è: %s" @@ -5177,7 +5173,7 @@ msgstr "Il nome del container è: %s" msgid "Remove profiles from instances" msgstr "" -#: lxc/remote.go:827 lxc/remote.go:828 +#: lxc/remote.go:828 lxc/remote.go:829 msgid "Remove remotes" msgstr "" @@ -5236,7 +5232,7 @@ msgstr "" msgid "Rename projects" msgstr "" -#: lxc/remote.go:754 lxc/remote.go:755 +#: lxc/remote.go:755 lxc/remote.go:756 msgid "Rename remotes" msgstr "" @@ -5317,7 +5313,7 @@ msgid "Restrict the certificate to one or more projects" msgstr "" #: lxc/console.go:44 -msgid "Retrieve the instance's console log" +msgid "Retrieve the container's console log" msgstr "" #: lxc/init.go:347 @@ -5335,7 +5331,7 @@ msgstr "Il nome del container è: %s" msgid "Revoke cluster member join token" msgstr "Il nome del container è: %s" -#: lxc/storage_bucket.go:851 +#: lxc/storage_bucket.go:856 msgid "Role (admin or read-only)" msgstr "" @@ -5387,7 +5383,7 @@ msgstr "" msgid "STATE" msgstr "" -#: lxc/remote.go:736 +#: lxc/remote.go:737 msgid "STATIC" msgstr "" @@ -5411,11 +5407,11 @@ msgstr "" msgid "STP" msgstr "" -#: lxc/storage_bucket.go:853 +#: lxc/storage_bucket.go:858 msgid "Secret key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:909 +#: lxc/storage_bucket.go:914 #, fuzzy, c-format msgid "Secret key: %s" msgstr "Aggiornamento automatico: %s" @@ -5424,19 +5420,19 @@ msgstr "Aggiornamento automatico: %s" msgid "Send a raw query to LXD" msgstr "" -#: lxc/remote.go:104 +#: lxc/remote.go:105 msgid "Server authentication type (tls or oidc)" msgstr "" -#: lxc/remote.go:460 +#: lxc/remote.go:461 msgid "Server certificate NACKed by user" msgstr "" -#: lxc/remote.go:599 +#: lxc/remote.go:600 msgid "Server doesn't trust us after authentication" msgstr "" -#: lxc/remote.go:103 +#: lxc/remote.go:104 msgid "Server protocol (lxd or simplestreams)" msgstr "" @@ -5537,12 +5533,12 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_load_balancer.go:450 +#: lxc/network_load_balancer.go:455 #, fuzzy msgid "Set network load balancer keys" msgstr "Il nome del container è: %s" -#: lxc/network_load_balancer.go:451 +#: lxc/network_load_balancer.go:456 msgid "" "Set network load balancer keys\n" "\n" @@ -5564,12 +5560,12 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:353 +#: lxc/network_zone.go:358 #, fuzzy msgid "Set network zone configuration keys" msgstr "Il nome del container è: %s" -#: lxc/network_zone.go:354 +#: lxc/network_zone.go:359 msgid "" "Set network zone configuration keys\n" "\n" @@ -5578,7 +5574,7 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:951 lxc/network_zone.go:952 +#: lxc/network_zone.go:956 lxc/network_zone.go:957 #, fuzzy msgid "Set network zone record configuration keys" msgstr "Il nome del container è: %s" @@ -5609,12 +5605,12 @@ msgid "" " lxc project set [:] " msgstr "" -#: lxc/storage_bucket.go:529 +#: lxc/storage_bucket.go:534 #, fuzzy msgid "Set storage bucket configuration keys" msgstr "Il nome del container è: %s" -#: lxc/storage_bucket.go:530 +#: lxc/storage_bucket.go:535 msgid "" "Set storage bucket configuration keys\n" "\n" @@ -5649,7 +5645,7 @@ msgid "" " lxc storage volume set [:] [/] " msgstr "" -#: lxc/remote.go:923 lxc/remote.go:924 +#: lxc/remote.go:924 lxc/remote.go:925 msgid "Set the URL for the remote" msgstr "" @@ -5677,7 +5673,7 @@ msgstr "" msgid "Set the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:458 +#: lxc/network_load_balancer.go:463 #, fuzzy msgid "Set the key as a network load balancer property" msgstr "Il nome del container è: %s" @@ -5690,12 +5686,12 @@ msgstr "" msgid "Set the key as a network property" msgstr "" -#: lxc/network_zone.go:361 +#: lxc/network_zone.go:366 #, fuzzy msgid "Set the key as a network zone property" msgstr "Creazione del container in corso" -#: lxc/network_zone.go:957 +#: lxc/network_zone.go:962 #, fuzzy msgid "Set the key as a network zone record property" msgstr "Il nome del container è: %s" @@ -5708,7 +5704,7 @@ msgstr "" msgid "Set the key as a project property" msgstr "" -#: lxc/storage_bucket.go:537 +#: lxc/storage_bucket.go:542 #, fuzzy msgid "Set the key as a storage bucket property" msgstr "Creazione del container in corso" @@ -5729,11 +5725,11 @@ msgstr "" msgid "Setup SSH SFTP listener on address:port instead of mounting" msgstr "" -#: lxc/main.go:97 +#: lxc/main.go:98 msgid "Show all debug messages" msgstr "" -#: lxc/main.go:98 +#: lxc/main.go:99 msgid "Show all information messages" msgstr "" @@ -5805,7 +5801,7 @@ msgstr "" msgid "Show instance or server information" msgstr "" -#: lxc/main.go:271 lxc/main.go:272 +#: lxc/main.go:272 lxc/main.go:273 msgid "Show less common commands" msgstr "" @@ -5840,17 +5836,17 @@ msgstr "Il nome del container è: %s" msgid "Show network peer configurations" msgstr "Il nome del container è: %s" -#: lxc/network_zone.go:155 lxc/network_zone.go:156 +#: lxc/network_zone.go:156 lxc/network_zone.go:157 #, fuzzy msgid "Show network zone configurations" msgstr "Il nome del container è: %s" -#: lxc/network_zone.go:758 +#: lxc/network_zone.go:763 #, fuzzy msgid "Show network zone record configuration" msgstr "Il nome del container è: %s" -#: lxc/network_zone.go:759 +#: lxc/network_zone.go:764 #, fuzzy msgid "Show network zone record configurations" msgstr "Il nome del container è: %s" @@ -5863,12 +5859,12 @@ msgstr "" msgid "Show project options" msgstr "" -#: lxc/storage_bucket.go:623 lxc/storage_bucket.go:624 +#: lxc/storage_bucket.go:628 lxc/storage_bucket.go:629 #, fuzzy msgid "Show storage bucket configurations" msgstr "Il nome del container è: %s" -#: lxc/storage_bucket.go:1123 lxc/storage_bucket.go:1124 +#: lxc/storage_bucket.go:1128 lxc/storage_bucket.go:1129 #, fuzzy msgid "Show storage bucket key configurations" msgstr "Il nome del container è: %s" @@ -5895,7 +5891,7 @@ msgid "" "that are granted via identity provider group mappings. \n" msgstr "" -#: lxc/remote.go:630 lxc/remote.go:631 +#: lxc/remote.go:631 lxc/remote.go:632 msgid "Show the default remote" msgstr "" @@ -6022,22 +6018,22 @@ msgstr "" msgid "Stopping the instance failed: %s" msgstr "errore di processamento degli alias %s\n" -#: lxc/storage_bucket.go:161 +#: lxc/storage_bucket.go:166 #, c-format msgid "Storage bucket %s created" msgstr "" -#: lxc/storage_bucket.go:228 +#: lxc/storage_bucket.go:233 #, c-format msgid "Storage bucket %s deleted" msgstr "" -#: lxc/storage_bucket.go:907 +#: lxc/storage_bucket.go:912 #, c-format msgid "Storage bucket key %s added" msgstr "" -#: lxc/storage_bucket.go:973 +#: lxc/storage_bucket.go:978 #, c-format msgid "Storage bucket key %s removed" msgstr "" @@ -6111,7 +6107,7 @@ msgstr "" msgid "Switch the current project" msgstr "" -#: lxc/remote.go:883 lxc/remote.go:884 +#: lxc/remote.go:884 lxc/remote.go:885 msgid "Switch the default remote" msgstr "" @@ -6228,7 +6224,7 @@ msgstr "Il nome del container è: %s" msgid "The property %q does not exist on the instance snapshot %s/%s: %v" msgstr "Il nome del container è: %s" -#: lxc/network_load_balancer.go:424 +#: lxc/network_load_balancer.go:429 #, fuzzy, c-format msgid "The property %q does not exist on the load balancer %q: %v" msgstr "Il nome del container è: %s" @@ -6253,12 +6249,12 @@ msgstr "Il nome del container è: %s" msgid "The property %q does not exist on the network peer %q: %v" msgstr "Il nome del container è: %s" -#: lxc/network_zone.go:246 +#: lxc/network_zone.go:247 #, fuzzy, c-format msgid "The property %q does not exist on the network zone %q: %v" msgstr "Il nome del container è: %s" -#: lxc/network_zone.go:845 +#: lxc/network_zone.go:850 #, fuzzy, c-format msgid "The property %q does not exist on the network zone record %q: %v" msgstr "Il nome del container è: %s" @@ -6273,7 +6269,7 @@ msgstr "Il nome del container è: %s" msgid "The property %q does not exist on the project %q: %v" msgstr "Il nome del container è: %s" -#: lxc/storage_bucket.go:426 +#: lxc/storage_bucket.go:431 #, fuzzy, c-format msgid "The property %q does not exist on the storage bucket %q: %v" msgstr "Il nome del container è: %s" @@ -6329,7 +6325,7 @@ msgstr "" msgid "This LXD server is not available on the network" msgstr "Import da directory non disponibile su questa piattaforma" -#: lxc/main.go:293 +#: lxc/main.go:294 msgid "" "This client hasn't been configured to use a remote LXD server yet.\n" "As your platform can't run native Linux instances, you must connect to a " @@ -6361,11 +6357,11 @@ msgstr "" msgid "To create a new network, use: lxc network create" msgstr "" -#: lxc/console.go:210 +#: lxc/console.go:215 msgid "To detach from the console, press: +a q" msgstr "" -#: lxc/main.go:403 +#: lxc/main.go:406 msgid "" "To start your first container, try: lxc launch ubuntu:24.04\n" "Or for a virtual machine: lxc launch ubuntu:24.04 --vm" @@ -6464,7 +6460,7 @@ msgstr "" msgid "UPLOAD DATE" msgstr "" -#: lxc/cluster.go:184 lxc/remote.go:732 +#: lxc/cluster.go:184 lxc/remote.go:733 msgid "URL" msgstr "" @@ -6473,7 +6469,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:679 lxc/project.go:506 +#: lxc/network_zone.go:141 lxc/profile.go:679 lxc/project.go:506 #: lxc/storage.go:647 lxc/storage_volume.go:1564 msgid "USED BY" msgstr "" @@ -6492,7 +6488,7 @@ msgstr "" msgid "Unable to create a temporary file: %v" msgstr "" -#: lxc/remote.go:213 lxc/remote.go:247 +#: lxc/remote.go:214 lxc/remote.go:248 #, fuzzy msgid "Unavailable remote server" msgstr "Aggiungi un nuovo server remoto" @@ -6513,7 +6509,7 @@ msgstr "" msgid "Unknown column shorthand char '%c' in '%s'" msgstr "" -#: lxc/console.go:159 +#: lxc/console.go:164 #, c-format msgid "Unknown console type %q" msgstr "" @@ -6576,12 +6572,12 @@ msgstr "" msgid "Unset network forward keys" msgstr "" -#: lxc/network_load_balancer.go:548 +#: lxc/network_load_balancer.go:553 #, fuzzy msgid "Unset network load balancer configuration keys" msgstr "Il nome del container è: %s" -#: lxc/network_load_balancer.go:549 +#: lxc/network_load_balancer.go:554 #, fuzzy msgid "Unset network load balancer keys" msgstr "Il nome del container è: %s" @@ -6595,12 +6591,12 @@ msgstr "Il nome del container è: %s" msgid "Unset network peer keys" msgstr "" -#: lxc/network_zone.go:433 lxc/network_zone.go:434 +#: lxc/network_zone.go:438 lxc/network_zone.go:439 #, fuzzy msgid "Unset network zone configuration keys" msgstr "Il nome del container è: %s" -#: lxc/network_zone.go:1027 lxc/network_zone.go:1028 +#: lxc/network_zone.go:1032 lxc/network_zone.go:1033 #, fuzzy msgid "Unset network zone record configuration keys" msgstr "Il nome del container è: %s" @@ -6613,7 +6609,7 @@ msgstr "" msgid "Unset project configuration keys" msgstr "" -#: lxc/storage_bucket.go:692 lxc/storage_bucket.go:693 +#: lxc/storage_bucket.go:697 lxc/storage_bucket.go:698 #, fuzzy msgid "Unset storage bucket configuration keys" msgstr "Il nome del container è: %s" @@ -6638,7 +6634,7 @@ msgstr "" msgid "Unset the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:552 +#: lxc/network_load_balancer.go:557 #, fuzzy msgid "Unset the key as a network load balancer property" msgstr "Il nome del container è: %s" @@ -6651,12 +6647,12 @@ msgstr "" msgid "Unset the key as a network property" msgstr "" -#: lxc/network_zone.go:437 +#: lxc/network_zone.go:442 #, fuzzy msgid "Unset the key as a network zone property" msgstr "Creazione del container in corso" -#: lxc/network_zone.go:1031 +#: lxc/network_zone.go:1036 #, fuzzy msgid "Unset the key as a network zone record property" msgstr "Il nome del container è: %s" @@ -6669,7 +6665,7 @@ msgstr "" msgid "Unset the key as a project property" msgstr "" -#: lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:701 #, fuzzy msgid "Unset the key as a storage bucket property" msgstr "Il nome del container è: %s" @@ -6734,7 +6730,7 @@ msgid "" "Use storage driver optimized format (can only be restored on a similar pool)" msgstr "" -#: lxc/main.go:100 +#: lxc/main.go:101 msgid "Use with help or --help to view sub-commands" msgstr "" @@ -6831,7 +6827,7 @@ msgstr "" #: lxc/network.go:959 lxc/operation.go:156 lxc/project.go:458 #: lxc/project.go:463 lxc/project.go:468 lxc/project.go:473 lxc/project.go:478 -#: lxc/project.go:483 lxc/remote.go:693 lxc/remote.go:698 lxc/remote.go:703 +#: lxc/project.go:483 lxc/remote.go:694 lxc/remote.go:699 lxc/remote.go:704 msgid "YES" msgstr "" @@ -6871,7 +6867,7 @@ msgstr "Creazione del container in corso" #: 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/network.go:909 lxc/network_acl.go:91 lxc/network_zone.go:83 #: lxc/operation.go:103 lxc/profile.go:630 lxc/project.go:407 #: lxc/storage.go:583 lxc/version.go:20 lxc/warning.go:68 #, fuzzy @@ -6948,22 +6944,22 @@ msgstr "Creazione del container in corso" msgid "[:]" msgstr "Creazione del container in corso" -#: lxc/network_zone.go:154 lxc/network_zone.go:463 lxc/network_zone.go:581 +#: lxc/network_zone.go:155 lxc/network_zone.go:468 lxc/network_zone.go:586 #, fuzzy msgid "[:]" msgstr "Creazione del container in corso" -#: lxc/network_zone.go:209 lxc/network_zone.go:432 +#: lxc/network_zone.go:210 lxc/network_zone.go:437 #, fuzzy msgid "[:] " msgstr "Creazione del container in corso" -#: lxc/network_zone.go:352 +#: lxc/network_zone.go:357 #, fuzzy msgid "[:] =..." msgstr "Creazione del container in corso" -#: lxc/network_zone.go:269 +#: lxc/network_zone.go:270 #, fuzzy msgid "[:] [key=value...]" msgstr "Creazione del container in corso" @@ -7264,17 +7260,17 @@ msgstr "Creazione del container in corso" #: lxc/network_forward.go:169 lxc/network_forward.go:574 #: lxc/network_forward.go:715 lxc/network_load_balancer.go:171 -#: lxc/network_load_balancer.go:577 lxc/network_load_balancer.go:719 +#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:724 #, fuzzy msgid "[:] " msgstr "Creazione del container in corso" -#: lxc/network_load_balancer.go:860 +#: lxc/network_load_balancer.go:865 #, fuzzy msgid "[:] " msgstr "Creazione del container in corso" -#: lxc/network_load_balancer.go:796 +#: lxc/network_load_balancer.go:801 #, fuzzy msgid "" "[:] " @@ -7282,17 +7278,17 @@ msgid "" msgstr "Creazione del container in corso" #: lxc/network_forward.go:377 lxc/network_forward.go:544 -#: lxc/network_load_balancer.go:381 lxc/network_load_balancer.go:547 +#: lxc/network_load_balancer.go:386 lxc/network_load_balancer.go:552 #, fuzzy msgid "[:] " msgstr "Creazione del container in corso" -#: lxc/network_forward.go:446 lxc/network_load_balancer.go:449 +#: lxc/network_forward.go:446 lxc/network_load_balancer.go:454 #, fuzzy msgid "[:] =..." msgstr "Creazione del container in corso" -#: lxc/network_load_balancer.go:961 +#: lxc/network_load_balancer.go:966 #, fuzzy msgid "" "[:] " @@ -7305,7 +7301,7 @@ msgid "" " []" msgstr "" -#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1022 +#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1027 #, fuzzy msgid "[:] [] []" msgstr "Creazione del container in corso" @@ -7368,7 +7364,7 @@ msgid "[:]" msgstr "Creazione del container in corso" #: lxc/storage.go:167 lxc/storage.go:218 lxc/storage.go:412 lxc/storage.go:759 -#: lxc/storage_bucket.go:449 +#: lxc/storage_bucket.go:454 #, fuzzy msgid "[:]" msgstr "Creazione del container in corso" @@ -7378,20 +7374,20 @@ msgstr "Creazione del container in corso" msgid "[:] []" msgstr "Creazione del container in corso" -#: lxc/storage_bucket.go:180 lxc/storage_bucket.go:242 -#: lxc/storage_bucket.go:622 lxc/storage_bucket.go:764 +#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:247 +#: lxc/storage_bucket.go:627 lxc/storage_bucket.go:769 #, fuzzy msgid "[:] " msgstr "Creazione del container in corso" -#: lxc/storage_bucket.go:375 lxc/storage_bucket.go:691 -#: lxc/storage_bucket.go:845 lxc/storage_bucket.go:923 -#: lxc/storage_bucket.go:987 lxc/storage_bucket.go:1122 +#: lxc/storage_bucket.go:380 lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:850 lxc/storage_bucket.go:928 +#: lxc/storage_bucket.go:992 lxc/storage_bucket.go:1127 #, fuzzy msgid "[:] " msgstr "Creazione del container in corso" -#: lxc/storage_bucket.go:528 +#: lxc/storage_bucket.go:533 #, fuzzy msgid "[:] =..." msgstr "Creazione del container in corso" @@ -7570,32 +7566,32 @@ msgstr "Creazione del container in corso" msgid "[:]" msgstr "Creazione del container in corso" -#: lxc/network_zone.go:686 +#: lxc/network_zone.go:691 #, fuzzy msgid "[:]" msgstr "Creazione del container in corso" -#: lxc/network_zone.go:757 lxc/network_zone.go:1056 lxc/network_zone.go:1173 +#: lxc/network_zone.go:762 lxc/network_zone.go:1061 lxc/network_zone.go:1178 #, fuzzy msgid "[:] " msgstr "Creazione del container in corso" -#: lxc/network_zone.go:809 lxc/network_zone.go:1026 +#: lxc/network_zone.go:814 lxc/network_zone.go:1031 #, fuzzy msgid "[:] " msgstr "Creazione del container in corso" -#: lxc/network_zone.go:950 +#: lxc/network_zone.go:955 #, fuzzy msgid "[:] =..." msgstr "Creazione del container in corso" -#: lxc/network_zone.go:1238 lxc/network_zone.go:1284 +#: lxc/network_zone.go:1243 lxc/network_zone.go:1289 #, fuzzy msgid "[:] " msgstr "Creazione del container in corso" -#: lxc/network_zone.go:868 +#: lxc/network_zone.go:873 #, fuzzy msgid "[:] [key=value...]" msgstr "Creazione del container in corso" @@ -7625,7 +7621,7 @@ msgstr "Creazione del container in corso" msgid "[:][] [...]" msgstr "Creazione del container in corso" -#: lxc/remote.go:88 +#: lxc/remote.go:89 #, fuzzy msgid "[] " msgstr "Creazione del container in corso" @@ -7635,7 +7631,7 @@ msgstr "Creazione del container in corso" msgid "[[:]]" msgstr "Creazione del container in corso" -#: lxc/project.go:488 lxc/remote.go:722 +#: lxc/project.go:488 lxc/remote.go:723 msgid "current" msgstr "" @@ -7898,6 +7894,23 @@ msgid "" " Create a new OVN network called bar using baz as its uplink network" msgstr "" +#: lxc/network_load_balancer.go:239 +msgid "" +"lxc network load-balancer create n1 127.0.0.1\n" +"\n" +"lxc network load-balancer create n1 127.0.0.1 < config.yaml\n" +" Create network load-balancer for network n1 with configuration from " +"config.yaml" +msgstr "" + +#: lxc/network_zone.go:273 +msgid "" +"lxc network zone create z1\n" +"\n" +"lxc network zone create z1 < config.yaml\n" +" Create network zone z1 with configuration from config.yaml" +msgstr "" + #: lxc/operation.go:195 msgid "" "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n" @@ -7968,26 +7981,36 @@ msgid "" " Restore the snapshot." msgstr "" -#: lxc/storage_bucket.go:245 +#: lxc/storage_bucket.go:84 +msgid "" +"lxc storage bucket create p1 b01\n" +"\tCreate a new storage bucket name b01 in storage pool p1\n" +"\n" +"lxc storage bucket create p1 b01 < config.yaml\n" +"\tCreate a new storage bucket name b01 in storage pool p1 using the content " +"of config.yaml" +msgstr "" + +#: lxc/storage_bucket.go:250 msgid "" "lxc storage bucket edit [:] < bucket.yaml\n" " Update a storage bucket using the content of bucket.yaml." msgstr "" -#: lxc/storage_bucket.go:990 +#: lxc/storage_bucket.go:995 msgid "" "lxc storage bucket edit [:] < key.yaml\n" " Update a storage bucket key using the content of key.yaml." msgstr "" -#: lxc/storage_bucket.go:1125 +#: lxc/storage_bucket.go:1130 msgid "" "lxc storage bucket key show default data foo\n" " Will show the properties of a bucket key called \"foo\" for a bucket " "called \"data\" in the \"default\" pool." msgstr "" -#: lxc/storage_bucket.go:625 +#: lxc/storage_bucket.go:630 msgid "" "lxc storage bucket show default data\n" " Will show the properties of a bucket called \"data\" in the \"default\" " @@ -8006,7 +8029,7 @@ msgid "" "\t\tCreate a new custom volume using backup0.tar.gz as the source." msgstr "" -#: lxc/remote.go:459 +#: lxc/remote.go:460 #, fuzzy msgid "n" msgstr "no" @@ -8019,7 +8042,7 @@ msgstr "" msgid "no" msgstr "no" -#: lxc/remote.go:452 +#: lxc/remote.go:453 msgid "ok (y/n/[fingerprint])?" msgstr "" @@ -8056,7 +8079,7 @@ msgstr "" msgid "used by" msgstr "" -#: lxc/remote.go:461 +#: lxc/remote.go:462 msgid "y" msgstr "" @@ -8092,10 +8115,6 @@ msgstr "si" #~ msgid "[[:]] [:][] [< config" #~ msgstr "Creazione del container in corso" -#, fuzzy -#~ msgid "[:] " -#~ msgstr "Creazione del container in corso" - #, fuzzy #~ msgid "[:] " #~ msgstr "Creazione del container in corso" diff --git a/po/ja.po b/po/ja.po index 72e279b6d75c..d884cb1d583d 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-08-20 09:31+0100\n" +"POT-Creation-Date: 2024-08-30 09:27+0100\n" "PO-Revision-Date: 2023-03-10 15:14+0000\n" "Last-Translator: KATOH Yasufumi \n" "Language-Team: Japanese " msgid " " msgstr " " -#: lxc/remote.go:825 lxc/remote.go:882 +#: lxc/remote.go:826 lxc/remote.go:883 msgid "" msgstr "" -#: lxc/remote.go:922 +#: lxc/remote.go:923 msgid " " msgstr " " -#: lxc/remote.go:752 +#: lxc/remote.go:753 msgid " " msgstr " " @@ -792,7 +792,7 @@ msgstr "ALIASES" msgid "ARCHITECTURE" msgstr "ARCHITECTURE" -#: lxc/remote.go:734 +#: lxc/remote.go:735 msgid "AUTH TYPE" msgstr "AUTH TYPE" @@ -800,15 +800,15 @@ msgstr "AUTH TYPE" msgid "AUTHENTICATION METHOD" msgstr "" -#: lxc/remote.go:100 +#: lxc/remote.go:101 msgid "Accept certificate" msgstr "証明書を受け入れます" -#: lxc/storage_bucket.go:852 +#: lxc/storage_bucket.go:857 msgid "Access key (auto-generated if empty)" msgstr "アクセスキー(空白の場合自動生成)" -#: lxc/storage_bucket.go:908 +#: lxc/storage_bucket.go:913 #, c-format msgid "Access key: %s" msgstr "アクセスキー: %s" @@ -843,19 +843,19 @@ msgstr "" msgid "Add a group to an identity provider group" msgstr "" -#: lxc/network_zone.go:1239 +#: lxc/network_zone.go:1244 msgid "Add a network zone record entry" msgstr "ネットワークゾーンレコードのエントリを追加します" -#: lxc/network_load_balancer.go:798 +#: lxc/network_load_balancer.go:803 msgid "Add backend to a load balancer" msgstr "ロードバランサーにバックエンドを追加します" -#: lxc/network_load_balancer.go:797 +#: lxc/network_load_balancer.go:802 msgid "Add backends to a load balancer" msgstr "ロードバランサーにバックエンドを追加します" -#: lxc/network_zone.go:1240 +#: lxc/network_zone.go:1245 msgid "Add entries to a network zone record" msgstr "ネットワークゾーンレコードにエントリを追加します" @@ -872,11 +872,11 @@ msgstr "グループからメンバーを削除します" msgid "Add new aliases" msgstr "新たにエイリアスを追加します" -#: lxc/remote.go:89 +#: lxc/remote.go:90 msgid "Add new remote servers" msgstr "新たにリモートサーバを追加します" -#: lxc/remote.go:90 +#: lxc/remote.go:91 msgid "" "Add new remote servers\n" "\n" @@ -936,7 +936,7 @@ msgstr "グループからメンバーを削除します" msgid "Add ports to a forward" msgstr "フォワードにポートを追加します" -#: lxc/network_load_balancer.go:962 lxc/network_load_balancer.go:963 +#: lxc/network_load_balancer.go:967 lxc/network_load_balancer.go:968 msgid "Add ports to a load balancer" msgstr "ロードバランサーにポートを追加します" @@ -957,17 +957,17 @@ msgstr "ACLにルールを追加します" msgid "Address: %s" msgstr "アドレス: %s" -#: lxc/storage_bucket.go:164 +#: lxc/storage_bucket.go:169 #, c-format msgid "Admin access key: %s" msgstr "管理者アクセスキー: %s" -#: lxc/remote.go:566 +#: lxc/remote.go:567 #, c-format msgid "Admin password (or token) for %s:" msgstr "%s の管理者パスワード(もしくはトークン):" -#: lxc/storage_bucket.go:165 +#: lxc/storage_bucket.go:170 #, c-format msgid "Admin secret key: %s" msgstr "管理者秘密鍵: %s" @@ -999,7 +999,7 @@ msgstr "エイリアス:" msgid "All projects" msgstr "すべてのプロジェクト" -#: lxc/remote.go:181 +#: lxc/remote.go:182 msgid "All server addresses are unavailable" msgstr "すべてのサーバーアドレスが利用できません" @@ -1023,7 +1023,7 @@ msgid "Are you sure you want to %s cluster member %q? (yes/no) [default=no]: " msgstr "" "本当に %s しますか? (対象: クラスターメンバー %q) (yes/no) [default=no]: " -#: lxc/console.go:383 +#: lxc/console.go:388 msgid "As neither could be found, the raw SPICE socket can be found at:" msgstr "どちらもみつかりませんでした。raw SPICE ソケットはこちらにあります:" @@ -1075,7 +1075,7 @@ msgstr "" "このコマンドはインスタンスのブートコンソールに接続できます。\n" "そしてそこから過去のログエントリを取り出すことができます。" -#: lxc/remote.go:548 +#: lxc/remote.go:549 #, c-format msgid "Authentication type '%s' not supported by server" msgstr "認証タイプ '%s' はサーバではサポートされていません" @@ -1094,11 +1094,11 @@ msgstr "自動更新は pull モードのときのみ有効です" msgid "Auto update: %s" msgstr "自動更新: %s" -#: lxc/network_forward.go:240 lxc/network_load_balancer.go:242 +#: lxc/network_forward.go:240 lxc/network_load_balancer.go:247 msgid "Auto-allocate an IPv4 or IPv6 listen address. One of 'ipv4', 'ipv6'." msgstr "" -#: lxc/remote.go:136 +#: lxc/remote.go:137 msgid "Available projects:" msgstr "利用可能なプロジェクト:" @@ -1132,8 +1132,8 @@ msgstr "" ",=: %s" #: lxc/network.go:333 lxc/network_acl.go:382 lxc/network_forward.go:293 -#: lxc/network_load_balancer.go:296 lxc/network_peer.go:280 -#: lxc/network_zone.go:324 lxc/network_zone.go:922 lxc/storage_bucket.go:136 +#: lxc/network_load_balancer.go:301 lxc/network_peer.go:280 +#: lxc/network_zone.go:329 lxc/network_zone.go:927 lxc/storage_bucket.go:141 #, c-format msgid "Bad key/value pair: %s" msgstr "不適切なキー/値のペア: %s" @@ -1256,7 +1256,7 @@ msgstr "" msgid "Can't read from stdin: %w" msgstr "標準入力から読み込めません: %w" -#: lxc/remote.go:861 +#: lxc/remote.go:862 msgid "Can't remove the default remote" msgstr "デフォルトのリモートは削除できません" @@ -1325,18 +1325,18 @@ msgstr "カード: %s (%s)" msgid "Certificate add token for %s deleted" msgstr "%s に対する証明書追加トークンが削除されました" -#: lxc/remote.go:218 +#: lxc/remote.go:452 +#, fuzzy +msgid "Certificate fingerprint" +msgstr "証明書のフィンガープリント: %s" + +#: lxc/remote.go:219 #, c-format msgid "" "Certificate fingerprint mismatch between certificate token and server %q" msgstr "" "証明書のフィンガープリントが証明書トークンとサーバの間で一致しません %q" -#: lxc/remote.go:451 -#, c-format -msgid "Certificate fingerprint: %s" -msgstr "証明書のフィンガープリント: %s" - #: lxc/network.go:893 msgid "Chassis" msgstr "Chassis" @@ -1346,7 +1346,7 @@ msgstr "Chassis" msgid "Client %s certificate add token:" msgstr "クライアント %s の証明書追加トークン:" -#: lxc/remote.go:603 +#: lxc/remote.go:604 msgid "Client certificate now trusted by server:" msgstr "クライアント証明書がサーバに信頼されました:" @@ -1408,18 +1408,18 @@ msgstr "クラスターメンバー %s がグループ %s から削除されま #: lxc/network_forward.go:456 lxc/network_forward.go:579 #: lxc/network_forward.go:721 lxc/network_forward.go:798 #: lxc/network_forward.go:864 lxc/network_load_balancer.go:176 -#: lxc/network_load_balancer.go:241 lxc/network_load_balancer.go:459 -#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:725 -#: lxc/network_load_balancer.go:801 lxc/network_load_balancer.go:865 -#: lxc/network_load_balancer.go:966 lxc/network_load_balancer.go:1028 +#: lxc/network_load_balancer.go:246 lxc/network_load_balancer.go:464 +#: lxc/network_load_balancer.go:587 lxc/network_load_balancer.go:730 +#: lxc/network_load_balancer.go:806 lxc/network_load_balancer.go:870 +#: lxc/network_load_balancer.go:971 lxc/network_load_balancer.go:1033 #: lxc/storage.go:99 lxc/storage.go:347 lxc/storage.go:418 lxc/storage.go:671 -#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:85 -#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:248 -#: lxc/storage_bucket.go:379 lxc/storage_bucket.go:536 -#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:695 -#: lxc/storage_bucket.go:770 lxc/storage_bucket.go:850 -#: lxc/storage_bucket.go:928 lxc/storage_bucket.go:993 -#: lxc/storage_bucket.go:1129 lxc/storage_volume.go:358 +#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:90 +#: lxc/storage_bucket.go:190 lxc/storage_bucket.go:253 +#: lxc/storage_bucket.go:384 lxc/storage_bucket.go:541 +#: lxc/storage_bucket.go:634 lxc/storage_bucket.go:700 +#: lxc/storage_bucket.go:775 lxc/storage_bucket.go:855 +#: lxc/storage_bucket.go:933 lxc/storage_bucket.go:998 +#: lxc/storage_bucket.go:1134 lxc/storage_volume.go:358 #: lxc/storage_volume.go:560 lxc/storage_volume.go:639 #: lxc/storage_volume.go:883 lxc/storage_volume.go:1097 #: lxc/storage_volume.go:1210 lxc/storage_volume.go:1678 @@ -1447,11 +1447,11 @@ msgstr "クラスタリングが有効になりました" msgid "Columns" msgstr "カラムレイアウト" -#: lxc/main.go:81 +#: lxc/main.go:82 msgid "Command line client for LXD" msgstr "LXD のコマンドラインクライアント" -#: lxc/main.go:82 +#: lxc/main.go:83 msgid "" "Command line client for LXD\n" "\n" @@ -1487,19 +1487,15 @@ msgstr "移動先のインスタンスに適用するキー/値の設定" #: lxc/config.go:347 lxc/config.go:1277 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/network_load_balancer.go:694 lxc/network_peer.go:610 +#: lxc/network_zone.go:556 lxc/network_zone.go:1148 lxc/profile.go:538 +#: lxc/project.go:315 lxc/storage.go:310 lxc/storage_bucket.go:348 +#: lxc/storage_bucket.go:1097 lxc/storage_volume.go:1016 #: lxc/storage_volume.go:1048 #, c-format msgid "Config parsing error: %s" msgstr "設定の構文エラー: %s" -#: lxc/console.go:140 -msgid "Console log:" -msgstr "コンソールログ:" - #: lxc/storage_volume.go:561 msgid "Content type, block or filesystem" msgstr "ストレージボリュームのタイプ、block もしくは filesystem" @@ -1617,12 +1613,12 @@ msgstr "コア %d" msgid "Cores:" msgstr "コア:" -#: lxc/remote.go:486 +#: lxc/remote.go:487 #, c-format msgid "Could not close server cert file %q: %w" msgstr "サーバ証明書ファイル %q をクローズできません: %w" -#: lxc/remote.go:224 lxc/remote.go:470 +#: lxc/remote.go:225 lxc/remote.go:471 msgid "Could not create server cert dir" msgstr "サーバ証明書格納用のディレクトリを作成できません" @@ -1661,12 +1657,12 @@ msgstr "秘密鍵ファイル %s をエラーで読み込めません: %v" msgid "Could not write new remote certificate for remote '%s' with error: %v" msgstr "リモート '%s' に対する新しいリモート証明書がエラーで書き込めません: %v" -#: lxc/remote.go:481 +#: lxc/remote.go:482 #, c-format msgid "Could not write server cert file %q: %w" msgstr "サーバ証明書ファイル %q を書き込めません: %w" -#: lxc/network_zone.go:1327 +#: lxc/network_zone.go:1332 msgid "Couldn't find a matching entry" msgstr "一致するエントリを見つけられませんでした" @@ -1724,7 +1720,7 @@ msgstr "" msgid "Create instances from images" msgstr "イメージからインスタンスを作成します" -#: lxc/storage_bucket.go:846 lxc/storage_bucket.go:847 +#: lxc/storage_bucket.go:851 lxc/storage_bucket.go:852 msgid "Create key for a storage bucket" msgstr "ストレージバケットに対する鍵を作成します" @@ -1756,11 +1752,11 @@ msgstr "新たにネットワークロードバランサーを作成します" msgid "Create new network peering" msgstr "新たにネットワークピアリングを作成します" -#: lxc/network_zone.go:869 lxc/network_zone.go:870 +#: lxc/network_zone.go:874 lxc/network_zone.go:875 msgid "Create new network zone record" msgstr "新たにネットワークゾーンレコードを作成します" -#: lxc/network_zone.go:270 lxc/network_zone.go:271 +#: lxc/network_zone.go:271 lxc/network_zone.go:272 msgid "Create new network zones" msgstr "新たにネットワークゾーンを作成します" @@ -1811,9 +1807,9 @@ msgstr "DEFAULT TARGET ADDRESS" #: 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/network_zone.go:140 lxc/network_zone.go:747 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_bucket.go:512 lxc/storage_bucket.go:832 #: lxc/storage_volume.go:1562 msgid "DESCRIPTION" msgstr "DESCRIPTION" @@ -1880,7 +1876,7 @@ msgstr "インスタンスのファイルテンプレートを削除します" msgid "Delete instances and snapshots" msgstr "インスタンスとスナップショットを削除します" -#: lxc/storage_bucket.go:924 lxc/storage_bucket.go:925 +#: lxc/storage_bucket.go:929 lxc/storage_bucket.go:930 msgid "Delete key from a storage bucket" msgstr "ストレージバケットからキーを削除します" @@ -1892,7 +1888,7 @@ msgstr "ネットワーク ACL を削除します" msgid "Delete network forwards" msgstr "ネットワークフォワードを削除します" -#: lxc/network_load_balancer.go:721 lxc/network_load_balancer.go:722 +#: lxc/network_load_balancer.go:726 lxc/network_load_balancer.go:727 msgid "Delete network load balancers" msgstr "ネットワークロードバランサーを削除します" @@ -1900,11 +1896,11 @@ msgstr "ネットワークロードバランサーを削除します" msgid "Delete network peerings" msgstr "ネットワークピアリングを削除します" -#: lxc/network_zone.go:1175 lxc/network_zone.go:1176 +#: lxc/network_zone.go:1180 lxc/network_zone.go:1181 msgid "Delete network zone record" msgstr "ネットワークゾーンレコードを削除します" -#: lxc/network_zone.go:583 lxc/network_zone.go:584 +#: lxc/network_zone.go:588 lxc/network_zone.go:589 msgid "Delete network zones" msgstr "ネットワークゾーンを削除します" @@ -1920,7 +1916,7 @@ msgstr "プロファイルを削除します" msgid "Delete projects" msgstr "プロジェクトを削除します" -#: lxc/storage_bucket.go:182 lxc/storage_bucket.go:183 +#: lxc/storage_bucket.go:187 lxc/storage_bucket.go:188 msgid "Delete storage buckets" msgstr "ストレージバケットを削除します" @@ -1976,7 +1972,7 @@ msgstr "警告を削除します" #: 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/info.go:32 lxc/init.go:43 lxc/launch.go:24 lxc/list.go:48 lxc/main.go:83 #: 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 @@ -1995,22 +1991,22 @@ msgstr "警告を削除します" #: 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_load_balancer.go:238 lxc/network_load_balancer.go:388 +#: lxc/network_load_balancer.go:456 lxc/network_load_balancer.go:554 +#: lxc/network_load_balancer.go:584 lxc/network_load_balancer.go:727 +#: lxc/network_load_balancer.go:788 lxc/network_load_balancer.go:803 +#: lxc/network_load_balancer.go:867 lxc/network_load_balancer.go:953 +#: lxc/network_load_balancer.go:968 lxc/network_load_balancer.go:1029 #: 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/network_zone.go:29 lxc/network_zone.go:86 lxc/network_zone.go:157 +#: lxc/network_zone.go:212 lxc/network_zone.go:272 lxc/network_zone.go:359 +#: lxc/network_zone.go:439 lxc/network_zone.go:470 lxc/network_zone.go:589 +#: lxc/network_zone.go:637 lxc/network_zone.go:694 lxc/network_zone.go:764 +#: lxc/network_zone.go:816 lxc/network_zone.go:875 lxc/network_zone.go:957 +#: lxc/network_zone.go:1033 lxc/network_zone.go:1063 lxc/network_zone.go:1181 +#: lxc/network_zone.go:1230 lxc/network_zone.go:1245 lxc/network_zone.go:1291 #: 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 @@ -2019,19 +2015,19 @@ msgstr "警告を削除します" #: 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:631 lxc/remote.go:669 lxc/remote.go:755 lxc/remote.go:828 -#: lxc/remote.go:884 lxc/remote.go:924 lxc/rename.go:21 lxc/restore.go:24 +#: lxc/query.go:34 lxc/rebuild.go:27 lxc/remote.go:35 lxc/remote.go:91 +#: lxc/remote.go:632 lxc/remote.go:670 lxc/remote.go:756 lxc/remote.go:829 +#: lxc/remote.go:885 lxc/remote.go:925 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_bucket.go:29 lxc/storage_bucket.go:83 lxc/storage_bucket.go:188 +#: lxc/storage_bucket.go:249 lxc/storage_bucket.go:382 +#: lxc/storage_bucket.go:458 lxc/storage_bucket.go:535 +#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:698 +#: lxc/storage_bucket.go:732 lxc/storage_bucket.go:773 +#: lxc/storage_bucket.go:852 lxc/storage_bucket.go:930 +#: lxc/storage_bucket.go:994 lxc/storage_bucket.go:1129 #: 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 @@ -2173,7 +2169,7 @@ msgstr "すべてのプロジェクトのインスタンスを表示します" msgid "Don't require user confirmation for using --force" msgstr "--force を使う際にユーザーの確認を必要としない" -#: lxc/main.go:99 +#: lxc/main.go:100 msgid "Don't show progress information" msgstr "進捗情報を表示しません" @@ -2186,7 +2182,7 @@ msgstr "Down delay" msgid "Driver: %v (%v)" msgstr "ドライバ: %v (%v)" -#: lxc/network_zone.go:743 +#: lxc/network_zone.go:748 msgid "ENTRIES" msgstr "ENTRIES" @@ -2270,7 +2266,7 @@ msgstr "ネットワーク設定をYAMLで編集します" msgid "Edit network forward configurations as YAML" msgstr "ネットワークフォワード設定をYAMLで編集します" -#: lxc/network_load_balancer.go:578 lxc/network_load_balancer.go:579 +#: lxc/network_load_balancer.go:583 lxc/network_load_balancer.go:584 msgid "Edit network load balancer configurations as YAML" msgstr "ネットワークロードバランサー設定をYAMLで編集します" @@ -2278,11 +2274,11 @@ msgstr "ネットワークロードバランサー設定をYAMLで編集しま msgid "Edit network peer configurations as YAML" msgstr "ネットワークピア設定をYAMLで編集します" -#: lxc/network_zone.go:464 lxc/network_zone.go:465 +#: lxc/network_zone.go:469 lxc/network_zone.go:470 msgid "Edit network zone configurations as YAML" msgstr "ネットワークゾーン設定をYAMLで編集します" -#: lxc/network_zone.go:1057 lxc/network_zone.go:1058 +#: lxc/network_zone.go:1062 lxc/network_zone.go:1063 msgid "Edit network zone record configurations as YAML" msgstr "ネットワークゾーンレコードをYAMLで編集します" @@ -2294,11 +2290,11 @@ msgstr "プロファイル設定をYAMLで編集します" msgid "Edit project configurations as YAML" msgstr "プロジェクト設定をYAMLで編集します" -#: lxc/storage_bucket.go:243 lxc/storage_bucket.go:244 +#: lxc/storage_bucket.go:248 lxc/storage_bucket.go:249 msgid "Edit storage bucket configurations as YAML" msgstr "ストレージバケットの設定をYAMLで編集します" -#: lxc/storage_bucket.go:988 lxc/storage_bucket.go:989 +#: lxc/storage_bucket.go:993 lxc/storage_bucket.go:994 msgid "Edit storage bucket key as YAML" msgstr "ストレージバケットの設定をYAMLで編集します" @@ -2350,7 +2346,7 @@ msgstr "" " これは 'lxc config get core.https_address' コマンドでチェックできます。\n" " まだ使用可能でない場合は、アドレスを設定することもできます。" -#: lxc/network_zone.go:1242 +#: lxc/network_zone.go:1247 msgid "Entry TTL" msgstr "TTLを指定します" @@ -2379,9 +2375,9 @@ msgstr "イメージの取得中: %s" #: lxc/cluster.go:414 lxc/config.go:624 lxc/config.go:656 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/network_load_balancer.go:527 lxc/network_peer.go:463 +#: lxc/network_zone.go:414 lxc/network_zone.go:1008 lxc/profile.go:876 +#: lxc/project.go:634 lxc/storage.go:727 lxc/storage_bucket.go:602 #: lxc/storage_volume.go:1947 lxc/storage_volume.go:1985 #, fuzzy, c-format msgid "Error setting properties: %v" @@ -2393,10 +2389,10 @@ 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/network_forward.go:513 lxc/network_load_balancer.go:521 +#: lxc/network_peer.go:457 lxc/network_zone.go:408 lxc/network_zone.go:1002 #: lxc/profile.go:870 lxc/project.go:628 lxc/storage.go:721 -#: lxc/storage_bucket.go:591 lxc/storage_volume.go:1941 +#: lxc/storage_bucket.go:596 lxc/storage_volume.go:1941 #: lxc/storage_volume.go:1979 #, c-format msgid "Error unsetting property: %v" @@ -2597,7 +2593,7 @@ msgstr "デバイス上書きのためのプロファイル %q のロードに msgid "Failed parsing SSH host key: %w" msgstr "SSH ホスト鍵の読み取りに失敗しました: %w" -#: lxc/console.go:361 +#: lxc/console.go:366 #, c-format msgid "Failed starting command: %w" msgstr "コマンドの実行に失敗しました: %w" @@ -2612,11 +2608,11 @@ msgstr "sshfs の起動に失敗しました: %w" msgid "Failed to accept incoming connection: %w" msgstr "受信接続の受け入れに失敗しました: %w" -#: lxc/remote.go:190 +#: lxc/remote.go:191 msgid "Failed to add remote" msgstr "リモートの追加に失敗しました" -#: lxc/remote.go:241 +#: lxc/remote.go:242 #, c-format msgid "Failed to close server cert file %q: %w" msgstr "サーバー証明書ファイル %q のクローズに失敗しました: %w" @@ -2626,7 +2622,7 @@ msgstr "サーバー証明書ファイル %q のクローズに失敗しまし msgid "Failed to connect to cluster member: %w" msgstr "クラスタメンバへの接続に失敗しました: %w" -#: lxc/remote.go:231 +#: lxc/remote.go:232 #, c-format msgid "Failed to create %q: %w" msgstr "%q の作成に失敗しました: %w" @@ -2636,12 +2632,12 @@ msgstr "%q の作成に失敗しました: %w" msgid "Failed to create alias %s: %w" msgstr "エイリアス %s の作成に失敗しました: %w" -#: lxc/remote.go:256 +#: lxc/remote.go:257 #, c-format msgid "Failed to create certificate: %w" msgstr "証明書の作成に失敗しました: %w" -#: lxc/remote.go:263 +#: lxc/remote.go:264 #, c-format msgid "Failed to find project: %w" msgstr "プロジェクトが見つけられませんでした: %w" @@ -2666,7 +2662,7 @@ msgstr "エイリアス %s の削除に失敗しました: %w" msgid "Failed to walk path for %s: %s" msgstr "パス %s にアクセスできませんでした: %s" -#: lxc/remote.go:236 +#: lxc/remote.go:237 #, c-format msgid "Failed to write server cert file %q: %w" msgstr "サーバー証明書 %q の書き込みに失敗しました: %w" @@ -2675,7 +2671,7 @@ msgstr "サーバー証明書 %q の書き込みに失敗しました: %w" msgid "Fast mode (same as --columns=nsacPt)" msgstr "Fast モード (--columns=nsacPt と同じ)" -#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:115 +#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:116 #: lxc/operation.go:136 msgid "Filtering isn't supported yet" msgstr "情報表示のフィルタリングはまだサポートされていません" @@ -2714,7 +2710,7 @@ msgstr "インスタンスを強制停止します" msgid "Force the removal of running instances" msgstr "稼働中のインスタンスを強制的に削除します" -#: lxc/main.go:95 +#: lxc/main.go:96 msgid "Force using the local unix socket" msgstr "強制的にローカルのUNIXソケットを使います" @@ -2763,10 +2759,10 @@ msgstr "" #: 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/network_peer.go:84 lxc/network_zone.go:89 lxc/network_zone.go:697 #: lxc/operation.go:108 lxc/profile.go:637 lxc/project.go:412 -#: lxc/project.go:804 lxc/remote.go:673 lxc/storage.go:588 -#: lxc/storage_bucket.go:454 lxc/storage_bucket.go:769 +#: lxc/project.go:804 lxc/remote.go:674 lxc/storage.go:588 +#: lxc/storage_bucket.go:459 lxc/storage_bucket.go:774 #: lxc/storage_volume.go:1446 lxc/warning.go:93 msgid "Format (csv|json|table|yaml|compact)" msgstr "フォーマット (csv|json|table|yaml|compact)" @@ -2803,7 +2799,7 @@ msgstr "クロック数: %vMhz" msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)" msgstr "クロック数: %vMhz (最小: %vMhz, 最大: %vMhz)" -#: lxc/remote.go:737 +#: lxc/remote.go:738 msgid "GLOBAL" msgstr "GLOBAL" @@ -2823,7 +2819,7 @@ msgstr "" msgid "Generate manpages for all commands" msgstr "すべてのコマンドに対する man ページを作成します" -#: lxc/remote.go:159 lxc/remote.go:397 +#: lxc/remote.go:160 lxc/remote.go:398 msgid "Generating a client certificate. This may take a minute..." msgstr "クライアント証明書を生成します。1分ぐらいかかります..." @@ -2858,7 +2854,7 @@ msgstr "" msgid "Get the key as a network forward property" msgstr "ネットワークフォワードのポートを管理します" -#: lxc/network_load_balancer.go:386 +#: lxc/network_load_balancer.go:391 #, fuzzy msgid "Get the key as a network load balancer property" msgstr "ネットワークロードバランサーのポートを管理します" @@ -2872,12 +2868,12 @@ msgstr "ネットワークピアの設定を行います" msgid "Get the key as a network property" msgstr "" -#: lxc/network_zone.go:214 +#: lxc/network_zone.go:215 #, fuzzy msgid "Get the key as a network zone property" msgstr "新たにネットワークゾーンレコードを作成します" -#: lxc/network_zone.go:814 +#: lxc/network_zone.go:819 #, fuzzy msgid "Get the key as a network zone record property" msgstr "ネットワークゾーンレコードエントリを削除します" @@ -2890,7 +2886,7 @@ msgstr "" msgid "Get the key as a project property" msgstr "" -#: lxc/storage_bucket.go:380 +#: lxc/storage_bucket.go:385 #, fuzzy msgid "Get the key as a storage bucket property" msgstr "ストレージバケットに対する鍵を作成します" @@ -2933,7 +2929,7 @@ msgstr "ネットワークの設定値を取得します" msgid "Get values for network forward configuration keys" msgstr "ネットワークフォワードの設定値を取得します" -#: lxc/network_load_balancer.go:382 lxc/network_load_balancer.go:383 +#: lxc/network_load_balancer.go:387 lxc/network_load_balancer.go:388 msgid "Get values for network load balancer configuration keys" msgstr "ネットワークロードバランサーの設定値を取得します" @@ -2941,11 +2937,11 @@ msgstr "ネットワークロードバランサーの設定値を取得します msgid "Get values for network peer configuration keys" msgstr "ネットワークピアの設定値を取得します" -#: lxc/network_zone.go:210 lxc/network_zone.go:211 +#: lxc/network_zone.go:211 lxc/network_zone.go:212 msgid "Get values for network zone configuration keys" msgstr "ネットワークゾーンの設定値を取得します" -#: lxc/network_zone.go:810 lxc/network_zone.go:811 +#: lxc/network_zone.go:815 lxc/network_zone.go:816 msgid "Get values for network zone record configuration keys" msgstr "ネットワークゾーンレコードの設定値を取得します" @@ -2957,7 +2953,7 @@ msgstr "プロファイルの設定値を取得します" msgid "Get values for project configuration keys" msgstr "プロジェクトの設定値を取得します" -#: lxc/storage_bucket.go:376 lxc/storage_bucket.go:377 +#: lxc/storage_bucket.go:381 lxc/storage_bucket.go:382 msgid "Get values for storage bucket configuration keys" msgstr "ストレージバケットの設定値を取得します" @@ -3103,7 +3099,7 @@ msgstr "" "存在するスナップショット名の場合は既存のスナップショットを削除したあとに新し" "いスナップショットを作成します" -#: lxc/main.go:398 +#: lxc/main.go:400 msgid "" "If this is your first time running LXD on this machine, you should also run: " "lxd init" @@ -3268,7 +3264,7 @@ msgstr "インスタンス名: %s" msgid "Instance type" msgstr "インスタンスタイプ" -#: lxc/remote.go:349 +#: lxc/remote.go:350 #, c-format msgid "Invalid URL scheme \"%s\" in \"%s\"" msgstr "不正な URL スキーム \"%s\" (\"%s\" 内)" @@ -3348,7 +3344,7 @@ msgstr "" "新しいスナップショット名が不正です。親のボリュームはソースと同じでなければな" "りません" -#: lxc/main.go:498 +#: lxc/main.go:502 msgid "Invalid number of arguments" msgstr "引数の数が不正です" @@ -3357,7 +3353,7 @@ msgstr "引数の数が不正です" msgid "Invalid path %s" msgstr "不正なパス %s" -#: lxc/remote.go:338 +#: lxc/remote.go:339 #, c-format msgid "Invalid protocol: %s" msgstr "不正なプロトコル: %s" @@ -3405,7 +3401,7 @@ msgstr "LISTEN ADDRESS" #: lxc/list.go:597 lxc/network.go:1059 lxc/network_forward.go:155 #: lxc/network_load_balancer.go:157 lxc/operation.go:177 -#: lxc/storage_bucket.go:511 lxc/storage_volume.go:1569 lxc/warning.go:220 +#: lxc/storage_bucket.go:516 lxc/storage_volume.go:1569 lxc/warning.go:220 msgid "LOCATION" msgstr "LOCATION" @@ -3413,7 +3409,7 @@ msgstr "LOCATION" msgid "LXD - Command line client" msgstr "LXD - コマンドラインクライアント" -#: lxc/console.go:382 +#: lxc/console.go:387 msgid "LXD automatically uses either spicy or remote-viewer when present." msgstr "" "LXD は spicy か remote-viewer がインストールされている場合は自動的にどちらか" @@ -3506,15 +3502,15 @@ msgstr "利用可能なネットワークロードバランサーを一覧表示 msgid "List available network peers" msgstr "利用可能なネットワークピアを一覧表示します" -#: lxc/network_zone.go:85 +#: lxc/network_zone.go:86 msgid "List available network zone" msgstr "利用可能なネットワークゾーンを一覧表示します" -#: lxc/network_zone.go:688 lxc/network_zone.go:689 +#: lxc/network_zone.go:693 lxc/network_zone.go:694 msgid "List available network zone records" msgstr "利用可能なネットワークゾーンレコードを一覧表示します" -#: lxc/network_zone.go:84 +#: lxc/network_zone.go:85 msgid "List available network zoneS" msgstr "利用可能なネットワークゾーンを一覧表示します" @@ -3813,11 +3809,11 @@ msgstr "プロファイルを一覧表示します" msgid "List projects" msgstr "プロジェクトを一覧表示します" -#: lxc/storage_bucket.go:766 lxc/storage_bucket.go:768 +#: lxc/storage_bucket.go:771 lxc/storage_bucket.go:773 msgid "List storage bucket keys" msgstr "ストレージバケットの鍵を一覧表示します" -#: lxc/storage_bucket.go:451 lxc/storage_bucket.go:453 +#: lxc/storage_bucket.go:456 lxc/storage_bucket.go:458 msgid "List storage buckets" msgstr "ストレージバケットを一覧表示します" @@ -3860,7 +3856,7 @@ msgstr "" " u - (使用中の)リファレンス数\n" " U - 現在のディスク使用量" -#: lxc/remote.go:668 lxc/remote.go:669 +#: lxc/remote.go:669 lxc/remote.go:670 msgid "List the available remotes" msgstr "利用可能なリモートサーバを一覧表示します" @@ -4122,11 +4118,11 @@ msgstr "ネットワークフォワードのポートを管理します" msgid "Manage network forwards" msgstr "ネットワークフォワードを管理します" -#: lxc/network_load_balancer.go:782 lxc/network_load_balancer.go:783 +#: lxc/network_load_balancer.go:787 lxc/network_load_balancer.go:788 msgid "Manage network load balancer backends" msgstr "ネットワークロードバランサーのバックエンドを管理します" -#: lxc/network_load_balancer.go:947 lxc/network_load_balancer.go:948 +#: lxc/network_load_balancer.go:952 lxc/network_load_balancer.go:953 msgid "Manage network load balancer ports" msgstr "ネットワークロードバランサーのポートを管理します" @@ -4138,15 +4134,15 @@ msgstr "ネットワークロードバランサーを管理します" msgid "Manage network peerings" msgstr "ネットワークピアリングを管理します" -#: lxc/network_zone.go:1224 lxc/network_zone.go:1225 +#: lxc/network_zone.go:1229 lxc/network_zone.go:1230 msgid "Manage network zone record entries" msgstr "ネットワークゾーンレコードのエントリを管理します" -#: lxc/network_zone.go:631 lxc/network_zone.go:632 +#: lxc/network_zone.go:636 lxc/network_zone.go:637 msgid "Manage network zone records" msgstr "ネットワークゾーンレコードを管理します" -#: lxc/network_zone.go:27 lxc/network_zone.go:28 +#: lxc/network_zone.go:28 lxc/network_zone.go:29 msgid "Manage network zones" msgstr "ネットワークゾーンを管理します" @@ -4163,11 +4159,11 @@ msgstr "プロファイルを管理します" msgid "Manage projects" msgstr "プロジェクトを管理します" -#: lxc/storage_bucket.go:726 +#: lxc/storage_bucket.go:731 msgid "Manage storage bucket keys" msgstr "ストレージバケットの鍵を管理します" -#: lxc/storage_bucket.go:727 +#: lxc/storage_bucket.go:732 msgid "Manage storage bucket keys." msgstr "ストレージバケットの鍵を管理します。" @@ -4199,7 +4195,7 @@ msgstr "" "プレフィックスで指定しない限りは、ボリュームに対する操作はすべて \"カスタム" "\" (ユーザが作成した) ボリュームに対して行われます。" -#: lxc/remote.go:33 lxc/remote.go:34 +#: lxc/remote.go:34 lxc/remote.go:35 msgid "Manage the list of remote servers" msgstr "リモートサーバのリストを管理します" @@ -4281,12 +4277,12 @@ msgid "" "Minimum level for log messages (only available when using pretty format)" msgstr "ログメッセージの最小レベル(pretty フォーマット使用時のみ利用可能)" -#: lxc/storage_bucket.go:111 lxc/storage_bucket.go:211 -#: lxc/storage_bucket.go:287 lxc/storage_bucket.go:406 -#: lxc/storage_bucket.go:563 lxc/storage_bucket.go:655 -#: lxc/storage_bucket.go:797 lxc/storage_bucket.go:878 -#: lxc/storage_bucket.go:953 lxc/storage_bucket.go:1032 -#: lxc/storage_bucket.go:1155 +#: lxc/storage_bucket.go:116 lxc/storage_bucket.go:216 +#: lxc/storage_bucket.go:292 lxc/storage_bucket.go:411 +#: lxc/storage_bucket.go:568 lxc/storage_bucket.go:660 +#: lxc/storage_bucket.go:802 lxc/storage_bucket.go:883 +#: lxc/storage_bucket.go:958 lxc/storage_bucket.go:1037 +#: lxc/storage_bucket.go:1160 msgid "Missing bucket name" msgstr "バケット名を指定する必要があります" @@ -4334,8 +4330,8 @@ msgstr "クラスターグループ名がありません" msgid "Missing instance name" msgstr "インスタンス名を指定する必要があります" -#: lxc/storage_bucket.go:882 lxc/storage_bucket.go:957 -#: lxc/storage_bucket.go:1036 lxc/storage_bucket.go:1159 +#: lxc/storage_bucket.go:887 lxc/storage_bucket.go:962 +#: lxc/storage_bucket.go:1041 lxc/storage_bucket.go:1164 msgid "Missing key name" msgstr "鍵の名前を指定する必要があります" @@ -4343,10 +4339,10 @@ msgstr "鍵の名前を指定する必要があります" #: lxc/network_forward.go:481 lxc/network_forward.go:627 #: lxc/network_forward.go:746 lxc/network_forward.go:823 #: lxc/network_forward.go:889 lxc/network_load_balancer.go:201 -#: lxc/network_load_balancer.go:411 lxc/network_load_balancer.go:484 -#: lxc/network_load_balancer.go:630 lxc/network_load_balancer.go:750 -#: lxc/network_load_balancer.go:826 lxc/network_load_balancer.go:890 -#: lxc/network_load_balancer.go:991 lxc/network_load_balancer.go:1053 +#: lxc/network_load_balancer.go:416 lxc/network_load_balancer.go:489 +#: lxc/network_load_balancer.go:635 lxc/network_load_balancer.go:755 +#: lxc/network_load_balancer.go:831 lxc/network_load_balancer.go:895 +#: lxc/network_load_balancer.go:996 lxc/network_load_balancer.go:1058 msgid "Missing listen address" msgstr "リッスンアドレスを指定する必要があります" @@ -4371,26 +4367,26 @@ msgstr "ネットワーク ACL 名を指定する必要があります" #: lxc/network_forward.go:477 lxc/network_forward.go:623 #: lxc/network_forward.go:742 lxc/network_forward.go:819 #: lxc/network_forward.go:885 lxc/network_load_balancer.go:123 -#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:261 -#: lxc/network_load_balancer.go:407 lxc/network_load_balancer.go:480 -#: lxc/network_load_balancer.go:626 lxc/network_load_balancer.go:746 -#: lxc/network_load_balancer.go:822 lxc/network_load_balancer.go:886 -#: lxc/network_load_balancer.go:987 lxc/network_load_balancer.go:1049 +#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:266 +#: lxc/network_load_balancer.go:412 lxc/network_load_balancer.go:485 +#: lxc/network_load_balancer.go:631 lxc/network_load_balancer.go:751 +#: lxc/network_load_balancer.go:827 lxc/network_load_balancer.go:891 +#: lxc/network_load_balancer.go:992 lxc/network_load_balancer.go:1054 #: lxc/network_peer.go:110 lxc/network_peer.go:180 lxc/network_peer.go:237 #: lxc/network_peer.go:355 lxc/network_peer.go:426 lxc/network_peer.go:556 #: lxc/network_peer.go:665 msgid "Missing network name" msgstr "ネットワーク名を指定する必要があります" -#: lxc/network_zone.go:178 lxc/network_zone.go:234 lxc/network_zone.go:294 -#: lxc/network_zone.go:382 lxc/network_zone.go:503 lxc/network_zone.go:606 -#: lxc/network_zone.go:712 lxc/network_zone.go:780 lxc/network_zone.go:892 -#: lxc/network_zone.go:976 lxc/network_zone.go:1197 lxc/network_zone.go:1262 -#: lxc/network_zone.go:1307 +#: lxc/network_zone.go:179 lxc/network_zone.go:235 lxc/network_zone.go:299 +#: lxc/network_zone.go:387 lxc/network_zone.go:508 lxc/network_zone.go:611 +#: lxc/network_zone.go:717 lxc/network_zone.go:785 lxc/network_zone.go:897 +#: lxc/network_zone.go:981 lxc/network_zone.go:1202 lxc/network_zone.go:1267 +#: lxc/network_zone.go:1312 msgid "Missing network zone name" msgstr "ネットワークゾーン名を指定する必要があります" -#: lxc/network_zone.go:833 lxc/network_zone.go:1095 +#: lxc/network_zone.go:838 lxc/network_zone.go:1100 msgid "Missing network zone record name" msgstr "ネットワークゾーンレコード名を指定する必要があります" @@ -4400,13 +4396,13 @@ msgid "Missing peer name" msgstr "ピア名を指定する必要があります" #: lxc/storage.go:194 lxc/storage.go:264 lxc/storage.go:370 lxc/storage.go:440 -#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:107 -#: lxc/storage_bucket.go:207 lxc/storage_bucket.go:283 -#: lxc/storage_bucket.go:402 lxc/storage_bucket.go:477 -#: lxc/storage_bucket.go:559 lxc/storage_bucket.go:651 -#: lxc/storage_bucket.go:793 lxc/storage_bucket.go:874 -#: lxc/storage_bucket.go:949 lxc/storage_bucket.go:1028 -#: lxc/storage_bucket.go:1151 lxc/storage_volume.go:189 +#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:112 +#: lxc/storage_bucket.go:212 lxc/storage_bucket.go:288 +#: lxc/storage_bucket.go:407 lxc/storage_bucket.go:482 +#: lxc/storage_bucket.go:564 lxc/storage_bucket.go:656 +#: lxc/storage_bucket.go:798 lxc/storage_bucket.go:879 +#: lxc/storage_bucket.go:954 lxc/storage_bucket.go:1033 +#: lxc/storage_bucket.go:1156 lxc/storage_volume.go:189 #: lxc/storage_volume.go:287 lxc/storage_volume.go:583 #: lxc/storage_volume.go:660 lxc/storage_volume.go:735 #: lxc/storage_volume.go:817 lxc/storage_volume.go:919 @@ -4542,7 +4538,7 @@ msgstr "コピー/移動元とは異なるプロジェクトに移動します msgid "Moving the storage volume: %s" msgstr "ストレージボリュームの移動中: %s" -#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1097 +#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1102 msgid "Multiple ports match. Use --force to remove them all" msgstr "" "複数のポートにマッチしました。すべて削除するには --force を指定してください" @@ -4563,10 +4559,10 @@ 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:677 lxc/project.go:498 -#: lxc/remote.go:731 lxc/storage.go:638 lxc/storage_bucket.go:506 -#: lxc/storage_bucket.go:826 lxc/storage_volume.go:1561 +#: lxc/network_acl.go:147 lxc/network_peer.go:139 lxc/network_zone.go:139 +#: lxc/network_zone.go:746 lxc/profile.go:677 lxc/project.go:498 +#: lxc/remote.go:732 lxc/storage.go:638 lxc/storage_bucket.go:511 +#: lxc/storage_bucket.go:831 lxc/storage_volume.go:1561 msgid "NAME" msgstr "NAME" @@ -4592,7 +4588,7 @@ msgstr "NICs:" #: lxc/network.go:957 lxc/operation.go:154 lxc/project.go:456 #: lxc/project.go:461 lxc/project.go:466 lxc/project.go:471 lxc/project.go:476 -#: lxc/project.go:481 lxc/remote.go:691 lxc/remote.go:696 lxc/remote.go:701 +#: lxc/project.go:481 lxc/remote.go:692 lxc/remote.go:697 lxc/remote.go:702 msgid "NO" msgstr "NO" @@ -4619,7 +4615,7 @@ msgstr "NVRM バージョン: %v" msgid "Name" msgstr "名前" -#: lxc/remote.go:141 +#: lxc/remote.go:142 msgid "Name of the project to use for this remote:" msgstr "このリモートで使うプロジェクト名:" @@ -4668,12 +4664,12 @@ msgstr "ネットワーク ACL %s を削除しました" msgid "Network ACL %s renamed to %s" msgstr "ネットワーク ACL 名 %s を %s に変更しました" -#: lxc/network_zone.go:336 +#: lxc/network_zone.go:341 #, c-format msgid "Network Zone %s created" msgstr "ネットワークゾーン %s を作成しました" -#: lxc/network_zone.go:616 +#: lxc/network_zone.go:621 #, c-format msgid "Network Zone %s deleted" msgstr "ネットワークゾーン %s を削除しました" @@ -4688,12 +4684,12 @@ msgstr "ネットワークフォワード %s を作成しました" msgid "Network forward %s deleted" msgstr "ネットワークフォワード %s を削除しました" -#: lxc/network_load_balancer.go:365 +#: lxc/network_load_balancer.go:370 #, c-format msgid "Network load balancer %s created" msgstr "ネットワークロードバランサー %s を作成しました" -#: lxc/network_load_balancer.go:767 +#: lxc/network_load_balancer.go:772 #, c-format msgid "Network load balancer %s deleted" msgstr "ネットワークロードバランサー %s を削除しました" @@ -4733,12 +4729,12 @@ msgstr "ネットワークタイプ:" msgid "Network usage:" msgstr "ネットワーク使用状況:" -#: lxc/network_zone.go:934 +#: lxc/network_zone.go:939 #, c-format msgid "Network zone record %s created" msgstr "ネットワークゾーンレコード %s を作成しました" -#: lxc/network_zone.go:1207 +#: lxc/network_zone.go:1212 #, c-format msgid "Network zone record %s deleted" msgstr "ネットワークゾーンレコード %s を削除しました" @@ -4774,11 +4770,11 @@ msgstr "このネットワークに対するデバイスがありません" msgid "No device found for this storage volume" msgstr "このストレージボリュームに対するデバイスがありません" -#: lxc/network_load_balancer.go:921 +#: lxc/network_load_balancer.go:926 msgid "No matching backend found" msgstr "マッチするバックエンドが見つかりません" -#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1108 +#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1113 msgid "No matching port(s) found" msgstr "マッチするポートが見つかりません" @@ -4824,7 +4820,7 @@ msgstr "\"カスタム\" のボリュームのみがエクスポートできま msgid "Only \"custom\" volumes can be snapshotted" msgstr "\"カスタム\" のボリュームのみがスナップショットを取得できます" -#: lxc/remote.go:332 +#: lxc/remote.go:333 msgid "Only https URLs are supported for simplestreams" msgstr "simplestreams は https の URL のみサポートします" @@ -4849,7 +4845,7 @@ msgstr "バックグラウンド操作 %s を削除しました" msgid "Optimized Storage" msgstr "最適化されたストレージ" -#: lxc/main.go:96 +#: lxc/main.go:97 msgid "Override the source project" msgstr "プロジェクトを指定します" @@ -4895,11 +4891,11 @@ msgstr "PROFILES" msgid "PROJECT" msgstr "PROJECT" -#: lxc/remote.go:733 +#: lxc/remote.go:734 msgid "PROTOCOL" msgstr "PROTOCOL" -#: lxc/image.go:1073 lxc/remote.go:735 +#: lxc/image.go:1073 lxc/remote.go:736 msgid "PUBLIC" msgstr "PUBLIC" @@ -4915,7 +4911,7 @@ msgstr "送信パケット" msgid "Partitions:" msgstr "パーティション:" -#: lxc/main.go:361 +#: lxc/main.go:363 #, c-format msgid "Password for %s: " msgstr "%s のパスワード: " @@ -4928,7 +4924,7 @@ msgstr "インスタンスを一時停止します" msgid "Perform an incremental copy" msgstr "インクリメンタルコピーを実行します" -#: lxc/remote.go:182 +#: lxc/remote.go:183 msgid "Please provide an alternate server address (empty to abort):" msgstr "別のサーバアドレスを指定してください(空の場合は中止):" @@ -4940,7 +4936,7 @@ msgstr "クライアント名を入力してください: " msgid "Please provide cluster member name: " msgstr "クラスターメンバー名を入力してください: " -#: lxc/remote.go:462 +#: lxc/remote.go:463 msgid "Please type 'y', 'n' or the fingerprint:" msgstr "'y', 'n', フィンガープリントのどれかを入力してください:" @@ -4962,10 +4958,10 @@ msgstr "終了するには ctrl+c を押してください" #: lxc/config.go:1278 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/network_load_balancer.go:695 lxc/network_peer.go:611 +#: lxc/network_zone.go:557 lxc/network_zone.go:1149 lxc/profile.go:539 +#: lxc/project.go:316 lxc/storage.go:311 lxc/storage_bucket.go:349 +#: lxc/storage_bucket.go:1098 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 "" @@ -4976,7 +4972,7 @@ msgstr "" msgid "Pretty rendering (short for --format=pretty)" msgstr "Pretty レンダリング(--format=pretty の短縮系)" -#: lxc/main.go:94 +#: lxc/main.go:95 msgid "Print help" msgstr "ヘルプを表示します" @@ -4984,7 +4980,7 @@ msgstr "ヘルプを表示します" msgid "Print the raw response" msgstr "レスポンスをそのまま表示します" -#: lxc/main.go:93 +#: lxc/main.go:94 msgid "Print version number" msgstr "バージョン番号を表示します" @@ -5073,7 +5069,7 @@ msgstr "プロジェクト %s を削除しました" msgid "Project %s renamed to %s" msgstr "プロジェクト名 %s を %s に変更しました" -#: lxc/remote.go:106 +#: lxc/remote.go:107 msgid "Project to use for the remote" msgstr "リモートで使用するプロジェクト" @@ -5174,7 +5170,7 @@ msgid "" "pool \"default\"." msgstr "" -#: lxc/remote.go:105 +#: lxc/remote.go:106 msgid "Public image server" msgstr "Public なイメージサーバとして設定します" @@ -5222,7 +5218,7 @@ msgstr "仮想マシンイメージを対象にします" msgid "RESOURCE" msgstr "RESOURCE" -#: lxc/storage_bucket.go:828 +#: lxc/storage_bucket.go:833 msgid "ROLE" msgstr "ROLE" @@ -5267,45 +5263,45 @@ msgstr "インスタンスの更新中: %s" msgid "Refreshing the image: %s" msgstr "イメージの更新中: %s" -#: lxc/remote.go:785 +#: lxc/remote.go:786 #, c-format msgid "Remote %s already exists" msgstr "リモート %s は既に存在します" -#: lxc/project.go:769 lxc/remote.go:776 lxc/remote.go:849 lxc/remote.go:905 -#: lxc/remote.go:945 +#: lxc/project.go:769 lxc/remote.go:777 lxc/remote.go:850 lxc/remote.go:906 +#: lxc/remote.go:946 #, c-format msgid "Remote %s doesn't exist" msgstr "リモート %s は存在しません" -#: lxc/remote.go:301 +#: lxc/remote.go:302 #, c-format msgid "Remote %s exists as <%s>" msgstr "リモート %s は <%s> として存在します" -#: lxc/remote.go:857 +#: lxc/remote.go:858 #, c-format msgid "Remote %s is global and cannot be removed" msgstr "リモート %s は global ですので削除できません" -#: lxc/remote.go:780 lxc/remote.go:853 lxc/remote.go:949 +#: lxc/remote.go:781 lxc/remote.go:854 lxc/remote.go:950 #, c-format msgid "Remote %s is static and cannot be modified" msgstr "リモート %s は static ですので変更できません" -#: lxc/remote.go:290 +#: lxc/remote.go:291 msgid "Remote address must not be empty" msgstr "" -#: lxc/remote.go:101 +#: lxc/remote.go:102 msgid "Remote admin password" msgstr "リモートの管理者パスワード" -#: lxc/remote.go:295 +#: lxc/remote.go:296 msgid "Remote names may not contain colons" msgstr "リモート名にコロンを含めることはできません" -#: lxc/remote.go:102 +#: lxc/remote.go:103 #, fuzzy msgid "Remote trust token" msgstr "信頼済みクライアントを削除します" @@ -5333,7 +5329,7 @@ msgstr "ACL からルールを削除します" msgid "Remove a member from the cluster" msgstr "クラスタからメンバを削除します" -#: lxc/network_zone.go:1285 +#: lxc/network_zone.go:1290 msgid "Remove a network zone record entry" msgstr "ネットワークゾーンレコードエントリを削除します" @@ -5341,7 +5337,7 @@ msgstr "ネットワークゾーンレコードエントリを削除します" msgid "Remove aliases" msgstr "エイリアスを削除します" -#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1025 +#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1030 msgid "Remove all ports that match" msgstr "マッチするポートをすべて削除します" @@ -5349,15 +5345,15 @@ msgstr "マッチするポートをすべて削除します" msgid "Remove all rules that match" msgstr "マッチするルールをすべて削除します" -#: lxc/network_load_balancer.go:862 +#: lxc/network_load_balancer.go:867 msgid "Remove backend from a load balancer" msgstr "ロードバランサーからバックエンドを削除します" -#: lxc/network_load_balancer.go:861 +#: lxc/network_load_balancer.go:866 msgid "Remove backends from a load balancer" msgstr "ロードバランサーからバックエンドを削除します" -#: lxc/network_zone.go:1286 +#: lxc/network_zone.go:1291 msgid "Remove entries from a network zone record" msgstr "ネットワークゾーンレコードからエントリを削除します" @@ -5383,7 +5379,7 @@ msgstr "グループからメンバーを削除します" msgid "Remove ports from a forward" msgstr "フォワードからポートを削除します" -#: lxc/network_load_balancer.go:1023 lxc/network_load_balancer.go:1024 +#: lxc/network_load_balancer.go:1028 lxc/network_load_balancer.go:1029 msgid "Remove ports from a load balancer" msgstr "ロードバランサーからポートを削除します" @@ -5391,7 +5387,7 @@ msgstr "ロードバランサーからポートを削除します" msgid "Remove profiles from instances" msgstr "インスタンスからプロファイルを削除します" -#: lxc/remote.go:827 lxc/remote.go:828 +#: lxc/remote.go:828 lxc/remote.go:829 msgid "Remove remotes" msgstr "リモートサーバを削除します" @@ -5450,7 +5446,7 @@ msgstr "プロファイル名を変更します" msgid "Rename projects" msgstr "プロジェクト名を変更します" -#: lxc/remote.go:754 lxc/remote.go:755 +#: lxc/remote.go:755 lxc/remote.go:756 msgid "Rename remotes" msgstr "リモートサーバ名を変更します" @@ -5535,7 +5531,8 @@ msgid "Restrict the certificate to one or more projects" msgstr "証明書の使用を1つ以上のプロジェクトに制限します" #: lxc/console.go:44 -msgid "Retrieve the instance's console log" +#, fuzzy +msgid "Retrieve the container's console log" msgstr "インスタンスのコンソールログを取得します" #: lxc/init.go:347 @@ -5551,7 +5548,7 @@ msgstr "証明書追加トークンを失効(Revoke)させます" msgid "Revoke cluster member join token" msgstr "クラスターメンバーに join するためのトークンを失効(Revoke)させます" -#: lxc/storage_bucket.go:851 +#: lxc/storage_bucket.go:856 msgid "Role (admin or read-only)" msgstr "ロール(admin または read-only)" @@ -5603,7 +5600,7 @@ msgstr "SSH クライアントが切断されました %q" msgid "STATE" msgstr "STATE" -#: lxc/remote.go:736 +#: lxc/remote.go:737 msgid "STATIC" msgstr "STATIC" @@ -5627,11 +5624,11 @@ msgstr "STORAGE VOLUMES" msgid "STP" msgstr "STP" -#: lxc/storage_bucket.go:853 +#: lxc/storage_bucket.go:858 msgid "Secret key (auto-generated if empty)" msgstr "秘密鍵(空白の場合自動生成)" -#: lxc/storage_bucket.go:909 +#: lxc/storage_bucket.go:914 #, c-format msgid "Secret key: %s" msgstr "秘密鍵: %s" @@ -5640,20 +5637,20 @@ msgstr "秘密鍵: %s" msgid "Send a raw query to LXD" msgstr "直接リクエスト (raw query) を LXD に送ります" -#: lxc/remote.go:104 +#: lxc/remote.go:105 #, fuzzy msgid "Server authentication type (tls or oidc)" msgstr "サーバの認証タイプ (tls もしくは candid)" -#: lxc/remote.go:460 +#: lxc/remote.go:461 msgid "Server certificate NACKed by user" msgstr "ユーザによりサーバ証明書が拒否されました" -#: lxc/remote.go:599 +#: lxc/remote.go:600 msgid "Server doesn't trust us after authentication" msgstr "認証後、サーバが我々を信用していません" -#: lxc/remote.go:103 +#: lxc/remote.go:104 msgid "Server protocol (lxd or simplestreams)" msgstr "サーバのプロトコル (lxd or simplestreams)" @@ -5777,11 +5774,11 @@ msgstr "" "後方互換性のため、単一の設定を行う場合は次の形式でも設定できます:\n" " lxc network set [:] " -#: lxc/network_load_balancer.go:450 +#: lxc/network_load_balancer.go:455 msgid "Set network load balancer keys" msgstr "ネットワークロードバランサーの設定を行います" -#: lxc/network_load_balancer.go:451 +#: lxc/network_load_balancer.go:456 msgid "" "Set network load balancer keys\n" "\n" @@ -5811,11 +5808,11 @@ msgstr "" "後方互換性のため、単一の設定を行う場合は次の形式でも設定できます:\n" " lxc network set [:] " -#: lxc/network_zone.go:353 +#: lxc/network_zone.go:358 msgid "Set network zone configuration keys" msgstr "ネットワークゾーンの設定を行います" -#: lxc/network_zone.go:354 +#: lxc/network_zone.go:359 msgid "" "Set network zone configuration keys\n" "\n" @@ -5828,7 +5825,7 @@ msgstr "" "後方互換性のため、単一の設定を行う場合は次の形式でも設定できます:\n" " lxc network set [:] " -#: lxc/network_zone.go:951 lxc/network_zone.go:952 +#: lxc/network_zone.go:956 lxc/network_zone.go:957 msgid "Set network zone record configuration keys" msgstr "ネットワークゾーンレコードの設定を行います" @@ -5866,11 +5863,11 @@ msgstr "" "後方互換性のため、単一の設定を行う場合は次の形式でも設定できます:\n" " lxc project set [:] " -#: lxc/storage_bucket.go:529 +#: lxc/storage_bucket.go:534 msgid "Set storage bucket configuration keys" msgstr "ストレージバケットの設定項目を設定します" -#: lxc/storage_bucket.go:530 +#: lxc/storage_bucket.go:535 msgid "" "Set storage bucket configuration keys\n" "\n" @@ -5918,7 +5915,7 @@ msgstr "" "後方互換性のため、単一の設定を行う場合は次の形式でも設定できます:\n" " lxc storage volume set [:] " -#: lxc/remote.go:923 lxc/remote.go:924 +#: lxc/remote.go:924 lxc/remote.go:925 msgid "Set the URL for the remote" msgstr "リモートの URL を設定します" @@ -5948,7 +5945,7 @@ msgstr "" msgid "Set the key as a network forward property" msgstr "ネットワークフォワードの設定値を設定します" -#: lxc/network_load_balancer.go:458 +#: lxc/network_load_balancer.go:463 #, fuzzy msgid "Set the key as a network load balancer property" msgstr "ネットワークロードバランサーの設定を行います" @@ -5962,12 +5959,12 @@ msgstr "ネットワークピアの設定を行います" msgid "Set the key as a network property" msgstr "" -#: lxc/network_zone.go:361 +#: lxc/network_zone.go:366 #, fuzzy msgid "Set the key as a network zone property" msgstr "新たにネットワークゾーンレコードを作成します" -#: lxc/network_zone.go:957 +#: lxc/network_zone.go:962 #, fuzzy msgid "Set the key as a network zone record property" msgstr "ネットワークゾーンレコードエントリを削除します" @@ -5980,7 +5977,7 @@ msgstr "" msgid "Set the key as a project property" msgstr "" -#: lxc/storage_bucket.go:537 +#: lxc/storage_bucket.go:542 #, fuzzy msgid "Set the key as a storage bucket property" msgstr "ストレージバケットに対する鍵を作成します" @@ -6004,11 +6001,11 @@ msgid "Setup SSH SFTP listener on address:port instead of mounting" msgstr "" "マウントの代わりに address:port で SSH SFTP リスナーをセットアップします" -#: lxc/main.go:97 +#: lxc/main.go:98 msgid "Show all debug messages" msgstr "デバッグメッセージをすべて表示します" -#: lxc/main.go:98 +#: lxc/main.go:99 msgid "Show all information messages" msgstr "詳細な情報を出力します" @@ -6079,7 +6076,7 @@ msgstr "インスタンスもしくはサーバの設定を表示します" msgid "Show instance or server information" msgstr "インスタンスもしくはサーバの情報を表示します" -#: lxc/main.go:271 lxc/main.go:272 +#: lxc/main.go:272 lxc/main.go:273 msgid "Show less common commands" msgstr "全てのコマンドを表示します (主なコマンドだけではなく)" @@ -6111,15 +6108,15 @@ msgstr "ネットワークロードバランサーの設定を表示します" msgid "Show network peer configurations" msgstr "ネットワークピアの設定を表示します" -#: lxc/network_zone.go:155 lxc/network_zone.go:156 +#: lxc/network_zone.go:156 lxc/network_zone.go:157 msgid "Show network zone configurations" msgstr "ネットワークゾーンの設定を表示します" -#: lxc/network_zone.go:758 +#: lxc/network_zone.go:763 msgid "Show network zone record configuration" msgstr "ネットワークゾーンレコードの設定を表示します" -#: lxc/network_zone.go:759 +#: lxc/network_zone.go:764 msgid "Show network zone record configurations" msgstr "ネットワークゾーンレコードの設定を表示します" @@ -6131,11 +6128,11 @@ msgstr "プロファイルの設定を表示します" msgid "Show project options" msgstr "プロジェクトの設定を表示します" -#: lxc/storage_bucket.go:623 lxc/storage_bucket.go:624 +#: lxc/storage_bucket.go:628 lxc/storage_bucket.go:629 msgid "Show storage bucket configurations" msgstr "ストレージバケットの設定を表示する" -#: lxc/storage_bucket.go:1123 lxc/storage_bucket.go:1124 +#: lxc/storage_bucket.go:1128 lxc/storage_bucket.go:1129 msgid "Show storage bucket key configurations" msgstr "ストレージバケットの鍵の設定を表示する" @@ -6161,7 +6158,7 @@ msgid "" "that are granted via identity provider group mappings. \n" msgstr "" -#: lxc/remote.go:630 lxc/remote.go:631 +#: lxc/remote.go:631 lxc/remote.go:632 msgid "Show the default remote" msgstr "デフォルトのリモートを表示します" @@ -6285,22 +6282,22 @@ msgstr "インスタンスの停止に失敗しました!" msgid "Stopping the instance failed: %s" msgstr "インスタンスの停止に失敗しました: %s" -#: lxc/storage_bucket.go:161 +#: lxc/storage_bucket.go:166 #, c-format msgid "Storage bucket %s created" msgstr "ストレージバケット %s を作成しました" -#: lxc/storage_bucket.go:228 +#: lxc/storage_bucket.go:233 #, c-format msgid "Storage bucket %s deleted" msgstr "ストレージバケット %s を削除しました" -#: lxc/storage_bucket.go:907 +#: lxc/storage_bucket.go:912 #, c-format msgid "Storage bucket key %s added" msgstr "ストレージバケットの鍵 %s を作成しました" -#: lxc/storage_bucket.go:973 +#: lxc/storage_bucket.go:978 #, c-format msgid "Storage bucket key %s removed" msgstr "ストレージバケットの鍵 %s を削除しました" @@ -6373,7 +6370,7 @@ msgstr "Swap (ピーク)" msgid "Switch the current project" msgstr "現在のプロジェクトを切り替えます" -#: lxc/remote.go:883 lxc/remote.go:884 +#: lxc/remote.go:884 lxc/remote.go:885 msgid "Switch the default remote" msgstr "デフォルトのリモートを切り替えます" @@ -6494,7 +6491,7 @@ msgstr "設定 %q はクラスタメンバー %q には存在しません" msgid "The property %q does not exist on the instance snapshot %s/%s: %v" msgstr "設定 %q はクラスタメンバー %q には存在しません" -#: lxc/network_load_balancer.go:424 +#: lxc/network_load_balancer.go:429 #, fuzzy, c-format msgid "The property %q does not exist on the load balancer %q: %v" msgstr "設定 %q はクラスタメンバー %q には存在しません" @@ -6519,12 +6516,12 @@ msgstr "設定 %q はクラスタメンバー %q には存在しません" msgid "The property %q does not exist on the network peer %q: %v" msgstr "設定 %q はクラスタメンバー %q には存在しません" -#: lxc/network_zone.go:246 +#: lxc/network_zone.go:247 #, fuzzy, c-format msgid "The property %q does not exist on the network zone %q: %v" msgstr "設定 %q はクラスタメンバー %q には存在しません" -#: lxc/network_zone.go:845 +#: lxc/network_zone.go:850 #, fuzzy, c-format msgid "The property %q does not exist on the network zone record %q: %v" msgstr "設定 %q はクラスタメンバー %q には存在しません" @@ -6539,7 +6536,7 @@ msgstr "設定 %q はクラスタメンバー %q には存在しません" msgid "The property %q does not exist on the project %q: %v" msgstr "設定 %q はクラスタメンバー %q には存在しません" -#: lxc/storage_bucket.go:426 +#: lxc/storage_bucket.go:431 #, fuzzy, c-format msgid "The property %q does not exist on the storage bucket %q: %v" msgstr "設定 %q はクラスタメンバー %q には存在しません" @@ -6596,7 +6593,7 @@ msgstr "LXD サーバはすでにクラスターに属しています" msgid "This LXD server is not available on the network" msgstr "この LXD サーバはネットワークから利用できません" -#: lxc/main.go:293 +#: lxc/main.go:294 msgid "" "This client hasn't been configured to use a remote LXD server yet.\n" "As your platform can't run native Linux instances, you must connect to a " @@ -6640,11 +6637,11 @@ msgid "To create a new network, use: lxc network create" msgstr "" "新しいネットワークを作成するには、lxc network create を使用してください" -#: lxc/console.go:210 +#: lxc/console.go:215 msgid "To detach from the console, press: +a q" msgstr "コンソールから切り離すには +a q を押します" -#: lxc/main.go:403 +#: lxc/main.go:406 #, fuzzy msgid "" "To start your first container, try: lxc launch ubuntu:24.04\n" @@ -6750,7 +6747,7 @@ msgstr "UNLIMITED" msgid "UPLOAD DATE" msgstr "UPLOAD DATE" -#: lxc/cluster.go:184 lxc/remote.go:732 +#: lxc/cluster.go:184 lxc/remote.go:733 msgid "URL" msgstr "URL" @@ -6759,7 +6756,7 @@ msgid "USAGE" msgstr "USAGE" #: 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/network_zone.go:141 lxc/profile.go:679 lxc/project.go:506 #: lxc/storage.go:647 lxc/storage_volume.go:1564 msgid "USED BY" msgstr "USED BY" @@ -6778,7 +6775,7 @@ msgstr "UUID: %v" msgid "Unable to create a temporary file: %v" msgstr "テンポラリファイルを作成できません: %v" -#: lxc/remote.go:213 lxc/remote.go:247 +#: lxc/remote.go:214 lxc/remote.go:248 msgid "Unavailable remote server" msgstr "リモートサーバーが利用できません" @@ -6798,7 +6795,7 @@ msgstr "クライアント %q の未知のチャンネルタイプ: %s" msgid "Unknown column shorthand char '%c' in '%s'" msgstr "未知のカラム名の短縮形です '%c' ('%s' 中)" -#: lxc/console.go:159 +#: lxc/console.go:164 #, c-format msgid "Unknown console type %q" msgstr "未知のコンソールタイプ %q" @@ -6859,11 +6856,11 @@ msgstr "ネットワークフォワードの設定を削除します" msgid "Unset network forward keys" msgstr "ネットワークフォワードの設定を削除します" -#: lxc/network_load_balancer.go:548 +#: lxc/network_load_balancer.go:553 msgid "Unset network load balancer configuration keys" msgstr "ネットワークロードバランサーの設定を削除します" -#: lxc/network_load_balancer.go:549 +#: lxc/network_load_balancer.go:554 msgid "Unset network load balancer keys" msgstr "ネットワークロードバランサーの設定を削除します" @@ -6875,11 +6872,11 @@ msgstr "ネットワークピアの設定を削除します" msgid "Unset network peer keys" msgstr "ネットワークピアの設定を削除します" -#: lxc/network_zone.go:433 lxc/network_zone.go:434 +#: lxc/network_zone.go:438 lxc/network_zone.go:439 msgid "Unset network zone configuration keys" msgstr "ネットワークゾーンの設定を削除します" -#: lxc/network_zone.go:1027 lxc/network_zone.go:1028 +#: lxc/network_zone.go:1032 lxc/network_zone.go:1033 msgid "Unset network zone record configuration keys" msgstr "ネットワークゾーンレコードの設定を削除します" @@ -6891,7 +6888,7 @@ msgstr "プロファイルの設定を削除します" msgid "Unset project configuration keys" msgstr "プロジェクトの設定を削除します" -#: lxc/storage_bucket.go:692 lxc/storage_bucket.go:693 +#: lxc/storage_bucket.go:697 lxc/storage_bucket.go:698 msgid "Unset storage bucket configuration keys" msgstr "ストレージバケットの設定を削除します" @@ -6916,7 +6913,7 @@ msgstr "" msgid "Unset the key as a network forward property" msgstr "ネットワークフォワードの設定を削除します" -#: lxc/network_load_balancer.go:552 +#: lxc/network_load_balancer.go:557 #, fuzzy msgid "Unset the key as a network load balancer property" msgstr "ネットワークロードバランサーの設定を削除します" @@ -6931,12 +6928,12 @@ msgstr "ネットワークピアの設定を削除します" msgid "Unset the key as a network property" msgstr "ネットワークピアの設定を削除します" -#: lxc/network_zone.go:437 +#: lxc/network_zone.go:442 #, fuzzy msgid "Unset the key as a network zone property" msgstr "新たにネットワークゾーンレコードを作成します" -#: lxc/network_zone.go:1031 +#: lxc/network_zone.go:1036 #, fuzzy msgid "Unset the key as a network zone record property" msgstr "ネットワークゾーンレコードエントリを削除します" @@ -6949,7 +6946,7 @@ msgstr "" msgid "Unset the key as a project property" msgstr "" -#: lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:701 #, fuzzy msgid "Unset the key as a storage bucket property" msgstr "ストレージバケットに対する鍵を作成します" @@ -7018,7 +7015,7 @@ msgstr "" "最適化された形でストレージドライバを使います (同様のプール上にのみリストアで" "きます)" -#: lxc/main.go:100 +#: lxc/main.go:101 msgid "Use with help or --help to view sub-commands" msgstr "サブコマンドを見るには help もしくは --help を使ってください" @@ -7120,7 +7117,7 @@ msgstr "" #: lxc/network.go:959 lxc/operation.go:156 lxc/project.go:458 #: lxc/project.go:463 lxc/project.go:468 lxc/project.go:473 lxc/project.go:478 -#: lxc/project.go:483 lxc/remote.go:693 lxc/remote.go:698 lxc/remote.go:703 +#: lxc/project.go:483 lxc/remote.go:694 lxc/remote.go:699 lxc/remote.go:704 msgid "YES" msgstr "YES" @@ -7158,7 +7155,7 @@ 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/network.go:909 lxc/network_acl.go:91 lxc/network_zone.go:83 #: 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 "[:]" @@ -7221,19 +7218,19 @@ msgstr "[:] [key=value...]" msgid "[:]" msgstr "[:]" -#: lxc/network_zone.go:154 lxc/network_zone.go:463 lxc/network_zone.go:581 +#: lxc/network_zone.go:155 lxc/network_zone.go:468 lxc/network_zone.go:586 msgid "[:]" msgstr "[:]" -#: lxc/network_zone.go:209 lxc/network_zone.go:432 +#: lxc/network_zone.go:210 lxc/network_zone.go:437 msgid "[:] " msgstr "[:] " -#: lxc/network_zone.go:352 +#: lxc/network_zone.go:357 msgid "[:] =..." msgstr "[:] =..." -#: lxc/network_zone.go:269 +#: lxc/network_zone.go:270 msgid "[:] [key=value...]" msgstr "[:] [key=value...]" @@ -7490,15 +7487,15 @@ msgstr "[:] =..." #: lxc/network_forward.go:169 lxc/network_forward.go:574 #: lxc/network_forward.go:715 lxc/network_load_balancer.go:171 -#: lxc/network_load_balancer.go:577 lxc/network_load_balancer.go:719 +#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:724 msgid "[:] " msgstr "[:] " -#: lxc/network_load_balancer.go:860 +#: lxc/network_load_balancer.go:865 msgid "[:] " msgstr "[:] " -#: lxc/network_load_balancer.go:796 +#: lxc/network_load_balancer.go:801 msgid "" "[:] " "[]" @@ -7507,15 +7504,15 @@ msgstr "" "[]" #: lxc/network_forward.go:377 lxc/network_forward.go:544 -#: lxc/network_load_balancer.go:381 lxc/network_load_balancer.go:547 +#: lxc/network_load_balancer.go:386 lxc/network_load_balancer.go:552 msgid "[:] " msgstr "[:] " -#: lxc/network_forward.go:446 lxc/network_load_balancer.go:449 +#: lxc/network_forward.go:446 lxc/network_load_balancer.go:454 msgid "[:] =..." msgstr "[:] =..." -#: lxc/network_load_balancer.go:961 +#: lxc/network_load_balancer.go:966 msgid "" "[:] " "[,...]" @@ -7531,7 +7528,7 @@ msgstr "" "[:] " " []" -#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1022 +#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1027 msgid "[:] [] []" msgstr "[:] [] []" @@ -7585,7 +7582,7 @@ msgid "[:]" msgstr "[:]" #: lxc/storage.go:167 lxc/storage.go:218 lxc/storage.go:412 lxc/storage.go:759 -#: lxc/storage_bucket.go:449 +#: lxc/storage_bucket.go:454 msgid "[:]" msgstr "[:]" @@ -7593,18 +7590,18 @@ msgstr "[:]" msgid "[:] []" msgstr "[:] []" -#: lxc/storage_bucket.go:180 lxc/storage_bucket.go:242 -#: lxc/storage_bucket.go:622 lxc/storage_bucket.go:764 +#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:247 +#: lxc/storage_bucket.go:627 lxc/storage_bucket.go:769 msgid "[:] " msgstr "[:] " -#: lxc/storage_bucket.go:375 lxc/storage_bucket.go:691 -#: lxc/storage_bucket.go:845 lxc/storage_bucket.go:923 -#: lxc/storage_bucket.go:987 lxc/storage_bucket.go:1122 +#: lxc/storage_bucket.go:380 lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:850 lxc/storage_bucket.go:928 +#: lxc/storage_bucket.go:992 lxc/storage_bucket.go:1127 msgid "[:] " msgstr "[:] " -#: lxc/storage_bucket.go:528 +#: lxc/storage_bucket.go:533 msgid "[:] =..." msgstr "[:] =..." @@ -7756,27 +7753,27 @@ msgstr "[:][/] [[:]]" msgid "[:]" msgstr "[:]" -#: lxc/network_zone.go:686 +#: lxc/network_zone.go:691 msgid "[:]" msgstr "[:]" -#: lxc/network_zone.go:757 lxc/network_zone.go:1056 lxc/network_zone.go:1173 +#: lxc/network_zone.go:762 lxc/network_zone.go:1061 lxc/network_zone.go:1178 msgid "[:] " msgstr "[:] " -#: lxc/network_zone.go:809 lxc/network_zone.go:1026 +#: lxc/network_zone.go:814 lxc/network_zone.go:1031 msgid "[:] " msgstr "[:] " -#: lxc/network_zone.go:950 +#: lxc/network_zone.go:955 msgid "[:] =..." msgstr "[:] =..." -#: lxc/network_zone.go:1238 lxc/network_zone.go:1284 +#: lxc/network_zone.go:1243 lxc/network_zone.go:1289 msgid "[:] " msgstr "[:] " -#: lxc/network_zone.go:868 +#: lxc/network_zone.go:873 msgid "[:] [key=value...]" msgstr "[:] [key=value...]" @@ -7801,7 +7798,7 @@ msgstr "[:][] =..." msgid "[:][] [...]" msgstr "[:] [...]" -#: lxc/remote.go:88 +#: lxc/remote.go:89 msgid "[] " msgstr "[] " @@ -7810,7 +7807,7 @@ msgstr "[] " msgid "[[:]]" msgstr "[:] " -#: lxc/project.go:488 lxc/remote.go:722 +#: lxc/project.go:488 lxc/remote.go:723 msgid "current" msgstr "現在値" @@ -8185,6 +8182,33 @@ msgid "" " Create a new OVN network called bar using baz as its uplink network" msgstr "" +#: lxc/network_load_balancer.go:239 +#, fuzzy +msgid "" +"lxc network load-balancer create n1 127.0.0.1\n" +"\n" +"lxc network load-balancer create n1 127.0.0.1 < config.yaml\n" +" Create network load-balancer for network n1 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/network_zone.go:273 +#, fuzzy +msgid "" +"lxc network zone create z1\n" +"\n" +"lxc network zone create z1 < config.yaml\n" +" Create network zone z1 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/operation.go:195 msgid "" "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n" @@ -8292,7 +8316,17 @@ msgstr "" "lxc restore u1 snap0\n" " スナップショットからリストアします。" -#: lxc/storage_bucket.go:245 +#: lxc/storage_bucket.go:84 +msgid "" +"lxc storage bucket create p1 b01\n" +"\tCreate a new storage bucket name b01 in storage pool p1\n" +"\n" +"lxc storage bucket create p1 b01 < config.yaml\n" +"\tCreate a new storage bucket name b01 in storage pool p1 using the content " +"of config.yaml" +msgstr "" + +#: lxc/storage_bucket.go:250 msgid "" "lxc storage bucket edit [:] < bucket.yaml\n" " Update a storage bucket using the content of bucket.yaml." @@ -8300,7 +8334,7 @@ msgstr "" "lxc storage bucket edit [:] < bucket.yaml\n" " bucket.yaml の内容でストレージバケットを更新します。" -#: lxc/storage_bucket.go:990 +#: lxc/storage_bucket.go:995 msgid "" "lxc storage bucket edit [:] < key.yaml\n" " Update a storage bucket key using the content of key.yaml." @@ -8308,7 +8342,7 @@ msgstr "" "lxc storage bucket edit [:] < key.yaml\n" " key.yaml の内容でストレージバケットの鍵を更新します。" -#: lxc/storage_bucket.go:1125 +#: lxc/storage_bucket.go:1130 msgid "" "lxc storage bucket key show default data foo\n" " Will show the properties of a bucket key called \"foo\" for a bucket " @@ -8318,7 +8352,7 @@ msgstr "" " \"default\" プール内の \"data\" という名前のバケットに対する \"foo\" とい" "う名前のバケットの鍵のプロパティを表示します。" -#: lxc/storage_bucket.go:625 +#: lxc/storage_bucket.go:630 msgid "" "lxc storage bucket show default data\n" " Will show the properties of a bucket called \"data\" in the \"default\" " @@ -8343,7 +8377,7 @@ msgstr "" "lxc storage volume import default backup0.tar.gz\n" "\t\tbackup0.tar.gz を使って新しいカスタムボリュームを作成します。" -#: lxc/remote.go:459 +#: lxc/remote.go:460 msgid "n" msgstr "n" @@ -8355,7 +8389,7 @@ msgstr "名前" msgid "no" msgstr "no" -#: lxc/remote.go:452 +#: lxc/remote.go:453 msgid "ok (y/n/[fingerprint])?" msgstr "ok (y/n/[fingerprint])?" @@ -8394,7 +8428,7 @@ msgstr "サーバに接続できません" msgid "used by" msgstr "ストレージを使用中の" -#: lxc/remote.go:461 +#: lxc/remote.go:462 msgid "y" msgstr "y" @@ -8403,6 +8437,9 @@ msgstr "y" msgid "yes" msgstr "yes" +#~ msgid "Console log:" +#~ msgstr "コンソールログ:" + #, fuzzy, c-format #~ msgid "Trust token for %s: " #~ msgstr "%s:%s のクラスターに join するためのトークンが削除されました" diff --git a/po/ka.po b/po/ka.po index 66d52c06aa10..1bf6af186040 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-08-20 09:31+0100\n" +"POT-Creation-Date: 2024-08-30 09:27+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: lxc/storage_bucket.go:255 lxc/storage_bucket.go:1000 +#: lxc/storage_bucket.go:260 lxc/storage_bucket.go:1005 msgid "" "### This is a YAML representation of a storage bucket.\n" "### Any line starting with a '# will be ignored.\n" @@ -278,7 +278,7 @@ msgid "" "### Note that the listen_address and location cannot be changed." msgstr "" -#: lxc/network_load_balancer.go:588 +#: lxc/network_load_balancer.go:593 msgid "" "### This is a YAML representation of the network load balancer.\n" "### Any line starting with a '# will be ignored.\n" @@ -319,7 +319,7 @@ msgid "" "cannot be changed." msgstr "" -#: lxc/network_zone.go:1066 +#: lxc/network_zone.go:1071 msgid "" "### This is a YAML representation of the network zone record.\n" "### Any line starting with a '# will be ignored.\n" @@ -333,7 +333,7 @@ msgid "" "### user.foo: bah\n" msgstr "" -#: lxc/network_zone.go:473 +#: lxc/network_zone.go:478 msgid "" "### This is a YAML representation of the network zone.\n" "### Any line starting with a '# will be ignored.\n" @@ -512,15 +512,15 @@ msgstr "" msgid " " msgstr "" -#: lxc/remote.go:825 lxc/remote.go:882 +#: lxc/remote.go:826 lxc/remote.go:883 msgid "" msgstr "" -#: lxc/remote.go:922 +#: lxc/remote.go:923 msgid " " msgstr "" -#: lxc/remote.go:752 +#: lxc/remote.go:753 msgid " " msgstr "" @@ -553,7 +553,7 @@ msgstr "" msgid "ARCHITECTURE" msgstr "" -#: lxc/remote.go:734 +#: lxc/remote.go:735 msgid "AUTH TYPE" msgstr "" @@ -561,15 +561,15 @@ msgstr "" msgid "AUTHENTICATION METHOD" msgstr "" -#: lxc/remote.go:100 +#: lxc/remote.go:101 msgid "Accept certificate" msgstr "" -#: lxc/storage_bucket.go:852 +#: lxc/storage_bucket.go:857 msgid "Access key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:908 +#: lxc/storage_bucket.go:913 #, c-format msgid "Access key: %s" msgstr "" @@ -603,19 +603,19 @@ msgstr "" msgid "Add a group to an identity provider group" msgstr "" -#: lxc/network_zone.go:1239 +#: lxc/network_zone.go:1244 msgid "Add a network zone record entry" msgstr "" -#: lxc/network_load_balancer.go:798 +#: lxc/network_load_balancer.go:803 msgid "Add backend to a load balancer" msgstr "" -#: lxc/network_load_balancer.go:797 +#: lxc/network_load_balancer.go:802 msgid "Add backends to a load balancer" msgstr "" -#: lxc/network_zone.go:1240 +#: lxc/network_zone.go:1245 msgid "Add entries to a network zone record" msgstr "" @@ -631,11 +631,11 @@ msgstr "" msgid "Add new aliases" msgstr "" -#: lxc/remote.go:89 +#: lxc/remote.go:90 msgid "Add new remote servers" msgstr "" -#: lxc/remote.go:90 +#: lxc/remote.go:91 msgid "" "Add new remote servers\n" "\n" @@ -676,7 +676,7 @@ msgstr "" msgid "Add ports to a forward" msgstr "" -#: lxc/network_load_balancer.go:962 lxc/network_load_balancer.go:963 +#: lxc/network_load_balancer.go:967 lxc/network_load_balancer.go:968 msgid "Add ports to a load balancer" msgstr "" @@ -697,17 +697,17 @@ msgstr "" msgid "Address: %s" msgstr "" -#: lxc/storage_bucket.go:164 +#: lxc/storage_bucket.go:169 #, c-format msgid "Admin access key: %s" msgstr "" -#: lxc/remote.go:566 +#: lxc/remote.go:567 #, c-format msgid "Admin password (or token) for %s:" msgstr "" -#: lxc/storage_bucket.go:165 +#: lxc/storage_bucket.go:170 #, c-format msgid "Admin secret key: %s" msgstr "" @@ -739,7 +739,7 @@ msgstr "" msgid "All projects" msgstr "" -#: lxc/remote.go:181 +#: lxc/remote.go:182 msgid "All server addresses are unavailable" msgstr "" @@ -762,7 +762,7 @@ msgstr "" msgid "Are you sure you want to %s cluster member %q? (yes/no) [default=no]: " msgstr "" -#: lxc/console.go:383 +#: lxc/console.go:388 msgid "As neither could be found, the raw SPICE socket can be found at:" msgstr "" @@ -810,7 +810,7 @@ msgid "" "as well as retrieve past log entries from it." msgstr "" -#: lxc/remote.go:548 +#: lxc/remote.go:549 #, c-format msgid "Authentication type '%s' not supported by server" msgstr "" @@ -829,11 +829,11 @@ msgstr "" msgid "Auto update: %s" msgstr "" -#: lxc/network_forward.go:240 lxc/network_load_balancer.go:242 +#: lxc/network_forward.go:240 lxc/network_load_balancer.go:247 msgid "Auto-allocate an IPv4 or IPv6 listen address. One of 'ipv4', 'ipv6'." msgstr "" -#: lxc/remote.go:136 +#: lxc/remote.go:137 msgid "Available projects:" msgstr "" @@ -865,8 +865,8 @@ msgid "Bad device override syntax, expecting ,=: %s" msgstr "" #: lxc/network.go:333 lxc/network_acl.go:382 lxc/network_forward.go:293 -#: lxc/network_load_balancer.go:296 lxc/network_peer.go:280 -#: lxc/network_zone.go:324 lxc/network_zone.go:922 lxc/storage_bucket.go:136 +#: lxc/network_load_balancer.go:301 lxc/network_peer.go:280 +#: lxc/network_zone.go:329 lxc/network_zone.go:927 lxc/storage_bucket.go:141 #, c-format msgid "Bad key/value pair: %s" msgstr "" @@ -988,7 +988,7 @@ msgstr "" msgid "Can't read from stdin: %w" msgstr "" -#: lxc/remote.go:861 +#: lxc/remote.go:862 msgid "Can't remove the default remote" msgstr "" @@ -1054,15 +1054,14 @@ msgstr "" msgid "Certificate add token for %s deleted" msgstr "" -#: lxc/remote.go:218 -#, c-format -msgid "" -"Certificate fingerprint mismatch between certificate token and server %q" +#: lxc/remote.go:452 +msgid "Certificate fingerprint" msgstr "" -#: lxc/remote.go:451 +#: lxc/remote.go:219 #, c-format -msgid "Certificate fingerprint: %s" +msgid "" +"Certificate fingerprint mismatch between certificate token and server %q" msgstr "" #: lxc/network.go:893 @@ -1074,7 +1073,7 @@ msgstr "" msgid "Client %s certificate add token:" msgstr "" -#: lxc/remote.go:603 +#: lxc/remote.go:604 msgid "Client certificate now trusted by server:" msgstr "" @@ -1136,18 +1135,18 @@ msgstr "" #: lxc/network_forward.go:456 lxc/network_forward.go:579 #: lxc/network_forward.go:721 lxc/network_forward.go:798 #: lxc/network_forward.go:864 lxc/network_load_balancer.go:176 -#: lxc/network_load_balancer.go:241 lxc/network_load_balancer.go:459 -#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:725 -#: lxc/network_load_balancer.go:801 lxc/network_load_balancer.go:865 -#: lxc/network_load_balancer.go:966 lxc/network_load_balancer.go:1028 +#: lxc/network_load_balancer.go:246 lxc/network_load_balancer.go:464 +#: lxc/network_load_balancer.go:587 lxc/network_load_balancer.go:730 +#: lxc/network_load_balancer.go:806 lxc/network_load_balancer.go:870 +#: lxc/network_load_balancer.go:971 lxc/network_load_balancer.go:1033 #: lxc/storage.go:99 lxc/storage.go:347 lxc/storage.go:418 lxc/storage.go:671 -#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:85 -#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:248 -#: lxc/storage_bucket.go:379 lxc/storage_bucket.go:536 -#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:695 -#: lxc/storage_bucket.go:770 lxc/storage_bucket.go:850 -#: lxc/storage_bucket.go:928 lxc/storage_bucket.go:993 -#: lxc/storage_bucket.go:1129 lxc/storage_volume.go:358 +#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:90 +#: lxc/storage_bucket.go:190 lxc/storage_bucket.go:253 +#: lxc/storage_bucket.go:384 lxc/storage_bucket.go:541 +#: lxc/storage_bucket.go:634 lxc/storage_bucket.go:700 +#: lxc/storage_bucket.go:775 lxc/storage_bucket.go:855 +#: lxc/storage_bucket.go:933 lxc/storage_bucket.go:998 +#: lxc/storage_bucket.go:1134 lxc/storage_volume.go:358 #: lxc/storage_volume.go:560 lxc/storage_volume.go:639 #: lxc/storage_volume.go:883 lxc/storage_volume.go:1097 #: lxc/storage_volume.go:1210 lxc/storage_volume.go:1678 @@ -1175,11 +1174,11 @@ msgstr "" msgid "Columns" msgstr "" -#: lxc/main.go:81 +#: lxc/main.go:82 msgid "Command line client for LXD" msgstr "" -#: lxc/main.go:82 +#: lxc/main.go:83 msgid "" "Command line client for LXD\n" "\n" @@ -1211,19 +1210,15 @@ msgstr "" #: lxc/config.go:347 lxc/config.go:1277 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/network_load_balancer.go:694 lxc/network_peer.go:610 +#: lxc/network_zone.go:556 lxc/network_zone.go:1148 lxc/profile.go:538 +#: lxc/project.go:315 lxc/storage.go:310 lxc/storage_bucket.go:348 +#: lxc/storage_bucket.go:1097 lxc/storage_volume.go:1016 #: lxc/storage_volume.go:1048 #, c-format msgid "Config parsing error: %s" msgstr "" -#: lxc/console.go:140 -msgid "Console log:" -msgstr "" - #: lxc/storage_volume.go:561 msgid "Content type, block or filesystem" msgstr "" @@ -1326,12 +1321,12 @@ msgstr "" msgid "Cores:" msgstr "" -#: lxc/remote.go:486 +#: lxc/remote.go:487 #, c-format msgid "Could not close server cert file %q: %w" msgstr "" -#: lxc/remote.go:224 lxc/remote.go:470 +#: lxc/remote.go:225 lxc/remote.go:471 msgid "Could not create server cert dir" msgstr "" @@ -1370,12 +1365,12 @@ msgstr "" msgid "Could not write new remote certificate for remote '%s' with error: %v" msgstr "" -#: lxc/remote.go:481 +#: lxc/remote.go:482 #, c-format msgid "Could not write server cert file %q: %w" msgstr "" -#: lxc/network_zone.go:1327 +#: lxc/network_zone.go:1332 msgid "Couldn't find a matching entry" msgstr "" @@ -1427,7 +1422,7 @@ msgstr "" msgid "Create instances from images" msgstr "" -#: lxc/storage_bucket.go:846 lxc/storage_bucket.go:847 +#: lxc/storage_bucket.go:851 lxc/storage_bucket.go:852 msgid "Create key for a storage bucket" msgstr "" @@ -1459,11 +1454,11 @@ msgstr "" msgid "Create new network peering" msgstr "" -#: lxc/network_zone.go:869 lxc/network_zone.go:870 +#: lxc/network_zone.go:874 lxc/network_zone.go:875 msgid "Create new network zone record" msgstr "" -#: lxc/network_zone.go:270 lxc/network_zone.go:271 +#: lxc/network_zone.go:271 lxc/network_zone.go:272 msgid "Create new network zones" msgstr "" @@ -1514,9 +1509,9 @@ msgstr "" #: 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/network_zone.go:140 lxc/network_zone.go:747 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_bucket.go:512 lxc/storage_bucket.go:832 #: lxc/storage_volume.go:1562 msgid "DESCRIPTION" msgstr "" @@ -1581,7 +1576,7 @@ msgstr "" msgid "Delete instances and snapshots" msgstr "" -#: lxc/storage_bucket.go:924 lxc/storage_bucket.go:925 +#: lxc/storage_bucket.go:929 lxc/storage_bucket.go:930 msgid "Delete key from a storage bucket" msgstr "" @@ -1593,7 +1588,7 @@ msgstr "" msgid "Delete network forwards" msgstr "" -#: lxc/network_load_balancer.go:721 lxc/network_load_balancer.go:722 +#: lxc/network_load_balancer.go:726 lxc/network_load_balancer.go:727 msgid "Delete network load balancers" msgstr "" @@ -1601,11 +1596,11 @@ msgstr "" msgid "Delete network peerings" msgstr "" -#: lxc/network_zone.go:1175 lxc/network_zone.go:1176 +#: lxc/network_zone.go:1180 lxc/network_zone.go:1181 msgid "Delete network zone record" msgstr "" -#: lxc/network_zone.go:583 lxc/network_zone.go:584 +#: lxc/network_zone.go:588 lxc/network_zone.go:589 msgid "Delete network zones" msgstr "" @@ -1621,7 +1616,7 @@ msgstr "" msgid "Delete projects" msgstr "" -#: lxc/storage_bucket.go:182 lxc/storage_bucket.go:183 +#: lxc/storage_bucket.go:187 lxc/storage_bucket.go:188 msgid "Delete storage buckets" msgstr "" @@ -1677,7 +1672,7 @@ msgstr "" #: 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/info.go:32 lxc/init.go:43 lxc/launch.go:24 lxc/list.go:48 lxc/main.go:83 #: 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 @@ -1696,22 +1691,22 @@ msgstr "" #: 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_load_balancer.go:238 lxc/network_load_balancer.go:388 +#: lxc/network_load_balancer.go:456 lxc/network_load_balancer.go:554 +#: lxc/network_load_balancer.go:584 lxc/network_load_balancer.go:727 +#: lxc/network_load_balancer.go:788 lxc/network_load_balancer.go:803 +#: lxc/network_load_balancer.go:867 lxc/network_load_balancer.go:953 +#: lxc/network_load_balancer.go:968 lxc/network_load_balancer.go:1029 #: 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/network_zone.go:29 lxc/network_zone.go:86 lxc/network_zone.go:157 +#: lxc/network_zone.go:212 lxc/network_zone.go:272 lxc/network_zone.go:359 +#: lxc/network_zone.go:439 lxc/network_zone.go:470 lxc/network_zone.go:589 +#: lxc/network_zone.go:637 lxc/network_zone.go:694 lxc/network_zone.go:764 +#: lxc/network_zone.go:816 lxc/network_zone.go:875 lxc/network_zone.go:957 +#: lxc/network_zone.go:1033 lxc/network_zone.go:1063 lxc/network_zone.go:1181 +#: lxc/network_zone.go:1230 lxc/network_zone.go:1245 lxc/network_zone.go:1291 #: 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 @@ -1720,19 +1715,19 @@ msgstr "" #: 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:631 lxc/remote.go:669 lxc/remote.go:755 lxc/remote.go:828 -#: lxc/remote.go:884 lxc/remote.go:924 lxc/rename.go:21 lxc/restore.go:24 +#: lxc/query.go:34 lxc/rebuild.go:27 lxc/remote.go:35 lxc/remote.go:91 +#: lxc/remote.go:632 lxc/remote.go:670 lxc/remote.go:756 lxc/remote.go:829 +#: lxc/remote.go:885 lxc/remote.go:925 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_bucket.go:29 lxc/storage_bucket.go:83 lxc/storage_bucket.go:188 +#: lxc/storage_bucket.go:249 lxc/storage_bucket.go:382 +#: lxc/storage_bucket.go:458 lxc/storage_bucket.go:535 +#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:698 +#: lxc/storage_bucket.go:732 lxc/storage_bucket.go:773 +#: lxc/storage_bucket.go:852 lxc/storage_bucket.go:930 +#: lxc/storage_bucket.go:994 lxc/storage_bucket.go:1129 #: 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 @@ -1868,7 +1863,7 @@ msgstr "" msgid "Don't require user confirmation for using --force" msgstr "" -#: lxc/main.go:99 +#: lxc/main.go:100 msgid "Don't show progress information" msgstr "" @@ -1881,7 +1876,7 @@ msgstr "" msgid "Driver: %v (%v)" msgstr "" -#: lxc/network_zone.go:743 +#: lxc/network_zone.go:748 msgid "ENTRIES" msgstr "" @@ -1959,7 +1954,7 @@ msgstr "" msgid "Edit network forward configurations as YAML" msgstr "" -#: lxc/network_load_balancer.go:578 lxc/network_load_balancer.go:579 +#: lxc/network_load_balancer.go:583 lxc/network_load_balancer.go:584 msgid "Edit network load balancer configurations as YAML" msgstr "" @@ -1967,11 +1962,11 @@ msgstr "" msgid "Edit network peer configurations as YAML" msgstr "" -#: lxc/network_zone.go:464 lxc/network_zone.go:465 +#: lxc/network_zone.go:469 lxc/network_zone.go:470 msgid "Edit network zone configurations as YAML" msgstr "" -#: lxc/network_zone.go:1057 lxc/network_zone.go:1058 +#: lxc/network_zone.go:1062 lxc/network_zone.go:1063 msgid "Edit network zone record configurations as YAML" msgstr "" @@ -1983,11 +1978,11 @@ msgstr "" msgid "Edit project configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:243 lxc/storage_bucket.go:244 +#: lxc/storage_bucket.go:248 lxc/storage_bucket.go:249 msgid "Edit storage bucket configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:988 lxc/storage_bucket.go:989 +#: lxc/storage_bucket.go:993 lxc/storage_bucket.go:994 msgid "Edit storage bucket key as YAML" msgstr "" @@ -2028,7 +2023,7 @@ msgid "" " for the address if not yet set." msgstr "" -#: lxc/network_zone.go:1242 +#: lxc/network_zone.go:1247 msgid "Entry TTL" msgstr "" @@ -2057,9 +2052,9 @@ msgstr "" #: lxc/cluster.go:414 lxc/config.go:624 lxc/config.go:656 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/network_load_balancer.go:527 lxc/network_peer.go:463 +#: lxc/network_zone.go:414 lxc/network_zone.go:1008 lxc/profile.go:876 +#: lxc/project.go:634 lxc/storage.go:727 lxc/storage_bucket.go:602 #: lxc/storage_volume.go:1947 lxc/storage_volume.go:1985 #, c-format msgid "Error setting properties: %v" @@ -2071,10 +2066,10 @@ 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/network_forward.go:513 lxc/network_load_balancer.go:521 +#: lxc/network_peer.go:457 lxc/network_zone.go:408 lxc/network_zone.go:1002 #: lxc/profile.go:870 lxc/project.go:628 lxc/storage.go:721 -#: lxc/storage_bucket.go:591 lxc/storage_volume.go:1941 +#: lxc/storage_bucket.go:596 lxc/storage_volume.go:1941 #: lxc/storage_volume.go:1979 #, c-format msgid "Error unsetting property: %v" @@ -2260,7 +2255,7 @@ msgstr "" msgid "Failed parsing SSH host key: %w" msgstr "" -#: lxc/console.go:361 +#: lxc/console.go:366 #, c-format msgid "Failed starting command: %w" msgstr "" @@ -2275,11 +2270,11 @@ msgstr "" msgid "Failed to accept incoming connection: %w" msgstr "" -#: lxc/remote.go:190 +#: lxc/remote.go:191 msgid "Failed to add remote" msgstr "" -#: lxc/remote.go:241 +#: lxc/remote.go:242 #, c-format msgid "Failed to close server cert file %q: %w" msgstr "" @@ -2289,7 +2284,7 @@ msgstr "" msgid "Failed to connect to cluster member: %w" msgstr "" -#: lxc/remote.go:231 +#: lxc/remote.go:232 #, c-format msgid "Failed to create %q: %w" msgstr "" @@ -2299,12 +2294,12 @@ msgstr "" msgid "Failed to create alias %s: %w" msgstr "" -#: lxc/remote.go:256 +#: lxc/remote.go:257 #, c-format msgid "Failed to create certificate: %w" msgstr "" -#: lxc/remote.go:263 +#: lxc/remote.go:264 #, c-format msgid "Failed to find project: %w" msgstr "" @@ -2329,7 +2324,7 @@ msgstr "" msgid "Failed to walk path for %s: %s" msgstr "" -#: lxc/remote.go:236 +#: lxc/remote.go:237 #, c-format msgid "Failed to write server cert file %q: %w" msgstr "" @@ -2338,7 +2333,7 @@ msgstr "" msgid "Fast mode (same as --columns=nsacPt)" msgstr "" -#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:115 +#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:116 #: lxc/operation.go:136 msgid "Filtering isn't supported yet" msgstr "" @@ -2376,7 +2371,7 @@ msgstr "" msgid "Force the removal of running instances" msgstr "" -#: lxc/main.go:95 +#: lxc/main.go:96 msgid "Force using the local unix socket" msgstr "" @@ -2410,10 +2405,10 @@ msgstr "" #: 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/network_peer.go:84 lxc/network_zone.go:89 lxc/network_zone.go:697 #: lxc/operation.go:108 lxc/profile.go:637 lxc/project.go:412 -#: lxc/project.go:804 lxc/remote.go:673 lxc/storage.go:588 -#: lxc/storage_bucket.go:454 lxc/storage_bucket.go:769 +#: lxc/project.go:804 lxc/remote.go:674 lxc/storage.go:588 +#: lxc/storage_bucket.go:459 lxc/storage_bucket.go:774 #: lxc/storage_volume.go:1446 lxc/warning.go:93 msgid "Format (csv|json|table|yaml|compact)" msgstr "" @@ -2450,7 +2445,7 @@ msgstr "" msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)" msgstr "" -#: lxc/remote.go:737 +#: lxc/remote.go:738 msgid "GLOBAL" msgstr "" @@ -2470,7 +2465,7 @@ msgstr "" msgid "Generate manpages for all commands" msgstr "" -#: lxc/remote.go:159 lxc/remote.go:397 +#: lxc/remote.go:160 lxc/remote.go:398 msgid "Generating a client certificate. This may take a minute..." msgstr "" @@ -2502,7 +2497,7 @@ msgstr "" msgid "Get the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:386 +#: lxc/network_load_balancer.go:391 msgid "Get the key as a network load balancer property" msgstr "" @@ -2514,11 +2509,11 @@ msgstr "" msgid "Get the key as a network property" msgstr "" -#: lxc/network_zone.go:214 +#: lxc/network_zone.go:215 msgid "Get the key as a network zone property" msgstr "" -#: lxc/network_zone.go:814 +#: lxc/network_zone.go:819 msgid "Get the key as a network zone record property" msgstr "" @@ -2530,7 +2525,7 @@ msgstr "" msgid "Get the key as a project property" msgstr "" -#: lxc/storage_bucket.go:380 +#: lxc/storage_bucket.go:385 msgid "Get the key as a storage bucket property" msgstr "" @@ -2570,7 +2565,7 @@ msgstr "" msgid "Get values for network forward configuration keys" msgstr "" -#: lxc/network_load_balancer.go:382 lxc/network_load_balancer.go:383 +#: lxc/network_load_balancer.go:387 lxc/network_load_balancer.go:388 msgid "Get values for network load balancer configuration keys" msgstr "" @@ -2578,11 +2573,11 @@ msgstr "" msgid "Get values for network peer configuration keys" msgstr "" -#: lxc/network_zone.go:210 lxc/network_zone.go:211 +#: lxc/network_zone.go:211 lxc/network_zone.go:212 msgid "Get values for network zone configuration keys" msgstr "" -#: lxc/network_zone.go:810 lxc/network_zone.go:811 +#: lxc/network_zone.go:815 lxc/network_zone.go:816 msgid "Get values for network zone record configuration keys" msgstr "" @@ -2594,7 +2589,7 @@ msgstr "" msgid "Get values for project configuration keys" msgstr "" -#: lxc/storage_bucket.go:376 lxc/storage_bucket.go:377 +#: lxc/storage_bucket.go:381 lxc/storage_bucket.go:382 msgid "Get values for storage bucket configuration keys" msgstr "" @@ -2734,7 +2729,7 @@ msgstr "" msgid "If the snapshot name already exists, delete and create a new one" msgstr "" -#: lxc/main.go:398 +#: lxc/main.go:400 msgid "" "If this is your first time running LXD on this machine, you should also run: " "lxd init" @@ -2891,7 +2886,7 @@ msgstr "" msgid "Instance type" msgstr "" -#: lxc/remote.go:349 +#: lxc/remote.go:350 #, c-format msgid "Invalid URL scheme \"%s\" in \"%s\"" msgstr "" @@ -2963,7 +2958,7 @@ msgstr "" msgid "Invalid new snapshot name, parent volume must be the same as source" msgstr "" -#: lxc/main.go:498 +#: lxc/main.go:502 msgid "Invalid number of arguments" msgstr "" @@ -2972,7 +2967,7 @@ msgstr "" msgid "Invalid path %s" msgstr "" -#: lxc/remote.go:338 +#: lxc/remote.go:339 #, c-format msgid "Invalid protocol: %s" msgstr "" @@ -3020,7 +3015,7 @@ msgstr "" #: lxc/list.go:597 lxc/network.go:1059 lxc/network_forward.go:155 #: lxc/network_load_balancer.go:157 lxc/operation.go:177 -#: lxc/storage_bucket.go:511 lxc/storage_volume.go:1569 lxc/warning.go:220 +#: lxc/storage_bucket.go:516 lxc/storage_volume.go:1569 lxc/warning.go:220 msgid "LOCATION" msgstr "" @@ -3028,7 +3023,7 @@ msgstr "" msgid "LXD - Command line client" msgstr "" -#: lxc/console.go:382 +#: lxc/console.go:387 msgid "LXD automatically uses either spicy or remote-viewer when present." msgstr "" @@ -3118,15 +3113,15 @@ msgstr "" msgid "List available network peers" msgstr "" -#: lxc/network_zone.go:85 +#: lxc/network_zone.go:86 msgid "List available network zone" msgstr "" -#: lxc/network_zone.go:688 lxc/network_zone.go:689 +#: lxc/network_zone.go:693 lxc/network_zone.go:694 msgid "List available network zone records" msgstr "" -#: lxc/network_zone.go:84 +#: lxc/network_zone.go:85 msgid "List available network zoneS" msgstr "" @@ -3315,11 +3310,11 @@ msgstr "" msgid "List projects" msgstr "" -#: lxc/storage_bucket.go:766 lxc/storage_bucket.go:768 +#: lxc/storage_bucket.go:771 lxc/storage_bucket.go:773 msgid "List storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:451 lxc/storage_bucket.go:453 +#: lxc/storage_bucket.go:456 lxc/storage_bucket.go:458 msgid "List storage buckets" msgstr "" @@ -3347,7 +3342,7 @@ msgid "" " U - Current disk usage" msgstr "" -#: lxc/remote.go:668 lxc/remote.go:669 +#: lxc/remote.go:669 lxc/remote.go:670 msgid "List the available remotes" msgstr "" @@ -3574,11 +3569,11 @@ msgstr "" msgid "Manage network forwards" msgstr "" -#: lxc/network_load_balancer.go:782 lxc/network_load_balancer.go:783 +#: lxc/network_load_balancer.go:787 lxc/network_load_balancer.go:788 msgid "Manage network load balancer backends" msgstr "" -#: lxc/network_load_balancer.go:947 lxc/network_load_balancer.go:948 +#: lxc/network_load_balancer.go:952 lxc/network_load_balancer.go:953 msgid "Manage network load balancer ports" msgstr "" @@ -3590,15 +3585,15 @@ msgstr "" msgid "Manage network peerings" msgstr "" -#: lxc/network_zone.go:1224 lxc/network_zone.go:1225 +#: lxc/network_zone.go:1229 lxc/network_zone.go:1230 msgid "Manage network zone record entries" msgstr "" -#: lxc/network_zone.go:631 lxc/network_zone.go:632 +#: lxc/network_zone.go:636 lxc/network_zone.go:637 msgid "Manage network zone records" msgstr "" -#: lxc/network_zone.go:27 lxc/network_zone.go:28 +#: lxc/network_zone.go:28 lxc/network_zone.go:29 msgid "Manage network zones" msgstr "" @@ -3614,11 +3609,11 @@ msgstr "" msgid "Manage projects" msgstr "" -#: lxc/storage_bucket.go:726 +#: lxc/storage_bucket.go:731 msgid "Manage storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:727 +#: lxc/storage_bucket.go:732 msgid "Manage storage bucket keys." msgstr "" @@ -3646,7 +3641,7 @@ msgid "" "\"custom\" (user created) volumes." msgstr "" -#: lxc/remote.go:33 lxc/remote.go:34 +#: lxc/remote.go:34 lxc/remote.go:35 msgid "Manage the list of remote servers" msgstr "" @@ -3727,12 +3722,12 @@ msgid "" "Minimum level for log messages (only available when using pretty format)" msgstr "" -#: lxc/storage_bucket.go:111 lxc/storage_bucket.go:211 -#: lxc/storage_bucket.go:287 lxc/storage_bucket.go:406 -#: lxc/storage_bucket.go:563 lxc/storage_bucket.go:655 -#: lxc/storage_bucket.go:797 lxc/storage_bucket.go:878 -#: lxc/storage_bucket.go:953 lxc/storage_bucket.go:1032 -#: lxc/storage_bucket.go:1155 +#: lxc/storage_bucket.go:116 lxc/storage_bucket.go:216 +#: lxc/storage_bucket.go:292 lxc/storage_bucket.go:411 +#: lxc/storage_bucket.go:568 lxc/storage_bucket.go:660 +#: lxc/storage_bucket.go:802 lxc/storage_bucket.go:883 +#: lxc/storage_bucket.go:958 lxc/storage_bucket.go:1037 +#: lxc/storage_bucket.go:1160 msgid "Missing bucket name" msgstr "" @@ -3776,8 +3771,8 @@ msgstr "" msgid "Missing instance name" msgstr "" -#: lxc/storage_bucket.go:882 lxc/storage_bucket.go:957 -#: lxc/storage_bucket.go:1036 lxc/storage_bucket.go:1159 +#: lxc/storage_bucket.go:887 lxc/storage_bucket.go:962 +#: lxc/storage_bucket.go:1041 lxc/storage_bucket.go:1164 msgid "Missing key name" msgstr "" @@ -3785,10 +3780,10 @@ msgstr "" #: lxc/network_forward.go:481 lxc/network_forward.go:627 #: lxc/network_forward.go:746 lxc/network_forward.go:823 #: lxc/network_forward.go:889 lxc/network_load_balancer.go:201 -#: lxc/network_load_balancer.go:411 lxc/network_load_balancer.go:484 -#: lxc/network_load_balancer.go:630 lxc/network_load_balancer.go:750 -#: lxc/network_load_balancer.go:826 lxc/network_load_balancer.go:890 -#: lxc/network_load_balancer.go:991 lxc/network_load_balancer.go:1053 +#: lxc/network_load_balancer.go:416 lxc/network_load_balancer.go:489 +#: lxc/network_load_balancer.go:635 lxc/network_load_balancer.go:755 +#: lxc/network_load_balancer.go:831 lxc/network_load_balancer.go:895 +#: lxc/network_load_balancer.go:996 lxc/network_load_balancer.go:1058 msgid "Missing listen address" msgstr "" @@ -3813,26 +3808,26 @@ msgstr "" #: lxc/network_forward.go:477 lxc/network_forward.go:623 #: lxc/network_forward.go:742 lxc/network_forward.go:819 #: lxc/network_forward.go:885 lxc/network_load_balancer.go:123 -#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:261 -#: lxc/network_load_balancer.go:407 lxc/network_load_balancer.go:480 -#: lxc/network_load_balancer.go:626 lxc/network_load_balancer.go:746 -#: lxc/network_load_balancer.go:822 lxc/network_load_balancer.go:886 -#: lxc/network_load_balancer.go:987 lxc/network_load_balancer.go:1049 +#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:266 +#: lxc/network_load_balancer.go:412 lxc/network_load_balancer.go:485 +#: lxc/network_load_balancer.go:631 lxc/network_load_balancer.go:751 +#: lxc/network_load_balancer.go:827 lxc/network_load_balancer.go:891 +#: lxc/network_load_balancer.go:992 lxc/network_load_balancer.go:1054 #: lxc/network_peer.go:110 lxc/network_peer.go:180 lxc/network_peer.go:237 #: lxc/network_peer.go:355 lxc/network_peer.go:426 lxc/network_peer.go:556 #: lxc/network_peer.go:665 msgid "Missing network name" msgstr "" -#: lxc/network_zone.go:178 lxc/network_zone.go:234 lxc/network_zone.go:294 -#: lxc/network_zone.go:382 lxc/network_zone.go:503 lxc/network_zone.go:606 -#: lxc/network_zone.go:712 lxc/network_zone.go:780 lxc/network_zone.go:892 -#: lxc/network_zone.go:976 lxc/network_zone.go:1197 lxc/network_zone.go:1262 -#: lxc/network_zone.go:1307 +#: lxc/network_zone.go:179 lxc/network_zone.go:235 lxc/network_zone.go:299 +#: lxc/network_zone.go:387 lxc/network_zone.go:508 lxc/network_zone.go:611 +#: lxc/network_zone.go:717 lxc/network_zone.go:785 lxc/network_zone.go:897 +#: lxc/network_zone.go:981 lxc/network_zone.go:1202 lxc/network_zone.go:1267 +#: lxc/network_zone.go:1312 msgid "Missing network zone name" msgstr "" -#: lxc/network_zone.go:833 lxc/network_zone.go:1095 +#: lxc/network_zone.go:838 lxc/network_zone.go:1100 msgid "Missing network zone record name" msgstr "" @@ -3842,13 +3837,13 @@ msgid "Missing peer name" msgstr "" #: lxc/storage.go:194 lxc/storage.go:264 lxc/storage.go:370 lxc/storage.go:440 -#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:107 -#: lxc/storage_bucket.go:207 lxc/storage_bucket.go:283 -#: lxc/storage_bucket.go:402 lxc/storage_bucket.go:477 -#: lxc/storage_bucket.go:559 lxc/storage_bucket.go:651 -#: lxc/storage_bucket.go:793 lxc/storage_bucket.go:874 -#: lxc/storage_bucket.go:949 lxc/storage_bucket.go:1028 -#: lxc/storage_bucket.go:1151 lxc/storage_volume.go:189 +#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:112 +#: lxc/storage_bucket.go:212 lxc/storage_bucket.go:288 +#: lxc/storage_bucket.go:407 lxc/storage_bucket.go:482 +#: lxc/storage_bucket.go:564 lxc/storage_bucket.go:656 +#: lxc/storage_bucket.go:798 lxc/storage_bucket.go:879 +#: lxc/storage_bucket.go:954 lxc/storage_bucket.go:1033 +#: lxc/storage_bucket.go:1156 lxc/storage_volume.go:189 #: lxc/storage_volume.go:287 lxc/storage_volume.go:583 #: lxc/storage_volume.go:660 lxc/storage_volume.go:735 #: lxc/storage_volume.go:817 lxc/storage_volume.go:919 @@ -3968,7 +3963,7 @@ msgstr "" msgid "Moving the storage volume: %s" msgstr "" -#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1097 +#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1102 msgid "Multiple ports match. Use --force to remove them all" msgstr "" @@ -3987,10 +3982,10 @@ 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:677 lxc/project.go:498 -#: lxc/remote.go:731 lxc/storage.go:638 lxc/storage_bucket.go:506 -#: lxc/storage_bucket.go:826 lxc/storage_volume.go:1561 +#: lxc/network_acl.go:147 lxc/network_peer.go:139 lxc/network_zone.go:139 +#: lxc/network_zone.go:746 lxc/profile.go:677 lxc/project.go:498 +#: lxc/remote.go:732 lxc/storage.go:638 lxc/storage_bucket.go:511 +#: lxc/storage_bucket.go:831 lxc/storage_volume.go:1561 msgid "NAME" msgstr "" @@ -4016,7 +4011,7 @@ msgstr "" #: lxc/network.go:957 lxc/operation.go:154 lxc/project.go:456 #: lxc/project.go:461 lxc/project.go:466 lxc/project.go:471 lxc/project.go:476 -#: lxc/project.go:481 lxc/remote.go:691 lxc/remote.go:696 lxc/remote.go:701 +#: lxc/project.go:481 lxc/remote.go:692 lxc/remote.go:697 lxc/remote.go:702 msgid "NO" msgstr "" @@ -4043,7 +4038,7 @@ msgstr "" msgid "Name" msgstr "" -#: lxc/remote.go:141 +#: lxc/remote.go:142 msgid "Name of the project to use for this remote:" msgstr "" @@ -4092,12 +4087,12 @@ msgstr "" msgid "Network ACL %s renamed to %s" msgstr "" -#: lxc/network_zone.go:336 +#: lxc/network_zone.go:341 #, c-format msgid "Network Zone %s created" msgstr "" -#: lxc/network_zone.go:616 +#: lxc/network_zone.go:621 #, c-format msgid "Network Zone %s deleted" msgstr "" @@ -4112,12 +4107,12 @@ msgstr "" msgid "Network forward %s deleted" msgstr "" -#: lxc/network_load_balancer.go:365 +#: lxc/network_load_balancer.go:370 #, c-format msgid "Network load balancer %s created" msgstr "" -#: lxc/network_load_balancer.go:767 +#: lxc/network_load_balancer.go:772 #, c-format msgid "Network load balancer %s deleted" msgstr "" @@ -4155,12 +4150,12 @@ msgstr "" msgid "Network usage:" msgstr "" -#: lxc/network_zone.go:934 +#: lxc/network_zone.go:939 #, c-format msgid "Network zone record %s created" msgstr "" -#: lxc/network_zone.go:1207 +#: lxc/network_zone.go:1212 #, c-format msgid "Network zone record %s deleted" msgstr "" @@ -4195,11 +4190,11 @@ msgstr "" msgid "No device found for this storage volume" msgstr "" -#: lxc/network_load_balancer.go:921 +#: lxc/network_load_balancer.go:926 msgid "No matching backend found" msgstr "" -#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1108 +#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1113 msgid "No matching port(s) found" msgstr "" @@ -4245,7 +4240,7 @@ msgstr "" msgid "Only \"custom\" volumes can be snapshotted" msgstr "" -#: lxc/remote.go:332 +#: lxc/remote.go:333 msgid "Only https URLs are supported for simplestreams" msgstr "" @@ -4270,7 +4265,7 @@ msgstr "" msgid "Optimized Storage" msgstr "" -#: lxc/main.go:96 +#: lxc/main.go:97 msgid "Override the source project" msgstr "" @@ -4316,11 +4311,11 @@ msgstr "" msgid "PROJECT" msgstr "" -#: lxc/remote.go:733 +#: lxc/remote.go:734 msgid "PROTOCOL" msgstr "" -#: lxc/image.go:1073 lxc/remote.go:735 +#: lxc/image.go:1073 lxc/remote.go:736 msgid "PUBLIC" msgstr "" @@ -4336,7 +4331,7 @@ msgstr "" msgid "Partitions:" msgstr "" -#: lxc/main.go:361 +#: lxc/main.go:363 #, c-format msgid "Password for %s: " msgstr "" @@ -4349,7 +4344,7 @@ msgstr "" msgid "Perform an incremental copy" msgstr "" -#: lxc/remote.go:182 +#: lxc/remote.go:183 msgid "Please provide an alternate server address (empty to abort):" msgstr "" @@ -4361,7 +4356,7 @@ msgstr "" msgid "Please provide cluster member name: " msgstr "" -#: lxc/remote.go:462 +#: lxc/remote.go:463 msgid "Please type 'y', 'n' or the fingerprint:" msgstr "" @@ -4383,10 +4378,10 @@ msgstr "" #: lxc/config.go:1278 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/network_load_balancer.go:695 lxc/network_peer.go:611 +#: lxc/network_zone.go:557 lxc/network_zone.go:1149 lxc/profile.go:539 +#: lxc/project.go:316 lxc/storage.go:311 lxc/storage_bucket.go:349 +#: lxc/storage_bucket.go:1098 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 "" @@ -4395,7 +4390,7 @@ msgstr "" msgid "Pretty rendering (short for --format=pretty)" msgstr "" -#: lxc/main.go:94 +#: lxc/main.go:95 msgid "Print help" msgstr "" @@ -4403,7 +4398,7 @@ msgstr "" msgid "Print the raw response" msgstr "" -#: lxc/main.go:93 +#: lxc/main.go:94 msgid "Print version number" msgstr "" @@ -4492,7 +4487,7 @@ msgstr "" msgid "Project %s renamed to %s" msgstr "" -#: lxc/remote.go:106 +#: lxc/remote.go:107 msgid "Project to use for the remote" msgstr "" @@ -4590,7 +4585,7 @@ msgid "" "pool \"default\"." msgstr "" -#: lxc/remote.go:105 +#: lxc/remote.go:106 msgid "Public image server" msgstr "" @@ -4638,7 +4633,7 @@ msgstr "" msgid "RESOURCE" msgstr "" -#: lxc/storage_bucket.go:828 +#: lxc/storage_bucket.go:833 msgid "ROLE" msgstr "" @@ -4681,45 +4676,45 @@ msgstr "" msgid "Refreshing the image: %s" msgstr "" -#: lxc/remote.go:785 +#: lxc/remote.go:786 #, c-format msgid "Remote %s already exists" msgstr "" -#: lxc/project.go:769 lxc/remote.go:776 lxc/remote.go:849 lxc/remote.go:905 -#: lxc/remote.go:945 +#: lxc/project.go:769 lxc/remote.go:777 lxc/remote.go:850 lxc/remote.go:906 +#: lxc/remote.go:946 #, c-format msgid "Remote %s doesn't exist" msgstr "" -#: lxc/remote.go:301 +#: lxc/remote.go:302 #, c-format msgid "Remote %s exists as <%s>" msgstr "" -#: lxc/remote.go:857 +#: lxc/remote.go:858 #, c-format msgid "Remote %s is global and cannot be removed" msgstr "" -#: lxc/remote.go:780 lxc/remote.go:853 lxc/remote.go:949 +#: lxc/remote.go:781 lxc/remote.go:854 lxc/remote.go:950 #, c-format msgid "Remote %s is static and cannot be modified" msgstr "" -#: lxc/remote.go:290 +#: lxc/remote.go:291 msgid "Remote address must not be empty" msgstr "" -#: lxc/remote.go:101 +#: lxc/remote.go:102 msgid "Remote admin password" msgstr "" -#: lxc/remote.go:295 +#: lxc/remote.go:296 msgid "Remote names may not contain colons" msgstr "" -#: lxc/remote.go:102 +#: lxc/remote.go:103 msgid "Remote trust token" msgstr "" @@ -4745,7 +4740,7 @@ msgstr "" msgid "Remove a member from the cluster" msgstr "" -#: lxc/network_zone.go:1285 +#: lxc/network_zone.go:1290 msgid "Remove a network zone record entry" msgstr "" @@ -4753,7 +4748,7 @@ msgstr "" msgid "Remove aliases" msgstr "" -#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1025 +#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1030 msgid "Remove all ports that match" msgstr "" @@ -4761,15 +4756,15 @@ msgstr "" msgid "Remove all rules that match" msgstr "" -#: lxc/network_load_balancer.go:862 +#: lxc/network_load_balancer.go:867 msgid "Remove backend from a load balancer" msgstr "" -#: lxc/network_load_balancer.go:861 +#: lxc/network_load_balancer.go:866 msgid "Remove backends from a load balancer" msgstr "" -#: lxc/network_zone.go:1286 +#: lxc/network_zone.go:1291 msgid "Remove entries from a network zone record" msgstr "" @@ -4793,7 +4788,7 @@ msgstr "" msgid "Remove ports from a forward" msgstr "" -#: lxc/network_load_balancer.go:1023 lxc/network_load_balancer.go:1024 +#: lxc/network_load_balancer.go:1028 lxc/network_load_balancer.go:1029 msgid "Remove ports from a load balancer" msgstr "" @@ -4801,7 +4796,7 @@ msgstr "" msgid "Remove profiles from instances" msgstr "" -#: lxc/remote.go:827 lxc/remote.go:828 +#: lxc/remote.go:828 lxc/remote.go:829 msgid "Remove remotes" msgstr "" @@ -4858,7 +4853,7 @@ msgstr "" msgid "Rename projects" msgstr "" -#: lxc/remote.go:754 lxc/remote.go:755 +#: lxc/remote.go:755 lxc/remote.go:756 msgid "Rename remotes" msgstr "" @@ -4936,7 +4931,7 @@ msgid "Restrict the certificate to one or more projects" msgstr "" #: lxc/console.go:44 -msgid "Retrieve the instance's console log" +msgid "Retrieve the container's console log" msgstr "" #: lxc/init.go:347 @@ -4952,7 +4947,7 @@ msgstr "" msgid "Revoke cluster member join token" msgstr "" -#: lxc/storage_bucket.go:851 +#: lxc/storage_bucket.go:856 msgid "Role (admin or read-only)" msgstr "" @@ -5003,7 +4998,7 @@ msgstr "" msgid "STATE" msgstr "" -#: lxc/remote.go:736 +#: lxc/remote.go:737 msgid "STATIC" msgstr "" @@ -5027,11 +5022,11 @@ msgstr "" msgid "STP" msgstr "" -#: lxc/storage_bucket.go:853 +#: lxc/storage_bucket.go:858 msgid "Secret key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:909 +#: lxc/storage_bucket.go:914 #, c-format msgid "Secret key: %s" msgstr "" @@ -5040,19 +5035,19 @@ msgstr "" msgid "Send a raw query to LXD" msgstr "" -#: lxc/remote.go:104 +#: lxc/remote.go:105 msgid "Server authentication type (tls or oidc)" msgstr "" -#: lxc/remote.go:460 +#: lxc/remote.go:461 msgid "Server certificate NACKed by user" msgstr "" -#: lxc/remote.go:599 +#: lxc/remote.go:600 msgid "Server doesn't trust us after authentication" msgstr "" -#: lxc/remote.go:103 +#: lxc/remote.go:104 msgid "Server protocol (lxd or simplestreams)" msgstr "" @@ -5151,11 +5146,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_load_balancer.go:450 +#: lxc/network_load_balancer.go:455 msgid "Set network load balancer keys" msgstr "" -#: lxc/network_load_balancer.go:451 +#: lxc/network_load_balancer.go:456 msgid "" "Set network load balancer keys\n" "\n" @@ -5177,11 +5172,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:353 +#: lxc/network_zone.go:358 msgid "Set network zone configuration keys" msgstr "" -#: lxc/network_zone.go:354 +#: lxc/network_zone.go:359 msgid "" "Set network zone configuration keys\n" "\n" @@ -5190,7 +5185,7 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:951 lxc/network_zone.go:952 +#: lxc/network_zone.go:956 lxc/network_zone.go:957 msgid "Set network zone record configuration keys" msgstr "" @@ -5220,11 +5215,11 @@ msgid "" " lxc project set [:] " msgstr "" -#: lxc/storage_bucket.go:529 +#: lxc/storage_bucket.go:534 msgid "Set storage bucket configuration keys" msgstr "" -#: lxc/storage_bucket.go:530 +#: lxc/storage_bucket.go:535 msgid "" "Set storage bucket configuration keys\n" "\n" @@ -5259,7 +5254,7 @@ msgid "" " lxc storage volume set [:] [/] " msgstr "" -#: lxc/remote.go:923 lxc/remote.go:924 +#: lxc/remote.go:924 lxc/remote.go:925 msgid "Set the URL for the remote" msgstr "" @@ -5287,7 +5282,7 @@ msgstr "" msgid "Set the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:458 +#: lxc/network_load_balancer.go:463 msgid "Set the key as a network load balancer property" msgstr "" @@ -5299,11 +5294,11 @@ msgstr "" msgid "Set the key as a network property" msgstr "" -#: lxc/network_zone.go:361 +#: lxc/network_zone.go:366 msgid "Set the key as a network zone property" msgstr "" -#: lxc/network_zone.go:957 +#: lxc/network_zone.go:962 msgid "Set the key as a network zone record property" msgstr "" @@ -5315,7 +5310,7 @@ msgstr "" msgid "Set the key as a project property" msgstr "" -#: lxc/storage_bucket.go:537 +#: lxc/storage_bucket.go:542 msgid "Set the key as a storage bucket property" msgstr "" @@ -5335,11 +5330,11 @@ msgstr "" msgid "Setup SSH SFTP listener on address:port instead of mounting" msgstr "" -#: lxc/main.go:97 +#: lxc/main.go:98 msgid "Show all debug messages" msgstr "" -#: lxc/main.go:98 +#: lxc/main.go:99 msgid "Show all information messages" msgstr "" @@ -5408,7 +5403,7 @@ msgstr "" msgid "Show instance or server information" msgstr "" -#: lxc/main.go:271 lxc/main.go:272 +#: lxc/main.go:272 lxc/main.go:273 msgid "Show less common commands" msgstr "" @@ -5440,15 +5435,15 @@ msgstr "" msgid "Show network peer configurations" msgstr "" -#: lxc/network_zone.go:155 lxc/network_zone.go:156 +#: lxc/network_zone.go:156 lxc/network_zone.go:157 msgid "Show network zone configurations" msgstr "" -#: lxc/network_zone.go:758 +#: lxc/network_zone.go:763 msgid "Show network zone record configuration" msgstr "" -#: lxc/network_zone.go:759 +#: lxc/network_zone.go:764 msgid "Show network zone record configurations" msgstr "" @@ -5460,11 +5455,11 @@ msgstr "" msgid "Show project options" msgstr "" -#: lxc/storage_bucket.go:623 lxc/storage_bucket.go:624 +#: lxc/storage_bucket.go:628 lxc/storage_bucket.go:629 msgid "Show storage bucket configurations" msgstr "" -#: lxc/storage_bucket.go:1123 lxc/storage_bucket.go:1124 +#: lxc/storage_bucket.go:1128 lxc/storage_bucket.go:1129 msgid "Show storage bucket key configurations" msgstr "" @@ -5490,7 +5485,7 @@ msgid "" "that are granted via identity provider group mappings. \n" msgstr "" -#: lxc/remote.go:630 lxc/remote.go:631 +#: lxc/remote.go:631 lxc/remote.go:632 msgid "Show the default remote" msgstr "" @@ -5614,22 +5609,22 @@ msgstr "" msgid "Stopping the instance failed: %s" msgstr "" -#: lxc/storage_bucket.go:161 +#: lxc/storage_bucket.go:166 #, c-format msgid "Storage bucket %s created" msgstr "" -#: lxc/storage_bucket.go:228 +#: lxc/storage_bucket.go:233 #, c-format msgid "Storage bucket %s deleted" msgstr "" -#: lxc/storage_bucket.go:907 +#: lxc/storage_bucket.go:912 #, c-format msgid "Storage bucket key %s added" msgstr "" -#: lxc/storage_bucket.go:973 +#: lxc/storage_bucket.go:978 #, c-format msgid "Storage bucket key %s removed" msgstr "" @@ -5702,7 +5697,7 @@ msgstr "" msgid "Switch the current project" msgstr "" -#: lxc/remote.go:883 lxc/remote.go:884 +#: lxc/remote.go:884 lxc/remote.go:885 msgid "Switch the default remote" msgstr "" @@ -5817,7 +5812,7 @@ msgstr "" msgid "The property %q does not exist on the instance snapshot %s/%s: %v" msgstr "" -#: lxc/network_load_balancer.go:424 +#: lxc/network_load_balancer.go:429 #, c-format msgid "The property %q does not exist on the load balancer %q: %v" msgstr "" @@ -5842,12 +5837,12 @@ msgstr "" msgid "The property %q does not exist on the network peer %q: %v" msgstr "" -#: lxc/network_zone.go:246 +#: lxc/network_zone.go:247 #, c-format msgid "The property %q does not exist on the network zone %q: %v" msgstr "" -#: lxc/network_zone.go:845 +#: lxc/network_zone.go:850 #, c-format msgid "The property %q does not exist on the network zone record %q: %v" msgstr "" @@ -5862,7 +5857,7 @@ msgstr "" msgid "The property %q does not exist on the project %q: %v" msgstr "" -#: lxc/storage_bucket.go:426 +#: lxc/storage_bucket.go:431 #, c-format msgid "The property %q does not exist on the storage bucket %q: %v" msgstr "" @@ -5916,7 +5911,7 @@ msgstr "" msgid "This LXD server is not available on the network" msgstr "" -#: lxc/main.go:293 +#: lxc/main.go:294 msgid "" "This client hasn't been configured to use a remote LXD server yet.\n" "As your platform can't run native Linux instances, you must connect to a " @@ -5948,11 +5943,11 @@ msgstr "" msgid "To create a new network, use: lxc network create" msgstr "" -#: lxc/console.go:210 +#: lxc/console.go:215 msgid "To detach from the console, press: +a q" msgstr "" -#: lxc/main.go:403 +#: lxc/main.go:406 msgid "" "To start your first container, try: lxc launch ubuntu:24.04\n" "Or for a virtual machine: lxc launch ubuntu:24.04 --vm" @@ -6050,7 +6045,7 @@ msgstr "" msgid "UPLOAD DATE" msgstr "" -#: lxc/cluster.go:184 lxc/remote.go:732 +#: lxc/cluster.go:184 lxc/remote.go:733 msgid "URL" msgstr "" @@ -6059,7 +6054,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:679 lxc/project.go:506 +#: lxc/network_zone.go:141 lxc/profile.go:679 lxc/project.go:506 #: lxc/storage.go:647 lxc/storage_volume.go:1564 msgid "USED BY" msgstr "" @@ -6078,7 +6073,7 @@ msgstr "" msgid "Unable to create a temporary file: %v" msgstr "" -#: lxc/remote.go:213 lxc/remote.go:247 +#: lxc/remote.go:214 lxc/remote.go:248 msgid "Unavailable remote server" msgstr "" @@ -6098,7 +6093,7 @@ msgstr "" msgid "Unknown column shorthand char '%c' in '%s'" msgstr "" -#: lxc/console.go:159 +#: lxc/console.go:164 #, c-format msgid "Unknown console type %q" msgstr "" @@ -6158,11 +6153,11 @@ msgstr "" msgid "Unset network forward keys" msgstr "" -#: lxc/network_load_balancer.go:548 +#: lxc/network_load_balancer.go:553 msgid "Unset network load balancer configuration keys" msgstr "" -#: lxc/network_load_balancer.go:549 +#: lxc/network_load_balancer.go:554 msgid "Unset network load balancer keys" msgstr "" @@ -6174,11 +6169,11 @@ msgstr "" msgid "Unset network peer keys" msgstr "" -#: lxc/network_zone.go:433 lxc/network_zone.go:434 +#: lxc/network_zone.go:438 lxc/network_zone.go:439 msgid "Unset network zone configuration keys" msgstr "" -#: lxc/network_zone.go:1027 lxc/network_zone.go:1028 +#: lxc/network_zone.go:1032 lxc/network_zone.go:1033 msgid "Unset network zone record configuration keys" msgstr "" @@ -6190,7 +6185,7 @@ msgstr "" msgid "Unset project configuration keys" msgstr "" -#: lxc/storage_bucket.go:692 lxc/storage_bucket.go:693 +#: lxc/storage_bucket.go:697 lxc/storage_bucket.go:698 msgid "Unset storage bucket configuration keys" msgstr "" @@ -6214,7 +6209,7 @@ msgstr "" msgid "Unset the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:552 +#: lxc/network_load_balancer.go:557 msgid "Unset the key as a network load balancer property" msgstr "" @@ -6226,11 +6221,11 @@ msgstr "" msgid "Unset the key as a network property" msgstr "" -#: lxc/network_zone.go:437 +#: lxc/network_zone.go:442 msgid "Unset the key as a network zone property" msgstr "" -#: lxc/network_zone.go:1031 +#: lxc/network_zone.go:1036 msgid "Unset the key as a network zone record property" msgstr "" @@ -6242,7 +6237,7 @@ msgstr "" msgid "Unset the key as a project property" msgstr "" -#: lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:701 msgid "Unset the key as a storage bucket property" msgstr "" @@ -6304,7 +6299,7 @@ msgid "" "Use storage driver optimized format (can only be restored on a similar pool)" msgstr "" -#: lxc/main.go:100 +#: lxc/main.go:101 msgid "Use with help or --help to view sub-commands" msgstr "" @@ -6401,7 +6396,7 @@ msgstr "" #: lxc/network.go:959 lxc/operation.go:156 lxc/project.go:458 #: lxc/project.go:463 lxc/project.go:468 lxc/project.go:473 lxc/project.go:478 -#: lxc/project.go:483 lxc/remote.go:693 lxc/remote.go:698 lxc/remote.go:703 +#: lxc/project.go:483 lxc/remote.go:694 lxc/remote.go:699 lxc/remote.go:704 msgid "YES" msgstr "" @@ -6436,7 +6431,7 @@ 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/network.go:909 lxc/network_acl.go:91 lxc/network_zone.go:83 #: 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 "[:]" @@ -6499,19 +6494,19 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:154 lxc/network_zone.go:463 lxc/network_zone.go:581 +#: lxc/network_zone.go:155 lxc/network_zone.go:468 lxc/network_zone.go:586 msgid "[:]" msgstr "" -#: lxc/network_zone.go:209 lxc/network_zone.go:432 +#: lxc/network_zone.go:210 lxc/network_zone.go:437 msgid "[:] " msgstr "" -#: lxc/network_zone.go:352 +#: lxc/network_zone.go:357 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:269 +#: lxc/network_zone.go:270 msgid "[:] [key=value...]" msgstr "" @@ -6757,30 +6752,30 @@ msgstr "" #: lxc/network_forward.go:169 lxc/network_forward.go:574 #: lxc/network_forward.go:715 lxc/network_load_balancer.go:171 -#: lxc/network_load_balancer.go:577 lxc/network_load_balancer.go:719 +#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:724 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:860 +#: lxc/network_load_balancer.go:865 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:796 +#: lxc/network_load_balancer.go:801 msgid "" "[:] " "[]" msgstr "" #: lxc/network_forward.go:377 lxc/network_forward.go:544 -#: lxc/network_load_balancer.go:381 lxc/network_load_balancer.go:547 +#: lxc/network_load_balancer.go:386 lxc/network_load_balancer.go:552 msgid "[:] " msgstr "" -#: lxc/network_forward.go:446 lxc/network_load_balancer.go:449 +#: lxc/network_forward.go:446 lxc/network_load_balancer.go:454 msgid "[:] =..." msgstr "" -#: lxc/network_load_balancer.go:961 +#: lxc/network_load_balancer.go:966 msgid "" "[:] " "[,...]" @@ -6792,7 +6787,7 @@ msgid "" " []" msgstr "" -#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1022 +#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1027 msgid "[:] [] []" msgstr "" @@ -6843,7 +6838,7 @@ msgid "[:]" msgstr "" #: lxc/storage.go:167 lxc/storage.go:218 lxc/storage.go:412 lxc/storage.go:759 -#: lxc/storage_bucket.go:449 +#: lxc/storage_bucket.go:454 msgid "[:]" msgstr "" @@ -6851,18 +6846,18 @@ msgstr "" msgid "[:] []" msgstr "" -#: lxc/storage_bucket.go:180 lxc/storage_bucket.go:242 -#: lxc/storage_bucket.go:622 lxc/storage_bucket.go:764 +#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:247 +#: lxc/storage_bucket.go:627 lxc/storage_bucket.go:769 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:375 lxc/storage_bucket.go:691 -#: lxc/storage_bucket.go:845 lxc/storage_bucket.go:923 -#: lxc/storage_bucket.go:987 lxc/storage_bucket.go:1122 +#: lxc/storage_bucket.go:380 lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:850 lxc/storage_bucket.go:928 +#: lxc/storage_bucket.go:992 lxc/storage_bucket.go:1127 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:528 +#: lxc/storage_bucket.go:533 msgid "[:] =..." msgstr "" @@ -7006,27 +7001,27 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:686 +#: lxc/network_zone.go:691 msgid "[:]" msgstr "" -#: lxc/network_zone.go:757 lxc/network_zone.go:1056 lxc/network_zone.go:1173 +#: lxc/network_zone.go:762 lxc/network_zone.go:1061 lxc/network_zone.go:1178 msgid "[:] " msgstr "" -#: lxc/network_zone.go:809 lxc/network_zone.go:1026 +#: lxc/network_zone.go:814 lxc/network_zone.go:1031 msgid "[:] " msgstr "" -#: lxc/network_zone.go:950 +#: lxc/network_zone.go:955 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:1238 lxc/network_zone.go:1284 +#: lxc/network_zone.go:1243 lxc/network_zone.go:1289 msgid "[:] " msgstr "" -#: lxc/network_zone.go:868 +#: lxc/network_zone.go:873 msgid "[:] [key=value...]" msgstr "" @@ -7050,7 +7045,7 @@ msgstr "" msgid "[:][] [...]" msgstr "" -#: lxc/remote.go:88 +#: lxc/remote.go:89 msgid "[] " msgstr "" @@ -7058,7 +7053,7 @@ msgstr "" msgid "[[:]]" msgstr "" -#: lxc/project.go:488 lxc/remote.go:722 +#: lxc/project.go:488 lxc/remote.go:723 msgid "current" msgstr "" @@ -7321,6 +7316,23 @@ msgid "" " Create a new OVN network called bar using baz as its uplink network" msgstr "" +#: lxc/network_load_balancer.go:239 +msgid "" +"lxc network load-balancer create n1 127.0.0.1\n" +"\n" +"lxc network load-balancer create n1 127.0.0.1 < config.yaml\n" +" Create network load-balancer for network n1 with configuration from " +"config.yaml" +msgstr "" + +#: lxc/network_zone.go:273 +msgid "" +"lxc network zone create z1\n" +"\n" +"lxc network zone create z1 < config.yaml\n" +" Create network zone z1 with configuration from config.yaml" +msgstr "" + #: lxc/operation.go:195 msgid "" "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n" @@ -7391,26 +7403,36 @@ msgid "" " Restore the snapshot." msgstr "" -#: lxc/storage_bucket.go:245 +#: lxc/storage_bucket.go:84 +msgid "" +"lxc storage bucket create p1 b01\n" +"\tCreate a new storage bucket name b01 in storage pool p1\n" +"\n" +"lxc storage bucket create p1 b01 < config.yaml\n" +"\tCreate a new storage bucket name b01 in storage pool p1 using the content " +"of config.yaml" +msgstr "" + +#: lxc/storage_bucket.go:250 msgid "" "lxc storage bucket edit [:] < bucket.yaml\n" " Update a storage bucket using the content of bucket.yaml." msgstr "" -#: lxc/storage_bucket.go:990 +#: lxc/storage_bucket.go:995 msgid "" "lxc storage bucket edit [:] < key.yaml\n" " Update a storage bucket key using the content of key.yaml." msgstr "" -#: lxc/storage_bucket.go:1125 +#: lxc/storage_bucket.go:1130 msgid "" "lxc storage bucket key show default data foo\n" " Will show the properties of a bucket key called \"foo\" for a bucket " "called \"data\" in the \"default\" pool." msgstr "" -#: lxc/storage_bucket.go:625 +#: lxc/storage_bucket.go:630 msgid "" "lxc storage bucket show default data\n" " Will show the properties of a bucket called \"data\" in the \"default\" " @@ -7429,7 +7451,7 @@ msgid "" "\t\tCreate a new custom volume using backup0.tar.gz as the source." msgstr "" -#: lxc/remote.go:459 +#: lxc/remote.go:460 msgid "n" msgstr "" @@ -7441,7 +7463,7 @@ msgstr "" msgid "no" msgstr "" -#: lxc/remote.go:452 +#: lxc/remote.go:453 msgid "ok (y/n/[fingerprint])?" msgstr "" @@ -7478,7 +7500,7 @@ msgstr "" msgid "used by" msgstr "" -#: lxc/remote.go:461 +#: lxc/remote.go:462 msgid "y" msgstr "" diff --git a/po/ko.po b/po/ko.po index 922ce97e62f4..31018627d42d 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-08-20 09:31+0100\n" +"POT-Creation-Date: 2024-08-30 09:27+0100\n" "PO-Revision-Date: 2022-03-10 15:09+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Korean " msgstr "" -#: lxc/remote.go:825 lxc/remote.go:882 +#: lxc/remote.go:826 lxc/remote.go:883 msgid "" msgstr "" -#: lxc/remote.go:922 +#: lxc/remote.go:923 msgid " " msgstr "" -#: lxc/remote.go:752 +#: lxc/remote.go:753 msgid " " msgstr "" @@ -556,7 +556,7 @@ msgstr "" msgid "ARCHITECTURE" msgstr "" -#: lxc/remote.go:734 +#: lxc/remote.go:735 msgid "AUTH TYPE" msgstr "" @@ -564,15 +564,15 @@ msgstr "" msgid "AUTHENTICATION METHOD" msgstr "" -#: lxc/remote.go:100 +#: lxc/remote.go:101 msgid "Accept certificate" msgstr "" -#: lxc/storage_bucket.go:852 +#: lxc/storage_bucket.go:857 msgid "Access key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:908 +#: lxc/storage_bucket.go:913 #, c-format msgid "Access key: %s" msgstr "" @@ -606,19 +606,19 @@ msgstr "" msgid "Add a group to an identity provider group" msgstr "" -#: lxc/network_zone.go:1239 +#: lxc/network_zone.go:1244 msgid "Add a network zone record entry" msgstr "" -#: lxc/network_load_balancer.go:798 +#: lxc/network_load_balancer.go:803 msgid "Add backend to a load balancer" msgstr "" -#: lxc/network_load_balancer.go:797 +#: lxc/network_load_balancer.go:802 msgid "Add backends to a load balancer" msgstr "" -#: lxc/network_zone.go:1240 +#: lxc/network_zone.go:1245 msgid "Add entries to a network zone record" msgstr "" @@ -634,11 +634,11 @@ msgstr "" msgid "Add new aliases" msgstr "" -#: lxc/remote.go:89 +#: lxc/remote.go:90 msgid "Add new remote servers" msgstr "" -#: lxc/remote.go:90 +#: lxc/remote.go:91 msgid "" "Add new remote servers\n" "\n" @@ -679,7 +679,7 @@ msgstr "" msgid "Add ports to a forward" msgstr "" -#: lxc/network_load_balancer.go:962 lxc/network_load_balancer.go:963 +#: lxc/network_load_balancer.go:967 lxc/network_load_balancer.go:968 msgid "Add ports to a load balancer" msgstr "" @@ -700,17 +700,17 @@ msgstr "" msgid "Address: %s" msgstr "" -#: lxc/storage_bucket.go:164 +#: lxc/storage_bucket.go:169 #, c-format msgid "Admin access key: %s" msgstr "" -#: lxc/remote.go:566 +#: lxc/remote.go:567 #, c-format msgid "Admin password (or token) for %s:" msgstr "" -#: lxc/storage_bucket.go:165 +#: lxc/storage_bucket.go:170 #, c-format msgid "Admin secret key: %s" msgstr "" @@ -742,7 +742,7 @@ msgstr "" msgid "All projects" msgstr "" -#: lxc/remote.go:181 +#: lxc/remote.go:182 msgid "All server addresses are unavailable" msgstr "" @@ -765,7 +765,7 @@ msgstr "" msgid "Are you sure you want to %s cluster member %q? (yes/no) [default=no]: " msgstr "" -#: lxc/console.go:383 +#: lxc/console.go:388 msgid "As neither could be found, the raw SPICE socket can be found at:" msgstr "" @@ -813,7 +813,7 @@ msgid "" "as well as retrieve past log entries from it." msgstr "" -#: lxc/remote.go:548 +#: lxc/remote.go:549 #, c-format msgid "Authentication type '%s' not supported by server" msgstr "" @@ -832,11 +832,11 @@ msgstr "" msgid "Auto update: %s" msgstr "" -#: lxc/network_forward.go:240 lxc/network_load_balancer.go:242 +#: lxc/network_forward.go:240 lxc/network_load_balancer.go:247 msgid "Auto-allocate an IPv4 or IPv6 listen address. One of 'ipv4', 'ipv6'." msgstr "" -#: lxc/remote.go:136 +#: lxc/remote.go:137 msgid "Available projects:" msgstr "" @@ -868,8 +868,8 @@ msgid "Bad device override syntax, expecting ,=: %s" msgstr "" #: lxc/network.go:333 lxc/network_acl.go:382 lxc/network_forward.go:293 -#: lxc/network_load_balancer.go:296 lxc/network_peer.go:280 -#: lxc/network_zone.go:324 lxc/network_zone.go:922 lxc/storage_bucket.go:136 +#: lxc/network_load_balancer.go:301 lxc/network_peer.go:280 +#: lxc/network_zone.go:329 lxc/network_zone.go:927 lxc/storage_bucket.go:141 #, c-format msgid "Bad key/value pair: %s" msgstr "" @@ -991,7 +991,7 @@ msgstr "" msgid "Can't read from stdin: %w" msgstr "" -#: lxc/remote.go:861 +#: lxc/remote.go:862 msgid "Can't remove the default remote" msgstr "" @@ -1057,15 +1057,14 @@ msgstr "" msgid "Certificate add token for %s deleted" msgstr "" -#: lxc/remote.go:218 -#, c-format -msgid "" -"Certificate fingerprint mismatch between certificate token and server %q" +#: lxc/remote.go:452 +msgid "Certificate fingerprint" msgstr "" -#: lxc/remote.go:451 +#: lxc/remote.go:219 #, c-format -msgid "Certificate fingerprint: %s" +msgid "" +"Certificate fingerprint mismatch between certificate token and server %q" msgstr "" #: lxc/network.go:893 @@ -1077,7 +1076,7 @@ msgstr "" msgid "Client %s certificate add token:" msgstr "" -#: lxc/remote.go:603 +#: lxc/remote.go:604 msgid "Client certificate now trusted by server:" msgstr "" @@ -1139,18 +1138,18 @@ msgstr "" #: lxc/network_forward.go:456 lxc/network_forward.go:579 #: lxc/network_forward.go:721 lxc/network_forward.go:798 #: lxc/network_forward.go:864 lxc/network_load_balancer.go:176 -#: lxc/network_load_balancer.go:241 lxc/network_load_balancer.go:459 -#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:725 -#: lxc/network_load_balancer.go:801 lxc/network_load_balancer.go:865 -#: lxc/network_load_balancer.go:966 lxc/network_load_balancer.go:1028 +#: lxc/network_load_balancer.go:246 lxc/network_load_balancer.go:464 +#: lxc/network_load_balancer.go:587 lxc/network_load_balancer.go:730 +#: lxc/network_load_balancer.go:806 lxc/network_load_balancer.go:870 +#: lxc/network_load_balancer.go:971 lxc/network_load_balancer.go:1033 #: lxc/storage.go:99 lxc/storage.go:347 lxc/storage.go:418 lxc/storage.go:671 -#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:85 -#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:248 -#: lxc/storage_bucket.go:379 lxc/storage_bucket.go:536 -#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:695 -#: lxc/storage_bucket.go:770 lxc/storage_bucket.go:850 -#: lxc/storage_bucket.go:928 lxc/storage_bucket.go:993 -#: lxc/storage_bucket.go:1129 lxc/storage_volume.go:358 +#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:90 +#: lxc/storage_bucket.go:190 lxc/storage_bucket.go:253 +#: lxc/storage_bucket.go:384 lxc/storage_bucket.go:541 +#: lxc/storage_bucket.go:634 lxc/storage_bucket.go:700 +#: lxc/storage_bucket.go:775 lxc/storage_bucket.go:855 +#: lxc/storage_bucket.go:933 lxc/storage_bucket.go:998 +#: lxc/storage_bucket.go:1134 lxc/storage_volume.go:358 #: lxc/storage_volume.go:560 lxc/storage_volume.go:639 #: lxc/storage_volume.go:883 lxc/storage_volume.go:1097 #: lxc/storage_volume.go:1210 lxc/storage_volume.go:1678 @@ -1178,11 +1177,11 @@ msgstr "" msgid "Columns" msgstr "" -#: lxc/main.go:81 +#: lxc/main.go:82 msgid "Command line client for LXD" msgstr "" -#: lxc/main.go:82 +#: lxc/main.go:83 msgid "" "Command line client for LXD\n" "\n" @@ -1214,19 +1213,15 @@ msgstr "" #: lxc/config.go:347 lxc/config.go:1277 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/network_load_balancer.go:694 lxc/network_peer.go:610 +#: lxc/network_zone.go:556 lxc/network_zone.go:1148 lxc/profile.go:538 +#: lxc/project.go:315 lxc/storage.go:310 lxc/storage_bucket.go:348 +#: lxc/storage_bucket.go:1097 lxc/storage_volume.go:1016 #: lxc/storage_volume.go:1048 #, c-format msgid "Config parsing error: %s" msgstr "" -#: lxc/console.go:140 -msgid "Console log:" -msgstr "" - #: lxc/storage_volume.go:561 msgid "Content type, block or filesystem" msgstr "" @@ -1329,12 +1324,12 @@ msgstr "" msgid "Cores:" msgstr "" -#: lxc/remote.go:486 +#: lxc/remote.go:487 #, c-format msgid "Could not close server cert file %q: %w" msgstr "" -#: lxc/remote.go:224 lxc/remote.go:470 +#: lxc/remote.go:225 lxc/remote.go:471 msgid "Could not create server cert dir" msgstr "" @@ -1373,12 +1368,12 @@ msgstr "" msgid "Could not write new remote certificate for remote '%s' with error: %v" msgstr "" -#: lxc/remote.go:481 +#: lxc/remote.go:482 #, c-format msgid "Could not write server cert file %q: %w" msgstr "" -#: lxc/network_zone.go:1327 +#: lxc/network_zone.go:1332 msgid "Couldn't find a matching entry" msgstr "" @@ -1430,7 +1425,7 @@ msgstr "" msgid "Create instances from images" msgstr "" -#: lxc/storage_bucket.go:846 lxc/storage_bucket.go:847 +#: lxc/storage_bucket.go:851 lxc/storage_bucket.go:852 msgid "Create key for a storage bucket" msgstr "" @@ -1462,11 +1457,11 @@ msgstr "" msgid "Create new network peering" msgstr "" -#: lxc/network_zone.go:869 lxc/network_zone.go:870 +#: lxc/network_zone.go:874 lxc/network_zone.go:875 msgid "Create new network zone record" msgstr "" -#: lxc/network_zone.go:270 lxc/network_zone.go:271 +#: lxc/network_zone.go:271 lxc/network_zone.go:272 msgid "Create new network zones" msgstr "" @@ -1517,9 +1512,9 @@ msgstr "" #: 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/network_zone.go:140 lxc/network_zone.go:747 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_bucket.go:512 lxc/storage_bucket.go:832 #: lxc/storage_volume.go:1562 msgid "DESCRIPTION" msgstr "" @@ -1584,7 +1579,7 @@ msgstr "" msgid "Delete instances and snapshots" msgstr "" -#: lxc/storage_bucket.go:924 lxc/storage_bucket.go:925 +#: lxc/storage_bucket.go:929 lxc/storage_bucket.go:930 msgid "Delete key from a storage bucket" msgstr "" @@ -1596,7 +1591,7 @@ msgstr "" msgid "Delete network forwards" msgstr "" -#: lxc/network_load_balancer.go:721 lxc/network_load_balancer.go:722 +#: lxc/network_load_balancer.go:726 lxc/network_load_balancer.go:727 msgid "Delete network load balancers" msgstr "" @@ -1604,11 +1599,11 @@ msgstr "" msgid "Delete network peerings" msgstr "" -#: lxc/network_zone.go:1175 lxc/network_zone.go:1176 +#: lxc/network_zone.go:1180 lxc/network_zone.go:1181 msgid "Delete network zone record" msgstr "" -#: lxc/network_zone.go:583 lxc/network_zone.go:584 +#: lxc/network_zone.go:588 lxc/network_zone.go:589 msgid "Delete network zones" msgstr "" @@ -1624,7 +1619,7 @@ msgstr "" msgid "Delete projects" msgstr "" -#: lxc/storage_bucket.go:182 lxc/storage_bucket.go:183 +#: lxc/storage_bucket.go:187 lxc/storage_bucket.go:188 msgid "Delete storage buckets" msgstr "" @@ -1680,7 +1675,7 @@ msgstr "" #: 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/info.go:32 lxc/init.go:43 lxc/launch.go:24 lxc/list.go:48 lxc/main.go:83 #: 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 @@ -1699,22 +1694,22 @@ msgstr "" #: 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_load_balancer.go:238 lxc/network_load_balancer.go:388 +#: lxc/network_load_balancer.go:456 lxc/network_load_balancer.go:554 +#: lxc/network_load_balancer.go:584 lxc/network_load_balancer.go:727 +#: lxc/network_load_balancer.go:788 lxc/network_load_balancer.go:803 +#: lxc/network_load_balancer.go:867 lxc/network_load_balancer.go:953 +#: lxc/network_load_balancer.go:968 lxc/network_load_balancer.go:1029 #: 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/network_zone.go:29 lxc/network_zone.go:86 lxc/network_zone.go:157 +#: lxc/network_zone.go:212 lxc/network_zone.go:272 lxc/network_zone.go:359 +#: lxc/network_zone.go:439 lxc/network_zone.go:470 lxc/network_zone.go:589 +#: lxc/network_zone.go:637 lxc/network_zone.go:694 lxc/network_zone.go:764 +#: lxc/network_zone.go:816 lxc/network_zone.go:875 lxc/network_zone.go:957 +#: lxc/network_zone.go:1033 lxc/network_zone.go:1063 lxc/network_zone.go:1181 +#: lxc/network_zone.go:1230 lxc/network_zone.go:1245 lxc/network_zone.go:1291 #: 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 @@ -1723,19 +1718,19 @@ msgstr "" #: 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:631 lxc/remote.go:669 lxc/remote.go:755 lxc/remote.go:828 -#: lxc/remote.go:884 lxc/remote.go:924 lxc/rename.go:21 lxc/restore.go:24 +#: lxc/query.go:34 lxc/rebuild.go:27 lxc/remote.go:35 lxc/remote.go:91 +#: lxc/remote.go:632 lxc/remote.go:670 lxc/remote.go:756 lxc/remote.go:829 +#: lxc/remote.go:885 lxc/remote.go:925 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_bucket.go:29 lxc/storage_bucket.go:83 lxc/storage_bucket.go:188 +#: lxc/storage_bucket.go:249 lxc/storage_bucket.go:382 +#: lxc/storage_bucket.go:458 lxc/storage_bucket.go:535 +#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:698 +#: lxc/storage_bucket.go:732 lxc/storage_bucket.go:773 +#: lxc/storage_bucket.go:852 lxc/storage_bucket.go:930 +#: lxc/storage_bucket.go:994 lxc/storage_bucket.go:1129 #: 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 @@ -1871,7 +1866,7 @@ msgstr "" msgid "Don't require user confirmation for using --force" msgstr "" -#: lxc/main.go:99 +#: lxc/main.go:100 msgid "Don't show progress information" msgstr "" @@ -1884,7 +1879,7 @@ msgstr "" msgid "Driver: %v (%v)" msgstr "" -#: lxc/network_zone.go:743 +#: lxc/network_zone.go:748 msgid "ENTRIES" msgstr "" @@ -1962,7 +1957,7 @@ msgstr "" msgid "Edit network forward configurations as YAML" msgstr "" -#: lxc/network_load_balancer.go:578 lxc/network_load_balancer.go:579 +#: lxc/network_load_balancer.go:583 lxc/network_load_balancer.go:584 msgid "Edit network load balancer configurations as YAML" msgstr "" @@ -1970,11 +1965,11 @@ msgstr "" msgid "Edit network peer configurations as YAML" msgstr "" -#: lxc/network_zone.go:464 lxc/network_zone.go:465 +#: lxc/network_zone.go:469 lxc/network_zone.go:470 msgid "Edit network zone configurations as YAML" msgstr "" -#: lxc/network_zone.go:1057 lxc/network_zone.go:1058 +#: lxc/network_zone.go:1062 lxc/network_zone.go:1063 msgid "Edit network zone record configurations as YAML" msgstr "" @@ -1986,11 +1981,11 @@ msgstr "" msgid "Edit project configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:243 lxc/storage_bucket.go:244 +#: lxc/storage_bucket.go:248 lxc/storage_bucket.go:249 msgid "Edit storage bucket configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:988 lxc/storage_bucket.go:989 +#: lxc/storage_bucket.go:993 lxc/storage_bucket.go:994 msgid "Edit storage bucket key as YAML" msgstr "" @@ -2031,7 +2026,7 @@ msgid "" " for the address if not yet set." msgstr "" -#: lxc/network_zone.go:1242 +#: lxc/network_zone.go:1247 msgid "Entry TTL" msgstr "" @@ -2060,9 +2055,9 @@ msgstr "" #: lxc/cluster.go:414 lxc/config.go:624 lxc/config.go:656 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/network_load_balancer.go:527 lxc/network_peer.go:463 +#: lxc/network_zone.go:414 lxc/network_zone.go:1008 lxc/profile.go:876 +#: lxc/project.go:634 lxc/storage.go:727 lxc/storage_bucket.go:602 #: lxc/storage_volume.go:1947 lxc/storage_volume.go:1985 #, c-format msgid "Error setting properties: %v" @@ -2074,10 +2069,10 @@ 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/network_forward.go:513 lxc/network_load_balancer.go:521 +#: lxc/network_peer.go:457 lxc/network_zone.go:408 lxc/network_zone.go:1002 #: lxc/profile.go:870 lxc/project.go:628 lxc/storage.go:721 -#: lxc/storage_bucket.go:591 lxc/storage_volume.go:1941 +#: lxc/storage_bucket.go:596 lxc/storage_volume.go:1941 #: lxc/storage_volume.go:1979 #, c-format msgid "Error unsetting property: %v" @@ -2263,7 +2258,7 @@ msgstr "" msgid "Failed parsing SSH host key: %w" msgstr "" -#: lxc/console.go:361 +#: lxc/console.go:366 #, c-format msgid "Failed starting command: %w" msgstr "" @@ -2278,11 +2273,11 @@ msgstr "" msgid "Failed to accept incoming connection: %w" msgstr "" -#: lxc/remote.go:190 +#: lxc/remote.go:191 msgid "Failed to add remote" msgstr "" -#: lxc/remote.go:241 +#: lxc/remote.go:242 #, c-format msgid "Failed to close server cert file %q: %w" msgstr "" @@ -2292,7 +2287,7 @@ msgstr "" msgid "Failed to connect to cluster member: %w" msgstr "" -#: lxc/remote.go:231 +#: lxc/remote.go:232 #, c-format msgid "Failed to create %q: %w" msgstr "" @@ -2302,12 +2297,12 @@ msgstr "" msgid "Failed to create alias %s: %w" msgstr "" -#: lxc/remote.go:256 +#: lxc/remote.go:257 #, c-format msgid "Failed to create certificate: %w" msgstr "" -#: lxc/remote.go:263 +#: lxc/remote.go:264 #, c-format msgid "Failed to find project: %w" msgstr "" @@ -2332,7 +2327,7 @@ msgstr "" msgid "Failed to walk path for %s: %s" msgstr "" -#: lxc/remote.go:236 +#: lxc/remote.go:237 #, c-format msgid "Failed to write server cert file %q: %w" msgstr "" @@ -2341,7 +2336,7 @@ msgstr "" msgid "Fast mode (same as --columns=nsacPt)" msgstr "" -#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:115 +#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:116 #: lxc/operation.go:136 msgid "Filtering isn't supported yet" msgstr "" @@ -2379,7 +2374,7 @@ msgstr "" msgid "Force the removal of running instances" msgstr "" -#: lxc/main.go:95 +#: lxc/main.go:96 msgid "Force using the local unix socket" msgstr "" @@ -2413,10 +2408,10 @@ msgstr "" #: 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/network_peer.go:84 lxc/network_zone.go:89 lxc/network_zone.go:697 #: lxc/operation.go:108 lxc/profile.go:637 lxc/project.go:412 -#: lxc/project.go:804 lxc/remote.go:673 lxc/storage.go:588 -#: lxc/storage_bucket.go:454 lxc/storage_bucket.go:769 +#: lxc/project.go:804 lxc/remote.go:674 lxc/storage.go:588 +#: lxc/storage_bucket.go:459 lxc/storage_bucket.go:774 #: lxc/storage_volume.go:1446 lxc/warning.go:93 msgid "Format (csv|json|table|yaml|compact)" msgstr "" @@ -2453,7 +2448,7 @@ msgstr "" msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)" msgstr "" -#: lxc/remote.go:737 +#: lxc/remote.go:738 msgid "GLOBAL" msgstr "" @@ -2473,7 +2468,7 @@ msgstr "" msgid "Generate manpages for all commands" msgstr "" -#: lxc/remote.go:159 lxc/remote.go:397 +#: lxc/remote.go:160 lxc/remote.go:398 msgid "Generating a client certificate. This may take a minute..." msgstr "" @@ -2505,7 +2500,7 @@ msgstr "" msgid "Get the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:386 +#: lxc/network_load_balancer.go:391 msgid "Get the key as a network load balancer property" msgstr "" @@ -2517,11 +2512,11 @@ msgstr "" msgid "Get the key as a network property" msgstr "" -#: lxc/network_zone.go:214 +#: lxc/network_zone.go:215 msgid "Get the key as a network zone property" msgstr "" -#: lxc/network_zone.go:814 +#: lxc/network_zone.go:819 msgid "Get the key as a network zone record property" msgstr "" @@ -2533,7 +2528,7 @@ msgstr "" msgid "Get the key as a project property" msgstr "" -#: lxc/storage_bucket.go:380 +#: lxc/storage_bucket.go:385 msgid "Get the key as a storage bucket property" msgstr "" @@ -2573,7 +2568,7 @@ msgstr "" msgid "Get values for network forward configuration keys" msgstr "" -#: lxc/network_load_balancer.go:382 lxc/network_load_balancer.go:383 +#: lxc/network_load_balancer.go:387 lxc/network_load_balancer.go:388 msgid "Get values for network load balancer configuration keys" msgstr "" @@ -2581,11 +2576,11 @@ msgstr "" msgid "Get values for network peer configuration keys" msgstr "" -#: lxc/network_zone.go:210 lxc/network_zone.go:211 +#: lxc/network_zone.go:211 lxc/network_zone.go:212 msgid "Get values for network zone configuration keys" msgstr "" -#: lxc/network_zone.go:810 lxc/network_zone.go:811 +#: lxc/network_zone.go:815 lxc/network_zone.go:816 msgid "Get values for network zone record configuration keys" msgstr "" @@ -2597,7 +2592,7 @@ msgstr "" msgid "Get values for project configuration keys" msgstr "" -#: lxc/storage_bucket.go:376 lxc/storage_bucket.go:377 +#: lxc/storage_bucket.go:381 lxc/storage_bucket.go:382 msgid "Get values for storage bucket configuration keys" msgstr "" @@ -2737,7 +2732,7 @@ msgstr "" msgid "If the snapshot name already exists, delete and create a new one" msgstr "" -#: lxc/main.go:398 +#: lxc/main.go:400 msgid "" "If this is your first time running LXD on this machine, you should also run: " "lxd init" @@ -2894,7 +2889,7 @@ msgstr "" msgid "Instance type" msgstr "" -#: lxc/remote.go:349 +#: lxc/remote.go:350 #, c-format msgid "Invalid URL scheme \"%s\" in \"%s\"" msgstr "" @@ -2966,7 +2961,7 @@ msgstr "" msgid "Invalid new snapshot name, parent volume must be the same as source" msgstr "" -#: lxc/main.go:498 +#: lxc/main.go:502 msgid "Invalid number of arguments" msgstr "" @@ -2975,7 +2970,7 @@ msgstr "" msgid "Invalid path %s" msgstr "" -#: lxc/remote.go:338 +#: lxc/remote.go:339 #, c-format msgid "Invalid protocol: %s" msgstr "" @@ -3023,7 +3018,7 @@ msgstr "" #: lxc/list.go:597 lxc/network.go:1059 lxc/network_forward.go:155 #: lxc/network_load_balancer.go:157 lxc/operation.go:177 -#: lxc/storage_bucket.go:511 lxc/storage_volume.go:1569 lxc/warning.go:220 +#: lxc/storage_bucket.go:516 lxc/storage_volume.go:1569 lxc/warning.go:220 msgid "LOCATION" msgstr "" @@ -3031,7 +3026,7 @@ msgstr "" msgid "LXD - Command line client" msgstr "" -#: lxc/console.go:382 +#: lxc/console.go:387 msgid "LXD automatically uses either spicy or remote-viewer when present." msgstr "" @@ -3121,15 +3116,15 @@ msgstr "" msgid "List available network peers" msgstr "" -#: lxc/network_zone.go:85 +#: lxc/network_zone.go:86 msgid "List available network zone" msgstr "" -#: lxc/network_zone.go:688 lxc/network_zone.go:689 +#: lxc/network_zone.go:693 lxc/network_zone.go:694 msgid "List available network zone records" msgstr "" -#: lxc/network_zone.go:84 +#: lxc/network_zone.go:85 msgid "List available network zoneS" msgstr "" @@ -3318,11 +3313,11 @@ msgstr "" msgid "List projects" msgstr "" -#: lxc/storage_bucket.go:766 lxc/storage_bucket.go:768 +#: lxc/storage_bucket.go:771 lxc/storage_bucket.go:773 msgid "List storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:451 lxc/storage_bucket.go:453 +#: lxc/storage_bucket.go:456 lxc/storage_bucket.go:458 msgid "List storage buckets" msgstr "" @@ -3350,7 +3345,7 @@ msgid "" " U - Current disk usage" msgstr "" -#: lxc/remote.go:668 lxc/remote.go:669 +#: lxc/remote.go:669 lxc/remote.go:670 msgid "List the available remotes" msgstr "" @@ -3577,11 +3572,11 @@ msgstr "" msgid "Manage network forwards" msgstr "" -#: lxc/network_load_balancer.go:782 lxc/network_load_balancer.go:783 +#: lxc/network_load_balancer.go:787 lxc/network_load_balancer.go:788 msgid "Manage network load balancer backends" msgstr "" -#: lxc/network_load_balancer.go:947 lxc/network_load_balancer.go:948 +#: lxc/network_load_balancer.go:952 lxc/network_load_balancer.go:953 msgid "Manage network load balancer ports" msgstr "" @@ -3593,15 +3588,15 @@ msgstr "" msgid "Manage network peerings" msgstr "" -#: lxc/network_zone.go:1224 lxc/network_zone.go:1225 +#: lxc/network_zone.go:1229 lxc/network_zone.go:1230 msgid "Manage network zone record entries" msgstr "" -#: lxc/network_zone.go:631 lxc/network_zone.go:632 +#: lxc/network_zone.go:636 lxc/network_zone.go:637 msgid "Manage network zone records" msgstr "" -#: lxc/network_zone.go:27 lxc/network_zone.go:28 +#: lxc/network_zone.go:28 lxc/network_zone.go:29 msgid "Manage network zones" msgstr "" @@ -3617,11 +3612,11 @@ msgstr "" msgid "Manage projects" msgstr "" -#: lxc/storage_bucket.go:726 +#: lxc/storage_bucket.go:731 msgid "Manage storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:727 +#: lxc/storage_bucket.go:732 msgid "Manage storage bucket keys." msgstr "" @@ -3649,7 +3644,7 @@ msgid "" "\"custom\" (user created) volumes." msgstr "" -#: lxc/remote.go:33 lxc/remote.go:34 +#: lxc/remote.go:34 lxc/remote.go:35 msgid "Manage the list of remote servers" msgstr "" @@ -3730,12 +3725,12 @@ msgid "" "Minimum level for log messages (only available when using pretty format)" msgstr "" -#: lxc/storage_bucket.go:111 lxc/storage_bucket.go:211 -#: lxc/storage_bucket.go:287 lxc/storage_bucket.go:406 -#: lxc/storage_bucket.go:563 lxc/storage_bucket.go:655 -#: lxc/storage_bucket.go:797 lxc/storage_bucket.go:878 -#: lxc/storage_bucket.go:953 lxc/storage_bucket.go:1032 -#: lxc/storage_bucket.go:1155 +#: lxc/storage_bucket.go:116 lxc/storage_bucket.go:216 +#: lxc/storage_bucket.go:292 lxc/storage_bucket.go:411 +#: lxc/storage_bucket.go:568 lxc/storage_bucket.go:660 +#: lxc/storage_bucket.go:802 lxc/storage_bucket.go:883 +#: lxc/storage_bucket.go:958 lxc/storage_bucket.go:1037 +#: lxc/storage_bucket.go:1160 msgid "Missing bucket name" msgstr "" @@ -3779,8 +3774,8 @@ msgstr "" msgid "Missing instance name" msgstr "" -#: lxc/storage_bucket.go:882 lxc/storage_bucket.go:957 -#: lxc/storage_bucket.go:1036 lxc/storage_bucket.go:1159 +#: lxc/storage_bucket.go:887 lxc/storage_bucket.go:962 +#: lxc/storage_bucket.go:1041 lxc/storage_bucket.go:1164 msgid "Missing key name" msgstr "" @@ -3788,10 +3783,10 @@ msgstr "" #: lxc/network_forward.go:481 lxc/network_forward.go:627 #: lxc/network_forward.go:746 lxc/network_forward.go:823 #: lxc/network_forward.go:889 lxc/network_load_balancer.go:201 -#: lxc/network_load_balancer.go:411 lxc/network_load_balancer.go:484 -#: lxc/network_load_balancer.go:630 lxc/network_load_balancer.go:750 -#: lxc/network_load_balancer.go:826 lxc/network_load_balancer.go:890 -#: lxc/network_load_balancer.go:991 lxc/network_load_balancer.go:1053 +#: lxc/network_load_balancer.go:416 lxc/network_load_balancer.go:489 +#: lxc/network_load_balancer.go:635 lxc/network_load_balancer.go:755 +#: lxc/network_load_balancer.go:831 lxc/network_load_balancer.go:895 +#: lxc/network_load_balancer.go:996 lxc/network_load_balancer.go:1058 msgid "Missing listen address" msgstr "" @@ -3816,26 +3811,26 @@ msgstr "" #: lxc/network_forward.go:477 lxc/network_forward.go:623 #: lxc/network_forward.go:742 lxc/network_forward.go:819 #: lxc/network_forward.go:885 lxc/network_load_balancer.go:123 -#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:261 -#: lxc/network_load_balancer.go:407 lxc/network_load_balancer.go:480 -#: lxc/network_load_balancer.go:626 lxc/network_load_balancer.go:746 -#: lxc/network_load_balancer.go:822 lxc/network_load_balancer.go:886 -#: lxc/network_load_balancer.go:987 lxc/network_load_balancer.go:1049 +#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:266 +#: lxc/network_load_balancer.go:412 lxc/network_load_balancer.go:485 +#: lxc/network_load_balancer.go:631 lxc/network_load_balancer.go:751 +#: lxc/network_load_balancer.go:827 lxc/network_load_balancer.go:891 +#: lxc/network_load_balancer.go:992 lxc/network_load_balancer.go:1054 #: lxc/network_peer.go:110 lxc/network_peer.go:180 lxc/network_peer.go:237 #: lxc/network_peer.go:355 lxc/network_peer.go:426 lxc/network_peer.go:556 #: lxc/network_peer.go:665 msgid "Missing network name" msgstr "" -#: lxc/network_zone.go:178 lxc/network_zone.go:234 lxc/network_zone.go:294 -#: lxc/network_zone.go:382 lxc/network_zone.go:503 lxc/network_zone.go:606 -#: lxc/network_zone.go:712 lxc/network_zone.go:780 lxc/network_zone.go:892 -#: lxc/network_zone.go:976 lxc/network_zone.go:1197 lxc/network_zone.go:1262 -#: lxc/network_zone.go:1307 +#: lxc/network_zone.go:179 lxc/network_zone.go:235 lxc/network_zone.go:299 +#: lxc/network_zone.go:387 lxc/network_zone.go:508 lxc/network_zone.go:611 +#: lxc/network_zone.go:717 lxc/network_zone.go:785 lxc/network_zone.go:897 +#: lxc/network_zone.go:981 lxc/network_zone.go:1202 lxc/network_zone.go:1267 +#: lxc/network_zone.go:1312 msgid "Missing network zone name" msgstr "" -#: lxc/network_zone.go:833 lxc/network_zone.go:1095 +#: lxc/network_zone.go:838 lxc/network_zone.go:1100 msgid "Missing network zone record name" msgstr "" @@ -3845,13 +3840,13 @@ msgid "Missing peer name" msgstr "" #: lxc/storage.go:194 lxc/storage.go:264 lxc/storage.go:370 lxc/storage.go:440 -#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:107 -#: lxc/storage_bucket.go:207 lxc/storage_bucket.go:283 -#: lxc/storage_bucket.go:402 lxc/storage_bucket.go:477 -#: lxc/storage_bucket.go:559 lxc/storage_bucket.go:651 -#: lxc/storage_bucket.go:793 lxc/storage_bucket.go:874 -#: lxc/storage_bucket.go:949 lxc/storage_bucket.go:1028 -#: lxc/storage_bucket.go:1151 lxc/storage_volume.go:189 +#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:112 +#: lxc/storage_bucket.go:212 lxc/storage_bucket.go:288 +#: lxc/storage_bucket.go:407 lxc/storage_bucket.go:482 +#: lxc/storage_bucket.go:564 lxc/storage_bucket.go:656 +#: lxc/storage_bucket.go:798 lxc/storage_bucket.go:879 +#: lxc/storage_bucket.go:954 lxc/storage_bucket.go:1033 +#: lxc/storage_bucket.go:1156 lxc/storage_volume.go:189 #: lxc/storage_volume.go:287 lxc/storage_volume.go:583 #: lxc/storage_volume.go:660 lxc/storage_volume.go:735 #: lxc/storage_volume.go:817 lxc/storage_volume.go:919 @@ -3971,7 +3966,7 @@ msgstr "" msgid "Moving the storage volume: %s" msgstr "" -#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1097 +#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1102 msgid "Multiple ports match. Use --force to remove them all" msgstr "" @@ -3990,10 +3985,10 @@ 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:677 lxc/project.go:498 -#: lxc/remote.go:731 lxc/storage.go:638 lxc/storage_bucket.go:506 -#: lxc/storage_bucket.go:826 lxc/storage_volume.go:1561 +#: lxc/network_acl.go:147 lxc/network_peer.go:139 lxc/network_zone.go:139 +#: lxc/network_zone.go:746 lxc/profile.go:677 lxc/project.go:498 +#: lxc/remote.go:732 lxc/storage.go:638 lxc/storage_bucket.go:511 +#: lxc/storage_bucket.go:831 lxc/storage_volume.go:1561 msgid "NAME" msgstr "" @@ -4019,7 +4014,7 @@ msgstr "" #: lxc/network.go:957 lxc/operation.go:154 lxc/project.go:456 #: lxc/project.go:461 lxc/project.go:466 lxc/project.go:471 lxc/project.go:476 -#: lxc/project.go:481 lxc/remote.go:691 lxc/remote.go:696 lxc/remote.go:701 +#: lxc/project.go:481 lxc/remote.go:692 lxc/remote.go:697 lxc/remote.go:702 msgid "NO" msgstr "" @@ -4046,7 +4041,7 @@ msgstr "" msgid "Name" msgstr "" -#: lxc/remote.go:141 +#: lxc/remote.go:142 msgid "Name of the project to use for this remote:" msgstr "" @@ -4095,12 +4090,12 @@ msgstr "" msgid "Network ACL %s renamed to %s" msgstr "" -#: lxc/network_zone.go:336 +#: lxc/network_zone.go:341 #, c-format msgid "Network Zone %s created" msgstr "" -#: lxc/network_zone.go:616 +#: lxc/network_zone.go:621 #, c-format msgid "Network Zone %s deleted" msgstr "" @@ -4115,12 +4110,12 @@ msgstr "" msgid "Network forward %s deleted" msgstr "" -#: lxc/network_load_balancer.go:365 +#: lxc/network_load_balancer.go:370 #, c-format msgid "Network load balancer %s created" msgstr "" -#: lxc/network_load_balancer.go:767 +#: lxc/network_load_balancer.go:772 #, c-format msgid "Network load balancer %s deleted" msgstr "" @@ -4158,12 +4153,12 @@ msgstr "" msgid "Network usage:" msgstr "" -#: lxc/network_zone.go:934 +#: lxc/network_zone.go:939 #, c-format msgid "Network zone record %s created" msgstr "" -#: lxc/network_zone.go:1207 +#: lxc/network_zone.go:1212 #, c-format msgid "Network zone record %s deleted" msgstr "" @@ -4198,11 +4193,11 @@ msgstr "" msgid "No device found for this storage volume" msgstr "" -#: lxc/network_load_balancer.go:921 +#: lxc/network_load_balancer.go:926 msgid "No matching backend found" msgstr "" -#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1108 +#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1113 msgid "No matching port(s) found" msgstr "" @@ -4248,7 +4243,7 @@ msgstr "" msgid "Only \"custom\" volumes can be snapshotted" msgstr "" -#: lxc/remote.go:332 +#: lxc/remote.go:333 msgid "Only https URLs are supported for simplestreams" msgstr "" @@ -4273,7 +4268,7 @@ msgstr "" msgid "Optimized Storage" msgstr "" -#: lxc/main.go:96 +#: lxc/main.go:97 msgid "Override the source project" msgstr "" @@ -4319,11 +4314,11 @@ msgstr "" msgid "PROJECT" msgstr "" -#: lxc/remote.go:733 +#: lxc/remote.go:734 msgid "PROTOCOL" msgstr "" -#: lxc/image.go:1073 lxc/remote.go:735 +#: lxc/image.go:1073 lxc/remote.go:736 msgid "PUBLIC" msgstr "" @@ -4339,7 +4334,7 @@ msgstr "" msgid "Partitions:" msgstr "" -#: lxc/main.go:361 +#: lxc/main.go:363 #, c-format msgid "Password for %s: " msgstr "" @@ -4352,7 +4347,7 @@ msgstr "" msgid "Perform an incremental copy" msgstr "" -#: lxc/remote.go:182 +#: lxc/remote.go:183 msgid "Please provide an alternate server address (empty to abort):" msgstr "" @@ -4364,7 +4359,7 @@ msgstr "" msgid "Please provide cluster member name: " msgstr "" -#: lxc/remote.go:462 +#: lxc/remote.go:463 msgid "Please type 'y', 'n' or the fingerprint:" msgstr "" @@ -4386,10 +4381,10 @@ msgstr "" #: lxc/config.go:1278 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/network_load_balancer.go:695 lxc/network_peer.go:611 +#: lxc/network_zone.go:557 lxc/network_zone.go:1149 lxc/profile.go:539 +#: lxc/project.go:316 lxc/storage.go:311 lxc/storage_bucket.go:349 +#: lxc/storage_bucket.go:1098 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 "" @@ -4398,7 +4393,7 @@ msgstr "" msgid "Pretty rendering (short for --format=pretty)" msgstr "" -#: lxc/main.go:94 +#: lxc/main.go:95 msgid "Print help" msgstr "" @@ -4406,7 +4401,7 @@ msgstr "" msgid "Print the raw response" msgstr "" -#: lxc/main.go:93 +#: lxc/main.go:94 msgid "Print version number" msgstr "" @@ -4495,7 +4490,7 @@ msgstr "" msgid "Project %s renamed to %s" msgstr "" -#: lxc/remote.go:106 +#: lxc/remote.go:107 msgid "Project to use for the remote" msgstr "" @@ -4593,7 +4588,7 @@ msgid "" "pool \"default\"." msgstr "" -#: lxc/remote.go:105 +#: lxc/remote.go:106 msgid "Public image server" msgstr "" @@ -4641,7 +4636,7 @@ msgstr "" msgid "RESOURCE" msgstr "" -#: lxc/storage_bucket.go:828 +#: lxc/storage_bucket.go:833 msgid "ROLE" msgstr "" @@ -4684,45 +4679,45 @@ msgstr "" msgid "Refreshing the image: %s" msgstr "" -#: lxc/remote.go:785 +#: lxc/remote.go:786 #, c-format msgid "Remote %s already exists" msgstr "" -#: lxc/project.go:769 lxc/remote.go:776 lxc/remote.go:849 lxc/remote.go:905 -#: lxc/remote.go:945 +#: lxc/project.go:769 lxc/remote.go:777 lxc/remote.go:850 lxc/remote.go:906 +#: lxc/remote.go:946 #, c-format msgid "Remote %s doesn't exist" msgstr "" -#: lxc/remote.go:301 +#: lxc/remote.go:302 #, c-format msgid "Remote %s exists as <%s>" msgstr "" -#: lxc/remote.go:857 +#: lxc/remote.go:858 #, c-format msgid "Remote %s is global and cannot be removed" msgstr "" -#: lxc/remote.go:780 lxc/remote.go:853 lxc/remote.go:949 +#: lxc/remote.go:781 lxc/remote.go:854 lxc/remote.go:950 #, c-format msgid "Remote %s is static and cannot be modified" msgstr "" -#: lxc/remote.go:290 +#: lxc/remote.go:291 msgid "Remote address must not be empty" msgstr "" -#: lxc/remote.go:101 +#: lxc/remote.go:102 msgid "Remote admin password" msgstr "" -#: lxc/remote.go:295 +#: lxc/remote.go:296 msgid "Remote names may not contain colons" msgstr "" -#: lxc/remote.go:102 +#: lxc/remote.go:103 msgid "Remote trust token" msgstr "" @@ -4748,7 +4743,7 @@ msgstr "" msgid "Remove a member from the cluster" msgstr "" -#: lxc/network_zone.go:1285 +#: lxc/network_zone.go:1290 msgid "Remove a network zone record entry" msgstr "" @@ -4756,7 +4751,7 @@ msgstr "" msgid "Remove aliases" msgstr "" -#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1025 +#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1030 msgid "Remove all ports that match" msgstr "" @@ -4764,15 +4759,15 @@ msgstr "" msgid "Remove all rules that match" msgstr "" -#: lxc/network_load_balancer.go:862 +#: lxc/network_load_balancer.go:867 msgid "Remove backend from a load balancer" msgstr "" -#: lxc/network_load_balancer.go:861 +#: lxc/network_load_balancer.go:866 msgid "Remove backends from a load balancer" msgstr "" -#: lxc/network_zone.go:1286 +#: lxc/network_zone.go:1291 msgid "Remove entries from a network zone record" msgstr "" @@ -4796,7 +4791,7 @@ msgstr "" msgid "Remove ports from a forward" msgstr "" -#: lxc/network_load_balancer.go:1023 lxc/network_load_balancer.go:1024 +#: lxc/network_load_balancer.go:1028 lxc/network_load_balancer.go:1029 msgid "Remove ports from a load balancer" msgstr "" @@ -4804,7 +4799,7 @@ msgstr "" msgid "Remove profiles from instances" msgstr "" -#: lxc/remote.go:827 lxc/remote.go:828 +#: lxc/remote.go:828 lxc/remote.go:829 msgid "Remove remotes" msgstr "" @@ -4861,7 +4856,7 @@ msgstr "" msgid "Rename projects" msgstr "" -#: lxc/remote.go:754 lxc/remote.go:755 +#: lxc/remote.go:755 lxc/remote.go:756 msgid "Rename remotes" msgstr "" @@ -4939,7 +4934,7 @@ msgid "Restrict the certificate to one or more projects" msgstr "" #: lxc/console.go:44 -msgid "Retrieve the instance's console log" +msgid "Retrieve the container's console log" msgstr "" #: lxc/init.go:347 @@ -4955,7 +4950,7 @@ msgstr "" msgid "Revoke cluster member join token" msgstr "" -#: lxc/storage_bucket.go:851 +#: lxc/storage_bucket.go:856 msgid "Role (admin or read-only)" msgstr "" @@ -5006,7 +5001,7 @@ msgstr "" msgid "STATE" msgstr "" -#: lxc/remote.go:736 +#: lxc/remote.go:737 msgid "STATIC" msgstr "" @@ -5030,11 +5025,11 @@ msgstr "" msgid "STP" msgstr "" -#: lxc/storage_bucket.go:853 +#: lxc/storage_bucket.go:858 msgid "Secret key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:909 +#: lxc/storage_bucket.go:914 #, c-format msgid "Secret key: %s" msgstr "" @@ -5043,19 +5038,19 @@ msgstr "" msgid "Send a raw query to LXD" msgstr "" -#: lxc/remote.go:104 +#: lxc/remote.go:105 msgid "Server authentication type (tls or oidc)" msgstr "" -#: lxc/remote.go:460 +#: lxc/remote.go:461 msgid "Server certificate NACKed by user" msgstr "" -#: lxc/remote.go:599 +#: lxc/remote.go:600 msgid "Server doesn't trust us after authentication" msgstr "" -#: lxc/remote.go:103 +#: lxc/remote.go:104 msgid "Server protocol (lxd or simplestreams)" msgstr "" @@ -5154,11 +5149,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_load_balancer.go:450 +#: lxc/network_load_balancer.go:455 msgid "Set network load balancer keys" msgstr "" -#: lxc/network_load_balancer.go:451 +#: lxc/network_load_balancer.go:456 msgid "" "Set network load balancer keys\n" "\n" @@ -5180,11 +5175,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:353 +#: lxc/network_zone.go:358 msgid "Set network zone configuration keys" msgstr "" -#: lxc/network_zone.go:354 +#: lxc/network_zone.go:359 msgid "" "Set network zone configuration keys\n" "\n" @@ -5193,7 +5188,7 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:951 lxc/network_zone.go:952 +#: lxc/network_zone.go:956 lxc/network_zone.go:957 msgid "Set network zone record configuration keys" msgstr "" @@ -5223,11 +5218,11 @@ msgid "" " lxc project set [:] " msgstr "" -#: lxc/storage_bucket.go:529 +#: lxc/storage_bucket.go:534 msgid "Set storage bucket configuration keys" msgstr "" -#: lxc/storage_bucket.go:530 +#: lxc/storage_bucket.go:535 msgid "" "Set storage bucket configuration keys\n" "\n" @@ -5262,7 +5257,7 @@ msgid "" " lxc storage volume set [:] [/] " msgstr "" -#: lxc/remote.go:923 lxc/remote.go:924 +#: lxc/remote.go:924 lxc/remote.go:925 msgid "Set the URL for the remote" msgstr "" @@ -5290,7 +5285,7 @@ msgstr "" msgid "Set the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:458 +#: lxc/network_load_balancer.go:463 msgid "Set the key as a network load balancer property" msgstr "" @@ -5302,11 +5297,11 @@ msgstr "" msgid "Set the key as a network property" msgstr "" -#: lxc/network_zone.go:361 +#: lxc/network_zone.go:366 msgid "Set the key as a network zone property" msgstr "" -#: lxc/network_zone.go:957 +#: lxc/network_zone.go:962 msgid "Set the key as a network zone record property" msgstr "" @@ -5318,7 +5313,7 @@ msgstr "" msgid "Set the key as a project property" msgstr "" -#: lxc/storage_bucket.go:537 +#: lxc/storage_bucket.go:542 msgid "Set the key as a storage bucket property" msgstr "" @@ -5338,11 +5333,11 @@ msgstr "" msgid "Setup SSH SFTP listener on address:port instead of mounting" msgstr "" -#: lxc/main.go:97 +#: lxc/main.go:98 msgid "Show all debug messages" msgstr "" -#: lxc/main.go:98 +#: lxc/main.go:99 msgid "Show all information messages" msgstr "" @@ -5411,7 +5406,7 @@ msgstr "" msgid "Show instance or server information" msgstr "" -#: lxc/main.go:271 lxc/main.go:272 +#: lxc/main.go:272 lxc/main.go:273 msgid "Show less common commands" msgstr "" @@ -5443,15 +5438,15 @@ msgstr "" msgid "Show network peer configurations" msgstr "" -#: lxc/network_zone.go:155 lxc/network_zone.go:156 +#: lxc/network_zone.go:156 lxc/network_zone.go:157 msgid "Show network zone configurations" msgstr "" -#: lxc/network_zone.go:758 +#: lxc/network_zone.go:763 msgid "Show network zone record configuration" msgstr "" -#: lxc/network_zone.go:759 +#: lxc/network_zone.go:764 msgid "Show network zone record configurations" msgstr "" @@ -5463,11 +5458,11 @@ msgstr "" msgid "Show project options" msgstr "" -#: lxc/storage_bucket.go:623 lxc/storage_bucket.go:624 +#: lxc/storage_bucket.go:628 lxc/storage_bucket.go:629 msgid "Show storage bucket configurations" msgstr "" -#: lxc/storage_bucket.go:1123 lxc/storage_bucket.go:1124 +#: lxc/storage_bucket.go:1128 lxc/storage_bucket.go:1129 msgid "Show storage bucket key configurations" msgstr "" @@ -5493,7 +5488,7 @@ msgid "" "that are granted via identity provider group mappings. \n" msgstr "" -#: lxc/remote.go:630 lxc/remote.go:631 +#: lxc/remote.go:631 lxc/remote.go:632 msgid "Show the default remote" msgstr "" @@ -5617,22 +5612,22 @@ msgstr "" msgid "Stopping the instance failed: %s" msgstr "" -#: lxc/storage_bucket.go:161 +#: lxc/storage_bucket.go:166 #, c-format msgid "Storage bucket %s created" msgstr "" -#: lxc/storage_bucket.go:228 +#: lxc/storage_bucket.go:233 #, c-format msgid "Storage bucket %s deleted" msgstr "" -#: lxc/storage_bucket.go:907 +#: lxc/storage_bucket.go:912 #, c-format msgid "Storage bucket key %s added" msgstr "" -#: lxc/storage_bucket.go:973 +#: lxc/storage_bucket.go:978 #, c-format msgid "Storage bucket key %s removed" msgstr "" @@ -5705,7 +5700,7 @@ msgstr "" msgid "Switch the current project" msgstr "" -#: lxc/remote.go:883 lxc/remote.go:884 +#: lxc/remote.go:884 lxc/remote.go:885 msgid "Switch the default remote" msgstr "" @@ -5820,7 +5815,7 @@ msgstr "" msgid "The property %q does not exist on the instance snapshot %s/%s: %v" msgstr "" -#: lxc/network_load_balancer.go:424 +#: lxc/network_load_balancer.go:429 #, c-format msgid "The property %q does not exist on the load balancer %q: %v" msgstr "" @@ -5845,12 +5840,12 @@ msgstr "" msgid "The property %q does not exist on the network peer %q: %v" msgstr "" -#: lxc/network_zone.go:246 +#: lxc/network_zone.go:247 #, c-format msgid "The property %q does not exist on the network zone %q: %v" msgstr "" -#: lxc/network_zone.go:845 +#: lxc/network_zone.go:850 #, c-format msgid "The property %q does not exist on the network zone record %q: %v" msgstr "" @@ -5865,7 +5860,7 @@ msgstr "" msgid "The property %q does not exist on the project %q: %v" msgstr "" -#: lxc/storage_bucket.go:426 +#: lxc/storage_bucket.go:431 #, c-format msgid "The property %q does not exist on the storage bucket %q: %v" msgstr "" @@ -5919,7 +5914,7 @@ msgstr "" msgid "This LXD server is not available on the network" msgstr "" -#: lxc/main.go:293 +#: lxc/main.go:294 msgid "" "This client hasn't been configured to use a remote LXD server yet.\n" "As your platform can't run native Linux instances, you must connect to a " @@ -5951,11 +5946,11 @@ msgstr "" msgid "To create a new network, use: lxc network create" msgstr "" -#: lxc/console.go:210 +#: lxc/console.go:215 msgid "To detach from the console, press: +a q" msgstr "" -#: lxc/main.go:403 +#: lxc/main.go:406 msgid "" "To start your first container, try: lxc launch ubuntu:24.04\n" "Or for a virtual machine: lxc launch ubuntu:24.04 --vm" @@ -6053,7 +6048,7 @@ msgstr "" msgid "UPLOAD DATE" msgstr "" -#: lxc/cluster.go:184 lxc/remote.go:732 +#: lxc/cluster.go:184 lxc/remote.go:733 msgid "URL" msgstr "" @@ -6062,7 +6057,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:679 lxc/project.go:506 +#: lxc/network_zone.go:141 lxc/profile.go:679 lxc/project.go:506 #: lxc/storage.go:647 lxc/storage_volume.go:1564 msgid "USED BY" msgstr "" @@ -6081,7 +6076,7 @@ msgstr "" msgid "Unable to create a temporary file: %v" msgstr "" -#: lxc/remote.go:213 lxc/remote.go:247 +#: lxc/remote.go:214 lxc/remote.go:248 msgid "Unavailable remote server" msgstr "" @@ -6101,7 +6096,7 @@ msgstr "" msgid "Unknown column shorthand char '%c' in '%s'" msgstr "" -#: lxc/console.go:159 +#: lxc/console.go:164 #, c-format msgid "Unknown console type %q" msgstr "" @@ -6161,11 +6156,11 @@ msgstr "" msgid "Unset network forward keys" msgstr "" -#: lxc/network_load_balancer.go:548 +#: lxc/network_load_balancer.go:553 msgid "Unset network load balancer configuration keys" msgstr "" -#: lxc/network_load_balancer.go:549 +#: lxc/network_load_balancer.go:554 msgid "Unset network load balancer keys" msgstr "" @@ -6177,11 +6172,11 @@ msgstr "" msgid "Unset network peer keys" msgstr "" -#: lxc/network_zone.go:433 lxc/network_zone.go:434 +#: lxc/network_zone.go:438 lxc/network_zone.go:439 msgid "Unset network zone configuration keys" msgstr "" -#: lxc/network_zone.go:1027 lxc/network_zone.go:1028 +#: lxc/network_zone.go:1032 lxc/network_zone.go:1033 msgid "Unset network zone record configuration keys" msgstr "" @@ -6193,7 +6188,7 @@ msgstr "" msgid "Unset project configuration keys" msgstr "" -#: lxc/storage_bucket.go:692 lxc/storage_bucket.go:693 +#: lxc/storage_bucket.go:697 lxc/storage_bucket.go:698 msgid "Unset storage bucket configuration keys" msgstr "" @@ -6217,7 +6212,7 @@ msgstr "" msgid "Unset the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:552 +#: lxc/network_load_balancer.go:557 msgid "Unset the key as a network load balancer property" msgstr "" @@ -6229,11 +6224,11 @@ msgstr "" msgid "Unset the key as a network property" msgstr "" -#: lxc/network_zone.go:437 +#: lxc/network_zone.go:442 msgid "Unset the key as a network zone property" msgstr "" -#: lxc/network_zone.go:1031 +#: lxc/network_zone.go:1036 msgid "Unset the key as a network zone record property" msgstr "" @@ -6245,7 +6240,7 @@ msgstr "" msgid "Unset the key as a project property" msgstr "" -#: lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:701 msgid "Unset the key as a storage bucket property" msgstr "" @@ -6307,7 +6302,7 @@ msgid "" "Use storage driver optimized format (can only be restored on a similar pool)" msgstr "" -#: lxc/main.go:100 +#: lxc/main.go:101 msgid "Use with help or --help to view sub-commands" msgstr "" @@ -6404,7 +6399,7 @@ msgstr "" #: lxc/network.go:959 lxc/operation.go:156 lxc/project.go:458 #: lxc/project.go:463 lxc/project.go:468 lxc/project.go:473 lxc/project.go:478 -#: lxc/project.go:483 lxc/remote.go:693 lxc/remote.go:698 lxc/remote.go:703 +#: lxc/project.go:483 lxc/remote.go:694 lxc/remote.go:699 lxc/remote.go:704 msgid "YES" msgstr "" @@ -6439,7 +6434,7 @@ 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/network.go:909 lxc/network_acl.go:91 lxc/network_zone.go:83 #: 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 "[:]" @@ -6502,19 +6497,19 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:154 lxc/network_zone.go:463 lxc/network_zone.go:581 +#: lxc/network_zone.go:155 lxc/network_zone.go:468 lxc/network_zone.go:586 msgid "[:]" msgstr "" -#: lxc/network_zone.go:209 lxc/network_zone.go:432 +#: lxc/network_zone.go:210 lxc/network_zone.go:437 msgid "[:] " msgstr "" -#: lxc/network_zone.go:352 +#: lxc/network_zone.go:357 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:269 +#: lxc/network_zone.go:270 msgid "[:] [key=value...]" msgstr "" @@ -6760,30 +6755,30 @@ msgstr "" #: lxc/network_forward.go:169 lxc/network_forward.go:574 #: lxc/network_forward.go:715 lxc/network_load_balancer.go:171 -#: lxc/network_load_balancer.go:577 lxc/network_load_balancer.go:719 +#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:724 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:860 +#: lxc/network_load_balancer.go:865 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:796 +#: lxc/network_load_balancer.go:801 msgid "" "[:] " "[]" msgstr "" #: lxc/network_forward.go:377 lxc/network_forward.go:544 -#: lxc/network_load_balancer.go:381 lxc/network_load_balancer.go:547 +#: lxc/network_load_balancer.go:386 lxc/network_load_balancer.go:552 msgid "[:] " msgstr "" -#: lxc/network_forward.go:446 lxc/network_load_balancer.go:449 +#: lxc/network_forward.go:446 lxc/network_load_balancer.go:454 msgid "[:] =..." msgstr "" -#: lxc/network_load_balancer.go:961 +#: lxc/network_load_balancer.go:966 msgid "" "[:] " "[,...]" @@ -6795,7 +6790,7 @@ msgid "" " []" msgstr "" -#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1022 +#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1027 msgid "[:] [] []" msgstr "" @@ -6846,7 +6841,7 @@ msgid "[:]" msgstr "" #: lxc/storage.go:167 lxc/storage.go:218 lxc/storage.go:412 lxc/storage.go:759 -#: lxc/storage_bucket.go:449 +#: lxc/storage_bucket.go:454 msgid "[:]" msgstr "" @@ -6854,18 +6849,18 @@ msgstr "" msgid "[:] []" msgstr "" -#: lxc/storage_bucket.go:180 lxc/storage_bucket.go:242 -#: lxc/storage_bucket.go:622 lxc/storage_bucket.go:764 +#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:247 +#: lxc/storage_bucket.go:627 lxc/storage_bucket.go:769 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:375 lxc/storage_bucket.go:691 -#: lxc/storage_bucket.go:845 lxc/storage_bucket.go:923 -#: lxc/storage_bucket.go:987 lxc/storage_bucket.go:1122 +#: lxc/storage_bucket.go:380 lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:850 lxc/storage_bucket.go:928 +#: lxc/storage_bucket.go:992 lxc/storage_bucket.go:1127 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:528 +#: lxc/storage_bucket.go:533 msgid "[:] =..." msgstr "" @@ -7009,27 +7004,27 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:686 +#: lxc/network_zone.go:691 msgid "[:]" msgstr "" -#: lxc/network_zone.go:757 lxc/network_zone.go:1056 lxc/network_zone.go:1173 +#: lxc/network_zone.go:762 lxc/network_zone.go:1061 lxc/network_zone.go:1178 msgid "[:] " msgstr "" -#: lxc/network_zone.go:809 lxc/network_zone.go:1026 +#: lxc/network_zone.go:814 lxc/network_zone.go:1031 msgid "[:] " msgstr "" -#: lxc/network_zone.go:950 +#: lxc/network_zone.go:955 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:1238 lxc/network_zone.go:1284 +#: lxc/network_zone.go:1243 lxc/network_zone.go:1289 msgid "[:] " msgstr "" -#: lxc/network_zone.go:868 +#: lxc/network_zone.go:873 msgid "[:] [key=value...]" msgstr "" @@ -7053,7 +7048,7 @@ msgstr "" msgid "[:][] [...]" msgstr "" -#: lxc/remote.go:88 +#: lxc/remote.go:89 msgid "[] " msgstr "" @@ -7061,7 +7056,7 @@ msgstr "" msgid "[[:]]" msgstr "" -#: lxc/project.go:488 lxc/remote.go:722 +#: lxc/project.go:488 lxc/remote.go:723 msgid "current" msgstr "" @@ -7324,6 +7319,23 @@ msgid "" " Create a new OVN network called bar using baz as its uplink network" msgstr "" +#: lxc/network_load_balancer.go:239 +msgid "" +"lxc network load-balancer create n1 127.0.0.1\n" +"\n" +"lxc network load-balancer create n1 127.0.0.1 < config.yaml\n" +" Create network load-balancer for network n1 with configuration from " +"config.yaml" +msgstr "" + +#: lxc/network_zone.go:273 +msgid "" +"lxc network zone create z1\n" +"\n" +"lxc network zone create z1 < config.yaml\n" +" Create network zone z1 with configuration from config.yaml" +msgstr "" + #: lxc/operation.go:195 msgid "" "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n" @@ -7394,26 +7406,36 @@ msgid "" " Restore the snapshot." msgstr "" -#: lxc/storage_bucket.go:245 +#: lxc/storage_bucket.go:84 +msgid "" +"lxc storage bucket create p1 b01\n" +"\tCreate a new storage bucket name b01 in storage pool p1\n" +"\n" +"lxc storage bucket create p1 b01 < config.yaml\n" +"\tCreate a new storage bucket name b01 in storage pool p1 using the content " +"of config.yaml" +msgstr "" + +#: lxc/storage_bucket.go:250 msgid "" "lxc storage bucket edit [:] < bucket.yaml\n" " Update a storage bucket using the content of bucket.yaml." msgstr "" -#: lxc/storage_bucket.go:990 +#: lxc/storage_bucket.go:995 msgid "" "lxc storage bucket edit [:] < key.yaml\n" " Update a storage bucket key using the content of key.yaml." msgstr "" -#: lxc/storage_bucket.go:1125 +#: lxc/storage_bucket.go:1130 msgid "" "lxc storage bucket key show default data foo\n" " Will show the properties of a bucket key called \"foo\" for a bucket " "called \"data\" in the \"default\" pool." msgstr "" -#: lxc/storage_bucket.go:625 +#: lxc/storage_bucket.go:630 msgid "" "lxc storage bucket show default data\n" " Will show the properties of a bucket called \"data\" in the \"default\" " @@ -7432,7 +7454,7 @@ msgid "" "\t\tCreate a new custom volume using backup0.tar.gz as the source." msgstr "" -#: lxc/remote.go:459 +#: lxc/remote.go:460 msgid "n" msgstr "" @@ -7444,7 +7466,7 @@ msgstr "" msgid "no" msgstr "" -#: lxc/remote.go:452 +#: lxc/remote.go:453 msgid "ok (y/n/[fingerprint])?" msgstr "" @@ -7481,7 +7503,7 @@ msgstr "" msgid "used by" msgstr "" -#: lxc/remote.go:461 +#: lxc/remote.go:462 msgid "y" msgstr "" diff --git a/po/lxd.pot b/po/lxd.pot index 94ff0b035ba6..39faf7a381c7 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-08-20 09:31+0100\n" + "POT-Creation-Date: 2024-08-30 09:27+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,7 +16,7 @@ msgstr "Project-Id-Version: lxd\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: lxc/storage_bucket.go:255 lxc/storage_bucket.go:1000 +#: lxc/storage_bucket.go:260 lxc/storage_bucket.go:1005 msgid "### This is a YAML representation of a storage bucket.\n" "### Any line starting with a '# will be ignored.\n" "###\n" @@ -259,7 +259,7 @@ msgid "### This is a YAML representation of the network forward.\n" "### Note that the listen_address and location cannot be changed." msgstr "" -#: lxc/network_load_balancer.go:588 +#: lxc/network_load_balancer.go:593 msgid "### This is a YAML representation of the network load balancer.\n" "### Any line starting with a '# will be ignored.\n" "###\n" @@ -296,7 +296,7 @@ msgid "### This is a YAML representation of the network peer.\n" "### Note that the name, target_project, target_network and status fields cannot be changed." msgstr "" -#: lxc/network_zone.go:1066 +#: lxc/network_zone.go:1071 msgid "### This is a YAML representation of the network zone record.\n" "### Any line starting with a '# will be ignored.\n" "###\n" @@ -309,7 +309,7 @@ msgid "### This is a YAML representation of the network zone record.\n" "### user.foo: bah\n" msgstr "" -#: lxc/network_zone.go:473 +#: lxc/network_zone.go:478 msgid "### This is a YAML representation of the network zone.\n" "### Any line starting with a '# will be ignored.\n" "###\n" @@ -482,15 +482,15 @@ msgstr "" msgid " " msgstr "" -#: lxc/remote.go:825 lxc/remote.go:882 +#: lxc/remote.go:826 lxc/remote.go:883 msgid "" msgstr "" -#: lxc/remote.go:922 +#: lxc/remote.go:923 msgid " " msgstr "" -#: lxc/remote.go:752 +#: lxc/remote.go:753 msgid " " msgstr "" @@ -522,7 +522,7 @@ msgstr "" msgid "ARCHITECTURE" msgstr "" -#: lxc/remote.go:734 +#: lxc/remote.go:735 msgid "AUTH TYPE" msgstr "" @@ -530,15 +530,15 @@ msgstr "" msgid "AUTHENTICATION METHOD" msgstr "" -#: lxc/remote.go:100 +#: lxc/remote.go:101 msgid "Accept certificate" msgstr "" -#: lxc/storage_bucket.go:852 +#: lxc/storage_bucket.go:857 msgid "Access key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:908 +#: lxc/storage_bucket.go:913 #, c-format msgid "Access key: %s" msgstr "" @@ -572,19 +572,19 @@ msgstr "" msgid "Add a group to an identity provider group" msgstr "" -#: lxc/network_zone.go:1239 +#: lxc/network_zone.go:1244 msgid "Add a network zone record entry" msgstr "" -#: lxc/network_load_balancer.go:798 +#: lxc/network_load_balancer.go:803 msgid "Add backend to a load balancer" msgstr "" -#: lxc/network_load_balancer.go:797 +#: lxc/network_load_balancer.go:802 msgid "Add backends to a load balancer" msgstr "" -#: lxc/network_zone.go:1240 +#: lxc/network_zone.go:1245 msgid "Add entries to a network zone record" msgstr "" @@ -600,11 +600,11 @@ msgstr "" msgid "Add new aliases" msgstr "" -#: lxc/remote.go:89 +#: lxc/remote.go:90 msgid "Add new remote servers" msgstr "" -#: lxc/remote.go:90 +#: lxc/remote.go:91 msgid "Add new remote servers\n" "\n" "URL for remote resources must be HTTPS (https://).\n" @@ -638,7 +638,7 @@ msgstr "" msgid "Add ports to a forward" msgstr "" -#: lxc/network_load_balancer.go:962 lxc/network_load_balancer.go:963 +#: lxc/network_load_balancer.go:967 lxc/network_load_balancer.go:968 msgid "Add ports to a load balancer" msgstr "" @@ -659,17 +659,17 @@ msgstr "" msgid "Address: %s" msgstr "" -#: lxc/storage_bucket.go:164 +#: lxc/storage_bucket.go:169 #, c-format msgid "Admin access key: %s" msgstr "" -#: lxc/remote.go:566 +#: lxc/remote.go:567 #, c-format msgid "Admin password (or token) for %s:" msgstr "" -#: lxc/storage_bucket.go:165 +#: lxc/storage_bucket.go:170 #, c-format msgid "Admin secret key: %s" msgstr "" @@ -701,7 +701,7 @@ msgstr "" msgid "All projects" msgstr "" -#: lxc/remote.go:181 +#: lxc/remote.go:182 msgid "All server addresses are unavailable" msgstr "" @@ -724,7 +724,7 @@ msgstr "" msgid "Are you sure you want to %s cluster member %q? (yes/no) [default=no]: " msgstr "" -#: lxc/console.go:383 +#: lxc/console.go:388 msgid "As neither could be found, the raw SPICE socket can be found at:" msgstr "" @@ -771,7 +771,7 @@ msgid "Attach to instance consoles\n" "as well as retrieve past log entries from it." msgstr "" -#: lxc/remote.go:548 +#: lxc/remote.go:549 #, c-format msgid "Authentication type '%s' not supported by server" msgstr "" @@ -790,11 +790,11 @@ msgstr "" msgid "Auto update: %s" msgstr "" -#: lxc/network_forward.go:240 lxc/network_load_balancer.go:242 +#: lxc/network_forward.go:240 lxc/network_load_balancer.go:247 msgid "Auto-allocate an IPv4 or IPv6 listen address. One of 'ipv4', 'ipv6'." msgstr "" -#: lxc/remote.go:136 +#: lxc/remote.go:137 msgid "Available projects:" msgstr "" @@ -825,7 +825,7 @@ msgstr "" msgid "Bad device override syntax, expecting ,=: %s" msgstr "" -#: lxc/network.go:333 lxc/network_acl.go:382 lxc/network_forward.go:293 lxc/network_load_balancer.go:296 lxc/network_peer.go:280 lxc/network_zone.go:324 lxc/network_zone.go:922 lxc/storage_bucket.go:136 +#: lxc/network.go:333 lxc/network_acl.go:382 lxc/network_forward.go:293 lxc/network_load_balancer.go:301 lxc/network_peer.go:280 lxc/network_zone.go:329 lxc/network_zone.go:927 lxc/storage_bucket.go:141 #, c-format msgid "Bad key/value pair: %s" msgstr "" @@ -947,7 +947,7 @@ msgstr "" msgid "Can't read from stdin: %w" msgstr "" -#: lxc/remote.go:861 +#: lxc/remote.go:862 msgid "Can't remove the default remote" msgstr "" @@ -1012,14 +1012,13 @@ msgstr "" msgid "Certificate add token for %s deleted" msgstr "" -#: lxc/remote.go:218 -#, c-format -msgid "Certificate fingerprint mismatch between certificate token and server %q" +#: lxc/remote.go:452 +msgid "Certificate fingerprint" msgstr "" -#: lxc/remote.go:451 +#: lxc/remote.go:219 #, c-format -msgid "Certificate fingerprint: %s" +msgid "Certificate fingerprint mismatch between certificate token and server %q" msgstr "" #: lxc/network.go:893 @@ -1031,7 +1030,7 @@ msgstr "" msgid "Client %s certificate add token:" msgstr "" -#: lxc/remote.go:603 +#: lxc/remote.go:604 msgid "Client certificate now trusted by server:" msgstr "" @@ -1085,7 +1084,7 @@ msgstr "" msgid "Cluster member %s removed from group %s" msgstr "" -#: lxc/config.go:105 lxc/config.go:389 lxc/config.go:532 lxc/config.go:738 lxc/config.go:861 lxc/copy.go:61 lxc/info.go:44 lxc/init.go:64 lxc/move.go:66 lxc/network.go:300 lxc/network.go:723 lxc/network.go:792 lxc/network.go:1134 lxc/network.go:1219 lxc/network.go:1283 lxc/network_forward.go:174 lxc/network_forward.go:239 lxc/network_forward.go:456 lxc/network_forward.go:579 lxc/network_forward.go:721 lxc/network_forward.go:798 lxc/network_forward.go:864 lxc/network_load_balancer.go:176 lxc/network_load_balancer.go:241 lxc/network_load_balancer.go:459 lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:725 lxc/network_load_balancer.go:801 lxc/network_load_balancer.go:865 lxc/network_load_balancer.go:966 lxc/network_load_balancer.go:1028 lxc/storage.go:99 lxc/storage.go:347 lxc/storage.go:418 lxc/storage.go:671 lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:85 lxc/storage_bucket.go:185 lxc/storage_bucket.go:248 lxc/storage_bucket.go:379 lxc/storage_bucket.go:536 lxc/storage_bucket.go:629 lxc/storage_bucket.go:695 lxc/storage_bucket.go:770 lxc/storage_bucket.go:850 lxc/storage_bucket.go:928 lxc/storage_bucket.go:993 lxc/storage_bucket.go:1129 lxc/storage_volume.go:358 lxc/storage_volume.go:560 lxc/storage_volume.go:639 lxc/storage_volume.go:883 lxc/storage_volume.go:1097 lxc/storage_volume.go:1210 lxc/storage_volume.go:1678 lxc/storage_volume.go:1758 lxc/storage_volume.go:1885 lxc/storage_volume.go:2031 lxc/storage_volume.go:2135 lxc/storage_volume.go:2175 lxc/storage_volume.go:2268 lxc/storage_volume.go:2340 lxc/storage_volume.go:2492 +#: lxc/config.go:105 lxc/config.go:389 lxc/config.go:532 lxc/config.go:738 lxc/config.go:861 lxc/copy.go:61 lxc/info.go:44 lxc/init.go:64 lxc/move.go:66 lxc/network.go:300 lxc/network.go:723 lxc/network.go:792 lxc/network.go:1134 lxc/network.go:1219 lxc/network.go:1283 lxc/network_forward.go:174 lxc/network_forward.go:239 lxc/network_forward.go:456 lxc/network_forward.go:579 lxc/network_forward.go:721 lxc/network_forward.go:798 lxc/network_forward.go:864 lxc/network_load_balancer.go:176 lxc/network_load_balancer.go:246 lxc/network_load_balancer.go:464 lxc/network_load_balancer.go:587 lxc/network_load_balancer.go:730 lxc/network_load_balancer.go:806 lxc/network_load_balancer.go:870 lxc/network_load_balancer.go:971 lxc/network_load_balancer.go:1033 lxc/storage.go:99 lxc/storage.go:347 lxc/storage.go:418 lxc/storage.go:671 lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:90 lxc/storage_bucket.go:190 lxc/storage_bucket.go:253 lxc/storage_bucket.go:384 lxc/storage_bucket.go:541 lxc/storage_bucket.go:634 lxc/storage_bucket.go:700 lxc/storage_bucket.go:775 lxc/storage_bucket.go:855 lxc/storage_bucket.go:933 lxc/storage_bucket.go:998 lxc/storage_bucket.go:1134 lxc/storage_volume.go:358 lxc/storage_volume.go:560 lxc/storage_volume.go:639 lxc/storage_volume.go:883 lxc/storage_volume.go:1097 lxc/storage_volume.go:1210 lxc/storage_volume.go:1678 lxc/storage_volume.go:1758 lxc/storage_volume.go:1885 lxc/storage_volume.go:2031 lxc/storage_volume.go:2135 lxc/storage_volume.go:2175 lxc/storage_volume.go:2268 lxc/storage_volume.go:2340 lxc/storage_volume.go:2492 msgid "Cluster member name" msgstr "" @@ -1105,11 +1104,11 @@ msgstr "" msgid "Columns" msgstr "" -#: lxc/main.go:81 +#: lxc/main.go:82 msgid "Command line client for LXD" msgstr "" -#: lxc/main.go:82 +#: lxc/main.go:83 msgid "Command line client for LXD\n" "\n" "All of LXD's features can be driven through the various commands below.\n" @@ -1136,15 +1135,11 @@ 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:1277 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 +#: lxc/cluster.go:770 lxc/cluster_group.go:339 lxc/config.go:272 lxc/config.go:347 lxc/config.go:1277 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:694 lxc/network_peer.go:610 lxc/network_zone.go:556 lxc/network_zone.go:1148 lxc/profile.go:538 lxc/project.go:315 lxc/storage.go:310 lxc/storage_bucket.go:348 lxc/storage_bucket.go:1097 lxc/storage_volume.go:1016 lxc/storage_volume.go:1048 #, c-format msgid "Config parsing error: %s" msgstr "" -#: lxc/console.go:140 -msgid "Console log:" -msgstr "" - #: lxc/storage_volume.go:561 msgid "Content type, block or filesystem" msgstr "" @@ -1240,12 +1235,12 @@ msgstr "" msgid "Cores:" msgstr "" -#: lxc/remote.go:486 +#: lxc/remote.go:487 #, c-format msgid "Could not close server cert file %q: %w" msgstr "" -#: lxc/remote.go:224 lxc/remote.go:470 +#: lxc/remote.go:225 lxc/remote.go:471 msgid "Could not create server cert dir" msgstr "" @@ -1284,12 +1279,12 @@ msgstr "" msgid "Could not write new remote certificate for remote '%s' with error: %v" msgstr "" -#: lxc/remote.go:481 +#: lxc/remote.go:482 #, c-format msgid "Could not write server cert file %q: %w" msgstr "" -#: lxc/network_zone.go:1327 +#: lxc/network_zone.go:1332 msgid "Couldn't find a matching entry" msgstr "" @@ -1340,7 +1335,7 @@ msgstr "" msgid "Create instances from images" msgstr "" -#: lxc/storage_bucket.go:846 lxc/storage_bucket.go:847 +#: lxc/storage_bucket.go:851 lxc/storage_bucket.go:852 msgid "Create key for a storage bucket" msgstr "" @@ -1372,11 +1367,11 @@ msgstr "" msgid "Create new network peering" msgstr "" -#: lxc/network_zone.go:869 lxc/network_zone.go:870 +#: lxc/network_zone.go:874 lxc/network_zone.go:875 msgid "Create new network zone record" msgstr "" -#: lxc/network_zone.go:270 lxc/network_zone.go:271 +#: lxc/network_zone.go:271 lxc/network_zone.go:272 msgid "Create new network zones" msgstr "" @@ -1423,7 +1418,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:678 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:140 lxc/network_zone.go:747 lxc/operation.go:172 lxc/profile.go:678 lxc/project.go:505 lxc/storage.go:646 lxc/storage_bucket.go:512 lxc/storage_bucket.go:832 lxc/storage_volume.go:1562 msgid "DESCRIPTION" msgstr "" @@ -1487,7 +1482,7 @@ msgstr "" msgid "Delete instances and snapshots" msgstr "" -#: lxc/storage_bucket.go:924 lxc/storage_bucket.go:925 +#: lxc/storage_bucket.go:929 lxc/storage_bucket.go:930 msgid "Delete key from a storage bucket" msgstr "" @@ -1499,7 +1494,7 @@ msgstr "" msgid "Delete network forwards" msgstr "" -#: lxc/network_load_balancer.go:721 lxc/network_load_balancer.go:722 +#: lxc/network_load_balancer.go:726 lxc/network_load_balancer.go:727 msgid "Delete network load balancers" msgstr "" @@ -1507,11 +1502,11 @@ msgstr "" msgid "Delete network peerings" msgstr "" -#: lxc/network_zone.go:1175 lxc/network_zone.go:1176 +#: lxc/network_zone.go:1180 lxc/network_zone.go:1181 msgid "Delete network zone record" msgstr "" -#: lxc/network_zone.go:583 lxc/network_zone.go:584 +#: lxc/network_zone.go:588 lxc/network_zone.go:589 msgid "Delete network zones" msgstr "" @@ -1527,7 +1522,7 @@ msgstr "" msgid "Delete projects" msgstr "" -#: lxc/storage_bucket.go:182 lxc/storage_bucket.go:183 +#: lxc/storage_bucket.go:187 lxc/storage_bucket.go:188 msgid "Delete storage buckets" msgstr "" @@ -1543,7 +1538,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:734 lxc/config.go:858 lxc/config.go:893 lxc/config.go:933 lxc/config.go:988 lxc/config.go:1079 lxc/config.go:1110 lxc/config.go:1164 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:631 lxc/remote.go:669 lxc/remote.go:755 lxc/remote.go:828 lxc/remote.go:884 lxc/remote.go:924 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:734 lxc/config.go:858 lxc/config.go:893 lxc/config.go:933 lxc/config.go:988 lxc/config.go:1079 lxc/config.go:1110 lxc/config.go:1164 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:83 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:388 lxc/network_load_balancer.go:456 lxc/network_load_balancer.go:554 lxc/network_load_balancer.go:584 lxc/network_load_balancer.go:727 lxc/network_load_balancer.go:788 lxc/network_load_balancer.go:803 lxc/network_load_balancer.go:867 lxc/network_load_balancer.go:953 lxc/network_load_balancer.go:968 lxc/network_load_balancer.go:1029 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:29 lxc/network_zone.go:86 lxc/network_zone.go:157 lxc/network_zone.go:212 lxc/network_zone.go:272 lxc/network_zone.go:359 lxc/network_zone.go:439 lxc/network_zone.go:470 lxc/network_zone.go:589 lxc/network_zone.go:637 lxc/network_zone.go:694 lxc/network_zone.go:764 lxc/network_zone.go:816 lxc/network_zone.go:875 lxc/network_zone.go:957 lxc/network_zone.go:1033 lxc/network_zone.go:1063 lxc/network_zone.go:1181 lxc/network_zone.go:1230 lxc/network_zone.go:1245 lxc/network_zone.go:1291 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:35 lxc/remote.go:91 lxc/remote.go:632 lxc/remote.go:670 lxc/remote.go:756 lxc/remote.go:829 lxc/remote.go:885 lxc/remote.go:925 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:188 lxc/storage_bucket.go:249 lxc/storage_bucket.go:382 lxc/storage_bucket.go:458 lxc/storage_bucket.go:535 lxc/storage_bucket.go:629 lxc/storage_bucket.go:698 lxc/storage_bucket.go:732 lxc/storage_bucket.go:773 lxc/storage_bucket.go:852 lxc/storage_bucket.go:930 lxc/storage_bucket.go:994 lxc/storage_bucket.go:1129 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 "" @@ -1662,7 +1657,7 @@ msgstr "" msgid "Don't require user confirmation for using --force" msgstr "" -#: lxc/main.go:99 +#: lxc/main.go:100 msgid "Don't show progress information" msgstr "" @@ -1675,7 +1670,7 @@ msgstr "" msgid "Driver: %v (%v)" msgstr "" -#: lxc/network_zone.go:743 +#: lxc/network_zone.go:748 msgid "ENTRIES" msgstr "" @@ -1751,7 +1746,7 @@ msgstr "" msgid "Edit network forward configurations as YAML" msgstr "" -#: lxc/network_load_balancer.go:578 lxc/network_load_balancer.go:579 +#: lxc/network_load_balancer.go:583 lxc/network_load_balancer.go:584 msgid "Edit network load balancer configurations as YAML" msgstr "" @@ -1759,11 +1754,11 @@ msgstr "" msgid "Edit network peer configurations as YAML" msgstr "" -#: lxc/network_zone.go:464 lxc/network_zone.go:465 +#: lxc/network_zone.go:469 lxc/network_zone.go:470 msgid "Edit network zone configurations as YAML" msgstr "" -#: lxc/network_zone.go:1057 lxc/network_zone.go:1058 +#: lxc/network_zone.go:1062 lxc/network_zone.go:1063 msgid "Edit network zone record configurations as YAML" msgstr "" @@ -1775,11 +1770,11 @@ msgstr "" msgid "Edit project configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:243 lxc/storage_bucket.go:244 +#: lxc/storage_bucket.go:248 lxc/storage_bucket.go:249 msgid "Edit storage bucket configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:988 lxc/storage_bucket.go:989 +#: lxc/storage_bucket.go:993 lxc/storage_bucket.go:994 msgid "Edit storage bucket key as YAML" msgstr "" @@ -1815,7 +1810,7 @@ msgid "Enable clustering on a single non-clustered LXD server\n" " for the address if not yet set." msgstr "" -#: lxc/network_zone.go:1242 +#: lxc/network_zone.go:1247 msgid "Entry TTL" msgstr "" @@ -1842,7 +1837,7 @@ msgstr "" msgid "Error retrieving aliases: %w" msgstr "" -#: lxc/cluster.go:414 lxc/config.go:624 lxc/config.go:656 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 +#: lxc/cluster.go:414 lxc/config.go:624 lxc/config.go:656 lxc/network.go:1194 lxc/network_acl.go:467 lxc/network_forward.go:519 lxc/network_load_balancer.go:527 lxc/network_peer.go:463 lxc/network_zone.go:414 lxc/network_zone.go:1008 lxc/profile.go:876 lxc/project.go:634 lxc/storage.go:727 lxc/storage_bucket.go:602 lxc/storage_volume.go:1947 lxc/storage_volume.go:1985 #, c-format msgid "Error setting properties: %v" msgstr "" @@ -1852,7 +1847,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:870 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:521 lxc/network_peer.go:457 lxc/network_zone.go:408 lxc/network_zone.go:1002 lxc/profile.go:870 lxc/project.go:628 lxc/storage.go:721 lxc/storage_bucket.go:596 lxc/storage_volume.go:1941 lxc/storage_volume.go:1979 #, c-format msgid "Error unsetting property: %v" msgstr "" @@ -2032,7 +2027,7 @@ msgstr "" msgid "Failed parsing SSH host key: %w" msgstr "" -#: lxc/console.go:361 +#: lxc/console.go:366 #, c-format msgid "Failed starting command: %w" msgstr "" @@ -2047,11 +2042,11 @@ msgstr "" msgid "Failed to accept incoming connection: %w" msgstr "" -#: lxc/remote.go:190 +#: lxc/remote.go:191 msgid "Failed to add remote" msgstr "" -#: lxc/remote.go:241 +#: lxc/remote.go:242 #, c-format msgid "Failed to close server cert file %q: %w" msgstr "" @@ -2061,7 +2056,7 @@ msgstr "" msgid "Failed to connect to cluster member: %w" msgstr "" -#: lxc/remote.go:231 +#: lxc/remote.go:232 #, c-format msgid "Failed to create %q: %w" msgstr "" @@ -2071,12 +2066,12 @@ msgstr "" msgid "Failed to create alias %s: %w" msgstr "" -#: lxc/remote.go:256 +#: lxc/remote.go:257 #, c-format msgid "Failed to create certificate: %w" msgstr "" -#: lxc/remote.go:263 +#: lxc/remote.go:264 #, c-format msgid "Failed to find project: %w" msgstr "" @@ -2101,7 +2096,7 @@ msgstr "" msgid "Failed to walk path for %s: %s" msgstr "" -#: lxc/remote.go:236 +#: lxc/remote.go:237 #, c-format msgid "Failed to write server cert file %q: %w" msgstr "" @@ -2110,7 +2105,7 @@ msgstr "" msgid "Fast mode (same as --columns=nsacPt)" msgstr "" -#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:115 lxc/operation.go:136 +#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:116 lxc/operation.go:136 msgid "Filtering isn't supported yet" msgstr "" @@ -2147,7 +2142,7 @@ msgstr "" msgid "Force the removal of running instances" msgstr "" -#: lxc/main.go:95 +#: lxc/main.go:96 msgid "Force using the local unix socket" msgstr "" @@ -2170,7 +2165,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:637 lxc/project.go:412 lxc/project.go:804 lxc/remote.go:673 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:89 lxc/network_zone.go:697 lxc/operation.go:108 lxc/profile.go:637 lxc/project.go:412 lxc/project.go:804 lxc/remote.go:674 lxc/storage.go:588 lxc/storage_bucket.go:459 lxc/storage_bucket.go:774 lxc/storage_volume.go:1446 lxc/warning.go:93 msgid "Format (csv|json|table|yaml|compact)" msgstr "" @@ -2206,7 +2201,7 @@ msgstr "" msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)" msgstr "" -#: lxc/remote.go:737 +#: lxc/remote.go:738 msgid "GLOBAL" msgstr "" @@ -2226,7 +2221,7 @@ msgstr "" msgid "Generate manpages for all commands" msgstr "" -#: lxc/remote.go:159 lxc/remote.go:397 +#: lxc/remote.go:160 lxc/remote.go:398 msgid "Generating a client certificate. This may take a minute..." msgstr "" @@ -2258,7 +2253,7 @@ msgstr "" msgid "Get the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:386 +#: lxc/network_load_balancer.go:391 msgid "Get the key as a network load balancer property" msgstr "" @@ -2270,11 +2265,11 @@ msgstr "" msgid "Get the key as a network property" msgstr "" -#: lxc/network_zone.go:214 +#: lxc/network_zone.go:215 msgid "Get the key as a network zone property" msgstr "" -#: lxc/network_zone.go:814 +#: lxc/network_zone.go:819 msgid "Get the key as a network zone record property" msgstr "" @@ -2286,7 +2281,7 @@ msgstr "" msgid "Get the key as a project property" msgstr "" -#: lxc/storage_bucket.go:380 +#: lxc/storage_bucket.go:385 msgid "Get the key as a storage bucket property" msgstr "" @@ -2326,7 +2321,7 @@ msgstr "" msgid "Get values for network forward configuration keys" msgstr "" -#: lxc/network_load_balancer.go:382 lxc/network_load_balancer.go:383 +#: lxc/network_load_balancer.go:387 lxc/network_load_balancer.go:388 msgid "Get values for network load balancer configuration keys" msgstr "" @@ -2334,11 +2329,11 @@ msgstr "" msgid "Get values for network peer configuration keys" msgstr "" -#: lxc/network_zone.go:210 lxc/network_zone.go:211 +#: lxc/network_zone.go:211 lxc/network_zone.go:212 msgid "Get values for network zone configuration keys" msgstr "" -#: lxc/network_zone.go:810 lxc/network_zone.go:811 +#: lxc/network_zone.go:815 lxc/network_zone.go:816 msgid "Get values for network zone record configuration keys" msgstr "" @@ -2350,7 +2345,7 @@ msgstr "" msgid "Get values for project configuration keys" msgstr "" -#: lxc/storage_bucket.go:376 lxc/storage_bucket.go:377 +#: lxc/storage_bucket.go:381 lxc/storage_bucket.go:382 msgid "Get values for storage bucket configuration keys" msgstr "" @@ -2490,7 +2485,7 @@ msgstr "" msgid "If the snapshot name already exists, delete and create a new one" msgstr "" -#: lxc/main.go:398 +#: lxc/main.go:400 msgid "If this is your first time running LXD on this machine, you should also run: lxd init" msgstr "" @@ -2644,7 +2639,7 @@ msgstr "" msgid "Instance type" msgstr "" -#: lxc/remote.go:349 +#: lxc/remote.go:350 #, c-format msgid "Invalid URL scheme \"%s\" in \"%s\"" msgstr "" @@ -2715,7 +2710,7 @@ msgstr "" msgid "Invalid new snapshot name, parent volume must be the same as source" msgstr "" -#: lxc/main.go:498 +#: lxc/main.go:502 msgid "Invalid number of arguments" msgstr "" @@ -2724,7 +2719,7 @@ msgstr "" msgid "Invalid path %s" msgstr "" -#: lxc/remote.go:338 +#: lxc/remote.go:339 #, c-format msgid "Invalid protocol: %s" msgstr "" @@ -2768,7 +2763,7 @@ msgstr "" msgid "LISTEN ADDRESS" msgstr "" -#: lxc/list.go:597 lxc/network.go:1059 lxc/network_forward.go:155 lxc/network_load_balancer.go:157 lxc/operation.go:177 lxc/storage_bucket.go:511 lxc/storage_volume.go:1569 lxc/warning.go:220 +#: lxc/list.go:597 lxc/network.go:1059 lxc/network_forward.go:155 lxc/network_load_balancer.go:157 lxc/operation.go:177 lxc/storage_bucket.go:516 lxc/storage_volume.go:1569 lxc/warning.go:220 msgid "LOCATION" msgstr "" @@ -2776,7 +2771,7 @@ msgstr "" msgid "LXD - Command line client" msgstr "" -#: lxc/console.go:382 +#: lxc/console.go:387 msgid "LXD automatically uses either spicy or remote-viewer when present." msgstr "" @@ -2865,15 +2860,15 @@ msgstr "" msgid "List available network peers" msgstr "" -#: lxc/network_zone.go:85 +#: lxc/network_zone.go:86 msgid "List available network zone" msgstr "" -#: lxc/network_zone.go:688 lxc/network_zone.go:689 +#: lxc/network_zone.go:693 lxc/network_zone.go:694 msgid "List available network zone records" msgstr "" -#: lxc/network_zone.go:84 +#: lxc/network_zone.go:85 msgid "List available network zoneS" msgstr "" @@ -3052,11 +3047,11 @@ msgstr "" msgid "List projects" msgstr "" -#: lxc/storage_bucket.go:766 lxc/storage_bucket.go:768 +#: lxc/storage_bucket.go:771 lxc/storage_bucket.go:773 msgid "List storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:451 lxc/storage_bucket.go:453 +#: lxc/storage_bucket.go:456 lxc/storage_bucket.go:458 msgid "List storage buckets" msgstr "" @@ -3083,7 +3078,7 @@ msgid "List storage volumes\n" " U - Current disk usage" msgstr "" -#: lxc/remote.go:668 lxc/remote.go:669 +#: lxc/remote.go:669 lxc/remote.go:670 msgid "List the available remotes" msgstr "" @@ -3308,11 +3303,11 @@ msgstr "" msgid "Manage network forwards" msgstr "" -#: lxc/network_load_balancer.go:782 lxc/network_load_balancer.go:783 +#: lxc/network_load_balancer.go:787 lxc/network_load_balancer.go:788 msgid "Manage network load balancer backends" msgstr "" -#: lxc/network_load_balancer.go:947 lxc/network_load_balancer.go:948 +#: lxc/network_load_balancer.go:952 lxc/network_load_balancer.go:953 msgid "Manage network load balancer ports" msgstr "" @@ -3324,15 +3319,15 @@ msgstr "" msgid "Manage network peerings" msgstr "" -#: lxc/network_zone.go:1224 lxc/network_zone.go:1225 +#: lxc/network_zone.go:1229 lxc/network_zone.go:1230 msgid "Manage network zone record entries" msgstr "" -#: lxc/network_zone.go:631 lxc/network_zone.go:632 +#: lxc/network_zone.go:636 lxc/network_zone.go:637 msgid "Manage network zone records" msgstr "" -#: lxc/network_zone.go:27 lxc/network_zone.go:28 +#: lxc/network_zone.go:28 lxc/network_zone.go:29 msgid "Manage network zones" msgstr "" @@ -3348,11 +3343,11 @@ msgstr "" msgid "Manage projects" msgstr "" -#: lxc/storage_bucket.go:726 +#: lxc/storage_bucket.go:731 msgid "Manage storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:727 +#: lxc/storage_bucket.go:732 msgid "Manage storage bucket keys." msgstr "" @@ -3378,7 +3373,7 @@ msgid "Manage storage volumes\n" "Unless specified through a prefix, all volume operations affect \"custom\" (user created) volumes." msgstr "" -#: lxc/remote.go:33 lxc/remote.go:34 +#: lxc/remote.go:34 lxc/remote.go:35 msgid "Manage the list of remote servers" msgstr "" @@ -3458,7 +3453,7 @@ msgstr "" msgid "Minimum level for log messages (only available when using pretty format)" msgstr "" -#: lxc/storage_bucket.go:111 lxc/storage_bucket.go:211 lxc/storage_bucket.go:287 lxc/storage_bucket.go:406 lxc/storage_bucket.go:563 lxc/storage_bucket.go:655 lxc/storage_bucket.go:797 lxc/storage_bucket.go:878 lxc/storage_bucket.go:953 lxc/storage_bucket.go:1032 lxc/storage_bucket.go:1155 +#: lxc/storage_bucket.go:116 lxc/storage_bucket.go:216 lxc/storage_bucket.go:292 lxc/storage_bucket.go:411 lxc/storage_bucket.go:568 lxc/storage_bucket.go:660 lxc/storage_bucket.go:802 lxc/storage_bucket.go:883 lxc/storage_bucket.go:958 lxc/storage_bucket.go:1037 lxc/storage_bucket.go:1160 msgid "Missing bucket name" msgstr "" @@ -3494,11 +3489,11 @@ msgstr "" msgid "Missing instance name" msgstr "" -#: lxc/storage_bucket.go:882 lxc/storage_bucket.go:957 lxc/storage_bucket.go:1036 lxc/storage_bucket.go:1159 +#: lxc/storage_bucket.go:887 lxc/storage_bucket.go:962 lxc/storage_bucket.go:1041 lxc/storage_bucket.go:1164 msgid "Missing key name" msgstr "" -#: lxc/network_forward.go:199 lxc/network_forward.go:408 lxc/network_forward.go:481 lxc/network_forward.go:627 lxc/network_forward.go:746 lxc/network_forward.go:823 lxc/network_forward.go:889 lxc/network_load_balancer.go:201 lxc/network_load_balancer.go:411 lxc/network_load_balancer.go:484 lxc/network_load_balancer.go:630 lxc/network_load_balancer.go:750 lxc/network_load_balancer.go:826 lxc/network_load_balancer.go:890 lxc/network_load_balancer.go:991 lxc/network_load_balancer.go:1053 +#: lxc/network_forward.go:199 lxc/network_forward.go:408 lxc/network_forward.go:481 lxc/network_forward.go:627 lxc/network_forward.go:746 lxc/network_forward.go:823 lxc/network_forward.go:889 lxc/network_load_balancer.go:201 lxc/network_load_balancer.go:416 lxc/network_load_balancer.go:489 lxc/network_load_balancer.go:635 lxc/network_load_balancer.go:755 lxc/network_load_balancer.go:831 lxc/network_load_balancer.go:895 lxc/network_load_balancer.go:996 lxc/network_load_balancer.go:1058 msgid "Missing listen address" msgstr "" @@ -3510,15 +3505,15 @@ msgstr "" msgid "Missing network ACL name" msgstr "" -#: lxc/network.go:159 lxc/network.go:244 lxc/network.go:396 lxc/network.go:446 lxc/network.go:531 lxc/network.go:636 lxc/network.go:747 lxc/network.go:815 lxc/network.go:1030 lxc/network.go:1100 lxc/network.go:1158 lxc/network.go:1242 lxc/network_forward.go:119 lxc/network_forward.go:195 lxc/network_forward.go:259 lxc/network_forward.go:404 lxc/network_forward.go:477 lxc/network_forward.go:623 lxc/network_forward.go:742 lxc/network_forward.go:819 lxc/network_forward.go:885 lxc/network_load_balancer.go:123 lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:261 lxc/network_load_balancer.go:407 lxc/network_load_balancer.go:480 lxc/network_load_balancer.go:626 lxc/network_load_balancer.go:746 lxc/network_load_balancer.go:822 lxc/network_load_balancer.go:886 lxc/network_load_balancer.go:987 lxc/network_load_balancer.go:1049 lxc/network_peer.go:110 lxc/network_peer.go:180 lxc/network_peer.go:237 lxc/network_peer.go:355 lxc/network_peer.go:426 lxc/network_peer.go:556 lxc/network_peer.go:665 +#: lxc/network.go:159 lxc/network.go:244 lxc/network.go:396 lxc/network.go:446 lxc/network.go:531 lxc/network.go:636 lxc/network.go:747 lxc/network.go:815 lxc/network.go:1030 lxc/network.go:1100 lxc/network.go:1158 lxc/network.go:1242 lxc/network_forward.go:119 lxc/network_forward.go:195 lxc/network_forward.go:259 lxc/network_forward.go:404 lxc/network_forward.go:477 lxc/network_forward.go:623 lxc/network_forward.go:742 lxc/network_forward.go:819 lxc/network_forward.go:885 lxc/network_load_balancer.go:123 lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:266 lxc/network_load_balancer.go:412 lxc/network_load_balancer.go:485 lxc/network_load_balancer.go:631 lxc/network_load_balancer.go:751 lxc/network_load_balancer.go:827 lxc/network_load_balancer.go:891 lxc/network_load_balancer.go:992 lxc/network_load_balancer.go:1054 lxc/network_peer.go:110 lxc/network_peer.go:180 lxc/network_peer.go:237 lxc/network_peer.go:355 lxc/network_peer.go:426 lxc/network_peer.go:556 lxc/network_peer.go:665 msgid "Missing network name" msgstr "" -#: lxc/network_zone.go:178 lxc/network_zone.go:234 lxc/network_zone.go:294 lxc/network_zone.go:382 lxc/network_zone.go:503 lxc/network_zone.go:606 lxc/network_zone.go:712 lxc/network_zone.go:780 lxc/network_zone.go:892 lxc/network_zone.go:976 lxc/network_zone.go:1197 lxc/network_zone.go:1262 lxc/network_zone.go:1307 +#: lxc/network_zone.go:179 lxc/network_zone.go:235 lxc/network_zone.go:299 lxc/network_zone.go:387 lxc/network_zone.go:508 lxc/network_zone.go:611 lxc/network_zone.go:717 lxc/network_zone.go:785 lxc/network_zone.go:897 lxc/network_zone.go:981 lxc/network_zone.go:1202 lxc/network_zone.go:1267 lxc/network_zone.go:1312 msgid "Missing network zone name" msgstr "" -#: lxc/network_zone.go:833 lxc/network_zone.go:1095 +#: lxc/network_zone.go:838 lxc/network_zone.go:1100 msgid "Missing network zone record name" msgstr "" @@ -3526,7 +3521,7 @@ msgstr "" msgid "Missing peer name" msgstr "" -#: lxc/storage.go:194 lxc/storage.go:264 lxc/storage.go:370 lxc/storage.go:440 lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:107 lxc/storage_bucket.go:207 lxc/storage_bucket.go:283 lxc/storage_bucket.go:402 lxc/storage_bucket.go:477 lxc/storage_bucket.go:559 lxc/storage_bucket.go:651 lxc/storage_bucket.go:793 lxc/storage_bucket.go:874 lxc/storage_bucket.go:949 lxc/storage_bucket.go:1028 lxc/storage_bucket.go:1151 lxc/storage_volume.go:189 lxc/storage_volume.go:287 lxc/storage_volume.go:583 lxc/storage_volume.go:660 lxc/storage_volume.go:735 lxc/storage_volume.go:817 lxc/storage_volume.go:919 lxc/storage_volume.go:1120 lxc/storage_volume.go:1780 lxc/storage_volume.go:1907 lxc/storage_volume.go:2053 lxc/storage_volume.go:2195 lxc/storage_volume.go:2290 +#: lxc/storage.go:194 lxc/storage.go:264 lxc/storage.go:370 lxc/storage.go:440 lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:112 lxc/storage_bucket.go:212 lxc/storage_bucket.go:288 lxc/storage_bucket.go:407 lxc/storage_bucket.go:482 lxc/storage_bucket.go:564 lxc/storage_bucket.go:656 lxc/storage_bucket.go:798 lxc/storage_bucket.go:879 lxc/storage_bucket.go:954 lxc/storage_bucket.go:1033 lxc/storage_bucket.go:1156 lxc/storage_volume.go:189 lxc/storage_volume.go:287 lxc/storage_volume.go:583 lxc/storage_volume.go:660 lxc/storage_volume.go:735 lxc/storage_volume.go:817 lxc/storage_volume.go:919 lxc/storage_volume.go:1120 lxc/storage_volume.go:1780 lxc/storage_volume.go:1907 lxc/storage_volume.go:2053 lxc/storage_volume.go:2195 lxc/storage_volume.go:2290 msgid "Missing pool name" msgstr "" @@ -3631,7 +3626,7 @@ msgstr "" msgid "Moving the storage volume: %s" msgstr "" -#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1097 +#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1102 msgid "Multiple ports match. Use --force to remove them all" msgstr "" @@ -3647,7 +3642,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:677 lxc/project.go:498 lxc/remote.go:731 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:139 lxc/network_zone.go:746 lxc/profile.go:677 lxc/project.go:498 lxc/remote.go:732 lxc/storage.go:638 lxc/storage_bucket.go:511 lxc/storage_bucket.go:831 lxc/storage_volume.go:1561 msgid "NAME" msgstr "" @@ -3671,7 +3666,7 @@ msgstr "" msgid "NICs:" msgstr "" -#: lxc/network.go:957 lxc/operation.go:154 lxc/project.go:456 lxc/project.go:461 lxc/project.go:466 lxc/project.go:471 lxc/project.go:476 lxc/project.go:481 lxc/remote.go:691 lxc/remote.go:696 lxc/remote.go:701 +#: lxc/network.go:957 lxc/operation.go:154 lxc/project.go:456 lxc/project.go:461 lxc/project.go:466 lxc/project.go:471 lxc/project.go:476 lxc/project.go:481 lxc/remote.go:692 lxc/remote.go:697 lxc/remote.go:702 msgid "NO" msgstr "" @@ -3697,7 +3692,7 @@ msgstr "" msgid "Name" msgstr "" -#: lxc/remote.go:141 +#: lxc/remote.go:142 msgid "Name of the project to use for this remote:" msgstr "" @@ -3746,12 +3741,12 @@ msgstr "" msgid "Network ACL %s renamed to %s" msgstr "" -#: lxc/network_zone.go:336 +#: lxc/network_zone.go:341 #, c-format msgid "Network Zone %s created" msgstr "" -#: lxc/network_zone.go:616 +#: lxc/network_zone.go:621 #, c-format msgid "Network Zone %s deleted" msgstr "" @@ -3766,12 +3761,12 @@ msgstr "" msgid "Network forward %s deleted" msgstr "" -#: lxc/network_load_balancer.go:365 +#: lxc/network_load_balancer.go:370 #, c-format msgid "Network load balancer %s created" msgstr "" -#: lxc/network_load_balancer.go:767 +#: lxc/network_load_balancer.go:772 #, c-format msgid "Network load balancer %s deleted" msgstr "" @@ -3808,12 +3803,12 @@ msgstr "" msgid "Network usage:" msgstr "" -#: lxc/network_zone.go:934 +#: lxc/network_zone.go:939 #, c-format msgid "Network zone record %s created" msgstr "" -#: lxc/network_zone.go:1207 +#: lxc/network_zone.go:1212 #, c-format msgid "Network zone record %s deleted" msgstr "" @@ -3848,11 +3843,11 @@ msgstr "" msgid "No device found for this storage volume" msgstr "" -#: lxc/network_load_balancer.go:921 +#: lxc/network_load_balancer.go:926 msgid "No matching backend found" msgstr "" -#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1108 +#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1113 msgid "No matching port(s) found" msgstr "" @@ -3898,7 +3893,7 @@ msgstr "" msgid "Only \"custom\" volumes can be snapshotted" msgstr "" -#: lxc/remote.go:332 +#: lxc/remote.go:333 msgid "Only https URLs are supported for simplestreams" msgstr "" @@ -3923,7 +3918,7 @@ msgstr "" msgid "Optimized Storage" msgstr "" -#: lxc/main.go:96 +#: lxc/main.go:97 msgid "Override the source project" msgstr "" @@ -3969,11 +3964,11 @@ msgstr "" msgid "PROJECT" msgstr "" -#: lxc/remote.go:733 +#: lxc/remote.go:734 msgid "PROTOCOL" msgstr "" -#: lxc/image.go:1073 lxc/remote.go:735 +#: lxc/image.go:1073 lxc/remote.go:736 msgid "PUBLIC" msgstr "" @@ -3989,7 +3984,7 @@ msgstr "" msgid "Partitions:" msgstr "" -#: lxc/main.go:361 +#: lxc/main.go:363 #, c-format msgid "Password for %s: " msgstr "" @@ -4002,7 +3997,7 @@ msgstr "" msgid "Perform an incremental copy" msgstr "" -#: lxc/remote.go:182 +#: lxc/remote.go:183 msgid "Please provide an alternate server address (empty to abort):" msgstr "" @@ -4014,7 +4009,7 @@ msgstr "" msgid "Please provide cluster member name: " msgstr "" -#: lxc/remote.go:462 +#: lxc/remote.go:463 msgid "Please type 'y', 'n' or the fingerprint:" msgstr "" @@ -4031,7 +4026,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:1278 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 +#: 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:1278 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:695 lxc/network_peer.go:611 lxc/network_zone.go:557 lxc/network_zone.go:1149 lxc/profile.go:539 lxc/project.go:316 lxc/storage.go:311 lxc/storage_bucket.go:349 lxc/storage_bucket.go:1098 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 "" @@ -4039,7 +4034,7 @@ msgstr "" msgid "Pretty rendering (short for --format=pretty)" msgstr "" -#: lxc/main.go:94 +#: lxc/main.go:95 msgid "Print help" msgstr "" @@ -4047,7 +4042,7 @@ msgstr "" msgid "Print the raw response" msgstr "" -#: lxc/main.go:93 +#: lxc/main.go:94 msgid "Print version number" msgstr "" @@ -4136,7 +4131,7 @@ msgstr "" msgid "Project %s renamed to %s" msgstr "" -#: lxc/remote.go:106 +#: lxc/remote.go:107 msgid "Project to use for the remote" msgstr "" @@ -4218,7 +4213,7 @@ msgid "Provide the type of the storage volume if it is not custom.\n" " Removes the snapshot expiration period for a virtual machine \"data\" in pool \"default\"." msgstr "" -#: lxc/remote.go:105 +#: lxc/remote.go:106 msgid "Public image server" msgstr "" @@ -4266,7 +4261,7 @@ msgstr "" msgid "RESOURCE" msgstr "" -#: lxc/storage_bucket.go:828 +#: lxc/storage_bucket.go:833 msgid "ROLE" msgstr "" @@ -4309,44 +4304,44 @@ msgstr "" msgid "Refreshing the image: %s" msgstr "" -#: lxc/remote.go:785 +#: lxc/remote.go:786 #, c-format msgid "Remote %s already exists" msgstr "" -#: lxc/project.go:769 lxc/remote.go:776 lxc/remote.go:849 lxc/remote.go:905 lxc/remote.go:945 +#: lxc/project.go:769 lxc/remote.go:777 lxc/remote.go:850 lxc/remote.go:906 lxc/remote.go:946 #, c-format msgid "Remote %s doesn't exist" msgstr "" -#: lxc/remote.go:301 +#: lxc/remote.go:302 #, c-format msgid "Remote %s exists as <%s>" msgstr "" -#: lxc/remote.go:857 +#: lxc/remote.go:858 #, c-format msgid "Remote %s is global and cannot be removed" msgstr "" -#: lxc/remote.go:780 lxc/remote.go:853 lxc/remote.go:949 +#: lxc/remote.go:781 lxc/remote.go:854 lxc/remote.go:950 #, c-format msgid "Remote %s is static and cannot be modified" msgstr "" -#: lxc/remote.go:290 +#: lxc/remote.go:291 msgid "Remote address must not be empty" msgstr "" -#: lxc/remote.go:101 +#: lxc/remote.go:102 msgid "Remote admin password" msgstr "" -#: lxc/remote.go:295 +#: lxc/remote.go:296 msgid "Remote names may not contain colons" msgstr "" -#: lxc/remote.go:102 +#: lxc/remote.go:103 msgid "Remote trust token" msgstr "" @@ -4372,7 +4367,7 @@ msgstr "" msgid "Remove a member from the cluster" msgstr "" -#: lxc/network_zone.go:1285 +#: lxc/network_zone.go:1290 msgid "Remove a network zone record entry" msgstr "" @@ -4380,7 +4375,7 @@ msgstr "" msgid "Remove aliases" msgstr "" -#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1025 +#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1030 msgid "Remove all ports that match" msgstr "" @@ -4388,15 +4383,15 @@ msgstr "" msgid "Remove all rules that match" msgstr "" -#: lxc/network_load_balancer.go:862 +#: lxc/network_load_balancer.go:867 msgid "Remove backend from a load balancer" msgstr "" -#: lxc/network_load_balancer.go:861 +#: lxc/network_load_balancer.go:866 msgid "Remove backends from a load balancer" msgstr "" -#: lxc/network_zone.go:1286 +#: lxc/network_zone.go:1291 msgid "Remove entries from a network zone record" msgstr "" @@ -4420,7 +4415,7 @@ msgstr "" msgid "Remove ports from a forward" msgstr "" -#: lxc/network_load_balancer.go:1023 lxc/network_load_balancer.go:1024 +#: lxc/network_load_balancer.go:1028 lxc/network_load_balancer.go:1029 msgid "Remove ports from a load balancer" msgstr "" @@ -4428,7 +4423,7 @@ msgstr "" msgid "Remove profiles from instances" msgstr "" -#: lxc/remote.go:827 lxc/remote.go:828 +#: lxc/remote.go:828 lxc/remote.go:829 msgid "Remove remotes" msgstr "" @@ -4484,7 +4479,7 @@ msgstr "" msgid "Rename projects" msgstr "" -#: lxc/remote.go:754 lxc/remote.go:755 +#: lxc/remote.go:755 lxc/remote.go:756 msgid "Rename remotes" msgstr "" @@ -4560,7 +4555,7 @@ msgid "Restrict the certificate to one or more projects" msgstr "" #: lxc/console.go:44 -msgid "Retrieve the instance's console log" +msgid "Retrieve the container's console log" msgstr "" #: lxc/init.go:347 @@ -4576,7 +4571,7 @@ msgstr "" msgid "Revoke cluster member join token" msgstr "" -#: lxc/storage_bucket.go:851 +#: lxc/storage_bucket.go:856 msgid "Role (admin or read-only)" msgstr "" @@ -4626,7 +4621,7 @@ msgstr "" msgid "STATE" msgstr "" -#: lxc/remote.go:736 +#: lxc/remote.go:737 msgid "STATIC" msgstr "" @@ -4650,11 +4645,11 @@ msgstr "" msgid "STP" msgstr "" -#: lxc/storage_bucket.go:853 +#: lxc/storage_bucket.go:858 msgid "Secret key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:909 +#: lxc/storage_bucket.go:914 #, c-format msgid "Secret key: %s" msgstr "" @@ -4663,19 +4658,19 @@ msgstr "" msgid "Send a raw query to LXD" msgstr "" -#: lxc/remote.go:104 +#: lxc/remote.go:105 msgid "Server authentication type (tls or oidc)" msgstr "" -#: lxc/remote.go:460 +#: lxc/remote.go:461 msgid "Server certificate NACKed by user" msgstr "" -#: lxc/remote.go:599 +#: lxc/remote.go:600 msgid "Server doesn't trust us after authentication" msgstr "" -#: lxc/remote.go:103 +#: lxc/remote.go:104 msgid "Server protocol (lxd or simplestreams)" msgstr "" @@ -4762,11 +4757,11 @@ msgid "Set network forward keys\n" " lxc network set [:] " msgstr "" -#: lxc/network_load_balancer.go:450 +#: lxc/network_load_balancer.go:455 msgid "Set network load balancer keys" msgstr "" -#: lxc/network_load_balancer.go:451 +#: lxc/network_load_balancer.go:456 msgid "Set network load balancer keys\n" "\n" "For backward compatibility, a single configuration key may still be set with:\n" @@ -4784,18 +4779,18 @@ msgid "Set network peer keys\n" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:353 +#: lxc/network_zone.go:358 msgid "Set network zone configuration keys" msgstr "" -#: lxc/network_zone.go:354 +#: lxc/network_zone.go:359 msgid "Set network zone configuration keys\n" "\n" "For backward compatibility, a single configuration key may still be set with:\n" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:951 lxc/network_zone.go:952 +#: lxc/network_zone.go:956 lxc/network_zone.go:957 msgid "Set network zone record configuration keys" msgstr "" @@ -4821,11 +4816,11 @@ msgid "Set project configuration keys\n" " lxc project set [:] " msgstr "" -#: lxc/storage_bucket.go:529 +#: lxc/storage_bucket.go:534 msgid "Set storage bucket configuration keys" msgstr "" -#: lxc/storage_bucket.go:530 +#: lxc/storage_bucket.go:535 msgid "Set storage bucket configuration keys\n" "\n" "For backward compatibility, a single configuration key may still be set with:\n" @@ -4854,7 +4849,7 @@ msgid "Set storage volume configuration keys\n" " lxc storage volume set [:] [/] " msgstr "" -#: lxc/remote.go:923 lxc/remote.go:924 +#: lxc/remote.go:924 lxc/remote.go:925 msgid "Set the URL for the remote" msgstr "" @@ -4882,7 +4877,7 @@ msgstr "" msgid "Set the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:458 +#: lxc/network_load_balancer.go:463 msgid "Set the key as a network load balancer property" msgstr "" @@ -4894,11 +4889,11 @@ msgstr "" msgid "Set the key as a network property" msgstr "" -#: lxc/network_zone.go:361 +#: lxc/network_zone.go:366 msgid "Set the key as a network zone property" msgstr "" -#: lxc/network_zone.go:957 +#: lxc/network_zone.go:962 msgid "Set the key as a network zone record property" msgstr "" @@ -4910,7 +4905,7 @@ msgstr "" msgid "Set the key as a project property" msgstr "" -#: lxc/storage_bucket.go:537 +#: lxc/storage_bucket.go:542 msgid "Set the key as a storage bucket property" msgstr "" @@ -4930,11 +4925,11 @@ msgstr "" msgid "Setup SSH SFTP listener on address:port instead of mounting" msgstr "" -#: lxc/main.go:97 +#: lxc/main.go:98 msgid "Show all debug messages" msgstr "" -#: lxc/main.go:98 +#: lxc/main.go:99 msgid "Show all information messages" msgstr "" @@ -4999,7 +4994,7 @@ msgstr "" msgid "Show instance or server information" msgstr "" -#: lxc/main.go:271 lxc/main.go:272 +#: lxc/main.go:272 lxc/main.go:273 msgid "Show less common commands" msgstr "" @@ -5031,15 +5026,15 @@ msgstr "" msgid "Show network peer configurations" msgstr "" -#: lxc/network_zone.go:155 lxc/network_zone.go:156 +#: lxc/network_zone.go:156 lxc/network_zone.go:157 msgid "Show network zone configurations" msgstr "" -#: lxc/network_zone.go:758 +#: lxc/network_zone.go:763 msgid "Show network zone record configuration" msgstr "" -#: lxc/network_zone.go:759 +#: lxc/network_zone.go:764 msgid "Show network zone record configurations" msgstr "" @@ -5051,11 +5046,11 @@ msgstr "" msgid "Show project options" msgstr "" -#: lxc/storage_bucket.go:623 lxc/storage_bucket.go:624 +#: lxc/storage_bucket.go:628 lxc/storage_bucket.go:629 msgid "Show storage bucket configurations" msgstr "" -#: lxc/storage_bucket.go:1123 lxc/storage_bucket.go:1124 +#: lxc/storage_bucket.go:1128 lxc/storage_bucket.go:1129 msgid "Show storage bucket key configurations" msgstr "" @@ -5079,7 +5074,7 @@ msgid "Show the current identity\n" "that are granted via identity provider group mappings. \n" msgstr "" -#: lxc/remote.go:630 lxc/remote.go:631 +#: lxc/remote.go:631 lxc/remote.go:632 msgid "Show the default remote" msgstr "" @@ -5203,22 +5198,22 @@ msgstr "" msgid "Stopping the instance failed: %s" msgstr "" -#: lxc/storage_bucket.go:161 +#: lxc/storage_bucket.go:166 #, c-format msgid "Storage bucket %s created" msgstr "" -#: lxc/storage_bucket.go:228 +#: lxc/storage_bucket.go:233 #, c-format msgid "Storage bucket %s deleted" msgstr "" -#: lxc/storage_bucket.go:907 +#: lxc/storage_bucket.go:912 #, c-format msgid "Storage bucket key %s added" msgstr "" -#: lxc/storage_bucket.go:973 +#: lxc/storage_bucket.go:978 #, c-format msgid "Storage bucket key %s removed" msgstr "" @@ -5291,7 +5286,7 @@ msgstr "" msgid "Switch the current project" msgstr "" -#: lxc/remote.go:883 lxc/remote.go:884 +#: lxc/remote.go:884 lxc/remote.go:885 msgid "Switch the default remote" msgstr "" @@ -5401,7 +5396,7 @@ msgstr "" msgid "The property %q does not exist on the instance snapshot %s/%s: %v" msgstr "" -#: lxc/network_load_balancer.go:424 +#: lxc/network_load_balancer.go:429 #, c-format msgid "The property %q does not exist on the load balancer %q: %v" msgstr "" @@ -5426,12 +5421,12 @@ msgstr "" msgid "The property %q does not exist on the network peer %q: %v" msgstr "" -#: lxc/network_zone.go:246 +#: lxc/network_zone.go:247 #, c-format msgid "The property %q does not exist on the network zone %q: %v" msgstr "" -#: lxc/network_zone.go:845 +#: lxc/network_zone.go:850 #, c-format msgid "The property %q does not exist on the network zone record %q: %v" msgstr "" @@ -5446,7 +5441,7 @@ msgstr "" msgid "The property %q does not exist on the project %q: %v" msgstr "" -#: lxc/storage_bucket.go:426 +#: lxc/storage_bucket.go:431 #, c-format msgid "The property %q does not exist on the storage bucket %q: %v" msgstr "" @@ -5498,7 +5493,7 @@ msgstr "" msgid "This LXD server is not available on the network" msgstr "" -#: lxc/main.go:293 +#: lxc/main.go:294 msgid "This client hasn't been configured to use a remote LXD server yet.\n" "As your platform can't run native Linux instances, you must connect to a remote LXD server.\n" "\n" @@ -5526,11 +5521,11 @@ msgstr "" msgid "To create a new network, use: lxc network create" msgstr "" -#: lxc/console.go:210 +#: lxc/console.go:215 msgid "To detach from the console, press: +a q" msgstr "" -#: lxc/main.go:403 +#: lxc/main.go:406 msgid "To start your first container, try: lxc launch ubuntu:24.04\n" "Or for a virtual machine: lxc launch ubuntu:24.04 --vm" msgstr "" @@ -5623,7 +5618,7 @@ msgstr "" msgid "UPLOAD DATE" msgstr "" -#: lxc/cluster.go:184 lxc/remote.go:732 +#: lxc/cluster.go:184 lxc/remote.go:733 msgid "URL" msgstr "" @@ -5631,7 +5626,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:679 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:141 lxc/profile.go:679 lxc/project.go:506 lxc/storage.go:647 lxc/storage_volume.go:1564 msgid "USED BY" msgstr "" @@ -5649,7 +5644,7 @@ msgstr "" msgid "Unable to create a temporary file: %v" msgstr "" -#: lxc/remote.go:213 lxc/remote.go:247 +#: lxc/remote.go:214 lxc/remote.go:248 msgid "Unavailable remote server" msgstr "" @@ -5668,7 +5663,7 @@ msgstr "" msgid "Unknown column shorthand char '%c' in '%s'" msgstr "" -#: lxc/console.go:159 +#: lxc/console.go:164 #, c-format msgid "Unknown console type %q" msgstr "" @@ -5728,11 +5723,11 @@ msgstr "" msgid "Unset network forward keys" msgstr "" -#: lxc/network_load_balancer.go:548 +#: lxc/network_load_balancer.go:553 msgid "Unset network load balancer configuration keys" msgstr "" -#: lxc/network_load_balancer.go:549 +#: lxc/network_load_balancer.go:554 msgid "Unset network load balancer keys" msgstr "" @@ -5744,11 +5739,11 @@ msgstr "" msgid "Unset network peer keys" msgstr "" -#: lxc/network_zone.go:433 lxc/network_zone.go:434 +#: lxc/network_zone.go:438 lxc/network_zone.go:439 msgid "Unset network zone configuration keys" msgstr "" -#: lxc/network_zone.go:1027 lxc/network_zone.go:1028 +#: lxc/network_zone.go:1032 lxc/network_zone.go:1033 msgid "Unset network zone record configuration keys" msgstr "" @@ -5760,7 +5755,7 @@ msgstr "" msgid "Unset project configuration keys" msgstr "" -#: lxc/storage_bucket.go:692 lxc/storage_bucket.go:693 +#: lxc/storage_bucket.go:697 lxc/storage_bucket.go:698 msgid "Unset storage bucket configuration keys" msgstr "" @@ -5784,7 +5779,7 @@ msgstr "" msgid "Unset the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:552 +#: lxc/network_load_balancer.go:557 msgid "Unset the key as a network load balancer property" msgstr "" @@ -5796,11 +5791,11 @@ msgstr "" msgid "Unset the key as a network property" msgstr "" -#: lxc/network_zone.go:437 +#: lxc/network_zone.go:442 msgid "Unset the key as a network zone property" msgstr "" -#: lxc/network_zone.go:1031 +#: lxc/network_zone.go:1036 msgid "Unset the key as a network zone record property" msgstr "" @@ -5812,7 +5807,7 @@ msgstr "" msgid "Unset the key as a project property" msgstr "" -#: lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:701 msgid "Unset the key as a storage bucket property" msgstr "" @@ -5871,7 +5866,7 @@ msgstr "" msgid "Use storage driver optimized format (can only be restored on a similar pool)" msgstr "" -#: lxc/main.go:100 +#: lxc/main.go:101 msgid "Use with help or --help to view sub-commands" msgstr "" @@ -5961,7 +5956,7 @@ msgstr "" msgid "Wipe the instance root disk and re-initialize. The original image is used to re-initialize the instance if a different image or --empty is not specified." msgstr "" -#: lxc/network.go:959 lxc/operation.go:156 lxc/project.go:458 lxc/project.go:463 lxc/project.go:468 lxc/project.go:473 lxc/project.go:478 lxc/project.go:483 lxc/remote.go:693 lxc/remote.go:698 lxc/remote.go:703 +#: lxc/network.go:959 lxc/operation.go:156 lxc/project.go:458 lxc/project.go:463 lxc/project.go:468 lxc/project.go:473 lxc/project.go:478 lxc/project.go:483 lxc/remote.go:694 lxc/remote.go:699 lxc/remote.go:704 msgid "YES" msgstr "" @@ -5993,7 +5988,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:630 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:83 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 "" @@ -6053,19 +6048,19 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:154 lxc/network_zone.go:463 lxc/network_zone.go:581 +#: lxc/network_zone.go:155 lxc/network_zone.go:468 lxc/network_zone.go:586 msgid "[:]" msgstr "" -#: lxc/network_zone.go:209 lxc/network_zone.go:432 +#: lxc/network_zone.go:210 lxc/network_zone.go:437 msgid "[:] " msgstr "" -#: lxc/network_zone.go:352 +#: lxc/network_zone.go:357 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:269 +#: lxc/network_zone.go:270 msgid "[:] [key=value...]" msgstr "" @@ -6297,27 +6292,27 @@ msgstr "" msgid "[:] =..." msgstr "" -#: lxc/network_forward.go:169 lxc/network_forward.go:574 lxc/network_forward.go:715 lxc/network_load_balancer.go:171 lxc/network_load_balancer.go:577 lxc/network_load_balancer.go:719 +#: lxc/network_forward.go:169 lxc/network_forward.go:574 lxc/network_forward.go:715 lxc/network_load_balancer.go:171 lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:724 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:860 +#: lxc/network_load_balancer.go:865 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:796 +#: lxc/network_load_balancer.go:801 msgid "[:] []" msgstr "" -#: lxc/network_forward.go:377 lxc/network_forward.go:544 lxc/network_load_balancer.go:381 lxc/network_load_balancer.go:547 +#: lxc/network_forward.go:377 lxc/network_forward.go:544 lxc/network_load_balancer.go:386 lxc/network_load_balancer.go:552 msgid "[:] " msgstr "" -#: lxc/network_forward.go:446 lxc/network_load_balancer.go:449 +#: lxc/network_forward.go:446 lxc/network_load_balancer.go:454 msgid "[:] =..." msgstr "" -#: lxc/network_load_balancer.go:961 +#: lxc/network_load_balancer.go:966 msgid "[:] [,...]" msgstr "" @@ -6325,7 +6320,7 @@ msgstr "" msgid "[:] []" msgstr "" -#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1022 +#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1027 msgid "[:] [] []" msgstr "" @@ -6373,7 +6368,7 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/storage.go:167 lxc/storage.go:218 lxc/storage.go:412 lxc/storage.go:759 lxc/storage_bucket.go:449 +#: lxc/storage.go:167 lxc/storage.go:218 lxc/storage.go:412 lxc/storage.go:759 lxc/storage_bucket.go:454 msgid "[:]" msgstr "" @@ -6381,15 +6376,15 @@ msgstr "" msgid "[:] []" msgstr "" -#: lxc/storage_bucket.go:180 lxc/storage_bucket.go:242 lxc/storage_bucket.go:622 lxc/storage_bucket.go:764 +#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:247 lxc/storage_bucket.go:627 lxc/storage_bucket.go:769 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:375 lxc/storage_bucket.go:691 lxc/storage_bucket.go:845 lxc/storage_bucket.go:923 lxc/storage_bucket.go:987 lxc/storage_bucket.go:1122 +#: lxc/storage_bucket.go:380 lxc/storage_bucket.go:696 lxc/storage_bucket.go:850 lxc/storage_bucket.go:928 lxc/storage_bucket.go:992 lxc/storage_bucket.go:1127 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:528 +#: lxc/storage_bucket.go:533 msgid "[:] =..." msgstr "" @@ -6529,27 +6524,27 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:686 +#: lxc/network_zone.go:691 msgid "[:]" msgstr "" -#: lxc/network_zone.go:757 lxc/network_zone.go:1056 lxc/network_zone.go:1173 +#: lxc/network_zone.go:762 lxc/network_zone.go:1061 lxc/network_zone.go:1178 msgid "[:] " msgstr "" -#: lxc/network_zone.go:809 lxc/network_zone.go:1026 +#: lxc/network_zone.go:814 lxc/network_zone.go:1031 msgid "[:] " msgstr "" -#: lxc/network_zone.go:950 +#: lxc/network_zone.go:955 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:1238 lxc/network_zone.go:1284 +#: lxc/network_zone.go:1243 lxc/network_zone.go:1289 msgid "[:] " msgstr "" -#: lxc/network_zone.go:868 +#: lxc/network_zone.go:873 msgid "[:] [key=value...]" msgstr "" @@ -6573,7 +6568,7 @@ msgstr "" msgid "[:][] [...]" msgstr "" -#: lxc/remote.go:88 +#: lxc/remote.go:89 msgid "[] " msgstr "" @@ -6581,7 +6576,7 @@ msgstr "" msgid "[[:]]" msgstr "" -#: lxc/project.go:488 lxc/remote.go:722 +#: lxc/project.go:488 lxc/remote.go:723 msgid "current" msgstr "" @@ -6799,6 +6794,20 @@ msgid "lxc network create foo\n" " Create a new OVN network called bar using baz as its uplink network" msgstr "" +#: lxc/network_load_balancer.go:239 +msgid "lxc network load-balancer create n1 127.0.0.1\n" + "\n" + "lxc network load-balancer create n1 127.0.0.1 < config.yaml\n" + " Create network load-balancer for network n1 with configuration from config.yaml" +msgstr "" + +#: lxc/network_zone.go:273 +msgid "lxc network zone create z1\n" + "\n" + "lxc network zone create z1 < config.yaml\n" + " Create network zone z1 with configuration from config.yaml" +msgstr "" + #: lxc/operation.go:195 msgid "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n" " Show details on that operation UUID" @@ -6858,22 +6867,30 @@ msgid "lxc snapshot u1 snap0\n" " Restore the snapshot." msgstr "" -#: lxc/storage_bucket.go:245 +#: lxc/storage_bucket.go:84 +msgid "lxc storage bucket create p1 b01\n" + " Create a new storage bucket name b01 in storage pool p1\n" + "\n" + "lxc storage bucket create p1 b01 < config.yaml\n" + " Create a new storage bucket name b01 in storage pool p1 using the content of config.yaml" +msgstr "" + +#: lxc/storage_bucket.go:250 msgid "lxc storage bucket edit [:] < bucket.yaml\n" " Update a storage bucket using the content of bucket.yaml." msgstr "" -#: lxc/storage_bucket.go:990 +#: lxc/storage_bucket.go:995 msgid "lxc storage bucket edit [:] < key.yaml\n" " Update a storage bucket key using the content of key.yaml." msgstr "" -#: lxc/storage_bucket.go:1125 +#: lxc/storage_bucket.go:1130 msgid "lxc storage bucket key show default data foo\n" " Will show the properties of a bucket key called \"foo\" for a bucket called \"data\" in the \"default\" pool." msgstr "" -#: lxc/storage_bucket.go:625 +#: lxc/storage_bucket.go:630 msgid "lxc storage bucket show default data\n" " Will show the properties of a bucket called \"data\" in the \"default\" pool." msgstr "" @@ -6888,7 +6905,7 @@ msgid "lxc storage volume import default backup0.tar.gz\n" " Create a new custom volume using backup0.tar.gz as the source." msgstr "" -#: lxc/remote.go:459 +#: lxc/remote.go:460 msgid "n" msgstr "" @@ -6900,7 +6917,7 @@ msgstr "" msgid "no" msgstr "" -#: lxc/remote.go:452 +#: lxc/remote.go:453 msgid "ok (y/n/[fingerprint])?" msgstr "" @@ -6937,7 +6954,7 @@ msgstr "" msgid "used by" msgstr "" -#: lxc/remote.go:461 +#: lxc/remote.go:462 msgid "y" msgstr "" diff --git a/po/mr.po b/po/mr.po index c3202574c269..7a103950c2ac 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-08-20 09:31+0100\n" +"POT-Creation-Date: 2024-08-30 09:27+0100\n" "PO-Revision-Date: 2022-03-10 15:10+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Marathi " msgstr "" -#: lxc/remote.go:825 lxc/remote.go:882 +#: lxc/remote.go:826 lxc/remote.go:883 msgid "" msgstr "" -#: lxc/remote.go:922 +#: lxc/remote.go:923 msgid " " msgstr "" -#: lxc/remote.go:752 +#: lxc/remote.go:753 msgid " " msgstr "" @@ -556,7 +556,7 @@ msgstr "" msgid "ARCHITECTURE" msgstr "" -#: lxc/remote.go:734 +#: lxc/remote.go:735 msgid "AUTH TYPE" msgstr "" @@ -564,15 +564,15 @@ msgstr "" msgid "AUTHENTICATION METHOD" msgstr "" -#: lxc/remote.go:100 +#: lxc/remote.go:101 msgid "Accept certificate" msgstr "" -#: lxc/storage_bucket.go:852 +#: lxc/storage_bucket.go:857 msgid "Access key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:908 +#: lxc/storage_bucket.go:913 #, c-format msgid "Access key: %s" msgstr "" @@ -606,19 +606,19 @@ msgstr "" msgid "Add a group to an identity provider group" msgstr "" -#: lxc/network_zone.go:1239 +#: lxc/network_zone.go:1244 msgid "Add a network zone record entry" msgstr "" -#: lxc/network_load_balancer.go:798 +#: lxc/network_load_balancer.go:803 msgid "Add backend to a load balancer" msgstr "" -#: lxc/network_load_balancer.go:797 +#: lxc/network_load_balancer.go:802 msgid "Add backends to a load balancer" msgstr "" -#: lxc/network_zone.go:1240 +#: lxc/network_zone.go:1245 msgid "Add entries to a network zone record" msgstr "" @@ -634,11 +634,11 @@ msgstr "" msgid "Add new aliases" msgstr "" -#: lxc/remote.go:89 +#: lxc/remote.go:90 msgid "Add new remote servers" msgstr "" -#: lxc/remote.go:90 +#: lxc/remote.go:91 msgid "" "Add new remote servers\n" "\n" @@ -679,7 +679,7 @@ msgstr "" msgid "Add ports to a forward" msgstr "" -#: lxc/network_load_balancer.go:962 lxc/network_load_balancer.go:963 +#: lxc/network_load_balancer.go:967 lxc/network_load_balancer.go:968 msgid "Add ports to a load balancer" msgstr "" @@ -700,17 +700,17 @@ msgstr "" msgid "Address: %s" msgstr "" -#: lxc/storage_bucket.go:164 +#: lxc/storage_bucket.go:169 #, c-format msgid "Admin access key: %s" msgstr "" -#: lxc/remote.go:566 +#: lxc/remote.go:567 #, c-format msgid "Admin password (or token) for %s:" msgstr "" -#: lxc/storage_bucket.go:165 +#: lxc/storage_bucket.go:170 #, c-format msgid "Admin secret key: %s" msgstr "" @@ -742,7 +742,7 @@ msgstr "" msgid "All projects" msgstr "" -#: lxc/remote.go:181 +#: lxc/remote.go:182 msgid "All server addresses are unavailable" msgstr "" @@ -765,7 +765,7 @@ msgstr "" msgid "Are you sure you want to %s cluster member %q? (yes/no) [default=no]: " msgstr "" -#: lxc/console.go:383 +#: lxc/console.go:388 msgid "As neither could be found, the raw SPICE socket can be found at:" msgstr "" @@ -813,7 +813,7 @@ msgid "" "as well as retrieve past log entries from it." msgstr "" -#: lxc/remote.go:548 +#: lxc/remote.go:549 #, c-format msgid "Authentication type '%s' not supported by server" msgstr "" @@ -832,11 +832,11 @@ msgstr "" msgid "Auto update: %s" msgstr "" -#: lxc/network_forward.go:240 lxc/network_load_balancer.go:242 +#: lxc/network_forward.go:240 lxc/network_load_balancer.go:247 msgid "Auto-allocate an IPv4 or IPv6 listen address. One of 'ipv4', 'ipv6'." msgstr "" -#: lxc/remote.go:136 +#: lxc/remote.go:137 msgid "Available projects:" msgstr "" @@ -868,8 +868,8 @@ msgid "Bad device override syntax, expecting ,=: %s" msgstr "" #: lxc/network.go:333 lxc/network_acl.go:382 lxc/network_forward.go:293 -#: lxc/network_load_balancer.go:296 lxc/network_peer.go:280 -#: lxc/network_zone.go:324 lxc/network_zone.go:922 lxc/storage_bucket.go:136 +#: lxc/network_load_balancer.go:301 lxc/network_peer.go:280 +#: lxc/network_zone.go:329 lxc/network_zone.go:927 lxc/storage_bucket.go:141 #, c-format msgid "Bad key/value pair: %s" msgstr "" @@ -991,7 +991,7 @@ msgstr "" msgid "Can't read from stdin: %w" msgstr "" -#: lxc/remote.go:861 +#: lxc/remote.go:862 msgid "Can't remove the default remote" msgstr "" @@ -1057,15 +1057,14 @@ msgstr "" msgid "Certificate add token for %s deleted" msgstr "" -#: lxc/remote.go:218 -#, c-format -msgid "" -"Certificate fingerprint mismatch between certificate token and server %q" +#: lxc/remote.go:452 +msgid "Certificate fingerprint" msgstr "" -#: lxc/remote.go:451 +#: lxc/remote.go:219 #, c-format -msgid "Certificate fingerprint: %s" +msgid "" +"Certificate fingerprint mismatch between certificate token and server %q" msgstr "" #: lxc/network.go:893 @@ -1077,7 +1076,7 @@ msgstr "" msgid "Client %s certificate add token:" msgstr "" -#: lxc/remote.go:603 +#: lxc/remote.go:604 msgid "Client certificate now trusted by server:" msgstr "" @@ -1139,18 +1138,18 @@ msgstr "" #: lxc/network_forward.go:456 lxc/network_forward.go:579 #: lxc/network_forward.go:721 lxc/network_forward.go:798 #: lxc/network_forward.go:864 lxc/network_load_balancer.go:176 -#: lxc/network_load_balancer.go:241 lxc/network_load_balancer.go:459 -#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:725 -#: lxc/network_load_balancer.go:801 lxc/network_load_balancer.go:865 -#: lxc/network_load_balancer.go:966 lxc/network_load_balancer.go:1028 +#: lxc/network_load_balancer.go:246 lxc/network_load_balancer.go:464 +#: lxc/network_load_balancer.go:587 lxc/network_load_balancer.go:730 +#: lxc/network_load_balancer.go:806 lxc/network_load_balancer.go:870 +#: lxc/network_load_balancer.go:971 lxc/network_load_balancer.go:1033 #: lxc/storage.go:99 lxc/storage.go:347 lxc/storage.go:418 lxc/storage.go:671 -#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:85 -#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:248 -#: lxc/storage_bucket.go:379 lxc/storage_bucket.go:536 -#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:695 -#: lxc/storage_bucket.go:770 lxc/storage_bucket.go:850 -#: lxc/storage_bucket.go:928 lxc/storage_bucket.go:993 -#: lxc/storage_bucket.go:1129 lxc/storage_volume.go:358 +#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:90 +#: lxc/storage_bucket.go:190 lxc/storage_bucket.go:253 +#: lxc/storage_bucket.go:384 lxc/storage_bucket.go:541 +#: lxc/storage_bucket.go:634 lxc/storage_bucket.go:700 +#: lxc/storage_bucket.go:775 lxc/storage_bucket.go:855 +#: lxc/storage_bucket.go:933 lxc/storage_bucket.go:998 +#: lxc/storage_bucket.go:1134 lxc/storage_volume.go:358 #: lxc/storage_volume.go:560 lxc/storage_volume.go:639 #: lxc/storage_volume.go:883 lxc/storage_volume.go:1097 #: lxc/storage_volume.go:1210 lxc/storage_volume.go:1678 @@ -1178,11 +1177,11 @@ msgstr "" msgid "Columns" msgstr "" -#: lxc/main.go:81 +#: lxc/main.go:82 msgid "Command line client for LXD" msgstr "" -#: lxc/main.go:82 +#: lxc/main.go:83 msgid "" "Command line client for LXD\n" "\n" @@ -1214,19 +1213,15 @@ msgstr "" #: lxc/config.go:347 lxc/config.go:1277 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/network_load_balancer.go:694 lxc/network_peer.go:610 +#: lxc/network_zone.go:556 lxc/network_zone.go:1148 lxc/profile.go:538 +#: lxc/project.go:315 lxc/storage.go:310 lxc/storage_bucket.go:348 +#: lxc/storage_bucket.go:1097 lxc/storage_volume.go:1016 #: lxc/storage_volume.go:1048 #, c-format msgid "Config parsing error: %s" msgstr "" -#: lxc/console.go:140 -msgid "Console log:" -msgstr "" - #: lxc/storage_volume.go:561 msgid "Content type, block or filesystem" msgstr "" @@ -1329,12 +1324,12 @@ msgstr "" msgid "Cores:" msgstr "" -#: lxc/remote.go:486 +#: lxc/remote.go:487 #, c-format msgid "Could not close server cert file %q: %w" msgstr "" -#: lxc/remote.go:224 lxc/remote.go:470 +#: lxc/remote.go:225 lxc/remote.go:471 msgid "Could not create server cert dir" msgstr "" @@ -1373,12 +1368,12 @@ msgstr "" msgid "Could not write new remote certificate for remote '%s' with error: %v" msgstr "" -#: lxc/remote.go:481 +#: lxc/remote.go:482 #, c-format msgid "Could not write server cert file %q: %w" msgstr "" -#: lxc/network_zone.go:1327 +#: lxc/network_zone.go:1332 msgid "Couldn't find a matching entry" msgstr "" @@ -1430,7 +1425,7 @@ msgstr "" msgid "Create instances from images" msgstr "" -#: lxc/storage_bucket.go:846 lxc/storage_bucket.go:847 +#: lxc/storage_bucket.go:851 lxc/storage_bucket.go:852 msgid "Create key for a storage bucket" msgstr "" @@ -1462,11 +1457,11 @@ msgstr "" msgid "Create new network peering" msgstr "" -#: lxc/network_zone.go:869 lxc/network_zone.go:870 +#: lxc/network_zone.go:874 lxc/network_zone.go:875 msgid "Create new network zone record" msgstr "" -#: lxc/network_zone.go:270 lxc/network_zone.go:271 +#: lxc/network_zone.go:271 lxc/network_zone.go:272 msgid "Create new network zones" msgstr "" @@ -1517,9 +1512,9 @@ msgstr "" #: 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/network_zone.go:140 lxc/network_zone.go:747 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_bucket.go:512 lxc/storage_bucket.go:832 #: lxc/storage_volume.go:1562 msgid "DESCRIPTION" msgstr "" @@ -1584,7 +1579,7 @@ msgstr "" msgid "Delete instances and snapshots" msgstr "" -#: lxc/storage_bucket.go:924 lxc/storage_bucket.go:925 +#: lxc/storage_bucket.go:929 lxc/storage_bucket.go:930 msgid "Delete key from a storage bucket" msgstr "" @@ -1596,7 +1591,7 @@ msgstr "" msgid "Delete network forwards" msgstr "" -#: lxc/network_load_balancer.go:721 lxc/network_load_balancer.go:722 +#: lxc/network_load_balancer.go:726 lxc/network_load_balancer.go:727 msgid "Delete network load balancers" msgstr "" @@ -1604,11 +1599,11 @@ msgstr "" msgid "Delete network peerings" msgstr "" -#: lxc/network_zone.go:1175 lxc/network_zone.go:1176 +#: lxc/network_zone.go:1180 lxc/network_zone.go:1181 msgid "Delete network zone record" msgstr "" -#: lxc/network_zone.go:583 lxc/network_zone.go:584 +#: lxc/network_zone.go:588 lxc/network_zone.go:589 msgid "Delete network zones" msgstr "" @@ -1624,7 +1619,7 @@ msgstr "" msgid "Delete projects" msgstr "" -#: lxc/storage_bucket.go:182 lxc/storage_bucket.go:183 +#: lxc/storage_bucket.go:187 lxc/storage_bucket.go:188 msgid "Delete storage buckets" msgstr "" @@ -1680,7 +1675,7 @@ msgstr "" #: 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/info.go:32 lxc/init.go:43 lxc/launch.go:24 lxc/list.go:48 lxc/main.go:83 #: 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 @@ -1699,22 +1694,22 @@ msgstr "" #: 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_load_balancer.go:238 lxc/network_load_balancer.go:388 +#: lxc/network_load_balancer.go:456 lxc/network_load_balancer.go:554 +#: lxc/network_load_balancer.go:584 lxc/network_load_balancer.go:727 +#: lxc/network_load_balancer.go:788 lxc/network_load_balancer.go:803 +#: lxc/network_load_balancer.go:867 lxc/network_load_balancer.go:953 +#: lxc/network_load_balancer.go:968 lxc/network_load_balancer.go:1029 #: 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/network_zone.go:29 lxc/network_zone.go:86 lxc/network_zone.go:157 +#: lxc/network_zone.go:212 lxc/network_zone.go:272 lxc/network_zone.go:359 +#: lxc/network_zone.go:439 lxc/network_zone.go:470 lxc/network_zone.go:589 +#: lxc/network_zone.go:637 lxc/network_zone.go:694 lxc/network_zone.go:764 +#: lxc/network_zone.go:816 lxc/network_zone.go:875 lxc/network_zone.go:957 +#: lxc/network_zone.go:1033 lxc/network_zone.go:1063 lxc/network_zone.go:1181 +#: lxc/network_zone.go:1230 lxc/network_zone.go:1245 lxc/network_zone.go:1291 #: 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 @@ -1723,19 +1718,19 @@ msgstr "" #: 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:631 lxc/remote.go:669 lxc/remote.go:755 lxc/remote.go:828 -#: lxc/remote.go:884 lxc/remote.go:924 lxc/rename.go:21 lxc/restore.go:24 +#: lxc/query.go:34 lxc/rebuild.go:27 lxc/remote.go:35 lxc/remote.go:91 +#: lxc/remote.go:632 lxc/remote.go:670 lxc/remote.go:756 lxc/remote.go:829 +#: lxc/remote.go:885 lxc/remote.go:925 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_bucket.go:29 lxc/storage_bucket.go:83 lxc/storage_bucket.go:188 +#: lxc/storage_bucket.go:249 lxc/storage_bucket.go:382 +#: lxc/storage_bucket.go:458 lxc/storage_bucket.go:535 +#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:698 +#: lxc/storage_bucket.go:732 lxc/storage_bucket.go:773 +#: lxc/storage_bucket.go:852 lxc/storage_bucket.go:930 +#: lxc/storage_bucket.go:994 lxc/storage_bucket.go:1129 #: 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 @@ -1871,7 +1866,7 @@ msgstr "" msgid "Don't require user confirmation for using --force" msgstr "" -#: lxc/main.go:99 +#: lxc/main.go:100 msgid "Don't show progress information" msgstr "" @@ -1884,7 +1879,7 @@ msgstr "" msgid "Driver: %v (%v)" msgstr "" -#: lxc/network_zone.go:743 +#: lxc/network_zone.go:748 msgid "ENTRIES" msgstr "" @@ -1962,7 +1957,7 @@ msgstr "" msgid "Edit network forward configurations as YAML" msgstr "" -#: lxc/network_load_balancer.go:578 lxc/network_load_balancer.go:579 +#: lxc/network_load_balancer.go:583 lxc/network_load_balancer.go:584 msgid "Edit network load balancer configurations as YAML" msgstr "" @@ -1970,11 +1965,11 @@ msgstr "" msgid "Edit network peer configurations as YAML" msgstr "" -#: lxc/network_zone.go:464 lxc/network_zone.go:465 +#: lxc/network_zone.go:469 lxc/network_zone.go:470 msgid "Edit network zone configurations as YAML" msgstr "" -#: lxc/network_zone.go:1057 lxc/network_zone.go:1058 +#: lxc/network_zone.go:1062 lxc/network_zone.go:1063 msgid "Edit network zone record configurations as YAML" msgstr "" @@ -1986,11 +1981,11 @@ msgstr "" msgid "Edit project configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:243 lxc/storage_bucket.go:244 +#: lxc/storage_bucket.go:248 lxc/storage_bucket.go:249 msgid "Edit storage bucket configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:988 lxc/storage_bucket.go:989 +#: lxc/storage_bucket.go:993 lxc/storage_bucket.go:994 msgid "Edit storage bucket key as YAML" msgstr "" @@ -2031,7 +2026,7 @@ msgid "" " for the address if not yet set." msgstr "" -#: lxc/network_zone.go:1242 +#: lxc/network_zone.go:1247 msgid "Entry TTL" msgstr "" @@ -2060,9 +2055,9 @@ msgstr "" #: lxc/cluster.go:414 lxc/config.go:624 lxc/config.go:656 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/network_load_balancer.go:527 lxc/network_peer.go:463 +#: lxc/network_zone.go:414 lxc/network_zone.go:1008 lxc/profile.go:876 +#: lxc/project.go:634 lxc/storage.go:727 lxc/storage_bucket.go:602 #: lxc/storage_volume.go:1947 lxc/storage_volume.go:1985 #, c-format msgid "Error setting properties: %v" @@ -2074,10 +2069,10 @@ 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/network_forward.go:513 lxc/network_load_balancer.go:521 +#: lxc/network_peer.go:457 lxc/network_zone.go:408 lxc/network_zone.go:1002 #: lxc/profile.go:870 lxc/project.go:628 lxc/storage.go:721 -#: lxc/storage_bucket.go:591 lxc/storage_volume.go:1941 +#: lxc/storage_bucket.go:596 lxc/storage_volume.go:1941 #: lxc/storage_volume.go:1979 #, c-format msgid "Error unsetting property: %v" @@ -2263,7 +2258,7 @@ msgstr "" msgid "Failed parsing SSH host key: %w" msgstr "" -#: lxc/console.go:361 +#: lxc/console.go:366 #, c-format msgid "Failed starting command: %w" msgstr "" @@ -2278,11 +2273,11 @@ msgstr "" msgid "Failed to accept incoming connection: %w" msgstr "" -#: lxc/remote.go:190 +#: lxc/remote.go:191 msgid "Failed to add remote" msgstr "" -#: lxc/remote.go:241 +#: lxc/remote.go:242 #, c-format msgid "Failed to close server cert file %q: %w" msgstr "" @@ -2292,7 +2287,7 @@ msgstr "" msgid "Failed to connect to cluster member: %w" msgstr "" -#: lxc/remote.go:231 +#: lxc/remote.go:232 #, c-format msgid "Failed to create %q: %w" msgstr "" @@ -2302,12 +2297,12 @@ msgstr "" msgid "Failed to create alias %s: %w" msgstr "" -#: lxc/remote.go:256 +#: lxc/remote.go:257 #, c-format msgid "Failed to create certificate: %w" msgstr "" -#: lxc/remote.go:263 +#: lxc/remote.go:264 #, c-format msgid "Failed to find project: %w" msgstr "" @@ -2332,7 +2327,7 @@ msgstr "" msgid "Failed to walk path for %s: %s" msgstr "" -#: lxc/remote.go:236 +#: lxc/remote.go:237 #, c-format msgid "Failed to write server cert file %q: %w" msgstr "" @@ -2341,7 +2336,7 @@ msgstr "" msgid "Fast mode (same as --columns=nsacPt)" msgstr "" -#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:115 +#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:116 #: lxc/operation.go:136 msgid "Filtering isn't supported yet" msgstr "" @@ -2379,7 +2374,7 @@ msgstr "" msgid "Force the removal of running instances" msgstr "" -#: lxc/main.go:95 +#: lxc/main.go:96 msgid "Force using the local unix socket" msgstr "" @@ -2413,10 +2408,10 @@ msgstr "" #: 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/network_peer.go:84 lxc/network_zone.go:89 lxc/network_zone.go:697 #: lxc/operation.go:108 lxc/profile.go:637 lxc/project.go:412 -#: lxc/project.go:804 lxc/remote.go:673 lxc/storage.go:588 -#: lxc/storage_bucket.go:454 lxc/storage_bucket.go:769 +#: lxc/project.go:804 lxc/remote.go:674 lxc/storage.go:588 +#: lxc/storage_bucket.go:459 lxc/storage_bucket.go:774 #: lxc/storage_volume.go:1446 lxc/warning.go:93 msgid "Format (csv|json|table|yaml|compact)" msgstr "" @@ -2453,7 +2448,7 @@ msgstr "" msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)" msgstr "" -#: lxc/remote.go:737 +#: lxc/remote.go:738 msgid "GLOBAL" msgstr "" @@ -2473,7 +2468,7 @@ msgstr "" msgid "Generate manpages for all commands" msgstr "" -#: lxc/remote.go:159 lxc/remote.go:397 +#: lxc/remote.go:160 lxc/remote.go:398 msgid "Generating a client certificate. This may take a minute..." msgstr "" @@ -2505,7 +2500,7 @@ msgstr "" msgid "Get the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:386 +#: lxc/network_load_balancer.go:391 msgid "Get the key as a network load balancer property" msgstr "" @@ -2517,11 +2512,11 @@ msgstr "" msgid "Get the key as a network property" msgstr "" -#: lxc/network_zone.go:214 +#: lxc/network_zone.go:215 msgid "Get the key as a network zone property" msgstr "" -#: lxc/network_zone.go:814 +#: lxc/network_zone.go:819 msgid "Get the key as a network zone record property" msgstr "" @@ -2533,7 +2528,7 @@ msgstr "" msgid "Get the key as a project property" msgstr "" -#: lxc/storage_bucket.go:380 +#: lxc/storage_bucket.go:385 msgid "Get the key as a storage bucket property" msgstr "" @@ -2573,7 +2568,7 @@ msgstr "" msgid "Get values for network forward configuration keys" msgstr "" -#: lxc/network_load_balancer.go:382 lxc/network_load_balancer.go:383 +#: lxc/network_load_balancer.go:387 lxc/network_load_balancer.go:388 msgid "Get values for network load balancer configuration keys" msgstr "" @@ -2581,11 +2576,11 @@ msgstr "" msgid "Get values for network peer configuration keys" msgstr "" -#: lxc/network_zone.go:210 lxc/network_zone.go:211 +#: lxc/network_zone.go:211 lxc/network_zone.go:212 msgid "Get values for network zone configuration keys" msgstr "" -#: lxc/network_zone.go:810 lxc/network_zone.go:811 +#: lxc/network_zone.go:815 lxc/network_zone.go:816 msgid "Get values for network zone record configuration keys" msgstr "" @@ -2597,7 +2592,7 @@ msgstr "" msgid "Get values for project configuration keys" msgstr "" -#: lxc/storage_bucket.go:376 lxc/storage_bucket.go:377 +#: lxc/storage_bucket.go:381 lxc/storage_bucket.go:382 msgid "Get values for storage bucket configuration keys" msgstr "" @@ -2737,7 +2732,7 @@ msgstr "" msgid "If the snapshot name already exists, delete and create a new one" msgstr "" -#: lxc/main.go:398 +#: lxc/main.go:400 msgid "" "If this is your first time running LXD on this machine, you should also run: " "lxd init" @@ -2894,7 +2889,7 @@ msgstr "" msgid "Instance type" msgstr "" -#: lxc/remote.go:349 +#: lxc/remote.go:350 #, c-format msgid "Invalid URL scheme \"%s\" in \"%s\"" msgstr "" @@ -2966,7 +2961,7 @@ msgstr "" msgid "Invalid new snapshot name, parent volume must be the same as source" msgstr "" -#: lxc/main.go:498 +#: lxc/main.go:502 msgid "Invalid number of arguments" msgstr "" @@ -2975,7 +2970,7 @@ msgstr "" msgid "Invalid path %s" msgstr "" -#: lxc/remote.go:338 +#: lxc/remote.go:339 #, c-format msgid "Invalid protocol: %s" msgstr "" @@ -3023,7 +3018,7 @@ msgstr "" #: lxc/list.go:597 lxc/network.go:1059 lxc/network_forward.go:155 #: lxc/network_load_balancer.go:157 lxc/operation.go:177 -#: lxc/storage_bucket.go:511 lxc/storage_volume.go:1569 lxc/warning.go:220 +#: lxc/storage_bucket.go:516 lxc/storage_volume.go:1569 lxc/warning.go:220 msgid "LOCATION" msgstr "" @@ -3031,7 +3026,7 @@ msgstr "" msgid "LXD - Command line client" msgstr "" -#: lxc/console.go:382 +#: lxc/console.go:387 msgid "LXD automatically uses either spicy or remote-viewer when present." msgstr "" @@ -3121,15 +3116,15 @@ msgstr "" msgid "List available network peers" msgstr "" -#: lxc/network_zone.go:85 +#: lxc/network_zone.go:86 msgid "List available network zone" msgstr "" -#: lxc/network_zone.go:688 lxc/network_zone.go:689 +#: lxc/network_zone.go:693 lxc/network_zone.go:694 msgid "List available network zone records" msgstr "" -#: lxc/network_zone.go:84 +#: lxc/network_zone.go:85 msgid "List available network zoneS" msgstr "" @@ -3318,11 +3313,11 @@ msgstr "" msgid "List projects" msgstr "" -#: lxc/storage_bucket.go:766 lxc/storage_bucket.go:768 +#: lxc/storage_bucket.go:771 lxc/storage_bucket.go:773 msgid "List storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:451 lxc/storage_bucket.go:453 +#: lxc/storage_bucket.go:456 lxc/storage_bucket.go:458 msgid "List storage buckets" msgstr "" @@ -3350,7 +3345,7 @@ msgid "" " U - Current disk usage" msgstr "" -#: lxc/remote.go:668 lxc/remote.go:669 +#: lxc/remote.go:669 lxc/remote.go:670 msgid "List the available remotes" msgstr "" @@ -3577,11 +3572,11 @@ msgstr "" msgid "Manage network forwards" msgstr "" -#: lxc/network_load_balancer.go:782 lxc/network_load_balancer.go:783 +#: lxc/network_load_balancer.go:787 lxc/network_load_balancer.go:788 msgid "Manage network load balancer backends" msgstr "" -#: lxc/network_load_balancer.go:947 lxc/network_load_balancer.go:948 +#: lxc/network_load_balancer.go:952 lxc/network_load_balancer.go:953 msgid "Manage network load balancer ports" msgstr "" @@ -3593,15 +3588,15 @@ msgstr "" msgid "Manage network peerings" msgstr "" -#: lxc/network_zone.go:1224 lxc/network_zone.go:1225 +#: lxc/network_zone.go:1229 lxc/network_zone.go:1230 msgid "Manage network zone record entries" msgstr "" -#: lxc/network_zone.go:631 lxc/network_zone.go:632 +#: lxc/network_zone.go:636 lxc/network_zone.go:637 msgid "Manage network zone records" msgstr "" -#: lxc/network_zone.go:27 lxc/network_zone.go:28 +#: lxc/network_zone.go:28 lxc/network_zone.go:29 msgid "Manage network zones" msgstr "" @@ -3617,11 +3612,11 @@ msgstr "" msgid "Manage projects" msgstr "" -#: lxc/storage_bucket.go:726 +#: lxc/storage_bucket.go:731 msgid "Manage storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:727 +#: lxc/storage_bucket.go:732 msgid "Manage storage bucket keys." msgstr "" @@ -3649,7 +3644,7 @@ msgid "" "\"custom\" (user created) volumes." msgstr "" -#: lxc/remote.go:33 lxc/remote.go:34 +#: lxc/remote.go:34 lxc/remote.go:35 msgid "Manage the list of remote servers" msgstr "" @@ -3730,12 +3725,12 @@ msgid "" "Minimum level for log messages (only available when using pretty format)" msgstr "" -#: lxc/storage_bucket.go:111 lxc/storage_bucket.go:211 -#: lxc/storage_bucket.go:287 lxc/storage_bucket.go:406 -#: lxc/storage_bucket.go:563 lxc/storage_bucket.go:655 -#: lxc/storage_bucket.go:797 lxc/storage_bucket.go:878 -#: lxc/storage_bucket.go:953 lxc/storage_bucket.go:1032 -#: lxc/storage_bucket.go:1155 +#: lxc/storage_bucket.go:116 lxc/storage_bucket.go:216 +#: lxc/storage_bucket.go:292 lxc/storage_bucket.go:411 +#: lxc/storage_bucket.go:568 lxc/storage_bucket.go:660 +#: lxc/storage_bucket.go:802 lxc/storage_bucket.go:883 +#: lxc/storage_bucket.go:958 lxc/storage_bucket.go:1037 +#: lxc/storage_bucket.go:1160 msgid "Missing bucket name" msgstr "" @@ -3779,8 +3774,8 @@ msgstr "" msgid "Missing instance name" msgstr "" -#: lxc/storage_bucket.go:882 lxc/storage_bucket.go:957 -#: lxc/storage_bucket.go:1036 lxc/storage_bucket.go:1159 +#: lxc/storage_bucket.go:887 lxc/storage_bucket.go:962 +#: lxc/storage_bucket.go:1041 lxc/storage_bucket.go:1164 msgid "Missing key name" msgstr "" @@ -3788,10 +3783,10 @@ msgstr "" #: lxc/network_forward.go:481 lxc/network_forward.go:627 #: lxc/network_forward.go:746 lxc/network_forward.go:823 #: lxc/network_forward.go:889 lxc/network_load_balancer.go:201 -#: lxc/network_load_balancer.go:411 lxc/network_load_balancer.go:484 -#: lxc/network_load_balancer.go:630 lxc/network_load_balancer.go:750 -#: lxc/network_load_balancer.go:826 lxc/network_load_balancer.go:890 -#: lxc/network_load_balancer.go:991 lxc/network_load_balancer.go:1053 +#: lxc/network_load_balancer.go:416 lxc/network_load_balancer.go:489 +#: lxc/network_load_balancer.go:635 lxc/network_load_balancer.go:755 +#: lxc/network_load_balancer.go:831 lxc/network_load_balancer.go:895 +#: lxc/network_load_balancer.go:996 lxc/network_load_balancer.go:1058 msgid "Missing listen address" msgstr "" @@ -3816,26 +3811,26 @@ msgstr "" #: lxc/network_forward.go:477 lxc/network_forward.go:623 #: lxc/network_forward.go:742 lxc/network_forward.go:819 #: lxc/network_forward.go:885 lxc/network_load_balancer.go:123 -#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:261 -#: lxc/network_load_balancer.go:407 lxc/network_load_balancer.go:480 -#: lxc/network_load_balancer.go:626 lxc/network_load_balancer.go:746 -#: lxc/network_load_balancer.go:822 lxc/network_load_balancer.go:886 -#: lxc/network_load_balancer.go:987 lxc/network_load_balancer.go:1049 +#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:266 +#: lxc/network_load_balancer.go:412 lxc/network_load_balancer.go:485 +#: lxc/network_load_balancer.go:631 lxc/network_load_balancer.go:751 +#: lxc/network_load_balancer.go:827 lxc/network_load_balancer.go:891 +#: lxc/network_load_balancer.go:992 lxc/network_load_balancer.go:1054 #: lxc/network_peer.go:110 lxc/network_peer.go:180 lxc/network_peer.go:237 #: lxc/network_peer.go:355 lxc/network_peer.go:426 lxc/network_peer.go:556 #: lxc/network_peer.go:665 msgid "Missing network name" msgstr "" -#: lxc/network_zone.go:178 lxc/network_zone.go:234 lxc/network_zone.go:294 -#: lxc/network_zone.go:382 lxc/network_zone.go:503 lxc/network_zone.go:606 -#: lxc/network_zone.go:712 lxc/network_zone.go:780 lxc/network_zone.go:892 -#: lxc/network_zone.go:976 lxc/network_zone.go:1197 lxc/network_zone.go:1262 -#: lxc/network_zone.go:1307 +#: lxc/network_zone.go:179 lxc/network_zone.go:235 lxc/network_zone.go:299 +#: lxc/network_zone.go:387 lxc/network_zone.go:508 lxc/network_zone.go:611 +#: lxc/network_zone.go:717 lxc/network_zone.go:785 lxc/network_zone.go:897 +#: lxc/network_zone.go:981 lxc/network_zone.go:1202 lxc/network_zone.go:1267 +#: lxc/network_zone.go:1312 msgid "Missing network zone name" msgstr "" -#: lxc/network_zone.go:833 lxc/network_zone.go:1095 +#: lxc/network_zone.go:838 lxc/network_zone.go:1100 msgid "Missing network zone record name" msgstr "" @@ -3845,13 +3840,13 @@ msgid "Missing peer name" msgstr "" #: lxc/storage.go:194 lxc/storage.go:264 lxc/storage.go:370 lxc/storage.go:440 -#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:107 -#: lxc/storage_bucket.go:207 lxc/storage_bucket.go:283 -#: lxc/storage_bucket.go:402 lxc/storage_bucket.go:477 -#: lxc/storage_bucket.go:559 lxc/storage_bucket.go:651 -#: lxc/storage_bucket.go:793 lxc/storage_bucket.go:874 -#: lxc/storage_bucket.go:949 lxc/storage_bucket.go:1028 -#: lxc/storage_bucket.go:1151 lxc/storage_volume.go:189 +#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:112 +#: lxc/storage_bucket.go:212 lxc/storage_bucket.go:288 +#: lxc/storage_bucket.go:407 lxc/storage_bucket.go:482 +#: lxc/storage_bucket.go:564 lxc/storage_bucket.go:656 +#: lxc/storage_bucket.go:798 lxc/storage_bucket.go:879 +#: lxc/storage_bucket.go:954 lxc/storage_bucket.go:1033 +#: lxc/storage_bucket.go:1156 lxc/storage_volume.go:189 #: lxc/storage_volume.go:287 lxc/storage_volume.go:583 #: lxc/storage_volume.go:660 lxc/storage_volume.go:735 #: lxc/storage_volume.go:817 lxc/storage_volume.go:919 @@ -3971,7 +3966,7 @@ msgstr "" msgid "Moving the storage volume: %s" msgstr "" -#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1097 +#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1102 msgid "Multiple ports match. Use --force to remove them all" msgstr "" @@ -3990,10 +3985,10 @@ 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:677 lxc/project.go:498 -#: lxc/remote.go:731 lxc/storage.go:638 lxc/storage_bucket.go:506 -#: lxc/storage_bucket.go:826 lxc/storage_volume.go:1561 +#: lxc/network_acl.go:147 lxc/network_peer.go:139 lxc/network_zone.go:139 +#: lxc/network_zone.go:746 lxc/profile.go:677 lxc/project.go:498 +#: lxc/remote.go:732 lxc/storage.go:638 lxc/storage_bucket.go:511 +#: lxc/storage_bucket.go:831 lxc/storage_volume.go:1561 msgid "NAME" msgstr "" @@ -4019,7 +4014,7 @@ msgstr "" #: lxc/network.go:957 lxc/operation.go:154 lxc/project.go:456 #: lxc/project.go:461 lxc/project.go:466 lxc/project.go:471 lxc/project.go:476 -#: lxc/project.go:481 lxc/remote.go:691 lxc/remote.go:696 lxc/remote.go:701 +#: lxc/project.go:481 lxc/remote.go:692 lxc/remote.go:697 lxc/remote.go:702 msgid "NO" msgstr "" @@ -4046,7 +4041,7 @@ msgstr "" msgid "Name" msgstr "" -#: lxc/remote.go:141 +#: lxc/remote.go:142 msgid "Name of the project to use for this remote:" msgstr "" @@ -4095,12 +4090,12 @@ msgstr "" msgid "Network ACL %s renamed to %s" msgstr "" -#: lxc/network_zone.go:336 +#: lxc/network_zone.go:341 #, c-format msgid "Network Zone %s created" msgstr "" -#: lxc/network_zone.go:616 +#: lxc/network_zone.go:621 #, c-format msgid "Network Zone %s deleted" msgstr "" @@ -4115,12 +4110,12 @@ msgstr "" msgid "Network forward %s deleted" msgstr "" -#: lxc/network_load_balancer.go:365 +#: lxc/network_load_balancer.go:370 #, c-format msgid "Network load balancer %s created" msgstr "" -#: lxc/network_load_balancer.go:767 +#: lxc/network_load_balancer.go:772 #, c-format msgid "Network load balancer %s deleted" msgstr "" @@ -4158,12 +4153,12 @@ msgstr "" msgid "Network usage:" msgstr "" -#: lxc/network_zone.go:934 +#: lxc/network_zone.go:939 #, c-format msgid "Network zone record %s created" msgstr "" -#: lxc/network_zone.go:1207 +#: lxc/network_zone.go:1212 #, c-format msgid "Network zone record %s deleted" msgstr "" @@ -4198,11 +4193,11 @@ msgstr "" msgid "No device found for this storage volume" msgstr "" -#: lxc/network_load_balancer.go:921 +#: lxc/network_load_balancer.go:926 msgid "No matching backend found" msgstr "" -#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1108 +#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1113 msgid "No matching port(s) found" msgstr "" @@ -4248,7 +4243,7 @@ msgstr "" msgid "Only \"custom\" volumes can be snapshotted" msgstr "" -#: lxc/remote.go:332 +#: lxc/remote.go:333 msgid "Only https URLs are supported for simplestreams" msgstr "" @@ -4273,7 +4268,7 @@ msgstr "" msgid "Optimized Storage" msgstr "" -#: lxc/main.go:96 +#: lxc/main.go:97 msgid "Override the source project" msgstr "" @@ -4319,11 +4314,11 @@ msgstr "" msgid "PROJECT" msgstr "" -#: lxc/remote.go:733 +#: lxc/remote.go:734 msgid "PROTOCOL" msgstr "" -#: lxc/image.go:1073 lxc/remote.go:735 +#: lxc/image.go:1073 lxc/remote.go:736 msgid "PUBLIC" msgstr "" @@ -4339,7 +4334,7 @@ msgstr "" msgid "Partitions:" msgstr "" -#: lxc/main.go:361 +#: lxc/main.go:363 #, c-format msgid "Password for %s: " msgstr "" @@ -4352,7 +4347,7 @@ msgstr "" msgid "Perform an incremental copy" msgstr "" -#: lxc/remote.go:182 +#: lxc/remote.go:183 msgid "Please provide an alternate server address (empty to abort):" msgstr "" @@ -4364,7 +4359,7 @@ msgstr "" msgid "Please provide cluster member name: " msgstr "" -#: lxc/remote.go:462 +#: lxc/remote.go:463 msgid "Please type 'y', 'n' or the fingerprint:" msgstr "" @@ -4386,10 +4381,10 @@ msgstr "" #: lxc/config.go:1278 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/network_load_balancer.go:695 lxc/network_peer.go:611 +#: lxc/network_zone.go:557 lxc/network_zone.go:1149 lxc/profile.go:539 +#: lxc/project.go:316 lxc/storage.go:311 lxc/storage_bucket.go:349 +#: lxc/storage_bucket.go:1098 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 "" @@ -4398,7 +4393,7 @@ msgstr "" msgid "Pretty rendering (short for --format=pretty)" msgstr "" -#: lxc/main.go:94 +#: lxc/main.go:95 msgid "Print help" msgstr "" @@ -4406,7 +4401,7 @@ msgstr "" msgid "Print the raw response" msgstr "" -#: lxc/main.go:93 +#: lxc/main.go:94 msgid "Print version number" msgstr "" @@ -4495,7 +4490,7 @@ msgstr "" msgid "Project %s renamed to %s" msgstr "" -#: lxc/remote.go:106 +#: lxc/remote.go:107 msgid "Project to use for the remote" msgstr "" @@ -4593,7 +4588,7 @@ msgid "" "pool \"default\"." msgstr "" -#: lxc/remote.go:105 +#: lxc/remote.go:106 msgid "Public image server" msgstr "" @@ -4641,7 +4636,7 @@ msgstr "" msgid "RESOURCE" msgstr "" -#: lxc/storage_bucket.go:828 +#: lxc/storage_bucket.go:833 msgid "ROLE" msgstr "" @@ -4684,45 +4679,45 @@ msgstr "" msgid "Refreshing the image: %s" msgstr "" -#: lxc/remote.go:785 +#: lxc/remote.go:786 #, c-format msgid "Remote %s already exists" msgstr "" -#: lxc/project.go:769 lxc/remote.go:776 lxc/remote.go:849 lxc/remote.go:905 -#: lxc/remote.go:945 +#: lxc/project.go:769 lxc/remote.go:777 lxc/remote.go:850 lxc/remote.go:906 +#: lxc/remote.go:946 #, c-format msgid "Remote %s doesn't exist" msgstr "" -#: lxc/remote.go:301 +#: lxc/remote.go:302 #, c-format msgid "Remote %s exists as <%s>" msgstr "" -#: lxc/remote.go:857 +#: lxc/remote.go:858 #, c-format msgid "Remote %s is global and cannot be removed" msgstr "" -#: lxc/remote.go:780 lxc/remote.go:853 lxc/remote.go:949 +#: lxc/remote.go:781 lxc/remote.go:854 lxc/remote.go:950 #, c-format msgid "Remote %s is static and cannot be modified" msgstr "" -#: lxc/remote.go:290 +#: lxc/remote.go:291 msgid "Remote address must not be empty" msgstr "" -#: lxc/remote.go:101 +#: lxc/remote.go:102 msgid "Remote admin password" msgstr "" -#: lxc/remote.go:295 +#: lxc/remote.go:296 msgid "Remote names may not contain colons" msgstr "" -#: lxc/remote.go:102 +#: lxc/remote.go:103 msgid "Remote trust token" msgstr "" @@ -4748,7 +4743,7 @@ msgstr "" msgid "Remove a member from the cluster" msgstr "" -#: lxc/network_zone.go:1285 +#: lxc/network_zone.go:1290 msgid "Remove a network zone record entry" msgstr "" @@ -4756,7 +4751,7 @@ msgstr "" msgid "Remove aliases" msgstr "" -#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1025 +#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1030 msgid "Remove all ports that match" msgstr "" @@ -4764,15 +4759,15 @@ msgstr "" msgid "Remove all rules that match" msgstr "" -#: lxc/network_load_balancer.go:862 +#: lxc/network_load_balancer.go:867 msgid "Remove backend from a load balancer" msgstr "" -#: lxc/network_load_balancer.go:861 +#: lxc/network_load_balancer.go:866 msgid "Remove backends from a load balancer" msgstr "" -#: lxc/network_zone.go:1286 +#: lxc/network_zone.go:1291 msgid "Remove entries from a network zone record" msgstr "" @@ -4796,7 +4791,7 @@ msgstr "" msgid "Remove ports from a forward" msgstr "" -#: lxc/network_load_balancer.go:1023 lxc/network_load_balancer.go:1024 +#: lxc/network_load_balancer.go:1028 lxc/network_load_balancer.go:1029 msgid "Remove ports from a load balancer" msgstr "" @@ -4804,7 +4799,7 @@ msgstr "" msgid "Remove profiles from instances" msgstr "" -#: lxc/remote.go:827 lxc/remote.go:828 +#: lxc/remote.go:828 lxc/remote.go:829 msgid "Remove remotes" msgstr "" @@ -4861,7 +4856,7 @@ msgstr "" msgid "Rename projects" msgstr "" -#: lxc/remote.go:754 lxc/remote.go:755 +#: lxc/remote.go:755 lxc/remote.go:756 msgid "Rename remotes" msgstr "" @@ -4939,7 +4934,7 @@ msgid "Restrict the certificate to one or more projects" msgstr "" #: lxc/console.go:44 -msgid "Retrieve the instance's console log" +msgid "Retrieve the container's console log" msgstr "" #: lxc/init.go:347 @@ -4955,7 +4950,7 @@ msgstr "" msgid "Revoke cluster member join token" msgstr "" -#: lxc/storage_bucket.go:851 +#: lxc/storage_bucket.go:856 msgid "Role (admin or read-only)" msgstr "" @@ -5006,7 +5001,7 @@ msgstr "" msgid "STATE" msgstr "" -#: lxc/remote.go:736 +#: lxc/remote.go:737 msgid "STATIC" msgstr "" @@ -5030,11 +5025,11 @@ msgstr "" msgid "STP" msgstr "" -#: lxc/storage_bucket.go:853 +#: lxc/storage_bucket.go:858 msgid "Secret key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:909 +#: lxc/storage_bucket.go:914 #, c-format msgid "Secret key: %s" msgstr "" @@ -5043,19 +5038,19 @@ msgstr "" msgid "Send a raw query to LXD" msgstr "" -#: lxc/remote.go:104 +#: lxc/remote.go:105 msgid "Server authentication type (tls or oidc)" msgstr "" -#: lxc/remote.go:460 +#: lxc/remote.go:461 msgid "Server certificate NACKed by user" msgstr "" -#: lxc/remote.go:599 +#: lxc/remote.go:600 msgid "Server doesn't trust us after authentication" msgstr "" -#: lxc/remote.go:103 +#: lxc/remote.go:104 msgid "Server protocol (lxd or simplestreams)" msgstr "" @@ -5154,11 +5149,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_load_balancer.go:450 +#: lxc/network_load_balancer.go:455 msgid "Set network load balancer keys" msgstr "" -#: lxc/network_load_balancer.go:451 +#: lxc/network_load_balancer.go:456 msgid "" "Set network load balancer keys\n" "\n" @@ -5180,11 +5175,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:353 +#: lxc/network_zone.go:358 msgid "Set network zone configuration keys" msgstr "" -#: lxc/network_zone.go:354 +#: lxc/network_zone.go:359 msgid "" "Set network zone configuration keys\n" "\n" @@ -5193,7 +5188,7 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:951 lxc/network_zone.go:952 +#: lxc/network_zone.go:956 lxc/network_zone.go:957 msgid "Set network zone record configuration keys" msgstr "" @@ -5223,11 +5218,11 @@ msgid "" " lxc project set [:] " msgstr "" -#: lxc/storage_bucket.go:529 +#: lxc/storage_bucket.go:534 msgid "Set storage bucket configuration keys" msgstr "" -#: lxc/storage_bucket.go:530 +#: lxc/storage_bucket.go:535 msgid "" "Set storage bucket configuration keys\n" "\n" @@ -5262,7 +5257,7 @@ msgid "" " lxc storage volume set [:] [/] " msgstr "" -#: lxc/remote.go:923 lxc/remote.go:924 +#: lxc/remote.go:924 lxc/remote.go:925 msgid "Set the URL for the remote" msgstr "" @@ -5290,7 +5285,7 @@ msgstr "" msgid "Set the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:458 +#: lxc/network_load_balancer.go:463 msgid "Set the key as a network load balancer property" msgstr "" @@ -5302,11 +5297,11 @@ msgstr "" msgid "Set the key as a network property" msgstr "" -#: lxc/network_zone.go:361 +#: lxc/network_zone.go:366 msgid "Set the key as a network zone property" msgstr "" -#: lxc/network_zone.go:957 +#: lxc/network_zone.go:962 msgid "Set the key as a network zone record property" msgstr "" @@ -5318,7 +5313,7 @@ msgstr "" msgid "Set the key as a project property" msgstr "" -#: lxc/storage_bucket.go:537 +#: lxc/storage_bucket.go:542 msgid "Set the key as a storage bucket property" msgstr "" @@ -5338,11 +5333,11 @@ msgstr "" msgid "Setup SSH SFTP listener on address:port instead of mounting" msgstr "" -#: lxc/main.go:97 +#: lxc/main.go:98 msgid "Show all debug messages" msgstr "" -#: lxc/main.go:98 +#: lxc/main.go:99 msgid "Show all information messages" msgstr "" @@ -5411,7 +5406,7 @@ msgstr "" msgid "Show instance or server information" msgstr "" -#: lxc/main.go:271 lxc/main.go:272 +#: lxc/main.go:272 lxc/main.go:273 msgid "Show less common commands" msgstr "" @@ -5443,15 +5438,15 @@ msgstr "" msgid "Show network peer configurations" msgstr "" -#: lxc/network_zone.go:155 lxc/network_zone.go:156 +#: lxc/network_zone.go:156 lxc/network_zone.go:157 msgid "Show network zone configurations" msgstr "" -#: lxc/network_zone.go:758 +#: lxc/network_zone.go:763 msgid "Show network zone record configuration" msgstr "" -#: lxc/network_zone.go:759 +#: lxc/network_zone.go:764 msgid "Show network zone record configurations" msgstr "" @@ -5463,11 +5458,11 @@ msgstr "" msgid "Show project options" msgstr "" -#: lxc/storage_bucket.go:623 lxc/storage_bucket.go:624 +#: lxc/storage_bucket.go:628 lxc/storage_bucket.go:629 msgid "Show storage bucket configurations" msgstr "" -#: lxc/storage_bucket.go:1123 lxc/storage_bucket.go:1124 +#: lxc/storage_bucket.go:1128 lxc/storage_bucket.go:1129 msgid "Show storage bucket key configurations" msgstr "" @@ -5493,7 +5488,7 @@ msgid "" "that are granted via identity provider group mappings. \n" msgstr "" -#: lxc/remote.go:630 lxc/remote.go:631 +#: lxc/remote.go:631 lxc/remote.go:632 msgid "Show the default remote" msgstr "" @@ -5617,22 +5612,22 @@ msgstr "" msgid "Stopping the instance failed: %s" msgstr "" -#: lxc/storage_bucket.go:161 +#: lxc/storage_bucket.go:166 #, c-format msgid "Storage bucket %s created" msgstr "" -#: lxc/storage_bucket.go:228 +#: lxc/storage_bucket.go:233 #, c-format msgid "Storage bucket %s deleted" msgstr "" -#: lxc/storage_bucket.go:907 +#: lxc/storage_bucket.go:912 #, c-format msgid "Storage bucket key %s added" msgstr "" -#: lxc/storage_bucket.go:973 +#: lxc/storage_bucket.go:978 #, c-format msgid "Storage bucket key %s removed" msgstr "" @@ -5705,7 +5700,7 @@ msgstr "" msgid "Switch the current project" msgstr "" -#: lxc/remote.go:883 lxc/remote.go:884 +#: lxc/remote.go:884 lxc/remote.go:885 msgid "Switch the default remote" msgstr "" @@ -5820,7 +5815,7 @@ msgstr "" msgid "The property %q does not exist on the instance snapshot %s/%s: %v" msgstr "" -#: lxc/network_load_balancer.go:424 +#: lxc/network_load_balancer.go:429 #, c-format msgid "The property %q does not exist on the load balancer %q: %v" msgstr "" @@ -5845,12 +5840,12 @@ msgstr "" msgid "The property %q does not exist on the network peer %q: %v" msgstr "" -#: lxc/network_zone.go:246 +#: lxc/network_zone.go:247 #, c-format msgid "The property %q does not exist on the network zone %q: %v" msgstr "" -#: lxc/network_zone.go:845 +#: lxc/network_zone.go:850 #, c-format msgid "The property %q does not exist on the network zone record %q: %v" msgstr "" @@ -5865,7 +5860,7 @@ msgstr "" msgid "The property %q does not exist on the project %q: %v" msgstr "" -#: lxc/storage_bucket.go:426 +#: lxc/storage_bucket.go:431 #, c-format msgid "The property %q does not exist on the storage bucket %q: %v" msgstr "" @@ -5919,7 +5914,7 @@ msgstr "" msgid "This LXD server is not available on the network" msgstr "" -#: lxc/main.go:293 +#: lxc/main.go:294 msgid "" "This client hasn't been configured to use a remote LXD server yet.\n" "As your platform can't run native Linux instances, you must connect to a " @@ -5951,11 +5946,11 @@ msgstr "" msgid "To create a new network, use: lxc network create" msgstr "" -#: lxc/console.go:210 +#: lxc/console.go:215 msgid "To detach from the console, press: +a q" msgstr "" -#: lxc/main.go:403 +#: lxc/main.go:406 msgid "" "To start your first container, try: lxc launch ubuntu:24.04\n" "Or for a virtual machine: lxc launch ubuntu:24.04 --vm" @@ -6053,7 +6048,7 @@ msgstr "" msgid "UPLOAD DATE" msgstr "" -#: lxc/cluster.go:184 lxc/remote.go:732 +#: lxc/cluster.go:184 lxc/remote.go:733 msgid "URL" msgstr "" @@ -6062,7 +6057,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:679 lxc/project.go:506 +#: lxc/network_zone.go:141 lxc/profile.go:679 lxc/project.go:506 #: lxc/storage.go:647 lxc/storage_volume.go:1564 msgid "USED BY" msgstr "" @@ -6081,7 +6076,7 @@ msgstr "" msgid "Unable to create a temporary file: %v" msgstr "" -#: lxc/remote.go:213 lxc/remote.go:247 +#: lxc/remote.go:214 lxc/remote.go:248 msgid "Unavailable remote server" msgstr "" @@ -6101,7 +6096,7 @@ msgstr "" msgid "Unknown column shorthand char '%c' in '%s'" msgstr "" -#: lxc/console.go:159 +#: lxc/console.go:164 #, c-format msgid "Unknown console type %q" msgstr "" @@ -6161,11 +6156,11 @@ msgstr "" msgid "Unset network forward keys" msgstr "" -#: lxc/network_load_balancer.go:548 +#: lxc/network_load_balancer.go:553 msgid "Unset network load balancer configuration keys" msgstr "" -#: lxc/network_load_balancer.go:549 +#: lxc/network_load_balancer.go:554 msgid "Unset network load balancer keys" msgstr "" @@ -6177,11 +6172,11 @@ msgstr "" msgid "Unset network peer keys" msgstr "" -#: lxc/network_zone.go:433 lxc/network_zone.go:434 +#: lxc/network_zone.go:438 lxc/network_zone.go:439 msgid "Unset network zone configuration keys" msgstr "" -#: lxc/network_zone.go:1027 lxc/network_zone.go:1028 +#: lxc/network_zone.go:1032 lxc/network_zone.go:1033 msgid "Unset network zone record configuration keys" msgstr "" @@ -6193,7 +6188,7 @@ msgstr "" msgid "Unset project configuration keys" msgstr "" -#: lxc/storage_bucket.go:692 lxc/storage_bucket.go:693 +#: lxc/storage_bucket.go:697 lxc/storage_bucket.go:698 msgid "Unset storage bucket configuration keys" msgstr "" @@ -6217,7 +6212,7 @@ msgstr "" msgid "Unset the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:552 +#: lxc/network_load_balancer.go:557 msgid "Unset the key as a network load balancer property" msgstr "" @@ -6229,11 +6224,11 @@ msgstr "" msgid "Unset the key as a network property" msgstr "" -#: lxc/network_zone.go:437 +#: lxc/network_zone.go:442 msgid "Unset the key as a network zone property" msgstr "" -#: lxc/network_zone.go:1031 +#: lxc/network_zone.go:1036 msgid "Unset the key as a network zone record property" msgstr "" @@ -6245,7 +6240,7 @@ msgstr "" msgid "Unset the key as a project property" msgstr "" -#: lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:701 msgid "Unset the key as a storage bucket property" msgstr "" @@ -6307,7 +6302,7 @@ msgid "" "Use storage driver optimized format (can only be restored on a similar pool)" msgstr "" -#: lxc/main.go:100 +#: lxc/main.go:101 msgid "Use with help or --help to view sub-commands" msgstr "" @@ -6404,7 +6399,7 @@ msgstr "" #: lxc/network.go:959 lxc/operation.go:156 lxc/project.go:458 #: lxc/project.go:463 lxc/project.go:468 lxc/project.go:473 lxc/project.go:478 -#: lxc/project.go:483 lxc/remote.go:693 lxc/remote.go:698 lxc/remote.go:703 +#: lxc/project.go:483 lxc/remote.go:694 lxc/remote.go:699 lxc/remote.go:704 msgid "YES" msgstr "" @@ -6439,7 +6434,7 @@ 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/network.go:909 lxc/network_acl.go:91 lxc/network_zone.go:83 #: 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 "[:]" @@ -6502,19 +6497,19 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:154 lxc/network_zone.go:463 lxc/network_zone.go:581 +#: lxc/network_zone.go:155 lxc/network_zone.go:468 lxc/network_zone.go:586 msgid "[:]" msgstr "" -#: lxc/network_zone.go:209 lxc/network_zone.go:432 +#: lxc/network_zone.go:210 lxc/network_zone.go:437 msgid "[:] " msgstr "" -#: lxc/network_zone.go:352 +#: lxc/network_zone.go:357 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:269 +#: lxc/network_zone.go:270 msgid "[:] [key=value...]" msgstr "" @@ -6760,30 +6755,30 @@ msgstr "" #: lxc/network_forward.go:169 lxc/network_forward.go:574 #: lxc/network_forward.go:715 lxc/network_load_balancer.go:171 -#: lxc/network_load_balancer.go:577 lxc/network_load_balancer.go:719 +#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:724 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:860 +#: lxc/network_load_balancer.go:865 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:796 +#: lxc/network_load_balancer.go:801 msgid "" "[:] " "[]" msgstr "" #: lxc/network_forward.go:377 lxc/network_forward.go:544 -#: lxc/network_load_balancer.go:381 lxc/network_load_balancer.go:547 +#: lxc/network_load_balancer.go:386 lxc/network_load_balancer.go:552 msgid "[:] " msgstr "" -#: lxc/network_forward.go:446 lxc/network_load_balancer.go:449 +#: lxc/network_forward.go:446 lxc/network_load_balancer.go:454 msgid "[:] =..." msgstr "" -#: lxc/network_load_balancer.go:961 +#: lxc/network_load_balancer.go:966 msgid "" "[:] " "[,...]" @@ -6795,7 +6790,7 @@ msgid "" " []" msgstr "" -#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1022 +#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1027 msgid "[:] [] []" msgstr "" @@ -6846,7 +6841,7 @@ msgid "[:]" msgstr "" #: lxc/storage.go:167 lxc/storage.go:218 lxc/storage.go:412 lxc/storage.go:759 -#: lxc/storage_bucket.go:449 +#: lxc/storage_bucket.go:454 msgid "[:]" msgstr "" @@ -6854,18 +6849,18 @@ msgstr "" msgid "[:] []" msgstr "" -#: lxc/storage_bucket.go:180 lxc/storage_bucket.go:242 -#: lxc/storage_bucket.go:622 lxc/storage_bucket.go:764 +#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:247 +#: lxc/storage_bucket.go:627 lxc/storage_bucket.go:769 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:375 lxc/storage_bucket.go:691 -#: lxc/storage_bucket.go:845 lxc/storage_bucket.go:923 -#: lxc/storage_bucket.go:987 lxc/storage_bucket.go:1122 +#: lxc/storage_bucket.go:380 lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:850 lxc/storage_bucket.go:928 +#: lxc/storage_bucket.go:992 lxc/storage_bucket.go:1127 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:528 +#: lxc/storage_bucket.go:533 msgid "[:] =..." msgstr "" @@ -7009,27 +7004,27 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:686 +#: lxc/network_zone.go:691 msgid "[:]" msgstr "" -#: lxc/network_zone.go:757 lxc/network_zone.go:1056 lxc/network_zone.go:1173 +#: lxc/network_zone.go:762 lxc/network_zone.go:1061 lxc/network_zone.go:1178 msgid "[:] " msgstr "" -#: lxc/network_zone.go:809 lxc/network_zone.go:1026 +#: lxc/network_zone.go:814 lxc/network_zone.go:1031 msgid "[:] " msgstr "" -#: lxc/network_zone.go:950 +#: lxc/network_zone.go:955 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:1238 lxc/network_zone.go:1284 +#: lxc/network_zone.go:1243 lxc/network_zone.go:1289 msgid "[:] " msgstr "" -#: lxc/network_zone.go:868 +#: lxc/network_zone.go:873 msgid "[:] [key=value...]" msgstr "" @@ -7053,7 +7048,7 @@ msgstr "" msgid "[:][] [...]" msgstr "" -#: lxc/remote.go:88 +#: lxc/remote.go:89 msgid "[] " msgstr "" @@ -7061,7 +7056,7 @@ msgstr "" msgid "[[:]]" msgstr "" -#: lxc/project.go:488 lxc/remote.go:722 +#: lxc/project.go:488 lxc/remote.go:723 msgid "current" msgstr "" @@ -7324,6 +7319,23 @@ msgid "" " Create a new OVN network called bar using baz as its uplink network" msgstr "" +#: lxc/network_load_balancer.go:239 +msgid "" +"lxc network load-balancer create n1 127.0.0.1\n" +"\n" +"lxc network load-balancer create n1 127.0.0.1 < config.yaml\n" +" Create network load-balancer for network n1 with configuration from " +"config.yaml" +msgstr "" + +#: lxc/network_zone.go:273 +msgid "" +"lxc network zone create z1\n" +"\n" +"lxc network zone create z1 < config.yaml\n" +" Create network zone z1 with configuration from config.yaml" +msgstr "" + #: lxc/operation.go:195 msgid "" "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n" @@ -7394,26 +7406,36 @@ msgid "" " Restore the snapshot." msgstr "" -#: lxc/storage_bucket.go:245 +#: lxc/storage_bucket.go:84 +msgid "" +"lxc storage bucket create p1 b01\n" +"\tCreate a new storage bucket name b01 in storage pool p1\n" +"\n" +"lxc storage bucket create p1 b01 < config.yaml\n" +"\tCreate a new storage bucket name b01 in storage pool p1 using the content " +"of config.yaml" +msgstr "" + +#: lxc/storage_bucket.go:250 msgid "" "lxc storage bucket edit [:] < bucket.yaml\n" " Update a storage bucket using the content of bucket.yaml." msgstr "" -#: lxc/storage_bucket.go:990 +#: lxc/storage_bucket.go:995 msgid "" "lxc storage bucket edit [:] < key.yaml\n" " Update a storage bucket key using the content of key.yaml." msgstr "" -#: lxc/storage_bucket.go:1125 +#: lxc/storage_bucket.go:1130 msgid "" "lxc storage bucket key show default data foo\n" " Will show the properties of a bucket key called \"foo\" for a bucket " "called \"data\" in the \"default\" pool." msgstr "" -#: lxc/storage_bucket.go:625 +#: lxc/storage_bucket.go:630 msgid "" "lxc storage bucket show default data\n" " Will show the properties of a bucket called \"data\" in the \"default\" " @@ -7432,7 +7454,7 @@ msgid "" "\t\tCreate a new custom volume using backup0.tar.gz as the source." msgstr "" -#: lxc/remote.go:459 +#: lxc/remote.go:460 msgid "n" msgstr "" @@ -7444,7 +7466,7 @@ msgstr "" msgid "no" msgstr "" -#: lxc/remote.go:452 +#: lxc/remote.go:453 msgid "ok (y/n/[fingerprint])?" msgstr "" @@ -7481,7 +7503,7 @@ msgstr "" msgid "used by" msgstr "" -#: lxc/remote.go:461 +#: lxc/remote.go:462 msgid "y" msgstr "" diff --git a/po/nb_NO.po b/po/nb_NO.po index 2f1c4946a19c..d8004caecfa7 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-08-20 09:31+0100\n" +"POT-Creation-Date: 2024-08-30 09:27+0100\n" "PO-Revision-Date: 2022-03-10 15:09+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Norwegian Bokmål " msgstr "" -#: lxc/remote.go:825 lxc/remote.go:882 +#: lxc/remote.go:826 lxc/remote.go:883 msgid "" msgstr "" -#: lxc/remote.go:922 +#: lxc/remote.go:923 msgid " " msgstr "" -#: lxc/remote.go:752 +#: lxc/remote.go:753 msgid " " msgstr "" @@ -556,7 +556,7 @@ msgstr "" msgid "ARCHITECTURE" msgstr "" -#: lxc/remote.go:734 +#: lxc/remote.go:735 msgid "AUTH TYPE" msgstr "" @@ -564,15 +564,15 @@ msgstr "" msgid "AUTHENTICATION METHOD" msgstr "" -#: lxc/remote.go:100 +#: lxc/remote.go:101 msgid "Accept certificate" msgstr "" -#: lxc/storage_bucket.go:852 +#: lxc/storage_bucket.go:857 msgid "Access key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:908 +#: lxc/storage_bucket.go:913 #, c-format msgid "Access key: %s" msgstr "" @@ -606,19 +606,19 @@ msgstr "" msgid "Add a group to an identity provider group" msgstr "" -#: lxc/network_zone.go:1239 +#: lxc/network_zone.go:1244 msgid "Add a network zone record entry" msgstr "" -#: lxc/network_load_balancer.go:798 +#: lxc/network_load_balancer.go:803 msgid "Add backend to a load balancer" msgstr "" -#: lxc/network_load_balancer.go:797 +#: lxc/network_load_balancer.go:802 msgid "Add backends to a load balancer" msgstr "" -#: lxc/network_zone.go:1240 +#: lxc/network_zone.go:1245 msgid "Add entries to a network zone record" msgstr "" @@ -634,11 +634,11 @@ msgstr "" msgid "Add new aliases" msgstr "" -#: lxc/remote.go:89 +#: lxc/remote.go:90 msgid "Add new remote servers" msgstr "" -#: lxc/remote.go:90 +#: lxc/remote.go:91 msgid "" "Add new remote servers\n" "\n" @@ -679,7 +679,7 @@ msgstr "" msgid "Add ports to a forward" msgstr "" -#: lxc/network_load_balancer.go:962 lxc/network_load_balancer.go:963 +#: lxc/network_load_balancer.go:967 lxc/network_load_balancer.go:968 msgid "Add ports to a load balancer" msgstr "" @@ -700,17 +700,17 @@ msgstr "" msgid "Address: %s" msgstr "" -#: lxc/storage_bucket.go:164 +#: lxc/storage_bucket.go:169 #, c-format msgid "Admin access key: %s" msgstr "" -#: lxc/remote.go:566 +#: lxc/remote.go:567 #, c-format msgid "Admin password (or token) for %s:" msgstr "" -#: lxc/storage_bucket.go:165 +#: lxc/storage_bucket.go:170 #, c-format msgid "Admin secret key: %s" msgstr "" @@ -742,7 +742,7 @@ msgstr "" msgid "All projects" msgstr "" -#: lxc/remote.go:181 +#: lxc/remote.go:182 msgid "All server addresses are unavailable" msgstr "" @@ -765,7 +765,7 @@ msgstr "" msgid "Are you sure you want to %s cluster member %q? (yes/no) [default=no]: " msgstr "" -#: lxc/console.go:383 +#: lxc/console.go:388 msgid "As neither could be found, the raw SPICE socket can be found at:" msgstr "" @@ -813,7 +813,7 @@ msgid "" "as well as retrieve past log entries from it." msgstr "" -#: lxc/remote.go:548 +#: lxc/remote.go:549 #, c-format msgid "Authentication type '%s' not supported by server" msgstr "" @@ -832,11 +832,11 @@ msgstr "" msgid "Auto update: %s" msgstr "" -#: lxc/network_forward.go:240 lxc/network_load_balancer.go:242 +#: lxc/network_forward.go:240 lxc/network_load_balancer.go:247 msgid "Auto-allocate an IPv4 or IPv6 listen address. One of 'ipv4', 'ipv6'." msgstr "" -#: lxc/remote.go:136 +#: lxc/remote.go:137 msgid "Available projects:" msgstr "" @@ -868,8 +868,8 @@ msgid "Bad device override syntax, expecting ,=: %s" msgstr "" #: lxc/network.go:333 lxc/network_acl.go:382 lxc/network_forward.go:293 -#: lxc/network_load_balancer.go:296 lxc/network_peer.go:280 -#: lxc/network_zone.go:324 lxc/network_zone.go:922 lxc/storage_bucket.go:136 +#: lxc/network_load_balancer.go:301 lxc/network_peer.go:280 +#: lxc/network_zone.go:329 lxc/network_zone.go:927 lxc/storage_bucket.go:141 #, c-format msgid "Bad key/value pair: %s" msgstr "" @@ -991,7 +991,7 @@ msgstr "" msgid "Can't read from stdin: %w" msgstr "" -#: lxc/remote.go:861 +#: lxc/remote.go:862 msgid "Can't remove the default remote" msgstr "" @@ -1057,15 +1057,14 @@ msgstr "" msgid "Certificate add token for %s deleted" msgstr "" -#: lxc/remote.go:218 -#, c-format -msgid "" -"Certificate fingerprint mismatch between certificate token and server %q" +#: lxc/remote.go:452 +msgid "Certificate fingerprint" msgstr "" -#: lxc/remote.go:451 +#: lxc/remote.go:219 #, c-format -msgid "Certificate fingerprint: %s" +msgid "" +"Certificate fingerprint mismatch between certificate token and server %q" msgstr "" #: lxc/network.go:893 @@ -1077,7 +1076,7 @@ msgstr "" msgid "Client %s certificate add token:" msgstr "" -#: lxc/remote.go:603 +#: lxc/remote.go:604 msgid "Client certificate now trusted by server:" msgstr "" @@ -1139,18 +1138,18 @@ msgstr "" #: lxc/network_forward.go:456 lxc/network_forward.go:579 #: lxc/network_forward.go:721 lxc/network_forward.go:798 #: lxc/network_forward.go:864 lxc/network_load_balancer.go:176 -#: lxc/network_load_balancer.go:241 lxc/network_load_balancer.go:459 -#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:725 -#: lxc/network_load_balancer.go:801 lxc/network_load_balancer.go:865 -#: lxc/network_load_balancer.go:966 lxc/network_load_balancer.go:1028 +#: lxc/network_load_balancer.go:246 lxc/network_load_balancer.go:464 +#: lxc/network_load_balancer.go:587 lxc/network_load_balancer.go:730 +#: lxc/network_load_balancer.go:806 lxc/network_load_balancer.go:870 +#: lxc/network_load_balancer.go:971 lxc/network_load_balancer.go:1033 #: lxc/storage.go:99 lxc/storage.go:347 lxc/storage.go:418 lxc/storage.go:671 -#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:85 -#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:248 -#: lxc/storage_bucket.go:379 lxc/storage_bucket.go:536 -#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:695 -#: lxc/storage_bucket.go:770 lxc/storage_bucket.go:850 -#: lxc/storage_bucket.go:928 lxc/storage_bucket.go:993 -#: lxc/storage_bucket.go:1129 lxc/storage_volume.go:358 +#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:90 +#: lxc/storage_bucket.go:190 lxc/storage_bucket.go:253 +#: lxc/storage_bucket.go:384 lxc/storage_bucket.go:541 +#: lxc/storage_bucket.go:634 lxc/storage_bucket.go:700 +#: lxc/storage_bucket.go:775 lxc/storage_bucket.go:855 +#: lxc/storage_bucket.go:933 lxc/storage_bucket.go:998 +#: lxc/storage_bucket.go:1134 lxc/storage_volume.go:358 #: lxc/storage_volume.go:560 lxc/storage_volume.go:639 #: lxc/storage_volume.go:883 lxc/storage_volume.go:1097 #: lxc/storage_volume.go:1210 lxc/storage_volume.go:1678 @@ -1178,11 +1177,11 @@ msgstr "" msgid "Columns" msgstr "" -#: lxc/main.go:81 +#: lxc/main.go:82 msgid "Command line client for LXD" msgstr "" -#: lxc/main.go:82 +#: lxc/main.go:83 msgid "" "Command line client for LXD\n" "\n" @@ -1214,19 +1213,15 @@ msgstr "" #: lxc/config.go:347 lxc/config.go:1277 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/network_load_balancer.go:694 lxc/network_peer.go:610 +#: lxc/network_zone.go:556 lxc/network_zone.go:1148 lxc/profile.go:538 +#: lxc/project.go:315 lxc/storage.go:310 lxc/storage_bucket.go:348 +#: lxc/storage_bucket.go:1097 lxc/storage_volume.go:1016 #: lxc/storage_volume.go:1048 #, c-format msgid "Config parsing error: %s" msgstr "" -#: lxc/console.go:140 -msgid "Console log:" -msgstr "" - #: lxc/storage_volume.go:561 msgid "Content type, block or filesystem" msgstr "" @@ -1329,12 +1324,12 @@ msgstr "" msgid "Cores:" msgstr "" -#: lxc/remote.go:486 +#: lxc/remote.go:487 #, c-format msgid "Could not close server cert file %q: %w" msgstr "" -#: lxc/remote.go:224 lxc/remote.go:470 +#: lxc/remote.go:225 lxc/remote.go:471 msgid "Could not create server cert dir" msgstr "" @@ -1373,12 +1368,12 @@ msgstr "" msgid "Could not write new remote certificate for remote '%s' with error: %v" msgstr "" -#: lxc/remote.go:481 +#: lxc/remote.go:482 #, c-format msgid "Could not write server cert file %q: %w" msgstr "" -#: lxc/network_zone.go:1327 +#: lxc/network_zone.go:1332 msgid "Couldn't find a matching entry" msgstr "" @@ -1430,7 +1425,7 @@ msgstr "" msgid "Create instances from images" msgstr "" -#: lxc/storage_bucket.go:846 lxc/storage_bucket.go:847 +#: lxc/storage_bucket.go:851 lxc/storage_bucket.go:852 msgid "Create key for a storage bucket" msgstr "" @@ -1462,11 +1457,11 @@ msgstr "" msgid "Create new network peering" msgstr "" -#: lxc/network_zone.go:869 lxc/network_zone.go:870 +#: lxc/network_zone.go:874 lxc/network_zone.go:875 msgid "Create new network zone record" msgstr "" -#: lxc/network_zone.go:270 lxc/network_zone.go:271 +#: lxc/network_zone.go:271 lxc/network_zone.go:272 msgid "Create new network zones" msgstr "" @@ -1517,9 +1512,9 @@ msgstr "" #: 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/network_zone.go:140 lxc/network_zone.go:747 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_bucket.go:512 lxc/storage_bucket.go:832 #: lxc/storage_volume.go:1562 msgid "DESCRIPTION" msgstr "" @@ -1584,7 +1579,7 @@ msgstr "" msgid "Delete instances and snapshots" msgstr "" -#: lxc/storage_bucket.go:924 lxc/storage_bucket.go:925 +#: lxc/storage_bucket.go:929 lxc/storage_bucket.go:930 msgid "Delete key from a storage bucket" msgstr "" @@ -1596,7 +1591,7 @@ msgstr "" msgid "Delete network forwards" msgstr "" -#: lxc/network_load_balancer.go:721 lxc/network_load_balancer.go:722 +#: lxc/network_load_balancer.go:726 lxc/network_load_balancer.go:727 msgid "Delete network load balancers" msgstr "" @@ -1604,11 +1599,11 @@ msgstr "" msgid "Delete network peerings" msgstr "" -#: lxc/network_zone.go:1175 lxc/network_zone.go:1176 +#: lxc/network_zone.go:1180 lxc/network_zone.go:1181 msgid "Delete network zone record" msgstr "" -#: lxc/network_zone.go:583 lxc/network_zone.go:584 +#: lxc/network_zone.go:588 lxc/network_zone.go:589 msgid "Delete network zones" msgstr "" @@ -1624,7 +1619,7 @@ msgstr "" msgid "Delete projects" msgstr "" -#: lxc/storage_bucket.go:182 lxc/storage_bucket.go:183 +#: lxc/storage_bucket.go:187 lxc/storage_bucket.go:188 msgid "Delete storage buckets" msgstr "" @@ -1680,7 +1675,7 @@ msgstr "" #: 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/info.go:32 lxc/init.go:43 lxc/launch.go:24 lxc/list.go:48 lxc/main.go:83 #: 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 @@ -1699,22 +1694,22 @@ msgstr "" #: 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_load_balancer.go:238 lxc/network_load_balancer.go:388 +#: lxc/network_load_balancer.go:456 lxc/network_load_balancer.go:554 +#: lxc/network_load_balancer.go:584 lxc/network_load_balancer.go:727 +#: lxc/network_load_balancer.go:788 lxc/network_load_balancer.go:803 +#: lxc/network_load_balancer.go:867 lxc/network_load_balancer.go:953 +#: lxc/network_load_balancer.go:968 lxc/network_load_balancer.go:1029 #: 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/network_zone.go:29 lxc/network_zone.go:86 lxc/network_zone.go:157 +#: lxc/network_zone.go:212 lxc/network_zone.go:272 lxc/network_zone.go:359 +#: lxc/network_zone.go:439 lxc/network_zone.go:470 lxc/network_zone.go:589 +#: lxc/network_zone.go:637 lxc/network_zone.go:694 lxc/network_zone.go:764 +#: lxc/network_zone.go:816 lxc/network_zone.go:875 lxc/network_zone.go:957 +#: lxc/network_zone.go:1033 lxc/network_zone.go:1063 lxc/network_zone.go:1181 +#: lxc/network_zone.go:1230 lxc/network_zone.go:1245 lxc/network_zone.go:1291 #: 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 @@ -1723,19 +1718,19 @@ msgstr "" #: 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:631 lxc/remote.go:669 lxc/remote.go:755 lxc/remote.go:828 -#: lxc/remote.go:884 lxc/remote.go:924 lxc/rename.go:21 lxc/restore.go:24 +#: lxc/query.go:34 lxc/rebuild.go:27 lxc/remote.go:35 lxc/remote.go:91 +#: lxc/remote.go:632 lxc/remote.go:670 lxc/remote.go:756 lxc/remote.go:829 +#: lxc/remote.go:885 lxc/remote.go:925 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_bucket.go:29 lxc/storage_bucket.go:83 lxc/storage_bucket.go:188 +#: lxc/storage_bucket.go:249 lxc/storage_bucket.go:382 +#: lxc/storage_bucket.go:458 lxc/storage_bucket.go:535 +#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:698 +#: lxc/storage_bucket.go:732 lxc/storage_bucket.go:773 +#: lxc/storage_bucket.go:852 lxc/storage_bucket.go:930 +#: lxc/storage_bucket.go:994 lxc/storage_bucket.go:1129 #: 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 @@ -1871,7 +1866,7 @@ msgstr "" msgid "Don't require user confirmation for using --force" msgstr "" -#: lxc/main.go:99 +#: lxc/main.go:100 msgid "Don't show progress information" msgstr "" @@ -1884,7 +1879,7 @@ msgstr "" msgid "Driver: %v (%v)" msgstr "" -#: lxc/network_zone.go:743 +#: lxc/network_zone.go:748 msgid "ENTRIES" msgstr "" @@ -1962,7 +1957,7 @@ msgstr "" msgid "Edit network forward configurations as YAML" msgstr "" -#: lxc/network_load_balancer.go:578 lxc/network_load_balancer.go:579 +#: lxc/network_load_balancer.go:583 lxc/network_load_balancer.go:584 msgid "Edit network load balancer configurations as YAML" msgstr "" @@ -1970,11 +1965,11 @@ msgstr "" msgid "Edit network peer configurations as YAML" msgstr "" -#: lxc/network_zone.go:464 lxc/network_zone.go:465 +#: lxc/network_zone.go:469 lxc/network_zone.go:470 msgid "Edit network zone configurations as YAML" msgstr "" -#: lxc/network_zone.go:1057 lxc/network_zone.go:1058 +#: lxc/network_zone.go:1062 lxc/network_zone.go:1063 msgid "Edit network zone record configurations as YAML" msgstr "" @@ -1986,11 +1981,11 @@ msgstr "" msgid "Edit project configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:243 lxc/storage_bucket.go:244 +#: lxc/storage_bucket.go:248 lxc/storage_bucket.go:249 msgid "Edit storage bucket configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:988 lxc/storage_bucket.go:989 +#: lxc/storage_bucket.go:993 lxc/storage_bucket.go:994 msgid "Edit storage bucket key as YAML" msgstr "" @@ -2031,7 +2026,7 @@ msgid "" " for the address if not yet set." msgstr "" -#: lxc/network_zone.go:1242 +#: lxc/network_zone.go:1247 msgid "Entry TTL" msgstr "" @@ -2060,9 +2055,9 @@ msgstr "" #: lxc/cluster.go:414 lxc/config.go:624 lxc/config.go:656 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/network_load_balancer.go:527 lxc/network_peer.go:463 +#: lxc/network_zone.go:414 lxc/network_zone.go:1008 lxc/profile.go:876 +#: lxc/project.go:634 lxc/storage.go:727 lxc/storage_bucket.go:602 #: lxc/storage_volume.go:1947 lxc/storage_volume.go:1985 #, c-format msgid "Error setting properties: %v" @@ -2074,10 +2069,10 @@ 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/network_forward.go:513 lxc/network_load_balancer.go:521 +#: lxc/network_peer.go:457 lxc/network_zone.go:408 lxc/network_zone.go:1002 #: lxc/profile.go:870 lxc/project.go:628 lxc/storage.go:721 -#: lxc/storage_bucket.go:591 lxc/storage_volume.go:1941 +#: lxc/storage_bucket.go:596 lxc/storage_volume.go:1941 #: lxc/storage_volume.go:1979 #, c-format msgid "Error unsetting property: %v" @@ -2263,7 +2258,7 @@ msgstr "" msgid "Failed parsing SSH host key: %w" msgstr "" -#: lxc/console.go:361 +#: lxc/console.go:366 #, c-format msgid "Failed starting command: %w" msgstr "" @@ -2278,11 +2273,11 @@ msgstr "" msgid "Failed to accept incoming connection: %w" msgstr "" -#: lxc/remote.go:190 +#: lxc/remote.go:191 msgid "Failed to add remote" msgstr "" -#: lxc/remote.go:241 +#: lxc/remote.go:242 #, c-format msgid "Failed to close server cert file %q: %w" msgstr "" @@ -2292,7 +2287,7 @@ msgstr "" msgid "Failed to connect to cluster member: %w" msgstr "" -#: lxc/remote.go:231 +#: lxc/remote.go:232 #, c-format msgid "Failed to create %q: %w" msgstr "" @@ -2302,12 +2297,12 @@ msgstr "" msgid "Failed to create alias %s: %w" msgstr "" -#: lxc/remote.go:256 +#: lxc/remote.go:257 #, c-format msgid "Failed to create certificate: %w" msgstr "" -#: lxc/remote.go:263 +#: lxc/remote.go:264 #, c-format msgid "Failed to find project: %w" msgstr "" @@ -2332,7 +2327,7 @@ msgstr "" msgid "Failed to walk path for %s: %s" msgstr "" -#: lxc/remote.go:236 +#: lxc/remote.go:237 #, c-format msgid "Failed to write server cert file %q: %w" msgstr "" @@ -2341,7 +2336,7 @@ msgstr "" msgid "Fast mode (same as --columns=nsacPt)" msgstr "" -#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:115 +#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:116 #: lxc/operation.go:136 msgid "Filtering isn't supported yet" msgstr "" @@ -2379,7 +2374,7 @@ msgstr "" msgid "Force the removal of running instances" msgstr "" -#: lxc/main.go:95 +#: lxc/main.go:96 msgid "Force using the local unix socket" msgstr "" @@ -2413,10 +2408,10 @@ msgstr "" #: 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/network_peer.go:84 lxc/network_zone.go:89 lxc/network_zone.go:697 #: lxc/operation.go:108 lxc/profile.go:637 lxc/project.go:412 -#: lxc/project.go:804 lxc/remote.go:673 lxc/storage.go:588 -#: lxc/storage_bucket.go:454 lxc/storage_bucket.go:769 +#: lxc/project.go:804 lxc/remote.go:674 lxc/storage.go:588 +#: lxc/storage_bucket.go:459 lxc/storage_bucket.go:774 #: lxc/storage_volume.go:1446 lxc/warning.go:93 msgid "Format (csv|json|table|yaml|compact)" msgstr "" @@ -2453,7 +2448,7 @@ msgstr "" msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)" msgstr "" -#: lxc/remote.go:737 +#: lxc/remote.go:738 msgid "GLOBAL" msgstr "" @@ -2473,7 +2468,7 @@ msgstr "" msgid "Generate manpages for all commands" msgstr "" -#: lxc/remote.go:159 lxc/remote.go:397 +#: lxc/remote.go:160 lxc/remote.go:398 msgid "Generating a client certificate. This may take a minute..." msgstr "" @@ -2505,7 +2500,7 @@ msgstr "" msgid "Get the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:386 +#: lxc/network_load_balancer.go:391 msgid "Get the key as a network load balancer property" msgstr "" @@ -2517,11 +2512,11 @@ msgstr "" msgid "Get the key as a network property" msgstr "" -#: lxc/network_zone.go:214 +#: lxc/network_zone.go:215 msgid "Get the key as a network zone property" msgstr "" -#: lxc/network_zone.go:814 +#: lxc/network_zone.go:819 msgid "Get the key as a network zone record property" msgstr "" @@ -2533,7 +2528,7 @@ msgstr "" msgid "Get the key as a project property" msgstr "" -#: lxc/storage_bucket.go:380 +#: lxc/storage_bucket.go:385 msgid "Get the key as a storage bucket property" msgstr "" @@ -2573,7 +2568,7 @@ msgstr "" msgid "Get values for network forward configuration keys" msgstr "" -#: lxc/network_load_balancer.go:382 lxc/network_load_balancer.go:383 +#: lxc/network_load_balancer.go:387 lxc/network_load_balancer.go:388 msgid "Get values for network load balancer configuration keys" msgstr "" @@ -2581,11 +2576,11 @@ msgstr "" msgid "Get values for network peer configuration keys" msgstr "" -#: lxc/network_zone.go:210 lxc/network_zone.go:211 +#: lxc/network_zone.go:211 lxc/network_zone.go:212 msgid "Get values for network zone configuration keys" msgstr "" -#: lxc/network_zone.go:810 lxc/network_zone.go:811 +#: lxc/network_zone.go:815 lxc/network_zone.go:816 msgid "Get values for network zone record configuration keys" msgstr "" @@ -2597,7 +2592,7 @@ msgstr "" msgid "Get values for project configuration keys" msgstr "" -#: lxc/storage_bucket.go:376 lxc/storage_bucket.go:377 +#: lxc/storage_bucket.go:381 lxc/storage_bucket.go:382 msgid "Get values for storage bucket configuration keys" msgstr "" @@ -2737,7 +2732,7 @@ msgstr "" msgid "If the snapshot name already exists, delete and create a new one" msgstr "" -#: lxc/main.go:398 +#: lxc/main.go:400 msgid "" "If this is your first time running LXD on this machine, you should also run: " "lxd init" @@ -2894,7 +2889,7 @@ msgstr "" msgid "Instance type" msgstr "" -#: lxc/remote.go:349 +#: lxc/remote.go:350 #, c-format msgid "Invalid URL scheme \"%s\" in \"%s\"" msgstr "" @@ -2966,7 +2961,7 @@ msgstr "" msgid "Invalid new snapshot name, parent volume must be the same as source" msgstr "" -#: lxc/main.go:498 +#: lxc/main.go:502 msgid "Invalid number of arguments" msgstr "" @@ -2975,7 +2970,7 @@ msgstr "" msgid "Invalid path %s" msgstr "" -#: lxc/remote.go:338 +#: lxc/remote.go:339 #, c-format msgid "Invalid protocol: %s" msgstr "" @@ -3023,7 +3018,7 @@ msgstr "" #: lxc/list.go:597 lxc/network.go:1059 lxc/network_forward.go:155 #: lxc/network_load_balancer.go:157 lxc/operation.go:177 -#: lxc/storage_bucket.go:511 lxc/storage_volume.go:1569 lxc/warning.go:220 +#: lxc/storage_bucket.go:516 lxc/storage_volume.go:1569 lxc/warning.go:220 msgid "LOCATION" msgstr "" @@ -3031,7 +3026,7 @@ msgstr "" msgid "LXD - Command line client" msgstr "" -#: lxc/console.go:382 +#: lxc/console.go:387 msgid "LXD automatically uses either spicy or remote-viewer when present." msgstr "" @@ -3121,15 +3116,15 @@ msgstr "" msgid "List available network peers" msgstr "" -#: lxc/network_zone.go:85 +#: lxc/network_zone.go:86 msgid "List available network zone" msgstr "" -#: lxc/network_zone.go:688 lxc/network_zone.go:689 +#: lxc/network_zone.go:693 lxc/network_zone.go:694 msgid "List available network zone records" msgstr "" -#: lxc/network_zone.go:84 +#: lxc/network_zone.go:85 msgid "List available network zoneS" msgstr "" @@ -3318,11 +3313,11 @@ msgstr "" msgid "List projects" msgstr "" -#: lxc/storage_bucket.go:766 lxc/storage_bucket.go:768 +#: lxc/storage_bucket.go:771 lxc/storage_bucket.go:773 msgid "List storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:451 lxc/storage_bucket.go:453 +#: lxc/storage_bucket.go:456 lxc/storage_bucket.go:458 msgid "List storage buckets" msgstr "" @@ -3350,7 +3345,7 @@ msgid "" " U - Current disk usage" msgstr "" -#: lxc/remote.go:668 lxc/remote.go:669 +#: lxc/remote.go:669 lxc/remote.go:670 msgid "List the available remotes" msgstr "" @@ -3577,11 +3572,11 @@ msgstr "" msgid "Manage network forwards" msgstr "" -#: lxc/network_load_balancer.go:782 lxc/network_load_balancer.go:783 +#: lxc/network_load_balancer.go:787 lxc/network_load_balancer.go:788 msgid "Manage network load balancer backends" msgstr "" -#: lxc/network_load_balancer.go:947 lxc/network_load_balancer.go:948 +#: lxc/network_load_balancer.go:952 lxc/network_load_balancer.go:953 msgid "Manage network load balancer ports" msgstr "" @@ -3593,15 +3588,15 @@ msgstr "" msgid "Manage network peerings" msgstr "" -#: lxc/network_zone.go:1224 lxc/network_zone.go:1225 +#: lxc/network_zone.go:1229 lxc/network_zone.go:1230 msgid "Manage network zone record entries" msgstr "" -#: lxc/network_zone.go:631 lxc/network_zone.go:632 +#: lxc/network_zone.go:636 lxc/network_zone.go:637 msgid "Manage network zone records" msgstr "" -#: lxc/network_zone.go:27 lxc/network_zone.go:28 +#: lxc/network_zone.go:28 lxc/network_zone.go:29 msgid "Manage network zones" msgstr "" @@ -3617,11 +3612,11 @@ msgstr "" msgid "Manage projects" msgstr "" -#: lxc/storage_bucket.go:726 +#: lxc/storage_bucket.go:731 msgid "Manage storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:727 +#: lxc/storage_bucket.go:732 msgid "Manage storage bucket keys." msgstr "" @@ -3649,7 +3644,7 @@ msgid "" "\"custom\" (user created) volumes." msgstr "" -#: lxc/remote.go:33 lxc/remote.go:34 +#: lxc/remote.go:34 lxc/remote.go:35 msgid "Manage the list of remote servers" msgstr "" @@ -3730,12 +3725,12 @@ msgid "" "Minimum level for log messages (only available when using pretty format)" msgstr "" -#: lxc/storage_bucket.go:111 lxc/storage_bucket.go:211 -#: lxc/storage_bucket.go:287 lxc/storage_bucket.go:406 -#: lxc/storage_bucket.go:563 lxc/storage_bucket.go:655 -#: lxc/storage_bucket.go:797 lxc/storage_bucket.go:878 -#: lxc/storage_bucket.go:953 lxc/storage_bucket.go:1032 -#: lxc/storage_bucket.go:1155 +#: lxc/storage_bucket.go:116 lxc/storage_bucket.go:216 +#: lxc/storage_bucket.go:292 lxc/storage_bucket.go:411 +#: lxc/storage_bucket.go:568 lxc/storage_bucket.go:660 +#: lxc/storage_bucket.go:802 lxc/storage_bucket.go:883 +#: lxc/storage_bucket.go:958 lxc/storage_bucket.go:1037 +#: lxc/storage_bucket.go:1160 msgid "Missing bucket name" msgstr "" @@ -3779,8 +3774,8 @@ msgstr "" msgid "Missing instance name" msgstr "" -#: lxc/storage_bucket.go:882 lxc/storage_bucket.go:957 -#: lxc/storage_bucket.go:1036 lxc/storage_bucket.go:1159 +#: lxc/storage_bucket.go:887 lxc/storage_bucket.go:962 +#: lxc/storage_bucket.go:1041 lxc/storage_bucket.go:1164 msgid "Missing key name" msgstr "" @@ -3788,10 +3783,10 @@ msgstr "" #: lxc/network_forward.go:481 lxc/network_forward.go:627 #: lxc/network_forward.go:746 lxc/network_forward.go:823 #: lxc/network_forward.go:889 lxc/network_load_balancer.go:201 -#: lxc/network_load_balancer.go:411 lxc/network_load_balancer.go:484 -#: lxc/network_load_balancer.go:630 lxc/network_load_balancer.go:750 -#: lxc/network_load_balancer.go:826 lxc/network_load_balancer.go:890 -#: lxc/network_load_balancer.go:991 lxc/network_load_balancer.go:1053 +#: lxc/network_load_balancer.go:416 lxc/network_load_balancer.go:489 +#: lxc/network_load_balancer.go:635 lxc/network_load_balancer.go:755 +#: lxc/network_load_balancer.go:831 lxc/network_load_balancer.go:895 +#: lxc/network_load_balancer.go:996 lxc/network_load_balancer.go:1058 msgid "Missing listen address" msgstr "" @@ -3816,26 +3811,26 @@ msgstr "" #: lxc/network_forward.go:477 lxc/network_forward.go:623 #: lxc/network_forward.go:742 lxc/network_forward.go:819 #: lxc/network_forward.go:885 lxc/network_load_balancer.go:123 -#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:261 -#: lxc/network_load_balancer.go:407 lxc/network_load_balancer.go:480 -#: lxc/network_load_balancer.go:626 lxc/network_load_balancer.go:746 -#: lxc/network_load_balancer.go:822 lxc/network_load_balancer.go:886 -#: lxc/network_load_balancer.go:987 lxc/network_load_balancer.go:1049 +#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:266 +#: lxc/network_load_balancer.go:412 lxc/network_load_balancer.go:485 +#: lxc/network_load_balancer.go:631 lxc/network_load_balancer.go:751 +#: lxc/network_load_balancer.go:827 lxc/network_load_balancer.go:891 +#: lxc/network_load_balancer.go:992 lxc/network_load_balancer.go:1054 #: lxc/network_peer.go:110 lxc/network_peer.go:180 lxc/network_peer.go:237 #: lxc/network_peer.go:355 lxc/network_peer.go:426 lxc/network_peer.go:556 #: lxc/network_peer.go:665 msgid "Missing network name" msgstr "" -#: lxc/network_zone.go:178 lxc/network_zone.go:234 lxc/network_zone.go:294 -#: lxc/network_zone.go:382 lxc/network_zone.go:503 lxc/network_zone.go:606 -#: lxc/network_zone.go:712 lxc/network_zone.go:780 lxc/network_zone.go:892 -#: lxc/network_zone.go:976 lxc/network_zone.go:1197 lxc/network_zone.go:1262 -#: lxc/network_zone.go:1307 +#: lxc/network_zone.go:179 lxc/network_zone.go:235 lxc/network_zone.go:299 +#: lxc/network_zone.go:387 lxc/network_zone.go:508 lxc/network_zone.go:611 +#: lxc/network_zone.go:717 lxc/network_zone.go:785 lxc/network_zone.go:897 +#: lxc/network_zone.go:981 lxc/network_zone.go:1202 lxc/network_zone.go:1267 +#: lxc/network_zone.go:1312 msgid "Missing network zone name" msgstr "" -#: lxc/network_zone.go:833 lxc/network_zone.go:1095 +#: lxc/network_zone.go:838 lxc/network_zone.go:1100 msgid "Missing network zone record name" msgstr "" @@ -3845,13 +3840,13 @@ msgid "Missing peer name" msgstr "" #: lxc/storage.go:194 lxc/storage.go:264 lxc/storage.go:370 lxc/storage.go:440 -#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:107 -#: lxc/storage_bucket.go:207 lxc/storage_bucket.go:283 -#: lxc/storage_bucket.go:402 lxc/storage_bucket.go:477 -#: lxc/storage_bucket.go:559 lxc/storage_bucket.go:651 -#: lxc/storage_bucket.go:793 lxc/storage_bucket.go:874 -#: lxc/storage_bucket.go:949 lxc/storage_bucket.go:1028 -#: lxc/storage_bucket.go:1151 lxc/storage_volume.go:189 +#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:112 +#: lxc/storage_bucket.go:212 lxc/storage_bucket.go:288 +#: lxc/storage_bucket.go:407 lxc/storage_bucket.go:482 +#: lxc/storage_bucket.go:564 lxc/storage_bucket.go:656 +#: lxc/storage_bucket.go:798 lxc/storage_bucket.go:879 +#: lxc/storage_bucket.go:954 lxc/storage_bucket.go:1033 +#: lxc/storage_bucket.go:1156 lxc/storage_volume.go:189 #: lxc/storage_volume.go:287 lxc/storage_volume.go:583 #: lxc/storage_volume.go:660 lxc/storage_volume.go:735 #: lxc/storage_volume.go:817 lxc/storage_volume.go:919 @@ -3971,7 +3966,7 @@ msgstr "" msgid "Moving the storage volume: %s" msgstr "" -#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1097 +#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1102 msgid "Multiple ports match. Use --force to remove them all" msgstr "" @@ -3990,10 +3985,10 @@ 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:677 lxc/project.go:498 -#: lxc/remote.go:731 lxc/storage.go:638 lxc/storage_bucket.go:506 -#: lxc/storage_bucket.go:826 lxc/storage_volume.go:1561 +#: lxc/network_acl.go:147 lxc/network_peer.go:139 lxc/network_zone.go:139 +#: lxc/network_zone.go:746 lxc/profile.go:677 lxc/project.go:498 +#: lxc/remote.go:732 lxc/storage.go:638 lxc/storage_bucket.go:511 +#: lxc/storage_bucket.go:831 lxc/storage_volume.go:1561 msgid "NAME" msgstr "" @@ -4019,7 +4014,7 @@ msgstr "" #: lxc/network.go:957 lxc/operation.go:154 lxc/project.go:456 #: lxc/project.go:461 lxc/project.go:466 lxc/project.go:471 lxc/project.go:476 -#: lxc/project.go:481 lxc/remote.go:691 lxc/remote.go:696 lxc/remote.go:701 +#: lxc/project.go:481 lxc/remote.go:692 lxc/remote.go:697 lxc/remote.go:702 msgid "NO" msgstr "" @@ -4046,7 +4041,7 @@ msgstr "" msgid "Name" msgstr "" -#: lxc/remote.go:141 +#: lxc/remote.go:142 msgid "Name of the project to use for this remote:" msgstr "" @@ -4095,12 +4090,12 @@ msgstr "" msgid "Network ACL %s renamed to %s" msgstr "" -#: lxc/network_zone.go:336 +#: lxc/network_zone.go:341 #, c-format msgid "Network Zone %s created" msgstr "" -#: lxc/network_zone.go:616 +#: lxc/network_zone.go:621 #, c-format msgid "Network Zone %s deleted" msgstr "" @@ -4115,12 +4110,12 @@ msgstr "" msgid "Network forward %s deleted" msgstr "" -#: lxc/network_load_balancer.go:365 +#: lxc/network_load_balancer.go:370 #, c-format msgid "Network load balancer %s created" msgstr "" -#: lxc/network_load_balancer.go:767 +#: lxc/network_load_balancer.go:772 #, c-format msgid "Network load balancer %s deleted" msgstr "" @@ -4158,12 +4153,12 @@ msgstr "" msgid "Network usage:" msgstr "" -#: lxc/network_zone.go:934 +#: lxc/network_zone.go:939 #, c-format msgid "Network zone record %s created" msgstr "" -#: lxc/network_zone.go:1207 +#: lxc/network_zone.go:1212 #, c-format msgid "Network zone record %s deleted" msgstr "" @@ -4198,11 +4193,11 @@ msgstr "" msgid "No device found for this storage volume" msgstr "" -#: lxc/network_load_balancer.go:921 +#: lxc/network_load_balancer.go:926 msgid "No matching backend found" msgstr "" -#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1108 +#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1113 msgid "No matching port(s) found" msgstr "" @@ -4248,7 +4243,7 @@ msgstr "" msgid "Only \"custom\" volumes can be snapshotted" msgstr "" -#: lxc/remote.go:332 +#: lxc/remote.go:333 msgid "Only https URLs are supported for simplestreams" msgstr "" @@ -4273,7 +4268,7 @@ msgstr "" msgid "Optimized Storage" msgstr "" -#: lxc/main.go:96 +#: lxc/main.go:97 msgid "Override the source project" msgstr "" @@ -4319,11 +4314,11 @@ msgstr "" msgid "PROJECT" msgstr "" -#: lxc/remote.go:733 +#: lxc/remote.go:734 msgid "PROTOCOL" msgstr "" -#: lxc/image.go:1073 lxc/remote.go:735 +#: lxc/image.go:1073 lxc/remote.go:736 msgid "PUBLIC" msgstr "" @@ -4339,7 +4334,7 @@ msgstr "" msgid "Partitions:" msgstr "" -#: lxc/main.go:361 +#: lxc/main.go:363 #, c-format msgid "Password for %s: " msgstr "" @@ -4352,7 +4347,7 @@ msgstr "" msgid "Perform an incremental copy" msgstr "" -#: lxc/remote.go:182 +#: lxc/remote.go:183 msgid "Please provide an alternate server address (empty to abort):" msgstr "" @@ -4364,7 +4359,7 @@ msgstr "" msgid "Please provide cluster member name: " msgstr "" -#: lxc/remote.go:462 +#: lxc/remote.go:463 msgid "Please type 'y', 'n' or the fingerprint:" msgstr "" @@ -4386,10 +4381,10 @@ msgstr "" #: lxc/config.go:1278 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/network_load_balancer.go:695 lxc/network_peer.go:611 +#: lxc/network_zone.go:557 lxc/network_zone.go:1149 lxc/profile.go:539 +#: lxc/project.go:316 lxc/storage.go:311 lxc/storage_bucket.go:349 +#: lxc/storage_bucket.go:1098 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 "" @@ -4398,7 +4393,7 @@ msgstr "" msgid "Pretty rendering (short for --format=pretty)" msgstr "" -#: lxc/main.go:94 +#: lxc/main.go:95 msgid "Print help" msgstr "" @@ -4406,7 +4401,7 @@ msgstr "" msgid "Print the raw response" msgstr "" -#: lxc/main.go:93 +#: lxc/main.go:94 msgid "Print version number" msgstr "" @@ -4495,7 +4490,7 @@ msgstr "" msgid "Project %s renamed to %s" msgstr "" -#: lxc/remote.go:106 +#: lxc/remote.go:107 msgid "Project to use for the remote" msgstr "" @@ -4593,7 +4588,7 @@ msgid "" "pool \"default\"." msgstr "" -#: lxc/remote.go:105 +#: lxc/remote.go:106 msgid "Public image server" msgstr "" @@ -4641,7 +4636,7 @@ msgstr "" msgid "RESOURCE" msgstr "" -#: lxc/storage_bucket.go:828 +#: lxc/storage_bucket.go:833 msgid "ROLE" msgstr "" @@ -4684,45 +4679,45 @@ msgstr "" msgid "Refreshing the image: %s" msgstr "" -#: lxc/remote.go:785 +#: lxc/remote.go:786 #, c-format msgid "Remote %s already exists" msgstr "" -#: lxc/project.go:769 lxc/remote.go:776 lxc/remote.go:849 lxc/remote.go:905 -#: lxc/remote.go:945 +#: lxc/project.go:769 lxc/remote.go:777 lxc/remote.go:850 lxc/remote.go:906 +#: lxc/remote.go:946 #, c-format msgid "Remote %s doesn't exist" msgstr "" -#: lxc/remote.go:301 +#: lxc/remote.go:302 #, c-format msgid "Remote %s exists as <%s>" msgstr "" -#: lxc/remote.go:857 +#: lxc/remote.go:858 #, c-format msgid "Remote %s is global and cannot be removed" msgstr "" -#: lxc/remote.go:780 lxc/remote.go:853 lxc/remote.go:949 +#: lxc/remote.go:781 lxc/remote.go:854 lxc/remote.go:950 #, c-format msgid "Remote %s is static and cannot be modified" msgstr "" -#: lxc/remote.go:290 +#: lxc/remote.go:291 msgid "Remote address must not be empty" msgstr "" -#: lxc/remote.go:101 +#: lxc/remote.go:102 msgid "Remote admin password" msgstr "" -#: lxc/remote.go:295 +#: lxc/remote.go:296 msgid "Remote names may not contain colons" msgstr "" -#: lxc/remote.go:102 +#: lxc/remote.go:103 msgid "Remote trust token" msgstr "" @@ -4748,7 +4743,7 @@ msgstr "" msgid "Remove a member from the cluster" msgstr "" -#: lxc/network_zone.go:1285 +#: lxc/network_zone.go:1290 msgid "Remove a network zone record entry" msgstr "" @@ -4756,7 +4751,7 @@ msgstr "" msgid "Remove aliases" msgstr "" -#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1025 +#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1030 msgid "Remove all ports that match" msgstr "" @@ -4764,15 +4759,15 @@ msgstr "" msgid "Remove all rules that match" msgstr "" -#: lxc/network_load_balancer.go:862 +#: lxc/network_load_balancer.go:867 msgid "Remove backend from a load balancer" msgstr "" -#: lxc/network_load_balancer.go:861 +#: lxc/network_load_balancer.go:866 msgid "Remove backends from a load balancer" msgstr "" -#: lxc/network_zone.go:1286 +#: lxc/network_zone.go:1291 msgid "Remove entries from a network zone record" msgstr "" @@ -4796,7 +4791,7 @@ msgstr "" msgid "Remove ports from a forward" msgstr "" -#: lxc/network_load_balancer.go:1023 lxc/network_load_balancer.go:1024 +#: lxc/network_load_balancer.go:1028 lxc/network_load_balancer.go:1029 msgid "Remove ports from a load balancer" msgstr "" @@ -4804,7 +4799,7 @@ msgstr "" msgid "Remove profiles from instances" msgstr "" -#: lxc/remote.go:827 lxc/remote.go:828 +#: lxc/remote.go:828 lxc/remote.go:829 msgid "Remove remotes" msgstr "" @@ -4861,7 +4856,7 @@ msgstr "" msgid "Rename projects" msgstr "" -#: lxc/remote.go:754 lxc/remote.go:755 +#: lxc/remote.go:755 lxc/remote.go:756 msgid "Rename remotes" msgstr "" @@ -4939,7 +4934,7 @@ msgid "Restrict the certificate to one or more projects" msgstr "" #: lxc/console.go:44 -msgid "Retrieve the instance's console log" +msgid "Retrieve the container's console log" msgstr "" #: lxc/init.go:347 @@ -4955,7 +4950,7 @@ msgstr "" msgid "Revoke cluster member join token" msgstr "" -#: lxc/storage_bucket.go:851 +#: lxc/storage_bucket.go:856 msgid "Role (admin or read-only)" msgstr "" @@ -5006,7 +5001,7 @@ msgstr "" msgid "STATE" msgstr "" -#: lxc/remote.go:736 +#: lxc/remote.go:737 msgid "STATIC" msgstr "" @@ -5030,11 +5025,11 @@ msgstr "" msgid "STP" msgstr "" -#: lxc/storage_bucket.go:853 +#: lxc/storage_bucket.go:858 msgid "Secret key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:909 +#: lxc/storage_bucket.go:914 #, c-format msgid "Secret key: %s" msgstr "" @@ -5043,19 +5038,19 @@ msgstr "" msgid "Send a raw query to LXD" msgstr "" -#: lxc/remote.go:104 +#: lxc/remote.go:105 msgid "Server authentication type (tls or oidc)" msgstr "" -#: lxc/remote.go:460 +#: lxc/remote.go:461 msgid "Server certificate NACKed by user" msgstr "" -#: lxc/remote.go:599 +#: lxc/remote.go:600 msgid "Server doesn't trust us after authentication" msgstr "" -#: lxc/remote.go:103 +#: lxc/remote.go:104 msgid "Server protocol (lxd or simplestreams)" msgstr "" @@ -5154,11 +5149,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_load_balancer.go:450 +#: lxc/network_load_balancer.go:455 msgid "Set network load balancer keys" msgstr "" -#: lxc/network_load_balancer.go:451 +#: lxc/network_load_balancer.go:456 msgid "" "Set network load balancer keys\n" "\n" @@ -5180,11 +5175,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:353 +#: lxc/network_zone.go:358 msgid "Set network zone configuration keys" msgstr "" -#: lxc/network_zone.go:354 +#: lxc/network_zone.go:359 msgid "" "Set network zone configuration keys\n" "\n" @@ -5193,7 +5188,7 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:951 lxc/network_zone.go:952 +#: lxc/network_zone.go:956 lxc/network_zone.go:957 msgid "Set network zone record configuration keys" msgstr "" @@ -5223,11 +5218,11 @@ msgid "" " lxc project set [:] " msgstr "" -#: lxc/storage_bucket.go:529 +#: lxc/storage_bucket.go:534 msgid "Set storage bucket configuration keys" msgstr "" -#: lxc/storage_bucket.go:530 +#: lxc/storage_bucket.go:535 msgid "" "Set storage bucket configuration keys\n" "\n" @@ -5262,7 +5257,7 @@ msgid "" " lxc storage volume set [:] [/] " msgstr "" -#: lxc/remote.go:923 lxc/remote.go:924 +#: lxc/remote.go:924 lxc/remote.go:925 msgid "Set the URL for the remote" msgstr "" @@ -5290,7 +5285,7 @@ msgstr "" msgid "Set the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:458 +#: lxc/network_load_balancer.go:463 msgid "Set the key as a network load balancer property" msgstr "" @@ -5302,11 +5297,11 @@ msgstr "" msgid "Set the key as a network property" msgstr "" -#: lxc/network_zone.go:361 +#: lxc/network_zone.go:366 msgid "Set the key as a network zone property" msgstr "" -#: lxc/network_zone.go:957 +#: lxc/network_zone.go:962 msgid "Set the key as a network zone record property" msgstr "" @@ -5318,7 +5313,7 @@ msgstr "" msgid "Set the key as a project property" msgstr "" -#: lxc/storage_bucket.go:537 +#: lxc/storage_bucket.go:542 msgid "Set the key as a storage bucket property" msgstr "" @@ -5338,11 +5333,11 @@ msgstr "" msgid "Setup SSH SFTP listener on address:port instead of mounting" msgstr "" -#: lxc/main.go:97 +#: lxc/main.go:98 msgid "Show all debug messages" msgstr "" -#: lxc/main.go:98 +#: lxc/main.go:99 msgid "Show all information messages" msgstr "" @@ -5411,7 +5406,7 @@ msgstr "" msgid "Show instance or server information" msgstr "" -#: lxc/main.go:271 lxc/main.go:272 +#: lxc/main.go:272 lxc/main.go:273 msgid "Show less common commands" msgstr "" @@ -5443,15 +5438,15 @@ msgstr "" msgid "Show network peer configurations" msgstr "" -#: lxc/network_zone.go:155 lxc/network_zone.go:156 +#: lxc/network_zone.go:156 lxc/network_zone.go:157 msgid "Show network zone configurations" msgstr "" -#: lxc/network_zone.go:758 +#: lxc/network_zone.go:763 msgid "Show network zone record configuration" msgstr "" -#: lxc/network_zone.go:759 +#: lxc/network_zone.go:764 msgid "Show network zone record configurations" msgstr "" @@ -5463,11 +5458,11 @@ msgstr "" msgid "Show project options" msgstr "" -#: lxc/storage_bucket.go:623 lxc/storage_bucket.go:624 +#: lxc/storage_bucket.go:628 lxc/storage_bucket.go:629 msgid "Show storage bucket configurations" msgstr "" -#: lxc/storage_bucket.go:1123 lxc/storage_bucket.go:1124 +#: lxc/storage_bucket.go:1128 lxc/storage_bucket.go:1129 msgid "Show storage bucket key configurations" msgstr "" @@ -5493,7 +5488,7 @@ msgid "" "that are granted via identity provider group mappings. \n" msgstr "" -#: lxc/remote.go:630 lxc/remote.go:631 +#: lxc/remote.go:631 lxc/remote.go:632 msgid "Show the default remote" msgstr "" @@ -5617,22 +5612,22 @@ msgstr "" msgid "Stopping the instance failed: %s" msgstr "" -#: lxc/storage_bucket.go:161 +#: lxc/storage_bucket.go:166 #, c-format msgid "Storage bucket %s created" msgstr "" -#: lxc/storage_bucket.go:228 +#: lxc/storage_bucket.go:233 #, c-format msgid "Storage bucket %s deleted" msgstr "" -#: lxc/storage_bucket.go:907 +#: lxc/storage_bucket.go:912 #, c-format msgid "Storage bucket key %s added" msgstr "" -#: lxc/storage_bucket.go:973 +#: lxc/storage_bucket.go:978 #, c-format msgid "Storage bucket key %s removed" msgstr "" @@ -5705,7 +5700,7 @@ msgstr "" msgid "Switch the current project" msgstr "" -#: lxc/remote.go:883 lxc/remote.go:884 +#: lxc/remote.go:884 lxc/remote.go:885 msgid "Switch the default remote" msgstr "" @@ -5820,7 +5815,7 @@ msgstr "" msgid "The property %q does not exist on the instance snapshot %s/%s: %v" msgstr "" -#: lxc/network_load_balancer.go:424 +#: lxc/network_load_balancer.go:429 #, c-format msgid "The property %q does not exist on the load balancer %q: %v" msgstr "" @@ -5845,12 +5840,12 @@ msgstr "" msgid "The property %q does not exist on the network peer %q: %v" msgstr "" -#: lxc/network_zone.go:246 +#: lxc/network_zone.go:247 #, c-format msgid "The property %q does not exist on the network zone %q: %v" msgstr "" -#: lxc/network_zone.go:845 +#: lxc/network_zone.go:850 #, c-format msgid "The property %q does not exist on the network zone record %q: %v" msgstr "" @@ -5865,7 +5860,7 @@ msgstr "" msgid "The property %q does not exist on the project %q: %v" msgstr "" -#: lxc/storage_bucket.go:426 +#: lxc/storage_bucket.go:431 #, c-format msgid "The property %q does not exist on the storage bucket %q: %v" msgstr "" @@ -5919,7 +5914,7 @@ msgstr "" msgid "This LXD server is not available on the network" msgstr "" -#: lxc/main.go:293 +#: lxc/main.go:294 msgid "" "This client hasn't been configured to use a remote LXD server yet.\n" "As your platform can't run native Linux instances, you must connect to a " @@ -5951,11 +5946,11 @@ msgstr "" msgid "To create a new network, use: lxc network create" msgstr "" -#: lxc/console.go:210 +#: lxc/console.go:215 msgid "To detach from the console, press: +a q" msgstr "" -#: lxc/main.go:403 +#: lxc/main.go:406 msgid "" "To start your first container, try: lxc launch ubuntu:24.04\n" "Or for a virtual machine: lxc launch ubuntu:24.04 --vm" @@ -6053,7 +6048,7 @@ msgstr "" msgid "UPLOAD DATE" msgstr "" -#: lxc/cluster.go:184 lxc/remote.go:732 +#: lxc/cluster.go:184 lxc/remote.go:733 msgid "URL" msgstr "" @@ -6062,7 +6057,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:679 lxc/project.go:506 +#: lxc/network_zone.go:141 lxc/profile.go:679 lxc/project.go:506 #: lxc/storage.go:647 lxc/storage_volume.go:1564 msgid "USED BY" msgstr "" @@ -6081,7 +6076,7 @@ msgstr "" msgid "Unable to create a temporary file: %v" msgstr "" -#: lxc/remote.go:213 lxc/remote.go:247 +#: lxc/remote.go:214 lxc/remote.go:248 msgid "Unavailable remote server" msgstr "" @@ -6101,7 +6096,7 @@ msgstr "" msgid "Unknown column shorthand char '%c' in '%s'" msgstr "" -#: lxc/console.go:159 +#: lxc/console.go:164 #, c-format msgid "Unknown console type %q" msgstr "" @@ -6161,11 +6156,11 @@ msgstr "" msgid "Unset network forward keys" msgstr "" -#: lxc/network_load_balancer.go:548 +#: lxc/network_load_balancer.go:553 msgid "Unset network load balancer configuration keys" msgstr "" -#: lxc/network_load_balancer.go:549 +#: lxc/network_load_balancer.go:554 msgid "Unset network load balancer keys" msgstr "" @@ -6177,11 +6172,11 @@ msgstr "" msgid "Unset network peer keys" msgstr "" -#: lxc/network_zone.go:433 lxc/network_zone.go:434 +#: lxc/network_zone.go:438 lxc/network_zone.go:439 msgid "Unset network zone configuration keys" msgstr "" -#: lxc/network_zone.go:1027 lxc/network_zone.go:1028 +#: lxc/network_zone.go:1032 lxc/network_zone.go:1033 msgid "Unset network zone record configuration keys" msgstr "" @@ -6193,7 +6188,7 @@ msgstr "" msgid "Unset project configuration keys" msgstr "" -#: lxc/storage_bucket.go:692 lxc/storage_bucket.go:693 +#: lxc/storage_bucket.go:697 lxc/storage_bucket.go:698 msgid "Unset storage bucket configuration keys" msgstr "" @@ -6217,7 +6212,7 @@ msgstr "" msgid "Unset the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:552 +#: lxc/network_load_balancer.go:557 msgid "Unset the key as a network load balancer property" msgstr "" @@ -6229,11 +6224,11 @@ msgstr "" msgid "Unset the key as a network property" msgstr "" -#: lxc/network_zone.go:437 +#: lxc/network_zone.go:442 msgid "Unset the key as a network zone property" msgstr "" -#: lxc/network_zone.go:1031 +#: lxc/network_zone.go:1036 msgid "Unset the key as a network zone record property" msgstr "" @@ -6245,7 +6240,7 @@ msgstr "" msgid "Unset the key as a project property" msgstr "" -#: lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:701 msgid "Unset the key as a storage bucket property" msgstr "" @@ -6307,7 +6302,7 @@ msgid "" "Use storage driver optimized format (can only be restored on a similar pool)" msgstr "" -#: lxc/main.go:100 +#: lxc/main.go:101 msgid "Use with help or --help to view sub-commands" msgstr "" @@ -6404,7 +6399,7 @@ msgstr "" #: lxc/network.go:959 lxc/operation.go:156 lxc/project.go:458 #: lxc/project.go:463 lxc/project.go:468 lxc/project.go:473 lxc/project.go:478 -#: lxc/project.go:483 lxc/remote.go:693 lxc/remote.go:698 lxc/remote.go:703 +#: lxc/project.go:483 lxc/remote.go:694 lxc/remote.go:699 lxc/remote.go:704 msgid "YES" msgstr "" @@ -6439,7 +6434,7 @@ 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/network.go:909 lxc/network_acl.go:91 lxc/network_zone.go:83 #: 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 "[:]" @@ -6502,19 +6497,19 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:154 lxc/network_zone.go:463 lxc/network_zone.go:581 +#: lxc/network_zone.go:155 lxc/network_zone.go:468 lxc/network_zone.go:586 msgid "[:]" msgstr "" -#: lxc/network_zone.go:209 lxc/network_zone.go:432 +#: lxc/network_zone.go:210 lxc/network_zone.go:437 msgid "[:] " msgstr "" -#: lxc/network_zone.go:352 +#: lxc/network_zone.go:357 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:269 +#: lxc/network_zone.go:270 msgid "[:] [key=value...]" msgstr "" @@ -6760,30 +6755,30 @@ msgstr "" #: lxc/network_forward.go:169 lxc/network_forward.go:574 #: lxc/network_forward.go:715 lxc/network_load_balancer.go:171 -#: lxc/network_load_balancer.go:577 lxc/network_load_balancer.go:719 +#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:724 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:860 +#: lxc/network_load_balancer.go:865 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:796 +#: lxc/network_load_balancer.go:801 msgid "" "[:] " "[]" msgstr "" #: lxc/network_forward.go:377 lxc/network_forward.go:544 -#: lxc/network_load_balancer.go:381 lxc/network_load_balancer.go:547 +#: lxc/network_load_balancer.go:386 lxc/network_load_balancer.go:552 msgid "[:] " msgstr "" -#: lxc/network_forward.go:446 lxc/network_load_balancer.go:449 +#: lxc/network_forward.go:446 lxc/network_load_balancer.go:454 msgid "[:] =..." msgstr "" -#: lxc/network_load_balancer.go:961 +#: lxc/network_load_balancer.go:966 msgid "" "[:] " "[,...]" @@ -6795,7 +6790,7 @@ msgid "" " []" msgstr "" -#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1022 +#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1027 msgid "[:] [] []" msgstr "" @@ -6846,7 +6841,7 @@ msgid "[:]" msgstr "" #: lxc/storage.go:167 lxc/storage.go:218 lxc/storage.go:412 lxc/storage.go:759 -#: lxc/storage_bucket.go:449 +#: lxc/storage_bucket.go:454 msgid "[:]" msgstr "" @@ -6854,18 +6849,18 @@ msgstr "" msgid "[:] []" msgstr "" -#: lxc/storage_bucket.go:180 lxc/storage_bucket.go:242 -#: lxc/storage_bucket.go:622 lxc/storage_bucket.go:764 +#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:247 +#: lxc/storage_bucket.go:627 lxc/storage_bucket.go:769 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:375 lxc/storage_bucket.go:691 -#: lxc/storage_bucket.go:845 lxc/storage_bucket.go:923 -#: lxc/storage_bucket.go:987 lxc/storage_bucket.go:1122 +#: lxc/storage_bucket.go:380 lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:850 lxc/storage_bucket.go:928 +#: lxc/storage_bucket.go:992 lxc/storage_bucket.go:1127 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:528 +#: lxc/storage_bucket.go:533 msgid "[:] =..." msgstr "" @@ -7009,27 +7004,27 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:686 +#: lxc/network_zone.go:691 msgid "[:]" msgstr "" -#: lxc/network_zone.go:757 lxc/network_zone.go:1056 lxc/network_zone.go:1173 +#: lxc/network_zone.go:762 lxc/network_zone.go:1061 lxc/network_zone.go:1178 msgid "[:] " msgstr "" -#: lxc/network_zone.go:809 lxc/network_zone.go:1026 +#: lxc/network_zone.go:814 lxc/network_zone.go:1031 msgid "[:] " msgstr "" -#: lxc/network_zone.go:950 +#: lxc/network_zone.go:955 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:1238 lxc/network_zone.go:1284 +#: lxc/network_zone.go:1243 lxc/network_zone.go:1289 msgid "[:] " msgstr "" -#: lxc/network_zone.go:868 +#: lxc/network_zone.go:873 msgid "[:] [key=value...]" msgstr "" @@ -7053,7 +7048,7 @@ msgstr "" msgid "[:][] [...]" msgstr "" -#: lxc/remote.go:88 +#: lxc/remote.go:89 msgid "[] " msgstr "" @@ -7061,7 +7056,7 @@ msgstr "" msgid "[[:]]" msgstr "" -#: lxc/project.go:488 lxc/remote.go:722 +#: lxc/project.go:488 lxc/remote.go:723 msgid "current" msgstr "" @@ -7324,6 +7319,23 @@ msgid "" " Create a new OVN network called bar using baz as its uplink network" msgstr "" +#: lxc/network_load_balancer.go:239 +msgid "" +"lxc network load-balancer create n1 127.0.0.1\n" +"\n" +"lxc network load-balancer create n1 127.0.0.1 < config.yaml\n" +" Create network load-balancer for network n1 with configuration from " +"config.yaml" +msgstr "" + +#: lxc/network_zone.go:273 +msgid "" +"lxc network zone create z1\n" +"\n" +"lxc network zone create z1 < config.yaml\n" +" Create network zone z1 with configuration from config.yaml" +msgstr "" + #: lxc/operation.go:195 msgid "" "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n" @@ -7394,26 +7406,36 @@ msgid "" " Restore the snapshot." msgstr "" -#: lxc/storage_bucket.go:245 +#: lxc/storage_bucket.go:84 +msgid "" +"lxc storage bucket create p1 b01\n" +"\tCreate a new storage bucket name b01 in storage pool p1\n" +"\n" +"lxc storage bucket create p1 b01 < config.yaml\n" +"\tCreate a new storage bucket name b01 in storage pool p1 using the content " +"of config.yaml" +msgstr "" + +#: lxc/storage_bucket.go:250 msgid "" "lxc storage bucket edit [:] < bucket.yaml\n" " Update a storage bucket using the content of bucket.yaml." msgstr "" -#: lxc/storage_bucket.go:990 +#: lxc/storage_bucket.go:995 msgid "" "lxc storage bucket edit [:] < key.yaml\n" " Update a storage bucket key using the content of key.yaml." msgstr "" -#: lxc/storage_bucket.go:1125 +#: lxc/storage_bucket.go:1130 msgid "" "lxc storage bucket key show default data foo\n" " Will show the properties of a bucket key called \"foo\" for a bucket " "called \"data\" in the \"default\" pool." msgstr "" -#: lxc/storage_bucket.go:625 +#: lxc/storage_bucket.go:630 msgid "" "lxc storage bucket show default data\n" " Will show the properties of a bucket called \"data\" in the \"default\" " @@ -7432,7 +7454,7 @@ msgid "" "\t\tCreate a new custom volume using backup0.tar.gz as the source." msgstr "" -#: lxc/remote.go:459 +#: lxc/remote.go:460 msgid "n" msgstr "" @@ -7444,7 +7466,7 @@ msgstr "" msgid "no" msgstr "" -#: lxc/remote.go:452 +#: lxc/remote.go:453 msgid "ok (y/n/[fingerprint])?" msgstr "" @@ -7481,7 +7503,7 @@ msgstr "" msgid "used by" msgstr "" -#: lxc/remote.go:461 +#: lxc/remote.go:462 msgid "y" msgstr "" diff --git a/po/nl.po b/po/nl.po index da6ed3d7f1f9..47f4e5817aeb 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-08-20 09:31+0100\n" +"POT-Creation-Date: 2024-08-30 09:27+0100\n" "PO-Revision-Date: 2022-03-10 15:06+0000\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch " msgstr "" -#: lxc/remote.go:825 lxc/remote.go:882 +#: lxc/remote.go:826 lxc/remote.go:883 msgid "" msgstr "" -#: lxc/remote.go:922 +#: lxc/remote.go:923 msgid " " msgstr "" -#: lxc/remote.go:752 +#: lxc/remote.go:753 msgid " " msgstr "" @@ -780,7 +780,7 @@ msgstr "" msgid "ARCHITECTURE" msgstr "ARCHITECTUUR" -#: lxc/remote.go:734 +#: lxc/remote.go:735 msgid "AUTH TYPE" msgstr "" @@ -788,15 +788,15 @@ msgstr "" msgid "AUTHENTICATION METHOD" msgstr "" -#: lxc/remote.go:100 +#: lxc/remote.go:101 msgid "Accept certificate" msgstr "" -#: lxc/storage_bucket.go:852 +#: lxc/storage_bucket.go:857 msgid "Access key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:908 +#: lxc/storage_bucket.go:913 #, c-format msgid "Access key: %s" msgstr "" @@ -830,19 +830,19 @@ msgstr "" msgid "Add a group to an identity provider group" msgstr "" -#: lxc/network_zone.go:1239 +#: lxc/network_zone.go:1244 msgid "Add a network zone record entry" msgstr "" -#: lxc/network_load_balancer.go:798 +#: lxc/network_load_balancer.go:803 msgid "Add backend to a load balancer" msgstr "" -#: lxc/network_load_balancer.go:797 +#: lxc/network_load_balancer.go:802 msgid "Add backends to a load balancer" msgstr "" -#: lxc/network_zone.go:1240 +#: lxc/network_zone.go:1245 msgid "Add entries to a network zone record" msgstr "" @@ -858,11 +858,11 @@ msgstr "" msgid "Add new aliases" msgstr "" -#: lxc/remote.go:89 +#: lxc/remote.go:90 msgid "Add new remote servers" msgstr "" -#: lxc/remote.go:90 +#: lxc/remote.go:91 msgid "" "Add new remote servers\n" "\n" @@ -903,7 +903,7 @@ msgstr "" msgid "Add ports to a forward" msgstr "" -#: lxc/network_load_balancer.go:962 lxc/network_load_balancer.go:963 +#: lxc/network_load_balancer.go:967 lxc/network_load_balancer.go:968 msgid "Add ports to a load balancer" msgstr "" @@ -924,17 +924,17 @@ msgstr "" msgid "Address: %s" msgstr "" -#: lxc/storage_bucket.go:164 +#: lxc/storage_bucket.go:169 #, c-format msgid "Admin access key: %s" msgstr "" -#: lxc/remote.go:566 +#: lxc/remote.go:567 #, c-format msgid "Admin password (or token) for %s:" msgstr "" -#: lxc/storage_bucket.go:165 +#: lxc/storage_bucket.go:170 #, c-format msgid "Admin secret key: %s" msgstr "" @@ -966,7 +966,7 @@ msgstr "" msgid "All projects" msgstr "" -#: lxc/remote.go:181 +#: lxc/remote.go:182 msgid "All server addresses are unavailable" msgstr "" @@ -989,7 +989,7 @@ msgstr "" msgid "Are you sure you want to %s cluster member %q? (yes/no) [default=no]: " msgstr "" -#: lxc/console.go:383 +#: lxc/console.go:388 msgid "As neither could be found, the raw SPICE socket can be found at:" msgstr "" @@ -1037,7 +1037,7 @@ msgid "" "as well as retrieve past log entries from it." msgstr "" -#: lxc/remote.go:548 +#: lxc/remote.go:549 #, c-format msgid "Authentication type '%s' not supported by server" msgstr "" @@ -1056,11 +1056,11 @@ msgstr "" msgid "Auto update: %s" msgstr "" -#: lxc/network_forward.go:240 lxc/network_load_balancer.go:242 +#: lxc/network_forward.go:240 lxc/network_load_balancer.go:247 msgid "Auto-allocate an IPv4 or IPv6 listen address. One of 'ipv4', 'ipv6'." msgstr "" -#: lxc/remote.go:136 +#: lxc/remote.go:137 msgid "Available projects:" msgstr "" @@ -1092,8 +1092,8 @@ msgid "Bad device override syntax, expecting ,=: %s" msgstr "" #: lxc/network.go:333 lxc/network_acl.go:382 lxc/network_forward.go:293 -#: lxc/network_load_balancer.go:296 lxc/network_peer.go:280 -#: lxc/network_zone.go:324 lxc/network_zone.go:922 lxc/storage_bucket.go:136 +#: lxc/network_load_balancer.go:301 lxc/network_peer.go:280 +#: lxc/network_zone.go:329 lxc/network_zone.go:927 lxc/storage_bucket.go:141 #, c-format msgid "Bad key/value pair: %s" msgstr "" @@ -1215,7 +1215,7 @@ msgstr "" msgid "Can't read from stdin: %w" msgstr "" -#: lxc/remote.go:861 +#: lxc/remote.go:862 msgid "Can't remove the default remote" msgstr "" @@ -1281,15 +1281,14 @@ msgstr "" msgid "Certificate add token for %s deleted" msgstr "" -#: lxc/remote.go:218 -#, c-format -msgid "" -"Certificate fingerprint mismatch between certificate token and server %q" +#: lxc/remote.go:452 +msgid "Certificate fingerprint" msgstr "" -#: lxc/remote.go:451 +#: lxc/remote.go:219 #, c-format -msgid "Certificate fingerprint: %s" +msgid "" +"Certificate fingerprint mismatch between certificate token and server %q" msgstr "" #: lxc/network.go:893 @@ -1301,7 +1300,7 @@ msgstr "" msgid "Client %s certificate add token:" msgstr "" -#: lxc/remote.go:603 +#: lxc/remote.go:604 msgid "Client certificate now trusted by server:" msgstr "" @@ -1363,18 +1362,18 @@ msgstr "" #: lxc/network_forward.go:456 lxc/network_forward.go:579 #: lxc/network_forward.go:721 lxc/network_forward.go:798 #: lxc/network_forward.go:864 lxc/network_load_balancer.go:176 -#: lxc/network_load_balancer.go:241 lxc/network_load_balancer.go:459 -#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:725 -#: lxc/network_load_balancer.go:801 lxc/network_load_balancer.go:865 -#: lxc/network_load_balancer.go:966 lxc/network_load_balancer.go:1028 +#: lxc/network_load_balancer.go:246 lxc/network_load_balancer.go:464 +#: lxc/network_load_balancer.go:587 lxc/network_load_balancer.go:730 +#: lxc/network_load_balancer.go:806 lxc/network_load_balancer.go:870 +#: lxc/network_load_balancer.go:971 lxc/network_load_balancer.go:1033 #: lxc/storage.go:99 lxc/storage.go:347 lxc/storage.go:418 lxc/storage.go:671 -#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:85 -#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:248 -#: lxc/storage_bucket.go:379 lxc/storage_bucket.go:536 -#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:695 -#: lxc/storage_bucket.go:770 lxc/storage_bucket.go:850 -#: lxc/storage_bucket.go:928 lxc/storage_bucket.go:993 -#: lxc/storage_bucket.go:1129 lxc/storage_volume.go:358 +#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:90 +#: lxc/storage_bucket.go:190 lxc/storage_bucket.go:253 +#: lxc/storage_bucket.go:384 lxc/storage_bucket.go:541 +#: lxc/storage_bucket.go:634 lxc/storage_bucket.go:700 +#: lxc/storage_bucket.go:775 lxc/storage_bucket.go:855 +#: lxc/storage_bucket.go:933 lxc/storage_bucket.go:998 +#: lxc/storage_bucket.go:1134 lxc/storage_volume.go:358 #: lxc/storage_volume.go:560 lxc/storage_volume.go:639 #: lxc/storage_volume.go:883 lxc/storage_volume.go:1097 #: lxc/storage_volume.go:1210 lxc/storage_volume.go:1678 @@ -1402,11 +1401,11 @@ msgstr "" msgid "Columns" msgstr "" -#: lxc/main.go:81 +#: lxc/main.go:82 msgid "Command line client for LXD" msgstr "" -#: lxc/main.go:82 +#: lxc/main.go:83 msgid "" "Command line client for LXD\n" "\n" @@ -1438,19 +1437,15 @@ msgstr "" #: lxc/config.go:347 lxc/config.go:1277 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/network_load_balancer.go:694 lxc/network_peer.go:610 +#: lxc/network_zone.go:556 lxc/network_zone.go:1148 lxc/profile.go:538 +#: lxc/project.go:315 lxc/storage.go:310 lxc/storage_bucket.go:348 +#: lxc/storage_bucket.go:1097 lxc/storage_volume.go:1016 #: lxc/storage_volume.go:1048 #, c-format msgid "Config parsing error: %s" msgstr "" -#: lxc/console.go:140 -msgid "Console log:" -msgstr "" - #: lxc/storage_volume.go:561 msgid "Content type, block or filesystem" msgstr "" @@ -1553,12 +1548,12 @@ msgstr "" msgid "Cores:" msgstr "" -#: lxc/remote.go:486 +#: lxc/remote.go:487 #, c-format msgid "Could not close server cert file %q: %w" msgstr "" -#: lxc/remote.go:224 lxc/remote.go:470 +#: lxc/remote.go:225 lxc/remote.go:471 msgid "Could not create server cert dir" msgstr "" @@ -1597,12 +1592,12 @@ msgstr "" msgid "Could not write new remote certificate for remote '%s' with error: %v" msgstr "" -#: lxc/remote.go:481 +#: lxc/remote.go:482 #, c-format msgid "Could not write server cert file %q: %w" msgstr "" -#: lxc/network_zone.go:1327 +#: lxc/network_zone.go:1332 msgid "Couldn't find a matching entry" msgstr "" @@ -1654,7 +1649,7 @@ msgstr "" msgid "Create instances from images" msgstr "" -#: lxc/storage_bucket.go:846 lxc/storage_bucket.go:847 +#: lxc/storage_bucket.go:851 lxc/storage_bucket.go:852 msgid "Create key for a storage bucket" msgstr "" @@ -1686,11 +1681,11 @@ msgstr "" msgid "Create new network peering" msgstr "" -#: lxc/network_zone.go:869 lxc/network_zone.go:870 +#: lxc/network_zone.go:874 lxc/network_zone.go:875 msgid "Create new network zone record" msgstr "" -#: lxc/network_zone.go:270 lxc/network_zone.go:271 +#: lxc/network_zone.go:271 lxc/network_zone.go:272 msgid "Create new network zones" msgstr "" @@ -1741,9 +1736,9 @@ msgstr "" #: 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/network_zone.go:140 lxc/network_zone.go:747 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_bucket.go:512 lxc/storage_bucket.go:832 #: lxc/storage_volume.go:1562 msgid "DESCRIPTION" msgstr "" @@ -1808,7 +1803,7 @@ msgstr "" msgid "Delete instances and snapshots" msgstr "" -#: lxc/storage_bucket.go:924 lxc/storage_bucket.go:925 +#: lxc/storage_bucket.go:929 lxc/storage_bucket.go:930 msgid "Delete key from a storage bucket" msgstr "" @@ -1820,7 +1815,7 @@ msgstr "" msgid "Delete network forwards" msgstr "" -#: lxc/network_load_balancer.go:721 lxc/network_load_balancer.go:722 +#: lxc/network_load_balancer.go:726 lxc/network_load_balancer.go:727 msgid "Delete network load balancers" msgstr "" @@ -1828,11 +1823,11 @@ msgstr "" msgid "Delete network peerings" msgstr "" -#: lxc/network_zone.go:1175 lxc/network_zone.go:1176 +#: lxc/network_zone.go:1180 lxc/network_zone.go:1181 msgid "Delete network zone record" msgstr "" -#: lxc/network_zone.go:583 lxc/network_zone.go:584 +#: lxc/network_zone.go:588 lxc/network_zone.go:589 msgid "Delete network zones" msgstr "" @@ -1848,7 +1843,7 @@ msgstr "" msgid "Delete projects" msgstr "" -#: lxc/storage_bucket.go:182 lxc/storage_bucket.go:183 +#: lxc/storage_bucket.go:187 lxc/storage_bucket.go:188 msgid "Delete storage buckets" msgstr "" @@ -1904,7 +1899,7 @@ msgstr "" #: 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/info.go:32 lxc/init.go:43 lxc/launch.go:24 lxc/list.go:48 lxc/main.go:83 #: 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 @@ -1923,22 +1918,22 @@ msgstr "" #: 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_load_balancer.go:238 lxc/network_load_balancer.go:388 +#: lxc/network_load_balancer.go:456 lxc/network_load_balancer.go:554 +#: lxc/network_load_balancer.go:584 lxc/network_load_balancer.go:727 +#: lxc/network_load_balancer.go:788 lxc/network_load_balancer.go:803 +#: lxc/network_load_balancer.go:867 lxc/network_load_balancer.go:953 +#: lxc/network_load_balancer.go:968 lxc/network_load_balancer.go:1029 #: 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/network_zone.go:29 lxc/network_zone.go:86 lxc/network_zone.go:157 +#: lxc/network_zone.go:212 lxc/network_zone.go:272 lxc/network_zone.go:359 +#: lxc/network_zone.go:439 lxc/network_zone.go:470 lxc/network_zone.go:589 +#: lxc/network_zone.go:637 lxc/network_zone.go:694 lxc/network_zone.go:764 +#: lxc/network_zone.go:816 lxc/network_zone.go:875 lxc/network_zone.go:957 +#: lxc/network_zone.go:1033 lxc/network_zone.go:1063 lxc/network_zone.go:1181 +#: lxc/network_zone.go:1230 lxc/network_zone.go:1245 lxc/network_zone.go:1291 #: 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 @@ -1947,19 +1942,19 @@ msgstr "" #: 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:631 lxc/remote.go:669 lxc/remote.go:755 lxc/remote.go:828 -#: lxc/remote.go:884 lxc/remote.go:924 lxc/rename.go:21 lxc/restore.go:24 +#: lxc/query.go:34 lxc/rebuild.go:27 lxc/remote.go:35 lxc/remote.go:91 +#: lxc/remote.go:632 lxc/remote.go:670 lxc/remote.go:756 lxc/remote.go:829 +#: lxc/remote.go:885 lxc/remote.go:925 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_bucket.go:29 lxc/storage_bucket.go:83 lxc/storage_bucket.go:188 +#: lxc/storage_bucket.go:249 lxc/storage_bucket.go:382 +#: lxc/storage_bucket.go:458 lxc/storage_bucket.go:535 +#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:698 +#: lxc/storage_bucket.go:732 lxc/storage_bucket.go:773 +#: lxc/storage_bucket.go:852 lxc/storage_bucket.go:930 +#: lxc/storage_bucket.go:994 lxc/storage_bucket.go:1129 #: 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 @@ -2095,7 +2090,7 @@ msgstr "" msgid "Don't require user confirmation for using --force" msgstr "" -#: lxc/main.go:99 +#: lxc/main.go:100 msgid "Don't show progress information" msgstr "" @@ -2108,7 +2103,7 @@ msgstr "" msgid "Driver: %v (%v)" msgstr "" -#: lxc/network_zone.go:743 +#: lxc/network_zone.go:748 msgid "ENTRIES" msgstr "" @@ -2186,7 +2181,7 @@ msgstr "" msgid "Edit network forward configurations as YAML" msgstr "" -#: lxc/network_load_balancer.go:578 lxc/network_load_balancer.go:579 +#: lxc/network_load_balancer.go:583 lxc/network_load_balancer.go:584 msgid "Edit network load balancer configurations as YAML" msgstr "" @@ -2194,11 +2189,11 @@ msgstr "" msgid "Edit network peer configurations as YAML" msgstr "" -#: lxc/network_zone.go:464 lxc/network_zone.go:465 +#: lxc/network_zone.go:469 lxc/network_zone.go:470 msgid "Edit network zone configurations as YAML" msgstr "" -#: lxc/network_zone.go:1057 lxc/network_zone.go:1058 +#: lxc/network_zone.go:1062 lxc/network_zone.go:1063 msgid "Edit network zone record configurations as YAML" msgstr "" @@ -2210,11 +2205,11 @@ msgstr "" msgid "Edit project configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:243 lxc/storage_bucket.go:244 +#: lxc/storage_bucket.go:248 lxc/storage_bucket.go:249 msgid "Edit storage bucket configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:988 lxc/storage_bucket.go:989 +#: lxc/storage_bucket.go:993 lxc/storage_bucket.go:994 msgid "Edit storage bucket key as YAML" msgstr "" @@ -2255,7 +2250,7 @@ msgid "" " for the address if not yet set." msgstr "" -#: lxc/network_zone.go:1242 +#: lxc/network_zone.go:1247 msgid "Entry TTL" msgstr "" @@ -2284,9 +2279,9 @@ msgstr "" #: lxc/cluster.go:414 lxc/config.go:624 lxc/config.go:656 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/network_load_balancer.go:527 lxc/network_peer.go:463 +#: lxc/network_zone.go:414 lxc/network_zone.go:1008 lxc/profile.go:876 +#: lxc/project.go:634 lxc/storage.go:727 lxc/storage_bucket.go:602 #: lxc/storage_volume.go:1947 lxc/storage_volume.go:1985 #, c-format msgid "Error setting properties: %v" @@ -2298,10 +2293,10 @@ 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/network_forward.go:513 lxc/network_load_balancer.go:521 +#: lxc/network_peer.go:457 lxc/network_zone.go:408 lxc/network_zone.go:1002 #: lxc/profile.go:870 lxc/project.go:628 lxc/storage.go:721 -#: lxc/storage_bucket.go:591 lxc/storage_volume.go:1941 +#: lxc/storage_bucket.go:596 lxc/storage_volume.go:1941 #: lxc/storage_volume.go:1979 #, c-format msgid "Error unsetting property: %v" @@ -2487,7 +2482,7 @@ msgstr "" msgid "Failed parsing SSH host key: %w" msgstr "" -#: lxc/console.go:361 +#: lxc/console.go:366 #, c-format msgid "Failed starting command: %w" msgstr "" @@ -2502,11 +2497,11 @@ msgstr "" msgid "Failed to accept incoming connection: %w" msgstr "" -#: lxc/remote.go:190 +#: lxc/remote.go:191 msgid "Failed to add remote" msgstr "" -#: lxc/remote.go:241 +#: lxc/remote.go:242 #, c-format msgid "Failed to close server cert file %q: %w" msgstr "" @@ -2516,7 +2511,7 @@ msgstr "" msgid "Failed to connect to cluster member: %w" msgstr "" -#: lxc/remote.go:231 +#: lxc/remote.go:232 #, c-format msgid "Failed to create %q: %w" msgstr "" @@ -2526,12 +2521,12 @@ msgstr "" msgid "Failed to create alias %s: %w" msgstr "" -#: lxc/remote.go:256 +#: lxc/remote.go:257 #, c-format msgid "Failed to create certificate: %w" msgstr "" -#: lxc/remote.go:263 +#: lxc/remote.go:264 #, c-format msgid "Failed to find project: %w" msgstr "" @@ -2556,7 +2551,7 @@ msgstr "" msgid "Failed to walk path for %s: %s" msgstr "" -#: lxc/remote.go:236 +#: lxc/remote.go:237 #, c-format msgid "Failed to write server cert file %q: %w" msgstr "" @@ -2565,7 +2560,7 @@ msgstr "" msgid "Fast mode (same as --columns=nsacPt)" msgstr "" -#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:115 +#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:116 #: lxc/operation.go:136 msgid "Filtering isn't supported yet" msgstr "" @@ -2603,7 +2598,7 @@ msgstr "" msgid "Force the removal of running instances" msgstr "" -#: lxc/main.go:95 +#: lxc/main.go:96 msgid "Force using the local unix socket" msgstr "" @@ -2637,10 +2632,10 @@ msgstr "" #: 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/network_peer.go:84 lxc/network_zone.go:89 lxc/network_zone.go:697 #: lxc/operation.go:108 lxc/profile.go:637 lxc/project.go:412 -#: lxc/project.go:804 lxc/remote.go:673 lxc/storage.go:588 -#: lxc/storage_bucket.go:454 lxc/storage_bucket.go:769 +#: lxc/project.go:804 lxc/remote.go:674 lxc/storage.go:588 +#: lxc/storage_bucket.go:459 lxc/storage_bucket.go:774 #: lxc/storage_volume.go:1446 lxc/warning.go:93 msgid "Format (csv|json|table|yaml|compact)" msgstr "" @@ -2677,7 +2672,7 @@ msgstr "" msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)" msgstr "" -#: lxc/remote.go:737 +#: lxc/remote.go:738 msgid "GLOBAL" msgstr "" @@ -2697,7 +2692,7 @@ msgstr "" msgid "Generate manpages for all commands" msgstr "" -#: lxc/remote.go:159 lxc/remote.go:397 +#: lxc/remote.go:160 lxc/remote.go:398 msgid "Generating a client certificate. This may take a minute..." msgstr "" @@ -2729,7 +2724,7 @@ msgstr "" msgid "Get the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:386 +#: lxc/network_load_balancer.go:391 msgid "Get the key as a network load balancer property" msgstr "" @@ -2741,11 +2736,11 @@ msgstr "" msgid "Get the key as a network property" msgstr "" -#: lxc/network_zone.go:214 +#: lxc/network_zone.go:215 msgid "Get the key as a network zone property" msgstr "" -#: lxc/network_zone.go:814 +#: lxc/network_zone.go:819 msgid "Get the key as a network zone record property" msgstr "" @@ -2757,7 +2752,7 @@ msgstr "" msgid "Get the key as a project property" msgstr "" -#: lxc/storage_bucket.go:380 +#: lxc/storage_bucket.go:385 msgid "Get the key as a storage bucket property" msgstr "" @@ -2797,7 +2792,7 @@ msgstr "" msgid "Get values for network forward configuration keys" msgstr "" -#: lxc/network_load_balancer.go:382 lxc/network_load_balancer.go:383 +#: lxc/network_load_balancer.go:387 lxc/network_load_balancer.go:388 msgid "Get values for network load balancer configuration keys" msgstr "" @@ -2805,11 +2800,11 @@ msgstr "" msgid "Get values for network peer configuration keys" msgstr "" -#: lxc/network_zone.go:210 lxc/network_zone.go:211 +#: lxc/network_zone.go:211 lxc/network_zone.go:212 msgid "Get values for network zone configuration keys" msgstr "" -#: lxc/network_zone.go:810 lxc/network_zone.go:811 +#: lxc/network_zone.go:815 lxc/network_zone.go:816 msgid "Get values for network zone record configuration keys" msgstr "" @@ -2821,7 +2816,7 @@ msgstr "" msgid "Get values for project configuration keys" msgstr "" -#: lxc/storage_bucket.go:376 lxc/storage_bucket.go:377 +#: lxc/storage_bucket.go:381 lxc/storage_bucket.go:382 msgid "Get values for storage bucket configuration keys" msgstr "" @@ -2961,7 +2956,7 @@ msgstr "" msgid "If the snapshot name already exists, delete and create a new one" msgstr "" -#: lxc/main.go:398 +#: lxc/main.go:400 msgid "" "If this is your first time running LXD on this machine, you should also run: " "lxd init" @@ -3118,7 +3113,7 @@ msgstr "" msgid "Instance type" msgstr "" -#: lxc/remote.go:349 +#: lxc/remote.go:350 #, c-format msgid "Invalid URL scheme \"%s\" in \"%s\"" msgstr "" @@ -3190,7 +3185,7 @@ msgstr "" msgid "Invalid new snapshot name, parent volume must be the same as source" msgstr "" -#: lxc/main.go:498 +#: lxc/main.go:502 msgid "Invalid number of arguments" msgstr "" @@ -3199,7 +3194,7 @@ msgstr "" msgid "Invalid path %s" msgstr "" -#: lxc/remote.go:338 +#: lxc/remote.go:339 #, c-format msgid "Invalid protocol: %s" msgstr "" @@ -3247,7 +3242,7 @@ msgstr "" #: lxc/list.go:597 lxc/network.go:1059 lxc/network_forward.go:155 #: lxc/network_load_balancer.go:157 lxc/operation.go:177 -#: lxc/storage_bucket.go:511 lxc/storage_volume.go:1569 lxc/warning.go:220 +#: lxc/storage_bucket.go:516 lxc/storage_volume.go:1569 lxc/warning.go:220 msgid "LOCATION" msgstr "" @@ -3255,7 +3250,7 @@ msgstr "" msgid "LXD - Command line client" msgstr "" -#: lxc/console.go:382 +#: lxc/console.go:387 msgid "LXD automatically uses either spicy or remote-viewer when present." msgstr "" @@ -3345,15 +3340,15 @@ msgstr "" msgid "List available network peers" msgstr "" -#: lxc/network_zone.go:85 +#: lxc/network_zone.go:86 msgid "List available network zone" msgstr "" -#: lxc/network_zone.go:688 lxc/network_zone.go:689 +#: lxc/network_zone.go:693 lxc/network_zone.go:694 msgid "List available network zone records" msgstr "" -#: lxc/network_zone.go:84 +#: lxc/network_zone.go:85 msgid "List available network zoneS" msgstr "" @@ -3542,11 +3537,11 @@ msgstr "" msgid "List projects" msgstr "" -#: lxc/storage_bucket.go:766 lxc/storage_bucket.go:768 +#: lxc/storage_bucket.go:771 lxc/storage_bucket.go:773 msgid "List storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:451 lxc/storage_bucket.go:453 +#: lxc/storage_bucket.go:456 lxc/storage_bucket.go:458 msgid "List storage buckets" msgstr "" @@ -3574,7 +3569,7 @@ msgid "" " U - Current disk usage" msgstr "" -#: lxc/remote.go:668 lxc/remote.go:669 +#: lxc/remote.go:669 lxc/remote.go:670 msgid "List the available remotes" msgstr "" @@ -3801,11 +3796,11 @@ msgstr "" msgid "Manage network forwards" msgstr "" -#: lxc/network_load_balancer.go:782 lxc/network_load_balancer.go:783 +#: lxc/network_load_balancer.go:787 lxc/network_load_balancer.go:788 msgid "Manage network load balancer backends" msgstr "" -#: lxc/network_load_balancer.go:947 lxc/network_load_balancer.go:948 +#: lxc/network_load_balancer.go:952 lxc/network_load_balancer.go:953 msgid "Manage network load balancer ports" msgstr "" @@ -3817,15 +3812,15 @@ msgstr "" msgid "Manage network peerings" msgstr "" -#: lxc/network_zone.go:1224 lxc/network_zone.go:1225 +#: lxc/network_zone.go:1229 lxc/network_zone.go:1230 msgid "Manage network zone record entries" msgstr "" -#: lxc/network_zone.go:631 lxc/network_zone.go:632 +#: lxc/network_zone.go:636 lxc/network_zone.go:637 msgid "Manage network zone records" msgstr "" -#: lxc/network_zone.go:27 lxc/network_zone.go:28 +#: lxc/network_zone.go:28 lxc/network_zone.go:29 msgid "Manage network zones" msgstr "" @@ -3841,11 +3836,11 @@ msgstr "" msgid "Manage projects" msgstr "" -#: lxc/storage_bucket.go:726 +#: lxc/storage_bucket.go:731 msgid "Manage storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:727 +#: lxc/storage_bucket.go:732 msgid "Manage storage bucket keys." msgstr "" @@ -3873,7 +3868,7 @@ msgid "" "\"custom\" (user created) volumes." msgstr "" -#: lxc/remote.go:33 lxc/remote.go:34 +#: lxc/remote.go:34 lxc/remote.go:35 msgid "Manage the list of remote servers" msgstr "" @@ -3954,12 +3949,12 @@ msgid "" "Minimum level for log messages (only available when using pretty format)" msgstr "" -#: lxc/storage_bucket.go:111 lxc/storage_bucket.go:211 -#: lxc/storage_bucket.go:287 lxc/storage_bucket.go:406 -#: lxc/storage_bucket.go:563 lxc/storage_bucket.go:655 -#: lxc/storage_bucket.go:797 lxc/storage_bucket.go:878 -#: lxc/storage_bucket.go:953 lxc/storage_bucket.go:1032 -#: lxc/storage_bucket.go:1155 +#: lxc/storage_bucket.go:116 lxc/storage_bucket.go:216 +#: lxc/storage_bucket.go:292 lxc/storage_bucket.go:411 +#: lxc/storage_bucket.go:568 lxc/storage_bucket.go:660 +#: lxc/storage_bucket.go:802 lxc/storage_bucket.go:883 +#: lxc/storage_bucket.go:958 lxc/storage_bucket.go:1037 +#: lxc/storage_bucket.go:1160 msgid "Missing bucket name" msgstr "" @@ -4003,8 +3998,8 @@ msgstr "" msgid "Missing instance name" msgstr "" -#: lxc/storage_bucket.go:882 lxc/storage_bucket.go:957 -#: lxc/storage_bucket.go:1036 lxc/storage_bucket.go:1159 +#: lxc/storage_bucket.go:887 lxc/storage_bucket.go:962 +#: lxc/storage_bucket.go:1041 lxc/storage_bucket.go:1164 msgid "Missing key name" msgstr "" @@ -4012,10 +4007,10 @@ msgstr "" #: lxc/network_forward.go:481 lxc/network_forward.go:627 #: lxc/network_forward.go:746 lxc/network_forward.go:823 #: lxc/network_forward.go:889 lxc/network_load_balancer.go:201 -#: lxc/network_load_balancer.go:411 lxc/network_load_balancer.go:484 -#: lxc/network_load_balancer.go:630 lxc/network_load_balancer.go:750 -#: lxc/network_load_balancer.go:826 lxc/network_load_balancer.go:890 -#: lxc/network_load_balancer.go:991 lxc/network_load_balancer.go:1053 +#: lxc/network_load_balancer.go:416 lxc/network_load_balancer.go:489 +#: lxc/network_load_balancer.go:635 lxc/network_load_balancer.go:755 +#: lxc/network_load_balancer.go:831 lxc/network_load_balancer.go:895 +#: lxc/network_load_balancer.go:996 lxc/network_load_balancer.go:1058 msgid "Missing listen address" msgstr "" @@ -4040,26 +4035,26 @@ msgstr "" #: lxc/network_forward.go:477 lxc/network_forward.go:623 #: lxc/network_forward.go:742 lxc/network_forward.go:819 #: lxc/network_forward.go:885 lxc/network_load_balancer.go:123 -#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:261 -#: lxc/network_load_balancer.go:407 lxc/network_load_balancer.go:480 -#: lxc/network_load_balancer.go:626 lxc/network_load_balancer.go:746 -#: lxc/network_load_balancer.go:822 lxc/network_load_balancer.go:886 -#: lxc/network_load_balancer.go:987 lxc/network_load_balancer.go:1049 +#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:266 +#: lxc/network_load_balancer.go:412 lxc/network_load_balancer.go:485 +#: lxc/network_load_balancer.go:631 lxc/network_load_balancer.go:751 +#: lxc/network_load_balancer.go:827 lxc/network_load_balancer.go:891 +#: lxc/network_load_balancer.go:992 lxc/network_load_balancer.go:1054 #: lxc/network_peer.go:110 lxc/network_peer.go:180 lxc/network_peer.go:237 #: lxc/network_peer.go:355 lxc/network_peer.go:426 lxc/network_peer.go:556 #: lxc/network_peer.go:665 msgid "Missing network name" msgstr "" -#: lxc/network_zone.go:178 lxc/network_zone.go:234 lxc/network_zone.go:294 -#: lxc/network_zone.go:382 lxc/network_zone.go:503 lxc/network_zone.go:606 -#: lxc/network_zone.go:712 lxc/network_zone.go:780 lxc/network_zone.go:892 -#: lxc/network_zone.go:976 lxc/network_zone.go:1197 lxc/network_zone.go:1262 -#: lxc/network_zone.go:1307 +#: lxc/network_zone.go:179 lxc/network_zone.go:235 lxc/network_zone.go:299 +#: lxc/network_zone.go:387 lxc/network_zone.go:508 lxc/network_zone.go:611 +#: lxc/network_zone.go:717 lxc/network_zone.go:785 lxc/network_zone.go:897 +#: lxc/network_zone.go:981 lxc/network_zone.go:1202 lxc/network_zone.go:1267 +#: lxc/network_zone.go:1312 msgid "Missing network zone name" msgstr "" -#: lxc/network_zone.go:833 lxc/network_zone.go:1095 +#: lxc/network_zone.go:838 lxc/network_zone.go:1100 msgid "Missing network zone record name" msgstr "" @@ -4069,13 +4064,13 @@ msgid "Missing peer name" msgstr "" #: lxc/storage.go:194 lxc/storage.go:264 lxc/storage.go:370 lxc/storage.go:440 -#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:107 -#: lxc/storage_bucket.go:207 lxc/storage_bucket.go:283 -#: lxc/storage_bucket.go:402 lxc/storage_bucket.go:477 -#: lxc/storage_bucket.go:559 lxc/storage_bucket.go:651 -#: lxc/storage_bucket.go:793 lxc/storage_bucket.go:874 -#: lxc/storage_bucket.go:949 lxc/storage_bucket.go:1028 -#: lxc/storage_bucket.go:1151 lxc/storage_volume.go:189 +#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:112 +#: lxc/storage_bucket.go:212 lxc/storage_bucket.go:288 +#: lxc/storage_bucket.go:407 lxc/storage_bucket.go:482 +#: lxc/storage_bucket.go:564 lxc/storage_bucket.go:656 +#: lxc/storage_bucket.go:798 lxc/storage_bucket.go:879 +#: lxc/storage_bucket.go:954 lxc/storage_bucket.go:1033 +#: lxc/storage_bucket.go:1156 lxc/storage_volume.go:189 #: lxc/storage_volume.go:287 lxc/storage_volume.go:583 #: lxc/storage_volume.go:660 lxc/storage_volume.go:735 #: lxc/storage_volume.go:817 lxc/storage_volume.go:919 @@ -4195,7 +4190,7 @@ msgstr "" msgid "Moving the storage volume: %s" msgstr "" -#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1097 +#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1102 msgid "Multiple ports match. Use --force to remove them all" msgstr "" @@ -4214,10 +4209,10 @@ 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:677 lxc/project.go:498 -#: lxc/remote.go:731 lxc/storage.go:638 lxc/storage_bucket.go:506 -#: lxc/storage_bucket.go:826 lxc/storage_volume.go:1561 +#: lxc/network_acl.go:147 lxc/network_peer.go:139 lxc/network_zone.go:139 +#: lxc/network_zone.go:746 lxc/profile.go:677 lxc/project.go:498 +#: lxc/remote.go:732 lxc/storage.go:638 lxc/storage_bucket.go:511 +#: lxc/storage_bucket.go:831 lxc/storage_volume.go:1561 msgid "NAME" msgstr "" @@ -4243,7 +4238,7 @@ msgstr "" #: lxc/network.go:957 lxc/operation.go:154 lxc/project.go:456 #: lxc/project.go:461 lxc/project.go:466 lxc/project.go:471 lxc/project.go:476 -#: lxc/project.go:481 lxc/remote.go:691 lxc/remote.go:696 lxc/remote.go:701 +#: lxc/project.go:481 lxc/remote.go:692 lxc/remote.go:697 lxc/remote.go:702 msgid "NO" msgstr "" @@ -4270,7 +4265,7 @@ msgstr "" msgid "Name" msgstr "" -#: lxc/remote.go:141 +#: lxc/remote.go:142 msgid "Name of the project to use for this remote:" msgstr "" @@ -4319,12 +4314,12 @@ msgstr "" msgid "Network ACL %s renamed to %s" msgstr "" -#: lxc/network_zone.go:336 +#: lxc/network_zone.go:341 #, c-format msgid "Network Zone %s created" msgstr "" -#: lxc/network_zone.go:616 +#: lxc/network_zone.go:621 #, c-format msgid "Network Zone %s deleted" msgstr "" @@ -4339,12 +4334,12 @@ msgstr "" msgid "Network forward %s deleted" msgstr "" -#: lxc/network_load_balancer.go:365 +#: lxc/network_load_balancer.go:370 #, c-format msgid "Network load balancer %s created" msgstr "" -#: lxc/network_load_balancer.go:767 +#: lxc/network_load_balancer.go:772 #, c-format msgid "Network load balancer %s deleted" msgstr "" @@ -4382,12 +4377,12 @@ msgstr "" msgid "Network usage:" msgstr "" -#: lxc/network_zone.go:934 +#: lxc/network_zone.go:939 #, c-format msgid "Network zone record %s created" msgstr "" -#: lxc/network_zone.go:1207 +#: lxc/network_zone.go:1212 #, c-format msgid "Network zone record %s deleted" msgstr "" @@ -4422,11 +4417,11 @@ msgstr "" msgid "No device found for this storage volume" msgstr "" -#: lxc/network_load_balancer.go:921 +#: lxc/network_load_balancer.go:926 msgid "No matching backend found" msgstr "" -#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1108 +#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1113 msgid "No matching port(s) found" msgstr "" @@ -4472,7 +4467,7 @@ msgstr "" msgid "Only \"custom\" volumes can be snapshotted" msgstr "" -#: lxc/remote.go:332 +#: lxc/remote.go:333 msgid "Only https URLs are supported for simplestreams" msgstr "" @@ -4497,7 +4492,7 @@ msgstr "" msgid "Optimized Storage" msgstr "" -#: lxc/main.go:96 +#: lxc/main.go:97 msgid "Override the source project" msgstr "" @@ -4543,11 +4538,11 @@ msgstr "" msgid "PROJECT" msgstr "" -#: lxc/remote.go:733 +#: lxc/remote.go:734 msgid "PROTOCOL" msgstr "" -#: lxc/image.go:1073 lxc/remote.go:735 +#: lxc/image.go:1073 lxc/remote.go:736 msgid "PUBLIC" msgstr "" @@ -4563,7 +4558,7 @@ msgstr "" msgid "Partitions:" msgstr "" -#: lxc/main.go:361 +#: lxc/main.go:363 #, c-format msgid "Password for %s: " msgstr "" @@ -4576,7 +4571,7 @@ msgstr "" msgid "Perform an incremental copy" msgstr "" -#: lxc/remote.go:182 +#: lxc/remote.go:183 msgid "Please provide an alternate server address (empty to abort):" msgstr "" @@ -4588,7 +4583,7 @@ msgstr "" msgid "Please provide cluster member name: " msgstr "" -#: lxc/remote.go:462 +#: lxc/remote.go:463 msgid "Please type 'y', 'n' or the fingerprint:" msgstr "" @@ -4610,10 +4605,10 @@ msgstr "" #: lxc/config.go:1278 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/network_load_balancer.go:695 lxc/network_peer.go:611 +#: lxc/network_zone.go:557 lxc/network_zone.go:1149 lxc/profile.go:539 +#: lxc/project.go:316 lxc/storage.go:311 lxc/storage_bucket.go:349 +#: lxc/storage_bucket.go:1098 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 "" @@ -4622,7 +4617,7 @@ msgstr "" msgid "Pretty rendering (short for --format=pretty)" msgstr "" -#: lxc/main.go:94 +#: lxc/main.go:95 msgid "Print help" msgstr "" @@ -4630,7 +4625,7 @@ msgstr "" msgid "Print the raw response" msgstr "" -#: lxc/main.go:93 +#: lxc/main.go:94 msgid "Print version number" msgstr "" @@ -4719,7 +4714,7 @@ msgstr "" msgid "Project %s renamed to %s" msgstr "" -#: lxc/remote.go:106 +#: lxc/remote.go:107 msgid "Project to use for the remote" msgstr "" @@ -4817,7 +4812,7 @@ msgid "" "pool \"default\"." msgstr "" -#: lxc/remote.go:105 +#: lxc/remote.go:106 msgid "Public image server" msgstr "" @@ -4865,7 +4860,7 @@ msgstr "" msgid "RESOURCE" msgstr "" -#: lxc/storage_bucket.go:828 +#: lxc/storage_bucket.go:833 msgid "ROLE" msgstr "" @@ -4908,45 +4903,45 @@ msgstr "" msgid "Refreshing the image: %s" msgstr "" -#: lxc/remote.go:785 +#: lxc/remote.go:786 #, c-format msgid "Remote %s already exists" msgstr "" -#: lxc/project.go:769 lxc/remote.go:776 lxc/remote.go:849 lxc/remote.go:905 -#: lxc/remote.go:945 +#: lxc/project.go:769 lxc/remote.go:777 lxc/remote.go:850 lxc/remote.go:906 +#: lxc/remote.go:946 #, c-format msgid "Remote %s doesn't exist" msgstr "" -#: lxc/remote.go:301 +#: lxc/remote.go:302 #, c-format msgid "Remote %s exists as <%s>" msgstr "" -#: lxc/remote.go:857 +#: lxc/remote.go:858 #, c-format msgid "Remote %s is global and cannot be removed" msgstr "" -#: lxc/remote.go:780 lxc/remote.go:853 lxc/remote.go:949 +#: lxc/remote.go:781 lxc/remote.go:854 lxc/remote.go:950 #, c-format msgid "Remote %s is static and cannot be modified" msgstr "" -#: lxc/remote.go:290 +#: lxc/remote.go:291 msgid "Remote address must not be empty" msgstr "" -#: lxc/remote.go:101 +#: lxc/remote.go:102 msgid "Remote admin password" msgstr "" -#: lxc/remote.go:295 +#: lxc/remote.go:296 msgid "Remote names may not contain colons" msgstr "" -#: lxc/remote.go:102 +#: lxc/remote.go:103 msgid "Remote trust token" msgstr "" @@ -4972,7 +4967,7 @@ msgstr "" msgid "Remove a member from the cluster" msgstr "" -#: lxc/network_zone.go:1285 +#: lxc/network_zone.go:1290 msgid "Remove a network zone record entry" msgstr "" @@ -4980,7 +4975,7 @@ msgstr "" msgid "Remove aliases" msgstr "" -#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1025 +#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1030 msgid "Remove all ports that match" msgstr "" @@ -4988,15 +4983,15 @@ msgstr "" msgid "Remove all rules that match" msgstr "" -#: lxc/network_load_balancer.go:862 +#: lxc/network_load_balancer.go:867 msgid "Remove backend from a load balancer" msgstr "" -#: lxc/network_load_balancer.go:861 +#: lxc/network_load_balancer.go:866 msgid "Remove backends from a load balancer" msgstr "" -#: lxc/network_zone.go:1286 +#: lxc/network_zone.go:1291 msgid "Remove entries from a network zone record" msgstr "" @@ -5020,7 +5015,7 @@ msgstr "" msgid "Remove ports from a forward" msgstr "" -#: lxc/network_load_balancer.go:1023 lxc/network_load_balancer.go:1024 +#: lxc/network_load_balancer.go:1028 lxc/network_load_balancer.go:1029 msgid "Remove ports from a load balancer" msgstr "" @@ -5028,7 +5023,7 @@ msgstr "" msgid "Remove profiles from instances" msgstr "" -#: lxc/remote.go:827 lxc/remote.go:828 +#: lxc/remote.go:828 lxc/remote.go:829 msgid "Remove remotes" msgstr "" @@ -5085,7 +5080,7 @@ msgstr "" msgid "Rename projects" msgstr "" -#: lxc/remote.go:754 lxc/remote.go:755 +#: lxc/remote.go:755 lxc/remote.go:756 msgid "Rename remotes" msgstr "" @@ -5163,7 +5158,7 @@ msgid "Restrict the certificate to one or more projects" msgstr "" #: lxc/console.go:44 -msgid "Retrieve the instance's console log" +msgid "Retrieve the container's console log" msgstr "" #: lxc/init.go:347 @@ -5179,7 +5174,7 @@ msgstr "" msgid "Revoke cluster member join token" msgstr "" -#: lxc/storage_bucket.go:851 +#: lxc/storage_bucket.go:856 msgid "Role (admin or read-only)" msgstr "" @@ -5230,7 +5225,7 @@ msgstr "" msgid "STATE" msgstr "" -#: lxc/remote.go:736 +#: lxc/remote.go:737 msgid "STATIC" msgstr "" @@ -5254,11 +5249,11 @@ msgstr "" msgid "STP" msgstr "" -#: lxc/storage_bucket.go:853 +#: lxc/storage_bucket.go:858 msgid "Secret key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:909 +#: lxc/storage_bucket.go:914 #, c-format msgid "Secret key: %s" msgstr "" @@ -5267,19 +5262,19 @@ msgstr "" msgid "Send a raw query to LXD" msgstr "" -#: lxc/remote.go:104 +#: lxc/remote.go:105 msgid "Server authentication type (tls or oidc)" msgstr "" -#: lxc/remote.go:460 +#: lxc/remote.go:461 msgid "Server certificate NACKed by user" msgstr "" -#: lxc/remote.go:599 +#: lxc/remote.go:600 msgid "Server doesn't trust us after authentication" msgstr "" -#: lxc/remote.go:103 +#: lxc/remote.go:104 msgid "Server protocol (lxd or simplestreams)" msgstr "" @@ -5378,11 +5373,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_load_balancer.go:450 +#: lxc/network_load_balancer.go:455 msgid "Set network load balancer keys" msgstr "" -#: lxc/network_load_balancer.go:451 +#: lxc/network_load_balancer.go:456 msgid "" "Set network load balancer keys\n" "\n" @@ -5404,11 +5399,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:353 +#: lxc/network_zone.go:358 msgid "Set network zone configuration keys" msgstr "" -#: lxc/network_zone.go:354 +#: lxc/network_zone.go:359 msgid "" "Set network zone configuration keys\n" "\n" @@ -5417,7 +5412,7 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:951 lxc/network_zone.go:952 +#: lxc/network_zone.go:956 lxc/network_zone.go:957 msgid "Set network zone record configuration keys" msgstr "" @@ -5447,11 +5442,11 @@ msgid "" " lxc project set [:] " msgstr "" -#: lxc/storage_bucket.go:529 +#: lxc/storage_bucket.go:534 msgid "Set storage bucket configuration keys" msgstr "" -#: lxc/storage_bucket.go:530 +#: lxc/storage_bucket.go:535 msgid "" "Set storage bucket configuration keys\n" "\n" @@ -5486,7 +5481,7 @@ msgid "" " lxc storage volume set [:] [/] " msgstr "" -#: lxc/remote.go:923 lxc/remote.go:924 +#: lxc/remote.go:924 lxc/remote.go:925 msgid "Set the URL for the remote" msgstr "" @@ -5514,7 +5509,7 @@ msgstr "" msgid "Set the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:458 +#: lxc/network_load_balancer.go:463 msgid "Set the key as a network load balancer property" msgstr "" @@ -5526,11 +5521,11 @@ msgstr "" msgid "Set the key as a network property" msgstr "" -#: lxc/network_zone.go:361 +#: lxc/network_zone.go:366 msgid "Set the key as a network zone property" msgstr "" -#: lxc/network_zone.go:957 +#: lxc/network_zone.go:962 msgid "Set the key as a network zone record property" msgstr "" @@ -5542,7 +5537,7 @@ msgstr "" msgid "Set the key as a project property" msgstr "" -#: lxc/storage_bucket.go:537 +#: lxc/storage_bucket.go:542 msgid "Set the key as a storage bucket property" msgstr "" @@ -5562,11 +5557,11 @@ msgstr "" msgid "Setup SSH SFTP listener on address:port instead of mounting" msgstr "" -#: lxc/main.go:97 +#: lxc/main.go:98 msgid "Show all debug messages" msgstr "" -#: lxc/main.go:98 +#: lxc/main.go:99 msgid "Show all information messages" msgstr "" @@ -5635,7 +5630,7 @@ msgstr "" msgid "Show instance or server information" msgstr "" -#: lxc/main.go:271 lxc/main.go:272 +#: lxc/main.go:272 lxc/main.go:273 msgid "Show less common commands" msgstr "" @@ -5667,15 +5662,15 @@ msgstr "" msgid "Show network peer configurations" msgstr "" -#: lxc/network_zone.go:155 lxc/network_zone.go:156 +#: lxc/network_zone.go:156 lxc/network_zone.go:157 msgid "Show network zone configurations" msgstr "" -#: lxc/network_zone.go:758 +#: lxc/network_zone.go:763 msgid "Show network zone record configuration" msgstr "" -#: lxc/network_zone.go:759 +#: lxc/network_zone.go:764 msgid "Show network zone record configurations" msgstr "" @@ -5687,11 +5682,11 @@ msgstr "" msgid "Show project options" msgstr "" -#: lxc/storage_bucket.go:623 lxc/storage_bucket.go:624 +#: lxc/storage_bucket.go:628 lxc/storage_bucket.go:629 msgid "Show storage bucket configurations" msgstr "" -#: lxc/storage_bucket.go:1123 lxc/storage_bucket.go:1124 +#: lxc/storage_bucket.go:1128 lxc/storage_bucket.go:1129 msgid "Show storage bucket key configurations" msgstr "" @@ -5717,7 +5712,7 @@ msgid "" "that are granted via identity provider group mappings. \n" msgstr "" -#: lxc/remote.go:630 lxc/remote.go:631 +#: lxc/remote.go:631 lxc/remote.go:632 msgid "Show the default remote" msgstr "" @@ -5841,22 +5836,22 @@ msgstr "" msgid "Stopping the instance failed: %s" msgstr "" -#: lxc/storage_bucket.go:161 +#: lxc/storage_bucket.go:166 #, c-format msgid "Storage bucket %s created" msgstr "" -#: lxc/storage_bucket.go:228 +#: lxc/storage_bucket.go:233 #, c-format msgid "Storage bucket %s deleted" msgstr "" -#: lxc/storage_bucket.go:907 +#: lxc/storage_bucket.go:912 #, c-format msgid "Storage bucket key %s added" msgstr "" -#: lxc/storage_bucket.go:973 +#: lxc/storage_bucket.go:978 #, c-format msgid "Storage bucket key %s removed" msgstr "" @@ -5929,7 +5924,7 @@ msgstr "" msgid "Switch the current project" msgstr "" -#: lxc/remote.go:883 lxc/remote.go:884 +#: lxc/remote.go:884 lxc/remote.go:885 msgid "Switch the default remote" msgstr "" @@ -6044,7 +6039,7 @@ msgstr "" msgid "The property %q does not exist on the instance snapshot %s/%s: %v" msgstr "" -#: lxc/network_load_balancer.go:424 +#: lxc/network_load_balancer.go:429 #, c-format msgid "The property %q does not exist on the load balancer %q: %v" msgstr "" @@ -6069,12 +6064,12 @@ msgstr "" msgid "The property %q does not exist on the network peer %q: %v" msgstr "" -#: lxc/network_zone.go:246 +#: lxc/network_zone.go:247 #, c-format msgid "The property %q does not exist on the network zone %q: %v" msgstr "" -#: lxc/network_zone.go:845 +#: lxc/network_zone.go:850 #, c-format msgid "The property %q does not exist on the network zone record %q: %v" msgstr "" @@ -6089,7 +6084,7 @@ msgstr "" msgid "The property %q does not exist on the project %q: %v" msgstr "" -#: lxc/storage_bucket.go:426 +#: lxc/storage_bucket.go:431 #, c-format msgid "The property %q does not exist on the storage bucket %q: %v" msgstr "" @@ -6143,7 +6138,7 @@ msgstr "" msgid "This LXD server is not available on the network" msgstr "" -#: lxc/main.go:293 +#: lxc/main.go:294 msgid "" "This client hasn't been configured to use a remote LXD server yet.\n" "As your platform can't run native Linux instances, you must connect to a " @@ -6175,11 +6170,11 @@ msgstr "" msgid "To create a new network, use: lxc network create" msgstr "" -#: lxc/console.go:210 +#: lxc/console.go:215 msgid "To detach from the console, press: +a q" msgstr "" -#: lxc/main.go:403 +#: lxc/main.go:406 msgid "" "To start your first container, try: lxc launch ubuntu:24.04\n" "Or for a virtual machine: lxc launch ubuntu:24.04 --vm" @@ -6277,7 +6272,7 @@ msgstr "" msgid "UPLOAD DATE" msgstr "" -#: lxc/cluster.go:184 lxc/remote.go:732 +#: lxc/cluster.go:184 lxc/remote.go:733 msgid "URL" msgstr "" @@ -6286,7 +6281,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:679 lxc/project.go:506 +#: lxc/network_zone.go:141 lxc/profile.go:679 lxc/project.go:506 #: lxc/storage.go:647 lxc/storage_volume.go:1564 msgid "USED BY" msgstr "" @@ -6305,7 +6300,7 @@ msgstr "" msgid "Unable to create a temporary file: %v" msgstr "" -#: lxc/remote.go:213 lxc/remote.go:247 +#: lxc/remote.go:214 lxc/remote.go:248 msgid "Unavailable remote server" msgstr "" @@ -6325,7 +6320,7 @@ msgstr "" msgid "Unknown column shorthand char '%c' in '%s'" msgstr "" -#: lxc/console.go:159 +#: lxc/console.go:164 #, c-format msgid "Unknown console type %q" msgstr "" @@ -6385,11 +6380,11 @@ msgstr "" msgid "Unset network forward keys" msgstr "" -#: lxc/network_load_balancer.go:548 +#: lxc/network_load_balancer.go:553 msgid "Unset network load balancer configuration keys" msgstr "" -#: lxc/network_load_balancer.go:549 +#: lxc/network_load_balancer.go:554 msgid "Unset network load balancer keys" msgstr "" @@ -6401,11 +6396,11 @@ msgstr "" msgid "Unset network peer keys" msgstr "" -#: lxc/network_zone.go:433 lxc/network_zone.go:434 +#: lxc/network_zone.go:438 lxc/network_zone.go:439 msgid "Unset network zone configuration keys" msgstr "" -#: lxc/network_zone.go:1027 lxc/network_zone.go:1028 +#: lxc/network_zone.go:1032 lxc/network_zone.go:1033 msgid "Unset network zone record configuration keys" msgstr "" @@ -6417,7 +6412,7 @@ msgstr "" msgid "Unset project configuration keys" msgstr "" -#: lxc/storage_bucket.go:692 lxc/storage_bucket.go:693 +#: lxc/storage_bucket.go:697 lxc/storage_bucket.go:698 msgid "Unset storage bucket configuration keys" msgstr "" @@ -6441,7 +6436,7 @@ msgstr "" msgid "Unset the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:552 +#: lxc/network_load_balancer.go:557 msgid "Unset the key as a network load balancer property" msgstr "" @@ -6453,11 +6448,11 @@ msgstr "" msgid "Unset the key as a network property" msgstr "" -#: lxc/network_zone.go:437 +#: lxc/network_zone.go:442 msgid "Unset the key as a network zone property" msgstr "" -#: lxc/network_zone.go:1031 +#: lxc/network_zone.go:1036 msgid "Unset the key as a network zone record property" msgstr "" @@ -6469,7 +6464,7 @@ msgstr "" msgid "Unset the key as a project property" msgstr "" -#: lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:701 msgid "Unset the key as a storage bucket property" msgstr "" @@ -6531,7 +6526,7 @@ msgid "" "Use storage driver optimized format (can only be restored on a similar pool)" msgstr "" -#: lxc/main.go:100 +#: lxc/main.go:101 msgid "Use with help or --help to view sub-commands" msgstr "" @@ -6628,7 +6623,7 @@ msgstr "" #: lxc/network.go:959 lxc/operation.go:156 lxc/project.go:458 #: lxc/project.go:463 lxc/project.go:468 lxc/project.go:473 lxc/project.go:478 -#: lxc/project.go:483 lxc/remote.go:693 lxc/remote.go:698 lxc/remote.go:703 +#: lxc/project.go:483 lxc/remote.go:694 lxc/remote.go:699 lxc/remote.go:704 msgid "YES" msgstr "" @@ -6663,7 +6658,7 @@ 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/network.go:909 lxc/network_acl.go:91 lxc/network_zone.go:83 #: 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 "[:]" @@ -6726,19 +6721,19 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:154 lxc/network_zone.go:463 lxc/network_zone.go:581 +#: lxc/network_zone.go:155 lxc/network_zone.go:468 lxc/network_zone.go:586 msgid "[:]" msgstr "" -#: lxc/network_zone.go:209 lxc/network_zone.go:432 +#: lxc/network_zone.go:210 lxc/network_zone.go:437 msgid "[:] " msgstr "" -#: lxc/network_zone.go:352 +#: lxc/network_zone.go:357 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:269 +#: lxc/network_zone.go:270 msgid "[:] [key=value...]" msgstr "" @@ -6984,30 +6979,30 @@ msgstr "" #: lxc/network_forward.go:169 lxc/network_forward.go:574 #: lxc/network_forward.go:715 lxc/network_load_balancer.go:171 -#: lxc/network_load_balancer.go:577 lxc/network_load_balancer.go:719 +#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:724 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:860 +#: lxc/network_load_balancer.go:865 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:796 +#: lxc/network_load_balancer.go:801 msgid "" "[:] " "[]" msgstr "" #: lxc/network_forward.go:377 lxc/network_forward.go:544 -#: lxc/network_load_balancer.go:381 lxc/network_load_balancer.go:547 +#: lxc/network_load_balancer.go:386 lxc/network_load_balancer.go:552 msgid "[:] " msgstr "" -#: lxc/network_forward.go:446 lxc/network_load_balancer.go:449 +#: lxc/network_forward.go:446 lxc/network_load_balancer.go:454 msgid "[:] =..." msgstr "" -#: lxc/network_load_balancer.go:961 +#: lxc/network_load_balancer.go:966 msgid "" "[:] " "[,...]" @@ -7019,7 +7014,7 @@ msgid "" " []" msgstr "" -#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1022 +#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1027 msgid "[:] [] []" msgstr "" @@ -7070,7 +7065,7 @@ msgid "[:]" msgstr "" #: lxc/storage.go:167 lxc/storage.go:218 lxc/storage.go:412 lxc/storage.go:759 -#: lxc/storage_bucket.go:449 +#: lxc/storage_bucket.go:454 msgid "[:]" msgstr "" @@ -7078,18 +7073,18 @@ msgstr "" msgid "[:] []" msgstr "" -#: lxc/storage_bucket.go:180 lxc/storage_bucket.go:242 -#: lxc/storage_bucket.go:622 lxc/storage_bucket.go:764 +#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:247 +#: lxc/storage_bucket.go:627 lxc/storage_bucket.go:769 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:375 lxc/storage_bucket.go:691 -#: lxc/storage_bucket.go:845 lxc/storage_bucket.go:923 -#: lxc/storage_bucket.go:987 lxc/storage_bucket.go:1122 +#: lxc/storage_bucket.go:380 lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:850 lxc/storage_bucket.go:928 +#: lxc/storage_bucket.go:992 lxc/storage_bucket.go:1127 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:528 +#: lxc/storage_bucket.go:533 msgid "[:] =..." msgstr "" @@ -7233,27 +7228,27 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:686 +#: lxc/network_zone.go:691 msgid "[:]" msgstr "" -#: lxc/network_zone.go:757 lxc/network_zone.go:1056 lxc/network_zone.go:1173 +#: lxc/network_zone.go:762 lxc/network_zone.go:1061 lxc/network_zone.go:1178 msgid "[:] " msgstr "" -#: lxc/network_zone.go:809 lxc/network_zone.go:1026 +#: lxc/network_zone.go:814 lxc/network_zone.go:1031 msgid "[:] " msgstr "" -#: lxc/network_zone.go:950 +#: lxc/network_zone.go:955 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:1238 lxc/network_zone.go:1284 +#: lxc/network_zone.go:1243 lxc/network_zone.go:1289 msgid "[:] " msgstr "" -#: lxc/network_zone.go:868 +#: lxc/network_zone.go:873 msgid "[:] [key=value...]" msgstr "" @@ -7277,7 +7272,7 @@ msgstr "" msgid "[:][] [...]" msgstr "" -#: lxc/remote.go:88 +#: lxc/remote.go:89 msgid "[] " msgstr "" @@ -7285,7 +7280,7 @@ msgstr "" msgid "[[:]]" msgstr "" -#: lxc/project.go:488 lxc/remote.go:722 +#: lxc/project.go:488 lxc/remote.go:723 msgid "current" msgstr "" @@ -7548,6 +7543,23 @@ msgid "" " Create a new OVN network called bar using baz as its uplink network" msgstr "" +#: lxc/network_load_balancer.go:239 +msgid "" +"lxc network load-balancer create n1 127.0.0.1\n" +"\n" +"lxc network load-balancer create n1 127.0.0.1 < config.yaml\n" +" Create network load-balancer for network n1 with configuration from " +"config.yaml" +msgstr "" + +#: lxc/network_zone.go:273 +msgid "" +"lxc network zone create z1\n" +"\n" +"lxc network zone create z1 < config.yaml\n" +" Create network zone z1 with configuration from config.yaml" +msgstr "" + #: lxc/operation.go:195 msgid "" "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n" @@ -7618,26 +7630,36 @@ msgid "" " Restore the snapshot." msgstr "" -#: lxc/storage_bucket.go:245 +#: lxc/storage_bucket.go:84 +msgid "" +"lxc storage bucket create p1 b01\n" +"\tCreate a new storage bucket name b01 in storage pool p1\n" +"\n" +"lxc storage bucket create p1 b01 < config.yaml\n" +"\tCreate a new storage bucket name b01 in storage pool p1 using the content " +"of config.yaml" +msgstr "" + +#: lxc/storage_bucket.go:250 msgid "" "lxc storage bucket edit [:] < bucket.yaml\n" " Update a storage bucket using the content of bucket.yaml." msgstr "" -#: lxc/storage_bucket.go:990 +#: lxc/storage_bucket.go:995 msgid "" "lxc storage bucket edit [:] < key.yaml\n" " Update a storage bucket key using the content of key.yaml." msgstr "" -#: lxc/storage_bucket.go:1125 +#: lxc/storage_bucket.go:1130 msgid "" "lxc storage bucket key show default data foo\n" " Will show the properties of a bucket key called \"foo\" for a bucket " "called \"data\" in the \"default\" pool." msgstr "" -#: lxc/storage_bucket.go:625 +#: lxc/storage_bucket.go:630 msgid "" "lxc storage bucket show default data\n" " Will show the properties of a bucket called \"data\" in the \"default\" " @@ -7656,7 +7678,7 @@ msgid "" "\t\tCreate a new custom volume using backup0.tar.gz as the source." msgstr "" -#: lxc/remote.go:459 +#: lxc/remote.go:460 msgid "n" msgstr "" @@ -7668,7 +7690,7 @@ msgstr "" msgid "no" msgstr "" -#: lxc/remote.go:452 +#: lxc/remote.go:453 msgid "ok (y/n/[fingerprint])?" msgstr "" @@ -7705,7 +7727,7 @@ msgstr "" msgid "used by" msgstr "" -#: lxc/remote.go:461 +#: lxc/remote.go:462 msgid "y" msgstr "" diff --git a/po/pa.po b/po/pa.po index c361ce92832f..c22ddf21d9ef 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-08-20 09:31+0100\n" +"POT-Creation-Date: 2024-08-30 09:27+0100\n" "PO-Revision-Date: 2022-03-10 15:08+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Punjabi 1;\n" "X-Generator: Weblate 4.12-dev\n" -#: lxc/storage_bucket.go:255 lxc/storage_bucket.go:1000 +#: lxc/storage_bucket.go:260 lxc/storage_bucket.go:1005 msgid "" "### This is a YAML representation of a storage bucket.\n" "### Any line starting with a '# will be ignored.\n" @@ -281,7 +281,7 @@ msgid "" "### Note that the listen_address and location cannot be changed." msgstr "" -#: lxc/network_load_balancer.go:588 +#: lxc/network_load_balancer.go:593 msgid "" "### This is a YAML representation of the network load balancer.\n" "### Any line starting with a '# will be ignored.\n" @@ -322,7 +322,7 @@ msgid "" "cannot be changed." msgstr "" -#: lxc/network_zone.go:1066 +#: lxc/network_zone.go:1071 msgid "" "### This is a YAML representation of the network zone record.\n" "### Any line starting with a '# will be ignored.\n" @@ -336,7 +336,7 @@ msgid "" "### user.foo: bah\n" msgstr "" -#: lxc/network_zone.go:473 +#: lxc/network_zone.go:478 msgid "" "### This is a YAML representation of the network zone.\n" "### Any line starting with a '# will be ignored.\n" @@ -515,15 +515,15 @@ msgstr "" msgid " " msgstr "" -#: lxc/remote.go:825 lxc/remote.go:882 +#: lxc/remote.go:826 lxc/remote.go:883 msgid "" msgstr "" -#: lxc/remote.go:922 +#: lxc/remote.go:923 msgid " " msgstr "" -#: lxc/remote.go:752 +#: lxc/remote.go:753 msgid " " msgstr "" @@ -556,7 +556,7 @@ msgstr "" msgid "ARCHITECTURE" msgstr "" -#: lxc/remote.go:734 +#: lxc/remote.go:735 msgid "AUTH TYPE" msgstr "" @@ -564,15 +564,15 @@ msgstr "" msgid "AUTHENTICATION METHOD" msgstr "" -#: lxc/remote.go:100 +#: lxc/remote.go:101 msgid "Accept certificate" msgstr "" -#: lxc/storage_bucket.go:852 +#: lxc/storage_bucket.go:857 msgid "Access key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:908 +#: lxc/storage_bucket.go:913 #, c-format msgid "Access key: %s" msgstr "" @@ -606,19 +606,19 @@ msgstr "" msgid "Add a group to an identity provider group" msgstr "" -#: lxc/network_zone.go:1239 +#: lxc/network_zone.go:1244 msgid "Add a network zone record entry" msgstr "" -#: lxc/network_load_balancer.go:798 +#: lxc/network_load_balancer.go:803 msgid "Add backend to a load balancer" msgstr "" -#: lxc/network_load_balancer.go:797 +#: lxc/network_load_balancer.go:802 msgid "Add backends to a load balancer" msgstr "" -#: lxc/network_zone.go:1240 +#: lxc/network_zone.go:1245 msgid "Add entries to a network zone record" msgstr "" @@ -634,11 +634,11 @@ msgstr "" msgid "Add new aliases" msgstr "" -#: lxc/remote.go:89 +#: lxc/remote.go:90 msgid "Add new remote servers" msgstr "" -#: lxc/remote.go:90 +#: lxc/remote.go:91 msgid "" "Add new remote servers\n" "\n" @@ -679,7 +679,7 @@ msgstr "" msgid "Add ports to a forward" msgstr "" -#: lxc/network_load_balancer.go:962 lxc/network_load_balancer.go:963 +#: lxc/network_load_balancer.go:967 lxc/network_load_balancer.go:968 msgid "Add ports to a load balancer" msgstr "" @@ -700,17 +700,17 @@ msgstr "" msgid "Address: %s" msgstr "" -#: lxc/storage_bucket.go:164 +#: lxc/storage_bucket.go:169 #, c-format msgid "Admin access key: %s" msgstr "" -#: lxc/remote.go:566 +#: lxc/remote.go:567 #, c-format msgid "Admin password (or token) for %s:" msgstr "" -#: lxc/storage_bucket.go:165 +#: lxc/storage_bucket.go:170 #, c-format msgid "Admin secret key: %s" msgstr "" @@ -742,7 +742,7 @@ msgstr "" msgid "All projects" msgstr "" -#: lxc/remote.go:181 +#: lxc/remote.go:182 msgid "All server addresses are unavailable" msgstr "" @@ -765,7 +765,7 @@ msgstr "" msgid "Are you sure you want to %s cluster member %q? (yes/no) [default=no]: " msgstr "" -#: lxc/console.go:383 +#: lxc/console.go:388 msgid "As neither could be found, the raw SPICE socket can be found at:" msgstr "" @@ -813,7 +813,7 @@ msgid "" "as well as retrieve past log entries from it." msgstr "" -#: lxc/remote.go:548 +#: lxc/remote.go:549 #, c-format msgid "Authentication type '%s' not supported by server" msgstr "" @@ -832,11 +832,11 @@ msgstr "" msgid "Auto update: %s" msgstr "" -#: lxc/network_forward.go:240 lxc/network_load_balancer.go:242 +#: lxc/network_forward.go:240 lxc/network_load_balancer.go:247 msgid "Auto-allocate an IPv4 or IPv6 listen address. One of 'ipv4', 'ipv6'." msgstr "" -#: lxc/remote.go:136 +#: lxc/remote.go:137 msgid "Available projects:" msgstr "" @@ -868,8 +868,8 @@ msgid "Bad device override syntax, expecting ,=: %s" msgstr "" #: lxc/network.go:333 lxc/network_acl.go:382 lxc/network_forward.go:293 -#: lxc/network_load_balancer.go:296 lxc/network_peer.go:280 -#: lxc/network_zone.go:324 lxc/network_zone.go:922 lxc/storage_bucket.go:136 +#: lxc/network_load_balancer.go:301 lxc/network_peer.go:280 +#: lxc/network_zone.go:329 lxc/network_zone.go:927 lxc/storage_bucket.go:141 #, c-format msgid "Bad key/value pair: %s" msgstr "" @@ -991,7 +991,7 @@ msgstr "" msgid "Can't read from stdin: %w" msgstr "" -#: lxc/remote.go:861 +#: lxc/remote.go:862 msgid "Can't remove the default remote" msgstr "" @@ -1057,15 +1057,14 @@ msgstr "" msgid "Certificate add token for %s deleted" msgstr "" -#: lxc/remote.go:218 -#, c-format -msgid "" -"Certificate fingerprint mismatch between certificate token and server %q" +#: lxc/remote.go:452 +msgid "Certificate fingerprint" msgstr "" -#: lxc/remote.go:451 +#: lxc/remote.go:219 #, c-format -msgid "Certificate fingerprint: %s" +msgid "" +"Certificate fingerprint mismatch between certificate token and server %q" msgstr "" #: lxc/network.go:893 @@ -1077,7 +1076,7 @@ msgstr "" msgid "Client %s certificate add token:" msgstr "" -#: lxc/remote.go:603 +#: lxc/remote.go:604 msgid "Client certificate now trusted by server:" msgstr "" @@ -1139,18 +1138,18 @@ msgstr "" #: lxc/network_forward.go:456 lxc/network_forward.go:579 #: lxc/network_forward.go:721 lxc/network_forward.go:798 #: lxc/network_forward.go:864 lxc/network_load_balancer.go:176 -#: lxc/network_load_balancer.go:241 lxc/network_load_balancer.go:459 -#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:725 -#: lxc/network_load_balancer.go:801 lxc/network_load_balancer.go:865 -#: lxc/network_load_balancer.go:966 lxc/network_load_balancer.go:1028 +#: lxc/network_load_balancer.go:246 lxc/network_load_balancer.go:464 +#: lxc/network_load_balancer.go:587 lxc/network_load_balancer.go:730 +#: lxc/network_load_balancer.go:806 lxc/network_load_balancer.go:870 +#: lxc/network_load_balancer.go:971 lxc/network_load_balancer.go:1033 #: lxc/storage.go:99 lxc/storage.go:347 lxc/storage.go:418 lxc/storage.go:671 -#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:85 -#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:248 -#: lxc/storage_bucket.go:379 lxc/storage_bucket.go:536 -#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:695 -#: lxc/storage_bucket.go:770 lxc/storage_bucket.go:850 -#: lxc/storage_bucket.go:928 lxc/storage_bucket.go:993 -#: lxc/storage_bucket.go:1129 lxc/storage_volume.go:358 +#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:90 +#: lxc/storage_bucket.go:190 lxc/storage_bucket.go:253 +#: lxc/storage_bucket.go:384 lxc/storage_bucket.go:541 +#: lxc/storage_bucket.go:634 lxc/storage_bucket.go:700 +#: lxc/storage_bucket.go:775 lxc/storage_bucket.go:855 +#: lxc/storage_bucket.go:933 lxc/storage_bucket.go:998 +#: lxc/storage_bucket.go:1134 lxc/storage_volume.go:358 #: lxc/storage_volume.go:560 lxc/storage_volume.go:639 #: lxc/storage_volume.go:883 lxc/storage_volume.go:1097 #: lxc/storage_volume.go:1210 lxc/storage_volume.go:1678 @@ -1178,11 +1177,11 @@ msgstr "" msgid "Columns" msgstr "" -#: lxc/main.go:81 +#: lxc/main.go:82 msgid "Command line client for LXD" msgstr "" -#: lxc/main.go:82 +#: lxc/main.go:83 msgid "" "Command line client for LXD\n" "\n" @@ -1214,19 +1213,15 @@ msgstr "" #: lxc/config.go:347 lxc/config.go:1277 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/network_load_balancer.go:694 lxc/network_peer.go:610 +#: lxc/network_zone.go:556 lxc/network_zone.go:1148 lxc/profile.go:538 +#: lxc/project.go:315 lxc/storage.go:310 lxc/storage_bucket.go:348 +#: lxc/storage_bucket.go:1097 lxc/storage_volume.go:1016 #: lxc/storage_volume.go:1048 #, c-format msgid "Config parsing error: %s" msgstr "" -#: lxc/console.go:140 -msgid "Console log:" -msgstr "" - #: lxc/storage_volume.go:561 msgid "Content type, block or filesystem" msgstr "" @@ -1329,12 +1324,12 @@ msgstr "" msgid "Cores:" msgstr "" -#: lxc/remote.go:486 +#: lxc/remote.go:487 #, c-format msgid "Could not close server cert file %q: %w" msgstr "" -#: lxc/remote.go:224 lxc/remote.go:470 +#: lxc/remote.go:225 lxc/remote.go:471 msgid "Could not create server cert dir" msgstr "" @@ -1373,12 +1368,12 @@ msgstr "" msgid "Could not write new remote certificate for remote '%s' with error: %v" msgstr "" -#: lxc/remote.go:481 +#: lxc/remote.go:482 #, c-format msgid "Could not write server cert file %q: %w" msgstr "" -#: lxc/network_zone.go:1327 +#: lxc/network_zone.go:1332 msgid "Couldn't find a matching entry" msgstr "" @@ -1430,7 +1425,7 @@ msgstr "" msgid "Create instances from images" msgstr "" -#: lxc/storage_bucket.go:846 lxc/storage_bucket.go:847 +#: lxc/storage_bucket.go:851 lxc/storage_bucket.go:852 msgid "Create key for a storage bucket" msgstr "" @@ -1462,11 +1457,11 @@ msgstr "" msgid "Create new network peering" msgstr "" -#: lxc/network_zone.go:869 lxc/network_zone.go:870 +#: lxc/network_zone.go:874 lxc/network_zone.go:875 msgid "Create new network zone record" msgstr "" -#: lxc/network_zone.go:270 lxc/network_zone.go:271 +#: lxc/network_zone.go:271 lxc/network_zone.go:272 msgid "Create new network zones" msgstr "" @@ -1517,9 +1512,9 @@ msgstr "" #: 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/network_zone.go:140 lxc/network_zone.go:747 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_bucket.go:512 lxc/storage_bucket.go:832 #: lxc/storage_volume.go:1562 msgid "DESCRIPTION" msgstr "" @@ -1584,7 +1579,7 @@ msgstr "" msgid "Delete instances and snapshots" msgstr "" -#: lxc/storage_bucket.go:924 lxc/storage_bucket.go:925 +#: lxc/storage_bucket.go:929 lxc/storage_bucket.go:930 msgid "Delete key from a storage bucket" msgstr "" @@ -1596,7 +1591,7 @@ msgstr "" msgid "Delete network forwards" msgstr "" -#: lxc/network_load_balancer.go:721 lxc/network_load_balancer.go:722 +#: lxc/network_load_balancer.go:726 lxc/network_load_balancer.go:727 msgid "Delete network load balancers" msgstr "" @@ -1604,11 +1599,11 @@ msgstr "" msgid "Delete network peerings" msgstr "" -#: lxc/network_zone.go:1175 lxc/network_zone.go:1176 +#: lxc/network_zone.go:1180 lxc/network_zone.go:1181 msgid "Delete network zone record" msgstr "" -#: lxc/network_zone.go:583 lxc/network_zone.go:584 +#: lxc/network_zone.go:588 lxc/network_zone.go:589 msgid "Delete network zones" msgstr "" @@ -1624,7 +1619,7 @@ msgstr "" msgid "Delete projects" msgstr "" -#: lxc/storage_bucket.go:182 lxc/storage_bucket.go:183 +#: lxc/storage_bucket.go:187 lxc/storage_bucket.go:188 msgid "Delete storage buckets" msgstr "" @@ -1680,7 +1675,7 @@ msgstr "" #: 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/info.go:32 lxc/init.go:43 lxc/launch.go:24 lxc/list.go:48 lxc/main.go:83 #: 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 @@ -1699,22 +1694,22 @@ msgstr "" #: 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_load_balancer.go:238 lxc/network_load_balancer.go:388 +#: lxc/network_load_balancer.go:456 lxc/network_load_balancer.go:554 +#: lxc/network_load_balancer.go:584 lxc/network_load_balancer.go:727 +#: lxc/network_load_balancer.go:788 lxc/network_load_balancer.go:803 +#: lxc/network_load_balancer.go:867 lxc/network_load_balancer.go:953 +#: lxc/network_load_balancer.go:968 lxc/network_load_balancer.go:1029 #: 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/network_zone.go:29 lxc/network_zone.go:86 lxc/network_zone.go:157 +#: lxc/network_zone.go:212 lxc/network_zone.go:272 lxc/network_zone.go:359 +#: lxc/network_zone.go:439 lxc/network_zone.go:470 lxc/network_zone.go:589 +#: lxc/network_zone.go:637 lxc/network_zone.go:694 lxc/network_zone.go:764 +#: lxc/network_zone.go:816 lxc/network_zone.go:875 lxc/network_zone.go:957 +#: lxc/network_zone.go:1033 lxc/network_zone.go:1063 lxc/network_zone.go:1181 +#: lxc/network_zone.go:1230 lxc/network_zone.go:1245 lxc/network_zone.go:1291 #: 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 @@ -1723,19 +1718,19 @@ msgstr "" #: 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:631 lxc/remote.go:669 lxc/remote.go:755 lxc/remote.go:828 -#: lxc/remote.go:884 lxc/remote.go:924 lxc/rename.go:21 lxc/restore.go:24 +#: lxc/query.go:34 lxc/rebuild.go:27 lxc/remote.go:35 lxc/remote.go:91 +#: lxc/remote.go:632 lxc/remote.go:670 lxc/remote.go:756 lxc/remote.go:829 +#: lxc/remote.go:885 lxc/remote.go:925 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_bucket.go:29 lxc/storage_bucket.go:83 lxc/storage_bucket.go:188 +#: lxc/storage_bucket.go:249 lxc/storage_bucket.go:382 +#: lxc/storage_bucket.go:458 lxc/storage_bucket.go:535 +#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:698 +#: lxc/storage_bucket.go:732 lxc/storage_bucket.go:773 +#: lxc/storage_bucket.go:852 lxc/storage_bucket.go:930 +#: lxc/storage_bucket.go:994 lxc/storage_bucket.go:1129 #: 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 @@ -1871,7 +1866,7 @@ msgstr "" msgid "Don't require user confirmation for using --force" msgstr "" -#: lxc/main.go:99 +#: lxc/main.go:100 msgid "Don't show progress information" msgstr "" @@ -1884,7 +1879,7 @@ msgstr "" msgid "Driver: %v (%v)" msgstr "" -#: lxc/network_zone.go:743 +#: lxc/network_zone.go:748 msgid "ENTRIES" msgstr "" @@ -1962,7 +1957,7 @@ msgstr "" msgid "Edit network forward configurations as YAML" msgstr "" -#: lxc/network_load_balancer.go:578 lxc/network_load_balancer.go:579 +#: lxc/network_load_balancer.go:583 lxc/network_load_balancer.go:584 msgid "Edit network load balancer configurations as YAML" msgstr "" @@ -1970,11 +1965,11 @@ msgstr "" msgid "Edit network peer configurations as YAML" msgstr "" -#: lxc/network_zone.go:464 lxc/network_zone.go:465 +#: lxc/network_zone.go:469 lxc/network_zone.go:470 msgid "Edit network zone configurations as YAML" msgstr "" -#: lxc/network_zone.go:1057 lxc/network_zone.go:1058 +#: lxc/network_zone.go:1062 lxc/network_zone.go:1063 msgid "Edit network zone record configurations as YAML" msgstr "" @@ -1986,11 +1981,11 @@ msgstr "" msgid "Edit project configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:243 lxc/storage_bucket.go:244 +#: lxc/storage_bucket.go:248 lxc/storage_bucket.go:249 msgid "Edit storage bucket configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:988 lxc/storage_bucket.go:989 +#: lxc/storage_bucket.go:993 lxc/storage_bucket.go:994 msgid "Edit storage bucket key as YAML" msgstr "" @@ -2031,7 +2026,7 @@ msgid "" " for the address if not yet set." msgstr "" -#: lxc/network_zone.go:1242 +#: lxc/network_zone.go:1247 msgid "Entry TTL" msgstr "" @@ -2060,9 +2055,9 @@ msgstr "" #: lxc/cluster.go:414 lxc/config.go:624 lxc/config.go:656 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/network_load_balancer.go:527 lxc/network_peer.go:463 +#: lxc/network_zone.go:414 lxc/network_zone.go:1008 lxc/profile.go:876 +#: lxc/project.go:634 lxc/storage.go:727 lxc/storage_bucket.go:602 #: lxc/storage_volume.go:1947 lxc/storage_volume.go:1985 #, c-format msgid "Error setting properties: %v" @@ -2074,10 +2069,10 @@ 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/network_forward.go:513 lxc/network_load_balancer.go:521 +#: lxc/network_peer.go:457 lxc/network_zone.go:408 lxc/network_zone.go:1002 #: lxc/profile.go:870 lxc/project.go:628 lxc/storage.go:721 -#: lxc/storage_bucket.go:591 lxc/storage_volume.go:1941 +#: lxc/storage_bucket.go:596 lxc/storage_volume.go:1941 #: lxc/storage_volume.go:1979 #, c-format msgid "Error unsetting property: %v" @@ -2263,7 +2258,7 @@ msgstr "" msgid "Failed parsing SSH host key: %w" msgstr "" -#: lxc/console.go:361 +#: lxc/console.go:366 #, c-format msgid "Failed starting command: %w" msgstr "" @@ -2278,11 +2273,11 @@ msgstr "" msgid "Failed to accept incoming connection: %w" msgstr "" -#: lxc/remote.go:190 +#: lxc/remote.go:191 msgid "Failed to add remote" msgstr "" -#: lxc/remote.go:241 +#: lxc/remote.go:242 #, c-format msgid "Failed to close server cert file %q: %w" msgstr "" @@ -2292,7 +2287,7 @@ msgstr "" msgid "Failed to connect to cluster member: %w" msgstr "" -#: lxc/remote.go:231 +#: lxc/remote.go:232 #, c-format msgid "Failed to create %q: %w" msgstr "" @@ -2302,12 +2297,12 @@ msgstr "" msgid "Failed to create alias %s: %w" msgstr "" -#: lxc/remote.go:256 +#: lxc/remote.go:257 #, c-format msgid "Failed to create certificate: %w" msgstr "" -#: lxc/remote.go:263 +#: lxc/remote.go:264 #, c-format msgid "Failed to find project: %w" msgstr "" @@ -2332,7 +2327,7 @@ msgstr "" msgid "Failed to walk path for %s: %s" msgstr "" -#: lxc/remote.go:236 +#: lxc/remote.go:237 #, c-format msgid "Failed to write server cert file %q: %w" msgstr "" @@ -2341,7 +2336,7 @@ msgstr "" msgid "Fast mode (same as --columns=nsacPt)" msgstr "" -#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:115 +#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:116 #: lxc/operation.go:136 msgid "Filtering isn't supported yet" msgstr "" @@ -2379,7 +2374,7 @@ msgstr "" msgid "Force the removal of running instances" msgstr "" -#: lxc/main.go:95 +#: lxc/main.go:96 msgid "Force using the local unix socket" msgstr "" @@ -2413,10 +2408,10 @@ msgstr "" #: 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/network_peer.go:84 lxc/network_zone.go:89 lxc/network_zone.go:697 #: lxc/operation.go:108 lxc/profile.go:637 lxc/project.go:412 -#: lxc/project.go:804 lxc/remote.go:673 lxc/storage.go:588 -#: lxc/storage_bucket.go:454 lxc/storage_bucket.go:769 +#: lxc/project.go:804 lxc/remote.go:674 lxc/storage.go:588 +#: lxc/storage_bucket.go:459 lxc/storage_bucket.go:774 #: lxc/storage_volume.go:1446 lxc/warning.go:93 msgid "Format (csv|json|table|yaml|compact)" msgstr "" @@ -2453,7 +2448,7 @@ msgstr "" msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)" msgstr "" -#: lxc/remote.go:737 +#: lxc/remote.go:738 msgid "GLOBAL" msgstr "" @@ -2473,7 +2468,7 @@ msgstr "" msgid "Generate manpages for all commands" msgstr "" -#: lxc/remote.go:159 lxc/remote.go:397 +#: lxc/remote.go:160 lxc/remote.go:398 msgid "Generating a client certificate. This may take a minute..." msgstr "" @@ -2505,7 +2500,7 @@ msgstr "" msgid "Get the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:386 +#: lxc/network_load_balancer.go:391 msgid "Get the key as a network load balancer property" msgstr "" @@ -2517,11 +2512,11 @@ msgstr "" msgid "Get the key as a network property" msgstr "" -#: lxc/network_zone.go:214 +#: lxc/network_zone.go:215 msgid "Get the key as a network zone property" msgstr "" -#: lxc/network_zone.go:814 +#: lxc/network_zone.go:819 msgid "Get the key as a network zone record property" msgstr "" @@ -2533,7 +2528,7 @@ msgstr "" msgid "Get the key as a project property" msgstr "" -#: lxc/storage_bucket.go:380 +#: lxc/storage_bucket.go:385 msgid "Get the key as a storage bucket property" msgstr "" @@ -2573,7 +2568,7 @@ msgstr "" msgid "Get values for network forward configuration keys" msgstr "" -#: lxc/network_load_balancer.go:382 lxc/network_load_balancer.go:383 +#: lxc/network_load_balancer.go:387 lxc/network_load_balancer.go:388 msgid "Get values for network load balancer configuration keys" msgstr "" @@ -2581,11 +2576,11 @@ msgstr "" msgid "Get values for network peer configuration keys" msgstr "" -#: lxc/network_zone.go:210 lxc/network_zone.go:211 +#: lxc/network_zone.go:211 lxc/network_zone.go:212 msgid "Get values for network zone configuration keys" msgstr "" -#: lxc/network_zone.go:810 lxc/network_zone.go:811 +#: lxc/network_zone.go:815 lxc/network_zone.go:816 msgid "Get values for network zone record configuration keys" msgstr "" @@ -2597,7 +2592,7 @@ msgstr "" msgid "Get values for project configuration keys" msgstr "" -#: lxc/storage_bucket.go:376 lxc/storage_bucket.go:377 +#: lxc/storage_bucket.go:381 lxc/storage_bucket.go:382 msgid "Get values for storage bucket configuration keys" msgstr "" @@ -2737,7 +2732,7 @@ msgstr "" msgid "If the snapshot name already exists, delete and create a new one" msgstr "" -#: lxc/main.go:398 +#: lxc/main.go:400 msgid "" "If this is your first time running LXD on this machine, you should also run: " "lxd init" @@ -2894,7 +2889,7 @@ msgstr "" msgid "Instance type" msgstr "" -#: lxc/remote.go:349 +#: lxc/remote.go:350 #, c-format msgid "Invalid URL scheme \"%s\" in \"%s\"" msgstr "" @@ -2966,7 +2961,7 @@ msgstr "" msgid "Invalid new snapshot name, parent volume must be the same as source" msgstr "" -#: lxc/main.go:498 +#: lxc/main.go:502 msgid "Invalid number of arguments" msgstr "" @@ -2975,7 +2970,7 @@ msgstr "" msgid "Invalid path %s" msgstr "" -#: lxc/remote.go:338 +#: lxc/remote.go:339 #, c-format msgid "Invalid protocol: %s" msgstr "" @@ -3023,7 +3018,7 @@ msgstr "" #: lxc/list.go:597 lxc/network.go:1059 lxc/network_forward.go:155 #: lxc/network_load_balancer.go:157 lxc/operation.go:177 -#: lxc/storage_bucket.go:511 lxc/storage_volume.go:1569 lxc/warning.go:220 +#: lxc/storage_bucket.go:516 lxc/storage_volume.go:1569 lxc/warning.go:220 msgid "LOCATION" msgstr "" @@ -3031,7 +3026,7 @@ msgstr "" msgid "LXD - Command line client" msgstr "" -#: lxc/console.go:382 +#: lxc/console.go:387 msgid "LXD automatically uses either spicy or remote-viewer when present." msgstr "" @@ -3121,15 +3116,15 @@ msgstr "" msgid "List available network peers" msgstr "" -#: lxc/network_zone.go:85 +#: lxc/network_zone.go:86 msgid "List available network zone" msgstr "" -#: lxc/network_zone.go:688 lxc/network_zone.go:689 +#: lxc/network_zone.go:693 lxc/network_zone.go:694 msgid "List available network zone records" msgstr "" -#: lxc/network_zone.go:84 +#: lxc/network_zone.go:85 msgid "List available network zoneS" msgstr "" @@ -3318,11 +3313,11 @@ msgstr "" msgid "List projects" msgstr "" -#: lxc/storage_bucket.go:766 lxc/storage_bucket.go:768 +#: lxc/storage_bucket.go:771 lxc/storage_bucket.go:773 msgid "List storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:451 lxc/storage_bucket.go:453 +#: lxc/storage_bucket.go:456 lxc/storage_bucket.go:458 msgid "List storage buckets" msgstr "" @@ -3350,7 +3345,7 @@ msgid "" " U - Current disk usage" msgstr "" -#: lxc/remote.go:668 lxc/remote.go:669 +#: lxc/remote.go:669 lxc/remote.go:670 msgid "List the available remotes" msgstr "" @@ -3577,11 +3572,11 @@ msgstr "" msgid "Manage network forwards" msgstr "" -#: lxc/network_load_balancer.go:782 lxc/network_load_balancer.go:783 +#: lxc/network_load_balancer.go:787 lxc/network_load_balancer.go:788 msgid "Manage network load balancer backends" msgstr "" -#: lxc/network_load_balancer.go:947 lxc/network_load_balancer.go:948 +#: lxc/network_load_balancer.go:952 lxc/network_load_balancer.go:953 msgid "Manage network load balancer ports" msgstr "" @@ -3593,15 +3588,15 @@ msgstr "" msgid "Manage network peerings" msgstr "" -#: lxc/network_zone.go:1224 lxc/network_zone.go:1225 +#: lxc/network_zone.go:1229 lxc/network_zone.go:1230 msgid "Manage network zone record entries" msgstr "" -#: lxc/network_zone.go:631 lxc/network_zone.go:632 +#: lxc/network_zone.go:636 lxc/network_zone.go:637 msgid "Manage network zone records" msgstr "" -#: lxc/network_zone.go:27 lxc/network_zone.go:28 +#: lxc/network_zone.go:28 lxc/network_zone.go:29 msgid "Manage network zones" msgstr "" @@ -3617,11 +3612,11 @@ msgstr "" msgid "Manage projects" msgstr "" -#: lxc/storage_bucket.go:726 +#: lxc/storage_bucket.go:731 msgid "Manage storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:727 +#: lxc/storage_bucket.go:732 msgid "Manage storage bucket keys." msgstr "" @@ -3649,7 +3644,7 @@ msgid "" "\"custom\" (user created) volumes." msgstr "" -#: lxc/remote.go:33 lxc/remote.go:34 +#: lxc/remote.go:34 lxc/remote.go:35 msgid "Manage the list of remote servers" msgstr "" @@ -3730,12 +3725,12 @@ msgid "" "Minimum level for log messages (only available when using pretty format)" msgstr "" -#: lxc/storage_bucket.go:111 lxc/storage_bucket.go:211 -#: lxc/storage_bucket.go:287 lxc/storage_bucket.go:406 -#: lxc/storage_bucket.go:563 lxc/storage_bucket.go:655 -#: lxc/storage_bucket.go:797 lxc/storage_bucket.go:878 -#: lxc/storage_bucket.go:953 lxc/storage_bucket.go:1032 -#: lxc/storage_bucket.go:1155 +#: lxc/storage_bucket.go:116 lxc/storage_bucket.go:216 +#: lxc/storage_bucket.go:292 lxc/storage_bucket.go:411 +#: lxc/storage_bucket.go:568 lxc/storage_bucket.go:660 +#: lxc/storage_bucket.go:802 lxc/storage_bucket.go:883 +#: lxc/storage_bucket.go:958 lxc/storage_bucket.go:1037 +#: lxc/storage_bucket.go:1160 msgid "Missing bucket name" msgstr "" @@ -3779,8 +3774,8 @@ msgstr "" msgid "Missing instance name" msgstr "" -#: lxc/storage_bucket.go:882 lxc/storage_bucket.go:957 -#: lxc/storage_bucket.go:1036 lxc/storage_bucket.go:1159 +#: lxc/storage_bucket.go:887 lxc/storage_bucket.go:962 +#: lxc/storage_bucket.go:1041 lxc/storage_bucket.go:1164 msgid "Missing key name" msgstr "" @@ -3788,10 +3783,10 @@ msgstr "" #: lxc/network_forward.go:481 lxc/network_forward.go:627 #: lxc/network_forward.go:746 lxc/network_forward.go:823 #: lxc/network_forward.go:889 lxc/network_load_balancer.go:201 -#: lxc/network_load_balancer.go:411 lxc/network_load_balancer.go:484 -#: lxc/network_load_balancer.go:630 lxc/network_load_balancer.go:750 -#: lxc/network_load_balancer.go:826 lxc/network_load_balancer.go:890 -#: lxc/network_load_balancer.go:991 lxc/network_load_balancer.go:1053 +#: lxc/network_load_balancer.go:416 lxc/network_load_balancer.go:489 +#: lxc/network_load_balancer.go:635 lxc/network_load_balancer.go:755 +#: lxc/network_load_balancer.go:831 lxc/network_load_balancer.go:895 +#: lxc/network_load_balancer.go:996 lxc/network_load_balancer.go:1058 msgid "Missing listen address" msgstr "" @@ -3816,26 +3811,26 @@ msgstr "" #: lxc/network_forward.go:477 lxc/network_forward.go:623 #: lxc/network_forward.go:742 lxc/network_forward.go:819 #: lxc/network_forward.go:885 lxc/network_load_balancer.go:123 -#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:261 -#: lxc/network_load_balancer.go:407 lxc/network_load_balancer.go:480 -#: lxc/network_load_balancer.go:626 lxc/network_load_balancer.go:746 -#: lxc/network_load_balancer.go:822 lxc/network_load_balancer.go:886 -#: lxc/network_load_balancer.go:987 lxc/network_load_balancer.go:1049 +#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:266 +#: lxc/network_load_balancer.go:412 lxc/network_load_balancer.go:485 +#: lxc/network_load_balancer.go:631 lxc/network_load_balancer.go:751 +#: lxc/network_load_balancer.go:827 lxc/network_load_balancer.go:891 +#: lxc/network_load_balancer.go:992 lxc/network_load_balancer.go:1054 #: lxc/network_peer.go:110 lxc/network_peer.go:180 lxc/network_peer.go:237 #: lxc/network_peer.go:355 lxc/network_peer.go:426 lxc/network_peer.go:556 #: lxc/network_peer.go:665 msgid "Missing network name" msgstr "" -#: lxc/network_zone.go:178 lxc/network_zone.go:234 lxc/network_zone.go:294 -#: lxc/network_zone.go:382 lxc/network_zone.go:503 lxc/network_zone.go:606 -#: lxc/network_zone.go:712 lxc/network_zone.go:780 lxc/network_zone.go:892 -#: lxc/network_zone.go:976 lxc/network_zone.go:1197 lxc/network_zone.go:1262 -#: lxc/network_zone.go:1307 +#: lxc/network_zone.go:179 lxc/network_zone.go:235 lxc/network_zone.go:299 +#: lxc/network_zone.go:387 lxc/network_zone.go:508 lxc/network_zone.go:611 +#: lxc/network_zone.go:717 lxc/network_zone.go:785 lxc/network_zone.go:897 +#: lxc/network_zone.go:981 lxc/network_zone.go:1202 lxc/network_zone.go:1267 +#: lxc/network_zone.go:1312 msgid "Missing network zone name" msgstr "" -#: lxc/network_zone.go:833 lxc/network_zone.go:1095 +#: lxc/network_zone.go:838 lxc/network_zone.go:1100 msgid "Missing network zone record name" msgstr "" @@ -3845,13 +3840,13 @@ msgid "Missing peer name" msgstr "" #: lxc/storage.go:194 lxc/storage.go:264 lxc/storage.go:370 lxc/storage.go:440 -#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:107 -#: lxc/storage_bucket.go:207 lxc/storage_bucket.go:283 -#: lxc/storage_bucket.go:402 lxc/storage_bucket.go:477 -#: lxc/storage_bucket.go:559 lxc/storage_bucket.go:651 -#: lxc/storage_bucket.go:793 lxc/storage_bucket.go:874 -#: lxc/storage_bucket.go:949 lxc/storage_bucket.go:1028 -#: lxc/storage_bucket.go:1151 lxc/storage_volume.go:189 +#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:112 +#: lxc/storage_bucket.go:212 lxc/storage_bucket.go:288 +#: lxc/storage_bucket.go:407 lxc/storage_bucket.go:482 +#: lxc/storage_bucket.go:564 lxc/storage_bucket.go:656 +#: lxc/storage_bucket.go:798 lxc/storage_bucket.go:879 +#: lxc/storage_bucket.go:954 lxc/storage_bucket.go:1033 +#: lxc/storage_bucket.go:1156 lxc/storage_volume.go:189 #: lxc/storage_volume.go:287 lxc/storage_volume.go:583 #: lxc/storage_volume.go:660 lxc/storage_volume.go:735 #: lxc/storage_volume.go:817 lxc/storage_volume.go:919 @@ -3971,7 +3966,7 @@ msgstr "" msgid "Moving the storage volume: %s" msgstr "" -#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1097 +#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1102 msgid "Multiple ports match. Use --force to remove them all" msgstr "" @@ -3990,10 +3985,10 @@ 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:677 lxc/project.go:498 -#: lxc/remote.go:731 lxc/storage.go:638 lxc/storage_bucket.go:506 -#: lxc/storage_bucket.go:826 lxc/storage_volume.go:1561 +#: lxc/network_acl.go:147 lxc/network_peer.go:139 lxc/network_zone.go:139 +#: lxc/network_zone.go:746 lxc/profile.go:677 lxc/project.go:498 +#: lxc/remote.go:732 lxc/storage.go:638 lxc/storage_bucket.go:511 +#: lxc/storage_bucket.go:831 lxc/storage_volume.go:1561 msgid "NAME" msgstr "" @@ -4019,7 +4014,7 @@ msgstr "" #: lxc/network.go:957 lxc/operation.go:154 lxc/project.go:456 #: lxc/project.go:461 lxc/project.go:466 lxc/project.go:471 lxc/project.go:476 -#: lxc/project.go:481 lxc/remote.go:691 lxc/remote.go:696 lxc/remote.go:701 +#: lxc/project.go:481 lxc/remote.go:692 lxc/remote.go:697 lxc/remote.go:702 msgid "NO" msgstr "" @@ -4046,7 +4041,7 @@ msgstr "" msgid "Name" msgstr "" -#: lxc/remote.go:141 +#: lxc/remote.go:142 msgid "Name of the project to use for this remote:" msgstr "" @@ -4095,12 +4090,12 @@ msgstr "" msgid "Network ACL %s renamed to %s" msgstr "" -#: lxc/network_zone.go:336 +#: lxc/network_zone.go:341 #, c-format msgid "Network Zone %s created" msgstr "" -#: lxc/network_zone.go:616 +#: lxc/network_zone.go:621 #, c-format msgid "Network Zone %s deleted" msgstr "" @@ -4115,12 +4110,12 @@ msgstr "" msgid "Network forward %s deleted" msgstr "" -#: lxc/network_load_balancer.go:365 +#: lxc/network_load_balancer.go:370 #, c-format msgid "Network load balancer %s created" msgstr "" -#: lxc/network_load_balancer.go:767 +#: lxc/network_load_balancer.go:772 #, c-format msgid "Network load balancer %s deleted" msgstr "" @@ -4158,12 +4153,12 @@ msgstr "" msgid "Network usage:" msgstr "" -#: lxc/network_zone.go:934 +#: lxc/network_zone.go:939 #, c-format msgid "Network zone record %s created" msgstr "" -#: lxc/network_zone.go:1207 +#: lxc/network_zone.go:1212 #, c-format msgid "Network zone record %s deleted" msgstr "" @@ -4198,11 +4193,11 @@ msgstr "" msgid "No device found for this storage volume" msgstr "" -#: lxc/network_load_balancer.go:921 +#: lxc/network_load_balancer.go:926 msgid "No matching backend found" msgstr "" -#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1108 +#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1113 msgid "No matching port(s) found" msgstr "" @@ -4248,7 +4243,7 @@ msgstr "" msgid "Only \"custom\" volumes can be snapshotted" msgstr "" -#: lxc/remote.go:332 +#: lxc/remote.go:333 msgid "Only https URLs are supported for simplestreams" msgstr "" @@ -4273,7 +4268,7 @@ msgstr "" msgid "Optimized Storage" msgstr "" -#: lxc/main.go:96 +#: lxc/main.go:97 msgid "Override the source project" msgstr "" @@ -4319,11 +4314,11 @@ msgstr "" msgid "PROJECT" msgstr "" -#: lxc/remote.go:733 +#: lxc/remote.go:734 msgid "PROTOCOL" msgstr "" -#: lxc/image.go:1073 lxc/remote.go:735 +#: lxc/image.go:1073 lxc/remote.go:736 msgid "PUBLIC" msgstr "" @@ -4339,7 +4334,7 @@ msgstr "" msgid "Partitions:" msgstr "" -#: lxc/main.go:361 +#: lxc/main.go:363 #, c-format msgid "Password for %s: " msgstr "" @@ -4352,7 +4347,7 @@ msgstr "" msgid "Perform an incremental copy" msgstr "" -#: lxc/remote.go:182 +#: lxc/remote.go:183 msgid "Please provide an alternate server address (empty to abort):" msgstr "" @@ -4364,7 +4359,7 @@ msgstr "" msgid "Please provide cluster member name: " msgstr "" -#: lxc/remote.go:462 +#: lxc/remote.go:463 msgid "Please type 'y', 'n' or the fingerprint:" msgstr "" @@ -4386,10 +4381,10 @@ msgstr "" #: lxc/config.go:1278 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/network_load_balancer.go:695 lxc/network_peer.go:611 +#: lxc/network_zone.go:557 lxc/network_zone.go:1149 lxc/profile.go:539 +#: lxc/project.go:316 lxc/storage.go:311 lxc/storage_bucket.go:349 +#: lxc/storage_bucket.go:1098 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 "" @@ -4398,7 +4393,7 @@ msgstr "" msgid "Pretty rendering (short for --format=pretty)" msgstr "" -#: lxc/main.go:94 +#: lxc/main.go:95 msgid "Print help" msgstr "" @@ -4406,7 +4401,7 @@ msgstr "" msgid "Print the raw response" msgstr "" -#: lxc/main.go:93 +#: lxc/main.go:94 msgid "Print version number" msgstr "" @@ -4495,7 +4490,7 @@ msgstr "" msgid "Project %s renamed to %s" msgstr "" -#: lxc/remote.go:106 +#: lxc/remote.go:107 msgid "Project to use for the remote" msgstr "" @@ -4593,7 +4588,7 @@ msgid "" "pool \"default\"." msgstr "" -#: lxc/remote.go:105 +#: lxc/remote.go:106 msgid "Public image server" msgstr "" @@ -4641,7 +4636,7 @@ msgstr "" msgid "RESOURCE" msgstr "" -#: lxc/storage_bucket.go:828 +#: lxc/storage_bucket.go:833 msgid "ROLE" msgstr "" @@ -4684,45 +4679,45 @@ msgstr "" msgid "Refreshing the image: %s" msgstr "" -#: lxc/remote.go:785 +#: lxc/remote.go:786 #, c-format msgid "Remote %s already exists" msgstr "" -#: lxc/project.go:769 lxc/remote.go:776 lxc/remote.go:849 lxc/remote.go:905 -#: lxc/remote.go:945 +#: lxc/project.go:769 lxc/remote.go:777 lxc/remote.go:850 lxc/remote.go:906 +#: lxc/remote.go:946 #, c-format msgid "Remote %s doesn't exist" msgstr "" -#: lxc/remote.go:301 +#: lxc/remote.go:302 #, c-format msgid "Remote %s exists as <%s>" msgstr "" -#: lxc/remote.go:857 +#: lxc/remote.go:858 #, c-format msgid "Remote %s is global and cannot be removed" msgstr "" -#: lxc/remote.go:780 lxc/remote.go:853 lxc/remote.go:949 +#: lxc/remote.go:781 lxc/remote.go:854 lxc/remote.go:950 #, c-format msgid "Remote %s is static and cannot be modified" msgstr "" -#: lxc/remote.go:290 +#: lxc/remote.go:291 msgid "Remote address must not be empty" msgstr "" -#: lxc/remote.go:101 +#: lxc/remote.go:102 msgid "Remote admin password" msgstr "" -#: lxc/remote.go:295 +#: lxc/remote.go:296 msgid "Remote names may not contain colons" msgstr "" -#: lxc/remote.go:102 +#: lxc/remote.go:103 msgid "Remote trust token" msgstr "" @@ -4748,7 +4743,7 @@ msgstr "" msgid "Remove a member from the cluster" msgstr "" -#: lxc/network_zone.go:1285 +#: lxc/network_zone.go:1290 msgid "Remove a network zone record entry" msgstr "" @@ -4756,7 +4751,7 @@ msgstr "" msgid "Remove aliases" msgstr "" -#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1025 +#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1030 msgid "Remove all ports that match" msgstr "" @@ -4764,15 +4759,15 @@ msgstr "" msgid "Remove all rules that match" msgstr "" -#: lxc/network_load_balancer.go:862 +#: lxc/network_load_balancer.go:867 msgid "Remove backend from a load balancer" msgstr "" -#: lxc/network_load_balancer.go:861 +#: lxc/network_load_balancer.go:866 msgid "Remove backends from a load balancer" msgstr "" -#: lxc/network_zone.go:1286 +#: lxc/network_zone.go:1291 msgid "Remove entries from a network zone record" msgstr "" @@ -4796,7 +4791,7 @@ msgstr "" msgid "Remove ports from a forward" msgstr "" -#: lxc/network_load_balancer.go:1023 lxc/network_load_balancer.go:1024 +#: lxc/network_load_balancer.go:1028 lxc/network_load_balancer.go:1029 msgid "Remove ports from a load balancer" msgstr "" @@ -4804,7 +4799,7 @@ msgstr "" msgid "Remove profiles from instances" msgstr "" -#: lxc/remote.go:827 lxc/remote.go:828 +#: lxc/remote.go:828 lxc/remote.go:829 msgid "Remove remotes" msgstr "" @@ -4861,7 +4856,7 @@ msgstr "" msgid "Rename projects" msgstr "" -#: lxc/remote.go:754 lxc/remote.go:755 +#: lxc/remote.go:755 lxc/remote.go:756 msgid "Rename remotes" msgstr "" @@ -4939,7 +4934,7 @@ msgid "Restrict the certificate to one or more projects" msgstr "" #: lxc/console.go:44 -msgid "Retrieve the instance's console log" +msgid "Retrieve the container's console log" msgstr "" #: lxc/init.go:347 @@ -4955,7 +4950,7 @@ msgstr "" msgid "Revoke cluster member join token" msgstr "" -#: lxc/storage_bucket.go:851 +#: lxc/storage_bucket.go:856 msgid "Role (admin or read-only)" msgstr "" @@ -5006,7 +5001,7 @@ msgstr "" msgid "STATE" msgstr "" -#: lxc/remote.go:736 +#: lxc/remote.go:737 msgid "STATIC" msgstr "" @@ -5030,11 +5025,11 @@ msgstr "" msgid "STP" msgstr "" -#: lxc/storage_bucket.go:853 +#: lxc/storage_bucket.go:858 msgid "Secret key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:909 +#: lxc/storage_bucket.go:914 #, c-format msgid "Secret key: %s" msgstr "" @@ -5043,19 +5038,19 @@ msgstr "" msgid "Send a raw query to LXD" msgstr "" -#: lxc/remote.go:104 +#: lxc/remote.go:105 msgid "Server authentication type (tls or oidc)" msgstr "" -#: lxc/remote.go:460 +#: lxc/remote.go:461 msgid "Server certificate NACKed by user" msgstr "" -#: lxc/remote.go:599 +#: lxc/remote.go:600 msgid "Server doesn't trust us after authentication" msgstr "" -#: lxc/remote.go:103 +#: lxc/remote.go:104 msgid "Server protocol (lxd or simplestreams)" msgstr "" @@ -5154,11 +5149,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_load_balancer.go:450 +#: lxc/network_load_balancer.go:455 msgid "Set network load balancer keys" msgstr "" -#: lxc/network_load_balancer.go:451 +#: lxc/network_load_balancer.go:456 msgid "" "Set network load balancer keys\n" "\n" @@ -5180,11 +5175,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:353 +#: lxc/network_zone.go:358 msgid "Set network zone configuration keys" msgstr "" -#: lxc/network_zone.go:354 +#: lxc/network_zone.go:359 msgid "" "Set network zone configuration keys\n" "\n" @@ -5193,7 +5188,7 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:951 lxc/network_zone.go:952 +#: lxc/network_zone.go:956 lxc/network_zone.go:957 msgid "Set network zone record configuration keys" msgstr "" @@ -5223,11 +5218,11 @@ msgid "" " lxc project set [:] " msgstr "" -#: lxc/storage_bucket.go:529 +#: lxc/storage_bucket.go:534 msgid "Set storage bucket configuration keys" msgstr "" -#: lxc/storage_bucket.go:530 +#: lxc/storage_bucket.go:535 msgid "" "Set storage bucket configuration keys\n" "\n" @@ -5262,7 +5257,7 @@ msgid "" " lxc storage volume set [:] [/] " msgstr "" -#: lxc/remote.go:923 lxc/remote.go:924 +#: lxc/remote.go:924 lxc/remote.go:925 msgid "Set the URL for the remote" msgstr "" @@ -5290,7 +5285,7 @@ msgstr "" msgid "Set the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:458 +#: lxc/network_load_balancer.go:463 msgid "Set the key as a network load balancer property" msgstr "" @@ -5302,11 +5297,11 @@ msgstr "" msgid "Set the key as a network property" msgstr "" -#: lxc/network_zone.go:361 +#: lxc/network_zone.go:366 msgid "Set the key as a network zone property" msgstr "" -#: lxc/network_zone.go:957 +#: lxc/network_zone.go:962 msgid "Set the key as a network zone record property" msgstr "" @@ -5318,7 +5313,7 @@ msgstr "" msgid "Set the key as a project property" msgstr "" -#: lxc/storage_bucket.go:537 +#: lxc/storage_bucket.go:542 msgid "Set the key as a storage bucket property" msgstr "" @@ -5338,11 +5333,11 @@ msgstr "" msgid "Setup SSH SFTP listener on address:port instead of mounting" msgstr "" -#: lxc/main.go:97 +#: lxc/main.go:98 msgid "Show all debug messages" msgstr "" -#: lxc/main.go:98 +#: lxc/main.go:99 msgid "Show all information messages" msgstr "" @@ -5411,7 +5406,7 @@ msgstr "" msgid "Show instance or server information" msgstr "" -#: lxc/main.go:271 lxc/main.go:272 +#: lxc/main.go:272 lxc/main.go:273 msgid "Show less common commands" msgstr "" @@ -5443,15 +5438,15 @@ msgstr "" msgid "Show network peer configurations" msgstr "" -#: lxc/network_zone.go:155 lxc/network_zone.go:156 +#: lxc/network_zone.go:156 lxc/network_zone.go:157 msgid "Show network zone configurations" msgstr "" -#: lxc/network_zone.go:758 +#: lxc/network_zone.go:763 msgid "Show network zone record configuration" msgstr "" -#: lxc/network_zone.go:759 +#: lxc/network_zone.go:764 msgid "Show network zone record configurations" msgstr "" @@ -5463,11 +5458,11 @@ msgstr "" msgid "Show project options" msgstr "" -#: lxc/storage_bucket.go:623 lxc/storage_bucket.go:624 +#: lxc/storage_bucket.go:628 lxc/storage_bucket.go:629 msgid "Show storage bucket configurations" msgstr "" -#: lxc/storage_bucket.go:1123 lxc/storage_bucket.go:1124 +#: lxc/storage_bucket.go:1128 lxc/storage_bucket.go:1129 msgid "Show storage bucket key configurations" msgstr "" @@ -5493,7 +5488,7 @@ msgid "" "that are granted via identity provider group mappings. \n" msgstr "" -#: lxc/remote.go:630 lxc/remote.go:631 +#: lxc/remote.go:631 lxc/remote.go:632 msgid "Show the default remote" msgstr "" @@ -5617,22 +5612,22 @@ msgstr "" msgid "Stopping the instance failed: %s" msgstr "" -#: lxc/storage_bucket.go:161 +#: lxc/storage_bucket.go:166 #, c-format msgid "Storage bucket %s created" msgstr "" -#: lxc/storage_bucket.go:228 +#: lxc/storage_bucket.go:233 #, c-format msgid "Storage bucket %s deleted" msgstr "" -#: lxc/storage_bucket.go:907 +#: lxc/storage_bucket.go:912 #, c-format msgid "Storage bucket key %s added" msgstr "" -#: lxc/storage_bucket.go:973 +#: lxc/storage_bucket.go:978 #, c-format msgid "Storage bucket key %s removed" msgstr "" @@ -5705,7 +5700,7 @@ msgstr "" msgid "Switch the current project" msgstr "" -#: lxc/remote.go:883 lxc/remote.go:884 +#: lxc/remote.go:884 lxc/remote.go:885 msgid "Switch the default remote" msgstr "" @@ -5820,7 +5815,7 @@ msgstr "" msgid "The property %q does not exist on the instance snapshot %s/%s: %v" msgstr "" -#: lxc/network_load_balancer.go:424 +#: lxc/network_load_balancer.go:429 #, c-format msgid "The property %q does not exist on the load balancer %q: %v" msgstr "" @@ -5845,12 +5840,12 @@ msgstr "" msgid "The property %q does not exist on the network peer %q: %v" msgstr "" -#: lxc/network_zone.go:246 +#: lxc/network_zone.go:247 #, c-format msgid "The property %q does not exist on the network zone %q: %v" msgstr "" -#: lxc/network_zone.go:845 +#: lxc/network_zone.go:850 #, c-format msgid "The property %q does not exist on the network zone record %q: %v" msgstr "" @@ -5865,7 +5860,7 @@ msgstr "" msgid "The property %q does not exist on the project %q: %v" msgstr "" -#: lxc/storage_bucket.go:426 +#: lxc/storage_bucket.go:431 #, c-format msgid "The property %q does not exist on the storage bucket %q: %v" msgstr "" @@ -5919,7 +5914,7 @@ msgstr "" msgid "This LXD server is not available on the network" msgstr "" -#: lxc/main.go:293 +#: lxc/main.go:294 msgid "" "This client hasn't been configured to use a remote LXD server yet.\n" "As your platform can't run native Linux instances, you must connect to a " @@ -5951,11 +5946,11 @@ msgstr "" msgid "To create a new network, use: lxc network create" msgstr "" -#: lxc/console.go:210 +#: lxc/console.go:215 msgid "To detach from the console, press: +a q" msgstr "" -#: lxc/main.go:403 +#: lxc/main.go:406 msgid "" "To start your first container, try: lxc launch ubuntu:24.04\n" "Or for a virtual machine: lxc launch ubuntu:24.04 --vm" @@ -6053,7 +6048,7 @@ msgstr "" msgid "UPLOAD DATE" msgstr "" -#: lxc/cluster.go:184 lxc/remote.go:732 +#: lxc/cluster.go:184 lxc/remote.go:733 msgid "URL" msgstr "" @@ -6062,7 +6057,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:679 lxc/project.go:506 +#: lxc/network_zone.go:141 lxc/profile.go:679 lxc/project.go:506 #: lxc/storage.go:647 lxc/storage_volume.go:1564 msgid "USED BY" msgstr "" @@ -6081,7 +6076,7 @@ msgstr "" msgid "Unable to create a temporary file: %v" msgstr "" -#: lxc/remote.go:213 lxc/remote.go:247 +#: lxc/remote.go:214 lxc/remote.go:248 msgid "Unavailable remote server" msgstr "" @@ -6101,7 +6096,7 @@ msgstr "" msgid "Unknown column shorthand char '%c' in '%s'" msgstr "" -#: lxc/console.go:159 +#: lxc/console.go:164 #, c-format msgid "Unknown console type %q" msgstr "" @@ -6161,11 +6156,11 @@ msgstr "" msgid "Unset network forward keys" msgstr "" -#: lxc/network_load_balancer.go:548 +#: lxc/network_load_balancer.go:553 msgid "Unset network load balancer configuration keys" msgstr "" -#: lxc/network_load_balancer.go:549 +#: lxc/network_load_balancer.go:554 msgid "Unset network load balancer keys" msgstr "" @@ -6177,11 +6172,11 @@ msgstr "" msgid "Unset network peer keys" msgstr "" -#: lxc/network_zone.go:433 lxc/network_zone.go:434 +#: lxc/network_zone.go:438 lxc/network_zone.go:439 msgid "Unset network zone configuration keys" msgstr "" -#: lxc/network_zone.go:1027 lxc/network_zone.go:1028 +#: lxc/network_zone.go:1032 lxc/network_zone.go:1033 msgid "Unset network zone record configuration keys" msgstr "" @@ -6193,7 +6188,7 @@ msgstr "" msgid "Unset project configuration keys" msgstr "" -#: lxc/storage_bucket.go:692 lxc/storage_bucket.go:693 +#: lxc/storage_bucket.go:697 lxc/storage_bucket.go:698 msgid "Unset storage bucket configuration keys" msgstr "" @@ -6217,7 +6212,7 @@ msgstr "" msgid "Unset the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:552 +#: lxc/network_load_balancer.go:557 msgid "Unset the key as a network load balancer property" msgstr "" @@ -6229,11 +6224,11 @@ msgstr "" msgid "Unset the key as a network property" msgstr "" -#: lxc/network_zone.go:437 +#: lxc/network_zone.go:442 msgid "Unset the key as a network zone property" msgstr "" -#: lxc/network_zone.go:1031 +#: lxc/network_zone.go:1036 msgid "Unset the key as a network zone record property" msgstr "" @@ -6245,7 +6240,7 @@ msgstr "" msgid "Unset the key as a project property" msgstr "" -#: lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:701 msgid "Unset the key as a storage bucket property" msgstr "" @@ -6307,7 +6302,7 @@ msgid "" "Use storage driver optimized format (can only be restored on a similar pool)" msgstr "" -#: lxc/main.go:100 +#: lxc/main.go:101 msgid "Use with help or --help to view sub-commands" msgstr "" @@ -6404,7 +6399,7 @@ msgstr "" #: lxc/network.go:959 lxc/operation.go:156 lxc/project.go:458 #: lxc/project.go:463 lxc/project.go:468 lxc/project.go:473 lxc/project.go:478 -#: lxc/project.go:483 lxc/remote.go:693 lxc/remote.go:698 lxc/remote.go:703 +#: lxc/project.go:483 lxc/remote.go:694 lxc/remote.go:699 lxc/remote.go:704 msgid "YES" msgstr "" @@ -6439,7 +6434,7 @@ 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/network.go:909 lxc/network_acl.go:91 lxc/network_zone.go:83 #: 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 "[:]" @@ -6502,19 +6497,19 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:154 lxc/network_zone.go:463 lxc/network_zone.go:581 +#: lxc/network_zone.go:155 lxc/network_zone.go:468 lxc/network_zone.go:586 msgid "[:]" msgstr "" -#: lxc/network_zone.go:209 lxc/network_zone.go:432 +#: lxc/network_zone.go:210 lxc/network_zone.go:437 msgid "[:] " msgstr "" -#: lxc/network_zone.go:352 +#: lxc/network_zone.go:357 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:269 +#: lxc/network_zone.go:270 msgid "[:] [key=value...]" msgstr "" @@ -6760,30 +6755,30 @@ msgstr "" #: lxc/network_forward.go:169 lxc/network_forward.go:574 #: lxc/network_forward.go:715 lxc/network_load_balancer.go:171 -#: lxc/network_load_balancer.go:577 lxc/network_load_balancer.go:719 +#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:724 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:860 +#: lxc/network_load_balancer.go:865 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:796 +#: lxc/network_load_balancer.go:801 msgid "" "[:] " "[]" msgstr "" #: lxc/network_forward.go:377 lxc/network_forward.go:544 -#: lxc/network_load_balancer.go:381 lxc/network_load_balancer.go:547 +#: lxc/network_load_balancer.go:386 lxc/network_load_balancer.go:552 msgid "[:] " msgstr "" -#: lxc/network_forward.go:446 lxc/network_load_balancer.go:449 +#: lxc/network_forward.go:446 lxc/network_load_balancer.go:454 msgid "[:] =..." msgstr "" -#: lxc/network_load_balancer.go:961 +#: lxc/network_load_balancer.go:966 msgid "" "[:] " "[,...]" @@ -6795,7 +6790,7 @@ msgid "" " []" msgstr "" -#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1022 +#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1027 msgid "[:] [] []" msgstr "" @@ -6846,7 +6841,7 @@ msgid "[:]" msgstr "" #: lxc/storage.go:167 lxc/storage.go:218 lxc/storage.go:412 lxc/storage.go:759 -#: lxc/storage_bucket.go:449 +#: lxc/storage_bucket.go:454 msgid "[:]" msgstr "" @@ -6854,18 +6849,18 @@ msgstr "" msgid "[:] []" msgstr "" -#: lxc/storage_bucket.go:180 lxc/storage_bucket.go:242 -#: lxc/storage_bucket.go:622 lxc/storage_bucket.go:764 +#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:247 +#: lxc/storage_bucket.go:627 lxc/storage_bucket.go:769 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:375 lxc/storage_bucket.go:691 -#: lxc/storage_bucket.go:845 lxc/storage_bucket.go:923 -#: lxc/storage_bucket.go:987 lxc/storage_bucket.go:1122 +#: lxc/storage_bucket.go:380 lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:850 lxc/storage_bucket.go:928 +#: lxc/storage_bucket.go:992 lxc/storage_bucket.go:1127 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:528 +#: lxc/storage_bucket.go:533 msgid "[:] =..." msgstr "" @@ -7009,27 +7004,27 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:686 +#: lxc/network_zone.go:691 msgid "[:]" msgstr "" -#: lxc/network_zone.go:757 lxc/network_zone.go:1056 lxc/network_zone.go:1173 +#: lxc/network_zone.go:762 lxc/network_zone.go:1061 lxc/network_zone.go:1178 msgid "[:] " msgstr "" -#: lxc/network_zone.go:809 lxc/network_zone.go:1026 +#: lxc/network_zone.go:814 lxc/network_zone.go:1031 msgid "[:] " msgstr "" -#: lxc/network_zone.go:950 +#: lxc/network_zone.go:955 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:1238 lxc/network_zone.go:1284 +#: lxc/network_zone.go:1243 lxc/network_zone.go:1289 msgid "[:] " msgstr "" -#: lxc/network_zone.go:868 +#: lxc/network_zone.go:873 msgid "[:] [key=value...]" msgstr "" @@ -7053,7 +7048,7 @@ msgstr "" msgid "[:][] [...]" msgstr "" -#: lxc/remote.go:88 +#: lxc/remote.go:89 msgid "[] " msgstr "" @@ -7061,7 +7056,7 @@ msgstr "" msgid "[[:]]" msgstr "" -#: lxc/project.go:488 lxc/remote.go:722 +#: lxc/project.go:488 lxc/remote.go:723 msgid "current" msgstr "" @@ -7324,6 +7319,23 @@ msgid "" " Create a new OVN network called bar using baz as its uplink network" msgstr "" +#: lxc/network_load_balancer.go:239 +msgid "" +"lxc network load-balancer create n1 127.0.0.1\n" +"\n" +"lxc network load-balancer create n1 127.0.0.1 < config.yaml\n" +" Create network load-balancer for network n1 with configuration from " +"config.yaml" +msgstr "" + +#: lxc/network_zone.go:273 +msgid "" +"lxc network zone create z1\n" +"\n" +"lxc network zone create z1 < config.yaml\n" +" Create network zone z1 with configuration from config.yaml" +msgstr "" + #: lxc/operation.go:195 msgid "" "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n" @@ -7394,26 +7406,36 @@ msgid "" " Restore the snapshot." msgstr "" -#: lxc/storage_bucket.go:245 +#: lxc/storage_bucket.go:84 +msgid "" +"lxc storage bucket create p1 b01\n" +"\tCreate a new storage bucket name b01 in storage pool p1\n" +"\n" +"lxc storage bucket create p1 b01 < config.yaml\n" +"\tCreate a new storage bucket name b01 in storage pool p1 using the content " +"of config.yaml" +msgstr "" + +#: lxc/storage_bucket.go:250 msgid "" "lxc storage bucket edit [:] < bucket.yaml\n" " Update a storage bucket using the content of bucket.yaml." msgstr "" -#: lxc/storage_bucket.go:990 +#: lxc/storage_bucket.go:995 msgid "" "lxc storage bucket edit [:] < key.yaml\n" " Update a storage bucket key using the content of key.yaml." msgstr "" -#: lxc/storage_bucket.go:1125 +#: lxc/storage_bucket.go:1130 msgid "" "lxc storage bucket key show default data foo\n" " Will show the properties of a bucket key called \"foo\" for a bucket " "called \"data\" in the \"default\" pool." msgstr "" -#: lxc/storage_bucket.go:625 +#: lxc/storage_bucket.go:630 msgid "" "lxc storage bucket show default data\n" " Will show the properties of a bucket called \"data\" in the \"default\" " @@ -7432,7 +7454,7 @@ msgid "" "\t\tCreate a new custom volume using backup0.tar.gz as the source." msgstr "" -#: lxc/remote.go:459 +#: lxc/remote.go:460 msgid "n" msgstr "" @@ -7444,7 +7466,7 @@ msgstr "" msgid "no" msgstr "" -#: lxc/remote.go:452 +#: lxc/remote.go:453 msgid "ok (y/n/[fingerprint])?" msgstr "" @@ -7481,7 +7503,7 @@ msgstr "" msgid "used by" msgstr "" -#: lxc/remote.go:461 +#: lxc/remote.go:462 msgid "y" msgstr "" diff --git a/po/pl.po b/po/pl.po index a75f778966c2..5ba416baa7e5 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-08-20 09:31+0100\n" +"POT-Creation-Date: 2024-08-30 09:27+0100\n" "PO-Revision-Date: 2022-03-10 15:08+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Polish =20) ? 1 : 2;\n" "X-Generator: Weblate 4.12-dev\n" -#: lxc/storage_bucket.go:255 lxc/storage_bucket.go:1000 +#: lxc/storage_bucket.go:260 lxc/storage_bucket.go:1005 #, fuzzy msgid "" "### This is a YAML representation of a storage bucket.\n" @@ -431,7 +431,7 @@ msgstr "" "###\n" "### Nazwa jest widoczna, ale nie może zostać zmieniona" -#: lxc/network_load_balancer.go:588 +#: lxc/network_load_balancer.go:593 #, fuzzy msgid "" "### This is a YAML representation of the network load balancer.\n" @@ -508,7 +508,7 @@ msgstr "" "###\n" "### Nazwa jest widoczna, ale nie może zostać zmieniona" -#: lxc/network_zone.go:1066 +#: lxc/network_zone.go:1071 #, fuzzy msgid "" "### This is a YAML representation of the network zone record.\n" @@ -533,7 +533,7 @@ msgstr "" "### config:\n" "### size: \"61203283968\"" -#: lxc/network_zone.go:473 +#: lxc/network_zone.go:478 #, fuzzy msgid "" "### This is a YAML representation of the network zone.\n" @@ -777,15 +777,15 @@ msgstr "" msgid " " msgstr "" -#: lxc/remote.go:825 lxc/remote.go:882 +#: lxc/remote.go:826 lxc/remote.go:883 msgid "" msgstr "" -#: lxc/remote.go:922 +#: lxc/remote.go:923 msgid " " msgstr "" -#: lxc/remote.go:752 +#: lxc/remote.go:753 msgid " " msgstr "" @@ -818,7 +818,7 @@ msgstr "" msgid "ARCHITECTURE" msgstr "" -#: lxc/remote.go:734 +#: lxc/remote.go:735 msgid "AUTH TYPE" msgstr "" @@ -826,15 +826,15 @@ msgstr "" msgid "AUTHENTICATION METHOD" msgstr "" -#: lxc/remote.go:100 +#: lxc/remote.go:101 msgid "Accept certificate" msgstr "" -#: lxc/storage_bucket.go:852 +#: lxc/storage_bucket.go:857 msgid "Access key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:908 +#: lxc/storage_bucket.go:913 #, c-format msgid "Access key: %s" msgstr "" @@ -868,19 +868,19 @@ msgstr "" msgid "Add a group to an identity provider group" msgstr "" -#: lxc/network_zone.go:1239 +#: lxc/network_zone.go:1244 msgid "Add a network zone record entry" msgstr "" -#: lxc/network_load_balancer.go:798 +#: lxc/network_load_balancer.go:803 msgid "Add backend to a load balancer" msgstr "" -#: lxc/network_load_balancer.go:797 +#: lxc/network_load_balancer.go:802 msgid "Add backends to a load balancer" msgstr "" -#: lxc/network_zone.go:1240 +#: lxc/network_zone.go:1245 msgid "Add entries to a network zone record" msgstr "" @@ -896,11 +896,11 @@ msgstr "" msgid "Add new aliases" msgstr "" -#: lxc/remote.go:89 +#: lxc/remote.go:90 msgid "Add new remote servers" msgstr "" -#: lxc/remote.go:90 +#: lxc/remote.go:91 msgid "" "Add new remote servers\n" "\n" @@ -941,7 +941,7 @@ msgstr "" msgid "Add ports to a forward" msgstr "" -#: lxc/network_load_balancer.go:962 lxc/network_load_balancer.go:963 +#: lxc/network_load_balancer.go:967 lxc/network_load_balancer.go:968 msgid "Add ports to a load balancer" msgstr "" @@ -962,17 +962,17 @@ msgstr "" msgid "Address: %s" msgstr "" -#: lxc/storage_bucket.go:164 +#: lxc/storage_bucket.go:169 #, c-format msgid "Admin access key: %s" msgstr "" -#: lxc/remote.go:566 +#: lxc/remote.go:567 #, c-format msgid "Admin password (or token) for %s:" msgstr "" -#: lxc/storage_bucket.go:165 +#: lxc/storage_bucket.go:170 #, c-format msgid "Admin secret key: %s" msgstr "" @@ -1004,7 +1004,7 @@ msgstr "" msgid "All projects" msgstr "" -#: lxc/remote.go:181 +#: lxc/remote.go:182 msgid "All server addresses are unavailable" msgstr "" @@ -1027,7 +1027,7 @@ msgstr "" msgid "Are you sure you want to %s cluster member %q? (yes/no) [default=no]: " msgstr "" -#: lxc/console.go:383 +#: lxc/console.go:388 msgid "As neither could be found, the raw SPICE socket can be found at:" msgstr "" @@ -1075,7 +1075,7 @@ msgid "" "as well as retrieve past log entries from it." msgstr "" -#: lxc/remote.go:548 +#: lxc/remote.go:549 #, c-format msgid "Authentication type '%s' not supported by server" msgstr "" @@ -1094,11 +1094,11 @@ msgstr "" msgid "Auto update: %s" msgstr "" -#: lxc/network_forward.go:240 lxc/network_load_balancer.go:242 +#: lxc/network_forward.go:240 lxc/network_load_balancer.go:247 msgid "Auto-allocate an IPv4 or IPv6 listen address. One of 'ipv4', 'ipv6'." msgstr "" -#: lxc/remote.go:136 +#: lxc/remote.go:137 msgid "Available projects:" msgstr "" @@ -1130,8 +1130,8 @@ msgid "Bad device override syntax, expecting ,=: %s" msgstr "" #: lxc/network.go:333 lxc/network_acl.go:382 lxc/network_forward.go:293 -#: lxc/network_load_balancer.go:296 lxc/network_peer.go:280 -#: lxc/network_zone.go:324 lxc/network_zone.go:922 lxc/storage_bucket.go:136 +#: lxc/network_load_balancer.go:301 lxc/network_peer.go:280 +#: lxc/network_zone.go:329 lxc/network_zone.go:927 lxc/storage_bucket.go:141 #, c-format msgid "Bad key/value pair: %s" msgstr "" @@ -1253,7 +1253,7 @@ msgstr "" msgid "Can't read from stdin: %w" msgstr "" -#: lxc/remote.go:861 +#: lxc/remote.go:862 msgid "Can't remove the default remote" msgstr "" @@ -1319,15 +1319,14 @@ msgstr "" msgid "Certificate add token for %s deleted" msgstr "" -#: lxc/remote.go:218 -#, c-format -msgid "" -"Certificate fingerprint mismatch between certificate token and server %q" +#: lxc/remote.go:452 +msgid "Certificate fingerprint" msgstr "" -#: lxc/remote.go:451 +#: lxc/remote.go:219 #, c-format -msgid "Certificate fingerprint: %s" +msgid "" +"Certificate fingerprint mismatch between certificate token and server %q" msgstr "" #: lxc/network.go:893 @@ -1339,7 +1338,7 @@ msgstr "" msgid "Client %s certificate add token:" msgstr "" -#: lxc/remote.go:603 +#: lxc/remote.go:604 msgid "Client certificate now trusted by server:" msgstr "" @@ -1401,18 +1400,18 @@ msgstr "" #: lxc/network_forward.go:456 lxc/network_forward.go:579 #: lxc/network_forward.go:721 lxc/network_forward.go:798 #: lxc/network_forward.go:864 lxc/network_load_balancer.go:176 -#: lxc/network_load_balancer.go:241 lxc/network_load_balancer.go:459 -#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:725 -#: lxc/network_load_balancer.go:801 lxc/network_load_balancer.go:865 -#: lxc/network_load_balancer.go:966 lxc/network_load_balancer.go:1028 +#: lxc/network_load_balancer.go:246 lxc/network_load_balancer.go:464 +#: lxc/network_load_balancer.go:587 lxc/network_load_balancer.go:730 +#: lxc/network_load_balancer.go:806 lxc/network_load_balancer.go:870 +#: lxc/network_load_balancer.go:971 lxc/network_load_balancer.go:1033 #: lxc/storage.go:99 lxc/storage.go:347 lxc/storage.go:418 lxc/storage.go:671 -#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:85 -#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:248 -#: lxc/storage_bucket.go:379 lxc/storage_bucket.go:536 -#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:695 -#: lxc/storage_bucket.go:770 lxc/storage_bucket.go:850 -#: lxc/storage_bucket.go:928 lxc/storage_bucket.go:993 -#: lxc/storage_bucket.go:1129 lxc/storage_volume.go:358 +#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:90 +#: lxc/storage_bucket.go:190 lxc/storage_bucket.go:253 +#: lxc/storage_bucket.go:384 lxc/storage_bucket.go:541 +#: lxc/storage_bucket.go:634 lxc/storage_bucket.go:700 +#: lxc/storage_bucket.go:775 lxc/storage_bucket.go:855 +#: lxc/storage_bucket.go:933 lxc/storage_bucket.go:998 +#: lxc/storage_bucket.go:1134 lxc/storage_volume.go:358 #: lxc/storage_volume.go:560 lxc/storage_volume.go:639 #: lxc/storage_volume.go:883 lxc/storage_volume.go:1097 #: lxc/storage_volume.go:1210 lxc/storage_volume.go:1678 @@ -1440,11 +1439,11 @@ msgstr "" msgid "Columns" msgstr "" -#: lxc/main.go:81 +#: lxc/main.go:82 msgid "Command line client for LXD" msgstr "" -#: lxc/main.go:82 +#: lxc/main.go:83 msgid "" "Command line client for LXD\n" "\n" @@ -1476,19 +1475,15 @@ msgstr "" #: lxc/config.go:347 lxc/config.go:1277 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/network_load_balancer.go:694 lxc/network_peer.go:610 +#: lxc/network_zone.go:556 lxc/network_zone.go:1148 lxc/profile.go:538 +#: lxc/project.go:315 lxc/storage.go:310 lxc/storage_bucket.go:348 +#: lxc/storage_bucket.go:1097 lxc/storage_volume.go:1016 #: lxc/storage_volume.go:1048 #, c-format msgid "Config parsing error: %s" msgstr "" -#: lxc/console.go:140 -msgid "Console log:" -msgstr "" - #: lxc/storage_volume.go:561 msgid "Content type, block or filesystem" msgstr "" @@ -1591,12 +1586,12 @@ msgstr "" msgid "Cores:" msgstr "" -#: lxc/remote.go:486 +#: lxc/remote.go:487 #, c-format msgid "Could not close server cert file %q: %w" msgstr "" -#: lxc/remote.go:224 lxc/remote.go:470 +#: lxc/remote.go:225 lxc/remote.go:471 msgid "Could not create server cert dir" msgstr "" @@ -1635,12 +1630,12 @@ msgstr "" msgid "Could not write new remote certificate for remote '%s' with error: %v" msgstr "" -#: lxc/remote.go:481 +#: lxc/remote.go:482 #, c-format msgid "Could not write server cert file %q: %w" msgstr "" -#: lxc/network_zone.go:1327 +#: lxc/network_zone.go:1332 msgid "Couldn't find a matching entry" msgstr "" @@ -1692,7 +1687,7 @@ msgstr "" msgid "Create instances from images" msgstr "" -#: lxc/storage_bucket.go:846 lxc/storage_bucket.go:847 +#: lxc/storage_bucket.go:851 lxc/storage_bucket.go:852 msgid "Create key for a storage bucket" msgstr "" @@ -1724,11 +1719,11 @@ msgstr "" msgid "Create new network peering" msgstr "" -#: lxc/network_zone.go:869 lxc/network_zone.go:870 +#: lxc/network_zone.go:874 lxc/network_zone.go:875 msgid "Create new network zone record" msgstr "" -#: lxc/network_zone.go:270 lxc/network_zone.go:271 +#: lxc/network_zone.go:271 lxc/network_zone.go:272 msgid "Create new network zones" msgstr "" @@ -1779,9 +1774,9 @@ msgstr "" #: 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/network_zone.go:140 lxc/network_zone.go:747 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_bucket.go:512 lxc/storage_bucket.go:832 #: lxc/storage_volume.go:1562 msgid "DESCRIPTION" msgstr "" @@ -1846,7 +1841,7 @@ msgstr "" msgid "Delete instances and snapshots" msgstr "" -#: lxc/storage_bucket.go:924 lxc/storage_bucket.go:925 +#: lxc/storage_bucket.go:929 lxc/storage_bucket.go:930 msgid "Delete key from a storage bucket" msgstr "" @@ -1858,7 +1853,7 @@ msgstr "" msgid "Delete network forwards" msgstr "" -#: lxc/network_load_balancer.go:721 lxc/network_load_balancer.go:722 +#: lxc/network_load_balancer.go:726 lxc/network_load_balancer.go:727 msgid "Delete network load balancers" msgstr "" @@ -1866,11 +1861,11 @@ msgstr "" msgid "Delete network peerings" msgstr "" -#: lxc/network_zone.go:1175 lxc/network_zone.go:1176 +#: lxc/network_zone.go:1180 lxc/network_zone.go:1181 msgid "Delete network zone record" msgstr "" -#: lxc/network_zone.go:583 lxc/network_zone.go:584 +#: lxc/network_zone.go:588 lxc/network_zone.go:589 msgid "Delete network zones" msgstr "" @@ -1886,7 +1881,7 @@ msgstr "" msgid "Delete projects" msgstr "" -#: lxc/storage_bucket.go:182 lxc/storage_bucket.go:183 +#: lxc/storage_bucket.go:187 lxc/storage_bucket.go:188 msgid "Delete storage buckets" msgstr "" @@ -1942,7 +1937,7 @@ msgstr "" #: 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/info.go:32 lxc/init.go:43 lxc/launch.go:24 lxc/list.go:48 lxc/main.go:83 #: 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 @@ -1961,22 +1956,22 @@ msgstr "" #: 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_load_balancer.go:238 lxc/network_load_balancer.go:388 +#: lxc/network_load_balancer.go:456 lxc/network_load_balancer.go:554 +#: lxc/network_load_balancer.go:584 lxc/network_load_balancer.go:727 +#: lxc/network_load_balancer.go:788 lxc/network_load_balancer.go:803 +#: lxc/network_load_balancer.go:867 lxc/network_load_balancer.go:953 +#: lxc/network_load_balancer.go:968 lxc/network_load_balancer.go:1029 #: 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/network_zone.go:29 lxc/network_zone.go:86 lxc/network_zone.go:157 +#: lxc/network_zone.go:212 lxc/network_zone.go:272 lxc/network_zone.go:359 +#: lxc/network_zone.go:439 lxc/network_zone.go:470 lxc/network_zone.go:589 +#: lxc/network_zone.go:637 lxc/network_zone.go:694 lxc/network_zone.go:764 +#: lxc/network_zone.go:816 lxc/network_zone.go:875 lxc/network_zone.go:957 +#: lxc/network_zone.go:1033 lxc/network_zone.go:1063 lxc/network_zone.go:1181 +#: lxc/network_zone.go:1230 lxc/network_zone.go:1245 lxc/network_zone.go:1291 #: 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 @@ -1985,19 +1980,19 @@ msgstr "" #: 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:631 lxc/remote.go:669 lxc/remote.go:755 lxc/remote.go:828 -#: lxc/remote.go:884 lxc/remote.go:924 lxc/rename.go:21 lxc/restore.go:24 +#: lxc/query.go:34 lxc/rebuild.go:27 lxc/remote.go:35 lxc/remote.go:91 +#: lxc/remote.go:632 lxc/remote.go:670 lxc/remote.go:756 lxc/remote.go:829 +#: lxc/remote.go:885 lxc/remote.go:925 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_bucket.go:29 lxc/storage_bucket.go:83 lxc/storage_bucket.go:188 +#: lxc/storage_bucket.go:249 lxc/storage_bucket.go:382 +#: lxc/storage_bucket.go:458 lxc/storage_bucket.go:535 +#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:698 +#: lxc/storage_bucket.go:732 lxc/storage_bucket.go:773 +#: lxc/storage_bucket.go:852 lxc/storage_bucket.go:930 +#: lxc/storage_bucket.go:994 lxc/storage_bucket.go:1129 #: 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 @@ -2133,7 +2128,7 @@ msgstr "" msgid "Don't require user confirmation for using --force" msgstr "" -#: lxc/main.go:99 +#: lxc/main.go:100 msgid "Don't show progress information" msgstr "" @@ -2146,7 +2141,7 @@ msgstr "" msgid "Driver: %v (%v)" msgstr "" -#: lxc/network_zone.go:743 +#: lxc/network_zone.go:748 msgid "ENTRIES" msgstr "" @@ -2224,7 +2219,7 @@ msgstr "" msgid "Edit network forward configurations as YAML" msgstr "" -#: lxc/network_load_balancer.go:578 lxc/network_load_balancer.go:579 +#: lxc/network_load_balancer.go:583 lxc/network_load_balancer.go:584 msgid "Edit network load balancer configurations as YAML" msgstr "" @@ -2232,11 +2227,11 @@ msgstr "" msgid "Edit network peer configurations as YAML" msgstr "" -#: lxc/network_zone.go:464 lxc/network_zone.go:465 +#: lxc/network_zone.go:469 lxc/network_zone.go:470 msgid "Edit network zone configurations as YAML" msgstr "" -#: lxc/network_zone.go:1057 lxc/network_zone.go:1058 +#: lxc/network_zone.go:1062 lxc/network_zone.go:1063 msgid "Edit network zone record configurations as YAML" msgstr "" @@ -2248,11 +2243,11 @@ msgstr "" msgid "Edit project configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:243 lxc/storage_bucket.go:244 +#: lxc/storage_bucket.go:248 lxc/storage_bucket.go:249 msgid "Edit storage bucket configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:988 lxc/storage_bucket.go:989 +#: lxc/storage_bucket.go:993 lxc/storage_bucket.go:994 msgid "Edit storage bucket key as YAML" msgstr "" @@ -2293,7 +2288,7 @@ msgid "" " for the address if not yet set." msgstr "" -#: lxc/network_zone.go:1242 +#: lxc/network_zone.go:1247 msgid "Entry TTL" msgstr "" @@ -2322,9 +2317,9 @@ msgstr "" #: lxc/cluster.go:414 lxc/config.go:624 lxc/config.go:656 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/network_load_balancer.go:527 lxc/network_peer.go:463 +#: lxc/network_zone.go:414 lxc/network_zone.go:1008 lxc/profile.go:876 +#: lxc/project.go:634 lxc/storage.go:727 lxc/storage_bucket.go:602 #: lxc/storage_volume.go:1947 lxc/storage_volume.go:1985 #, c-format msgid "Error setting properties: %v" @@ -2336,10 +2331,10 @@ 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/network_forward.go:513 lxc/network_load_balancer.go:521 +#: lxc/network_peer.go:457 lxc/network_zone.go:408 lxc/network_zone.go:1002 #: lxc/profile.go:870 lxc/project.go:628 lxc/storage.go:721 -#: lxc/storage_bucket.go:591 lxc/storage_volume.go:1941 +#: lxc/storage_bucket.go:596 lxc/storage_volume.go:1941 #: lxc/storage_volume.go:1979 #, c-format msgid "Error unsetting property: %v" @@ -2525,7 +2520,7 @@ msgstr "" msgid "Failed parsing SSH host key: %w" msgstr "" -#: lxc/console.go:361 +#: lxc/console.go:366 #, c-format msgid "Failed starting command: %w" msgstr "" @@ -2540,11 +2535,11 @@ msgstr "" msgid "Failed to accept incoming connection: %w" msgstr "" -#: lxc/remote.go:190 +#: lxc/remote.go:191 msgid "Failed to add remote" msgstr "" -#: lxc/remote.go:241 +#: lxc/remote.go:242 #, c-format msgid "Failed to close server cert file %q: %w" msgstr "" @@ -2554,7 +2549,7 @@ msgstr "" msgid "Failed to connect to cluster member: %w" msgstr "" -#: lxc/remote.go:231 +#: lxc/remote.go:232 #, c-format msgid "Failed to create %q: %w" msgstr "" @@ -2564,12 +2559,12 @@ msgstr "" msgid "Failed to create alias %s: %w" msgstr "" -#: lxc/remote.go:256 +#: lxc/remote.go:257 #, c-format msgid "Failed to create certificate: %w" msgstr "" -#: lxc/remote.go:263 +#: lxc/remote.go:264 #, c-format msgid "Failed to find project: %w" msgstr "" @@ -2594,7 +2589,7 @@ msgstr "" msgid "Failed to walk path for %s: %s" msgstr "" -#: lxc/remote.go:236 +#: lxc/remote.go:237 #, c-format msgid "Failed to write server cert file %q: %w" msgstr "" @@ -2603,7 +2598,7 @@ msgstr "" msgid "Fast mode (same as --columns=nsacPt)" msgstr "" -#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:115 +#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:116 #: lxc/operation.go:136 msgid "Filtering isn't supported yet" msgstr "" @@ -2641,7 +2636,7 @@ msgstr "" msgid "Force the removal of running instances" msgstr "" -#: lxc/main.go:95 +#: lxc/main.go:96 msgid "Force using the local unix socket" msgstr "" @@ -2675,10 +2670,10 @@ msgstr "" #: 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/network_peer.go:84 lxc/network_zone.go:89 lxc/network_zone.go:697 #: lxc/operation.go:108 lxc/profile.go:637 lxc/project.go:412 -#: lxc/project.go:804 lxc/remote.go:673 lxc/storage.go:588 -#: lxc/storage_bucket.go:454 lxc/storage_bucket.go:769 +#: lxc/project.go:804 lxc/remote.go:674 lxc/storage.go:588 +#: lxc/storage_bucket.go:459 lxc/storage_bucket.go:774 #: lxc/storage_volume.go:1446 lxc/warning.go:93 msgid "Format (csv|json|table|yaml|compact)" msgstr "" @@ -2715,7 +2710,7 @@ msgstr "" msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)" msgstr "" -#: lxc/remote.go:737 +#: lxc/remote.go:738 msgid "GLOBAL" msgstr "" @@ -2735,7 +2730,7 @@ msgstr "" msgid "Generate manpages for all commands" msgstr "" -#: lxc/remote.go:159 lxc/remote.go:397 +#: lxc/remote.go:160 lxc/remote.go:398 msgid "Generating a client certificate. This may take a minute..." msgstr "" @@ -2767,7 +2762,7 @@ msgstr "" msgid "Get the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:386 +#: lxc/network_load_balancer.go:391 msgid "Get the key as a network load balancer property" msgstr "" @@ -2779,11 +2774,11 @@ msgstr "" msgid "Get the key as a network property" msgstr "" -#: lxc/network_zone.go:214 +#: lxc/network_zone.go:215 msgid "Get the key as a network zone property" msgstr "" -#: lxc/network_zone.go:814 +#: lxc/network_zone.go:819 msgid "Get the key as a network zone record property" msgstr "" @@ -2795,7 +2790,7 @@ msgstr "" msgid "Get the key as a project property" msgstr "" -#: lxc/storage_bucket.go:380 +#: lxc/storage_bucket.go:385 msgid "Get the key as a storage bucket property" msgstr "" @@ -2835,7 +2830,7 @@ msgstr "" msgid "Get values for network forward configuration keys" msgstr "" -#: lxc/network_load_balancer.go:382 lxc/network_load_balancer.go:383 +#: lxc/network_load_balancer.go:387 lxc/network_load_balancer.go:388 msgid "Get values for network load balancer configuration keys" msgstr "" @@ -2843,11 +2838,11 @@ msgstr "" msgid "Get values for network peer configuration keys" msgstr "" -#: lxc/network_zone.go:210 lxc/network_zone.go:211 +#: lxc/network_zone.go:211 lxc/network_zone.go:212 msgid "Get values for network zone configuration keys" msgstr "" -#: lxc/network_zone.go:810 lxc/network_zone.go:811 +#: lxc/network_zone.go:815 lxc/network_zone.go:816 msgid "Get values for network zone record configuration keys" msgstr "" @@ -2859,7 +2854,7 @@ msgstr "" msgid "Get values for project configuration keys" msgstr "" -#: lxc/storage_bucket.go:376 lxc/storage_bucket.go:377 +#: lxc/storage_bucket.go:381 lxc/storage_bucket.go:382 msgid "Get values for storage bucket configuration keys" msgstr "" @@ -2999,7 +2994,7 @@ msgstr "" msgid "If the snapshot name already exists, delete and create a new one" msgstr "" -#: lxc/main.go:398 +#: lxc/main.go:400 msgid "" "If this is your first time running LXD on this machine, you should also run: " "lxd init" @@ -3156,7 +3151,7 @@ msgstr "" msgid "Instance type" msgstr "" -#: lxc/remote.go:349 +#: lxc/remote.go:350 #, c-format msgid "Invalid URL scheme \"%s\" in \"%s\"" msgstr "" @@ -3228,7 +3223,7 @@ msgstr "" msgid "Invalid new snapshot name, parent volume must be the same as source" msgstr "" -#: lxc/main.go:498 +#: lxc/main.go:502 msgid "Invalid number of arguments" msgstr "" @@ -3237,7 +3232,7 @@ msgstr "" msgid "Invalid path %s" msgstr "" -#: lxc/remote.go:338 +#: lxc/remote.go:339 #, c-format msgid "Invalid protocol: %s" msgstr "" @@ -3285,7 +3280,7 @@ msgstr "" #: lxc/list.go:597 lxc/network.go:1059 lxc/network_forward.go:155 #: lxc/network_load_balancer.go:157 lxc/operation.go:177 -#: lxc/storage_bucket.go:511 lxc/storage_volume.go:1569 lxc/warning.go:220 +#: lxc/storage_bucket.go:516 lxc/storage_volume.go:1569 lxc/warning.go:220 msgid "LOCATION" msgstr "" @@ -3293,7 +3288,7 @@ msgstr "" msgid "LXD - Command line client" msgstr "" -#: lxc/console.go:382 +#: lxc/console.go:387 msgid "LXD automatically uses either spicy or remote-viewer when present." msgstr "" @@ -3383,15 +3378,15 @@ msgstr "" msgid "List available network peers" msgstr "" -#: lxc/network_zone.go:85 +#: lxc/network_zone.go:86 msgid "List available network zone" msgstr "" -#: lxc/network_zone.go:688 lxc/network_zone.go:689 +#: lxc/network_zone.go:693 lxc/network_zone.go:694 msgid "List available network zone records" msgstr "" -#: lxc/network_zone.go:84 +#: lxc/network_zone.go:85 msgid "List available network zoneS" msgstr "" @@ -3580,11 +3575,11 @@ msgstr "" msgid "List projects" msgstr "" -#: lxc/storage_bucket.go:766 lxc/storage_bucket.go:768 +#: lxc/storage_bucket.go:771 lxc/storage_bucket.go:773 msgid "List storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:451 lxc/storage_bucket.go:453 +#: lxc/storage_bucket.go:456 lxc/storage_bucket.go:458 msgid "List storage buckets" msgstr "" @@ -3612,7 +3607,7 @@ msgid "" " U - Current disk usage" msgstr "" -#: lxc/remote.go:668 lxc/remote.go:669 +#: lxc/remote.go:669 lxc/remote.go:670 msgid "List the available remotes" msgstr "" @@ -3839,11 +3834,11 @@ msgstr "" msgid "Manage network forwards" msgstr "" -#: lxc/network_load_balancer.go:782 lxc/network_load_balancer.go:783 +#: lxc/network_load_balancer.go:787 lxc/network_load_balancer.go:788 msgid "Manage network load balancer backends" msgstr "" -#: lxc/network_load_balancer.go:947 lxc/network_load_balancer.go:948 +#: lxc/network_load_balancer.go:952 lxc/network_load_balancer.go:953 msgid "Manage network load balancer ports" msgstr "" @@ -3855,15 +3850,15 @@ msgstr "" msgid "Manage network peerings" msgstr "" -#: lxc/network_zone.go:1224 lxc/network_zone.go:1225 +#: lxc/network_zone.go:1229 lxc/network_zone.go:1230 msgid "Manage network zone record entries" msgstr "" -#: lxc/network_zone.go:631 lxc/network_zone.go:632 +#: lxc/network_zone.go:636 lxc/network_zone.go:637 msgid "Manage network zone records" msgstr "" -#: lxc/network_zone.go:27 lxc/network_zone.go:28 +#: lxc/network_zone.go:28 lxc/network_zone.go:29 msgid "Manage network zones" msgstr "" @@ -3879,11 +3874,11 @@ msgstr "" msgid "Manage projects" msgstr "" -#: lxc/storage_bucket.go:726 +#: lxc/storage_bucket.go:731 msgid "Manage storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:727 +#: lxc/storage_bucket.go:732 msgid "Manage storage bucket keys." msgstr "" @@ -3911,7 +3906,7 @@ msgid "" "\"custom\" (user created) volumes." msgstr "" -#: lxc/remote.go:33 lxc/remote.go:34 +#: lxc/remote.go:34 lxc/remote.go:35 msgid "Manage the list of remote servers" msgstr "" @@ -3992,12 +3987,12 @@ msgid "" "Minimum level for log messages (only available when using pretty format)" msgstr "" -#: lxc/storage_bucket.go:111 lxc/storage_bucket.go:211 -#: lxc/storage_bucket.go:287 lxc/storage_bucket.go:406 -#: lxc/storage_bucket.go:563 lxc/storage_bucket.go:655 -#: lxc/storage_bucket.go:797 lxc/storage_bucket.go:878 -#: lxc/storage_bucket.go:953 lxc/storage_bucket.go:1032 -#: lxc/storage_bucket.go:1155 +#: lxc/storage_bucket.go:116 lxc/storage_bucket.go:216 +#: lxc/storage_bucket.go:292 lxc/storage_bucket.go:411 +#: lxc/storage_bucket.go:568 lxc/storage_bucket.go:660 +#: lxc/storage_bucket.go:802 lxc/storage_bucket.go:883 +#: lxc/storage_bucket.go:958 lxc/storage_bucket.go:1037 +#: lxc/storage_bucket.go:1160 msgid "Missing bucket name" msgstr "" @@ -4041,8 +4036,8 @@ msgstr "" msgid "Missing instance name" msgstr "" -#: lxc/storage_bucket.go:882 lxc/storage_bucket.go:957 -#: lxc/storage_bucket.go:1036 lxc/storage_bucket.go:1159 +#: lxc/storage_bucket.go:887 lxc/storage_bucket.go:962 +#: lxc/storage_bucket.go:1041 lxc/storage_bucket.go:1164 msgid "Missing key name" msgstr "" @@ -4050,10 +4045,10 @@ msgstr "" #: lxc/network_forward.go:481 lxc/network_forward.go:627 #: lxc/network_forward.go:746 lxc/network_forward.go:823 #: lxc/network_forward.go:889 lxc/network_load_balancer.go:201 -#: lxc/network_load_balancer.go:411 lxc/network_load_balancer.go:484 -#: lxc/network_load_balancer.go:630 lxc/network_load_balancer.go:750 -#: lxc/network_load_balancer.go:826 lxc/network_load_balancer.go:890 -#: lxc/network_load_balancer.go:991 lxc/network_load_balancer.go:1053 +#: lxc/network_load_balancer.go:416 lxc/network_load_balancer.go:489 +#: lxc/network_load_balancer.go:635 lxc/network_load_balancer.go:755 +#: lxc/network_load_balancer.go:831 lxc/network_load_balancer.go:895 +#: lxc/network_load_balancer.go:996 lxc/network_load_balancer.go:1058 msgid "Missing listen address" msgstr "" @@ -4078,26 +4073,26 @@ msgstr "" #: lxc/network_forward.go:477 lxc/network_forward.go:623 #: lxc/network_forward.go:742 lxc/network_forward.go:819 #: lxc/network_forward.go:885 lxc/network_load_balancer.go:123 -#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:261 -#: lxc/network_load_balancer.go:407 lxc/network_load_balancer.go:480 -#: lxc/network_load_balancer.go:626 lxc/network_load_balancer.go:746 -#: lxc/network_load_balancer.go:822 lxc/network_load_balancer.go:886 -#: lxc/network_load_balancer.go:987 lxc/network_load_balancer.go:1049 +#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:266 +#: lxc/network_load_balancer.go:412 lxc/network_load_balancer.go:485 +#: lxc/network_load_balancer.go:631 lxc/network_load_balancer.go:751 +#: lxc/network_load_balancer.go:827 lxc/network_load_balancer.go:891 +#: lxc/network_load_balancer.go:992 lxc/network_load_balancer.go:1054 #: lxc/network_peer.go:110 lxc/network_peer.go:180 lxc/network_peer.go:237 #: lxc/network_peer.go:355 lxc/network_peer.go:426 lxc/network_peer.go:556 #: lxc/network_peer.go:665 msgid "Missing network name" msgstr "" -#: lxc/network_zone.go:178 lxc/network_zone.go:234 lxc/network_zone.go:294 -#: lxc/network_zone.go:382 lxc/network_zone.go:503 lxc/network_zone.go:606 -#: lxc/network_zone.go:712 lxc/network_zone.go:780 lxc/network_zone.go:892 -#: lxc/network_zone.go:976 lxc/network_zone.go:1197 lxc/network_zone.go:1262 -#: lxc/network_zone.go:1307 +#: lxc/network_zone.go:179 lxc/network_zone.go:235 lxc/network_zone.go:299 +#: lxc/network_zone.go:387 lxc/network_zone.go:508 lxc/network_zone.go:611 +#: lxc/network_zone.go:717 lxc/network_zone.go:785 lxc/network_zone.go:897 +#: lxc/network_zone.go:981 lxc/network_zone.go:1202 lxc/network_zone.go:1267 +#: lxc/network_zone.go:1312 msgid "Missing network zone name" msgstr "" -#: lxc/network_zone.go:833 lxc/network_zone.go:1095 +#: lxc/network_zone.go:838 lxc/network_zone.go:1100 msgid "Missing network zone record name" msgstr "" @@ -4107,13 +4102,13 @@ msgid "Missing peer name" msgstr "" #: lxc/storage.go:194 lxc/storage.go:264 lxc/storage.go:370 lxc/storage.go:440 -#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:107 -#: lxc/storage_bucket.go:207 lxc/storage_bucket.go:283 -#: lxc/storage_bucket.go:402 lxc/storage_bucket.go:477 -#: lxc/storage_bucket.go:559 lxc/storage_bucket.go:651 -#: lxc/storage_bucket.go:793 lxc/storage_bucket.go:874 -#: lxc/storage_bucket.go:949 lxc/storage_bucket.go:1028 -#: lxc/storage_bucket.go:1151 lxc/storage_volume.go:189 +#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:112 +#: lxc/storage_bucket.go:212 lxc/storage_bucket.go:288 +#: lxc/storage_bucket.go:407 lxc/storage_bucket.go:482 +#: lxc/storage_bucket.go:564 lxc/storage_bucket.go:656 +#: lxc/storage_bucket.go:798 lxc/storage_bucket.go:879 +#: lxc/storage_bucket.go:954 lxc/storage_bucket.go:1033 +#: lxc/storage_bucket.go:1156 lxc/storage_volume.go:189 #: lxc/storage_volume.go:287 lxc/storage_volume.go:583 #: lxc/storage_volume.go:660 lxc/storage_volume.go:735 #: lxc/storage_volume.go:817 lxc/storage_volume.go:919 @@ -4233,7 +4228,7 @@ msgstr "" msgid "Moving the storage volume: %s" msgstr "" -#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1097 +#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1102 msgid "Multiple ports match. Use --force to remove them all" msgstr "" @@ -4252,10 +4247,10 @@ 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:677 lxc/project.go:498 -#: lxc/remote.go:731 lxc/storage.go:638 lxc/storage_bucket.go:506 -#: lxc/storage_bucket.go:826 lxc/storage_volume.go:1561 +#: lxc/network_acl.go:147 lxc/network_peer.go:139 lxc/network_zone.go:139 +#: lxc/network_zone.go:746 lxc/profile.go:677 lxc/project.go:498 +#: lxc/remote.go:732 lxc/storage.go:638 lxc/storage_bucket.go:511 +#: lxc/storage_bucket.go:831 lxc/storage_volume.go:1561 msgid "NAME" msgstr "" @@ -4281,7 +4276,7 @@ msgstr "" #: lxc/network.go:957 lxc/operation.go:154 lxc/project.go:456 #: lxc/project.go:461 lxc/project.go:466 lxc/project.go:471 lxc/project.go:476 -#: lxc/project.go:481 lxc/remote.go:691 lxc/remote.go:696 lxc/remote.go:701 +#: lxc/project.go:481 lxc/remote.go:692 lxc/remote.go:697 lxc/remote.go:702 msgid "NO" msgstr "" @@ -4308,7 +4303,7 @@ msgstr "" msgid "Name" msgstr "" -#: lxc/remote.go:141 +#: lxc/remote.go:142 msgid "Name of the project to use for this remote:" msgstr "" @@ -4357,12 +4352,12 @@ msgstr "" msgid "Network ACL %s renamed to %s" msgstr "" -#: lxc/network_zone.go:336 +#: lxc/network_zone.go:341 #, c-format msgid "Network Zone %s created" msgstr "" -#: lxc/network_zone.go:616 +#: lxc/network_zone.go:621 #, c-format msgid "Network Zone %s deleted" msgstr "" @@ -4377,12 +4372,12 @@ msgstr "" msgid "Network forward %s deleted" msgstr "" -#: lxc/network_load_balancer.go:365 +#: lxc/network_load_balancer.go:370 #, c-format msgid "Network load balancer %s created" msgstr "" -#: lxc/network_load_balancer.go:767 +#: lxc/network_load_balancer.go:772 #, c-format msgid "Network load balancer %s deleted" msgstr "" @@ -4420,12 +4415,12 @@ msgstr "" msgid "Network usage:" msgstr "" -#: lxc/network_zone.go:934 +#: lxc/network_zone.go:939 #, c-format msgid "Network zone record %s created" msgstr "" -#: lxc/network_zone.go:1207 +#: lxc/network_zone.go:1212 #, c-format msgid "Network zone record %s deleted" msgstr "" @@ -4460,11 +4455,11 @@ msgstr "" msgid "No device found for this storage volume" msgstr "" -#: lxc/network_load_balancer.go:921 +#: lxc/network_load_balancer.go:926 msgid "No matching backend found" msgstr "" -#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1108 +#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1113 msgid "No matching port(s) found" msgstr "" @@ -4510,7 +4505,7 @@ msgstr "" msgid "Only \"custom\" volumes can be snapshotted" msgstr "" -#: lxc/remote.go:332 +#: lxc/remote.go:333 msgid "Only https URLs are supported for simplestreams" msgstr "" @@ -4535,7 +4530,7 @@ msgstr "" msgid "Optimized Storage" msgstr "" -#: lxc/main.go:96 +#: lxc/main.go:97 msgid "Override the source project" msgstr "" @@ -4581,11 +4576,11 @@ msgstr "" msgid "PROJECT" msgstr "" -#: lxc/remote.go:733 +#: lxc/remote.go:734 msgid "PROTOCOL" msgstr "" -#: lxc/image.go:1073 lxc/remote.go:735 +#: lxc/image.go:1073 lxc/remote.go:736 msgid "PUBLIC" msgstr "" @@ -4601,7 +4596,7 @@ msgstr "" msgid "Partitions:" msgstr "" -#: lxc/main.go:361 +#: lxc/main.go:363 #, c-format msgid "Password for %s: " msgstr "" @@ -4614,7 +4609,7 @@ msgstr "" msgid "Perform an incremental copy" msgstr "" -#: lxc/remote.go:182 +#: lxc/remote.go:183 msgid "Please provide an alternate server address (empty to abort):" msgstr "" @@ -4626,7 +4621,7 @@ msgstr "" msgid "Please provide cluster member name: " msgstr "" -#: lxc/remote.go:462 +#: lxc/remote.go:463 msgid "Please type 'y', 'n' or the fingerprint:" msgstr "" @@ -4648,10 +4643,10 @@ msgstr "" #: lxc/config.go:1278 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/network_load_balancer.go:695 lxc/network_peer.go:611 +#: lxc/network_zone.go:557 lxc/network_zone.go:1149 lxc/profile.go:539 +#: lxc/project.go:316 lxc/storage.go:311 lxc/storage_bucket.go:349 +#: lxc/storage_bucket.go:1098 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 "" @@ -4660,7 +4655,7 @@ msgstr "" msgid "Pretty rendering (short for --format=pretty)" msgstr "" -#: lxc/main.go:94 +#: lxc/main.go:95 msgid "Print help" msgstr "" @@ -4668,7 +4663,7 @@ msgstr "" msgid "Print the raw response" msgstr "" -#: lxc/main.go:93 +#: lxc/main.go:94 msgid "Print version number" msgstr "" @@ -4757,7 +4752,7 @@ msgstr "" msgid "Project %s renamed to %s" msgstr "" -#: lxc/remote.go:106 +#: lxc/remote.go:107 msgid "Project to use for the remote" msgstr "" @@ -4855,7 +4850,7 @@ msgid "" "pool \"default\"." msgstr "" -#: lxc/remote.go:105 +#: lxc/remote.go:106 msgid "Public image server" msgstr "" @@ -4903,7 +4898,7 @@ msgstr "" msgid "RESOURCE" msgstr "" -#: lxc/storage_bucket.go:828 +#: lxc/storage_bucket.go:833 msgid "ROLE" msgstr "" @@ -4946,45 +4941,45 @@ msgstr "" msgid "Refreshing the image: %s" msgstr "" -#: lxc/remote.go:785 +#: lxc/remote.go:786 #, c-format msgid "Remote %s already exists" msgstr "" -#: lxc/project.go:769 lxc/remote.go:776 lxc/remote.go:849 lxc/remote.go:905 -#: lxc/remote.go:945 +#: lxc/project.go:769 lxc/remote.go:777 lxc/remote.go:850 lxc/remote.go:906 +#: lxc/remote.go:946 #, c-format msgid "Remote %s doesn't exist" msgstr "" -#: lxc/remote.go:301 +#: lxc/remote.go:302 #, c-format msgid "Remote %s exists as <%s>" msgstr "" -#: lxc/remote.go:857 +#: lxc/remote.go:858 #, c-format msgid "Remote %s is global and cannot be removed" msgstr "" -#: lxc/remote.go:780 lxc/remote.go:853 lxc/remote.go:949 +#: lxc/remote.go:781 lxc/remote.go:854 lxc/remote.go:950 #, c-format msgid "Remote %s is static and cannot be modified" msgstr "" -#: lxc/remote.go:290 +#: lxc/remote.go:291 msgid "Remote address must not be empty" msgstr "" -#: lxc/remote.go:101 +#: lxc/remote.go:102 msgid "Remote admin password" msgstr "" -#: lxc/remote.go:295 +#: lxc/remote.go:296 msgid "Remote names may not contain colons" msgstr "" -#: lxc/remote.go:102 +#: lxc/remote.go:103 msgid "Remote trust token" msgstr "" @@ -5010,7 +5005,7 @@ msgstr "" msgid "Remove a member from the cluster" msgstr "" -#: lxc/network_zone.go:1285 +#: lxc/network_zone.go:1290 msgid "Remove a network zone record entry" msgstr "" @@ -5018,7 +5013,7 @@ msgstr "" msgid "Remove aliases" msgstr "" -#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1025 +#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1030 msgid "Remove all ports that match" msgstr "" @@ -5026,15 +5021,15 @@ msgstr "" msgid "Remove all rules that match" msgstr "" -#: lxc/network_load_balancer.go:862 +#: lxc/network_load_balancer.go:867 msgid "Remove backend from a load balancer" msgstr "" -#: lxc/network_load_balancer.go:861 +#: lxc/network_load_balancer.go:866 msgid "Remove backends from a load balancer" msgstr "" -#: lxc/network_zone.go:1286 +#: lxc/network_zone.go:1291 msgid "Remove entries from a network zone record" msgstr "" @@ -5058,7 +5053,7 @@ msgstr "" msgid "Remove ports from a forward" msgstr "" -#: lxc/network_load_balancer.go:1023 lxc/network_load_balancer.go:1024 +#: lxc/network_load_balancer.go:1028 lxc/network_load_balancer.go:1029 msgid "Remove ports from a load balancer" msgstr "" @@ -5066,7 +5061,7 @@ msgstr "" msgid "Remove profiles from instances" msgstr "" -#: lxc/remote.go:827 lxc/remote.go:828 +#: lxc/remote.go:828 lxc/remote.go:829 msgid "Remove remotes" msgstr "" @@ -5123,7 +5118,7 @@ msgstr "" msgid "Rename projects" msgstr "" -#: lxc/remote.go:754 lxc/remote.go:755 +#: lxc/remote.go:755 lxc/remote.go:756 msgid "Rename remotes" msgstr "" @@ -5201,7 +5196,7 @@ msgid "Restrict the certificate to one or more projects" msgstr "" #: lxc/console.go:44 -msgid "Retrieve the instance's console log" +msgid "Retrieve the container's console log" msgstr "" #: lxc/init.go:347 @@ -5217,7 +5212,7 @@ msgstr "" msgid "Revoke cluster member join token" msgstr "" -#: lxc/storage_bucket.go:851 +#: lxc/storage_bucket.go:856 msgid "Role (admin or read-only)" msgstr "" @@ -5268,7 +5263,7 @@ msgstr "" msgid "STATE" msgstr "" -#: lxc/remote.go:736 +#: lxc/remote.go:737 msgid "STATIC" msgstr "" @@ -5292,11 +5287,11 @@ msgstr "" msgid "STP" msgstr "" -#: lxc/storage_bucket.go:853 +#: lxc/storage_bucket.go:858 msgid "Secret key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:909 +#: lxc/storage_bucket.go:914 #, c-format msgid "Secret key: %s" msgstr "" @@ -5305,19 +5300,19 @@ msgstr "" msgid "Send a raw query to LXD" msgstr "" -#: lxc/remote.go:104 +#: lxc/remote.go:105 msgid "Server authentication type (tls or oidc)" msgstr "" -#: lxc/remote.go:460 +#: lxc/remote.go:461 msgid "Server certificate NACKed by user" msgstr "" -#: lxc/remote.go:599 +#: lxc/remote.go:600 msgid "Server doesn't trust us after authentication" msgstr "" -#: lxc/remote.go:103 +#: lxc/remote.go:104 msgid "Server protocol (lxd or simplestreams)" msgstr "" @@ -5416,11 +5411,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_load_balancer.go:450 +#: lxc/network_load_balancer.go:455 msgid "Set network load balancer keys" msgstr "" -#: lxc/network_load_balancer.go:451 +#: lxc/network_load_balancer.go:456 msgid "" "Set network load balancer keys\n" "\n" @@ -5442,11 +5437,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:353 +#: lxc/network_zone.go:358 msgid "Set network zone configuration keys" msgstr "" -#: lxc/network_zone.go:354 +#: lxc/network_zone.go:359 msgid "" "Set network zone configuration keys\n" "\n" @@ -5455,7 +5450,7 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:951 lxc/network_zone.go:952 +#: lxc/network_zone.go:956 lxc/network_zone.go:957 msgid "Set network zone record configuration keys" msgstr "" @@ -5485,11 +5480,11 @@ msgid "" " lxc project set [:] " msgstr "" -#: lxc/storage_bucket.go:529 +#: lxc/storage_bucket.go:534 msgid "Set storage bucket configuration keys" msgstr "" -#: lxc/storage_bucket.go:530 +#: lxc/storage_bucket.go:535 msgid "" "Set storage bucket configuration keys\n" "\n" @@ -5524,7 +5519,7 @@ msgid "" " lxc storage volume set [:] [/] " msgstr "" -#: lxc/remote.go:923 lxc/remote.go:924 +#: lxc/remote.go:924 lxc/remote.go:925 msgid "Set the URL for the remote" msgstr "" @@ -5552,7 +5547,7 @@ msgstr "" msgid "Set the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:458 +#: lxc/network_load_balancer.go:463 msgid "Set the key as a network load balancer property" msgstr "" @@ -5564,11 +5559,11 @@ msgstr "" msgid "Set the key as a network property" msgstr "" -#: lxc/network_zone.go:361 +#: lxc/network_zone.go:366 msgid "Set the key as a network zone property" msgstr "" -#: lxc/network_zone.go:957 +#: lxc/network_zone.go:962 msgid "Set the key as a network zone record property" msgstr "" @@ -5580,7 +5575,7 @@ msgstr "" msgid "Set the key as a project property" msgstr "" -#: lxc/storage_bucket.go:537 +#: lxc/storage_bucket.go:542 msgid "Set the key as a storage bucket property" msgstr "" @@ -5600,11 +5595,11 @@ msgstr "" msgid "Setup SSH SFTP listener on address:port instead of mounting" msgstr "" -#: lxc/main.go:97 +#: lxc/main.go:98 msgid "Show all debug messages" msgstr "" -#: lxc/main.go:98 +#: lxc/main.go:99 msgid "Show all information messages" msgstr "" @@ -5673,7 +5668,7 @@ msgstr "" msgid "Show instance or server information" msgstr "" -#: lxc/main.go:271 lxc/main.go:272 +#: lxc/main.go:272 lxc/main.go:273 msgid "Show less common commands" msgstr "" @@ -5705,15 +5700,15 @@ msgstr "" msgid "Show network peer configurations" msgstr "" -#: lxc/network_zone.go:155 lxc/network_zone.go:156 +#: lxc/network_zone.go:156 lxc/network_zone.go:157 msgid "Show network zone configurations" msgstr "" -#: lxc/network_zone.go:758 +#: lxc/network_zone.go:763 msgid "Show network zone record configuration" msgstr "" -#: lxc/network_zone.go:759 +#: lxc/network_zone.go:764 msgid "Show network zone record configurations" msgstr "" @@ -5725,11 +5720,11 @@ msgstr "" msgid "Show project options" msgstr "" -#: lxc/storage_bucket.go:623 lxc/storage_bucket.go:624 +#: lxc/storage_bucket.go:628 lxc/storage_bucket.go:629 msgid "Show storage bucket configurations" msgstr "" -#: lxc/storage_bucket.go:1123 lxc/storage_bucket.go:1124 +#: lxc/storage_bucket.go:1128 lxc/storage_bucket.go:1129 msgid "Show storage bucket key configurations" msgstr "" @@ -5755,7 +5750,7 @@ msgid "" "that are granted via identity provider group mappings. \n" msgstr "" -#: lxc/remote.go:630 lxc/remote.go:631 +#: lxc/remote.go:631 lxc/remote.go:632 msgid "Show the default remote" msgstr "" @@ -5879,22 +5874,22 @@ msgstr "" msgid "Stopping the instance failed: %s" msgstr "" -#: lxc/storage_bucket.go:161 +#: lxc/storage_bucket.go:166 #, c-format msgid "Storage bucket %s created" msgstr "" -#: lxc/storage_bucket.go:228 +#: lxc/storage_bucket.go:233 #, c-format msgid "Storage bucket %s deleted" msgstr "" -#: lxc/storage_bucket.go:907 +#: lxc/storage_bucket.go:912 #, c-format msgid "Storage bucket key %s added" msgstr "" -#: lxc/storage_bucket.go:973 +#: lxc/storage_bucket.go:978 #, c-format msgid "Storage bucket key %s removed" msgstr "" @@ -5967,7 +5962,7 @@ msgstr "" msgid "Switch the current project" msgstr "" -#: lxc/remote.go:883 lxc/remote.go:884 +#: lxc/remote.go:884 lxc/remote.go:885 msgid "Switch the default remote" msgstr "" @@ -6082,7 +6077,7 @@ msgstr "" msgid "The property %q does not exist on the instance snapshot %s/%s: %v" msgstr "" -#: lxc/network_load_balancer.go:424 +#: lxc/network_load_balancer.go:429 #, c-format msgid "The property %q does not exist on the load balancer %q: %v" msgstr "" @@ -6107,12 +6102,12 @@ msgstr "" msgid "The property %q does not exist on the network peer %q: %v" msgstr "" -#: lxc/network_zone.go:246 +#: lxc/network_zone.go:247 #, c-format msgid "The property %q does not exist on the network zone %q: %v" msgstr "" -#: lxc/network_zone.go:845 +#: lxc/network_zone.go:850 #, c-format msgid "The property %q does not exist on the network zone record %q: %v" msgstr "" @@ -6127,7 +6122,7 @@ msgstr "" msgid "The property %q does not exist on the project %q: %v" msgstr "" -#: lxc/storage_bucket.go:426 +#: lxc/storage_bucket.go:431 #, c-format msgid "The property %q does not exist on the storage bucket %q: %v" msgstr "" @@ -6181,7 +6176,7 @@ msgstr "" msgid "This LXD server is not available on the network" msgstr "" -#: lxc/main.go:293 +#: lxc/main.go:294 msgid "" "This client hasn't been configured to use a remote LXD server yet.\n" "As your platform can't run native Linux instances, you must connect to a " @@ -6213,11 +6208,11 @@ msgstr "" msgid "To create a new network, use: lxc network create" msgstr "" -#: lxc/console.go:210 +#: lxc/console.go:215 msgid "To detach from the console, press: +a q" msgstr "" -#: lxc/main.go:403 +#: lxc/main.go:406 msgid "" "To start your first container, try: lxc launch ubuntu:24.04\n" "Or for a virtual machine: lxc launch ubuntu:24.04 --vm" @@ -6315,7 +6310,7 @@ msgstr "" msgid "UPLOAD DATE" msgstr "" -#: lxc/cluster.go:184 lxc/remote.go:732 +#: lxc/cluster.go:184 lxc/remote.go:733 msgid "URL" msgstr "" @@ -6324,7 +6319,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:679 lxc/project.go:506 +#: lxc/network_zone.go:141 lxc/profile.go:679 lxc/project.go:506 #: lxc/storage.go:647 lxc/storage_volume.go:1564 msgid "USED BY" msgstr "" @@ -6343,7 +6338,7 @@ msgstr "" msgid "Unable to create a temporary file: %v" msgstr "" -#: lxc/remote.go:213 lxc/remote.go:247 +#: lxc/remote.go:214 lxc/remote.go:248 msgid "Unavailable remote server" msgstr "" @@ -6363,7 +6358,7 @@ msgstr "" msgid "Unknown column shorthand char '%c' in '%s'" msgstr "" -#: lxc/console.go:159 +#: lxc/console.go:164 #, c-format msgid "Unknown console type %q" msgstr "" @@ -6423,11 +6418,11 @@ msgstr "" msgid "Unset network forward keys" msgstr "" -#: lxc/network_load_balancer.go:548 +#: lxc/network_load_balancer.go:553 msgid "Unset network load balancer configuration keys" msgstr "" -#: lxc/network_load_balancer.go:549 +#: lxc/network_load_balancer.go:554 msgid "Unset network load balancer keys" msgstr "" @@ -6439,11 +6434,11 @@ msgstr "" msgid "Unset network peer keys" msgstr "" -#: lxc/network_zone.go:433 lxc/network_zone.go:434 +#: lxc/network_zone.go:438 lxc/network_zone.go:439 msgid "Unset network zone configuration keys" msgstr "" -#: lxc/network_zone.go:1027 lxc/network_zone.go:1028 +#: lxc/network_zone.go:1032 lxc/network_zone.go:1033 msgid "Unset network zone record configuration keys" msgstr "" @@ -6455,7 +6450,7 @@ msgstr "" msgid "Unset project configuration keys" msgstr "" -#: lxc/storage_bucket.go:692 lxc/storage_bucket.go:693 +#: lxc/storage_bucket.go:697 lxc/storage_bucket.go:698 msgid "Unset storage bucket configuration keys" msgstr "" @@ -6479,7 +6474,7 @@ msgstr "" msgid "Unset the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:552 +#: lxc/network_load_balancer.go:557 msgid "Unset the key as a network load balancer property" msgstr "" @@ -6491,11 +6486,11 @@ msgstr "" msgid "Unset the key as a network property" msgstr "" -#: lxc/network_zone.go:437 +#: lxc/network_zone.go:442 msgid "Unset the key as a network zone property" msgstr "" -#: lxc/network_zone.go:1031 +#: lxc/network_zone.go:1036 msgid "Unset the key as a network zone record property" msgstr "" @@ -6507,7 +6502,7 @@ msgstr "" msgid "Unset the key as a project property" msgstr "" -#: lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:701 msgid "Unset the key as a storage bucket property" msgstr "" @@ -6569,7 +6564,7 @@ msgid "" "Use storage driver optimized format (can only be restored on a similar pool)" msgstr "" -#: lxc/main.go:100 +#: lxc/main.go:101 msgid "Use with help or --help to view sub-commands" msgstr "" @@ -6666,7 +6661,7 @@ msgstr "" #: lxc/network.go:959 lxc/operation.go:156 lxc/project.go:458 #: lxc/project.go:463 lxc/project.go:468 lxc/project.go:473 lxc/project.go:478 -#: lxc/project.go:483 lxc/remote.go:693 lxc/remote.go:698 lxc/remote.go:703 +#: lxc/project.go:483 lxc/remote.go:694 lxc/remote.go:699 lxc/remote.go:704 msgid "YES" msgstr "" @@ -6701,7 +6696,7 @@ 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/network.go:909 lxc/network_acl.go:91 lxc/network_zone.go:83 #: 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 "[:]" @@ -6764,19 +6759,19 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:154 lxc/network_zone.go:463 lxc/network_zone.go:581 +#: lxc/network_zone.go:155 lxc/network_zone.go:468 lxc/network_zone.go:586 msgid "[:]" msgstr "" -#: lxc/network_zone.go:209 lxc/network_zone.go:432 +#: lxc/network_zone.go:210 lxc/network_zone.go:437 msgid "[:] " msgstr "" -#: lxc/network_zone.go:352 +#: lxc/network_zone.go:357 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:269 +#: lxc/network_zone.go:270 msgid "[:] [key=value...]" msgstr "" @@ -7022,30 +7017,30 @@ msgstr "" #: lxc/network_forward.go:169 lxc/network_forward.go:574 #: lxc/network_forward.go:715 lxc/network_load_balancer.go:171 -#: lxc/network_load_balancer.go:577 lxc/network_load_balancer.go:719 +#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:724 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:860 +#: lxc/network_load_balancer.go:865 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:796 +#: lxc/network_load_balancer.go:801 msgid "" "[:] " "[]" msgstr "" #: lxc/network_forward.go:377 lxc/network_forward.go:544 -#: lxc/network_load_balancer.go:381 lxc/network_load_balancer.go:547 +#: lxc/network_load_balancer.go:386 lxc/network_load_balancer.go:552 msgid "[:] " msgstr "" -#: lxc/network_forward.go:446 lxc/network_load_balancer.go:449 +#: lxc/network_forward.go:446 lxc/network_load_balancer.go:454 msgid "[:] =..." msgstr "" -#: lxc/network_load_balancer.go:961 +#: lxc/network_load_balancer.go:966 msgid "" "[:] " "[,...]" @@ -7057,7 +7052,7 @@ msgid "" " []" msgstr "" -#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1022 +#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1027 msgid "[:] [] []" msgstr "" @@ -7108,7 +7103,7 @@ msgid "[:]" msgstr "" #: lxc/storage.go:167 lxc/storage.go:218 lxc/storage.go:412 lxc/storage.go:759 -#: lxc/storage_bucket.go:449 +#: lxc/storage_bucket.go:454 msgid "[:]" msgstr "" @@ -7116,18 +7111,18 @@ msgstr "" msgid "[:] []" msgstr "" -#: lxc/storage_bucket.go:180 lxc/storage_bucket.go:242 -#: lxc/storage_bucket.go:622 lxc/storage_bucket.go:764 +#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:247 +#: lxc/storage_bucket.go:627 lxc/storage_bucket.go:769 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:375 lxc/storage_bucket.go:691 -#: lxc/storage_bucket.go:845 lxc/storage_bucket.go:923 -#: lxc/storage_bucket.go:987 lxc/storage_bucket.go:1122 +#: lxc/storage_bucket.go:380 lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:850 lxc/storage_bucket.go:928 +#: lxc/storage_bucket.go:992 lxc/storage_bucket.go:1127 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:528 +#: lxc/storage_bucket.go:533 msgid "[:] =..." msgstr "" @@ -7271,27 +7266,27 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:686 +#: lxc/network_zone.go:691 msgid "[:]" msgstr "" -#: lxc/network_zone.go:757 lxc/network_zone.go:1056 lxc/network_zone.go:1173 +#: lxc/network_zone.go:762 lxc/network_zone.go:1061 lxc/network_zone.go:1178 msgid "[:] " msgstr "" -#: lxc/network_zone.go:809 lxc/network_zone.go:1026 +#: lxc/network_zone.go:814 lxc/network_zone.go:1031 msgid "[:] " msgstr "" -#: lxc/network_zone.go:950 +#: lxc/network_zone.go:955 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:1238 lxc/network_zone.go:1284 +#: lxc/network_zone.go:1243 lxc/network_zone.go:1289 msgid "[:] " msgstr "" -#: lxc/network_zone.go:868 +#: lxc/network_zone.go:873 msgid "[:] [key=value...]" msgstr "" @@ -7315,7 +7310,7 @@ msgstr "" msgid "[:][] [...]" msgstr "" -#: lxc/remote.go:88 +#: lxc/remote.go:89 msgid "[] " msgstr "" @@ -7323,7 +7318,7 @@ msgstr "" msgid "[[:]]" msgstr "" -#: lxc/project.go:488 lxc/remote.go:722 +#: lxc/project.go:488 lxc/remote.go:723 msgid "current" msgstr "" @@ -7586,6 +7581,23 @@ msgid "" " Create a new OVN network called bar using baz as its uplink network" msgstr "" +#: lxc/network_load_balancer.go:239 +msgid "" +"lxc network load-balancer create n1 127.0.0.1\n" +"\n" +"lxc network load-balancer create n1 127.0.0.1 < config.yaml\n" +" Create network load-balancer for network n1 with configuration from " +"config.yaml" +msgstr "" + +#: lxc/network_zone.go:273 +msgid "" +"lxc network zone create z1\n" +"\n" +"lxc network zone create z1 < config.yaml\n" +" Create network zone z1 with configuration from config.yaml" +msgstr "" + #: lxc/operation.go:195 msgid "" "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n" @@ -7656,26 +7668,36 @@ msgid "" " Restore the snapshot." msgstr "" -#: lxc/storage_bucket.go:245 +#: lxc/storage_bucket.go:84 +msgid "" +"lxc storage bucket create p1 b01\n" +"\tCreate a new storage bucket name b01 in storage pool p1\n" +"\n" +"lxc storage bucket create p1 b01 < config.yaml\n" +"\tCreate a new storage bucket name b01 in storage pool p1 using the content " +"of config.yaml" +msgstr "" + +#: lxc/storage_bucket.go:250 msgid "" "lxc storage bucket edit [:] < bucket.yaml\n" " Update a storage bucket using the content of bucket.yaml." msgstr "" -#: lxc/storage_bucket.go:990 +#: lxc/storage_bucket.go:995 msgid "" "lxc storage bucket edit [:] < key.yaml\n" " Update a storage bucket key using the content of key.yaml." msgstr "" -#: lxc/storage_bucket.go:1125 +#: lxc/storage_bucket.go:1130 msgid "" "lxc storage bucket key show default data foo\n" " Will show the properties of a bucket key called \"foo\" for a bucket " "called \"data\" in the \"default\" pool." msgstr "" -#: lxc/storage_bucket.go:625 +#: lxc/storage_bucket.go:630 msgid "" "lxc storage bucket show default data\n" " Will show the properties of a bucket called \"data\" in the \"default\" " @@ -7694,7 +7716,7 @@ msgid "" "\t\tCreate a new custom volume using backup0.tar.gz as the source." msgstr "" -#: lxc/remote.go:459 +#: lxc/remote.go:460 msgid "n" msgstr "" @@ -7706,7 +7728,7 @@ msgstr "" msgid "no" msgstr "" -#: lxc/remote.go:452 +#: lxc/remote.go:453 msgid "ok (y/n/[fingerprint])?" msgstr "" @@ -7743,7 +7765,7 @@ msgstr "" msgid "used by" msgstr "" -#: lxc/remote.go:461 +#: lxc/remote.go:462 msgid "y" msgstr "" diff --git a/po/pt.po b/po/pt.po index d01569cf53aa..cdf3c1996cdd 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-08-20 09:31+0100\n" +"POT-Creation-Date: 2024-08-30 09:27+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: lxc/storage_bucket.go:255 lxc/storage_bucket.go:1000 +#: lxc/storage_bucket.go:260 lxc/storage_bucket.go:1005 msgid "" "### This is a YAML representation of a storage bucket.\n" "### Any line starting with a '# will be ignored.\n" @@ -278,7 +278,7 @@ msgid "" "### Note that the listen_address and location cannot be changed." msgstr "" -#: lxc/network_load_balancer.go:588 +#: lxc/network_load_balancer.go:593 msgid "" "### This is a YAML representation of the network load balancer.\n" "### Any line starting with a '# will be ignored.\n" @@ -319,7 +319,7 @@ msgid "" "cannot be changed." msgstr "" -#: lxc/network_zone.go:1066 +#: lxc/network_zone.go:1071 msgid "" "### This is a YAML representation of the network zone record.\n" "### Any line starting with a '# will be ignored.\n" @@ -333,7 +333,7 @@ msgid "" "### user.foo: bah\n" msgstr "" -#: lxc/network_zone.go:473 +#: lxc/network_zone.go:478 msgid "" "### This is a YAML representation of the network zone.\n" "### Any line starting with a '# will be ignored.\n" @@ -512,15 +512,15 @@ msgstr "" msgid " " msgstr "" -#: lxc/remote.go:825 lxc/remote.go:882 +#: lxc/remote.go:826 lxc/remote.go:883 msgid "" msgstr "" -#: lxc/remote.go:922 +#: lxc/remote.go:923 msgid " " msgstr "" -#: lxc/remote.go:752 +#: lxc/remote.go:753 msgid " " msgstr "" @@ -553,7 +553,7 @@ msgstr "" msgid "ARCHITECTURE" msgstr "" -#: lxc/remote.go:734 +#: lxc/remote.go:735 msgid "AUTH TYPE" msgstr "" @@ -561,15 +561,15 @@ msgstr "" msgid "AUTHENTICATION METHOD" msgstr "" -#: lxc/remote.go:100 +#: lxc/remote.go:101 msgid "Accept certificate" msgstr "" -#: lxc/storage_bucket.go:852 +#: lxc/storage_bucket.go:857 msgid "Access key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:908 +#: lxc/storage_bucket.go:913 #, c-format msgid "Access key: %s" msgstr "" @@ -603,19 +603,19 @@ msgstr "" msgid "Add a group to an identity provider group" msgstr "" -#: lxc/network_zone.go:1239 +#: lxc/network_zone.go:1244 msgid "Add a network zone record entry" msgstr "" -#: lxc/network_load_balancer.go:798 +#: lxc/network_load_balancer.go:803 msgid "Add backend to a load balancer" msgstr "" -#: lxc/network_load_balancer.go:797 +#: lxc/network_load_balancer.go:802 msgid "Add backends to a load balancer" msgstr "" -#: lxc/network_zone.go:1240 +#: lxc/network_zone.go:1245 msgid "Add entries to a network zone record" msgstr "" @@ -631,11 +631,11 @@ msgstr "" msgid "Add new aliases" msgstr "" -#: lxc/remote.go:89 +#: lxc/remote.go:90 msgid "Add new remote servers" msgstr "" -#: lxc/remote.go:90 +#: lxc/remote.go:91 msgid "" "Add new remote servers\n" "\n" @@ -676,7 +676,7 @@ msgstr "" msgid "Add ports to a forward" msgstr "" -#: lxc/network_load_balancer.go:962 lxc/network_load_balancer.go:963 +#: lxc/network_load_balancer.go:967 lxc/network_load_balancer.go:968 msgid "Add ports to a load balancer" msgstr "" @@ -697,17 +697,17 @@ msgstr "" msgid "Address: %s" msgstr "" -#: lxc/storage_bucket.go:164 +#: lxc/storage_bucket.go:169 #, c-format msgid "Admin access key: %s" msgstr "" -#: lxc/remote.go:566 +#: lxc/remote.go:567 #, c-format msgid "Admin password (or token) for %s:" msgstr "" -#: lxc/storage_bucket.go:165 +#: lxc/storage_bucket.go:170 #, c-format msgid "Admin secret key: %s" msgstr "" @@ -739,7 +739,7 @@ msgstr "" msgid "All projects" msgstr "" -#: lxc/remote.go:181 +#: lxc/remote.go:182 msgid "All server addresses are unavailable" msgstr "" @@ -762,7 +762,7 @@ msgstr "" msgid "Are you sure you want to %s cluster member %q? (yes/no) [default=no]: " msgstr "" -#: lxc/console.go:383 +#: lxc/console.go:388 msgid "As neither could be found, the raw SPICE socket can be found at:" msgstr "" @@ -810,7 +810,7 @@ msgid "" "as well as retrieve past log entries from it." msgstr "" -#: lxc/remote.go:548 +#: lxc/remote.go:549 #, c-format msgid "Authentication type '%s' not supported by server" msgstr "" @@ -829,11 +829,11 @@ msgstr "" msgid "Auto update: %s" msgstr "" -#: lxc/network_forward.go:240 lxc/network_load_balancer.go:242 +#: lxc/network_forward.go:240 lxc/network_load_balancer.go:247 msgid "Auto-allocate an IPv4 or IPv6 listen address. One of 'ipv4', 'ipv6'." msgstr "" -#: lxc/remote.go:136 +#: lxc/remote.go:137 msgid "Available projects:" msgstr "" @@ -865,8 +865,8 @@ msgid "Bad device override syntax, expecting ,=: %s" msgstr "" #: lxc/network.go:333 lxc/network_acl.go:382 lxc/network_forward.go:293 -#: lxc/network_load_balancer.go:296 lxc/network_peer.go:280 -#: lxc/network_zone.go:324 lxc/network_zone.go:922 lxc/storage_bucket.go:136 +#: lxc/network_load_balancer.go:301 lxc/network_peer.go:280 +#: lxc/network_zone.go:329 lxc/network_zone.go:927 lxc/storage_bucket.go:141 #, c-format msgid "Bad key/value pair: %s" msgstr "" @@ -988,7 +988,7 @@ msgstr "" msgid "Can't read from stdin: %w" msgstr "" -#: lxc/remote.go:861 +#: lxc/remote.go:862 msgid "Can't remove the default remote" msgstr "" @@ -1054,15 +1054,14 @@ msgstr "" msgid "Certificate add token for %s deleted" msgstr "" -#: lxc/remote.go:218 -#, c-format -msgid "" -"Certificate fingerprint mismatch between certificate token and server %q" +#: lxc/remote.go:452 +msgid "Certificate fingerprint" msgstr "" -#: lxc/remote.go:451 +#: lxc/remote.go:219 #, c-format -msgid "Certificate fingerprint: %s" +msgid "" +"Certificate fingerprint mismatch between certificate token and server %q" msgstr "" #: lxc/network.go:893 @@ -1074,7 +1073,7 @@ msgstr "" msgid "Client %s certificate add token:" msgstr "" -#: lxc/remote.go:603 +#: lxc/remote.go:604 msgid "Client certificate now trusted by server:" msgstr "" @@ -1136,18 +1135,18 @@ msgstr "" #: lxc/network_forward.go:456 lxc/network_forward.go:579 #: lxc/network_forward.go:721 lxc/network_forward.go:798 #: lxc/network_forward.go:864 lxc/network_load_balancer.go:176 -#: lxc/network_load_balancer.go:241 lxc/network_load_balancer.go:459 -#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:725 -#: lxc/network_load_balancer.go:801 lxc/network_load_balancer.go:865 -#: lxc/network_load_balancer.go:966 lxc/network_load_balancer.go:1028 +#: lxc/network_load_balancer.go:246 lxc/network_load_balancer.go:464 +#: lxc/network_load_balancer.go:587 lxc/network_load_balancer.go:730 +#: lxc/network_load_balancer.go:806 lxc/network_load_balancer.go:870 +#: lxc/network_load_balancer.go:971 lxc/network_load_balancer.go:1033 #: lxc/storage.go:99 lxc/storage.go:347 lxc/storage.go:418 lxc/storage.go:671 -#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:85 -#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:248 -#: lxc/storage_bucket.go:379 lxc/storage_bucket.go:536 -#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:695 -#: lxc/storage_bucket.go:770 lxc/storage_bucket.go:850 -#: lxc/storage_bucket.go:928 lxc/storage_bucket.go:993 -#: lxc/storage_bucket.go:1129 lxc/storage_volume.go:358 +#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:90 +#: lxc/storage_bucket.go:190 lxc/storage_bucket.go:253 +#: lxc/storage_bucket.go:384 lxc/storage_bucket.go:541 +#: lxc/storage_bucket.go:634 lxc/storage_bucket.go:700 +#: lxc/storage_bucket.go:775 lxc/storage_bucket.go:855 +#: lxc/storage_bucket.go:933 lxc/storage_bucket.go:998 +#: lxc/storage_bucket.go:1134 lxc/storage_volume.go:358 #: lxc/storage_volume.go:560 lxc/storage_volume.go:639 #: lxc/storage_volume.go:883 lxc/storage_volume.go:1097 #: lxc/storage_volume.go:1210 lxc/storage_volume.go:1678 @@ -1175,11 +1174,11 @@ msgstr "" msgid "Columns" msgstr "" -#: lxc/main.go:81 +#: lxc/main.go:82 msgid "Command line client for LXD" msgstr "" -#: lxc/main.go:82 +#: lxc/main.go:83 msgid "" "Command line client for LXD\n" "\n" @@ -1211,19 +1210,15 @@ msgstr "" #: lxc/config.go:347 lxc/config.go:1277 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/network_load_balancer.go:694 lxc/network_peer.go:610 +#: lxc/network_zone.go:556 lxc/network_zone.go:1148 lxc/profile.go:538 +#: lxc/project.go:315 lxc/storage.go:310 lxc/storage_bucket.go:348 +#: lxc/storage_bucket.go:1097 lxc/storage_volume.go:1016 #: lxc/storage_volume.go:1048 #, c-format msgid "Config parsing error: %s" msgstr "" -#: lxc/console.go:140 -msgid "Console log:" -msgstr "" - #: lxc/storage_volume.go:561 msgid "Content type, block or filesystem" msgstr "" @@ -1326,12 +1321,12 @@ msgstr "" msgid "Cores:" msgstr "" -#: lxc/remote.go:486 +#: lxc/remote.go:487 #, c-format msgid "Could not close server cert file %q: %w" msgstr "" -#: lxc/remote.go:224 lxc/remote.go:470 +#: lxc/remote.go:225 lxc/remote.go:471 msgid "Could not create server cert dir" msgstr "" @@ -1370,12 +1365,12 @@ msgstr "" msgid "Could not write new remote certificate for remote '%s' with error: %v" msgstr "" -#: lxc/remote.go:481 +#: lxc/remote.go:482 #, c-format msgid "Could not write server cert file %q: %w" msgstr "" -#: lxc/network_zone.go:1327 +#: lxc/network_zone.go:1332 msgid "Couldn't find a matching entry" msgstr "" @@ -1427,7 +1422,7 @@ msgstr "" msgid "Create instances from images" msgstr "" -#: lxc/storage_bucket.go:846 lxc/storage_bucket.go:847 +#: lxc/storage_bucket.go:851 lxc/storage_bucket.go:852 msgid "Create key for a storage bucket" msgstr "" @@ -1459,11 +1454,11 @@ msgstr "" msgid "Create new network peering" msgstr "" -#: lxc/network_zone.go:869 lxc/network_zone.go:870 +#: lxc/network_zone.go:874 lxc/network_zone.go:875 msgid "Create new network zone record" msgstr "" -#: lxc/network_zone.go:270 lxc/network_zone.go:271 +#: lxc/network_zone.go:271 lxc/network_zone.go:272 msgid "Create new network zones" msgstr "" @@ -1514,9 +1509,9 @@ msgstr "" #: 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/network_zone.go:140 lxc/network_zone.go:747 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_bucket.go:512 lxc/storage_bucket.go:832 #: lxc/storage_volume.go:1562 msgid "DESCRIPTION" msgstr "" @@ -1581,7 +1576,7 @@ msgstr "" msgid "Delete instances and snapshots" msgstr "" -#: lxc/storage_bucket.go:924 lxc/storage_bucket.go:925 +#: lxc/storage_bucket.go:929 lxc/storage_bucket.go:930 msgid "Delete key from a storage bucket" msgstr "" @@ -1593,7 +1588,7 @@ msgstr "" msgid "Delete network forwards" msgstr "" -#: lxc/network_load_balancer.go:721 lxc/network_load_balancer.go:722 +#: lxc/network_load_balancer.go:726 lxc/network_load_balancer.go:727 msgid "Delete network load balancers" msgstr "" @@ -1601,11 +1596,11 @@ msgstr "" msgid "Delete network peerings" msgstr "" -#: lxc/network_zone.go:1175 lxc/network_zone.go:1176 +#: lxc/network_zone.go:1180 lxc/network_zone.go:1181 msgid "Delete network zone record" msgstr "" -#: lxc/network_zone.go:583 lxc/network_zone.go:584 +#: lxc/network_zone.go:588 lxc/network_zone.go:589 msgid "Delete network zones" msgstr "" @@ -1621,7 +1616,7 @@ msgstr "" msgid "Delete projects" msgstr "" -#: lxc/storage_bucket.go:182 lxc/storage_bucket.go:183 +#: lxc/storage_bucket.go:187 lxc/storage_bucket.go:188 msgid "Delete storage buckets" msgstr "" @@ -1677,7 +1672,7 @@ msgstr "" #: 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/info.go:32 lxc/init.go:43 lxc/launch.go:24 lxc/list.go:48 lxc/main.go:83 #: 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 @@ -1696,22 +1691,22 @@ msgstr "" #: 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_load_balancer.go:238 lxc/network_load_balancer.go:388 +#: lxc/network_load_balancer.go:456 lxc/network_load_balancer.go:554 +#: lxc/network_load_balancer.go:584 lxc/network_load_balancer.go:727 +#: lxc/network_load_balancer.go:788 lxc/network_load_balancer.go:803 +#: lxc/network_load_balancer.go:867 lxc/network_load_balancer.go:953 +#: lxc/network_load_balancer.go:968 lxc/network_load_balancer.go:1029 #: 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/network_zone.go:29 lxc/network_zone.go:86 lxc/network_zone.go:157 +#: lxc/network_zone.go:212 lxc/network_zone.go:272 lxc/network_zone.go:359 +#: lxc/network_zone.go:439 lxc/network_zone.go:470 lxc/network_zone.go:589 +#: lxc/network_zone.go:637 lxc/network_zone.go:694 lxc/network_zone.go:764 +#: lxc/network_zone.go:816 lxc/network_zone.go:875 lxc/network_zone.go:957 +#: lxc/network_zone.go:1033 lxc/network_zone.go:1063 lxc/network_zone.go:1181 +#: lxc/network_zone.go:1230 lxc/network_zone.go:1245 lxc/network_zone.go:1291 #: 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 @@ -1720,19 +1715,19 @@ msgstr "" #: 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:631 lxc/remote.go:669 lxc/remote.go:755 lxc/remote.go:828 -#: lxc/remote.go:884 lxc/remote.go:924 lxc/rename.go:21 lxc/restore.go:24 +#: lxc/query.go:34 lxc/rebuild.go:27 lxc/remote.go:35 lxc/remote.go:91 +#: lxc/remote.go:632 lxc/remote.go:670 lxc/remote.go:756 lxc/remote.go:829 +#: lxc/remote.go:885 lxc/remote.go:925 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_bucket.go:29 lxc/storage_bucket.go:83 lxc/storage_bucket.go:188 +#: lxc/storage_bucket.go:249 lxc/storage_bucket.go:382 +#: lxc/storage_bucket.go:458 lxc/storage_bucket.go:535 +#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:698 +#: lxc/storage_bucket.go:732 lxc/storage_bucket.go:773 +#: lxc/storage_bucket.go:852 lxc/storage_bucket.go:930 +#: lxc/storage_bucket.go:994 lxc/storage_bucket.go:1129 #: 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 @@ -1868,7 +1863,7 @@ msgstr "" msgid "Don't require user confirmation for using --force" msgstr "" -#: lxc/main.go:99 +#: lxc/main.go:100 msgid "Don't show progress information" msgstr "" @@ -1881,7 +1876,7 @@ msgstr "" msgid "Driver: %v (%v)" msgstr "" -#: lxc/network_zone.go:743 +#: lxc/network_zone.go:748 msgid "ENTRIES" msgstr "" @@ -1959,7 +1954,7 @@ msgstr "" msgid "Edit network forward configurations as YAML" msgstr "" -#: lxc/network_load_balancer.go:578 lxc/network_load_balancer.go:579 +#: lxc/network_load_balancer.go:583 lxc/network_load_balancer.go:584 msgid "Edit network load balancer configurations as YAML" msgstr "" @@ -1967,11 +1962,11 @@ msgstr "" msgid "Edit network peer configurations as YAML" msgstr "" -#: lxc/network_zone.go:464 lxc/network_zone.go:465 +#: lxc/network_zone.go:469 lxc/network_zone.go:470 msgid "Edit network zone configurations as YAML" msgstr "" -#: lxc/network_zone.go:1057 lxc/network_zone.go:1058 +#: lxc/network_zone.go:1062 lxc/network_zone.go:1063 msgid "Edit network zone record configurations as YAML" msgstr "" @@ -1983,11 +1978,11 @@ msgstr "" msgid "Edit project configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:243 lxc/storage_bucket.go:244 +#: lxc/storage_bucket.go:248 lxc/storage_bucket.go:249 msgid "Edit storage bucket configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:988 lxc/storage_bucket.go:989 +#: lxc/storage_bucket.go:993 lxc/storage_bucket.go:994 msgid "Edit storage bucket key as YAML" msgstr "" @@ -2028,7 +2023,7 @@ msgid "" " for the address if not yet set." msgstr "" -#: lxc/network_zone.go:1242 +#: lxc/network_zone.go:1247 msgid "Entry TTL" msgstr "" @@ -2057,9 +2052,9 @@ msgstr "" #: lxc/cluster.go:414 lxc/config.go:624 lxc/config.go:656 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/network_load_balancer.go:527 lxc/network_peer.go:463 +#: lxc/network_zone.go:414 lxc/network_zone.go:1008 lxc/profile.go:876 +#: lxc/project.go:634 lxc/storage.go:727 lxc/storage_bucket.go:602 #: lxc/storage_volume.go:1947 lxc/storage_volume.go:1985 #, c-format msgid "Error setting properties: %v" @@ -2071,10 +2066,10 @@ 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/network_forward.go:513 lxc/network_load_balancer.go:521 +#: lxc/network_peer.go:457 lxc/network_zone.go:408 lxc/network_zone.go:1002 #: lxc/profile.go:870 lxc/project.go:628 lxc/storage.go:721 -#: lxc/storage_bucket.go:591 lxc/storage_volume.go:1941 +#: lxc/storage_bucket.go:596 lxc/storage_volume.go:1941 #: lxc/storage_volume.go:1979 #, c-format msgid "Error unsetting property: %v" @@ -2260,7 +2255,7 @@ msgstr "" msgid "Failed parsing SSH host key: %w" msgstr "" -#: lxc/console.go:361 +#: lxc/console.go:366 #, c-format msgid "Failed starting command: %w" msgstr "" @@ -2275,11 +2270,11 @@ msgstr "" msgid "Failed to accept incoming connection: %w" msgstr "" -#: lxc/remote.go:190 +#: lxc/remote.go:191 msgid "Failed to add remote" msgstr "" -#: lxc/remote.go:241 +#: lxc/remote.go:242 #, c-format msgid "Failed to close server cert file %q: %w" msgstr "" @@ -2289,7 +2284,7 @@ msgstr "" msgid "Failed to connect to cluster member: %w" msgstr "" -#: lxc/remote.go:231 +#: lxc/remote.go:232 #, c-format msgid "Failed to create %q: %w" msgstr "" @@ -2299,12 +2294,12 @@ msgstr "" msgid "Failed to create alias %s: %w" msgstr "" -#: lxc/remote.go:256 +#: lxc/remote.go:257 #, c-format msgid "Failed to create certificate: %w" msgstr "" -#: lxc/remote.go:263 +#: lxc/remote.go:264 #, c-format msgid "Failed to find project: %w" msgstr "" @@ -2329,7 +2324,7 @@ msgstr "" msgid "Failed to walk path for %s: %s" msgstr "" -#: lxc/remote.go:236 +#: lxc/remote.go:237 #, c-format msgid "Failed to write server cert file %q: %w" msgstr "" @@ -2338,7 +2333,7 @@ msgstr "" msgid "Fast mode (same as --columns=nsacPt)" msgstr "" -#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:115 +#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:116 #: lxc/operation.go:136 msgid "Filtering isn't supported yet" msgstr "" @@ -2376,7 +2371,7 @@ msgstr "" msgid "Force the removal of running instances" msgstr "" -#: lxc/main.go:95 +#: lxc/main.go:96 msgid "Force using the local unix socket" msgstr "" @@ -2410,10 +2405,10 @@ msgstr "" #: 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/network_peer.go:84 lxc/network_zone.go:89 lxc/network_zone.go:697 #: lxc/operation.go:108 lxc/profile.go:637 lxc/project.go:412 -#: lxc/project.go:804 lxc/remote.go:673 lxc/storage.go:588 -#: lxc/storage_bucket.go:454 lxc/storage_bucket.go:769 +#: lxc/project.go:804 lxc/remote.go:674 lxc/storage.go:588 +#: lxc/storage_bucket.go:459 lxc/storage_bucket.go:774 #: lxc/storage_volume.go:1446 lxc/warning.go:93 msgid "Format (csv|json|table|yaml|compact)" msgstr "" @@ -2450,7 +2445,7 @@ msgstr "" msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)" msgstr "" -#: lxc/remote.go:737 +#: lxc/remote.go:738 msgid "GLOBAL" msgstr "" @@ -2470,7 +2465,7 @@ msgstr "" msgid "Generate manpages for all commands" msgstr "" -#: lxc/remote.go:159 lxc/remote.go:397 +#: lxc/remote.go:160 lxc/remote.go:398 msgid "Generating a client certificate. This may take a minute..." msgstr "" @@ -2502,7 +2497,7 @@ msgstr "" msgid "Get the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:386 +#: lxc/network_load_balancer.go:391 msgid "Get the key as a network load balancer property" msgstr "" @@ -2514,11 +2509,11 @@ msgstr "" msgid "Get the key as a network property" msgstr "" -#: lxc/network_zone.go:214 +#: lxc/network_zone.go:215 msgid "Get the key as a network zone property" msgstr "" -#: lxc/network_zone.go:814 +#: lxc/network_zone.go:819 msgid "Get the key as a network zone record property" msgstr "" @@ -2530,7 +2525,7 @@ msgstr "" msgid "Get the key as a project property" msgstr "" -#: lxc/storage_bucket.go:380 +#: lxc/storage_bucket.go:385 msgid "Get the key as a storage bucket property" msgstr "" @@ -2570,7 +2565,7 @@ msgstr "" msgid "Get values for network forward configuration keys" msgstr "" -#: lxc/network_load_balancer.go:382 lxc/network_load_balancer.go:383 +#: lxc/network_load_balancer.go:387 lxc/network_load_balancer.go:388 msgid "Get values for network load balancer configuration keys" msgstr "" @@ -2578,11 +2573,11 @@ msgstr "" msgid "Get values for network peer configuration keys" msgstr "" -#: lxc/network_zone.go:210 lxc/network_zone.go:211 +#: lxc/network_zone.go:211 lxc/network_zone.go:212 msgid "Get values for network zone configuration keys" msgstr "" -#: lxc/network_zone.go:810 lxc/network_zone.go:811 +#: lxc/network_zone.go:815 lxc/network_zone.go:816 msgid "Get values for network zone record configuration keys" msgstr "" @@ -2594,7 +2589,7 @@ msgstr "" msgid "Get values for project configuration keys" msgstr "" -#: lxc/storage_bucket.go:376 lxc/storage_bucket.go:377 +#: lxc/storage_bucket.go:381 lxc/storage_bucket.go:382 msgid "Get values for storage bucket configuration keys" msgstr "" @@ -2734,7 +2729,7 @@ msgstr "" msgid "If the snapshot name already exists, delete and create a new one" msgstr "" -#: lxc/main.go:398 +#: lxc/main.go:400 msgid "" "If this is your first time running LXD on this machine, you should also run: " "lxd init" @@ -2891,7 +2886,7 @@ msgstr "" msgid "Instance type" msgstr "" -#: lxc/remote.go:349 +#: lxc/remote.go:350 #, c-format msgid "Invalid URL scheme \"%s\" in \"%s\"" msgstr "" @@ -2963,7 +2958,7 @@ msgstr "" msgid "Invalid new snapshot name, parent volume must be the same as source" msgstr "" -#: lxc/main.go:498 +#: lxc/main.go:502 msgid "Invalid number of arguments" msgstr "" @@ -2972,7 +2967,7 @@ msgstr "" msgid "Invalid path %s" msgstr "" -#: lxc/remote.go:338 +#: lxc/remote.go:339 #, c-format msgid "Invalid protocol: %s" msgstr "" @@ -3020,7 +3015,7 @@ msgstr "" #: lxc/list.go:597 lxc/network.go:1059 lxc/network_forward.go:155 #: lxc/network_load_balancer.go:157 lxc/operation.go:177 -#: lxc/storage_bucket.go:511 lxc/storage_volume.go:1569 lxc/warning.go:220 +#: lxc/storage_bucket.go:516 lxc/storage_volume.go:1569 lxc/warning.go:220 msgid "LOCATION" msgstr "" @@ -3028,7 +3023,7 @@ msgstr "" msgid "LXD - Command line client" msgstr "" -#: lxc/console.go:382 +#: lxc/console.go:387 msgid "LXD automatically uses either spicy or remote-viewer when present." msgstr "" @@ -3118,15 +3113,15 @@ msgstr "" msgid "List available network peers" msgstr "" -#: lxc/network_zone.go:85 +#: lxc/network_zone.go:86 msgid "List available network zone" msgstr "" -#: lxc/network_zone.go:688 lxc/network_zone.go:689 +#: lxc/network_zone.go:693 lxc/network_zone.go:694 msgid "List available network zone records" msgstr "" -#: lxc/network_zone.go:84 +#: lxc/network_zone.go:85 msgid "List available network zoneS" msgstr "" @@ -3315,11 +3310,11 @@ msgstr "" msgid "List projects" msgstr "" -#: lxc/storage_bucket.go:766 lxc/storage_bucket.go:768 +#: lxc/storage_bucket.go:771 lxc/storage_bucket.go:773 msgid "List storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:451 lxc/storage_bucket.go:453 +#: lxc/storage_bucket.go:456 lxc/storage_bucket.go:458 msgid "List storage buckets" msgstr "" @@ -3347,7 +3342,7 @@ msgid "" " U - Current disk usage" msgstr "" -#: lxc/remote.go:668 lxc/remote.go:669 +#: lxc/remote.go:669 lxc/remote.go:670 msgid "List the available remotes" msgstr "" @@ -3574,11 +3569,11 @@ msgstr "" msgid "Manage network forwards" msgstr "" -#: lxc/network_load_balancer.go:782 lxc/network_load_balancer.go:783 +#: lxc/network_load_balancer.go:787 lxc/network_load_balancer.go:788 msgid "Manage network load balancer backends" msgstr "" -#: lxc/network_load_balancer.go:947 lxc/network_load_balancer.go:948 +#: lxc/network_load_balancer.go:952 lxc/network_load_balancer.go:953 msgid "Manage network load balancer ports" msgstr "" @@ -3590,15 +3585,15 @@ msgstr "" msgid "Manage network peerings" msgstr "" -#: lxc/network_zone.go:1224 lxc/network_zone.go:1225 +#: lxc/network_zone.go:1229 lxc/network_zone.go:1230 msgid "Manage network zone record entries" msgstr "" -#: lxc/network_zone.go:631 lxc/network_zone.go:632 +#: lxc/network_zone.go:636 lxc/network_zone.go:637 msgid "Manage network zone records" msgstr "" -#: lxc/network_zone.go:27 lxc/network_zone.go:28 +#: lxc/network_zone.go:28 lxc/network_zone.go:29 msgid "Manage network zones" msgstr "" @@ -3614,11 +3609,11 @@ msgstr "" msgid "Manage projects" msgstr "" -#: lxc/storage_bucket.go:726 +#: lxc/storage_bucket.go:731 msgid "Manage storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:727 +#: lxc/storage_bucket.go:732 msgid "Manage storage bucket keys." msgstr "" @@ -3646,7 +3641,7 @@ msgid "" "\"custom\" (user created) volumes." msgstr "" -#: lxc/remote.go:33 lxc/remote.go:34 +#: lxc/remote.go:34 lxc/remote.go:35 msgid "Manage the list of remote servers" msgstr "" @@ -3727,12 +3722,12 @@ msgid "" "Minimum level for log messages (only available when using pretty format)" msgstr "" -#: lxc/storage_bucket.go:111 lxc/storage_bucket.go:211 -#: lxc/storage_bucket.go:287 lxc/storage_bucket.go:406 -#: lxc/storage_bucket.go:563 lxc/storage_bucket.go:655 -#: lxc/storage_bucket.go:797 lxc/storage_bucket.go:878 -#: lxc/storage_bucket.go:953 lxc/storage_bucket.go:1032 -#: lxc/storage_bucket.go:1155 +#: lxc/storage_bucket.go:116 lxc/storage_bucket.go:216 +#: lxc/storage_bucket.go:292 lxc/storage_bucket.go:411 +#: lxc/storage_bucket.go:568 lxc/storage_bucket.go:660 +#: lxc/storage_bucket.go:802 lxc/storage_bucket.go:883 +#: lxc/storage_bucket.go:958 lxc/storage_bucket.go:1037 +#: lxc/storage_bucket.go:1160 msgid "Missing bucket name" msgstr "" @@ -3776,8 +3771,8 @@ msgstr "" msgid "Missing instance name" msgstr "" -#: lxc/storage_bucket.go:882 lxc/storage_bucket.go:957 -#: lxc/storage_bucket.go:1036 lxc/storage_bucket.go:1159 +#: lxc/storage_bucket.go:887 lxc/storage_bucket.go:962 +#: lxc/storage_bucket.go:1041 lxc/storage_bucket.go:1164 msgid "Missing key name" msgstr "" @@ -3785,10 +3780,10 @@ msgstr "" #: lxc/network_forward.go:481 lxc/network_forward.go:627 #: lxc/network_forward.go:746 lxc/network_forward.go:823 #: lxc/network_forward.go:889 lxc/network_load_balancer.go:201 -#: lxc/network_load_balancer.go:411 lxc/network_load_balancer.go:484 -#: lxc/network_load_balancer.go:630 lxc/network_load_balancer.go:750 -#: lxc/network_load_balancer.go:826 lxc/network_load_balancer.go:890 -#: lxc/network_load_balancer.go:991 lxc/network_load_balancer.go:1053 +#: lxc/network_load_balancer.go:416 lxc/network_load_balancer.go:489 +#: lxc/network_load_balancer.go:635 lxc/network_load_balancer.go:755 +#: lxc/network_load_balancer.go:831 lxc/network_load_balancer.go:895 +#: lxc/network_load_balancer.go:996 lxc/network_load_balancer.go:1058 msgid "Missing listen address" msgstr "" @@ -3813,26 +3808,26 @@ msgstr "" #: lxc/network_forward.go:477 lxc/network_forward.go:623 #: lxc/network_forward.go:742 lxc/network_forward.go:819 #: lxc/network_forward.go:885 lxc/network_load_balancer.go:123 -#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:261 -#: lxc/network_load_balancer.go:407 lxc/network_load_balancer.go:480 -#: lxc/network_load_balancer.go:626 lxc/network_load_balancer.go:746 -#: lxc/network_load_balancer.go:822 lxc/network_load_balancer.go:886 -#: lxc/network_load_balancer.go:987 lxc/network_load_balancer.go:1049 +#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:266 +#: lxc/network_load_balancer.go:412 lxc/network_load_balancer.go:485 +#: lxc/network_load_balancer.go:631 lxc/network_load_balancer.go:751 +#: lxc/network_load_balancer.go:827 lxc/network_load_balancer.go:891 +#: lxc/network_load_balancer.go:992 lxc/network_load_balancer.go:1054 #: lxc/network_peer.go:110 lxc/network_peer.go:180 lxc/network_peer.go:237 #: lxc/network_peer.go:355 lxc/network_peer.go:426 lxc/network_peer.go:556 #: lxc/network_peer.go:665 msgid "Missing network name" msgstr "" -#: lxc/network_zone.go:178 lxc/network_zone.go:234 lxc/network_zone.go:294 -#: lxc/network_zone.go:382 lxc/network_zone.go:503 lxc/network_zone.go:606 -#: lxc/network_zone.go:712 lxc/network_zone.go:780 lxc/network_zone.go:892 -#: lxc/network_zone.go:976 lxc/network_zone.go:1197 lxc/network_zone.go:1262 -#: lxc/network_zone.go:1307 +#: lxc/network_zone.go:179 lxc/network_zone.go:235 lxc/network_zone.go:299 +#: lxc/network_zone.go:387 lxc/network_zone.go:508 lxc/network_zone.go:611 +#: lxc/network_zone.go:717 lxc/network_zone.go:785 lxc/network_zone.go:897 +#: lxc/network_zone.go:981 lxc/network_zone.go:1202 lxc/network_zone.go:1267 +#: lxc/network_zone.go:1312 msgid "Missing network zone name" msgstr "" -#: lxc/network_zone.go:833 lxc/network_zone.go:1095 +#: lxc/network_zone.go:838 lxc/network_zone.go:1100 msgid "Missing network zone record name" msgstr "" @@ -3842,13 +3837,13 @@ msgid "Missing peer name" msgstr "" #: lxc/storage.go:194 lxc/storage.go:264 lxc/storage.go:370 lxc/storage.go:440 -#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:107 -#: lxc/storage_bucket.go:207 lxc/storage_bucket.go:283 -#: lxc/storage_bucket.go:402 lxc/storage_bucket.go:477 -#: lxc/storage_bucket.go:559 lxc/storage_bucket.go:651 -#: lxc/storage_bucket.go:793 lxc/storage_bucket.go:874 -#: lxc/storage_bucket.go:949 lxc/storage_bucket.go:1028 -#: lxc/storage_bucket.go:1151 lxc/storage_volume.go:189 +#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:112 +#: lxc/storage_bucket.go:212 lxc/storage_bucket.go:288 +#: lxc/storage_bucket.go:407 lxc/storage_bucket.go:482 +#: lxc/storage_bucket.go:564 lxc/storage_bucket.go:656 +#: lxc/storage_bucket.go:798 lxc/storage_bucket.go:879 +#: lxc/storage_bucket.go:954 lxc/storage_bucket.go:1033 +#: lxc/storage_bucket.go:1156 lxc/storage_volume.go:189 #: lxc/storage_volume.go:287 lxc/storage_volume.go:583 #: lxc/storage_volume.go:660 lxc/storage_volume.go:735 #: lxc/storage_volume.go:817 lxc/storage_volume.go:919 @@ -3968,7 +3963,7 @@ msgstr "" msgid "Moving the storage volume: %s" msgstr "" -#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1097 +#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1102 msgid "Multiple ports match. Use --force to remove them all" msgstr "" @@ -3987,10 +3982,10 @@ 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:677 lxc/project.go:498 -#: lxc/remote.go:731 lxc/storage.go:638 lxc/storage_bucket.go:506 -#: lxc/storage_bucket.go:826 lxc/storage_volume.go:1561 +#: lxc/network_acl.go:147 lxc/network_peer.go:139 lxc/network_zone.go:139 +#: lxc/network_zone.go:746 lxc/profile.go:677 lxc/project.go:498 +#: lxc/remote.go:732 lxc/storage.go:638 lxc/storage_bucket.go:511 +#: lxc/storage_bucket.go:831 lxc/storage_volume.go:1561 msgid "NAME" msgstr "" @@ -4016,7 +4011,7 @@ msgstr "" #: lxc/network.go:957 lxc/operation.go:154 lxc/project.go:456 #: lxc/project.go:461 lxc/project.go:466 lxc/project.go:471 lxc/project.go:476 -#: lxc/project.go:481 lxc/remote.go:691 lxc/remote.go:696 lxc/remote.go:701 +#: lxc/project.go:481 lxc/remote.go:692 lxc/remote.go:697 lxc/remote.go:702 msgid "NO" msgstr "" @@ -4043,7 +4038,7 @@ msgstr "" msgid "Name" msgstr "" -#: lxc/remote.go:141 +#: lxc/remote.go:142 msgid "Name of the project to use for this remote:" msgstr "" @@ -4092,12 +4087,12 @@ msgstr "" msgid "Network ACL %s renamed to %s" msgstr "" -#: lxc/network_zone.go:336 +#: lxc/network_zone.go:341 #, c-format msgid "Network Zone %s created" msgstr "" -#: lxc/network_zone.go:616 +#: lxc/network_zone.go:621 #, c-format msgid "Network Zone %s deleted" msgstr "" @@ -4112,12 +4107,12 @@ msgstr "" msgid "Network forward %s deleted" msgstr "" -#: lxc/network_load_balancer.go:365 +#: lxc/network_load_balancer.go:370 #, c-format msgid "Network load balancer %s created" msgstr "" -#: lxc/network_load_balancer.go:767 +#: lxc/network_load_balancer.go:772 #, c-format msgid "Network load balancer %s deleted" msgstr "" @@ -4155,12 +4150,12 @@ msgstr "" msgid "Network usage:" msgstr "" -#: lxc/network_zone.go:934 +#: lxc/network_zone.go:939 #, c-format msgid "Network zone record %s created" msgstr "" -#: lxc/network_zone.go:1207 +#: lxc/network_zone.go:1212 #, c-format msgid "Network zone record %s deleted" msgstr "" @@ -4195,11 +4190,11 @@ msgstr "" msgid "No device found for this storage volume" msgstr "" -#: lxc/network_load_balancer.go:921 +#: lxc/network_load_balancer.go:926 msgid "No matching backend found" msgstr "" -#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1108 +#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1113 msgid "No matching port(s) found" msgstr "" @@ -4245,7 +4240,7 @@ msgstr "" msgid "Only \"custom\" volumes can be snapshotted" msgstr "" -#: lxc/remote.go:332 +#: lxc/remote.go:333 msgid "Only https URLs are supported for simplestreams" msgstr "" @@ -4270,7 +4265,7 @@ msgstr "" msgid "Optimized Storage" msgstr "" -#: lxc/main.go:96 +#: lxc/main.go:97 msgid "Override the source project" msgstr "" @@ -4316,11 +4311,11 @@ msgstr "" msgid "PROJECT" msgstr "" -#: lxc/remote.go:733 +#: lxc/remote.go:734 msgid "PROTOCOL" msgstr "" -#: lxc/image.go:1073 lxc/remote.go:735 +#: lxc/image.go:1073 lxc/remote.go:736 msgid "PUBLIC" msgstr "" @@ -4336,7 +4331,7 @@ msgstr "" msgid "Partitions:" msgstr "" -#: lxc/main.go:361 +#: lxc/main.go:363 #, c-format msgid "Password for %s: " msgstr "" @@ -4349,7 +4344,7 @@ msgstr "" msgid "Perform an incremental copy" msgstr "" -#: lxc/remote.go:182 +#: lxc/remote.go:183 msgid "Please provide an alternate server address (empty to abort):" msgstr "" @@ -4361,7 +4356,7 @@ msgstr "" msgid "Please provide cluster member name: " msgstr "" -#: lxc/remote.go:462 +#: lxc/remote.go:463 msgid "Please type 'y', 'n' or the fingerprint:" msgstr "" @@ -4383,10 +4378,10 @@ msgstr "" #: lxc/config.go:1278 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/network_load_balancer.go:695 lxc/network_peer.go:611 +#: lxc/network_zone.go:557 lxc/network_zone.go:1149 lxc/profile.go:539 +#: lxc/project.go:316 lxc/storage.go:311 lxc/storage_bucket.go:349 +#: lxc/storage_bucket.go:1098 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 "" @@ -4395,7 +4390,7 @@ msgstr "" msgid "Pretty rendering (short for --format=pretty)" msgstr "" -#: lxc/main.go:94 +#: lxc/main.go:95 msgid "Print help" msgstr "" @@ -4403,7 +4398,7 @@ msgstr "" msgid "Print the raw response" msgstr "" -#: lxc/main.go:93 +#: lxc/main.go:94 msgid "Print version number" msgstr "" @@ -4492,7 +4487,7 @@ msgstr "" msgid "Project %s renamed to %s" msgstr "" -#: lxc/remote.go:106 +#: lxc/remote.go:107 msgid "Project to use for the remote" msgstr "" @@ -4590,7 +4585,7 @@ msgid "" "pool \"default\"." msgstr "" -#: lxc/remote.go:105 +#: lxc/remote.go:106 msgid "Public image server" msgstr "" @@ -4638,7 +4633,7 @@ msgstr "" msgid "RESOURCE" msgstr "" -#: lxc/storage_bucket.go:828 +#: lxc/storage_bucket.go:833 msgid "ROLE" msgstr "" @@ -4681,45 +4676,45 @@ msgstr "" msgid "Refreshing the image: %s" msgstr "" -#: lxc/remote.go:785 +#: lxc/remote.go:786 #, c-format msgid "Remote %s already exists" msgstr "" -#: lxc/project.go:769 lxc/remote.go:776 lxc/remote.go:849 lxc/remote.go:905 -#: lxc/remote.go:945 +#: lxc/project.go:769 lxc/remote.go:777 lxc/remote.go:850 lxc/remote.go:906 +#: lxc/remote.go:946 #, c-format msgid "Remote %s doesn't exist" msgstr "" -#: lxc/remote.go:301 +#: lxc/remote.go:302 #, c-format msgid "Remote %s exists as <%s>" msgstr "" -#: lxc/remote.go:857 +#: lxc/remote.go:858 #, c-format msgid "Remote %s is global and cannot be removed" msgstr "" -#: lxc/remote.go:780 lxc/remote.go:853 lxc/remote.go:949 +#: lxc/remote.go:781 lxc/remote.go:854 lxc/remote.go:950 #, c-format msgid "Remote %s is static and cannot be modified" msgstr "" -#: lxc/remote.go:290 +#: lxc/remote.go:291 msgid "Remote address must not be empty" msgstr "" -#: lxc/remote.go:101 +#: lxc/remote.go:102 msgid "Remote admin password" msgstr "" -#: lxc/remote.go:295 +#: lxc/remote.go:296 msgid "Remote names may not contain colons" msgstr "" -#: lxc/remote.go:102 +#: lxc/remote.go:103 msgid "Remote trust token" msgstr "" @@ -4745,7 +4740,7 @@ msgstr "" msgid "Remove a member from the cluster" msgstr "" -#: lxc/network_zone.go:1285 +#: lxc/network_zone.go:1290 msgid "Remove a network zone record entry" msgstr "" @@ -4753,7 +4748,7 @@ msgstr "" msgid "Remove aliases" msgstr "" -#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1025 +#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1030 msgid "Remove all ports that match" msgstr "" @@ -4761,15 +4756,15 @@ msgstr "" msgid "Remove all rules that match" msgstr "" -#: lxc/network_load_balancer.go:862 +#: lxc/network_load_balancer.go:867 msgid "Remove backend from a load balancer" msgstr "" -#: lxc/network_load_balancer.go:861 +#: lxc/network_load_balancer.go:866 msgid "Remove backends from a load balancer" msgstr "" -#: lxc/network_zone.go:1286 +#: lxc/network_zone.go:1291 msgid "Remove entries from a network zone record" msgstr "" @@ -4793,7 +4788,7 @@ msgstr "" msgid "Remove ports from a forward" msgstr "" -#: lxc/network_load_balancer.go:1023 lxc/network_load_balancer.go:1024 +#: lxc/network_load_balancer.go:1028 lxc/network_load_balancer.go:1029 msgid "Remove ports from a load balancer" msgstr "" @@ -4801,7 +4796,7 @@ msgstr "" msgid "Remove profiles from instances" msgstr "" -#: lxc/remote.go:827 lxc/remote.go:828 +#: lxc/remote.go:828 lxc/remote.go:829 msgid "Remove remotes" msgstr "" @@ -4858,7 +4853,7 @@ msgstr "" msgid "Rename projects" msgstr "" -#: lxc/remote.go:754 lxc/remote.go:755 +#: lxc/remote.go:755 lxc/remote.go:756 msgid "Rename remotes" msgstr "" @@ -4936,7 +4931,7 @@ msgid "Restrict the certificate to one or more projects" msgstr "" #: lxc/console.go:44 -msgid "Retrieve the instance's console log" +msgid "Retrieve the container's console log" msgstr "" #: lxc/init.go:347 @@ -4952,7 +4947,7 @@ msgstr "" msgid "Revoke cluster member join token" msgstr "" -#: lxc/storage_bucket.go:851 +#: lxc/storage_bucket.go:856 msgid "Role (admin or read-only)" msgstr "" @@ -5003,7 +4998,7 @@ msgstr "" msgid "STATE" msgstr "" -#: lxc/remote.go:736 +#: lxc/remote.go:737 msgid "STATIC" msgstr "" @@ -5027,11 +5022,11 @@ msgstr "" msgid "STP" msgstr "" -#: lxc/storage_bucket.go:853 +#: lxc/storage_bucket.go:858 msgid "Secret key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:909 +#: lxc/storage_bucket.go:914 #, c-format msgid "Secret key: %s" msgstr "" @@ -5040,19 +5035,19 @@ msgstr "" msgid "Send a raw query to LXD" msgstr "" -#: lxc/remote.go:104 +#: lxc/remote.go:105 msgid "Server authentication type (tls or oidc)" msgstr "" -#: lxc/remote.go:460 +#: lxc/remote.go:461 msgid "Server certificate NACKed by user" msgstr "" -#: lxc/remote.go:599 +#: lxc/remote.go:600 msgid "Server doesn't trust us after authentication" msgstr "" -#: lxc/remote.go:103 +#: lxc/remote.go:104 msgid "Server protocol (lxd or simplestreams)" msgstr "" @@ -5151,11 +5146,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_load_balancer.go:450 +#: lxc/network_load_balancer.go:455 msgid "Set network load balancer keys" msgstr "" -#: lxc/network_load_balancer.go:451 +#: lxc/network_load_balancer.go:456 msgid "" "Set network load balancer keys\n" "\n" @@ -5177,11 +5172,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:353 +#: lxc/network_zone.go:358 msgid "Set network zone configuration keys" msgstr "" -#: lxc/network_zone.go:354 +#: lxc/network_zone.go:359 msgid "" "Set network zone configuration keys\n" "\n" @@ -5190,7 +5185,7 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:951 lxc/network_zone.go:952 +#: lxc/network_zone.go:956 lxc/network_zone.go:957 msgid "Set network zone record configuration keys" msgstr "" @@ -5220,11 +5215,11 @@ msgid "" " lxc project set [:] " msgstr "" -#: lxc/storage_bucket.go:529 +#: lxc/storage_bucket.go:534 msgid "Set storage bucket configuration keys" msgstr "" -#: lxc/storage_bucket.go:530 +#: lxc/storage_bucket.go:535 msgid "" "Set storage bucket configuration keys\n" "\n" @@ -5259,7 +5254,7 @@ msgid "" " lxc storage volume set [:] [/] " msgstr "" -#: lxc/remote.go:923 lxc/remote.go:924 +#: lxc/remote.go:924 lxc/remote.go:925 msgid "Set the URL for the remote" msgstr "" @@ -5287,7 +5282,7 @@ msgstr "" msgid "Set the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:458 +#: lxc/network_load_balancer.go:463 msgid "Set the key as a network load balancer property" msgstr "" @@ -5299,11 +5294,11 @@ msgstr "" msgid "Set the key as a network property" msgstr "" -#: lxc/network_zone.go:361 +#: lxc/network_zone.go:366 msgid "Set the key as a network zone property" msgstr "" -#: lxc/network_zone.go:957 +#: lxc/network_zone.go:962 msgid "Set the key as a network zone record property" msgstr "" @@ -5315,7 +5310,7 @@ msgstr "" msgid "Set the key as a project property" msgstr "" -#: lxc/storage_bucket.go:537 +#: lxc/storage_bucket.go:542 msgid "Set the key as a storage bucket property" msgstr "" @@ -5335,11 +5330,11 @@ msgstr "" msgid "Setup SSH SFTP listener on address:port instead of mounting" msgstr "" -#: lxc/main.go:97 +#: lxc/main.go:98 msgid "Show all debug messages" msgstr "" -#: lxc/main.go:98 +#: lxc/main.go:99 msgid "Show all information messages" msgstr "" @@ -5408,7 +5403,7 @@ msgstr "" msgid "Show instance or server information" msgstr "" -#: lxc/main.go:271 lxc/main.go:272 +#: lxc/main.go:272 lxc/main.go:273 msgid "Show less common commands" msgstr "" @@ -5440,15 +5435,15 @@ msgstr "" msgid "Show network peer configurations" msgstr "" -#: lxc/network_zone.go:155 lxc/network_zone.go:156 +#: lxc/network_zone.go:156 lxc/network_zone.go:157 msgid "Show network zone configurations" msgstr "" -#: lxc/network_zone.go:758 +#: lxc/network_zone.go:763 msgid "Show network zone record configuration" msgstr "" -#: lxc/network_zone.go:759 +#: lxc/network_zone.go:764 msgid "Show network zone record configurations" msgstr "" @@ -5460,11 +5455,11 @@ msgstr "" msgid "Show project options" msgstr "" -#: lxc/storage_bucket.go:623 lxc/storage_bucket.go:624 +#: lxc/storage_bucket.go:628 lxc/storage_bucket.go:629 msgid "Show storage bucket configurations" msgstr "" -#: lxc/storage_bucket.go:1123 lxc/storage_bucket.go:1124 +#: lxc/storage_bucket.go:1128 lxc/storage_bucket.go:1129 msgid "Show storage bucket key configurations" msgstr "" @@ -5490,7 +5485,7 @@ msgid "" "that are granted via identity provider group mappings. \n" msgstr "" -#: lxc/remote.go:630 lxc/remote.go:631 +#: lxc/remote.go:631 lxc/remote.go:632 msgid "Show the default remote" msgstr "" @@ -5614,22 +5609,22 @@ msgstr "" msgid "Stopping the instance failed: %s" msgstr "" -#: lxc/storage_bucket.go:161 +#: lxc/storage_bucket.go:166 #, c-format msgid "Storage bucket %s created" msgstr "" -#: lxc/storage_bucket.go:228 +#: lxc/storage_bucket.go:233 #, c-format msgid "Storage bucket %s deleted" msgstr "" -#: lxc/storage_bucket.go:907 +#: lxc/storage_bucket.go:912 #, c-format msgid "Storage bucket key %s added" msgstr "" -#: lxc/storage_bucket.go:973 +#: lxc/storage_bucket.go:978 #, c-format msgid "Storage bucket key %s removed" msgstr "" @@ -5702,7 +5697,7 @@ msgstr "" msgid "Switch the current project" msgstr "" -#: lxc/remote.go:883 lxc/remote.go:884 +#: lxc/remote.go:884 lxc/remote.go:885 msgid "Switch the default remote" msgstr "" @@ -5817,7 +5812,7 @@ msgstr "" msgid "The property %q does not exist on the instance snapshot %s/%s: %v" msgstr "" -#: lxc/network_load_balancer.go:424 +#: lxc/network_load_balancer.go:429 #, c-format msgid "The property %q does not exist on the load balancer %q: %v" msgstr "" @@ -5842,12 +5837,12 @@ msgstr "" msgid "The property %q does not exist on the network peer %q: %v" msgstr "" -#: lxc/network_zone.go:246 +#: lxc/network_zone.go:247 #, c-format msgid "The property %q does not exist on the network zone %q: %v" msgstr "" -#: lxc/network_zone.go:845 +#: lxc/network_zone.go:850 #, c-format msgid "The property %q does not exist on the network zone record %q: %v" msgstr "" @@ -5862,7 +5857,7 @@ msgstr "" msgid "The property %q does not exist on the project %q: %v" msgstr "" -#: lxc/storage_bucket.go:426 +#: lxc/storage_bucket.go:431 #, c-format msgid "The property %q does not exist on the storage bucket %q: %v" msgstr "" @@ -5916,7 +5911,7 @@ msgstr "" msgid "This LXD server is not available on the network" msgstr "" -#: lxc/main.go:293 +#: lxc/main.go:294 msgid "" "This client hasn't been configured to use a remote LXD server yet.\n" "As your platform can't run native Linux instances, you must connect to a " @@ -5948,11 +5943,11 @@ msgstr "" msgid "To create a new network, use: lxc network create" msgstr "" -#: lxc/console.go:210 +#: lxc/console.go:215 msgid "To detach from the console, press: +a q" msgstr "" -#: lxc/main.go:403 +#: lxc/main.go:406 msgid "" "To start your first container, try: lxc launch ubuntu:24.04\n" "Or for a virtual machine: lxc launch ubuntu:24.04 --vm" @@ -6050,7 +6045,7 @@ msgstr "" msgid "UPLOAD DATE" msgstr "" -#: lxc/cluster.go:184 lxc/remote.go:732 +#: lxc/cluster.go:184 lxc/remote.go:733 msgid "URL" msgstr "" @@ -6059,7 +6054,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:679 lxc/project.go:506 +#: lxc/network_zone.go:141 lxc/profile.go:679 lxc/project.go:506 #: lxc/storage.go:647 lxc/storage_volume.go:1564 msgid "USED BY" msgstr "" @@ -6078,7 +6073,7 @@ msgstr "" msgid "Unable to create a temporary file: %v" msgstr "" -#: lxc/remote.go:213 lxc/remote.go:247 +#: lxc/remote.go:214 lxc/remote.go:248 msgid "Unavailable remote server" msgstr "" @@ -6098,7 +6093,7 @@ msgstr "" msgid "Unknown column shorthand char '%c' in '%s'" msgstr "" -#: lxc/console.go:159 +#: lxc/console.go:164 #, c-format msgid "Unknown console type %q" msgstr "" @@ -6158,11 +6153,11 @@ msgstr "" msgid "Unset network forward keys" msgstr "" -#: lxc/network_load_balancer.go:548 +#: lxc/network_load_balancer.go:553 msgid "Unset network load balancer configuration keys" msgstr "" -#: lxc/network_load_balancer.go:549 +#: lxc/network_load_balancer.go:554 msgid "Unset network load balancer keys" msgstr "" @@ -6174,11 +6169,11 @@ msgstr "" msgid "Unset network peer keys" msgstr "" -#: lxc/network_zone.go:433 lxc/network_zone.go:434 +#: lxc/network_zone.go:438 lxc/network_zone.go:439 msgid "Unset network zone configuration keys" msgstr "" -#: lxc/network_zone.go:1027 lxc/network_zone.go:1028 +#: lxc/network_zone.go:1032 lxc/network_zone.go:1033 msgid "Unset network zone record configuration keys" msgstr "" @@ -6190,7 +6185,7 @@ msgstr "" msgid "Unset project configuration keys" msgstr "" -#: lxc/storage_bucket.go:692 lxc/storage_bucket.go:693 +#: lxc/storage_bucket.go:697 lxc/storage_bucket.go:698 msgid "Unset storage bucket configuration keys" msgstr "" @@ -6214,7 +6209,7 @@ msgstr "" msgid "Unset the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:552 +#: lxc/network_load_balancer.go:557 msgid "Unset the key as a network load balancer property" msgstr "" @@ -6226,11 +6221,11 @@ msgstr "" msgid "Unset the key as a network property" msgstr "" -#: lxc/network_zone.go:437 +#: lxc/network_zone.go:442 msgid "Unset the key as a network zone property" msgstr "" -#: lxc/network_zone.go:1031 +#: lxc/network_zone.go:1036 msgid "Unset the key as a network zone record property" msgstr "" @@ -6242,7 +6237,7 @@ msgstr "" msgid "Unset the key as a project property" msgstr "" -#: lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:701 msgid "Unset the key as a storage bucket property" msgstr "" @@ -6304,7 +6299,7 @@ msgid "" "Use storage driver optimized format (can only be restored on a similar pool)" msgstr "" -#: lxc/main.go:100 +#: lxc/main.go:101 msgid "Use with help or --help to view sub-commands" msgstr "" @@ -6401,7 +6396,7 @@ msgstr "" #: lxc/network.go:959 lxc/operation.go:156 lxc/project.go:458 #: lxc/project.go:463 lxc/project.go:468 lxc/project.go:473 lxc/project.go:478 -#: lxc/project.go:483 lxc/remote.go:693 lxc/remote.go:698 lxc/remote.go:703 +#: lxc/project.go:483 lxc/remote.go:694 lxc/remote.go:699 lxc/remote.go:704 msgid "YES" msgstr "" @@ -6436,7 +6431,7 @@ 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/network.go:909 lxc/network_acl.go:91 lxc/network_zone.go:83 #: 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 "[:]" @@ -6499,19 +6494,19 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:154 lxc/network_zone.go:463 lxc/network_zone.go:581 +#: lxc/network_zone.go:155 lxc/network_zone.go:468 lxc/network_zone.go:586 msgid "[:]" msgstr "" -#: lxc/network_zone.go:209 lxc/network_zone.go:432 +#: lxc/network_zone.go:210 lxc/network_zone.go:437 msgid "[:] " msgstr "" -#: lxc/network_zone.go:352 +#: lxc/network_zone.go:357 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:269 +#: lxc/network_zone.go:270 msgid "[:] [key=value...]" msgstr "" @@ -6757,30 +6752,30 @@ msgstr "" #: lxc/network_forward.go:169 lxc/network_forward.go:574 #: lxc/network_forward.go:715 lxc/network_load_balancer.go:171 -#: lxc/network_load_balancer.go:577 lxc/network_load_balancer.go:719 +#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:724 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:860 +#: lxc/network_load_balancer.go:865 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:796 +#: lxc/network_load_balancer.go:801 msgid "" "[:] " "[]" msgstr "" #: lxc/network_forward.go:377 lxc/network_forward.go:544 -#: lxc/network_load_balancer.go:381 lxc/network_load_balancer.go:547 +#: lxc/network_load_balancer.go:386 lxc/network_load_balancer.go:552 msgid "[:] " msgstr "" -#: lxc/network_forward.go:446 lxc/network_load_balancer.go:449 +#: lxc/network_forward.go:446 lxc/network_load_balancer.go:454 msgid "[:] =..." msgstr "" -#: lxc/network_load_balancer.go:961 +#: lxc/network_load_balancer.go:966 msgid "" "[:] " "[,...]" @@ -6792,7 +6787,7 @@ msgid "" " []" msgstr "" -#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1022 +#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1027 msgid "[:] [] []" msgstr "" @@ -6843,7 +6838,7 @@ msgid "[:]" msgstr "" #: lxc/storage.go:167 lxc/storage.go:218 lxc/storage.go:412 lxc/storage.go:759 -#: lxc/storage_bucket.go:449 +#: lxc/storage_bucket.go:454 msgid "[:]" msgstr "" @@ -6851,18 +6846,18 @@ msgstr "" msgid "[:] []" msgstr "" -#: lxc/storage_bucket.go:180 lxc/storage_bucket.go:242 -#: lxc/storage_bucket.go:622 lxc/storage_bucket.go:764 +#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:247 +#: lxc/storage_bucket.go:627 lxc/storage_bucket.go:769 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:375 lxc/storage_bucket.go:691 -#: lxc/storage_bucket.go:845 lxc/storage_bucket.go:923 -#: lxc/storage_bucket.go:987 lxc/storage_bucket.go:1122 +#: lxc/storage_bucket.go:380 lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:850 lxc/storage_bucket.go:928 +#: lxc/storage_bucket.go:992 lxc/storage_bucket.go:1127 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:528 +#: lxc/storage_bucket.go:533 msgid "[:] =..." msgstr "" @@ -7006,27 +7001,27 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:686 +#: lxc/network_zone.go:691 msgid "[:]" msgstr "" -#: lxc/network_zone.go:757 lxc/network_zone.go:1056 lxc/network_zone.go:1173 +#: lxc/network_zone.go:762 lxc/network_zone.go:1061 lxc/network_zone.go:1178 msgid "[:] " msgstr "" -#: lxc/network_zone.go:809 lxc/network_zone.go:1026 +#: lxc/network_zone.go:814 lxc/network_zone.go:1031 msgid "[:] " msgstr "" -#: lxc/network_zone.go:950 +#: lxc/network_zone.go:955 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:1238 lxc/network_zone.go:1284 +#: lxc/network_zone.go:1243 lxc/network_zone.go:1289 msgid "[:] " msgstr "" -#: lxc/network_zone.go:868 +#: lxc/network_zone.go:873 msgid "[:] [key=value...]" msgstr "" @@ -7050,7 +7045,7 @@ msgstr "" msgid "[:][] [...]" msgstr "" -#: lxc/remote.go:88 +#: lxc/remote.go:89 msgid "[] " msgstr "" @@ -7058,7 +7053,7 @@ msgstr "" msgid "[[:]]" msgstr "" -#: lxc/project.go:488 lxc/remote.go:722 +#: lxc/project.go:488 lxc/remote.go:723 msgid "current" msgstr "" @@ -7321,6 +7316,23 @@ msgid "" " Create a new OVN network called bar using baz as its uplink network" msgstr "" +#: lxc/network_load_balancer.go:239 +msgid "" +"lxc network load-balancer create n1 127.0.0.1\n" +"\n" +"lxc network load-balancer create n1 127.0.0.1 < config.yaml\n" +" Create network load-balancer for network n1 with configuration from " +"config.yaml" +msgstr "" + +#: lxc/network_zone.go:273 +msgid "" +"lxc network zone create z1\n" +"\n" +"lxc network zone create z1 < config.yaml\n" +" Create network zone z1 with configuration from config.yaml" +msgstr "" + #: lxc/operation.go:195 msgid "" "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n" @@ -7391,26 +7403,36 @@ msgid "" " Restore the snapshot." msgstr "" -#: lxc/storage_bucket.go:245 +#: lxc/storage_bucket.go:84 +msgid "" +"lxc storage bucket create p1 b01\n" +"\tCreate a new storage bucket name b01 in storage pool p1\n" +"\n" +"lxc storage bucket create p1 b01 < config.yaml\n" +"\tCreate a new storage bucket name b01 in storage pool p1 using the content " +"of config.yaml" +msgstr "" + +#: lxc/storage_bucket.go:250 msgid "" "lxc storage bucket edit [:] < bucket.yaml\n" " Update a storage bucket using the content of bucket.yaml." msgstr "" -#: lxc/storage_bucket.go:990 +#: lxc/storage_bucket.go:995 msgid "" "lxc storage bucket edit [:] < key.yaml\n" " Update a storage bucket key using the content of key.yaml." msgstr "" -#: lxc/storage_bucket.go:1125 +#: lxc/storage_bucket.go:1130 msgid "" "lxc storage bucket key show default data foo\n" " Will show the properties of a bucket key called \"foo\" for a bucket " "called \"data\" in the \"default\" pool." msgstr "" -#: lxc/storage_bucket.go:625 +#: lxc/storage_bucket.go:630 msgid "" "lxc storage bucket show default data\n" " Will show the properties of a bucket called \"data\" in the \"default\" " @@ -7429,7 +7451,7 @@ msgid "" "\t\tCreate a new custom volume using backup0.tar.gz as the source." msgstr "" -#: lxc/remote.go:459 +#: lxc/remote.go:460 msgid "n" msgstr "" @@ -7441,7 +7463,7 @@ msgstr "" msgid "no" msgstr "" -#: lxc/remote.go:452 +#: lxc/remote.go:453 msgid "ok (y/n/[fingerprint])?" msgstr "" @@ -7478,7 +7500,7 @@ msgstr "" msgid "used by" msgstr "" -#: lxc/remote.go:461 +#: lxc/remote.go:462 msgid "y" msgstr "" diff --git a/po/pt_BR.po b/po/pt_BR.po index 48eeb618d55a..832f5bbb1097 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-08-20 09:31+0100\n" +"POT-Creation-Date: 2024-08-30 09:27+0100\n" "PO-Revision-Date: 2022-03-10 15:08+0000\n" "Last-Translator: Renato dos Santos \n" "Language-Team: Portuguese (Brazil) 1;\n" "X-Generator: Weblate 4.12-dev\n" -#: lxc/storage_bucket.go:255 lxc/storage_bucket.go:1000 +#: lxc/storage_bucket.go:260 lxc/storage_bucket.go:1005 #, fuzzy msgid "" "### This is a YAML representation of a storage bucket.\n" @@ -421,7 +421,7 @@ msgstr "" "###\n" "### Note que o nome é exibido, porém não pode ser alterado." -#: lxc/network_load_balancer.go:588 +#: lxc/network_load_balancer.go:593 #, fuzzy msgid "" "### This is a YAML representation of the network load balancer.\n" @@ -494,7 +494,7 @@ msgstr "" "### source: /home/chb/mnt/lxd_test/default.img\n" "### zfs.pool_name: default" -#: lxc/network_zone.go:1066 +#: lxc/network_zone.go:1071 #, fuzzy msgid "" "### This is a YAML representation of the network zone record.\n" @@ -520,7 +520,7 @@ msgstr "" "### config:\n" "### size: \"61203283968\"" -#: lxc/network_zone.go:473 +#: lxc/network_zone.go:478 #, fuzzy msgid "" "### This is a YAML representation of the network zone.\n" @@ -773,15 +773,15 @@ msgstr "" msgid " " msgstr "" -#: lxc/remote.go:825 lxc/remote.go:882 +#: lxc/remote.go:826 lxc/remote.go:883 msgid "" msgstr "" -#: lxc/remote.go:922 +#: lxc/remote.go:923 msgid " " msgstr "" -#: lxc/remote.go:752 +#: lxc/remote.go:753 msgid " " msgstr "" @@ -815,7 +815,7 @@ msgstr "ALIASES" msgid "ARCHITECTURE" msgstr "ARQUITETURA" -#: lxc/remote.go:734 +#: lxc/remote.go:735 msgid "AUTH TYPE" msgstr "TIPO DE AUTENTICAÇÃO" @@ -823,15 +823,15 @@ msgstr "TIPO DE AUTENTICAÇÃO" msgid "AUTHENTICATION METHOD" msgstr "" -#: lxc/remote.go:100 +#: lxc/remote.go:101 msgid "Accept certificate" msgstr "Aceitar certificado" -#: lxc/storage_bucket.go:852 +#: lxc/storage_bucket.go:857 msgid "Access key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:908 +#: lxc/storage_bucket.go:913 #, c-format msgid "Access key: %s" msgstr "" @@ -867,20 +867,20 @@ msgstr "" msgid "Add a group to an identity provider group" msgstr "" -#: lxc/network_zone.go:1239 +#: lxc/network_zone.go:1244 #, fuzzy msgid "Add a network zone record entry" msgstr "Editar configurações de perfil como YAML" -#: lxc/network_load_balancer.go:798 +#: lxc/network_load_balancer.go:803 msgid "Add backend to a load balancer" msgstr "" -#: lxc/network_load_balancer.go:797 +#: lxc/network_load_balancer.go:802 msgid "Add backends to a load balancer" msgstr "" -#: lxc/network_zone.go:1240 +#: lxc/network_zone.go:1245 msgid "Add entries to a network zone record" msgstr "" @@ -897,11 +897,11 @@ msgstr "" msgid "Add new aliases" msgstr "Adicionar novo aliases" -#: lxc/remote.go:89 +#: lxc/remote.go:90 msgid "Add new remote servers" msgstr "Adicionar novos servidores remoto" -#: lxc/remote.go:90 +#: lxc/remote.go:91 msgid "" "Add new remote servers\n" "\n" @@ -943,7 +943,7 @@ msgstr "" msgid "Add ports to a forward" msgstr "" -#: lxc/network_load_balancer.go:962 lxc/network_load_balancer.go:963 +#: lxc/network_load_balancer.go:967 lxc/network_load_balancer.go:968 msgid "Add ports to a load balancer" msgstr "" @@ -967,17 +967,17 @@ msgstr "Adicionar perfis aos containers" msgid "Address: %s" msgstr "" -#: lxc/storage_bucket.go:164 +#: lxc/storage_bucket.go:169 #, fuzzy, c-format msgid "Admin access key: %s" msgstr "Senha de administrador para %s: " -#: lxc/remote.go:566 +#: lxc/remote.go:567 #, fuzzy, c-format msgid "Admin password (or token) for %s:" msgstr "Senha de administrador para %s: " -#: lxc/storage_bucket.go:165 +#: lxc/storage_bucket.go:170 #, fuzzy, c-format msgid "Admin secret key: %s" msgstr "Criado: %s" @@ -1010,7 +1010,7 @@ msgstr "Aliases:" msgid "All projects" msgstr "Criar projetos" -#: lxc/remote.go:181 +#: lxc/remote.go:182 msgid "All server addresses are unavailable" msgstr "" @@ -1034,7 +1034,7 @@ msgstr "Arquitetura: %v" msgid "Are you sure you want to %s cluster member %q? (yes/no) [default=no]: " msgstr "" -#: lxc/console.go:383 +#: lxc/console.go:388 msgid "As neither could be found, the raw SPICE socket can be found at:" msgstr "" @@ -1088,7 +1088,7 @@ msgid "" "as well as retrieve past log entries from it." msgstr "" -#: lxc/remote.go:548 +#: lxc/remote.go:549 #, c-format msgid "Authentication type '%s' not supported by server" msgstr "Tipo de autenticação '%s' não suportada pelo servidor" @@ -1107,11 +1107,11 @@ msgstr "" msgid "Auto update: %s" msgstr "Atualização automática: %s" -#: lxc/network_forward.go:240 lxc/network_load_balancer.go:242 +#: lxc/network_forward.go:240 lxc/network_load_balancer.go:247 msgid "Auto-allocate an IPv4 or IPv6 listen address. One of 'ipv4', 'ipv6'." msgstr "" -#: lxc/remote.go:136 +#: lxc/remote.go:137 #, fuzzy msgid "Available projects:" msgstr "Criar projetos" @@ -1144,8 +1144,8 @@ msgid "Bad device override syntax, expecting ,=: %s" msgstr "Erro de sintaxe, esperado ,=: %s" #: lxc/network.go:333 lxc/network_acl.go:382 lxc/network_forward.go:293 -#: lxc/network_load_balancer.go:296 lxc/network_peer.go:280 -#: lxc/network_zone.go:324 lxc/network_zone.go:922 lxc/storage_bucket.go:136 +#: lxc/network_load_balancer.go:301 lxc/network_peer.go:280 +#: lxc/network_zone.go:329 lxc/network_zone.go:927 lxc/storage_bucket.go:141 #, c-format msgid "Bad key/value pair: %s" msgstr "par de chave/valor inválido %s" @@ -1268,7 +1268,7 @@ msgstr "Não pode pegar um diretório sem --recursive" msgid "Can't read from stdin: %w" msgstr "Não é possível ler stdin: %s" -#: lxc/remote.go:861 +#: lxc/remote.go:862 msgid "Can't remove the default remote" msgstr "Não é possível remover o default remoto" @@ -1335,17 +1335,17 @@ msgstr "Em cache: %s" msgid "Certificate add token for %s deleted" msgstr "Clustering ativado" -#: lxc/remote.go:218 +#: lxc/remote.go:452 +#, fuzzy +msgid "Certificate fingerprint" +msgstr "Certificado fingerprint: %s" + +#: lxc/remote.go:219 #, c-format msgid "" "Certificate fingerprint mismatch between certificate token and server %q" msgstr "" -#: lxc/remote.go:451 -#, c-format -msgid "Certificate fingerprint: %s" -msgstr "Certificado fingerprint: %s" - #: lxc/network.go:893 msgid "Chassis" msgstr "" @@ -1355,7 +1355,7 @@ msgstr "" msgid "Client %s certificate add token:" msgstr "Nome de membro do cluster" -#: lxc/remote.go:603 +#: lxc/remote.go:604 #, fuzzy msgid "Client certificate now trusted by server:" msgstr "Certificado do cliente armazenado no servidor: " @@ -1418,18 +1418,18 @@ msgstr "Dispositivo %s removido de %s" #: lxc/network_forward.go:456 lxc/network_forward.go:579 #: lxc/network_forward.go:721 lxc/network_forward.go:798 #: lxc/network_forward.go:864 lxc/network_load_balancer.go:176 -#: lxc/network_load_balancer.go:241 lxc/network_load_balancer.go:459 -#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:725 -#: lxc/network_load_balancer.go:801 lxc/network_load_balancer.go:865 -#: lxc/network_load_balancer.go:966 lxc/network_load_balancer.go:1028 +#: lxc/network_load_balancer.go:246 lxc/network_load_balancer.go:464 +#: lxc/network_load_balancer.go:587 lxc/network_load_balancer.go:730 +#: lxc/network_load_balancer.go:806 lxc/network_load_balancer.go:870 +#: lxc/network_load_balancer.go:971 lxc/network_load_balancer.go:1033 #: lxc/storage.go:99 lxc/storage.go:347 lxc/storage.go:418 lxc/storage.go:671 -#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:85 -#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:248 -#: lxc/storage_bucket.go:379 lxc/storage_bucket.go:536 -#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:695 -#: lxc/storage_bucket.go:770 lxc/storage_bucket.go:850 -#: lxc/storage_bucket.go:928 lxc/storage_bucket.go:993 -#: lxc/storage_bucket.go:1129 lxc/storage_volume.go:358 +#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:90 +#: lxc/storage_bucket.go:190 lxc/storage_bucket.go:253 +#: lxc/storage_bucket.go:384 lxc/storage_bucket.go:541 +#: lxc/storage_bucket.go:634 lxc/storage_bucket.go:700 +#: lxc/storage_bucket.go:775 lxc/storage_bucket.go:855 +#: lxc/storage_bucket.go:933 lxc/storage_bucket.go:998 +#: lxc/storage_bucket.go:1134 lxc/storage_volume.go:358 #: lxc/storage_volume.go:560 lxc/storage_volume.go:639 #: lxc/storage_volume.go:883 lxc/storage_volume.go:1097 #: lxc/storage_volume.go:1210 lxc/storage_volume.go:1678 @@ -1457,11 +1457,11 @@ msgstr "Clustering ativado" msgid "Columns" msgstr "Colunas" -#: lxc/main.go:81 +#: lxc/main.go:82 msgid "Command line client for LXD" msgstr "Cliente de linha de comando para LXD" -#: lxc/main.go:82 +#: lxc/main.go:83 msgid "" "Command line client for LXD\n" "\n" @@ -1502,19 +1502,15 @@ msgstr "Configuração chave/valor para aplicar ao novo contêiner" #: lxc/config.go:347 lxc/config.go:1277 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/network_load_balancer.go:694 lxc/network_peer.go:610 +#: lxc/network_zone.go:556 lxc/network_zone.go:1148 lxc/profile.go:538 +#: lxc/project.go:315 lxc/storage.go:310 lxc/storage_bucket.go:348 +#: lxc/storage_bucket.go:1097 lxc/storage_volume.go:1016 #: lxc/storage_volume.go:1048 #, c-format msgid "Config parsing error: %s" msgstr "Erro de análise de configuração: %s" -#: lxc/console.go:140 -msgid "Console log:" -msgstr "Log de Console:" - #: lxc/storage_volume.go:561 msgid "Content type, block or filesystem" msgstr "" @@ -1619,12 +1615,12 @@ msgstr "" msgid "Cores:" msgstr "" -#: lxc/remote.go:486 +#: lxc/remote.go:487 #, fuzzy, c-format msgid "Could not close server cert file %q: %w" msgstr "Impossível criar diretório para certificado do servidor" -#: lxc/remote.go:224 lxc/remote.go:470 +#: lxc/remote.go:225 lxc/remote.go:471 msgid "Could not create server cert dir" msgstr "Impossível criar diretório para certificado do servidor" @@ -1663,12 +1659,12 @@ msgstr "Certificado fingerprint: %s" msgid "Could not write new remote certificate for remote '%s' with error: %v" msgstr "" -#: lxc/remote.go:481 +#: lxc/remote.go:482 #, fuzzy, c-format msgid "Could not write server cert file %q: %w" msgstr "Impossível criar diretório para certificado do servidor" -#: lxc/network_zone.go:1327 +#: lxc/network_zone.go:1332 msgid "Couldn't find a matching entry" msgstr "" @@ -1728,7 +1724,7 @@ msgstr "" msgid "Create instances from images" msgstr "" -#: lxc/storage_bucket.go:846 lxc/storage_bucket.go:847 +#: lxc/storage_bucket.go:851 lxc/storage_bucket.go:852 msgid "Create key for a storage bucket" msgstr "" @@ -1766,12 +1762,12 @@ msgstr "Criar novas redes" msgid "Create new network peering" msgstr "Criar novas redes" -#: lxc/network_zone.go:869 lxc/network_zone.go:870 +#: lxc/network_zone.go:874 lxc/network_zone.go:875 #, fuzzy msgid "Create new network zone record" msgstr "Criar novas redes" -#: lxc/network_zone.go:270 lxc/network_zone.go:271 +#: lxc/network_zone.go:271 lxc/network_zone.go:272 #, fuzzy msgid "Create new network zones" msgstr "Criar novas redes" @@ -1824,9 +1820,9 @@ msgstr "" #: 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/network_zone.go:140 lxc/network_zone.go:747 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_bucket.go:512 lxc/storage_bucket.go:832 #: lxc/storage_volume.go:1562 msgid "DESCRIPTION" msgstr "" @@ -1897,7 +1893,7 @@ msgstr "Editar templates de arquivo do container" msgid "Delete instances and snapshots" msgstr "Apagar nomes alternativos da imagem" -#: lxc/storage_bucket.go:924 lxc/storage_bucket.go:925 +#: lxc/storage_bucket.go:929 lxc/storage_bucket.go:930 msgid "Delete key from a storage bucket" msgstr "" @@ -1911,7 +1907,7 @@ msgstr "Criar novas redes" msgid "Delete network forwards" msgstr "Criar novas redes" -#: lxc/network_load_balancer.go:721 lxc/network_load_balancer.go:722 +#: lxc/network_load_balancer.go:726 lxc/network_load_balancer.go:727 #, fuzzy msgid "Delete network load balancers" msgstr "Criar novas redes" @@ -1921,12 +1917,12 @@ msgstr "Criar novas redes" msgid "Delete network peerings" msgstr "Criar novas redes" -#: lxc/network_zone.go:1175 lxc/network_zone.go:1176 +#: lxc/network_zone.go:1180 lxc/network_zone.go:1181 #, fuzzy msgid "Delete network zone record" msgstr "Criar novas redes" -#: lxc/network_zone.go:583 lxc/network_zone.go:584 +#: lxc/network_zone.go:588 lxc/network_zone.go:589 #, fuzzy msgid "Delete network zones" msgstr "Criar novas redes" @@ -1943,7 +1939,7 @@ msgstr "" msgid "Delete projects" msgstr "Apagar projetos" -#: lxc/storage_bucket.go:182 lxc/storage_bucket.go:183 +#: lxc/storage_bucket.go:187 lxc/storage_bucket.go:188 #, fuzzy msgid "Delete storage buckets" msgstr "Apagar projetos" @@ -2000,7 +1996,7 @@ msgstr "" #: 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/info.go:32 lxc/init.go:43 lxc/launch.go:24 lxc/list.go:48 lxc/main.go:83 #: 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 @@ -2019,22 +2015,22 @@ msgstr "" #: 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_load_balancer.go:238 lxc/network_load_balancer.go:388 +#: lxc/network_load_balancer.go:456 lxc/network_load_balancer.go:554 +#: lxc/network_load_balancer.go:584 lxc/network_load_balancer.go:727 +#: lxc/network_load_balancer.go:788 lxc/network_load_balancer.go:803 +#: lxc/network_load_balancer.go:867 lxc/network_load_balancer.go:953 +#: lxc/network_load_balancer.go:968 lxc/network_load_balancer.go:1029 #: 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/network_zone.go:29 lxc/network_zone.go:86 lxc/network_zone.go:157 +#: lxc/network_zone.go:212 lxc/network_zone.go:272 lxc/network_zone.go:359 +#: lxc/network_zone.go:439 lxc/network_zone.go:470 lxc/network_zone.go:589 +#: lxc/network_zone.go:637 lxc/network_zone.go:694 lxc/network_zone.go:764 +#: lxc/network_zone.go:816 lxc/network_zone.go:875 lxc/network_zone.go:957 +#: lxc/network_zone.go:1033 lxc/network_zone.go:1063 lxc/network_zone.go:1181 +#: lxc/network_zone.go:1230 lxc/network_zone.go:1245 lxc/network_zone.go:1291 #: 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 @@ -2043,19 +2039,19 @@ msgstr "" #: 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:631 lxc/remote.go:669 lxc/remote.go:755 lxc/remote.go:828 -#: lxc/remote.go:884 lxc/remote.go:924 lxc/rename.go:21 lxc/restore.go:24 +#: lxc/query.go:34 lxc/rebuild.go:27 lxc/remote.go:35 lxc/remote.go:91 +#: lxc/remote.go:632 lxc/remote.go:670 lxc/remote.go:756 lxc/remote.go:829 +#: lxc/remote.go:885 lxc/remote.go:925 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_bucket.go:29 lxc/storage_bucket.go:83 lxc/storage_bucket.go:188 +#: lxc/storage_bucket.go:249 lxc/storage_bucket.go:382 +#: lxc/storage_bucket.go:458 lxc/storage_bucket.go:535 +#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:698 +#: lxc/storage_bucket.go:732 lxc/storage_bucket.go:773 +#: lxc/storage_bucket.go:852 lxc/storage_bucket.go:930 +#: lxc/storage_bucket.go:994 lxc/storage_bucket.go:1129 #: 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 @@ -2197,7 +2193,7 @@ msgstr "" msgid "Don't require user confirmation for using --force" msgstr "" -#: lxc/main.go:99 +#: lxc/main.go:100 msgid "Don't show progress information" msgstr "" @@ -2210,7 +2206,7 @@ msgstr "" msgid "Driver: %v (%v)" msgstr "" -#: lxc/network_zone.go:743 +#: lxc/network_zone.go:748 msgid "ENTRIES" msgstr "" @@ -2300,7 +2296,7 @@ msgstr "Editar configurações de rede como YAML" msgid "Edit network forward configurations as YAML" msgstr "Editar configurações de rede como YAML" -#: lxc/network_load_balancer.go:578 lxc/network_load_balancer.go:579 +#: lxc/network_load_balancer.go:583 lxc/network_load_balancer.go:584 #, fuzzy msgid "Edit network load balancer configurations as YAML" msgstr "Editar configurações de rede como YAML" @@ -2310,12 +2306,12 @@ msgstr "Editar configurações de rede como YAML" msgid "Edit network peer configurations as YAML" msgstr "Editar configurações de rede como YAML" -#: lxc/network_zone.go:464 lxc/network_zone.go:465 +#: lxc/network_zone.go:469 lxc/network_zone.go:470 #, fuzzy msgid "Edit network zone configurations as YAML" msgstr "Editar configurações de rede como YAML" -#: lxc/network_zone.go:1057 lxc/network_zone.go:1058 +#: lxc/network_zone.go:1062 lxc/network_zone.go:1063 #, fuzzy msgid "Edit network zone record configurations as YAML" msgstr "Editar configurações de rede como YAML" @@ -2329,12 +2325,12 @@ msgstr "Editar configurações de perfil como YAML" msgid "Edit project configurations as YAML" msgstr "Editar configurações de perfil como YAML" -#: lxc/storage_bucket.go:243 lxc/storage_bucket.go:244 +#: lxc/storage_bucket.go:248 lxc/storage_bucket.go:249 #, fuzzy msgid "Edit storage bucket configurations as YAML" msgstr "Editar configurações de perfil como YAML" -#: lxc/storage_bucket.go:988 lxc/storage_bucket.go:989 +#: lxc/storage_bucket.go:993 lxc/storage_bucket.go:994 msgid "Edit storage bucket key as YAML" msgstr "" @@ -2376,7 +2372,7 @@ msgid "" " for the address if not yet set." msgstr "" -#: lxc/network_zone.go:1242 +#: lxc/network_zone.go:1247 msgid "Entry TTL" msgstr "" @@ -2405,9 +2401,9 @@ msgstr "" #: lxc/cluster.go:414 lxc/config.go:624 lxc/config.go:656 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/network_load_balancer.go:527 lxc/network_peer.go:463 +#: lxc/network_zone.go:414 lxc/network_zone.go:1008 lxc/profile.go:876 +#: lxc/project.go:634 lxc/storage.go:727 lxc/storage_bucket.go:602 #: lxc/storage_volume.go:1947 lxc/storage_volume.go:1985 #, fuzzy, c-format msgid "Error setting properties: %v" @@ -2419,10 +2415,10 @@ msgid "Error unsetting properties: %v" msgstr "Editar propriedades da imagem" #: 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/network_forward.go:513 lxc/network_load_balancer.go:521 +#: lxc/network_peer.go:457 lxc/network_zone.go:408 lxc/network_zone.go:1002 #: lxc/profile.go:870 lxc/project.go:628 lxc/storage.go:721 -#: lxc/storage_bucket.go:591 lxc/storage_volume.go:1941 +#: lxc/storage_bucket.go:596 lxc/storage_volume.go:1941 #: lxc/storage_volume.go:1979 #, c-format msgid "Error unsetting property: %v" @@ -2609,7 +2605,7 @@ msgstr "Nome de membro do cluster" msgid "Failed parsing SSH host key: %w" msgstr "Aceitar certificado" -#: lxc/console.go:361 +#: lxc/console.go:366 #, fuzzy, c-format msgid "Failed starting command: %w" msgstr "Aceitar certificado" @@ -2624,11 +2620,11 @@ msgstr "Aceitar certificado" msgid "Failed to accept incoming connection: %w" msgstr "Aceitar certificado" -#: lxc/remote.go:190 +#: lxc/remote.go:191 msgid "Failed to add remote" msgstr "" -#: lxc/remote.go:241 +#: lxc/remote.go:242 #, fuzzy, c-format msgid "Failed to close server cert file %q: %w" msgstr "Aceitar certificado" @@ -2638,7 +2634,7 @@ msgstr "Aceitar certificado" msgid "Failed to connect to cluster member: %w" msgstr "Nome de membro do cluster" -#: lxc/remote.go:231 +#: lxc/remote.go:232 #, c-format msgid "Failed to create %q: %w" msgstr "" @@ -2648,12 +2644,12 @@ msgstr "" msgid "Failed to create alias %s: %w" msgstr "Aceitar certificado" -#: lxc/remote.go:256 +#: lxc/remote.go:257 #, fuzzy, c-format msgid "Failed to create certificate: %w" msgstr "Aceitar certificado" -#: lxc/remote.go:263 +#: lxc/remote.go:264 #, c-format msgid "Failed to find project: %w" msgstr "" @@ -2678,7 +2674,7 @@ msgstr "Aceitar certificado" msgid "Failed to walk path for %s: %s" msgstr "" -#: lxc/remote.go:236 +#: lxc/remote.go:237 #, fuzzy, c-format msgid "Failed to write server cert file %q: %w" msgstr "Aceitar certificado" @@ -2687,7 +2683,7 @@ msgstr "Aceitar certificado" msgid "Fast mode (same as --columns=nsacPt)" msgstr "" -#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:115 +#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:116 #: lxc/operation.go:136 msgid "Filtering isn't supported yet" msgstr "" @@ -2726,7 +2722,7 @@ msgstr "Ignorar o estado do container" msgid "Force the removal of running instances" msgstr "" -#: lxc/main.go:95 +#: lxc/main.go:96 msgid "Force using the local unix socket" msgstr "" @@ -2760,10 +2756,10 @@ msgstr "" #: 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/network_peer.go:84 lxc/network_zone.go:89 lxc/network_zone.go:697 #: lxc/operation.go:108 lxc/profile.go:637 lxc/project.go:412 -#: lxc/project.go:804 lxc/remote.go:673 lxc/storage.go:588 -#: lxc/storage_bucket.go:454 lxc/storage_bucket.go:769 +#: lxc/project.go:804 lxc/remote.go:674 lxc/storage.go:588 +#: lxc/storage_bucket.go:459 lxc/storage_bucket.go:774 #: lxc/storage_volume.go:1446 lxc/warning.go:93 msgid "Format (csv|json|table|yaml|compact)" msgstr "" @@ -2800,7 +2796,7 @@ msgstr "" msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)" msgstr "" -#: lxc/remote.go:737 +#: lxc/remote.go:738 msgid "GLOBAL" msgstr "" @@ -2820,7 +2816,7 @@ msgstr "" msgid "Generate manpages for all commands" msgstr "" -#: lxc/remote.go:159 lxc/remote.go:397 +#: lxc/remote.go:160 lxc/remote.go:398 msgid "Generating a client certificate. This may take a minute..." msgstr "" @@ -2855,7 +2851,7 @@ msgstr "" msgid "Get the key as a network forward property" msgstr "Criar novas redes" -#: lxc/network_load_balancer.go:386 +#: lxc/network_load_balancer.go:391 #, fuzzy msgid "Get the key as a network load balancer property" msgstr "Criar novas redes" @@ -2869,12 +2865,12 @@ msgstr "Criar novas redes" msgid "Get the key as a network property" msgstr "" -#: lxc/network_zone.go:214 +#: lxc/network_zone.go:215 #, fuzzy msgid "Get the key as a network zone property" msgstr "Criar novas redes" -#: lxc/network_zone.go:814 +#: lxc/network_zone.go:819 #, fuzzy msgid "Get the key as a network zone record property" msgstr "Editar configurações de perfil como YAML" @@ -2887,7 +2883,7 @@ msgstr "" msgid "Get the key as a project property" msgstr "" -#: lxc/storage_bucket.go:380 +#: lxc/storage_bucket.go:385 #, fuzzy msgid "Get the key as a storage bucket property" msgstr "Editar configurações de perfil como YAML" @@ -2934,7 +2930,7 @@ msgstr "" msgid "Get values for network forward configuration keys" msgstr "Editar configurações de perfil como YAML" -#: lxc/network_load_balancer.go:382 lxc/network_load_balancer.go:383 +#: lxc/network_load_balancer.go:387 lxc/network_load_balancer.go:388 #, fuzzy msgid "Get values for network load balancer configuration keys" msgstr "Editar configurações de perfil como YAML" @@ -2944,12 +2940,12 @@ msgstr "Editar configurações de perfil como YAML" msgid "Get values for network peer configuration keys" msgstr "Editar configurações de perfil como YAML" -#: lxc/network_zone.go:210 lxc/network_zone.go:211 +#: lxc/network_zone.go:211 lxc/network_zone.go:212 #, fuzzy msgid "Get values for network zone configuration keys" msgstr "Editar configurações de perfil como YAML" -#: lxc/network_zone.go:810 lxc/network_zone.go:811 +#: lxc/network_zone.go:815 lxc/network_zone.go:816 #, fuzzy msgid "Get values for network zone record configuration keys" msgstr "Editar configurações de perfil como YAML" @@ -2963,7 +2959,7 @@ msgstr "" msgid "Get values for project configuration keys" msgstr "Editar configurações de perfil como YAML" -#: lxc/storage_bucket.go:376 lxc/storage_bucket.go:377 +#: lxc/storage_bucket.go:381 lxc/storage_bucket.go:382 #, fuzzy msgid "Get values for storage bucket configuration keys" msgstr "Editar configurações de perfil como YAML" @@ -3104,7 +3100,7 @@ msgstr "" msgid "If the snapshot name already exists, delete and create a new one" msgstr "" -#: lxc/main.go:398 +#: lxc/main.go:400 msgid "" "If this is your first time running LXD on this machine, you should also run: " "lxd init" @@ -3263,7 +3259,7 @@ msgstr "" msgid "Instance type" msgstr "" -#: lxc/remote.go:349 +#: lxc/remote.go:350 #, c-format msgid "Invalid URL scheme \"%s\" in \"%s\"" msgstr "" @@ -3336,7 +3332,7 @@ msgstr "" msgid "Invalid new snapshot name, parent volume must be the same as source" msgstr "" -#: lxc/main.go:498 +#: lxc/main.go:502 msgid "Invalid number of arguments" msgstr "" @@ -3345,7 +3341,7 @@ msgstr "" msgid "Invalid path %s" msgstr "" -#: lxc/remote.go:338 +#: lxc/remote.go:339 #, c-format msgid "Invalid protocol: %s" msgstr "" @@ -3394,7 +3390,7 @@ msgstr "" #: lxc/list.go:597 lxc/network.go:1059 lxc/network_forward.go:155 #: lxc/network_load_balancer.go:157 lxc/operation.go:177 -#: lxc/storage_bucket.go:511 lxc/storage_volume.go:1569 lxc/warning.go:220 +#: lxc/storage_bucket.go:516 lxc/storage_volume.go:1569 lxc/warning.go:220 msgid "LOCATION" msgstr "" @@ -3402,7 +3398,7 @@ msgstr "" msgid "LXD - Command line client" msgstr "" -#: lxc/console.go:382 +#: lxc/console.go:387 msgid "LXD automatically uses either spicy or remote-viewer when present." msgstr "" @@ -3497,16 +3493,16 @@ msgstr "Criar novas redes" msgid "List available network peers" msgstr "" -#: lxc/network_zone.go:85 +#: lxc/network_zone.go:86 msgid "List available network zone" msgstr "" -#: lxc/network_zone.go:688 lxc/network_zone.go:689 +#: lxc/network_zone.go:693 lxc/network_zone.go:694 #, fuzzy msgid "List available network zone records" msgstr "Criar novas redes" -#: lxc/network_zone.go:84 +#: lxc/network_zone.go:85 msgid "List available network zoneS" msgstr "" @@ -3698,11 +3694,11 @@ msgstr "" msgid "List projects" msgstr "" -#: lxc/storage_bucket.go:766 lxc/storage_bucket.go:768 +#: lxc/storage_bucket.go:771 lxc/storage_bucket.go:773 msgid "List storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:451 lxc/storage_bucket.go:453 +#: lxc/storage_bucket.go:456 lxc/storage_bucket.go:458 msgid "List storage buckets" msgstr "" @@ -3730,7 +3726,7 @@ msgid "" " U - Current disk usage" msgstr "" -#: lxc/remote.go:668 lxc/remote.go:669 +#: lxc/remote.go:669 lxc/remote.go:670 msgid "List the available remotes" msgstr "" @@ -3971,12 +3967,12 @@ msgstr "Criar novas redes" msgid "Manage network forwards" msgstr "Criar novas redes" -#: lxc/network_load_balancer.go:782 lxc/network_load_balancer.go:783 +#: lxc/network_load_balancer.go:787 lxc/network_load_balancer.go:788 #, fuzzy msgid "Manage network load balancer backends" msgstr "Criar novas redes" -#: lxc/network_load_balancer.go:947 lxc/network_load_balancer.go:948 +#: lxc/network_load_balancer.go:952 lxc/network_load_balancer.go:953 #, fuzzy msgid "Manage network load balancer ports" msgstr "Criar novas redes" @@ -3991,17 +3987,17 @@ msgstr "Criar novas redes" msgid "Manage network peerings" msgstr "Criar novas redes" -#: lxc/network_zone.go:1224 lxc/network_zone.go:1225 +#: lxc/network_zone.go:1229 lxc/network_zone.go:1230 #, fuzzy msgid "Manage network zone record entries" msgstr "Criar novas redes" -#: lxc/network_zone.go:631 lxc/network_zone.go:632 +#: lxc/network_zone.go:636 lxc/network_zone.go:637 #, fuzzy msgid "Manage network zone records" msgstr "Criar novas redes" -#: lxc/network_zone.go:27 lxc/network_zone.go:28 +#: lxc/network_zone.go:28 lxc/network_zone.go:29 #, fuzzy msgid "Manage network zones" msgstr "Criar novas redes" @@ -4019,12 +4015,12 @@ msgstr "" msgid "Manage projects" msgstr "" -#: lxc/storage_bucket.go:726 +#: lxc/storage_bucket.go:731 #, fuzzy msgid "Manage storage bucket keys" msgstr "Criar novas redes" -#: lxc/storage_bucket.go:727 +#: lxc/storage_bucket.go:732 msgid "Manage storage bucket keys." msgstr "" @@ -4054,7 +4050,7 @@ msgid "" "\"custom\" (user created) volumes." msgstr "" -#: lxc/remote.go:33 lxc/remote.go:34 +#: lxc/remote.go:34 lxc/remote.go:35 msgid "Manage the list of remote servers" msgstr "" @@ -4138,12 +4134,12 @@ msgid "" "Minimum level for log messages (only available when using pretty format)" msgstr "" -#: lxc/storage_bucket.go:111 lxc/storage_bucket.go:211 -#: lxc/storage_bucket.go:287 lxc/storage_bucket.go:406 -#: lxc/storage_bucket.go:563 lxc/storage_bucket.go:655 -#: lxc/storage_bucket.go:797 lxc/storage_bucket.go:878 -#: lxc/storage_bucket.go:953 lxc/storage_bucket.go:1032 -#: lxc/storage_bucket.go:1155 +#: lxc/storage_bucket.go:116 lxc/storage_bucket.go:216 +#: lxc/storage_bucket.go:292 lxc/storage_bucket.go:411 +#: lxc/storage_bucket.go:568 lxc/storage_bucket.go:660 +#: lxc/storage_bucket.go:802 lxc/storage_bucket.go:883 +#: lxc/storage_bucket.go:958 lxc/storage_bucket.go:1037 +#: lxc/storage_bucket.go:1160 #, fuzzy msgid "Missing bucket name" msgstr "Nome de membro do cluster" @@ -4195,8 +4191,8 @@ msgstr "Nome de membro do cluster" msgid "Missing instance name" msgstr "" -#: lxc/storage_bucket.go:882 lxc/storage_bucket.go:957 -#: lxc/storage_bucket.go:1036 lxc/storage_bucket.go:1159 +#: lxc/storage_bucket.go:887 lxc/storage_bucket.go:962 +#: lxc/storage_bucket.go:1041 lxc/storage_bucket.go:1164 #, fuzzy msgid "Missing key name" msgstr "Nome de membro do cluster" @@ -4205,10 +4201,10 @@ msgstr "Nome de membro do cluster" #: lxc/network_forward.go:481 lxc/network_forward.go:627 #: lxc/network_forward.go:746 lxc/network_forward.go:823 #: lxc/network_forward.go:889 lxc/network_load_balancer.go:201 -#: lxc/network_load_balancer.go:411 lxc/network_load_balancer.go:484 -#: lxc/network_load_balancer.go:630 lxc/network_load_balancer.go:750 -#: lxc/network_load_balancer.go:826 lxc/network_load_balancer.go:890 -#: lxc/network_load_balancer.go:991 lxc/network_load_balancer.go:1053 +#: lxc/network_load_balancer.go:416 lxc/network_load_balancer.go:489 +#: lxc/network_load_balancer.go:635 lxc/network_load_balancer.go:755 +#: lxc/network_load_balancer.go:831 lxc/network_load_balancer.go:895 +#: lxc/network_load_balancer.go:996 lxc/network_load_balancer.go:1058 #, fuzzy msgid "Missing listen address" msgstr "Nome de membro do cluster" @@ -4235,27 +4231,27 @@ msgstr "Nome de membro do cluster" #: lxc/network_forward.go:477 lxc/network_forward.go:623 #: lxc/network_forward.go:742 lxc/network_forward.go:819 #: lxc/network_forward.go:885 lxc/network_load_balancer.go:123 -#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:261 -#: lxc/network_load_balancer.go:407 lxc/network_load_balancer.go:480 -#: lxc/network_load_balancer.go:626 lxc/network_load_balancer.go:746 -#: lxc/network_load_balancer.go:822 lxc/network_load_balancer.go:886 -#: lxc/network_load_balancer.go:987 lxc/network_load_balancer.go:1049 +#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:266 +#: lxc/network_load_balancer.go:412 lxc/network_load_balancer.go:485 +#: lxc/network_load_balancer.go:631 lxc/network_load_balancer.go:751 +#: lxc/network_load_balancer.go:827 lxc/network_load_balancer.go:891 +#: lxc/network_load_balancer.go:992 lxc/network_load_balancer.go:1054 #: lxc/network_peer.go:110 lxc/network_peer.go:180 lxc/network_peer.go:237 #: lxc/network_peer.go:355 lxc/network_peer.go:426 lxc/network_peer.go:556 #: lxc/network_peer.go:665 msgid "Missing network name" msgstr "" -#: lxc/network_zone.go:178 lxc/network_zone.go:234 lxc/network_zone.go:294 -#: lxc/network_zone.go:382 lxc/network_zone.go:503 lxc/network_zone.go:606 -#: lxc/network_zone.go:712 lxc/network_zone.go:780 lxc/network_zone.go:892 -#: lxc/network_zone.go:976 lxc/network_zone.go:1197 lxc/network_zone.go:1262 -#: lxc/network_zone.go:1307 +#: lxc/network_zone.go:179 lxc/network_zone.go:235 lxc/network_zone.go:299 +#: lxc/network_zone.go:387 lxc/network_zone.go:508 lxc/network_zone.go:611 +#: lxc/network_zone.go:717 lxc/network_zone.go:785 lxc/network_zone.go:897 +#: lxc/network_zone.go:981 lxc/network_zone.go:1202 lxc/network_zone.go:1267 +#: lxc/network_zone.go:1312 #, fuzzy msgid "Missing network zone name" msgstr "Nome de membro do cluster" -#: lxc/network_zone.go:833 lxc/network_zone.go:1095 +#: lxc/network_zone.go:838 lxc/network_zone.go:1100 #, fuzzy msgid "Missing network zone record name" msgstr "Nome de membro do cluster" @@ -4267,13 +4263,13 @@ msgid "Missing peer name" msgstr "Nome de membro do cluster" #: lxc/storage.go:194 lxc/storage.go:264 lxc/storage.go:370 lxc/storage.go:440 -#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:107 -#: lxc/storage_bucket.go:207 lxc/storage_bucket.go:283 -#: lxc/storage_bucket.go:402 lxc/storage_bucket.go:477 -#: lxc/storage_bucket.go:559 lxc/storage_bucket.go:651 -#: lxc/storage_bucket.go:793 lxc/storage_bucket.go:874 -#: lxc/storage_bucket.go:949 lxc/storage_bucket.go:1028 -#: lxc/storage_bucket.go:1151 lxc/storage_volume.go:189 +#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:112 +#: lxc/storage_bucket.go:212 lxc/storage_bucket.go:288 +#: lxc/storage_bucket.go:407 lxc/storage_bucket.go:482 +#: lxc/storage_bucket.go:564 lxc/storage_bucket.go:656 +#: lxc/storage_bucket.go:798 lxc/storage_bucket.go:879 +#: lxc/storage_bucket.go:954 lxc/storage_bucket.go:1033 +#: lxc/storage_bucket.go:1156 lxc/storage_volume.go:189 #: lxc/storage_volume.go:287 lxc/storage_volume.go:583 #: lxc/storage_volume.go:660 lxc/storage_volume.go:735 #: lxc/storage_volume.go:817 lxc/storage_volume.go:919 @@ -4396,7 +4392,7 @@ msgstr "" msgid "Moving the storage volume: %s" msgstr "" -#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1097 +#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1102 msgid "Multiple ports match. Use --force to remove them all" msgstr "" @@ -4415,10 +4411,10 @@ 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:677 lxc/project.go:498 -#: lxc/remote.go:731 lxc/storage.go:638 lxc/storage_bucket.go:506 -#: lxc/storage_bucket.go:826 lxc/storage_volume.go:1561 +#: lxc/network_acl.go:147 lxc/network_peer.go:139 lxc/network_zone.go:139 +#: lxc/network_zone.go:746 lxc/profile.go:677 lxc/project.go:498 +#: lxc/remote.go:732 lxc/storage.go:638 lxc/storage_bucket.go:511 +#: lxc/storage_bucket.go:831 lxc/storage_volume.go:1561 msgid "NAME" msgstr "" @@ -4444,7 +4440,7 @@ msgstr "" #: lxc/network.go:957 lxc/operation.go:154 lxc/project.go:456 #: lxc/project.go:461 lxc/project.go:466 lxc/project.go:471 lxc/project.go:476 -#: lxc/project.go:481 lxc/remote.go:691 lxc/remote.go:696 lxc/remote.go:701 +#: lxc/project.go:481 lxc/remote.go:692 lxc/remote.go:697 lxc/remote.go:702 msgid "NO" msgstr "" @@ -4471,7 +4467,7 @@ msgstr "" msgid "Name" msgstr "" -#: lxc/remote.go:141 +#: lxc/remote.go:142 msgid "Name of the project to use for this remote:" msgstr "" @@ -4520,12 +4516,12 @@ msgstr "" msgid "Network ACL %s renamed to %s" msgstr "" -#: lxc/network_zone.go:336 +#: lxc/network_zone.go:341 #, c-format msgid "Network Zone %s created" msgstr "" -#: lxc/network_zone.go:616 +#: lxc/network_zone.go:621 #, c-format msgid "Network Zone %s deleted" msgstr "" @@ -4540,12 +4536,12 @@ msgstr "" msgid "Network forward %s deleted" msgstr "" -#: lxc/network_load_balancer.go:365 +#: lxc/network_load_balancer.go:370 #, c-format msgid "Network load balancer %s created" msgstr "" -#: lxc/network_load_balancer.go:767 +#: lxc/network_load_balancer.go:772 #, c-format msgid "Network load balancer %s deleted" msgstr "" @@ -4583,12 +4579,12 @@ msgstr "" msgid "Network usage:" msgstr "" -#: lxc/network_zone.go:934 +#: lxc/network_zone.go:939 #, c-format msgid "Network zone record %s created" msgstr "" -#: lxc/network_zone.go:1207 +#: lxc/network_zone.go:1212 #, c-format msgid "Network zone record %s deleted" msgstr "" @@ -4623,11 +4619,11 @@ msgstr "" msgid "No device found for this storage volume" msgstr "" -#: lxc/network_load_balancer.go:921 +#: lxc/network_load_balancer.go:926 msgid "No matching backend found" msgstr "" -#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1108 +#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1113 msgid "No matching port(s) found" msgstr "" @@ -4673,7 +4669,7 @@ msgstr "" msgid "Only \"custom\" volumes can be snapshotted" msgstr "" -#: lxc/remote.go:332 +#: lxc/remote.go:333 msgid "Only https URLs are supported for simplestreams" msgstr "" @@ -4698,7 +4694,7 @@ msgstr "" msgid "Optimized Storage" msgstr "" -#: lxc/main.go:96 +#: lxc/main.go:97 msgid "Override the source project" msgstr "" @@ -4744,11 +4740,11 @@ msgstr "" msgid "PROJECT" msgstr "" -#: lxc/remote.go:733 +#: lxc/remote.go:734 msgid "PROTOCOL" msgstr "" -#: lxc/image.go:1073 lxc/remote.go:735 +#: lxc/image.go:1073 lxc/remote.go:736 msgid "PUBLIC" msgstr "" @@ -4764,7 +4760,7 @@ msgstr "" msgid "Partitions:" msgstr "" -#: lxc/main.go:361 +#: lxc/main.go:363 #, c-format msgid "Password for %s: " msgstr "" @@ -4777,7 +4773,7 @@ msgstr "" msgid "Perform an incremental copy" msgstr "" -#: lxc/remote.go:182 +#: lxc/remote.go:183 msgid "Please provide an alternate server address (empty to abort):" msgstr "" @@ -4790,7 +4786,7 @@ msgstr "" msgid "Please provide cluster member name: " msgstr "Nome de membro do cluster" -#: lxc/remote.go:462 +#: lxc/remote.go:463 msgid "Please type 'y', 'n' or the fingerprint:" msgstr "" @@ -4812,10 +4808,10 @@ msgstr "" #: lxc/config.go:1278 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/network_load_balancer.go:695 lxc/network_peer.go:611 +#: lxc/network_zone.go:557 lxc/network_zone.go:1149 lxc/profile.go:539 +#: lxc/project.go:316 lxc/storage.go:311 lxc/storage_bucket.go:349 +#: lxc/storage_bucket.go:1098 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 "" @@ -4824,7 +4820,7 @@ msgstr "" msgid "Pretty rendering (short for --format=pretty)" msgstr "" -#: lxc/main.go:94 +#: lxc/main.go:95 msgid "Print help" msgstr "" @@ -4832,7 +4828,7 @@ msgstr "" msgid "Print the raw response" msgstr "" -#: lxc/main.go:93 +#: lxc/main.go:94 msgid "Print version number" msgstr "" @@ -4926,7 +4922,7 @@ msgstr "" msgid "Project %s renamed to %s" msgstr "" -#: lxc/remote.go:106 +#: lxc/remote.go:107 msgid "Project to use for the remote" msgstr "" @@ -5024,7 +5020,7 @@ msgid "" "pool \"default\"." msgstr "" -#: lxc/remote.go:105 +#: lxc/remote.go:106 msgid "Public image server" msgstr "" @@ -5073,7 +5069,7 @@ msgstr "" msgid "RESOURCE" msgstr "" -#: lxc/storage_bucket.go:828 +#: lxc/storage_bucket.go:833 msgid "ROLE" msgstr "" @@ -5118,45 +5114,45 @@ msgstr "Editar arquivos no container" msgid "Refreshing the image: %s" msgstr "" -#: lxc/remote.go:785 +#: lxc/remote.go:786 #, c-format msgid "Remote %s already exists" msgstr "" -#: lxc/project.go:769 lxc/remote.go:776 lxc/remote.go:849 lxc/remote.go:905 -#: lxc/remote.go:945 +#: lxc/project.go:769 lxc/remote.go:777 lxc/remote.go:850 lxc/remote.go:906 +#: lxc/remote.go:946 #, c-format msgid "Remote %s doesn't exist" msgstr "" -#: lxc/remote.go:301 +#: lxc/remote.go:302 #, c-format msgid "Remote %s exists as <%s>" msgstr "" -#: lxc/remote.go:857 +#: lxc/remote.go:858 #, c-format msgid "Remote %s is global and cannot be removed" msgstr "" -#: lxc/remote.go:780 lxc/remote.go:853 lxc/remote.go:949 +#: lxc/remote.go:781 lxc/remote.go:854 lxc/remote.go:950 #, c-format msgid "Remote %s is static and cannot be modified" msgstr "" -#: lxc/remote.go:290 +#: lxc/remote.go:291 msgid "Remote address must not be empty" msgstr "" -#: lxc/remote.go:101 +#: lxc/remote.go:102 msgid "Remote admin password" msgstr "" -#: lxc/remote.go:295 +#: lxc/remote.go:296 msgid "Remote names may not contain colons" msgstr "" -#: lxc/remote.go:102 +#: lxc/remote.go:103 #, fuzzy msgid "Remote trust token" msgstr "Adicionar novos clientes confiáveis" @@ -5185,7 +5181,7 @@ msgstr "Adicionar perfis aos containers" msgid "Remove a member from the cluster" msgstr "" -#: lxc/network_zone.go:1285 +#: lxc/network_zone.go:1290 #, fuzzy msgid "Remove a network zone record entry" msgstr "Editar configurações de perfil como YAML" @@ -5194,7 +5190,7 @@ msgstr "Editar configurações de perfil como YAML" msgid "Remove aliases" msgstr "" -#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1025 +#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1030 msgid "Remove all ports that match" msgstr "" @@ -5202,17 +5198,17 @@ msgstr "" msgid "Remove all rules that match" msgstr "" -#: lxc/network_load_balancer.go:862 +#: lxc/network_load_balancer.go:867 #, fuzzy msgid "Remove backend from a load balancer" msgstr "Nome de membro do cluster" -#: lxc/network_load_balancer.go:861 +#: lxc/network_load_balancer.go:866 #, fuzzy msgid "Remove backends from a load balancer" msgstr "Nome de membro do cluster" -#: lxc/network_zone.go:1286 +#: lxc/network_zone.go:1291 #, fuzzy msgid "Remove entries from a network zone record" msgstr "Adicionar perfis aos containers" @@ -5240,7 +5236,7 @@ msgstr "Adicionar perfis aos containers" msgid "Remove ports from a forward" msgstr "Adicionar perfis aos containers" -#: lxc/network_load_balancer.go:1023 lxc/network_load_balancer.go:1024 +#: lxc/network_load_balancer.go:1028 lxc/network_load_balancer.go:1029 #, fuzzy msgid "Remove ports from a load balancer" msgstr "Adicionar perfis aos containers" @@ -5250,7 +5246,7 @@ msgstr "Adicionar perfis aos containers" msgid "Remove profiles from instances" msgstr "Adicionar perfis aos containers" -#: lxc/remote.go:827 lxc/remote.go:828 +#: lxc/remote.go:828 lxc/remote.go:829 msgid "Remove remotes" msgstr "" @@ -5311,7 +5307,7 @@ msgstr "" msgid "Rename projects" msgstr "" -#: lxc/remote.go:754 lxc/remote.go:755 +#: lxc/remote.go:755 lxc/remote.go:756 msgid "Rename remotes" msgstr "" @@ -5396,7 +5392,7 @@ msgid "Restrict the certificate to one or more projects" msgstr "" #: lxc/console.go:44 -msgid "Retrieve the instance's console log" +msgid "Retrieve the container's console log" msgstr "" #: lxc/init.go:347 @@ -5414,7 +5410,7 @@ msgstr "Nome de membro do cluster" msgid "Revoke cluster member join token" msgstr "Nome de membro do cluster" -#: lxc/storage_bucket.go:851 +#: lxc/storage_bucket.go:856 msgid "Role (admin or read-only)" msgstr "" @@ -5466,7 +5462,7 @@ msgstr "" msgid "STATE" msgstr "" -#: lxc/remote.go:736 +#: lxc/remote.go:737 msgid "STATIC" msgstr "" @@ -5490,11 +5486,11 @@ msgstr "" msgid "STP" msgstr "" -#: lxc/storage_bucket.go:853 +#: lxc/storage_bucket.go:858 msgid "Secret key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:909 +#: lxc/storage_bucket.go:914 #, fuzzy, c-format msgid "Secret key: %s" msgstr "Criado: %s" @@ -5503,19 +5499,19 @@ msgstr "Criado: %s" msgid "Send a raw query to LXD" msgstr "" -#: lxc/remote.go:104 +#: lxc/remote.go:105 msgid "Server authentication type (tls or oidc)" msgstr "" -#: lxc/remote.go:460 +#: lxc/remote.go:461 msgid "Server certificate NACKed by user" msgstr "" -#: lxc/remote.go:599 +#: lxc/remote.go:600 msgid "Server doesn't trust us after authentication" msgstr "" -#: lxc/remote.go:103 +#: lxc/remote.go:104 msgid "Server protocol (lxd or simplestreams)" msgstr "" @@ -5621,12 +5617,12 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_load_balancer.go:450 +#: lxc/network_load_balancer.go:455 #, fuzzy msgid "Set network load balancer keys" msgstr "Criar novas redes" -#: lxc/network_load_balancer.go:451 +#: lxc/network_load_balancer.go:456 msgid "" "Set network load balancer keys\n" "\n" @@ -5649,12 +5645,12 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:353 +#: lxc/network_zone.go:358 #, fuzzy msgid "Set network zone configuration keys" msgstr "Editar configurações de perfil como YAML" -#: lxc/network_zone.go:354 +#: lxc/network_zone.go:359 msgid "" "Set network zone configuration keys\n" "\n" @@ -5663,7 +5659,7 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:951 lxc/network_zone.go:952 +#: lxc/network_zone.go:956 lxc/network_zone.go:957 #, fuzzy msgid "Set network zone record configuration keys" msgstr "Editar configurações de perfil como YAML" @@ -5695,12 +5691,12 @@ msgid "" " lxc project set [:] " msgstr "" -#: lxc/storage_bucket.go:529 +#: lxc/storage_bucket.go:534 #, fuzzy msgid "Set storage bucket configuration keys" msgstr "Editar configurações de perfil como YAML" -#: lxc/storage_bucket.go:530 +#: lxc/storage_bucket.go:535 msgid "" "Set storage bucket configuration keys\n" "\n" @@ -5735,7 +5731,7 @@ msgid "" " lxc storage volume set [:] [/] " msgstr "" -#: lxc/remote.go:923 lxc/remote.go:924 +#: lxc/remote.go:924 lxc/remote.go:925 msgid "Set the URL for the remote" msgstr "" @@ -5764,7 +5760,7 @@ msgstr "" msgid "Set the key as a network forward property" msgstr "Criar novas redes" -#: lxc/network_load_balancer.go:458 +#: lxc/network_load_balancer.go:463 #, fuzzy msgid "Set the key as a network load balancer property" msgstr "Criar novas redes" @@ -5778,12 +5774,12 @@ msgstr "Criar novas redes" msgid "Set the key as a network property" msgstr "" -#: lxc/network_zone.go:361 +#: lxc/network_zone.go:366 #, fuzzy msgid "Set the key as a network zone property" msgstr "Criar novas redes" -#: lxc/network_zone.go:957 +#: lxc/network_zone.go:962 #, fuzzy msgid "Set the key as a network zone record property" msgstr "Editar configurações de perfil como YAML" @@ -5796,7 +5792,7 @@ msgstr "" msgid "Set the key as a project property" msgstr "" -#: lxc/storage_bucket.go:537 +#: lxc/storage_bucket.go:542 #, fuzzy msgid "Set the key as a storage bucket property" msgstr "Criar novas redes" @@ -5818,11 +5814,11 @@ msgstr "" msgid "Setup SSH SFTP listener on address:port instead of mounting" msgstr "" -#: lxc/main.go:97 +#: lxc/main.go:98 msgid "Show all debug messages" msgstr "" -#: lxc/main.go:98 +#: lxc/main.go:99 msgid "Show all information messages" msgstr "" @@ -5899,7 +5895,7 @@ msgstr "Editar configurações do container ou do servidor como YAML" msgid "Show instance or server information" msgstr "Editar configurações do container ou do servidor como YAML" -#: lxc/main.go:271 lxc/main.go:272 +#: lxc/main.go:272 lxc/main.go:273 msgid "Show less common commands" msgstr "" @@ -5936,17 +5932,17 @@ msgstr "Editar configurações do container ou do servidor como YAML" msgid "Show network peer configurations" msgstr "Editar configurações do container ou do servidor como YAML" -#: lxc/network_zone.go:155 lxc/network_zone.go:156 +#: lxc/network_zone.go:156 lxc/network_zone.go:157 #, fuzzy msgid "Show network zone configurations" msgstr "Editar configurações do container ou do servidor como YAML" -#: lxc/network_zone.go:758 +#: lxc/network_zone.go:763 #, fuzzy msgid "Show network zone record configuration" msgstr "Editar configurações do container ou do servidor como YAML" -#: lxc/network_zone.go:759 +#: lxc/network_zone.go:764 #, fuzzy msgid "Show network zone record configurations" msgstr "Editar configurações do container ou do servidor como YAML" @@ -5959,12 +5955,12 @@ msgstr "" msgid "Show project options" msgstr "" -#: lxc/storage_bucket.go:623 lxc/storage_bucket.go:624 +#: lxc/storage_bucket.go:628 lxc/storage_bucket.go:629 #, fuzzy msgid "Show storage bucket configurations" msgstr "Editar configurações do container ou do servidor como YAML" -#: lxc/storage_bucket.go:1123 lxc/storage_bucket.go:1124 +#: lxc/storage_bucket.go:1128 lxc/storage_bucket.go:1129 #, fuzzy msgid "Show storage bucket key configurations" msgstr "Editar configurações do container ou do servidor como YAML" @@ -5992,7 +5988,7 @@ msgid "" "that are granted via identity provider group mappings. \n" msgstr "" -#: lxc/remote.go:630 lxc/remote.go:631 +#: lxc/remote.go:631 lxc/remote.go:632 msgid "Show the default remote" msgstr "" @@ -6118,22 +6114,22 @@ msgstr "" msgid "Stopping the instance failed: %s" msgstr "Copiar a imagem: %s" -#: lxc/storage_bucket.go:161 +#: lxc/storage_bucket.go:166 #, fuzzy, c-format msgid "Storage bucket %s created" msgstr "Clustering ativado" -#: lxc/storage_bucket.go:228 +#: lxc/storage_bucket.go:233 #, fuzzy, c-format msgid "Storage bucket %s deleted" msgstr "Clustering ativado" -#: lxc/storage_bucket.go:907 +#: lxc/storage_bucket.go:912 #, c-format msgid "Storage bucket key %s added" msgstr "" -#: lxc/storage_bucket.go:973 +#: lxc/storage_bucket.go:978 #, c-format msgid "Storage bucket key %s removed" msgstr "" @@ -6207,7 +6203,7 @@ msgstr "" msgid "Switch the current project" msgstr "" -#: lxc/remote.go:883 lxc/remote.go:884 +#: lxc/remote.go:884 lxc/remote.go:885 msgid "Switch the default remote" msgstr "" @@ -6326,7 +6322,7 @@ msgstr "Nome de membro do cluster" msgid "The property %q does not exist on the instance snapshot %s/%s: %v" msgstr "Nome de membro do cluster" -#: lxc/network_load_balancer.go:424 +#: lxc/network_load_balancer.go:429 #, fuzzy, c-format msgid "The property %q does not exist on the load balancer %q: %v" msgstr "Nome de membro do cluster" @@ -6351,12 +6347,12 @@ msgstr "Nome de membro do cluster" msgid "The property %q does not exist on the network peer %q: %v" msgstr "Nome de membro do cluster" -#: lxc/network_zone.go:246 +#: lxc/network_zone.go:247 #, fuzzy, c-format msgid "The property %q does not exist on the network zone %q: %v" msgstr "Nome de membro do cluster" -#: lxc/network_zone.go:845 +#: lxc/network_zone.go:850 #, fuzzy, c-format msgid "The property %q does not exist on the network zone record %q: %v" msgstr "Nome de membro do cluster" @@ -6371,7 +6367,7 @@ msgstr "Nome de membro do cluster" msgid "The property %q does not exist on the project %q: %v" msgstr "Nome de membro do cluster" -#: lxc/storage_bucket.go:426 +#: lxc/storage_bucket.go:431 #, fuzzy, c-format msgid "The property %q does not exist on the storage bucket %q: %v" msgstr "Nome de membro do cluster" @@ -6427,7 +6423,7 @@ msgstr "" msgid "This LXD server is not available on the network" msgstr "A importação de diretório não está disponível nessa plataforma" -#: lxc/main.go:293 +#: lxc/main.go:294 msgid "" "This client hasn't been configured to use a remote LXD server yet.\n" "As your platform can't run native Linux instances, you must connect to a " @@ -6459,11 +6455,11 @@ msgstr "" msgid "To create a new network, use: lxc network create" msgstr "" -#: lxc/console.go:210 +#: lxc/console.go:215 msgid "To detach from the console, press: +a q" msgstr "" -#: lxc/main.go:403 +#: lxc/main.go:406 msgid "" "To start your first container, try: lxc launch ubuntu:24.04\n" "Or for a virtual machine: lxc launch ubuntu:24.04 --vm" @@ -6562,7 +6558,7 @@ msgstr "" msgid "UPLOAD DATE" msgstr "" -#: lxc/cluster.go:184 lxc/remote.go:732 +#: lxc/cluster.go:184 lxc/remote.go:733 msgid "URL" msgstr "" @@ -6571,7 +6567,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:679 lxc/project.go:506 +#: lxc/network_zone.go:141 lxc/profile.go:679 lxc/project.go:506 #: lxc/storage.go:647 lxc/storage_volume.go:1564 msgid "USED BY" msgstr "" @@ -6590,7 +6586,7 @@ msgstr "" msgid "Unable to create a temporary file: %v" msgstr "" -#: lxc/remote.go:213 lxc/remote.go:247 +#: lxc/remote.go:214 lxc/remote.go:248 #, fuzzy msgid "Unavailable remote server" msgstr "Adicionar novos servidores remoto" @@ -6611,7 +6607,7 @@ msgstr "" msgid "Unknown column shorthand char '%c' in '%s'" msgstr "" -#: lxc/console.go:159 +#: lxc/console.go:164 #, c-format msgid "Unknown console type %q" msgstr "" @@ -6680,12 +6676,12 @@ msgstr "Editar configurações de perfil como YAML" msgid "Unset network forward keys" msgstr "Criar novas redes" -#: lxc/network_load_balancer.go:548 +#: lxc/network_load_balancer.go:553 #, fuzzy msgid "Unset network load balancer configuration keys" msgstr "Editar configurações de perfil como YAML" -#: lxc/network_load_balancer.go:549 +#: lxc/network_load_balancer.go:554 #, fuzzy msgid "Unset network load balancer keys" msgstr "Criar novas redes" @@ -6700,12 +6696,12 @@ msgstr "Editar configurações de perfil como YAML" msgid "Unset network peer keys" msgstr "Criar novas redes" -#: lxc/network_zone.go:433 lxc/network_zone.go:434 +#: lxc/network_zone.go:438 lxc/network_zone.go:439 #, fuzzy msgid "Unset network zone configuration keys" msgstr "Editar configurações de perfil como YAML" -#: lxc/network_zone.go:1027 lxc/network_zone.go:1028 +#: lxc/network_zone.go:1032 lxc/network_zone.go:1033 #, fuzzy msgid "Unset network zone record configuration keys" msgstr "Editar configurações de perfil como YAML" @@ -6719,7 +6715,7 @@ msgstr "" msgid "Unset project configuration keys" msgstr "Editar configurações de perfil como YAML" -#: lxc/storage_bucket.go:692 lxc/storage_bucket.go:693 +#: lxc/storage_bucket.go:697 lxc/storage_bucket.go:698 #, fuzzy msgid "Unset storage bucket configuration keys" msgstr "Editar configurações de perfil como YAML" @@ -6745,7 +6741,7 @@ msgstr "" msgid "Unset the key as a network forward property" msgstr "Criar novas redes" -#: lxc/network_load_balancer.go:552 +#: lxc/network_load_balancer.go:557 #, fuzzy msgid "Unset the key as a network load balancer property" msgstr "Criar novas redes" @@ -6760,12 +6756,12 @@ msgstr "Criar novas redes" msgid "Unset the key as a network property" msgstr "Criar novas redes" -#: lxc/network_zone.go:437 +#: lxc/network_zone.go:442 #, fuzzy msgid "Unset the key as a network zone property" msgstr "Criar novas redes" -#: lxc/network_zone.go:1031 +#: lxc/network_zone.go:1036 #, fuzzy msgid "Unset the key as a network zone record property" msgstr "Editar configurações de perfil como YAML" @@ -6778,7 +6774,7 @@ msgstr "" msgid "Unset the key as a project property" msgstr "" -#: lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:701 #, fuzzy msgid "Unset the key as a storage bucket property" msgstr "Editar configurações de perfil como YAML" @@ -6843,7 +6839,7 @@ msgid "" "Use storage driver optimized format (can only be restored on a similar pool)" msgstr "" -#: lxc/main.go:100 +#: lxc/main.go:101 msgid "Use with help or --help to view sub-commands" msgstr "" @@ -6940,7 +6936,7 @@ msgstr "" #: lxc/network.go:959 lxc/operation.go:156 lxc/project.go:458 #: lxc/project.go:463 lxc/project.go:468 lxc/project.go:473 lxc/project.go:478 -#: lxc/project.go:483 lxc/remote.go:693 lxc/remote.go:698 lxc/remote.go:703 +#: lxc/project.go:483 lxc/remote.go:694 lxc/remote.go:699 lxc/remote.go:704 msgid "YES" msgstr "" @@ -6976,7 +6972,7 @@ msgstr "Criar perfis" #: 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/network.go:909 lxc/network_acl.go:91 lxc/network_zone.go:83 #: 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 "[:]" @@ -7048,22 +7044,22 @@ msgstr "Editar templates de arquivo do container" msgid "[:]" msgstr "" -#: lxc/network_zone.go:154 lxc/network_zone.go:463 lxc/network_zone.go:581 +#: lxc/network_zone.go:155 lxc/network_zone.go:468 lxc/network_zone.go:586 #, fuzzy msgid "[:]" msgstr "Criar perfis" -#: lxc/network_zone.go:209 lxc/network_zone.go:432 +#: lxc/network_zone.go:210 lxc/network_zone.go:437 #, fuzzy msgid "[:] " msgstr "Editar templates de arquivo do container" -#: lxc/network_zone.go:352 +#: lxc/network_zone.go:357 #, fuzzy msgid "[:] =..." msgstr "Editar templates de arquivo do container" -#: lxc/network_zone.go:269 +#: lxc/network_zone.go:270 #, fuzzy msgid "[:] [key=value...]" msgstr "Editar templates de arquivo do container" @@ -7330,17 +7326,17 @@ msgstr "" #: lxc/network_forward.go:169 lxc/network_forward.go:574 #: lxc/network_forward.go:715 lxc/network_load_balancer.go:171 -#: lxc/network_load_balancer.go:577 lxc/network_load_balancer.go:719 +#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:724 #, fuzzy msgid "[:] " msgstr "Criar perfis" -#: lxc/network_load_balancer.go:860 +#: lxc/network_load_balancer.go:865 #, fuzzy msgid "[:] " msgstr "Criar perfis" -#: lxc/network_load_balancer.go:796 +#: lxc/network_load_balancer.go:801 #, fuzzy msgid "" "[:] " @@ -7348,17 +7344,17 @@ msgid "" msgstr "Criar perfis" #: lxc/network_forward.go:377 lxc/network_forward.go:544 -#: lxc/network_load_balancer.go:381 lxc/network_load_balancer.go:547 +#: lxc/network_load_balancer.go:386 lxc/network_load_balancer.go:552 #, fuzzy msgid "[:] " msgstr "Criar perfis" -#: lxc/network_forward.go:446 lxc/network_load_balancer.go:449 +#: lxc/network_forward.go:446 lxc/network_load_balancer.go:454 #, fuzzy msgid "[:] =..." msgstr "Criar perfis" -#: lxc/network_load_balancer.go:961 +#: lxc/network_load_balancer.go:966 #, fuzzy msgid "" "[:] " @@ -7371,7 +7367,7 @@ msgid "" " []" msgstr "" -#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1022 +#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1027 msgid "[:] [] []" msgstr "" @@ -7428,7 +7424,7 @@ msgid "[:]" msgstr "" #: lxc/storage.go:167 lxc/storage.go:218 lxc/storage.go:412 lxc/storage.go:759 -#: lxc/storage_bucket.go:449 +#: lxc/storage_bucket.go:454 msgid "[:]" msgstr "" @@ -7437,20 +7433,20 @@ msgstr "" msgid "[:] []" msgstr "Criar perfis" -#: lxc/storage_bucket.go:180 lxc/storage_bucket.go:242 -#: lxc/storage_bucket.go:622 lxc/storage_bucket.go:764 +#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:247 +#: lxc/storage_bucket.go:627 lxc/storage_bucket.go:769 #, fuzzy msgid "[:] " msgstr "Criar perfis" -#: lxc/storage_bucket.go:375 lxc/storage_bucket.go:691 -#: lxc/storage_bucket.go:845 lxc/storage_bucket.go:923 -#: lxc/storage_bucket.go:987 lxc/storage_bucket.go:1122 +#: lxc/storage_bucket.go:380 lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:850 lxc/storage_bucket.go:928 +#: lxc/storage_bucket.go:992 lxc/storage_bucket.go:1127 #, fuzzy msgid "[:] " msgstr "Editar templates de arquivo do container" -#: lxc/storage_bucket.go:528 +#: lxc/storage_bucket.go:533 #, fuzzy msgid "[:] =..." msgstr "Editar templates de arquivo do container" @@ -7609,32 +7605,32 @@ msgstr "Criar perfis" msgid "[:]" msgstr "Criar perfis" -#: lxc/network_zone.go:686 +#: lxc/network_zone.go:691 #, fuzzy msgid "[:]" msgstr "Criar perfis" -#: lxc/network_zone.go:757 lxc/network_zone.go:1056 lxc/network_zone.go:1173 +#: lxc/network_zone.go:762 lxc/network_zone.go:1061 lxc/network_zone.go:1178 #, fuzzy msgid "[:] " msgstr "Editar templates de arquivo do container" -#: lxc/network_zone.go:809 lxc/network_zone.go:1026 +#: lxc/network_zone.go:814 lxc/network_zone.go:1031 #, fuzzy msgid "[:] " msgstr "Editar templates de arquivo do container" -#: lxc/network_zone.go:950 +#: lxc/network_zone.go:955 #, fuzzy msgid "[:] =..." msgstr "Editar templates de arquivo do container" -#: lxc/network_zone.go:1238 lxc/network_zone.go:1284 +#: lxc/network_zone.go:1243 lxc/network_zone.go:1289 #, fuzzy msgid "[:] " msgstr "Editar templates de arquivo do container" -#: lxc/network_zone.go:868 +#: lxc/network_zone.go:873 #, fuzzy msgid "[:] [key=value...]" msgstr "Editar templates de arquivo do container" @@ -7660,7 +7656,7 @@ msgstr "" msgid "[:][] [...]" msgstr "Criar perfis" -#: lxc/remote.go:88 +#: lxc/remote.go:89 #, fuzzy msgid "[] " msgstr "Criar perfis" @@ -7670,7 +7666,7 @@ msgstr "Criar perfis" msgid "[[:]]" msgstr "Editar templates de arquivo do container" -#: lxc/project.go:488 lxc/remote.go:722 +#: lxc/project.go:488 lxc/remote.go:723 msgid "current" msgstr "" @@ -7933,6 +7929,23 @@ msgid "" " Create a new OVN network called bar using baz as its uplink network" msgstr "" +#: lxc/network_load_balancer.go:239 +msgid "" +"lxc network load-balancer create n1 127.0.0.1\n" +"\n" +"lxc network load-balancer create n1 127.0.0.1 < config.yaml\n" +" Create network load-balancer for network n1 with configuration from " +"config.yaml" +msgstr "" + +#: lxc/network_zone.go:273 +msgid "" +"lxc network zone create z1\n" +"\n" +"lxc network zone create z1 < config.yaml\n" +" Create network zone z1 with configuration from config.yaml" +msgstr "" + #: lxc/operation.go:195 msgid "" "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n" @@ -8003,26 +8016,36 @@ msgid "" " Restore the snapshot." msgstr "" -#: lxc/storage_bucket.go:245 +#: lxc/storage_bucket.go:84 +msgid "" +"lxc storage bucket create p1 b01\n" +"\tCreate a new storage bucket name b01 in storage pool p1\n" +"\n" +"lxc storage bucket create p1 b01 < config.yaml\n" +"\tCreate a new storage bucket name b01 in storage pool p1 using the content " +"of config.yaml" +msgstr "" + +#: lxc/storage_bucket.go:250 msgid "" "lxc storage bucket edit [:] < bucket.yaml\n" " Update a storage bucket using the content of bucket.yaml." msgstr "" -#: lxc/storage_bucket.go:990 +#: lxc/storage_bucket.go:995 msgid "" "lxc storage bucket edit [:] < key.yaml\n" " Update a storage bucket key using the content of key.yaml." msgstr "" -#: lxc/storage_bucket.go:1125 +#: lxc/storage_bucket.go:1130 msgid "" "lxc storage bucket key show default data foo\n" " Will show the properties of a bucket key called \"foo\" for a bucket " "called \"data\" in the \"default\" pool." msgstr "" -#: lxc/storage_bucket.go:625 +#: lxc/storage_bucket.go:630 msgid "" "lxc storage bucket show default data\n" " Will show the properties of a bucket called \"data\" in the \"default\" " @@ -8041,7 +8064,7 @@ msgid "" "\t\tCreate a new custom volume using backup0.tar.gz as the source." msgstr "" -#: lxc/remote.go:459 +#: lxc/remote.go:460 msgid "n" msgstr "" @@ -8053,7 +8076,7 @@ msgstr "" msgid "no" msgstr "" -#: lxc/remote.go:452 +#: lxc/remote.go:453 msgid "ok (y/n/[fingerprint])?" msgstr "" @@ -8090,7 +8113,7 @@ msgstr "" msgid "used by" msgstr "" -#: lxc/remote.go:461 +#: lxc/remote.go:462 msgid "y" msgstr "" @@ -8099,6 +8122,9 @@ msgstr "" msgid "yes" msgstr "sim" +#~ msgid "Console log:" +#~ msgstr "Log de Console:" + #, fuzzy #~ msgid "The --mode flag can't be used with --storage" #~ msgstr "--refresh só pode ser usado com containers" diff --git a/po/ru.po b/po/ru.po index 48768a14aec0..d065e0d04343 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-08-20 09:31+0100\n" +"POT-Creation-Date: 2024-08-30 09:27+0100\n" "PO-Revision-Date: 2022-03-10 15:06+0000\n" "Last-Translator: Александр Киль \n" "Language-Team: Russian =20) ? 1 : 2;\n" "X-Generator: Weblate 4.12-dev\n" -#: lxc/storage_bucket.go:255 lxc/storage_bucket.go:1000 +#: lxc/storage_bucket.go:260 lxc/storage_bucket.go:1005 #, fuzzy msgid "" "### This is a YAML representation of a storage bucket.\n" @@ -422,7 +422,7 @@ msgstr "" "###\n" "### Обратите внимание, что только конфигурация может быть изменена." -#: lxc/network_load_balancer.go:588 +#: lxc/network_load_balancer.go:593 #, fuzzy msgid "" "### This is a YAML representation of the network load balancer.\n" @@ -498,7 +498,7 @@ msgstr "" "###\n" "### Обратите внимание, что имя отображается, но не может быть изменено" -#: lxc/network_zone.go:1066 +#: lxc/network_zone.go:1071 #, fuzzy msgid "" "### This is a YAML representation of the network zone record.\n" @@ -526,7 +526,7 @@ msgstr "" "### source: /home/chb/mnt/lxd_test/default.img\n" "### zfs.pool_name: default" -#: lxc/network_zone.go:473 +#: lxc/network_zone.go:478 #, fuzzy msgid "" "### This is a YAML representation of the network zone.\n" @@ -773,15 +773,15 @@ msgstr "" msgid " " msgstr "" -#: lxc/remote.go:825 lxc/remote.go:882 +#: lxc/remote.go:826 lxc/remote.go:883 msgid "" msgstr "" -#: lxc/remote.go:922 +#: lxc/remote.go:923 msgid " " msgstr "" -#: lxc/remote.go:752 +#: lxc/remote.go:753 msgid " " msgstr "" @@ -819,7 +819,7 @@ msgstr "ПСЕВДОНИМ" msgid "ARCHITECTURE" msgstr "АРХИТЕКТУРА" -#: lxc/remote.go:734 +#: lxc/remote.go:735 msgid "AUTH TYPE" msgstr "" @@ -827,15 +827,15 @@ msgstr "" msgid "AUTHENTICATION METHOD" msgstr "" -#: lxc/remote.go:100 +#: lxc/remote.go:101 msgid "Accept certificate" msgstr "Принять сертификат" -#: lxc/storage_bucket.go:852 +#: lxc/storage_bucket.go:857 msgid "Access key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:908 +#: lxc/storage_bucket.go:913 #, c-format msgid "Access key: %s" msgstr "" @@ -870,20 +870,20 @@ msgstr "" msgid "Add a group to an identity provider group" msgstr "" -#: lxc/network_zone.go:1239 +#: lxc/network_zone.go:1244 #, fuzzy msgid "Add a network zone record entry" msgstr "Копирование образа: %s" -#: lxc/network_load_balancer.go:798 +#: lxc/network_load_balancer.go:803 msgid "Add backend to a load balancer" msgstr "" -#: lxc/network_load_balancer.go:797 +#: lxc/network_load_balancer.go:802 msgid "Add backends to a load balancer" msgstr "" -#: lxc/network_zone.go:1240 +#: lxc/network_zone.go:1245 msgid "Add entries to a network zone record" msgstr "" @@ -901,11 +901,11 @@ msgstr "" msgid "Add new aliases" msgstr "Псевдонимы:" -#: lxc/remote.go:89 +#: lxc/remote.go:90 msgid "Add new remote servers" msgstr "" -#: lxc/remote.go:90 +#: lxc/remote.go:91 msgid "" "Add new remote servers\n" "\n" @@ -946,7 +946,7 @@ msgstr "" msgid "Add ports to a forward" msgstr "" -#: lxc/network_load_balancer.go:962 lxc/network_load_balancer.go:963 +#: lxc/network_load_balancer.go:967 lxc/network_load_balancer.go:968 msgid "Add ports to a load balancer" msgstr "" @@ -968,17 +968,17 @@ msgstr "" msgid "Address: %s" msgstr "" -#: lxc/storage_bucket.go:164 +#: lxc/storage_bucket.go:169 #, fuzzy, c-format msgid "Admin access key: %s" msgstr "Пароль администратора для %s: " -#: lxc/remote.go:566 +#: lxc/remote.go:567 #, fuzzy, c-format msgid "Admin password (or token) for %s:" msgstr "Пароль администратора для %s: " -#: lxc/storage_bucket.go:165 +#: lxc/storage_bucket.go:170 #, fuzzy, c-format msgid "Admin secret key: %s" msgstr "Авто-обновление: %s" @@ -1011,7 +1011,7 @@ msgstr "Псевдонимы:" msgid "All projects" msgstr "Доступные команды:" -#: lxc/remote.go:181 +#: lxc/remote.go:182 msgid "All server addresses are unavailable" msgstr "" @@ -1035,7 +1035,7 @@ msgstr "Архитектура: %v" msgid "Are you sure you want to %s cluster member %q? (yes/no) [default=no]: " msgstr "" -#: lxc/console.go:383 +#: lxc/console.go:388 msgid "As neither could be found, the raw SPICE socket can be found at:" msgstr "" @@ -1085,7 +1085,7 @@ msgid "" "as well as retrieve past log entries from it." msgstr "" -#: lxc/remote.go:548 +#: lxc/remote.go:549 #, c-format msgid "Authentication type '%s' not supported by server" msgstr "" @@ -1104,11 +1104,11 @@ msgstr "" msgid "Auto update: %s" msgstr "Авто-обновление: %s" -#: lxc/network_forward.go:240 lxc/network_load_balancer.go:242 +#: lxc/network_forward.go:240 lxc/network_load_balancer.go:247 msgid "Auto-allocate an IPv4 or IPv6 listen address. One of 'ipv4', 'ipv6'." msgstr "" -#: lxc/remote.go:136 +#: lxc/remote.go:137 #, fuzzy msgid "Available projects:" msgstr "Доступные команды:" @@ -1141,8 +1141,8 @@ msgid "Bad device override syntax, expecting ,=: %s" msgstr "" #: lxc/network.go:333 lxc/network_acl.go:382 lxc/network_forward.go:293 -#: lxc/network_load_balancer.go:296 lxc/network_peer.go:280 -#: lxc/network_zone.go:324 lxc/network_zone.go:922 lxc/storage_bucket.go:136 +#: lxc/network_load_balancer.go:301 lxc/network_peer.go:280 +#: lxc/network_zone.go:329 lxc/network_zone.go:927 lxc/storage_bucket.go:141 #, c-format msgid "Bad key/value pair: %s" msgstr "" @@ -1266,7 +1266,7 @@ msgstr "" msgid "Can't read from stdin: %w" msgstr "Невозможно прочитать из стандартного ввода: %s" -#: lxc/remote.go:861 +#: lxc/remote.go:862 msgid "Can't remove the default remote" msgstr "" @@ -1332,15 +1332,18 @@ msgstr "" msgid "Certificate add token for %s deleted" msgstr " Использование сети:" -#: lxc/remote.go:218 -#, c-format -msgid "" -"Certificate fingerprint mismatch between certificate token and server %q" +#: lxc/remote.go:452 +#, fuzzy +msgid "Certificate fingerprint" msgstr "" +"Изменение состояния одного или нескольких контейнеров %s.\n" +"\n" +"lxc %s [:] [[:]...]%s" -#: lxc/remote.go:451 +#: lxc/remote.go:219 #, c-format -msgid "Certificate fingerprint: %s" +msgid "" +"Certificate fingerprint mismatch between certificate token and server %q" msgstr "" #: lxc/network.go:893 @@ -1352,7 +1355,7 @@ msgstr "" msgid "Client %s certificate add token:" msgstr "Копирование образа: %s" -#: lxc/remote.go:603 +#: lxc/remote.go:604 #, fuzzy msgid "Client certificate now trusted by server:" msgstr "Сертификат клиента хранится на сервере: " @@ -1415,18 +1418,18 @@ msgstr "" #: lxc/network_forward.go:456 lxc/network_forward.go:579 #: lxc/network_forward.go:721 lxc/network_forward.go:798 #: lxc/network_forward.go:864 lxc/network_load_balancer.go:176 -#: lxc/network_load_balancer.go:241 lxc/network_load_balancer.go:459 -#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:725 -#: lxc/network_load_balancer.go:801 lxc/network_load_balancer.go:865 -#: lxc/network_load_balancer.go:966 lxc/network_load_balancer.go:1028 +#: lxc/network_load_balancer.go:246 lxc/network_load_balancer.go:464 +#: lxc/network_load_balancer.go:587 lxc/network_load_balancer.go:730 +#: lxc/network_load_balancer.go:806 lxc/network_load_balancer.go:870 +#: lxc/network_load_balancer.go:971 lxc/network_load_balancer.go:1033 #: lxc/storage.go:99 lxc/storage.go:347 lxc/storage.go:418 lxc/storage.go:671 -#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:85 -#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:248 -#: lxc/storage_bucket.go:379 lxc/storage_bucket.go:536 -#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:695 -#: lxc/storage_bucket.go:770 lxc/storage_bucket.go:850 -#: lxc/storage_bucket.go:928 lxc/storage_bucket.go:993 -#: lxc/storage_bucket.go:1129 lxc/storage_volume.go:358 +#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:90 +#: lxc/storage_bucket.go:190 lxc/storage_bucket.go:253 +#: lxc/storage_bucket.go:384 lxc/storage_bucket.go:541 +#: lxc/storage_bucket.go:634 lxc/storage_bucket.go:700 +#: lxc/storage_bucket.go:775 lxc/storage_bucket.go:855 +#: lxc/storage_bucket.go:933 lxc/storage_bucket.go:998 +#: lxc/storage_bucket.go:1134 lxc/storage_volume.go:358 #: lxc/storage_volume.go:560 lxc/storage_volume.go:639 #: lxc/storage_volume.go:883 lxc/storage_volume.go:1097 #: lxc/storage_volume.go:1210 lxc/storage_volume.go:1678 @@ -1454,11 +1457,11 @@ msgstr "" msgid "Columns" msgstr "Столбцы" -#: lxc/main.go:81 +#: lxc/main.go:82 msgid "Command line client for LXD" msgstr "" -#: lxc/main.go:82 +#: lxc/main.go:83 msgid "" "Command line client for LXD\n" "\n" @@ -1490,19 +1493,15 @@ msgstr "" #: lxc/config.go:347 lxc/config.go:1277 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/network_load_balancer.go:694 lxc/network_peer.go:610 +#: lxc/network_zone.go:556 lxc/network_zone.go:1148 lxc/profile.go:538 +#: lxc/project.go:315 lxc/storage.go:310 lxc/storage_bucket.go:348 +#: lxc/storage_bucket.go:1097 lxc/storage_volume.go:1016 #: lxc/storage_volume.go:1048 #, c-format msgid "Config parsing error: %s" msgstr "" -#: lxc/console.go:140 -msgid "Console log:" -msgstr "" - #: lxc/storage_volume.go:561 msgid "Content type, block or filesystem" msgstr "" @@ -1607,12 +1606,12 @@ msgstr "" msgid "Cores:" msgstr "" -#: lxc/remote.go:486 +#: lxc/remote.go:487 #, fuzzy, c-format msgid "Could not close server cert file %q: %w" msgstr "Не удалось создать каталог сертификата сервера" -#: lxc/remote.go:224 lxc/remote.go:470 +#: lxc/remote.go:225 lxc/remote.go:471 msgid "Could not create server cert dir" msgstr "Не удалось создать каталог сертификата сервера" @@ -1651,12 +1650,12 @@ msgstr "Не удалось очистить путь %s" msgid "Could not write new remote certificate for remote '%s' with error: %v" msgstr "" -#: lxc/remote.go:481 +#: lxc/remote.go:482 #, fuzzy, c-format msgid "Could not write server cert file %q: %w" msgstr "Не удалось создать каталог сертификата сервера" -#: lxc/network_zone.go:1327 +#: lxc/network_zone.go:1332 msgid "Couldn't find a matching entry" msgstr "" @@ -1714,7 +1713,7 @@ msgstr "" msgid "Create instances from images" msgstr "Невозможно добавить имя контейнера в список" -#: lxc/storage_bucket.go:846 lxc/storage_bucket.go:847 +#: lxc/storage_bucket.go:851 lxc/storage_bucket.go:852 #, fuzzy msgid "Create key for a storage bucket" msgstr "Копирование образа: %s" @@ -1753,12 +1752,12 @@ msgstr "Копирование образа: %s" msgid "Create new network peering" msgstr "Копирование образа: %s" -#: lxc/network_zone.go:869 lxc/network_zone.go:870 +#: lxc/network_zone.go:874 lxc/network_zone.go:875 #, fuzzy msgid "Create new network zone record" msgstr "Копирование образа: %s" -#: lxc/network_zone.go:270 lxc/network_zone.go:271 +#: lxc/network_zone.go:271 lxc/network_zone.go:272 #, fuzzy msgid "Create new network zones" msgstr "Копирование образа: %s" @@ -1813,9 +1812,9 @@ msgstr "" #: 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/network_zone.go:140 lxc/network_zone.go:747 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_bucket.go:512 lxc/storage_bucket.go:832 #: lxc/storage_volume.go:1562 msgid "DESCRIPTION" msgstr "" @@ -1884,7 +1883,7 @@ msgstr "Невозможно добавить имя контейнера в с msgid "Delete instances and snapshots" msgstr "Невозможно добавить имя контейнера в список" -#: lxc/storage_bucket.go:924 lxc/storage_bucket.go:925 +#: lxc/storage_bucket.go:929 lxc/storage_bucket.go:930 #, fuzzy msgid "Delete key from a storage bucket" msgstr "Копирование образа: %s" @@ -1897,7 +1896,7 @@ msgstr "" msgid "Delete network forwards" msgstr "" -#: lxc/network_load_balancer.go:721 lxc/network_load_balancer.go:722 +#: lxc/network_load_balancer.go:726 lxc/network_load_balancer.go:727 #, fuzzy msgid "Delete network load balancers" msgstr "Копирование образа: %s" @@ -1906,12 +1905,12 @@ msgstr "Копирование образа: %s" msgid "Delete network peerings" msgstr "" -#: lxc/network_zone.go:1175 lxc/network_zone.go:1176 +#: lxc/network_zone.go:1180 lxc/network_zone.go:1181 #, fuzzy msgid "Delete network zone record" msgstr "Копирование образа: %s" -#: lxc/network_zone.go:583 lxc/network_zone.go:584 +#: lxc/network_zone.go:588 lxc/network_zone.go:589 #, fuzzy msgid "Delete network zones" msgstr "Копирование образа: %s" @@ -1928,7 +1927,7 @@ msgstr "" msgid "Delete projects" msgstr "" -#: lxc/storage_bucket.go:182 lxc/storage_bucket.go:183 +#: lxc/storage_bucket.go:187 lxc/storage_bucket.go:188 #, fuzzy msgid "Delete storage buckets" msgstr "Копирование образа: %s" @@ -1986,7 +1985,7 @@ msgstr "" #: 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/info.go:32 lxc/init.go:43 lxc/launch.go:24 lxc/list.go:48 lxc/main.go:83 #: 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 @@ -2005,22 +2004,22 @@ msgstr "" #: 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_load_balancer.go:238 lxc/network_load_balancer.go:388 +#: lxc/network_load_balancer.go:456 lxc/network_load_balancer.go:554 +#: lxc/network_load_balancer.go:584 lxc/network_load_balancer.go:727 +#: lxc/network_load_balancer.go:788 lxc/network_load_balancer.go:803 +#: lxc/network_load_balancer.go:867 lxc/network_load_balancer.go:953 +#: lxc/network_load_balancer.go:968 lxc/network_load_balancer.go:1029 #: 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/network_zone.go:29 lxc/network_zone.go:86 lxc/network_zone.go:157 +#: lxc/network_zone.go:212 lxc/network_zone.go:272 lxc/network_zone.go:359 +#: lxc/network_zone.go:439 lxc/network_zone.go:470 lxc/network_zone.go:589 +#: lxc/network_zone.go:637 lxc/network_zone.go:694 lxc/network_zone.go:764 +#: lxc/network_zone.go:816 lxc/network_zone.go:875 lxc/network_zone.go:957 +#: lxc/network_zone.go:1033 lxc/network_zone.go:1063 lxc/network_zone.go:1181 +#: lxc/network_zone.go:1230 lxc/network_zone.go:1245 lxc/network_zone.go:1291 #: 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 @@ -2029,19 +2028,19 @@ msgstr "" #: 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:631 lxc/remote.go:669 lxc/remote.go:755 lxc/remote.go:828 -#: lxc/remote.go:884 lxc/remote.go:924 lxc/rename.go:21 lxc/restore.go:24 +#: lxc/query.go:34 lxc/rebuild.go:27 lxc/remote.go:35 lxc/remote.go:91 +#: lxc/remote.go:632 lxc/remote.go:670 lxc/remote.go:756 lxc/remote.go:829 +#: lxc/remote.go:885 lxc/remote.go:925 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_bucket.go:29 lxc/storage_bucket.go:83 lxc/storage_bucket.go:188 +#: lxc/storage_bucket.go:249 lxc/storage_bucket.go:382 +#: lxc/storage_bucket.go:458 lxc/storage_bucket.go:535 +#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:698 +#: lxc/storage_bucket.go:732 lxc/storage_bucket.go:773 +#: lxc/storage_bucket.go:852 lxc/storage_bucket.go:930 +#: lxc/storage_bucket.go:994 lxc/storage_bucket.go:1129 #: 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 @@ -2183,7 +2182,7 @@ msgstr "Копирование образа: %s" msgid "Don't require user confirmation for using --force" msgstr "" -#: lxc/main.go:99 +#: lxc/main.go:100 msgid "Don't show progress information" msgstr "" @@ -2196,7 +2195,7 @@ msgstr "" msgid "Driver: %v (%v)" msgstr "" -#: lxc/network_zone.go:743 +#: lxc/network_zone.go:748 msgid "ENTRIES" msgstr "" @@ -2278,7 +2277,7 @@ msgstr "" msgid "Edit network forward configurations as YAML" msgstr "" -#: lxc/network_load_balancer.go:578 lxc/network_load_balancer.go:579 +#: lxc/network_load_balancer.go:583 lxc/network_load_balancer.go:584 #, fuzzy msgid "Edit network load balancer configurations as YAML" msgstr "Копирование образа: %s" @@ -2288,12 +2287,12 @@ msgstr "Копирование образа: %s" msgid "Edit network peer configurations as YAML" msgstr "Копирование образа: %s" -#: lxc/network_zone.go:464 lxc/network_zone.go:465 +#: lxc/network_zone.go:469 lxc/network_zone.go:470 #, fuzzy msgid "Edit network zone configurations as YAML" msgstr "Копирование образа: %s" -#: lxc/network_zone.go:1057 lxc/network_zone.go:1058 +#: lxc/network_zone.go:1062 lxc/network_zone.go:1063 #, fuzzy msgid "Edit network zone record configurations as YAML" msgstr "Копирование образа: %s" @@ -2306,12 +2305,12 @@ msgstr "" msgid "Edit project configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:243 lxc/storage_bucket.go:244 +#: lxc/storage_bucket.go:248 lxc/storage_bucket.go:249 #, fuzzy msgid "Edit storage bucket configurations as YAML" msgstr "Копирование образа: %s" -#: lxc/storage_bucket.go:988 lxc/storage_bucket.go:989 +#: lxc/storage_bucket.go:993 lxc/storage_bucket.go:994 msgid "Edit storage bucket key as YAML" msgstr "" @@ -2352,7 +2351,7 @@ msgid "" " for the address if not yet set." msgstr "" -#: lxc/network_zone.go:1242 +#: lxc/network_zone.go:1247 msgid "Entry TTL" msgstr "" @@ -2381,9 +2380,9 @@ msgstr "" #: lxc/cluster.go:414 lxc/config.go:624 lxc/config.go:656 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/network_load_balancer.go:527 lxc/network_peer.go:463 +#: lxc/network_zone.go:414 lxc/network_zone.go:1008 lxc/profile.go:876 +#: lxc/project.go:634 lxc/storage.go:727 lxc/storage_bucket.go:602 #: lxc/storage_volume.go:1947 lxc/storage_volume.go:1985 #, fuzzy, c-format msgid "Error setting properties: %v" @@ -2395,10 +2394,10 @@ msgid "Error unsetting properties: %v" msgstr "Копирование образа: %s" #: 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/network_forward.go:513 lxc/network_load_balancer.go:521 +#: lxc/network_peer.go:457 lxc/network_zone.go:408 lxc/network_zone.go:1002 #: lxc/profile.go:870 lxc/project.go:628 lxc/storage.go:721 -#: lxc/storage_bucket.go:591 lxc/storage_volume.go:1941 +#: lxc/storage_bucket.go:596 lxc/storage_volume.go:1941 #: lxc/storage_volume.go:1979 #, c-format msgid "Error unsetting property: %v" @@ -2593,7 +2592,7 @@ msgstr "Копирование образа: %s" msgid "Failed parsing SSH host key: %w" msgstr "Принять сертификат" -#: lxc/console.go:361 +#: lxc/console.go:366 #, fuzzy, c-format msgid "Failed starting command: %w" msgstr "Принять сертификат" @@ -2608,11 +2607,11 @@ msgstr "Принять сертификат" msgid "Failed to accept incoming connection: %w" msgstr "Принять сертификат" -#: lxc/remote.go:190 +#: lxc/remote.go:191 msgid "Failed to add remote" msgstr "" -#: lxc/remote.go:241 +#: lxc/remote.go:242 #, fuzzy, c-format msgid "Failed to close server cert file %q: %w" msgstr "Принять сертификат" @@ -2622,7 +2621,7 @@ msgstr "Принять сертификат" msgid "Failed to connect to cluster member: %w" msgstr "Копирование образа: %s" -#: lxc/remote.go:231 +#: lxc/remote.go:232 #, c-format msgid "Failed to create %q: %w" msgstr "" @@ -2632,12 +2631,12 @@ msgstr "" msgid "Failed to create alias %s: %w" msgstr "Принять сертификат" -#: lxc/remote.go:256 +#: lxc/remote.go:257 #, fuzzy, c-format msgid "Failed to create certificate: %w" msgstr "Принять сертификат" -#: lxc/remote.go:263 +#: lxc/remote.go:264 #, c-format msgid "Failed to find project: %w" msgstr "" @@ -2662,7 +2661,7 @@ msgstr "Принять сертификат" msgid "Failed to walk path for %s: %s" msgstr "" -#: lxc/remote.go:236 +#: lxc/remote.go:237 #, fuzzy, c-format msgid "Failed to write server cert file %q: %w" msgstr "Принять сертификат" @@ -2671,7 +2670,7 @@ msgstr "Принять сертификат" msgid "Fast mode (same as --columns=nsacPt)" msgstr "" -#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:115 +#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:116 #: lxc/operation.go:136 msgid "Filtering isn't supported yet" msgstr "" @@ -2710,7 +2709,7 @@ msgstr "Невозможно добавить имя контейнера в с msgid "Force the removal of running instances" msgstr "" -#: lxc/main.go:95 +#: lxc/main.go:96 msgid "Force using the local unix socket" msgstr "" @@ -2744,10 +2743,10 @@ msgstr "" #: 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/network_peer.go:84 lxc/network_zone.go:89 lxc/network_zone.go:697 #: lxc/operation.go:108 lxc/profile.go:637 lxc/project.go:412 -#: lxc/project.go:804 lxc/remote.go:673 lxc/storage.go:588 -#: lxc/storage_bucket.go:454 lxc/storage_bucket.go:769 +#: lxc/project.go:804 lxc/remote.go:674 lxc/storage.go:588 +#: lxc/storage_bucket.go:459 lxc/storage_bucket.go:774 #: lxc/storage_volume.go:1446 lxc/warning.go:93 msgid "Format (csv|json|table|yaml|compact)" msgstr "" @@ -2784,7 +2783,7 @@ msgstr "" msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)" msgstr "" -#: lxc/remote.go:737 +#: lxc/remote.go:738 msgid "GLOBAL" msgstr "" @@ -2804,7 +2803,7 @@ msgstr "" msgid "Generate manpages for all commands" msgstr "" -#: lxc/remote.go:159 lxc/remote.go:397 +#: lxc/remote.go:160 lxc/remote.go:398 msgid "Generating a client certificate. This may take a minute..." msgstr "" @@ -2838,7 +2837,7 @@ msgstr "" msgid "Get the key as a network forward property" msgstr "Копирование образа: %s" -#: lxc/network_load_balancer.go:386 +#: lxc/network_load_balancer.go:391 #, fuzzy msgid "Get the key as a network load balancer property" msgstr "Копирование образа: %s" @@ -2852,12 +2851,12 @@ msgstr "Копирование образа: %s" msgid "Get the key as a network property" msgstr "" -#: lxc/network_zone.go:214 +#: lxc/network_zone.go:215 #, fuzzy msgid "Get the key as a network zone property" msgstr "Копирование образа: %s" -#: lxc/network_zone.go:814 +#: lxc/network_zone.go:819 #, fuzzy msgid "Get the key as a network zone record property" msgstr "Копирование образа: %s" @@ -2870,7 +2869,7 @@ msgstr "" msgid "Get the key as a project property" msgstr "" -#: lxc/storage_bucket.go:380 +#: lxc/storage_bucket.go:385 #, fuzzy msgid "Get the key as a storage bucket property" msgstr "Копирование образа: %s" @@ -2915,7 +2914,7 @@ msgstr "" msgid "Get values for network forward configuration keys" msgstr "Копирование образа: %s" -#: lxc/network_load_balancer.go:382 lxc/network_load_balancer.go:383 +#: lxc/network_load_balancer.go:387 lxc/network_load_balancer.go:388 #, fuzzy msgid "Get values for network load balancer configuration keys" msgstr "Копирование образа: %s" @@ -2925,12 +2924,12 @@ msgstr "Копирование образа: %s" msgid "Get values for network peer configuration keys" msgstr "Копирование образа: %s" -#: lxc/network_zone.go:210 lxc/network_zone.go:211 +#: lxc/network_zone.go:211 lxc/network_zone.go:212 #, fuzzy msgid "Get values for network zone configuration keys" msgstr "Копирование образа: %s" -#: lxc/network_zone.go:810 lxc/network_zone.go:811 +#: lxc/network_zone.go:815 lxc/network_zone.go:816 #, fuzzy msgid "Get values for network zone record configuration keys" msgstr "Копирование образа: %s" @@ -2943,7 +2942,7 @@ msgstr "" msgid "Get values for project configuration keys" msgstr "" -#: lxc/storage_bucket.go:376 lxc/storage_bucket.go:377 +#: lxc/storage_bucket.go:381 lxc/storage_bucket.go:382 #, fuzzy msgid "Get values for storage bucket configuration keys" msgstr "Копирование образа: %s" @@ -3085,7 +3084,7 @@ msgstr "" msgid "If the snapshot name already exists, delete and create a new one" msgstr "" -#: lxc/main.go:398 +#: lxc/main.go:400 msgid "" "If this is your first time running LXD on this machine, you should also run: " "lxd init" @@ -3249,7 +3248,7 @@ msgstr "Имя контейнера: %s" msgid "Instance type" msgstr "" -#: lxc/remote.go:349 +#: lxc/remote.go:350 #, c-format msgid "Invalid URL scheme \"%s\" in \"%s\"" msgstr "" @@ -3322,7 +3321,7 @@ msgstr "" msgid "Invalid new snapshot name, parent volume must be the same as source" msgstr "" -#: lxc/main.go:498 +#: lxc/main.go:502 msgid "Invalid number of arguments" msgstr "" @@ -3331,7 +3330,7 @@ msgstr "" msgid "Invalid path %s" msgstr "" -#: lxc/remote.go:338 +#: lxc/remote.go:339 #, c-format msgid "Invalid protocol: %s" msgstr "" @@ -3380,7 +3379,7 @@ msgstr "" #: lxc/list.go:597 lxc/network.go:1059 lxc/network_forward.go:155 #: lxc/network_load_balancer.go:157 lxc/operation.go:177 -#: lxc/storage_bucket.go:511 lxc/storage_volume.go:1569 lxc/warning.go:220 +#: lxc/storage_bucket.go:516 lxc/storage_volume.go:1569 lxc/warning.go:220 msgid "LOCATION" msgstr "" @@ -3388,7 +3387,7 @@ msgstr "" msgid "LXD - Command line client" msgstr "" -#: lxc/console.go:382 +#: lxc/console.go:387 msgid "LXD automatically uses either spicy or remote-viewer when present." msgstr "" @@ -3485,16 +3484,16 @@ msgstr "Копирование образа: %s" msgid "List available network peers" msgstr "" -#: lxc/network_zone.go:85 +#: lxc/network_zone.go:86 msgid "List available network zone" msgstr "" -#: lxc/network_zone.go:688 lxc/network_zone.go:689 +#: lxc/network_zone.go:693 lxc/network_zone.go:694 #, fuzzy msgid "List available network zone records" msgstr "Копирование образа: %s" -#: lxc/network_zone.go:84 +#: lxc/network_zone.go:85 msgid "List available network zoneS" msgstr "" @@ -3689,12 +3688,12 @@ msgstr "" msgid "List projects" msgstr "" -#: lxc/storage_bucket.go:766 lxc/storage_bucket.go:768 +#: lxc/storage_bucket.go:771 lxc/storage_bucket.go:773 #, fuzzy msgid "List storage bucket keys" msgstr "Копирование образа: %s" -#: lxc/storage_bucket.go:451 lxc/storage_bucket.go:453 +#: lxc/storage_bucket.go:456 lxc/storage_bucket.go:458 #, fuzzy msgid "List storage buckets" msgstr "Копирование образа: %s" @@ -3724,7 +3723,7 @@ msgid "" " U - Current disk usage" msgstr "" -#: lxc/remote.go:668 lxc/remote.go:669 +#: lxc/remote.go:669 lxc/remote.go:670 msgid "List the available remotes" msgstr "" @@ -3965,12 +3964,12 @@ msgstr "Копирование образа: %s" msgid "Manage network forwards" msgstr "Копирование образа: %s" -#: lxc/network_load_balancer.go:782 lxc/network_load_balancer.go:783 +#: lxc/network_load_balancer.go:787 lxc/network_load_balancer.go:788 #, fuzzy msgid "Manage network load balancer backends" msgstr "Копирование образа: %s" -#: lxc/network_load_balancer.go:947 lxc/network_load_balancer.go:948 +#: lxc/network_load_balancer.go:952 lxc/network_load_balancer.go:953 #, fuzzy msgid "Manage network load balancer ports" msgstr "Копирование образа: %s" @@ -3985,17 +3984,17 @@ msgstr "Копирование образа: %s" msgid "Manage network peerings" msgstr "Копирование образа: %s" -#: lxc/network_zone.go:1224 lxc/network_zone.go:1225 +#: lxc/network_zone.go:1229 lxc/network_zone.go:1230 #, fuzzy msgid "Manage network zone record entries" msgstr "Копирование образа: %s" -#: lxc/network_zone.go:631 lxc/network_zone.go:632 +#: lxc/network_zone.go:636 lxc/network_zone.go:637 #, fuzzy msgid "Manage network zone records" msgstr "Копирование образа: %s" -#: lxc/network_zone.go:27 lxc/network_zone.go:28 +#: lxc/network_zone.go:28 lxc/network_zone.go:29 #, fuzzy msgid "Manage network zones" msgstr "Копирование образа: %s" @@ -4013,12 +4012,12 @@ msgstr "" msgid "Manage projects" msgstr "" -#: lxc/storage_bucket.go:726 +#: lxc/storage_bucket.go:731 #, fuzzy msgid "Manage storage bucket keys" msgstr "Копирование образа: %s" -#: lxc/storage_bucket.go:727 +#: lxc/storage_bucket.go:732 #, fuzzy msgid "Manage storage bucket keys." msgstr "Копирование образа: %s" @@ -4051,7 +4050,7 @@ msgid "" "\"custom\" (user created) volumes." msgstr "" -#: lxc/remote.go:33 lxc/remote.go:34 +#: lxc/remote.go:34 lxc/remote.go:35 msgid "Manage the list of remote servers" msgstr "" @@ -4136,12 +4135,12 @@ msgid "" "Minimum level for log messages (only available when using pretty format)" msgstr "" -#: lxc/storage_bucket.go:111 lxc/storage_bucket.go:211 -#: lxc/storage_bucket.go:287 lxc/storage_bucket.go:406 -#: lxc/storage_bucket.go:563 lxc/storage_bucket.go:655 -#: lxc/storage_bucket.go:797 lxc/storage_bucket.go:878 -#: lxc/storage_bucket.go:953 lxc/storage_bucket.go:1032 -#: lxc/storage_bucket.go:1155 +#: lxc/storage_bucket.go:116 lxc/storage_bucket.go:216 +#: lxc/storage_bucket.go:292 lxc/storage_bucket.go:411 +#: lxc/storage_bucket.go:568 lxc/storage_bucket.go:660 +#: lxc/storage_bucket.go:802 lxc/storage_bucket.go:883 +#: lxc/storage_bucket.go:958 lxc/storage_bucket.go:1037 +#: lxc/storage_bucket.go:1160 #, fuzzy msgid "Missing bucket name" msgstr "Имя контейнера: %s" @@ -4193,8 +4192,8 @@ msgstr "Копирование образа: %s" msgid "Missing instance name" msgstr "Имя контейнера: %s" -#: lxc/storage_bucket.go:882 lxc/storage_bucket.go:957 -#: lxc/storage_bucket.go:1036 lxc/storage_bucket.go:1159 +#: lxc/storage_bucket.go:887 lxc/storage_bucket.go:962 +#: lxc/storage_bucket.go:1041 lxc/storage_bucket.go:1164 #, fuzzy msgid "Missing key name" msgstr "Имя контейнера: %s" @@ -4203,10 +4202,10 @@ msgstr "Имя контейнера: %s" #: lxc/network_forward.go:481 lxc/network_forward.go:627 #: lxc/network_forward.go:746 lxc/network_forward.go:823 #: lxc/network_forward.go:889 lxc/network_load_balancer.go:201 -#: lxc/network_load_balancer.go:411 lxc/network_load_balancer.go:484 -#: lxc/network_load_balancer.go:630 lxc/network_load_balancer.go:750 -#: lxc/network_load_balancer.go:826 lxc/network_load_balancer.go:890 -#: lxc/network_load_balancer.go:991 lxc/network_load_balancer.go:1053 +#: lxc/network_load_balancer.go:416 lxc/network_load_balancer.go:489 +#: lxc/network_load_balancer.go:635 lxc/network_load_balancer.go:755 +#: lxc/network_load_balancer.go:831 lxc/network_load_balancer.go:895 +#: lxc/network_load_balancer.go:996 lxc/network_load_balancer.go:1058 #, fuzzy msgid "Missing listen address" msgstr "Имя контейнера: %s" @@ -4233,27 +4232,27 @@ msgstr "Имя контейнера: %s" #: lxc/network_forward.go:477 lxc/network_forward.go:623 #: lxc/network_forward.go:742 lxc/network_forward.go:819 #: lxc/network_forward.go:885 lxc/network_load_balancer.go:123 -#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:261 -#: lxc/network_load_balancer.go:407 lxc/network_load_balancer.go:480 -#: lxc/network_load_balancer.go:626 lxc/network_load_balancer.go:746 -#: lxc/network_load_balancer.go:822 lxc/network_load_balancer.go:886 -#: lxc/network_load_balancer.go:987 lxc/network_load_balancer.go:1049 +#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:266 +#: lxc/network_load_balancer.go:412 lxc/network_load_balancer.go:485 +#: lxc/network_load_balancer.go:631 lxc/network_load_balancer.go:751 +#: lxc/network_load_balancer.go:827 lxc/network_load_balancer.go:891 +#: lxc/network_load_balancer.go:992 lxc/network_load_balancer.go:1054 #: lxc/network_peer.go:110 lxc/network_peer.go:180 lxc/network_peer.go:237 #: lxc/network_peer.go:355 lxc/network_peer.go:426 lxc/network_peer.go:556 #: lxc/network_peer.go:665 msgid "Missing network name" msgstr "" -#: lxc/network_zone.go:178 lxc/network_zone.go:234 lxc/network_zone.go:294 -#: lxc/network_zone.go:382 lxc/network_zone.go:503 lxc/network_zone.go:606 -#: lxc/network_zone.go:712 lxc/network_zone.go:780 lxc/network_zone.go:892 -#: lxc/network_zone.go:976 lxc/network_zone.go:1197 lxc/network_zone.go:1262 -#: lxc/network_zone.go:1307 +#: lxc/network_zone.go:179 lxc/network_zone.go:235 lxc/network_zone.go:299 +#: lxc/network_zone.go:387 lxc/network_zone.go:508 lxc/network_zone.go:611 +#: lxc/network_zone.go:717 lxc/network_zone.go:785 lxc/network_zone.go:897 +#: lxc/network_zone.go:981 lxc/network_zone.go:1202 lxc/network_zone.go:1267 +#: lxc/network_zone.go:1312 #, fuzzy msgid "Missing network zone name" msgstr "Имя контейнера: %s" -#: lxc/network_zone.go:833 lxc/network_zone.go:1095 +#: lxc/network_zone.go:838 lxc/network_zone.go:1100 #, fuzzy msgid "Missing network zone record name" msgstr "Имя контейнера: %s" @@ -4265,13 +4264,13 @@ msgid "Missing peer name" msgstr "Имя контейнера: %s" #: lxc/storage.go:194 lxc/storage.go:264 lxc/storage.go:370 lxc/storage.go:440 -#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:107 -#: lxc/storage_bucket.go:207 lxc/storage_bucket.go:283 -#: lxc/storage_bucket.go:402 lxc/storage_bucket.go:477 -#: lxc/storage_bucket.go:559 lxc/storage_bucket.go:651 -#: lxc/storage_bucket.go:793 lxc/storage_bucket.go:874 -#: lxc/storage_bucket.go:949 lxc/storage_bucket.go:1028 -#: lxc/storage_bucket.go:1151 lxc/storage_volume.go:189 +#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:112 +#: lxc/storage_bucket.go:212 lxc/storage_bucket.go:288 +#: lxc/storage_bucket.go:407 lxc/storage_bucket.go:482 +#: lxc/storage_bucket.go:564 lxc/storage_bucket.go:656 +#: lxc/storage_bucket.go:798 lxc/storage_bucket.go:879 +#: lxc/storage_bucket.go:954 lxc/storage_bucket.go:1033 +#: lxc/storage_bucket.go:1156 lxc/storage_volume.go:189 #: lxc/storage_volume.go:287 lxc/storage_volume.go:583 #: lxc/storage_volume.go:660 lxc/storage_volume.go:735 #: lxc/storage_volume.go:817 lxc/storage_volume.go:919 @@ -4397,7 +4396,7 @@ msgstr "" msgid "Moving the storage volume: %s" msgstr "Копирование образа: %s" -#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1097 +#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1102 msgid "Multiple ports match. Use --force to remove them all" msgstr "" @@ -4416,10 +4415,10 @@ 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:677 lxc/project.go:498 -#: lxc/remote.go:731 lxc/storage.go:638 lxc/storage_bucket.go:506 -#: lxc/storage_bucket.go:826 lxc/storage_volume.go:1561 +#: lxc/network_acl.go:147 lxc/network_peer.go:139 lxc/network_zone.go:139 +#: lxc/network_zone.go:746 lxc/profile.go:677 lxc/project.go:498 +#: lxc/remote.go:732 lxc/storage.go:638 lxc/storage_bucket.go:511 +#: lxc/storage_bucket.go:831 lxc/storage_volume.go:1561 msgid "NAME" msgstr "" @@ -4445,7 +4444,7 @@ msgstr "" #: lxc/network.go:957 lxc/operation.go:154 lxc/project.go:456 #: lxc/project.go:461 lxc/project.go:466 lxc/project.go:471 lxc/project.go:476 -#: lxc/project.go:481 lxc/remote.go:691 lxc/remote.go:696 lxc/remote.go:701 +#: lxc/project.go:481 lxc/remote.go:692 lxc/remote.go:697 lxc/remote.go:702 msgid "NO" msgstr "" @@ -4472,7 +4471,7 @@ msgstr "" msgid "Name" msgstr "" -#: lxc/remote.go:141 +#: lxc/remote.go:142 msgid "Name of the project to use for this remote:" msgstr "" @@ -4521,12 +4520,12 @@ msgstr "" msgid "Network ACL %s renamed to %s" msgstr "" -#: lxc/network_zone.go:336 +#: lxc/network_zone.go:341 #, fuzzy, c-format msgid "Network Zone %s created" msgstr " Использование сети:" -#: lxc/network_zone.go:616 +#: lxc/network_zone.go:621 #, fuzzy, c-format msgid "Network Zone %s deleted" msgstr " Использование сети:" @@ -4541,12 +4540,12 @@ msgstr " Использование сети:" msgid "Network forward %s deleted" msgstr " Использование сети:" -#: lxc/network_load_balancer.go:365 +#: lxc/network_load_balancer.go:370 #, fuzzy, c-format msgid "Network load balancer %s created" msgstr " Использование сети:" -#: lxc/network_load_balancer.go:767 +#: lxc/network_load_balancer.go:772 #, fuzzy, c-format msgid "Network load balancer %s deleted" msgstr " Использование сети:" @@ -4586,12 +4585,12 @@ msgstr " Использование сети:" msgid "Network usage:" msgstr " Использование сети:" -#: lxc/network_zone.go:934 +#: lxc/network_zone.go:939 #, fuzzy, c-format msgid "Network zone record %s created" msgstr " Использование сети:" -#: lxc/network_zone.go:1207 +#: lxc/network_zone.go:1212 #, fuzzy, c-format msgid "Network zone record %s deleted" msgstr " Использование сети:" @@ -4627,11 +4626,11 @@ msgstr "" msgid "No device found for this storage volume" msgstr "Копирование образа: %s" -#: lxc/network_load_balancer.go:921 +#: lxc/network_load_balancer.go:926 msgid "No matching backend found" msgstr "" -#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1108 +#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1113 msgid "No matching port(s) found" msgstr "" @@ -4678,7 +4677,7 @@ msgstr "" msgid "Only \"custom\" volumes can be snapshotted" msgstr "" -#: lxc/remote.go:332 +#: lxc/remote.go:333 msgid "Only https URLs are supported for simplestreams" msgstr "" @@ -4703,7 +4702,7 @@ msgstr "" msgid "Optimized Storage" msgstr "" -#: lxc/main.go:96 +#: lxc/main.go:97 msgid "Override the source project" msgstr "" @@ -4749,11 +4748,11 @@ msgstr "" msgid "PROJECT" msgstr "" -#: lxc/remote.go:733 +#: lxc/remote.go:734 msgid "PROTOCOL" msgstr "" -#: lxc/image.go:1073 lxc/remote.go:735 +#: lxc/image.go:1073 lxc/remote.go:736 msgid "PUBLIC" msgstr "" @@ -4769,7 +4768,7 @@ msgstr "" msgid "Partitions:" msgstr "" -#: lxc/main.go:361 +#: lxc/main.go:363 #, fuzzy, c-format msgid "Password for %s: " msgstr "Пароль администратора для %s: " @@ -4782,7 +4781,7 @@ msgstr "" msgid "Perform an incremental copy" msgstr "" -#: lxc/remote.go:182 +#: lxc/remote.go:183 msgid "Please provide an alternate server address (empty to abort):" msgstr "" @@ -4795,7 +4794,7 @@ msgstr "" msgid "Please provide cluster member name: " msgstr "Копирование образа: %s" -#: lxc/remote.go:462 +#: lxc/remote.go:463 msgid "Please type 'y', 'n' or the fingerprint:" msgstr "" @@ -4817,10 +4816,10 @@ msgstr "" #: lxc/config.go:1278 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/network_load_balancer.go:695 lxc/network_peer.go:611 +#: lxc/network_zone.go:557 lxc/network_zone.go:1149 lxc/profile.go:539 +#: lxc/project.go:316 lxc/storage.go:311 lxc/storage_bucket.go:349 +#: lxc/storage_bucket.go:1098 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 "" @@ -4829,7 +4828,7 @@ msgstr "" msgid "Pretty rendering (short for --format=pretty)" msgstr "" -#: lxc/main.go:94 +#: lxc/main.go:95 msgid "Print help" msgstr "" @@ -4837,7 +4836,7 @@ msgstr "" msgid "Print the raw response" msgstr "" -#: lxc/main.go:93 +#: lxc/main.go:94 msgid "Print version number" msgstr "" @@ -4926,7 +4925,7 @@ msgstr "" msgid "Project %s renamed to %s" msgstr "" -#: lxc/remote.go:106 +#: lxc/remote.go:107 msgid "Project to use for the remote" msgstr "" @@ -5024,7 +5023,7 @@ msgid "" "pool \"default\"." msgstr "" -#: lxc/remote.go:105 +#: lxc/remote.go:106 msgid "Public image server" msgstr "" @@ -5072,7 +5071,7 @@ msgstr "" msgid "RESOURCE" msgstr "" -#: lxc/storage_bucket.go:828 +#: lxc/storage_bucket.go:833 msgid "ROLE" msgstr "" @@ -5119,45 +5118,45 @@ msgstr "Невозможно добавить имя контейнера в с msgid "Refreshing the image: %s" msgstr "Копирование образа: %s" -#: lxc/remote.go:785 +#: lxc/remote.go:786 #, c-format msgid "Remote %s already exists" msgstr "" -#: lxc/project.go:769 lxc/remote.go:776 lxc/remote.go:849 lxc/remote.go:905 -#: lxc/remote.go:945 +#: lxc/project.go:769 lxc/remote.go:777 lxc/remote.go:850 lxc/remote.go:906 +#: lxc/remote.go:946 #, c-format msgid "Remote %s doesn't exist" msgstr "" -#: lxc/remote.go:301 +#: lxc/remote.go:302 #, c-format msgid "Remote %s exists as <%s>" msgstr "" -#: lxc/remote.go:857 +#: lxc/remote.go:858 #, c-format msgid "Remote %s is global and cannot be removed" msgstr "" -#: lxc/remote.go:780 lxc/remote.go:853 lxc/remote.go:949 +#: lxc/remote.go:781 lxc/remote.go:854 lxc/remote.go:950 #, c-format msgid "Remote %s is static and cannot be modified" msgstr "" -#: lxc/remote.go:290 +#: lxc/remote.go:291 msgid "Remote address must not be empty" msgstr "" -#: lxc/remote.go:101 +#: lxc/remote.go:102 msgid "Remote admin password" msgstr "" -#: lxc/remote.go:295 +#: lxc/remote.go:296 msgid "Remote names may not contain colons" msgstr "" -#: lxc/remote.go:102 +#: lxc/remote.go:103 msgid "Remote trust token" msgstr "" @@ -5184,7 +5183,7 @@ msgstr "" msgid "Remove a member from the cluster" msgstr "" -#: lxc/network_zone.go:1285 +#: lxc/network_zone.go:1290 #, fuzzy msgid "Remove a network zone record entry" msgstr "Копирование образа: %s" @@ -5193,7 +5192,7 @@ msgstr "Копирование образа: %s" msgid "Remove aliases" msgstr "" -#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1025 +#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1030 msgid "Remove all ports that match" msgstr "" @@ -5201,17 +5200,17 @@ msgstr "" msgid "Remove all rules that match" msgstr "" -#: lxc/network_load_balancer.go:862 +#: lxc/network_load_balancer.go:867 #, fuzzy msgid "Remove backend from a load balancer" msgstr "Копирование образа: %s" -#: lxc/network_load_balancer.go:861 +#: lxc/network_load_balancer.go:866 #, fuzzy msgid "Remove backends from a load balancer" msgstr "Копирование образа: %s" -#: lxc/network_zone.go:1286 +#: lxc/network_zone.go:1291 msgid "Remove entries from a network zone record" msgstr "" @@ -5236,7 +5235,7 @@ msgstr "" msgid "Remove ports from a forward" msgstr "" -#: lxc/network_load_balancer.go:1023 lxc/network_load_balancer.go:1024 +#: lxc/network_load_balancer.go:1028 lxc/network_load_balancer.go:1029 #, fuzzy msgid "Remove ports from a load balancer" msgstr "Копирование образа: %s" @@ -5245,7 +5244,7 @@ msgstr "Копирование образа: %s" msgid "Remove profiles from instances" msgstr "" -#: lxc/remote.go:827 lxc/remote.go:828 +#: lxc/remote.go:828 lxc/remote.go:829 msgid "Remove remotes" msgstr "" @@ -5306,7 +5305,7 @@ msgstr "" msgid "Rename projects" msgstr "" -#: lxc/remote.go:754 lxc/remote.go:755 +#: lxc/remote.go:755 lxc/remote.go:756 msgid "Rename remotes" msgstr "" @@ -5390,7 +5389,7 @@ msgid "Restrict the certificate to one or more projects" msgstr "" #: lxc/console.go:44 -msgid "Retrieve the instance's console log" +msgid "Retrieve the container's console log" msgstr "" #: lxc/init.go:347 @@ -5408,7 +5407,7 @@ msgstr "Копирование образа: %s" msgid "Revoke cluster member join token" msgstr "Копирование образа: %s" -#: lxc/storage_bucket.go:851 +#: lxc/storage_bucket.go:856 msgid "Role (admin or read-only)" msgstr "" @@ -5460,7 +5459,7 @@ msgstr "" msgid "STATE" msgstr "" -#: lxc/remote.go:736 +#: lxc/remote.go:737 msgid "STATIC" msgstr "" @@ -5484,11 +5483,11 @@ msgstr "" msgid "STP" msgstr "" -#: lxc/storage_bucket.go:853 +#: lxc/storage_bucket.go:858 msgid "Secret key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:909 +#: lxc/storage_bucket.go:914 #, fuzzy, c-format msgid "Secret key: %s" msgstr "Авто-обновление: %s" @@ -5497,19 +5496,19 @@ msgstr "Авто-обновление: %s" msgid "Send a raw query to LXD" msgstr "" -#: lxc/remote.go:104 +#: lxc/remote.go:105 msgid "Server authentication type (tls or oidc)" msgstr "" -#: lxc/remote.go:460 +#: lxc/remote.go:461 msgid "Server certificate NACKed by user" msgstr "" -#: lxc/remote.go:599 +#: lxc/remote.go:600 msgid "Server doesn't trust us after authentication" msgstr "" -#: lxc/remote.go:103 +#: lxc/remote.go:104 msgid "Server protocol (lxd or simplestreams)" msgstr "" @@ -5611,12 +5610,12 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_load_balancer.go:450 +#: lxc/network_load_balancer.go:455 #, fuzzy msgid "Set network load balancer keys" msgstr "Копирование образа: %s" -#: lxc/network_load_balancer.go:451 +#: lxc/network_load_balancer.go:456 msgid "" "Set network load balancer keys\n" "\n" @@ -5639,12 +5638,12 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:353 +#: lxc/network_zone.go:358 #, fuzzy msgid "Set network zone configuration keys" msgstr "Копирование образа: %s" -#: lxc/network_zone.go:354 +#: lxc/network_zone.go:359 msgid "" "Set network zone configuration keys\n" "\n" @@ -5653,7 +5652,7 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:951 lxc/network_zone.go:952 +#: lxc/network_zone.go:956 lxc/network_zone.go:957 #, fuzzy msgid "Set network zone record configuration keys" msgstr "Копирование образа: %s" @@ -5684,12 +5683,12 @@ msgid "" " lxc project set [:] " msgstr "" -#: lxc/storage_bucket.go:529 +#: lxc/storage_bucket.go:534 #, fuzzy msgid "Set storage bucket configuration keys" msgstr "Копирование образа: %s" -#: lxc/storage_bucket.go:530 +#: lxc/storage_bucket.go:535 msgid "" "Set storage bucket configuration keys\n" "\n" @@ -5724,7 +5723,7 @@ msgid "" " lxc storage volume set [:] [/] " msgstr "" -#: lxc/remote.go:923 lxc/remote.go:924 +#: lxc/remote.go:924 lxc/remote.go:925 msgid "Set the URL for the remote" msgstr "" @@ -5753,7 +5752,7 @@ msgstr "" msgid "Set the key as a network forward property" msgstr "Копирование образа: %s" -#: lxc/network_load_balancer.go:458 +#: lxc/network_load_balancer.go:463 #, fuzzy msgid "Set the key as a network load balancer property" msgstr "Копирование образа: %s" @@ -5767,12 +5766,12 @@ msgstr "Копирование образа: %s" msgid "Set the key as a network property" msgstr "" -#: lxc/network_zone.go:361 +#: lxc/network_zone.go:366 #, fuzzy msgid "Set the key as a network zone property" msgstr "Копирование образа: %s" -#: lxc/network_zone.go:957 +#: lxc/network_zone.go:962 #, fuzzy msgid "Set the key as a network zone record property" msgstr "Копирование образа: %s" @@ -5785,7 +5784,7 @@ msgstr "" msgid "Set the key as a project property" msgstr "" -#: lxc/storage_bucket.go:537 +#: lxc/storage_bucket.go:542 #, fuzzy msgid "Set the key as a storage bucket property" msgstr "Копирование образа: %s" @@ -5808,11 +5807,11 @@ msgstr "" msgid "Setup SSH SFTP listener on address:port instead of mounting" msgstr "" -#: lxc/main.go:97 +#: lxc/main.go:98 msgid "Show all debug messages" msgstr "" -#: lxc/main.go:98 +#: lxc/main.go:99 msgid "Show all information messages" msgstr "" @@ -5886,7 +5885,7 @@ msgstr "" msgid "Show instance or server information" msgstr "" -#: lxc/main.go:271 lxc/main.go:272 +#: lxc/main.go:272 lxc/main.go:273 msgid "Show less common commands" msgstr "" @@ -5922,17 +5921,17 @@ msgstr "Копирование образа: %s" msgid "Show network peer configurations" msgstr "Копирование образа: %s" -#: lxc/network_zone.go:155 lxc/network_zone.go:156 +#: lxc/network_zone.go:156 lxc/network_zone.go:157 #, fuzzy msgid "Show network zone configurations" msgstr "Копирование образа: %s" -#: lxc/network_zone.go:758 +#: lxc/network_zone.go:763 #, fuzzy msgid "Show network zone record configuration" msgstr "Копирование образа: %s" -#: lxc/network_zone.go:759 +#: lxc/network_zone.go:764 #, fuzzy msgid "Show network zone record configurations" msgstr "Копирование образа: %s" @@ -5945,12 +5944,12 @@ msgstr "" msgid "Show project options" msgstr "" -#: lxc/storage_bucket.go:623 lxc/storage_bucket.go:624 +#: lxc/storage_bucket.go:628 lxc/storage_bucket.go:629 #, fuzzy msgid "Show storage bucket configurations" msgstr "Копирование образа: %s" -#: lxc/storage_bucket.go:1123 lxc/storage_bucket.go:1124 +#: lxc/storage_bucket.go:1128 lxc/storage_bucket.go:1129 #, fuzzy msgid "Show storage bucket key configurations" msgstr "Копирование образа: %s" @@ -5978,7 +5977,7 @@ msgid "" "that are granted via identity provider group mappings. \n" msgstr "" -#: lxc/remote.go:630 lxc/remote.go:631 +#: lxc/remote.go:631 lxc/remote.go:632 msgid "Show the default remote" msgstr "" @@ -6108,22 +6107,22 @@ msgstr "Невозможно добавить имя контейнера в с msgid "Stopping the instance failed: %s" msgstr "Невозможно добавить имя контейнера в список" -#: lxc/storage_bucket.go:161 +#: lxc/storage_bucket.go:166 #, fuzzy, c-format msgid "Storage bucket %s created" msgstr " Использование сети:" -#: lxc/storage_bucket.go:228 +#: lxc/storage_bucket.go:233 #, fuzzy, c-format msgid "Storage bucket %s deleted" msgstr " Использование сети:" -#: lxc/storage_bucket.go:907 +#: lxc/storage_bucket.go:912 #, c-format msgid "Storage bucket key %s added" msgstr "" -#: lxc/storage_bucket.go:973 +#: lxc/storage_bucket.go:978 #, c-format msgid "Storage bucket key %s removed" msgstr "" @@ -6197,7 +6196,7 @@ msgstr "" msgid "Switch the current project" msgstr "" -#: lxc/remote.go:883 lxc/remote.go:884 +#: lxc/remote.go:884 lxc/remote.go:885 msgid "Switch the default remote" msgstr "" @@ -6312,7 +6311,7 @@ msgstr "Копирование образа: %s" msgid "The property %q does not exist on the instance snapshot %s/%s: %v" msgstr "Копирование образа: %s" -#: lxc/network_load_balancer.go:424 +#: lxc/network_load_balancer.go:429 #, fuzzy, c-format msgid "The property %q does not exist on the load balancer %q: %v" msgstr "Копирование образа: %s" @@ -6337,12 +6336,12 @@ msgstr "Копирование образа: %s" msgid "The property %q does not exist on the network peer %q: %v" msgstr "Копирование образа: %s" -#: lxc/network_zone.go:246 +#: lxc/network_zone.go:247 #, fuzzy, c-format msgid "The property %q does not exist on the network zone %q: %v" msgstr "Копирование образа: %s" -#: lxc/network_zone.go:845 +#: lxc/network_zone.go:850 #, fuzzy, c-format msgid "The property %q does not exist on the network zone record %q: %v" msgstr "Копирование образа: %s" @@ -6357,7 +6356,7 @@ msgstr "Копирование образа: %s" msgid "The property %q does not exist on the project %q: %v" msgstr "Копирование образа: %s" -#: lxc/storage_bucket.go:426 +#: lxc/storage_bucket.go:431 #, fuzzy, c-format msgid "The property %q does not exist on the storage bucket %q: %v" msgstr "Копирование образа: %s" @@ -6412,7 +6411,7 @@ msgstr "" msgid "This LXD server is not available on the network" msgstr "" -#: lxc/main.go:293 +#: lxc/main.go:294 msgid "" "This client hasn't been configured to use a remote LXD server yet.\n" "As your platform can't run native Linux instances, you must connect to a " @@ -6444,11 +6443,11 @@ msgstr "" msgid "To create a new network, use: lxc network create" msgstr "" -#: lxc/console.go:210 +#: lxc/console.go:215 msgid "To detach from the console, press: +a q" msgstr "" -#: lxc/main.go:403 +#: lxc/main.go:406 msgid "" "To start your first container, try: lxc launch ubuntu:24.04\n" "Or for a virtual machine: lxc launch ubuntu:24.04 --vm" @@ -6547,7 +6546,7 @@ msgstr "" msgid "UPLOAD DATE" msgstr "" -#: lxc/cluster.go:184 lxc/remote.go:732 +#: lxc/cluster.go:184 lxc/remote.go:733 msgid "URL" msgstr "" @@ -6556,7 +6555,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:679 lxc/project.go:506 +#: lxc/network_zone.go:141 lxc/profile.go:679 lxc/project.go:506 #: lxc/storage.go:647 lxc/storage_volume.go:1564 msgid "USED BY" msgstr "" @@ -6575,7 +6574,7 @@ msgstr "" msgid "Unable to create a temporary file: %v" msgstr "" -#: lxc/remote.go:213 lxc/remote.go:247 +#: lxc/remote.go:214 lxc/remote.go:248 msgid "Unavailable remote server" msgstr "" @@ -6595,7 +6594,7 @@ msgstr "" msgid "Unknown column shorthand char '%c' in '%s'" msgstr "" -#: lxc/console.go:159 +#: lxc/console.go:164 #, c-format msgid "Unknown console type %q" msgstr "" @@ -6659,12 +6658,12 @@ msgstr "Копирование образа: %s" msgid "Unset network forward keys" msgstr "Копирование образа: %s" -#: lxc/network_load_balancer.go:548 +#: lxc/network_load_balancer.go:553 #, fuzzy msgid "Unset network load balancer configuration keys" msgstr "Копирование образа: %s" -#: lxc/network_load_balancer.go:549 +#: lxc/network_load_balancer.go:554 #, fuzzy msgid "Unset network load balancer keys" msgstr "Копирование образа: %s" @@ -6679,12 +6678,12 @@ msgstr "Копирование образа: %s" msgid "Unset network peer keys" msgstr "Копирование образа: %s" -#: lxc/network_zone.go:433 lxc/network_zone.go:434 +#: lxc/network_zone.go:438 lxc/network_zone.go:439 #, fuzzy msgid "Unset network zone configuration keys" msgstr "Копирование образа: %s" -#: lxc/network_zone.go:1027 lxc/network_zone.go:1028 +#: lxc/network_zone.go:1032 lxc/network_zone.go:1033 #, fuzzy msgid "Unset network zone record configuration keys" msgstr "Копирование образа: %s" @@ -6697,7 +6696,7 @@ msgstr "" msgid "Unset project configuration keys" msgstr "" -#: lxc/storage_bucket.go:692 lxc/storage_bucket.go:693 +#: lxc/storage_bucket.go:697 lxc/storage_bucket.go:698 #, fuzzy msgid "Unset storage bucket configuration keys" msgstr "Копирование образа: %s" @@ -6723,7 +6722,7 @@ msgstr "" msgid "Unset the key as a network forward property" msgstr "Копирование образа: %s" -#: lxc/network_load_balancer.go:552 +#: lxc/network_load_balancer.go:557 #, fuzzy msgid "Unset the key as a network load balancer property" msgstr "Копирование образа: %s" @@ -6738,12 +6737,12 @@ msgstr "Копирование образа: %s" msgid "Unset the key as a network property" msgstr "Копирование образа: %s" -#: lxc/network_zone.go:437 +#: lxc/network_zone.go:442 #, fuzzy msgid "Unset the key as a network zone property" msgstr "Копирование образа: %s" -#: lxc/network_zone.go:1031 +#: lxc/network_zone.go:1036 #, fuzzy msgid "Unset the key as a network zone record property" msgstr "Копирование образа: %s" @@ -6756,7 +6755,7 @@ msgstr "" msgid "Unset the key as a project property" msgstr "" -#: lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:701 #, fuzzy msgid "Unset the key as a storage bucket property" msgstr "Копирование образа: %s" @@ -6823,7 +6822,7 @@ msgid "" "Use storage driver optimized format (can only be restored on a similar pool)" msgstr "" -#: lxc/main.go:100 +#: lxc/main.go:101 msgid "Use with help or --help to view sub-commands" msgstr "" @@ -6920,7 +6919,7 @@ msgstr "" #: lxc/network.go:959 lxc/operation.go:156 lxc/project.go:458 #: lxc/project.go:463 lxc/project.go:468 lxc/project.go:473 lxc/project.go:478 -#: lxc/project.go:483 lxc/remote.go:693 lxc/remote.go:698 lxc/remote.go:703 +#: lxc/project.go:483 lxc/remote.go:694 lxc/remote.go:699 lxc/remote.go:704 msgid "YES" msgstr "" @@ -6963,7 +6962,7 @@ 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/network.go:909 lxc/network_acl.go:91 lxc/network_zone.go:83 #: lxc/operation.go:103 lxc/profile.go:630 lxc/project.go:407 #: lxc/storage.go:583 lxc/version.go:20 lxc/warning.go:68 #, fuzzy @@ -7082,7 +7081,7 @@ msgstr "" "\n" "lxc %s [:] [[:]...]%s" -#: lxc/network_zone.go:154 lxc/network_zone.go:463 lxc/network_zone.go:581 +#: lxc/network_zone.go:155 lxc/network_zone.go:468 lxc/network_zone.go:586 #, fuzzy msgid "[:]" msgstr "" @@ -7090,7 +7089,7 @@ msgstr "" "\n" "lxc %s [:] [[:]...]%s" -#: lxc/network_zone.go:209 lxc/network_zone.go:432 +#: lxc/network_zone.go:210 lxc/network_zone.go:437 #, fuzzy msgid "[:] " msgstr "" @@ -7098,7 +7097,7 @@ msgstr "" "\n" "lxc %s [:] [[:]...]%s" -#: lxc/network_zone.go:352 +#: lxc/network_zone.go:357 #, fuzzy msgid "[:] =..." msgstr "" @@ -7106,7 +7105,7 @@ msgstr "" "\n" "lxc %s [:] [[:]...]%s" -#: lxc/network_zone.go:269 +#: lxc/network_zone.go:270 #, fuzzy msgid "[:] [key=value...]" msgstr "" @@ -7576,7 +7575,7 @@ msgstr "" #: lxc/network_forward.go:169 lxc/network_forward.go:574 #: lxc/network_forward.go:715 lxc/network_load_balancer.go:171 -#: lxc/network_load_balancer.go:577 lxc/network_load_balancer.go:719 +#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:724 #, fuzzy msgid "[:] " msgstr "" @@ -7584,7 +7583,7 @@ msgstr "" "\n" "lxc %s [:] [[:]...]%s" -#: lxc/network_load_balancer.go:860 +#: lxc/network_load_balancer.go:865 #, fuzzy msgid "[:] " msgstr "" @@ -7592,7 +7591,7 @@ msgstr "" "\n" "lxc %s [:] [[:]...]%s" -#: lxc/network_load_balancer.go:796 +#: lxc/network_load_balancer.go:801 #, fuzzy msgid "" "[:] " @@ -7603,7 +7602,7 @@ msgstr "" "lxc %s [:] [[:]...]%s" #: lxc/network_forward.go:377 lxc/network_forward.go:544 -#: lxc/network_load_balancer.go:381 lxc/network_load_balancer.go:547 +#: lxc/network_load_balancer.go:386 lxc/network_load_balancer.go:552 #, fuzzy msgid "[:] " msgstr "" @@ -7611,7 +7610,7 @@ msgstr "" "\n" "lxc %s [:] [[:]...]%s" -#: lxc/network_forward.go:446 lxc/network_load_balancer.go:449 +#: lxc/network_forward.go:446 lxc/network_load_balancer.go:454 #, fuzzy msgid "[:] =..." msgstr "" @@ -7619,7 +7618,7 @@ msgstr "" "\n" "lxc %s [:] [[:]...]%s" -#: lxc/network_load_balancer.go:961 +#: lxc/network_load_balancer.go:966 #, fuzzy msgid "" "[:] " @@ -7635,7 +7634,7 @@ msgid "" " []" msgstr "" -#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1022 +#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1027 #, fuzzy msgid "[:] [] []" msgstr "" @@ -7734,7 +7733,7 @@ msgstr "" "lxc %s [:] [[:]...]%s" #: lxc/storage.go:167 lxc/storage.go:218 lxc/storage.go:412 lxc/storage.go:759 -#: lxc/storage_bucket.go:449 +#: lxc/storage_bucket.go:454 #, fuzzy msgid "[:]" msgstr "" @@ -7750,8 +7749,8 @@ msgstr "" "\n" "lxc %s [:] [[:]...]%s" -#: lxc/storage_bucket.go:180 lxc/storage_bucket.go:242 -#: lxc/storage_bucket.go:622 lxc/storage_bucket.go:764 +#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:247 +#: lxc/storage_bucket.go:627 lxc/storage_bucket.go:769 #, fuzzy msgid "[:] " msgstr "" @@ -7759,9 +7758,9 @@ msgstr "" "\n" "lxc %s [:] [[:]...]%s" -#: lxc/storage_bucket.go:375 lxc/storage_bucket.go:691 -#: lxc/storage_bucket.go:845 lxc/storage_bucket.go:923 -#: lxc/storage_bucket.go:987 lxc/storage_bucket.go:1122 +#: lxc/storage_bucket.go:380 lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:850 lxc/storage_bucket.go:928 +#: lxc/storage_bucket.go:992 lxc/storage_bucket.go:1127 #, fuzzy msgid "[:] " msgstr "" @@ -7769,7 +7768,7 @@ msgstr "" "\n" "lxc %s [:] [[:]...]%s" -#: lxc/storage_bucket.go:528 +#: lxc/storage_bucket.go:533 #, fuzzy msgid "[:] =..." msgstr "" @@ -8053,7 +8052,7 @@ msgstr "" "\n" "lxc %s [:] [[:]...]%s" -#: lxc/network_zone.go:686 +#: lxc/network_zone.go:691 #, fuzzy msgid "[:]" msgstr "" @@ -8061,7 +8060,7 @@ msgstr "" "\n" "lxc %s [:] [[:]...]%s" -#: lxc/network_zone.go:757 lxc/network_zone.go:1056 lxc/network_zone.go:1173 +#: lxc/network_zone.go:762 lxc/network_zone.go:1061 lxc/network_zone.go:1178 #, fuzzy msgid "[:] " msgstr "" @@ -8069,7 +8068,7 @@ msgstr "" "\n" "lxc %s [:] [[:]...]%s" -#: lxc/network_zone.go:809 lxc/network_zone.go:1026 +#: lxc/network_zone.go:814 lxc/network_zone.go:1031 #, fuzzy msgid "[:] " msgstr "" @@ -8077,7 +8076,7 @@ msgstr "" "\n" "lxc %s [:] [[:]...]%s" -#: lxc/network_zone.go:950 +#: lxc/network_zone.go:955 #, fuzzy msgid "[:] =..." msgstr "" @@ -8085,7 +8084,7 @@ msgstr "" "\n" "lxc %s [:] [[:]...]%s" -#: lxc/network_zone.go:1238 lxc/network_zone.go:1284 +#: lxc/network_zone.go:1243 lxc/network_zone.go:1289 #, fuzzy msgid "[:] " msgstr "" @@ -8093,7 +8092,7 @@ msgstr "" "\n" "lxc %s [:] [[:]...]%s" -#: lxc/network_zone.go:868 +#: lxc/network_zone.go:873 #, fuzzy msgid "[:] [key=value...]" msgstr "" @@ -8141,7 +8140,7 @@ msgstr "" "\n" "lxc %s [:] [[:]...]%s" -#: lxc/remote.go:88 +#: lxc/remote.go:89 #, fuzzy msgid "[] " msgstr "" @@ -8157,7 +8156,7 @@ msgstr "" "\n" "lxc %s [:] [[:]...]%s" -#: lxc/project.go:488 lxc/remote.go:722 +#: lxc/project.go:488 lxc/remote.go:723 msgid "current" msgstr "" @@ -8420,6 +8419,23 @@ msgid "" " Create a new OVN network called bar using baz as its uplink network" msgstr "" +#: lxc/network_load_balancer.go:239 +msgid "" +"lxc network load-balancer create n1 127.0.0.1\n" +"\n" +"lxc network load-balancer create n1 127.0.0.1 < config.yaml\n" +" Create network load-balancer for network n1 with configuration from " +"config.yaml" +msgstr "" + +#: lxc/network_zone.go:273 +msgid "" +"lxc network zone create z1\n" +"\n" +"lxc network zone create z1 < config.yaml\n" +" Create network zone z1 with configuration from config.yaml" +msgstr "" + #: lxc/operation.go:195 msgid "" "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n" @@ -8490,26 +8506,36 @@ msgid "" " Restore the snapshot." msgstr "" -#: lxc/storage_bucket.go:245 +#: lxc/storage_bucket.go:84 +msgid "" +"lxc storage bucket create p1 b01\n" +"\tCreate a new storage bucket name b01 in storage pool p1\n" +"\n" +"lxc storage bucket create p1 b01 < config.yaml\n" +"\tCreate a new storage bucket name b01 in storage pool p1 using the content " +"of config.yaml" +msgstr "" + +#: lxc/storage_bucket.go:250 msgid "" "lxc storage bucket edit [:] < bucket.yaml\n" " Update a storage bucket using the content of bucket.yaml." msgstr "" -#: lxc/storage_bucket.go:990 +#: lxc/storage_bucket.go:995 msgid "" "lxc storage bucket edit [:] < key.yaml\n" " Update a storage bucket key using the content of key.yaml." msgstr "" -#: lxc/storage_bucket.go:1125 +#: lxc/storage_bucket.go:1130 msgid "" "lxc storage bucket key show default data foo\n" " Will show the properties of a bucket key called \"foo\" for a bucket " "called \"data\" in the \"default\" pool." msgstr "" -#: lxc/storage_bucket.go:625 +#: lxc/storage_bucket.go:630 msgid "" "lxc storage bucket show default data\n" " Will show the properties of a bucket called \"data\" in the \"default\" " @@ -8528,7 +8554,7 @@ msgid "" "\t\tCreate a new custom volume using backup0.tar.gz as the source." msgstr "" -#: lxc/remote.go:459 +#: lxc/remote.go:460 msgid "n" msgstr "" @@ -8540,7 +8566,7 @@ msgstr "" msgid "no" msgstr "" -#: lxc/remote.go:452 +#: lxc/remote.go:453 msgid "ok (y/n/[fingerprint])?" msgstr "" @@ -8577,7 +8603,7 @@ msgstr "" msgid "used by" msgstr "" -#: lxc/remote.go:461 +#: lxc/remote.go:462 msgid "y" msgstr "" @@ -8628,13 +8654,6 @@ msgstr "да" #~ "\n" #~ "lxc %s [:] [[:]...]%s" -#, fuzzy -#~ msgid "[:] " -#~ msgstr "" -#~ "Изменение состояния одного или нескольких контейнеров %s.\n" -#~ "\n" -#~ "lxc %s [:] [[:]...]%s" - #, fuzzy #~ msgid "[:] " #~ msgstr "" diff --git a/po/si.po b/po/si.po index 97017c7fad7d..7cbce33eab7d 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-08-20 09:31+0100\n" +"POT-Creation-Date: 2024-08-30 09:27+0100\n" "PO-Revision-Date: 2022-03-10 15:11+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Sinhala 1;\n" "X-Generator: Weblate 4.12-dev\n" -#: lxc/storage_bucket.go:255 lxc/storage_bucket.go:1000 +#: lxc/storage_bucket.go:260 lxc/storage_bucket.go:1005 msgid "" "### This is a YAML representation of a storage bucket.\n" "### Any line starting with a '# will be ignored.\n" @@ -281,7 +281,7 @@ msgid "" "### Note that the listen_address and location cannot be changed." msgstr "" -#: lxc/network_load_balancer.go:588 +#: lxc/network_load_balancer.go:593 msgid "" "### This is a YAML representation of the network load balancer.\n" "### Any line starting with a '# will be ignored.\n" @@ -322,7 +322,7 @@ msgid "" "cannot be changed." msgstr "" -#: lxc/network_zone.go:1066 +#: lxc/network_zone.go:1071 msgid "" "### This is a YAML representation of the network zone record.\n" "### Any line starting with a '# will be ignored.\n" @@ -336,7 +336,7 @@ msgid "" "### user.foo: bah\n" msgstr "" -#: lxc/network_zone.go:473 +#: lxc/network_zone.go:478 msgid "" "### This is a YAML representation of the network zone.\n" "### Any line starting with a '# will be ignored.\n" @@ -515,15 +515,15 @@ msgstr "" msgid " " msgstr "" -#: lxc/remote.go:825 lxc/remote.go:882 +#: lxc/remote.go:826 lxc/remote.go:883 msgid "" msgstr "" -#: lxc/remote.go:922 +#: lxc/remote.go:923 msgid " " msgstr "" -#: lxc/remote.go:752 +#: lxc/remote.go:753 msgid " " msgstr "" @@ -556,7 +556,7 @@ msgstr "" msgid "ARCHITECTURE" msgstr "" -#: lxc/remote.go:734 +#: lxc/remote.go:735 msgid "AUTH TYPE" msgstr "" @@ -564,15 +564,15 @@ msgstr "" msgid "AUTHENTICATION METHOD" msgstr "" -#: lxc/remote.go:100 +#: lxc/remote.go:101 msgid "Accept certificate" msgstr "" -#: lxc/storage_bucket.go:852 +#: lxc/storage_bucket.go:857 msgid "Access key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:908 +#: lxc/storage_bucket.go:913 #, c-format msgid "Access key: %s" msgstr "" @@ -606,19 +606,19 @@ msgstr "" msgid "Add a group to an identity provider group" msgstr "" -#: lxc/network_zone.go:1239 +#: lxc/network_zone.go:1244 msgid "Add a network zone record entry" msgstr "" -#: lxc/network_load_balancer.go:798 +#: lxc/network_load_balancer.go:803 msgid "Add backend to a load balancer" msgstr "" -#: lxc/network_load_balancer.go:797 +#: lxc/network_load_balancer.go:802 msgid "Add backends to a load balancer" msgstr "" -#: lxc/network_zone.go:1240 +#: lxc/network_zone.go:1245 msgid "Add entries to a network zone record" msgstr "" @@ -634,11 +634,11 @@ msgstr "" msgid "Add new aliases" msgstr "" -#: lxc/remote.go:89 +#: lxc/remote.go:90 msgid "Add new remote servers" msgstr "" -#: lxc/remote.go:90 +#: lxc/remote.go:91 msgid "" "Add new remote servers\n" "\n" @@ -679,7 +679,7 @@ msgstr "" msgid "Add ports to a forward" msgstr "" -#: lxc/network_load_balancer.go:962 lxc/network_load_balancer.go:963 +#: lxc/network_load_balancer.go:967 lxc/network_load_balancer.go:968 msgid "Add ports to a load balancer" msgstr "" @@ -700,17 +700,17 @@ msgstr "" msgid "Address: %s" msgstr "" -#: lxc/storage_bucket.go:164 +#: lxc/storage_bucket.go:169 #, c-format msgid "Admin access key: %s" msgstr "" -#: lxc/remote.go:566 +#: lxc/remote.go:567 #, c-format msgid "Admin password (or token) for %s:" msgstr "" -#: lxc/storage_bucket.go:165 +#: lxc/storage_bucket.go:170 #, c-format msgid "Admin secret key: %s" msgstr "" @@ -742,7 +742,7 @@ msgstr "" msgid "All projects" msgstr "" -#: lxc/remote.go:181 +#: lxc/remote.go:182 msgid "All server addresses are unavailable" msgstr "" @@ -765,7 +765,7 @@ msgstr "" msgid "Are you sure you want to %s cluster member %q? (yes/no) [default=no]: " msgstr "" -#: lxc/console.go:383 +#: lxc/console.go:388 msgid "As neither could be found, the raw SPICE socket can be found at:" msgstr "" @@ -813,7 +813,7 @@ msgid "" "as well as retrieve past log entries from it." msgstr "" -#: lxc/remote.go:548 +#: lxc/remote.go:549 #, c-format msgid "Authentication type '%s' not supported by server" msgstr "" @@ -832,11 +832,11 @@ msgstr "" msgid "Auto update: %s" msgstr "" -#: lxc/network_forward.go:240 lxc/network_load_balancer.go:242 +#: lxc/network_forward.go:240 lxc/network_load_balancer.go:247 msgid "Auto-allocate an IPv4 or IPv6 listen address. One of 'ipv4', 'ipv6'." msgstr "" -#: lxc/remote.go:136 +#: lxc/remote.go:137 msgid "Available projects:" msgstr "" @@ -868,8 +868,8 @@ msgid "Bad device override syntax, expecting ,=: %s" msgstr "" #: lxc/network.go:333 lxc/network_acl.go:382 lxc/network_forward.go:293 -#: lxc/network_load_balancer.go:296 lxc/network_peer.go:280 -#: lxc/network_zone.go:324 lxc/network_zone.go:922 lxc/storage_bucket.go:136 +#: lxc/network_load_balancer.go:301 lxc/network_peer.go:280 +#: lxc/network_zone.go:329 lxc/network_zone.go:927 lxc/storage_bucket.go:141 #, c-format msgid "Bad key/value pair: %s" msgstr "" @@ -991,7 +991,7 @@ msgstr "" msgid "Can't read from stdin: %w" msgstr "" -#: lxc/remote.go:861 +#: lxc/remote.go:862 msgid "Can't remove the default remote" msgstr "" @@ -1057,15 +1057,14 @@ msgstr "" msgid "Certificate add token for %s deleted" msgstr "" -#: lxc/remote.go:218 -#, c-format -msgid "" -"Certificate fingerprint mismatch between certificate token and server %q" +#: lxc/remote.go:452 +msgid "Certificate fingerprint" msgstr "" -#: lxc/remote.go:451 +#: lxc/remote.go:219 #, c-format -msgid "Certificate fingerprint: %s" +msgid "" +"Certificate fingerprint mismatch between certificate token and server %q" msgstr "" #: lxc/network.go:893 @@ -1077,7 +1076,7 @@ msgstr "" msgid "Client %s certificate add token:" msgstr "" -#: lxc/remote.go:603 +#: lxc/remote.go:604 msgid "Client certificate now trusted by server:" msgstr "" @@ -1139,18 +1138,18 @@ msgstr "" #: lxc/network_forward.go:456 lxc/network_forward.go:579 #: lxc/network_forward.go:721 lxc/network_forward.go:798 #: lxc/network_forward.go:864 lxc/network_load_balancer.go:176 -#: lxc/network_load_balancer.go:241 lxc/network_load_balancer.go:459 -#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:725 -#: lxc/network_load_balancer.go:801 lxc/network_load_balancer.go:865 -#: lxc/network_load_balancer.go:966 lxc/network_load_balancer.go:1028 +#: lxc/network_load_balancer.go:246 lxc/network_load_balancer.go:464 +#: lxc/network_load_balancer.go:587 lxc/network_load_balancer.go:730 +#: lxc/network_load_balancer.go:806 lxc/network_load_balancer.go:870 +#: lxc/network_load_balancer.go:971 lxc/network_load_balancer.go:1033 #: lxc/storage.go:99 lxc/storage.go:347 lxc/storage.go:418 lxc/storage.go:671 -#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:85 -#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:248 -#: lxc/storage_bucket.go:379 lxc/storage_bucket.go:536 -#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:695 -#: lxc/storage_bucket.go:770 lxc/storage_bucket.go:850 -#: lxc/storage_bucket.go:928 lxc/storage_bucket.go:993 -#: lxc/storage_bucket.go:1129 lxc/storage_volume.go:358 +#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:90 +#: lxc/storage_bucket.go:190 lxc/storage_bucket.go:253 +#: lxc/storage_bucket.go:384 lxc/storage_bucket.go:541 +#: lxc/storage_bucket.go:634 lxc/storage_bucket.go:700 +#: lxc/storage_bucket.go:775 lxc/storage_bucket.go:855 +#: lxc/storage_bucket.go:933 lxc/storage_bucket.go:998 +#: lxc/storage_bucket.go:1134 lxc/storage_volume.go:358 #: lxc/storage_volume.go:560 lxc/storage_volume.go:639 #: lxc/storage_volume.go:883 lxc/storage_volume.go:1097 #: lxc/storage_volume.go:1210 lxc/storage_volume.go:1678 @@ -1178,11 +1177,11 @@ msgstr "" msgid "Columns" msgstr "" -#: lxc/main.go:81 +#: lxc/main.go:82 msgid "Command line client for LXD" msgstr "" -#: lxc/main.go:82 +#: lxc/main.go:83 msgid "" "Command line client for LXD\n" "\n" @@ -1214,19 +1213,15 @@ msgstr "" #: lxc/config.go:347 lxc/config.go:1277 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/network_load_balancer.go:694 lxc/network_peer.go:610 +#: lxc/network_zone.go:556 lxc/network_zone.go:1148 lxc/profile.go:538 +#: lxc/project.go:315 lxc/storage.go:310 lxc/storage_bucket.go:348 +#: lxc/storage_bucket.go:1097 lxc/storage_volume.go:1016 #: lxc/storage_volume.go:1048 #, c-format msgid "Config parsing error: %s" msgstr "" -#: lxc/console.go:140 -msgid "Console log:" -msgstr "" - #: lxc/storage_volume.go:561 msgid "Content type, block or filesystem" msgstr "" @@ -1329,12 +1324,12 @@ msgstr "" msgid "Cores:" msgstr "" -#: lxc/remote.go:486 +#: lxc/remote.go:487 #, c-format msgid "Could not close server cert file %q: %w" msgstr "" -#: lxc/remote.go:224 lxc/remote.go:470 +#: lxc/remote.go:225 lxc/remote.go:471 msgid "Could not create server cert dir" msgstr "" @@ -1373,12 +1368,12 @@ msgstr "" msgid "Could not write new remote certificate for remote '%s' with error: %v" msgstr "" -#: lxc/remote.go:481 +#: lxc/remote.go:482 #, c-format msgid "Could not write server cert file %q: %w" msgstr "" -#: lxc/network_zone.go:1327 +#: lxc/network_zone.go:1332 msgid "Couldn't find a matching entry" msgstr "" @@ -1430,7 +1425,7 @@ msgstr "" msgid "Create instances from images" msgstr "" -#: lxc/storage_bucket.go:846 lxc/storage_bucket.go:847 +#: lxc/storage_bucket.go:851 lxc/storage_bucket.go:852 msgid "Create key for a storage bucket" msgstr "" @@ -1462,11 +1457,11 @@ msgstr "" msgid "Create new network peering" msgstr "" -#: lxc/network_zone.go:869 lxc/network_zone.go:870 +#: lxc/network_zone.go:874 lxc/network_zone.go:875 msgid "Create new network zone record" msgstr "" -#: lxc/network_zone.go:270 lxc/network_zone.go:271 +#: lxc/network_zone.go:271 lxc/network_zone.go:272 msgid "Create new network zones" msgstr "" @@ -1517,9 +1512,9 @@ msgstr "" #: 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/network_zone.go:140 lxc/network_zone.go:747 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_bucket.go:512 lxc/storage_bucket.go:832 #: lxc/storage_volume.go:1562 msgid "DESCRIPTION" msgstr "" @@ -1584,7 +1579,7 @@ msgstr "" msgid "Delete instances and snapshots" msgstr "" -#: lxc/storage_bucket.go:924 lxc/storage_bucket.go:925 +#: lxc/storage_bucket.go:929 lxc/storage_bucket.go:930 msgid "Delete key from a storage bucket" msgstr "" @@ -1596,7 +1591,7 @@ msgstr "" msgid "Delete network forwards" msgstr "" -#: lxc/network_load_balancer.go:721 lxc/network_load_balancer.go:722 +#: lxc/network_load_balancer.go:726 lxc/network_load_balancer.go:727 msgid "Delete network load balancers" msgstr "" @@ -1604,11 +1599,11 @@ msgstr "" msgid "Delete network peerings" msgstr "" -#: lxc/network_zone.go:1175 lxc/network_zone.go:1176 +#: lxc/network_zone.go:1180 lxc/network_zone.go:1181 msgid "Delete network zone record" msgstr "" -#: lxc/network_zone.go:583 lxc/network_zone.go:584 +#: lxc/network_zone.go:588 lxc/network_zone.go:589 msgid "Delete network zones" msgstr "" @@ -1624,7 +1619,7 @@ msgstr "" msgid "Delete projects" msgstr "" -#: lxc/storage_bucket.go:182 lxc/storage_bucket.go:183 +#: lxc/storage_bucket.go:187 lxc/storage_bucket.go:188 msgid "Delete storage buckets" msgstr "" @@ -1680,7 +1675,7 @@ msgstr "" #: 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/info.go:32 lxc/init.go:43 lxc/launch.go:24 lxc/list.go:48 lxc/main.go:83 #: 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 @@ -1699,22 +1694,22 @@ msgstr "" #: 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_load_balancer.go:238 lxc/network_load_balancer.go:388 +#: lxc/network_load_balancer.go:456 lxc/network_load_balancer.go:554 +#: lxc/network_load_balancer.go:584 lxc/network_load_balancer.go:727 +#: lxc/network_load_balancer.go:788 lxc/network_load_balancer.go:803 +#: lxc/network_load_balancer.go:867 lxc/network_load_balancer.go:953 +#: lxc/network_load_balancer.go:968 lxc/network_load_balancer.go:1029 #: 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/network_zone.go:29 lxc/network_zone.go:86 lxc/network_zone.go:157 +#: lxc/network_zone.go:212 lxc/network_zone.go:272 lxc/network_zone.go:359 +#: lxc/network_zone.go:439 lxc/network_zone.go:470 lxc/network_zone.go:589 +#: lxc/network_zone.go:637 lxc/network_zone.go:694 lxc/network_zone.go:764 +#: lxc/network_zone.go:816 lxc/network_zone.go:875 lxc/network_zone.go:957 +#: lxc/network_zone.go:1033 lxc/network_zone.go:1063 lxc/network_zone.go:1181 +#: lxc/network_zone.go:1230 lxc/network_zone.go:1245 lxc/network_zone.go:1291 #: 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 @@ -1723,19 +1718,19 @@ msgstr "" #: 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:631 lxc/remote.go:669 lxc/remote.go:755 lxc/remote.go:828 -#: lxc/remote.go:884 lxc/remote.go:924 lxc/rename.go:21 lxc/restore.go:24 +#: lxc/query.go:34 lxc/rebuild.go:27 lxc/remote.go:35 lxc/remote.go:91 +#: lxc/remote.go:632 lxc/remote.go:670 lxc/remote.go:756 lxc/remote.go:829 +#: lxc/remote.go:885 lxc/remote.go:925 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_bucket.go:29 lxc/storage_bucket.go:83 lxc/storage_bucket.go:188 +#: lxc/storage_bucket.go:249 lxc/storage_bucket.go:382 +#: lxc/storage_bucket.go:458 lxc/storage_bucket.go:535 +#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:698 +#: lxc/storage_bucket.go:732 lxc/storage_bucket.go:773 +#: lxc/storage_bucket.go:852 lxc/storage_bucket.go:930 +#: lxc/storage_bucket.go:994 lxc/storage_bucket.go:1129 #: 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 @@ -1871,7 +1866,7 @@ msgstr "" msgid "Don't require user confirmation for using --force" msgstr "" -#: lxc/main.go:99 +#: lxc/main.go:100 msgid "Don't show progress information" msgstr "" @@ -1884,7 +1879,7 @@ msgstr "" msgid "Driver: %v (%v)" msgstr "" -#: lxc/network_zone.go:743 +#: lxc/network_zone.go:748 msgid "ENTRIES" msgstr "" @@ -1962,7 +1957,7 @@ msgstr "" msgid "Edit network forward configurations as YAML" msgstr "" -#: lxc/network_load_balancer.go:578 lxc/network_load_balancer.go:579 +#: lxc/network_load_balancer.go:583 lxc/network_load_balancer.go:584 msgid "Edit network load balancer configurations as YAML" msgstr "" @@ -1970,11 +1965,11 @@ msgstr "" msgid "Edit network peer configurations as YAML" msgstr "" -#: lxc/network_zone.go:464 lxc/network_zone.go:465 +#: lxc/network_zone.go:469 lxc/network_zone.go:470 msgid "Edit network zone configurations as YAML" msgstr "" -#: lxc/network_zone.go:1057 lxc/network_zone.go:1058 +#: lxc/network_zone.go:1062 lxc/network_zone.go:1063 msgid "Edit network zone record configurations as YAML" msgstr "" @@ -1986,11 +1981,11 @@ msgstr "" msgid "Edit project configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:243 lxc/storage_bucket.go:244 +#: lxc/storage_bucket.go:248 lxc/storage_bucket.go:249 msgid "Edit storage bucket configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:988 lxc/storage_bucket.go:989 +#: lxc/storage_bucket.go:993 lxc/storage_bucket.go:994 msgid "Edit storage bucket key as YAML" msgstr "" @@ -2031,7 +2026,7 @@ msgid "" " for the address if not yet set." msgstr "" -#: lxc/network_zone.go:1242 +#: lxc/network_zone.go:1247 msgid "Entry TTL" msgstr "" @@ -2060,9 +2055,9 @@ msgstr "" #: lxc/cluster.go:414 lxc/config.go:624 lxc/config.go:656 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/network_load_balancer.go:527 lxc/network_peer.go:463 +#: lxc/network_zone.go:414 lxc/network_zone.go:1008 lxc/profile.go:876 +#: lxc/project.go:634 lxc/storage.go:727 lxc/storage_bucket.go:602 #: lxc/storage_volume.go:1947 lxc/storage_volume.go:1985 #, c-format msgid "Error setting properties: %v" @@ -2074,10 +2069,10 @@ 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/network_forward.go:513 lxc/network_load_balancer.go:521 +#: lxc/network_peer.go:457 lxc/network_zone.go:408 lxc/network_zone.go:1002 #: lxc/profile.go:870 lxc/project.go:628 lxc/storage.go:721 -#: lxc/storage_bucket.go:591 lxc/storage_volume.go:1941 +#: lxc/storage_bucket.go:596 lxc/storage_volume.go:1941 #: lxc/storage_volume.go:1979 #, c-format msgid "Error unsetting property: %v" @@ -2263,7 +2258,7 @@ msgstr "" msgid "Failed parsing SSH host key: %w" msgstr "" -#: lxc/console.go:361 +#: lxc/console.go:366 #, c-format msgid "Failed starting command: %w" msgstr "" @@ -2278,11 +2273,11 @@ msgstr "" msgid "Failed to accept incoming connection: %w" msgstr "" -#: lxc/remote.go:190 +#: lxc/remote.go:191 msgid "Failed to add remote" msgstr "" -#: lxc/remote.go:241 +#: lxc/remote.go:242 #, c-format msgid "Failed to close server cert file %q: %w" msgstr "" @@ -2292,7 +2287,7 @@ msgstr "" msgid "Failed to connect to cluster member: %w" msgstr "" -#: lxc/remote.go:231 +#: lxc/remote.go:232 #, c-format msgid "Failed to create %q: %w" msgstr "" @@ -2302,12 +2297,12 @@ msgstr "" msgid "Failed to create alias %s: %w" msgstr "" -#: lxc/remote.go:256 +#: lxc/remote.go:257 #, c-format msgid "Failed to create certificate: %w" msgstr "" -#: lxc/remote.go:263 +#: lxc/remote.go:264 #, c-format msgid "Failed to find project: %w" msgstr "" @@ -2332,7 +2327,7 @@ msgstr "" msgid "Failed to walk path for %s: %s" msgstr "" -#: lxc/remote.go:236 +#: lxc/remote.go:237 #, c-format msgid "Failed to write server cert file %q: %w" msgstr "" @@ -2341,7 +2336,7 @@ msgstr "" msgid "Fast mode (same as --columns=nsacPt)" msgstr "" -#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:115 +#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:116 #: lxc/operation.go:136 msgid "Filtering isn't supported yet" msgstr "" @@ -2379,7 +2374,7 @@ msgstr "" msgid "Force the removal of running instances" msgstr "" -#: lxc/main.go:95 +#: lxc/main.go:96 msgid "Force using the local unix socket" msgstr "" @@ -2413,10 +2408,10 @@ msgstr "" #: 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/network_peer.go:84 lxc/network_zone.go:89 lxc/network_zone.go:697 #: lxc/operation.go:108 lxc/profile.go:637 lxc/project.go:412 -#: lxc/project.go:804 lxc/remote.go:673 lxc/storage.go:588 -#: lxc/storage_bucket.go:454 lxc/storage_bucket.go:769 +#: lxc/project.go:804 lxc/remote.go:674 lxc/storage.go:588 +#: lxc/storage_bucket.go:459 lxc/storage_bucket.go:774 #: lxc/storage_volume.go:1446 lxc/warning.go:93 msgid "Format (csv|json|table|yaml|compact)" msgstr "" @@ -2453,7 +2448,7 @@ msgstr "" msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)" msgstr "" -#: lxc/remote.go:737 +#: lxc/remote.go:738 msgid "GLOBAL" msgstr "" @@ -2473,7 +2468,7 @@ msgstr "" msgid "Generate manpages for all commands" msgstr "" -#: lxc/remote.go:159 lxc/remote.go:397 +#: lxc/remote.go:160 lxc/remote.go:398 msgid "Generating a client certificate. This may take a minute..." msgstr "" @@ -2505,7 +2500,7 @@ msgstr "" msgid "Get the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:386 +#: lxc/network_load_balancer.go:391 msgid "Get the key as a network load balancer property" msgstr "" @@ -2517,11 +2512,11 @@ msgstr "" msgid "Get the key as a network property" msgstr "" -#: lxc/network_zone.go:214 +#: lxc/network_zone.go:215 msgid "Get the key as a network zone property" msgstr "" -#: lxc/network_zone.go:814 +#: lxc/network_zone.go:819 msgid "Get the key as a network zone record property" msgstr "" @@ -2533,7 +2528,7 @@ msgstr "" msgid "Get the key as a project property" msgstr "" -#: lxc/storage_bucket.go:380 +#: lxc/storage_bucket.go:385 msgid "Get the key as a storage bucket property" msgstr "" @@ -2573,7 +2568,7 @@ msgstr "" msgid "Get values for network forward configuration keys" msgstr "" -#: lxc/network_load_balancer.go:382 lxc/network_load_balancer.go:383 +#: lxc/network_load_balancer.go:387 lxc/network_load_balancer.go:388 msgid "Get values for network load balancer configuration keys" msgstr "" @@ -2581,11 +2576,11 @@ msgstr "" msgid "Get values for network peer configuration keys" msgstr "" -#: lxc/network_zone.go:210 lxc/network_zone.go:211 +#: lxc/network_zone.go:211 lxc/network_zone.go:212 msgid "Get values for network zone configuration keys" msgstr "" -#: lxc/network_zone.go:810 lxc/network_zone.go:811 +#: lxc/network_zone.go:815 lxc/network_zone.go:816 msgid "Get values for network zone record configuration keys" msgstr "" @@ -2597,7 +2592,7 @@ msgstr "" msgid "Get values for project configuration keys" msgstr "" -#: lxc/storage_bucket.go:376 lxc/storage_bucket.go:377 +#: lxc/storage_bucket.go:381 lxc/storage_bucket.go:382 msgid "Get values for storage bucket configuration keys" msgstr "" @@ -2737,7 +2732,7 @@ msgstr "" msgid "If the snapshot name already exists, delete and create a new one" msgstr "" -#: lxc/main.go:398 +#: lxc/main.go:400 msgid "" "If this is your first time running LXD on this machine, you should also run: " "lxd init" @@ -2894,7 +2889,7 @@ msgstr "" msgid "Instance type" msgstr "" -#: lxc/remote.go:349 +#: lxc/remote.go:350 #, c-format msgid "Invalid URL scheme \"%s\" in \"%s\"" msgstr "" @@ -2966,7 +2961,7 @@ msgstr "" msgid "Invalid new snapshot name, parent volume must be the same as source" msgstr "" -#: lxc/main.go:498 +#: lxc/main.go:502 msgid "Invalid number of arguments" msgstr "" @@ -2975,7 +2970,7 @@ msgstr "" msgid "Invalid path %s" msgstr "" -#: lxc/remote.go:338 +#: lxc/remote.go:339 #, c-format msgid "Invalid protocol: %s" msgstr "" @@ -3023,7 +3018,7 @@ msgstr "" #: lxc/list.go:597 lxc/network.go:1059 lxc/network_forward.go:155 #: lxc/network_load_balancer.go:157 lxc/operation.go:177 -#: lxc/storage_bucket.go:511 lxc/storage_volume.go:1569 lxc/warning.go:220 +#: lxc/storage_bucket.go:516 lxc/storage_volume.go:1569 lxc/warning.go:220 msgid "LOCATION" msgstr "" @@ -3031,7 +3026,7 @@ msgstr "" msgid "LXD - Command line client" msgstr "" -#: lxc/console.go:382 +#: lxc/console.go:387 msgid "LXD automatically uses either spicy or remote-viewer when present." msgstr "" @@ -3121,15 +3116,15 @@ msgstr "" msgid "List available network peers" msgstr "" -#: lxc/network_zone.go:85 +#: lxc/network_zone.go:86 msgid "List available network zone" msgstr "" -#: lxc/network_zone.go:688 lxc/network_zone.go:689 +#: lxc/network_zone.go:693 lxc/network_zone.go:694 msgid "List available network zone records" msgstr "" -#: lxc/network_zone.go:84 +#: lxc/network_zone.go:85 msgid "List available network zoneS" msgstr "" @@ -3318,11 +3313,11 @@ msgstr "" msgid "List projects" msgstr "" -#: lxc/storage_bucket.go:766 lxc/storage_bucket.go:768 +#: lxc/storage_bucket.go:771 lxc/storage_bucket.go:773 msgid "List storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:451 lxc/storage_bucket.go:453 +#: lxc/storage_bucket.go:456 lxc/storage_bucket.go:458 msgid "List storage buckets" msgstr "" @@ -3350,7 +3345,7 @@ msgid "" " U - Current disk usage" msgstr "" -#: lxc/remote.go:668 lxc/remote.go:669 +#: lxc/remote.go:669 lxc/remote.go:670 msgid "List the available remotes" msgstr "" @@ -3577,11 +3572,11 @@ msgstr "" msgid "Manage network forwards" msgstr "" -#: lxc/network_load_balancer.go:782 lxc/network_load_balancer.go:783 +#: lxc/network_load_balancer.go:787 lxc/network_load_balancer.go:788 msgid "Manage network load balancer backends" msgstr "" -#: lxc/network_load_balancer.go:947 lxc/network_load_balancer.go:948 +#: lxc/network_load_balancer.go:952 lxc/network_load_balancer.go:953 msgid "Manage network load balancer ports" msgstr "" @@ -3593,15 +3588,15 @@ msgstr "" msgid "Manage network peerings" msgstr "" -#: lxc/network_zone.go:1224 lxc/network_zone.go:1225 +#: lxc/network_zone.go:1229 lxc/network_zone.go:1230 msgid "Manage network zone record entries" msgstr "" -#: lxc/network_zone.go:631 lxc/network_zone.go:632 +#: lxc/network_zone.go:636 lxc/network_zone.go:637 msgid "Manage network zone records" msgstr "" -#: lxc/network_zone.go:27 lxc/network_zone.go:28 +#: lxc/network_zone.go:28 lxc/network_zone.go:29 msgid "Manage network zones" msgstr "" @@ -3617,11 +3612,11 @@ msgstr "" msgid "Manage projects" msgstr "" -#: lxc/storage_bucket.go:726 +#: lxc/storage_bucket.go:731 msgid "Manage storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:727 +#: lxc/storage_bucket.go:732 msgid "Manage storage bucket keys." msgstr "" @@ -3649,7 +3644,7 @@ msgid "" "\"custom\" (user created) volumes." msgstr "" -#: lxc/remote.go:33 lxc/remote.go:34 +#: lxc/remote.go:34 lxc/remote.go:35 msgid "Manage the list of remote servers" msgstr "" @@ -3730,12 +3725,12 @@ msgid "" "Minimum level for log messages (only available when using pretty format)" msgstr "" -#: lxc/storage_bucket.go:111 lxc/storage_bucket.go:211 -#: lxc/storage_bucket.go:287 lxc/storage_bucket.go:406 -#: lxc/storage_bucket.go:563 lxc/storage_bucket.go:655 -#: lxc/storage_bucket.go:797 lxc/storage_bucket.go:878 -#: lxc/storage_bucket.go:953 lxc/storage_bucket.go:1032 -#: lxc/storage_bucket.go:1155 +#: lxc/storage_bucket.go:116 lxc/storage_bucket.go:216 +#: lxc/storage_bucket.go:292 lxc/storage_bucket.go:411 +#: lxc/storage_bucket.go:568 lxc/storage_bucket.go:660 +#: lxc/storage_bucket.go:802 lxc/storage_bucket.go:883 +#: lxc/storage_bucket.go:958 lxc/storage_bucket.go:1037 +#: lxc/storage_bucket.go:1160 msgid "Missing bucket name" msgstr "" @@ -3779,8 +3774,8 @@ msgstr "" msgid "Missing instance name" msgstr "" -#: lxc/storage_bucket.go:882 lxc/storage_bucket.go:957 -#: lxc/storage_bucket.go:1036 lxc/storage_bucket.go:1159 +#: lxc/storage_bucket.go:887 lxc/storage_bucket.go:962 +#: lxc/storage_bucket.go:1041 lxc/storage_bucket.go:1164 msgid "Missing key name" msgstr "" @@ -3788,10 +3783,10 @@ msgstr "" #: lxc/network_forward.go:481 lxc/network_forward.go:627 #: lxc/network_forward.go:746 lxc/network_forward.go:823 #: lxc/network_forward.go:889 lxc/network_load_balancer.go:201 -#: lxc/network_load_balancer.go:411 lxc/network_load_balancer.go:484 -#: lxc/network_load_balancer.go:630 lxc/network_load_balancer.go:750 -#: lxc/network_load_balancer.go:826 lxc/network_load_balancer.go:890 -#: lxc/network_load_balancer.go:991 lxc/network_load_balancer.go:1053 +#: lxc/network_load_balancer.go:416 lxc/network_load_balancer.go:489 +#: lxc/network_load_balancer.go:635 lxc/network_load_balancer.go:755 +#: lxc/network_load_balancer.go:831 lxc/network_load_balancer.go:895 +#: lxc/network_load_balancer.go:996 lxc/network_load_balancer.go:1058 msgid "Missing listen address" msgstr "" @@ -3816,26 +3811,26 @@ msgstr "" #: lxc/network_forward.go:477 lxc/network_forward.go:623 #: lxc/network_forward.go:742 lxc/network_forward.go:819 #: lxc/network_forward.go:885 lxc/network_load_balancer.go:123 -#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:261 -#: lxc/network_load_balancer.go:407 lxc/network_load_balancer.go:480 -#: lxc/network_load_balancer.go:626 lxc/network_load_balancer.go:746 -#: lxc/network_load_balancer.go:822 lxc/network_load_balancer.go:886 -#: lxc/network_load_balancer.go:987 lxc/network_load_balancer.go:1049 +#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:266 +#: lxc/network_load_balancer.go:412 lxc/network_load_balancer.go:485 +#: lxc/network_load_balancer.go:631 lxc/network_load_balancer.go:751 +#: lxc/network_load_balancer.go:827 lxc/network_load_balancer.go:891 +#: lxc/network_load_balancer.go:992 lxc/network_load_balancer.go:1054 #: lxc/network_peer.go:110 lxc/network_peer.go:180 lxc/network_peer.go:237 #: lxc/network_peer.go:355 lxc/network_peer.go:426 lxc/network_peer.go:556 #: lxc/network_peer.go:665 msgid "Missing network name" msgstr "" -#: lxc/network_zone.go:178 lxc/network_zone.go:234 lxc/network_zone.go:294 -#: lxc/network_zone.go:382 lxc/network_zone.go:503 lxc/network_zone.go:606 -#: lxc/network_zone.go:712 lxc/network_zone.go:780 lxc/network_zone.go:892 -#: lxc/network_zone.go:976 lxc/network_zone.go:1197 lxc/network_zone.go:1262 -#: lxc/network_zone.go:1307 +#: lxc/network_zone.go:179 lxc/network_zone.go:235 lxc/network_zone.go:299 +#: lxc/network_zone.go:387 lxc/network_zone.go:508 lxc/network_zone.go:611 +#: lxc/network_zone.go:717 lxc/network_zone.go:785 lxc/network_zone.go:897 +#: lxc/network_zone.go:981 lxc/network_zone.go:1202 lxc/network_zone.go:1267 +#: lxc/network_zone.go:1312 msgid "Missing network zone name" msgstr "" -#: lxc/network_zone.go:833 lxc/network_zone.go:1095 +#: lxc/network_zone.go:838 lxc/network_zone.go:1100 msgid "Missing network zone record name" msgstr "" @@ -3845,13 +3840,13 @@ msgid "Missing peer name" msgstr "" #: lxc/storage.go:194 lxc/storage.go:264 lxc/storage.go:370 lxc/storage.go:440 -#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:107 -#: lxc/storage_bucket.go:207 lxc/storage_bucket.go:283 -#: lxc/storage_bucket.go:402 lxc/storage_bucket.go:477 -#: lxc/storage_bucket.go:559 lxc/storage_bucket.go:651 -#: lxc/storage_bucket.go:793 lxc/storage_bucket.go:874 -#: lxc/storage_bucket.go:949 lxc/storage_bucket.go:1028 -#: lxc/storage_bucket.go:1151 lxc/storage_volume.go:189 +#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:112 +#: lxc/storage_bucket.go:212 lxc/storage_bucket.go:288 +#: lxc/storage_bucket.go:407 lxc/storage_bucket.go:482 +#: lxc/storage_bucket.go:564 lxc/storage_bucket.go:656 +#: lxc/storage_bucket.go:798 lxc/storage_bucket.go:879 +#: lxc/storage_bucket.go:954 lxc/storage_bucket.go:1033 +#: lxc/storage_bucket.go:1156 lxc/storage_volume.go:189 #: lxc/storage_volume.go:287 lxc/storage_volume.go:583 #: lxc/storage_volume.go:660 lxc/storage_volume.go:735 #: lxc/storage_volume.go:817 lxc/storage_volume.go:919 @@ -3971,7 +3966,7 @@ msgstr "" msgid "Moving the storage volume: %s" msgstr "" -#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1097 +#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1102 msgid "Multiple ports match. Use --force to remove them all" msgstr "" @@ -3990,10 +3985,10 @@ 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:677 lxc/project.go:498 -#: lxc/remote.go:731 lxc/storage.go:638 lxc/storage_bucket.go:506 -#: lxc/storage_bucket.go:826 lxc/storage_volume.go:1561 +#: lxc/network_acl.go:147 lxc/network_peer.go:139 lxc/network_zone.go:139 +#: lxc/network_zone.go:746 lxc/profile.go:677 lxc/project.go:498 +#: lxc/remote.go:732 lxc/storage.go:638 lxc/storage_bucket.go:511 +#: lxc/storage_bucket.go:831 lxc/storage_volume.go:1561 msgid "NAME" msgstr "" @@ -4019,7 +4014,7 @@ msgstr "" #: lxc/network.go:957 lxc/operation.go:154 lxc/project.go:456 #: lxc/project.go:461 lxc/project.go:466 lxc/project.go:471 lxc/project.go:476 -#: lxc/project.go:481 lxc/remote.go:691 lxc/remote.go:696 lxc/remote.go:701 +#: lxc/project.go:481 lxc/remote.go:692 lxc/remote.go:697 lxc/remote.go:702 msgid "NO" msgstr "" @@ -4046,7 +4041,7 @@ msgstr "" msgid "Name" msgstr "" -#: lxc/remote.go:141 +#: lxc/remote.go:142 msgid "Name of the project to use for this remote:" msgstr "" @@ -4095,12 +4090,12 @@ msgstr "" msgid "Network ACL %s renamed to %s" msgstr "" -#: lxc/network_zone.go:336 +#: lxc/network_zone.go:341 #, c-format msgid "Network Zone %s created" msgstr "" -#: lxc/network_zone.go:616 +#: lxc/network_zone.go:621 #, c-format msgid "Network Zone %s deleted" msgstr "" @@ -4115,12 +4110,12 @@ msgstr "" msgid "Network forward %s deleted" msgstr "" -#: lxc/network_load_balancer.go:365 +#: lxc/network_load_balancer.go:370 #, c-format msgid "Network load balancer %s created" msgstr "" -#: lxc/network_load_balancer.go:767 +#: lxc/network_load_balancer.go:772 #, c-format msgid "Network load balancer %s deleted" msgstr "" @@ -4158,12 +4153,12 @@ msgstr "" msgid "Network usage:" msgstr "" -#: lxc/network_zone.go:934 +#: lxc/network_zone.go:939 #, c-format msgid "Network zone record %s created" msgstr "" -#: lxc/network_zone.go:1207 +#: lxc/network_zone.go:1212 #, c-format msgid "Network zone record %s deleted" msgstr "" @@ -4198,11 +4193,11 @@ msgstr "" msgid "No device found for this storage volume" msgstr "" -#: lxc/network_load_balancer.go:921 +#: lxc/network_load_balancer.go:926 msgid "No matching backend found" msgstr "" -#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1108 +#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1113 msgid "No matching port(s) found" msgstr "" @@ -4248,7 +4243,7 @@ msgstr "" msgid "Only \"custom\" volumes can be snapshotted" msgstr "" -#: lxc/remote.go:332 +#: lxc/remote.go:333 msgid "Only https URLs are supported for simplestreams" msgstr "" @@ -4273,7 +4268,7 @@ msgstr "" msgid "Optimized Storage" msgstr "" -#: lxc/main.go:96 +#: lxc/main.go:97 msgid "Override the source project" msgstr "" @@ -4319,11 +4314,11 @@ msgstr "" msgid "PROJECT" msgstr "" -#: lxc/remote.go:733 +#: lxc/remote.go:734 msgid "PROTOCOL" msgstr "" -#: lxc/image.go:1073 lxc/remote.go:735 +#: lxc/image.go:1073 lxc/remote.go:736 msgid "PUBLIC" msgstr "" @@ -4339,7 +4334,7 @@ msgstr "" msgid "Partitions:" msgstr "" -#: lxc/main.go:361 +#: lxc/main.go:363 #, c-format msgid "Password for %s: " msgstr "" @@ -4352,7 +4347,7 @@ msgstr "" msgid "Perform an incremental copy" msgstr "" -#: lxc/remote.go:182 +#: lxc/remote.go:183 msgid "Please provide an alternate server address (empty to abort):" msgstr "" @@ -4364,7 +4359,7 @@ msgstr "" msgid "Please provide cluster member name: " msgstr "" -#: lxc/remote.go:462 +#: lxc/remote.go:463 msgid "Please type 'y', 'n' or the fingerprint:" msgstr "" @@ -4386,10 +4381,10 @@ msgstr "" #: lxc/config.go:1278 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/network_load_balancer.go:695 lxc/network_peer.go:611 +#: lxc/network_zone.go:557 lxc/network_zone.go:1149 lxc/profile.go:539 +#: lxc/project.go:316 lxc/storage.go:311 lxc/storage_bucket.go:349 +#: lxc/storage_bucket.go:1098 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 "" @@ -4398,7 +4393,7 @@ msgstr "" msgid "Pretty rendering (short for --format=pretty)" msgstr "" -#: lxc/main.go:94 +#: lxc/main.go:95 msgid "Print help" msgstr "" @@ -4406,7 +4401,7 @@ msgstr "" msgid "Print the raw response" msgstr "" -#: lxc/main.go:93 +#: lxc/main.go:94 msgid "Print version number" msgstr "" @@ -4495,7 +4490,7 @@ msgstr "" msgid "Project %s renamed to %s" msgstr "" -#: lxc/remote.go:106 +#: lxc/remote.go:107 msgid "Project to use for the remote" msgstr "" @@ -4593,7 +4588,7 @@ msgid "" "pool \"default\"." msgstr "" -#: lxc/remote.go:105 +#: lxc/remote.go:106 msgid "Public image server" msgstr "" @@ -4641,7 +4636,7 @@ msgstr "" msgid "RESOURCE" msgstr "" -#: lxc/storage_bucket.go:828 +#: lxc/storage_bucket.go:833 msgid "ROLE" msgstr "" @@ -4684,45 +4679,45 @@ msgstr "" msgid "Refreshing the image: %s" msgstr "" -#: lxc/remote.go:785 +#: lxc/remote.go:786 #, c-format msgid "Remote %s already exists" msgstr "" -#: lxc/project.go:769 lxc/remote.go:776 lxc/remote.go:849 lxc/remote.go:905 -#: lxc/remote.go:945 +#: lxc/project.go:769 lxc/remote.go:777 lxc/remote.go:850 lxc/remote.go:906 +#: lxc/remote.go:946 #, c-format msgid "Remote %s doesn't exist" msgstr "" -#: lxc/remote.go:301 +#: lxc/remote.go:302 #, c-format msgid "Remote %s exists as <%s>" msgstr "" -#: lxc/remote.go:857 +#: lxc/remote.go:858 #, c-format msgid "Remote %s is global and cannot be removed" msgstr "" -#: lxc/remote.go:780 lxc/remote.go:853 lxc/remote.go:949 +#: lxc/remote.go:781 lxc/remote.go:854 lxc/remote.go:950 #, c-format msgid "Remote %s is static and cannot be modified" msgstr "" -#: lxc/remote.go:290 +#: lxc/remote.go:291 msgid "Remote address must not be empty" msgstr "" -#: lxc/remote.go:101 +#: lxc/remote.go:102 msgid "Remote admin password" msgstr "" -#: lxc/remote.go:295 +#: lxc/remote.go:296 msgid "Remote names may not contain colons" msgstr "" -#: lxc/remote.go:102 +#: lxc/remote.go:103 msgid "Remote trust token" msgstr "" @@ -4748,7 +4743,7 @@ msgstr "" msgid "Remove a member from the cluster" msgstr "" -#: lxc/network_zone.go:1285 +#: lxc/network_zone.go:1290 msgid "Remove a network zone record entry" msgstr "" @@ -4756,7 +4751,7 @@ msgstr "" msgid "Remove aliases" msgstr "" -#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1025 +#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1030 msgid "Remove all ports that match" msgstr "" @@ -4764,15 +4759,15 @@ msgstr "" msgid "Remove all rules that match" msgstr "" -#: lxc/network_load_balancer.go:862 +#: lxc/network_load_balancer.go:867 msgid "Remove backend from a load balancer" msgstr "" -#: lxc/network_load_balancer.go:861 +#: lxc/network_load_balancer.go:866 msgid "Remove backends from a load balancer" msgstr "" -#: lxc/network_zone.go:1286 +#: lxc/network_zone.go:1291 msgid "Remove entries from a network zone record" msgstr "" @@ -4796,7 +4791,7 @@ msgstr "" msgid "Remove ports from a forward" msgstr "" -#: lxc/network_load_balancer.go:1023 lxc/network_load_balancer.go:1024 +#: lxc/network_load_balancer.go:1028 lxc/network_load_balancer.go:1029 msgid "Remove ports from a load balancer" msgstr "" @@ -4804,7 +4799,7 @@ msgstr "" msgid "Remove profiles from instances" msgstr "" -#: lxc/remote.go:827 lxc/remote.go:828 +#: lxc/remote.go:828 lxc/remote.go:829 msgid "Remove remotes" msgstr "" @@ -4861,7 +4856,7 @@ msgstr "" msgid "Rename projects" msgstr "" -#: lxc/remote.go:754 lxc/remote.go:755 +#: lxc/remote.go:755 lxc/remote.go:756 msgid "Rename remotes" msgstr "" @@ -4939,7 +4934,7 @@ msgid "Restrict the certificate to one or more projects" msgstr "" #: lxc/console.go:44 -msgid "Retrieve the instance's console log" +msgid "Retrieve the container's console log" msgstr "" #: lxc/init.go:347 @@ -4955,7 +4950,7 @@ msgstr "" msgid "Revoke cluster member join token" msgstr "" -#: lxc/storage_bucket.go:851 +#: lxc/storage_bucket.go:856 msgid "Role (admin or read-only)" msgstr "" @@ -5006,7 +5001,7 @@ msgstr "" msgid "STATE" msgstr "" -#: lxc/remote.go:736 +#: lxc/remote.go:737 msgid "STATIC" msgstr "" @@ -5030,11 +5025,11 @@ msgstr "" msgid "STP" msgstr "" -#: lxc/storage_bucket.go:853 +#: lxc/storage_bucket.go:858 msgid "Secret key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:909 +#: lxc/storage_bucket.go:914 #, c-format msgid "Secret key: %s" msgstr "" @@ -5043,19 +5038,19 @@ msgstr "" msgid "Send a raw query to LXD" msgstr "" -#: lxc/remote.go:104 +#: lxc/remote.go:105 msgid "Server authentication type (tls or oidc)" msgstr "" -#: lxc/remote.go:460 +#: lxc/remote.go:461 msgid "Server certificate NACKed by user" msgstr "" -#: lxc/remote.go:599 +#: lxc/remote.go:600 msgid "Server doesn't trust us after authentication" msgstr "" -#: lxc/remote.go:103 +#: lxc/remote.go:104 msgid "Server protocol (lxd or simplestreams)" msgstr "" @@ -5154,11 +5149,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_load_balancer.go:450 +#: lxc/network_load_balancer.go:455 msgid "Set network load balancer keys" msgstr "" -#: lxc/network_load_balancer.go:451 +#: lxc/network_load_balancer.go:456 msgid "" "Set network load balancer keys\n" "\n" @@ -5180,11 +5175,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:353 +#: lxc/network_zone.go:358 msgid "Set network zone configuration keys" msgstr "" -#: lxc/network_zone.go:354 +#: lxc/network_zone.go:359 msgid "" "Set network zone configuration keys\n" "\n" @@ -5193,7 +5188,7 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:951 lxc/network_zone.go:952 +#: lxc/network_zone.go:956 lxc/network_zone.go:957 msgid "Set network zone record configuration keys" msgstr "" @@ -5223,11 +5218,11 @@ msgid "" " lxc project set [:] " msgstr "" -#: lxc/storage_bucket.go:529 +#: lxc/storage_bucket.go:534 msgid "Set storage bucket configuration keys" msgstr "" -#: lxc/storage_bucket.go:530 +#: lxc/storage_bucket.go:535 msgid "" "Set storage bucket configuration keys\n" "\n" @@ -5262,7 +5257,7 @@ msgid "" " lxc storage volume set [:] [/] " msgstr "" -#: lxc/remote.go:923 lxc/remote.go:924 +#: lxc/remote.go:924 lxc/remote.go:925 msgid "Set the URL for the remote" msgstr "" @@ -5290,7 +5285,7 @@ msgstr "" msgid "Set the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:458 +#: lxc/network_load_balancer.go:463 msgid "Set the key as a network load balancer property" msgstr "" @@ -5302,11 +5297,11 @@ msgstr "" msgid "Set the key as a network property" msgstr "" -#: lxc/network_zone.go:361 +#: lxc/network_zone.go:366 msgid "Set the key as a network zone property" msgstr "" -#: lxc/network_zone.go:957 +#: lxc/network_zone.go:962 msgid "Set the key as a network zone record property" msgstr "" @@ -5318,7 +5313,7 @@ msgstr "" msgid "Set the key as a project property" msgstr "" -#: lxc/storage_bucket.go:537 +#: lxc/storage_bucket.go:542 msgid "Set the key as a storage bucket property" msgstr "" @@ -5338,11 +5333,11 @@ msgstr "" msgid "Setup SSH SFTP listener on address:port instead of mounting" msgstr "" -#: lxc/main.go:97 +#: lxc/main.go:98 msgid "Show all debug messages" msgstr "" -#: lxc/main.go:98 +#: lxc/main.go:99 msgid "Show all information messages" msgstr "" @@ -5411,7 +5406,7 @@ msgstr "" msgid "Show instance or server information" msgstr "" -#: lxc/main.go:271 lxc/main.go:272 +#: lxc/main.go:272 lxc/main.go:273 msgid "Show less common commands" msgstr "" @@ -5443,15 +5438,15 @@ msgstr "" msgid "Show network peer configurations" msgstr "" -#: lxc/network_zone.go:155 lxc/network_zone.go:156 +#: lxc/network_zone.go:156 lxc/network_zone.go:157 msgid "Show network zone configurations" msgstr "" -#: lxc/network_zone.go:758 +#: lxc/network_zone.go:763 msgid "Show network zone record configuration" msgstr "" -#: lxc/network_zone.go:759 +#: lxc/network_zone.go:764 msgid "Show network zone record configurations" msgstr "" @@ -5463,11 +5458,11 @@ msgstr "" msgid "Show project options" msgstr "" -#: lxc/storage_bucket.go:623 lxc/storage_bucket.go:624 +#: lxc/storage_bucket.go:628 lxc/storage_bucket.go:629 msgid "Show storage bucket configurations" msgstr "" -#: lxc/storage_bucket.go:1123 lxc/storage_bucket.go:1124 +#: lxc/storage_bucket.go:1128 lxc/storage_bucket.go:1129 msgid "Show storage bucket key configurations" msgstr "" @@ -5493,7 +5488,7 @@ msgid "" "that are granted via identity provider group mappings. \n" msgstr "" -#: lxc/remote.go:630 lxc/remote.go:631 +#: lxc/remote.go:631 lxc/remote.go:632 msgid "Show the default remote" msgstr "" @@ -5617,22 +5612,22 @@ msgstr "" msgid "Stopping the instance failed: %s" msgstr "" -#: lxc/storage_bucket.go:161 +#: lxc/storage_bucket.go:166 #, c-format msgid "Storage bucket %s created" msgstr "" -#: lxc/storage_bucket.go:228 +#: lxc/storage_bucket.go:233 #, c-format msgid "Storage bucket %s deleted" msgstr "" -#: lxc/storage_bucket.go:907 +#: lxc/storage_bucket.go:912 #, c-format msgid "Storage bucket key %s added" msgstr "" -#: lxc/storage_bucket.go:973 +#: lxc/storage_bucket.go:978 #, c-format msgid "Storage bucket key %s removed" msgstr "" @@ -5705,7 +5700,7 @@ msgstr "" msgid "Switch the current project" msgstr "" -#: lxc/remote.go:883 lxc/remote.go:884 +#: lxc/remote.go:884 lxc/remote.go:885 msgid "Switch the default remote" msgstr "" @@ -5820,7 +5815,7 @@ msgstr "" msgid "The property %q does not exist on the instance snapshot %s/%s: %v" msgstr "" -#: lxc/network_load_balancer.go:424 +#: lxc/network_load_balancer.go:429 #, c-format msgid "The property %q does not exist on the load balancer %q: %v" msgstr "" @@ -5845,12 +5840,12 @@ msgstr "" msgid "The property %q does not exist on the network peer %q: %v" msgstr "" -#: lxc/network_zone.go:246 +#: lxc/network_zone.go:247 #, c-format msgid "The property %q does not exist on the network zone %q: %v" msgstr "" -#: lxc/network_zone.go:845 +#: lxc/network_zone.go:850 #, c-format msgid "The property %q does not exist on the network zone record %q: %v" msgstr "" @@ -5865,7 +5860,7 @@ msgstr "" msgid "The property %q does not exist on the project %q: %v" msgstr "" -#: lxc/storage_bucket.go:426 +#: lxc/storage_bucket.go:431 #, c-format msgid "The property %q does not exist on the storage bucket %q: %v" msgstr "" @@ -5919,7 +5914,7 @@ msgstr "" msgid "This LXD server is not available on the network" msgstr "" -#: lxc/main.go:293 +#: lxc/main.go:294 msgid "" "This client hasn't been configured to use a remote LXD server yet.\n" "As your platform can't run native Linux instances, you must connect to a " @@ -5951,11 +5946,11 @@ msgstr "" msgid "To create a new network, use: lxc network create" msgstr "" -#: lxc/console.go:210 +#: lxc/console.go:215 msgid "To detach from the console, press: +a q" msgstr "" -#: lxc/main.go:403 +#: lxc/main.go:406 msgid "" "To start your first container, try: lxc launch ubuntu:24.04\n" "Or for a virtual machine: lxc launch ubuntu:24.04 --vm" @@ -6053,7 +6048,7 @@ msgstr "" msgid "UPLOAD DATE" msgstr "" -#: lxc/cluster.go:184 lxc/remote.go:732 +#: lxc/cluster.go:184 lxc/remote.go:733 msgid "URL" msgstr "" @@ -6062,7 +6057,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:679 lxc/project.go:506 +#: lxc/network_zone.go:141 lxc/profile.go:679 lxc/project.go:506 #: lxc/storage.go:647 lxc/storage_volume.go:1564 msgid "USED BY" msgstr "" @@ -6081,7 +6076,7 @@ msgstr "" msgid "Unable to create a temporary file: %v" msgstr "" -#: lxc/remote.go:213 lxc/remote.go:247 +#: lxc/remote.go:214 lxc/remote.go:248 msgid "Unavailable remote server" msgstr "" @@ -6101,7 +6096,7 @@ msgstr "" msgid "Unknown column shorthand char '%c' in '%s'" msgstr "" -#: lxc/console.go:159 +#: lxc/console.go:164 #, c-format msgid "Unknown console type %q" msgstr "" @@ -6161,11 +6156,11 @@ msgstr "" msgid "Unset network forward keys" msgstr "" -#: lxc/network_load_balancer.go:548 +#: lxc/network_load_balancer.go:553 msgid "Unset network load balancer configuration keys" msgstr "" -#: lxc/network_load_balancer.go:549 +#: lxc/network_load_balancer.go:554 msgid "Unset network load balancer keys" msgstr "" @@ -6177,11 +6172,11 @@ msgstr "" msgid "Unset network peer keys" msgstr "" -#: lxc/network_zone.go:433 lxc/network_zone.go:434 +#: lxc/network_zone.go:438 lxc/network_zone.go:439 msgid "Unset network zone configuration keys" msgstr "" -#: lxc/network_zone.go:1027 lxc/network_zone.go:1028 +#: lxc/network_zone.go:1032 lxc/network_zone.go:1033 msgid "Unset network zone record configuration keys" msgstr "" @@ -6193,7 +6188,7 @@ msgstr "" msgid "Unset project configuration keys" msgstr "" -#: lxc/storage_bucket.go:692 lxc/storage_bucket.go:693 +#: lxc/storage_bucket.go:697 lxc/storage_bucket.go:698 msgid "Unset storage bucket configuration keys" msgstr "" @@ -6217,7 +6212,7 @@ msgstr "" msgid "Unset the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:552 +#: lxc/network_load_balancer.go:557 msgid "Unset the key as a network load balancer property" msgstr "" @@ -6229,11 +6224,11 @@ msgstr "" msgid "Unset the key as a network property" msgstr "" -#: lxc/network_zone.go:437 +#: lxc/network_zone.go:442 msgid "Unset the key as a network zone property" msgstr "" -#: lxc/network_zone.go:1031 +#: lxc/network_zone.go:1036 msgid "Unset the key as a network zone record property" msgstr "" @@ -6245,7 +6240,7 @@ msgstr "" msgid "Unset the key as a project property" msgstr "" -#: lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:701 msgid "Unset the key as a storage bucket property" msgstr "" @@ -6307,7 +6302,7 @@ msgid "" "Use storage driver optimized format (can only be restored on a similar pool)" msgstr "" -#: lxc/main.go:100 +#: lxc/main.go:101 msgid "Use with help or --help to view sub-commands" msgstr "" @@ -6404,7 +6399,7 @@ msgstr "" #: lxc/network.go:959 lxc/operation.go:156 lxc/project.go:458 #: lxc/project.go:463 lxc/project.go:468 lxc/project.go:473 lxc/project.go:478 -#: lxc/project.go:483 lxc/remote.go:693 lxc/remote.go:698 lxc/remote.go:703 +#: lxc/project.go:483 lxc/remote.go:694 lxc/remote.go:699 lxc/remote.go:704 msgid "YES" msgstr "" @@ -6439,7 +6434,7 @@ 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/network.go:909 lxc/network_acl.go:91 lxc/network_zone.go:83 #: 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 "[:]" @@ -6502,19 +6497,19 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:154 lxc/network_zone.go:463 lxc/network_zone.go:581 +#: lxc/network_zone.go:155 lxc/network_zone.go:468 lxc/network_zone.go:586 msgid "[:]" msgstr "" -#: lxc/network_zone.go:209 lxc/network_zone.go:432 +#: lxc/network_zone.go:210 lxc/network_zone.go:437 msgid "[:] " msgstr "" -#: lxc/network_zone.go:352 +#: lxc/network_zone.go:357 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:269 +#: lxc/network_zone.go:270 msgid "[:] [key=value...]" msgstr "" @@ -6760,30 +6755,30 @@ msgstr "" #: lxc/network_forward.go:169 lxc/network_forward.go:574 #: lxc/network_forward.go:715 lxc/network_load_balancer.go:171 -#: lxc/network_load_balancer.go:577 lxc/network_load_balancer.go:719 +#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:724 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:860 +#: lxc/network_load_balancer.go:865 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:796 +#: lxc/network_load_balancer.go:801 msgid "" "[:] " "[]" msgstr "" #: lxc/network_forward.go:377 lxc/network_forward.go:544 -#: lxc/network_load_balancer.go:381 lxc/network_load_balancer.go:547 +#: lxc/network_load_balancer.go:386 lxc/network_load_balancer.go:552 msgid "[:] " msgstr "" -#: lxc/network_forward.go:446 lxc/network_load_balancer.go:449 +#: lxc/network_forward.go:446 lxc/network_load_balancer.go:454 msgid "[:] =..." msgstr "" -#: lxc/network_load_balancer.go:961 +#: lxc/network_load_balancer.go:966 msgid "" "[:] " "[,...]" @@ -6795,7 +6790,7 @@ msgid "" " []" msgstr "" -#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1022 +#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1027 msgid "[:] [] []" msgstr "" @@ -6846,7 +6841,7 @@ msgid "[:]" msgstr "" #: lxc/storage.go:167 lxc/storage.go:218 lxc/storage.go:412 lxc/storage.go:759 -#: lxc/storage_bucket.go:449 +#: lxc/storage_bucket.go:454 msgid "[:]" msgstr "" @@ -6854,18 +6849,18 @@ msgstr "" msgid "[:] []" msgstr "" -#: lxc/storage_bucket.go:180 lxc/storage_bucket.go:242 -#: lxc/storage_bucket.go:622 lxc/storage_bucket.go:764 +#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:247 +#: lxc/storage_bucket.go:627 lxc/storage_bucket.go:769 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:375 lxc/storage_bucket.go:691 -#: lxc/storage_bucket.go:845 lxc/storage_bucket.go:923 -#: lxc/storage_bucket.go:987 lxc/storage_bucket.go:1122 +#: lxc/storage_bucket.go:380 lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:850 lxc/storage_bucket.go:928 +#: lxc/storage_bucket.go:992 lxc/storage_bucket.go:1127 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:528 +#: lxc/storage_bucket.go:533 msgid "[:] =..." msgstr "" @@ -7009,27 +7004,27 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:686 +#: lxc/network_zone.go:691 msgid "[:]" msgstr "" -#: lxc/network_zone.go:757 lxc/network_zone.go:1056 lxc/network_zone.go:1173 +#: lxc/network_zone.go:762 lxc/network_zone.go:1061 lxc/network_zone.go:1178 msgid "[:] " msgstr "" -#: lxc/network_zone.go:809 lxc/network_zone.go:1026 +#: lxc/network_zone.go:814 lxc/network_zone.go:1031 msgid "[:] " msgstr "" -#: lxc/network_zone.go:950 +#: lxc/network_zone.go:955 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:1238 lxc/network_zone.go:1284 +#: lxc/network_zone.go:1243 lxc/network_zone.go:1289 msgid "[:] " msgstr "" -#: lxc/network_zone.go:868 +#: lxc/network_zone.go:873 msgid "[:] [key=value...]" msgstr "" @@ -7053,7 +7048,7 @@ msgstr "" msgid "[:][] [...]" msgstr "" -#: lxc/remote.go:88 +#: lxc/remote.go:89 msgid "[] " msgstr "" @@ -7061,7 +7056,7 @@ msgstr "" msgid "[[:]]" msgstr "" -#: lxc/project.go:488 lxc/remote.go:722 +#: lxc/project.go:488 lxc/remote.go:723 msgid "current" msgstr "" @@ -7324,6 +7319,23 @@ msgid "" " Create a new OVN network called bar using baz as its uplink network" msgstr "" +#: lxc/network_load_balancer.go:239 +msgid "" +"lxc network load-balancer create n1 127.0.0.1\n" +"\n" +"lxc network load-balancer create n1 127.0.0.1 < config.yaml\n" +" Create network load-balancer for network n1 with configuration from " +"config.yaml" +msgstr "" + +#: lxc/network_zone.go:273 +msgid "" +"lxc network zone create z1\n" +"\n" +"lxc network zone create z1 < config.yaml\n" +" Create network zone z1 with configuration from config.yaml" +msgstr "" + #: lxc/operation.go:195 msgid "" "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n" @@ -7394,26 +7406,36 @@ msgid "" " Restore the snapshot." msgstr "" -#: lxc/storage_bucket.go:245 +#: lxc/storage_bucket.go:84 +msgid "" +"lxc storage bucket create p1 b01\n" +"\tCreate a new storage bucket name b01 in storage pool p1\n" +"\n" +"lxc storage bucket create p1 b01 < config.yaml\n" +"\tCreate a new storage bucket name b01 in storage pool p1 using the content " +"of config.yaml" +msgstr "" + +#: lxc/storage_bucket.go:250 msgid "" "lxc storage bucket edit [:] < bucket.yaml\n" " Update a storage bucket using the content of bucket.yaml." msgstr "" -#: lxc/storage_bucket.go:990 +#: lxc/storage_bucket.go:995 msgid "" "lxc storage bucket edit [:] < key.yaml\n" " Update a storage bucket key using the content of key.yaml." msgstr "" -#: lxc/storage_bucket.go:1125 +#: lxc/storage_bucket.go:1130 msgid "" "lxc storage bucket key show default data foo\n" " Will show the properties of a bucket key called \"foo\" for a bucket " "called \"data\" in the \"default\" pool." msgstr "" -#: lxc/storage_bucket.go:625 +#: lxc/storage_bucket.go:630 msgid "" "lxc storage bucket show default data\n" " Will show the properties of a bucket called \"data\" in the \"default\" " @@ -7432,7 +7454,7 @@ msgid "" "\t\tCreate a new custom volume using backup0.tar.gz as the source." msgstr "" -#: lxc/remote.go:459 +#: lxc/remote.go:460 msgid "n" msgstr "" @@ -7444,7 +7466,7 @@ msgstr "" msgid "no" msgstr "" -#: lxc/remote.go:452 +#: lxc/remote.go:453 msgid "ok (y/n/[fingerprint])?" msgstr "" @@ -7481,7 +7503,7 @@ msgstr "" msgid "used by" msgstr "" -#: lxc/remote.go:461 +#: lxc/remote.go:462 msgid "y" msgstr "" diff --git a/po/sl.po b/po/sl.po index e77ed047ff10..f57bf7947e68 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-08-20 09:31+0100\n" +"POT-Creation-Date: 2024-08-30 09:27+0100\n" "PO-Revision-Date: 2022-03-10 15:10+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Slovenian " msgstr "" -#: lxc/remote.go:825 lxc/remote.go:882 +#: lxc/remote.go:826 lxc/remote.go:883 msgid "" msgstr "" -#: lxc/remote.go:922 +#: lxc/remote.go:923 msgid " " msgstr "" -#: lxc/remote.go:752 +#: lxc/remote.go:753 msgid " " msgstr "" @@ -557,7 +557,7 @@ msgstr "" msgid "ARCHITECTURE" msgstr "" -#: lxc/remote.go:734 +#: lxc/remote.go:735 msgid "AUTH TYPE" msgstr "" @@ -565,15 +565,15 @@ msgstr "" msgid "AUTHENTICATION METHOD" msgstr "" -#: lxc/remote.go:100 +#: lxc/remote.go:101 msgid "Accept certificate" msgstr "" -#: lxc/storage_bucket.go:852 +#: lxc/storage_bucket.go:857 msgid "Access key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:908 +#: lxc/storage_bucket.go:913 #, c-format msgid "Access key: %s" msgstr "" @@ -607,19 +607,19 @@ msgstr "" msgid "Add a group to an identity provider group" msgstr "" -#: lxc/network_zone.go:1239 +#: lxc/network_zone.go:1244 msgid "Add a network zone record entry" msgstr "" -#: lxc/network_load_balancer.go:798 +#: lxc/network_load_balancer.go:803 msgid "Add backend to a load balancer" msgstr "" -#: lxc/network_load_balancer.go:797 +#: lxc/network_load_balancer.go:802 msgid "Add backends to a load balancer" msgstr "" -#: lxc/network_zone.go:1240 +#: lxc/network_zone.go:1245 msgid "Add entries to a network zone record" msgstr "" @@ -635,11 +635,11 @@ msgstr "" msgid "Add new aliases" msgstr "" -#: lxc/remote.go:89 +#: lxc/remote.go:90 msgid "Add new remote servers" msgstr "" -#: lxc/remote.go:90 +#: lxc/remote.go:91 msgid "" "Add new remote servers\n" "\n" @@ -680,7 +680,7 @@ msgstr "" msgid "Add ports to a forward" msgstr "" -#: lxc/network_load_balancer.go:962 lxc/network_load_balancer.go:963 +#: lxc/network_load_balancer.go:967 lxc/network_load_balancer.go:968 msgid "Add ports to a load balancer" msgstr "" @@ -701,17 +701,17 @@ msgstr "" msgid "Address: %s" msgstr "" -#: lxc/storage_bucket.go:164 +#: lxc/storage_bucket.go:169 #, c-format msgid "Admin access key: %s" msgstr "" -#: lxc/remote.go:566 +#: lxc/remote.go:567 #, c-format msgid "Admin password (or token) for %s:" msgstr "" -#: lxc/storage_bucket.go:165 +#: lxc/storage_bucket.go:170 #, c-format msgid "Admin secret key: %s" msgstr "" @@ -743,7 +743,7 @@ msgstr "" msgid "All projects" msgstr "" -#: lxc/remote.go:181 +#: lxc/remote.go:182 msgid "All server addresses are unavailable" msgstr "" @@ -766,7 +766,7 @@ msgstr "" msgid "Are you sure you want to %s cluster member %q? (yes/no) [default=no]: " msgstr "" -#: lxc/console.go:383 +#: lxc/console.go:388 msgid "As neither could be found, the raw SPICE socket can be found at:" msgstr "" @@ -814,7 +814,7 @@ msgid "" "as well as retrieve past log entries from it." msgstr "" -#: lxc/remote.go:548 +#: lxc/remote.go:549 #, c-format msgid "Authentication type '%s' not supported by server" msgstr "" @@ -833,11 +833,11 @@ msgstr "" msgid "Auto update: %s" msgstr "" -#: lxc/network_forward.go:240 lxc/network_load_balancer.go:242 +#: lxc/network_forward.go:240 lxc/network_load_balancer.go:247 msgid "Auto-allocate an IPv4 or IPv6 listen address. One of 'ipv4', 'ipv6'." msgstr "" -#: lxc/remote.go:136 +#: lxc/remote.go:137 msgid "Available projects:" msgstr "" @@ -869,8 +869,8 @@ msgid "Bad device override syntax, expecting ,=: %s" msgstr "" #: lxc/network.go:333 lxc/network_acl.go:382 lxc/network_forward.go:293 -#: lxc/network_load_balancer.go:296 lxc/network_peer.go:280 -#: lxc/network_zone.go:324 lxc/network_zone.go:922 lxc/storage_bucket.go:136 +#: lxc/network_load_balancer.go:301 lxc/network_peer.go:280 +#: lxc/network_zone.go:329 lxc/network_zone.go:927 lxc/storage_bucket.go:141 #, c-format msgid "Bad key/value pair: %s" msgstr "" @@ -992,7 +992,7 @@ msgstr "" msgid "Can't read from stdin: %w" msgstr "" -#: lxc/remote.go:861 +#: lxc/remote.go:862 msgid "Can't remove the default remote" msgstr "" @@ -1058,15 +1058,14 @@ msgstr "" msgid "Certificate add token for %s deleted" msgstr "" -#: lxc/remote.go:218 -#, c-format -msgid "" -"Certificate fingerprint mismatch between certificate token and server %q" +#: lxc/remote.go:452 +msgid "Certificate fingerprint" msgstr "" -#: lxc/remote.go:451 +#: lxc/remote.go:219 #, c-format -msgid "Certificate fingerprint: %s" +msgid "" +"Certificate fingerprint mismatch between certificate token and server %q" msgstr "" #: lxc/network.go:893 @@ -1078,7 +1077,7 @@ msgstr "" msgid "Client %s certificate add token:" msgstr "" -#: lxc/remote.go:603 +#: lxc/remote.go:604 msgid "Client certificate now trusted by server:" msgstr "" @@ -1140,18 +1139,18 @@ msgstr "" #: lxc/network_forward.go:456 lxc/network_forward.go:579 #: lxc/network_forward.go:721 lxc/network_forward.go:798 #: lxc/network_forward.go:864 lxc/network_load_balancer.go:176 -#: lxc/network_load_balancer.go:241 lxc/network_load_balancer.go:459 -#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:725 -#: lxc/network_load_balancer.go:801 lxc/network_load_balancer.go:865 -#: lxc/network_load_balancer.go:966 lxc/network_load_balancer.go:1028 +#: lxc/network_load_balancer.go:246 lxc/network_load_balancer.go:464 +#: lxc/network_load_balancer.go:587 lxc/network_load_balancer.go:730 +#: lxc/network_load_balancer.go:806 lxc/network_load_balancer.go:870 +#: lxc/network_load_balancer.go:971 lxc/network_load_balancer.go:1033 #: lxc/storage.go:99 lxc/storage.go:347 lxc/storage.go:418 lxc/storage.go:671 -#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:85 -#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:248 -#: lxc/storage_bucket.go:379 lxc/storage_bucket.go:536 -#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:695 -#: lxc/storage_bucket.go:770 lxc/storage_bucket.go:850 -#: lxc/storage_bucket.go:928 lxc/storage_bucket.go:993 -#: lxc/storage_bucket.go:1129 lxc/storage_volume.go:358 +#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:90 +#: lxc/storage_bucket.go:190 lxc/storage_bucket.go:253 +#: lxc/storage_bucket.go:384 lxc/storage_bucket.go:541 +#: lxc/storage_bucket.go:634 lxc/storage_bucket.go:700 +#: lxc/storage_bucket.go:775 lxc/storage_bucket.go:855 +#: lxc/storage_bucket.go:933 lxc/storage_bucket.go:998 +#: lxc/storage_bucket.go:1134 lxc/storage_volume.go:358 #: lxc/storage_volume.go:560 lxc/storage_volume.go:639 #: lxc/storage_volume.go:883 lxc/storage_volume.go:1097 #: lxc/storage_volume.go:1210 lxc/storage_volume.go:1678 @@ -1179,11 +1178,11 @@ msgstr "" msgid "Columns" msgstr "" -#: lxc/main.go:81 +#: lxc/main.go:82 msgid "Command line client for LXD" msgstr "" -#: lxc/main.go:82 +#: lxc/main.go:83 msgid "" "Command line client for LXD\n" "\n" @@ -1215,19 +1214,15 @@ msgstr "" #: lxc/config.go:347 lxc/config.go:1277 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/network_load_balancer.go:694 lxc/network_peer.go:610 +#: lxc/network_zone.go:556 lxc/network_zone.go:1148 lxc/profile.go:538 +#: lxc/project.go:315 lxc/storage.go:310 lxc/storage_bucket.go:348 +#: lxc/storage_bucket.go:1097 lxc/storage_volume.go:1016 #: lxc/storage_volume.go:1048 #, c-format msgid "Config parsing error: %s" msgstr "" -#: lxc/console.go:140 -msgid "Console log:" -msgstr "" - #: lxc/storage_volume.go:561 msgid "Content type, block or filesystem" msgstr "" @@ -1330,12 +1325,12 @@ msgstr "" msgid "Cores:" msgstr "" -#: lxc/remote.go:486 +#: lxc/remote.go:487 #, c-format msgid "Could not close server cert file %q: %w" msgstr "" -#: lxc/remote.go:224 lxc/remote.go:470 +#: lxc/remote.go:225 lxc/remote.go:471 msgid "Could not create server cert dir" msgstr "" @@ -1374,12 +1369,12 @@ msgstr "" msgid "Could not write new remote certificate for remote '%s' with error: %v" msgstr "" -#: lxc/remote.go:481 +#: lxc/remote.go:482 #, c-format msgid "Could not write server cert file %q: %w" msgstr "" -#: lxc/network_zone.go:1327 +#: lxc/network_zone.go:1332 msgid "Couldn't find a matching entry" msgstr "" @@ -1431,7 +1426,7 @@ msgstr "" msgid "Create instances from images" msgstr "" -#: lxc/storage_bucket.go:846 lxc/storage_bucket.go:847 +#: lxc/storage_bucket.go:851 lxc/storage_bucket.go:852 msgid "Create key for a storage bucket" msgstr "" @@ -1463,11 +1458,11 @@ msgstr "" msgid "Create new network peering" msgstr "" -#: lxc/network_zone.go:869 lxc/network_zone.go:870 +#: lxc/network_zone.go:874 lxc/network_zone.go:875 msgid "Create new network zone record" msgstr "" -#: lxc/network_zone.go:270 lxc/network_zone.go:271 +#: lxc/network_zone.go:271 lxc/network_zone.go:272 msgid "Create new network zones" msgstr "" @@ -1518,9 +1513,9 @@ msgstr "" #: 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/network_zone.go:140 lxc/network_zone.go:747 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_bucket.go:512 lxc/storage_bucket.go:832 #: lxc/storage_volume.go:1562 msgid "DESCRIPTION" msgstr "" @@ -1585,7 +1580,7 @@ msgstr "" msgid "Delete instances and snapshots" msgstr "" -#: lxc/storage_bucket.go:924 lxc/storage_bucket.go:925 +#: lxc/storage_bucket.go:929 lxc/storage_bucket.go:930 msgid "Delete key from a storage bucket" msgstr "" @@ -1597,7 +1592,7 @@ msgstr "" msgid "Delete network forwards" msgstr "" -#: lxc/network_load_balancer.go:721 lxc/network_load_balancer.go:722 +#: lxc/network_load_balancer.go:726 lxc/network_load_balancer.go:727 msgid "Delete network load balancers" msgstr "" @@ -1605,11 +1600,11 @@ msgstr "" msgid "Delete network peerings" msgstr "" -#: lxc/network_zone.go:1175 lxc/network_zone.go:1176 +#: lxc/network_zone.go:1180 lxc/network_zone.go:1181 msgid "Delete network zone record" msgstr "" -#: lxc/network_zone.go:583 lxc/network_zone.go:584 +#: lxc/network_zone.go:588 lxc/network_zone.go:589 msgid "Delete network zones" msgstr "" @@ -1625,7 +1620,7 @@ msgstr "" msgid "Delete projects" msgstr "" -#: lxc/storage_bucket.go:182 lxc/storage_bucket.go:183 +#: lxc/storage_bucket.go:187 lxc/storage_bucket.go:188 msgid "Delete storage buckets" msgstr "" @@ -1681,7 +1676,7 @@ msgstr "" #: 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/info.go:32 lxc/init.go:43 lxc/launch.go:24 lxc/list.go:48 lxc/main.go:83 #: 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 @@ -1700,22 +1695,22 @@ msgstr "" #: 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_load_balancer.go:238 lxc/network_load_balancer.go:388 +#: lxc/network_load_balancer.go:456 lxc/network_load_balancer.go:554 +#: lxc/network_load_balancer.go:584 lxc/network_load_balancer.go:727 +#: lxc/network_load_balancer.go:788 lxc/network_load_balancer.go:803 +#: lxc/network_load_balancer.go:867 lxc/network_load_balancer.go:953 +#: lxc/network_load_balancer.go:968 lxc/network_load_balancer.go:1029 #: 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/network_zone.go:29 lxc/network_zone.go:86 lxc/network_zone.go:157 +#: lxc/network_zone.go:212 lxc/network_zone.go:272 lxc/network_zone.go:359 +#: lxc/network_zone.go:439 lxc/network_zone.go:470 lxc/network_zone.go:589 +#: lxc/network_zone.go:637 lxc/network_zone.go:694 lxc/network_zone.go:764 +#: lxc/network_zone.go:816 lxc/network_zone.go:875 lxc/network_zone.go:957 +#: lxc/network_zone.go:1033 lxc/network_zone.go:1063 lxc/network_zone.go:1181 +#: lxc/network_zone.go:1230 lxc/network_zone.go:1245 lxc/network_zone.go:1291 #: 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 @@ -1724,19 +1719,19 @@ msgstr "" #: 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:631 lxc/remote.go:669 lxc/remote.go:755 lxc/remote.go:828 -#: lxc/remote.go:884 lxc/remote.go:924 lxc/rename.go:21 lxc/restore.go:24 +#: lxc/query.go:34 lxc/rebuild.go:27 lxc/remote.go:35 lxc/remote.go:91 +#: lxc/remote.go:632 lxc/remote.go:670 lxc/remote.go:756 lxc/remote.go:829 +#: lxc/remote.go:885 lxc/remote.go:925 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_bucket.go:29 lxc/storage_bucket.go:83 lxc/storage_bucket.go:188 +#: lxc/storage_bucket.go:249 lxc/storage_bucket.go:382 +#: lxc/storage_bucket.go:458 lxc/storage_bucket.go:535 +#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:698 +#: lxc/storage_bucket.go:732 lxc/storage_bucket.go:773 +#: lxc/storage_bucket.go:852 lxc/storage_bucket.go:930 +#: lxc/storage_bucket.go:994 lxc/storage_bucket.go:1129 #: 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 @@ -1872,7 +1867,7 @@ msgstr "" msgid "Don't require user confirmation for using --force" msgstr "" -#: lxc/main.go:99 +#: lxc/main.go:100 msgid "Don't show progress information" msgstr "" @@ -1885,7 +1880,7 @@ msgstr "" msgid "Driver: %v (%v)" msgstr "" -#: lxc/network_zone.go:743 +#: lxc/network_zone.go:748 msgid "ENTRIES" msgstr "" @@ -1963,7 +1958,7 @@ msgstr "" msgid "Edit network forward configurations as YAML" msgstr "" -#: lxc/network_load_balancer.go:578 lxc/network_load_balancer.go:579 +#: lxc/network_load_balancer.go:583 lxc/network_load_balancer.go:584 msgid "Edit network load balancer configurations as YAML" msgstr "" @@ -1971,11 +1966,11 @@ msgstr "" msgid "Edit network peer configurations as YAML" msgstr "" -#: lxc/network_zone.go:464 lxc/network_zone.go:465 +#: lxc/network_zone.go:469 lxc/network_zone.go:470 msgid "Edit network zone configurations as YAML" msgstr "" -#: lxc/network_zone.go:1057 lxc/network_zone.go:1058 +#: lxc/network_zone.go:1062 lxc/network_zone.go:1063 msgid "Edit network zone record configurations as YAML" msgstr "" @@ -1987,11 +1982,11 @@ msgstr "" msgid "Edit project configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:243 lxc/storage_bucket.go:244 +#: lxc/storage_bucket.go:248 lxc/storage_bucket.go:249 msgid "Edit storage bucket configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:988 lxc/storage_bucket.go:989 +#: lxc/storage_bucket.go:993 lxc/storage_bucket.go:994 msgid "Edit storage bucket key as YAML" msgstr "" @@ -2032,7 +2027,7 @@ msgid "" " for the address if not yet set." msgstr "" -#: lxc/network_zone.go:1242 +#: lxc/network_zone.go:1247 msgid "Entry TTL" msgstr "" @@ -2061,9 +2056,9 @@ msgstr "" #: lxc/cluster.go:414 lxc/config.go:624 lxc/config.go:656 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/network_load_balancer.go:527 lxc/network_peer.go:463 +#: lxc/network_zone.go:414 lxc/network_zone.go:1008 lxc/profile.go:876 +#: lxc/project.go:634 lxc/storage.go:727 lxc/storage_bucket.go:602 #: lxc/storage_volume.go:1947 lxc/storage_volume.go:1985 #, c-format msgid "Error setting properties: %v" @@ -2075,10 +2070,10 @@ 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/network_forward.go:513 lxc/network_load_balancer.go:521 +#: lxc/network_peer.go:457 lxc/network_zone.go:408 lxc/network_zone.go:1002 #: lxc/profile.go:870 lxc/project.go:628 lxc/storage.go:721 -#: lxc/storage_bucket.go:591 lxc/storage_volume.go:1941 +#: lxc/storage_bucket.go:596 lxc/storage_volume.go:1941 #: lxc/storage_volume.go:1979 #, c-format msgid "Error unsetting property: %v" @@ -2264,7 +2259,7 @@ msgstr "" msgid "Failed parsing SSH host key: %w" msgstr "" -#: lxc/console.go:361 +#: lxc/console.go:366 #, c-format msgid "Failed starting command: %w" msgstr "" @@ -2279,11 +2274,11 @@ msgstr "" msgid "Failed to accept incoming connection: %w" msgstr "" -#: lxc/remote.go:190 +#: lxc/remote.go:191 msgid "Failed to add remote" msgstr "" -#: lxc/remote.go:241 +#: lxc/remote.go:242 #, c-format msgid "Failed to close server cert file %q: %w" msgstr "" @@ -2293,7 +2288,7 @@ msgstr "" msgid "Failed to connect to cluster member: %w" msgstr "" -#: lxc/remote.go:231 +#: lxc/remote.go:232 #, c-format msgid "Failed to create %q: %w" msgstr "" @@ -2303,12 +2298,12 @@ msgstr "" msgid "Failed to create alias %s: %w" msgstr "" -#: lxc/remote.go:256 +#: lxc/remote.go:257 #, c-format msgid "Failed to create certificate: %w" msgstr "" -#: lxc/remote.go:263 +#: lxc/remote.go:264 #, c-format msgid "Failed to find project: %w" msgstr "" @@ -2333,7 +2328,7 @@ msgstr "" msgid "Failed to walk path for %s: %s" msgstr "" -#: lxc/remote.go:236 +#: lxc/remote.go:237 #, c-format msgid "Failed to write server cert file %q: %w" msgstr "" @@ -2342,7 +2337,7 @@ msgstr "" msgid "Fast mode (same as --columns=nsacPt)" msgstr "" -#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:115 +#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:116 #: lxc/operation.go:136 msgid "Filtering isn't supported yet" msgstr "" @@ -2380,7 +2375,7 @@ msgstr "" msgid "Force the removal of running instances" msgstr "" -#: lxc/main.go:95 +#: lxc/main.go:96 msgid "Force using the local unix socket" msgstr "" @@ -2414,10 +2409,10 @@ msgstr "" #: 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/network_peer.go:84 lxc/network_zone.go:89 lxc/network_zone.go:697 #: lxc/operation.go:108 lxc/profile.go:637 lxc/project.go:412 -#: lxc/project.go:804 lxc/remote.go:673 lxc/storage.go:588 -#: lxc/storage_bucket.go:454 lxc/storage_bucket.go:769 +#: lxc/project.go:804 lxc/remote.go:674 lxc/storage.go:588 +#: lxc/storage_bucket.go:459 lxc/storage_bucket.go:774 #: lxc/storage_volume.go:1446 lxc/warning.go:93 msgid "Format (csv|json|table|yaml|compact)" msgstr "" @@ -2454,7 +2449,7 @@ msgstr "" msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)" msgstr "" -#: lxc/remote.go:737 +#: lxc/remote.go:738 msgid "GLOBAL" msgstr "" @@ -2474,7 +2469,7 @@ msgstr "" msgid "Generate manpages for all commands" msgstr "" -#: lxc/remote.go:159 lxc/remote.go:397 +#: lxc/remote.go:160 lxc/remote.go:398 msgid "Generating a client certificate. This may take a minute..." msgstr "" @@ -2506,7 +2501,7 @@ msgstr "" msgid "Get the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:386 +#: lxc/network_load_balancer.go:391 msgid "Get the key as a network load balancer property" msgstr "" @@ -2518,11 +2513,11 @@ msgstr "" msgid "Get the key as a network property" msgstr "" -#: lxc/network_zone.go:214 +#: lxc/network_zone.go:215 msgid "Get the key as a network zone property" msgstr "" -#: lxc/network_zone.go:814 +#: lxc/network_zone.go:819 msgid "Get the key as a network zone record property" msgstr "" @@ -2534,7 +2529,7 @@ msgstr "" msgid "Get the key as a project property" msgstr "" -#: lxc/storage_bucket.go:380 +#: lxc/storage_bucket.go:385 msgid "Get the key as a storage bucket property" msgstr "" @@ -2574,7 +2569,7 @@ msgstr "" msgid "Get values for network forward configuration keys" msgstr "" -#: lxc/network_load_balancer.go:382 lxc/network_load_balancer.go:383 +#: lxc/network_load_balancer.go:387 lxc/network_load_balancer.go:388 msgid "Get values for network load balancer configuration keys" msgstr "" @@ -2582,11 +2577,11 @@ msgstr "" msgid "Get values for network peer configuration keys" msgstr "" -#: lxc/network_zone.go:210 lxc/network_zone.go:211 +#: lxc/network_zone.go:211 lxc/network_zone.go:212 msgid "Get values for network zone configuration keys" msgstr "" -#: lxc/network_zone.go:810 lxc/network_zone.go:811 +#: lxc/network_zone.go:815 lxc/network_zone.go:816 msgid "Get values for network zone record configuration keys" msgstr "" @@ -2598,7 +2593,7 @@ msgstr "" msgid "Get values for project configuration keys" msgstr "" -#: lxc/storage_bucket.go:376 lxc/storage_bucket.go:377 +#: lxc/storage_bucket.go:381 lxc/storage_bucket.go:382 msgid "Get values for storage bucket configuration keys" msgstr "" @@ -2738,7 +2733,7 @@ msgstr "" msgid "If the snapshot name already exists, delete and create a new one" msgstr "" -#: lxc/main.go:398 +#: lxc/main.go:400 msgid "" "If this is your first time running LXD on this machine, you should also run: " "lxd init" @@ -2895,7 +2890,7 @@ msgstr "" msgid "Instance type" msgstr "" -#: lxc/remote.go:349 +#: lxc/remote.go:350 #, c-format msgid "Invalid URL scheme \"%s\" in \"%s\"" msgstr "" @@ -2967,7 +2962,7 @@ msgstr "" msgid "Invalid new snapshot name, parent volume must be the same as source" msgstr "" -#: lxc/main.go:498 +#: lxc/main.go:502 msgid "Invalid number of arguments" msgstr "" @@ -2976,7 +2971,7 @@ msgstr "" msgid "Invalid path %s" msgstr "" -#: lxc/remote.go:338 +#: lxc/remote.go:339 #, c-format msgid "Invalid protocol: %s" msgstr "" @@ -3024,7 +3019,7 @@ msgstr "" #: lxc/list.go:597 lxc/network.go:1059 lxc/network_forward.go:155 #: lxc/network_load_balancer.go:157 lxc/operation.go:177 -#: lxc/storage_bucket.go:511 lxc/storage_volume.go:1569 lxc/warning.go:220 +#: lxc/storage_bucket.go:516 lxc/storage_volume.go:1569 lxc/warning.go:220 msgid "LOCATION" msgstr "" @@ -3032,7 +3027,7 @@ msgstr "" msgid "LXD - Command line client" msgstr "" -#: lxc/console.go:382 +#: lxc/console.go:387 msgid "LXD automatically uses either spicy or remote-viewer when present." msgstr "" @@ -3122,15 +3117,15 @@ msgstr "" msgid "List available network peers" msgstr "" -#: lxc/network_zone.go:85 +#: lxc/network_zone.go:86 msgid "List available network zone" msgstr "" -#: lxc/network_zone.go:688 lxc/network_zone.go:689 +#: lxc/network_zone.go:693 lxc/network_zone.go:694 msgid "List available network zone records" msgstr "" -#: lxc/network_zone.go:84 +#: lxc/network_zone.go:85 msgid "List available network zoneS" msgstr "" @@ -3319,11 +3314,11 @@ msgstr "" msgid "List projects" msgstr "" -#: lxc/storage_bucket.go:766 lxc/storage_bucket.go:768 +#: lxc/storage_bucket.go:771 lxc/storage_bucket.go:773 msgid "List storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:451 lxc/storage_bucket.go:453 +#: lxc/storage_bucket.go:456 lxc/storage_bucket.go:458 msgid "List storage buckets" msgstr "" @@ -3351,7 +3346,7 @@ msgid "" " U - Current disk usage" msgstr "" -#: lxc/remote.go:668 lxc/remote.go:669 +#: lxc/remote.go:669 lxc/remote.go:670 msgid "List the available remotes" msgstr "" @@ -3578,11 +3573,11 @@ msgstr "" msgid "Manage network forwards" msgstr "" -#: lxc/network_load_balancer.go:782 lxc/network_load_balancer.go:783 +#: lxc/network_load_balancer.go:787 lxc/network_load_balancer.go:788 msgid "Manage network load balancer backends" msgstr "" -#: lxc/network_load_balancer.go:947 lxc/network_load_balancer.go:948 +#: lxc/network_load_balancer.go:952 lxc/network_load_balancer.go:953 msgid "Manage network load balancer ports" msgstr "" @@ -3594,15 +3589,15 @@ msgstr "" msgid "Manage network peerings" msgstr "" -#: lxc/network_zone.go:1224 lxc/network_zone.go:1225 +#: lxc/network_zone.go:1229 lxc/network_zone.go:1230 msgid "Manage network zone record entries" msgstr "" -#: lxc/network_zone.go:631 lxc/network_zone.go:632 +#: lxc/network_zone.go:636 lxc/network_zone.go:637 msgid "Manage network zone records" msgstr "" -#: lxc/network_zone.go:27 lxc/network_zone.go:28 +#: lxc/network_zone.go:28 lxc/network_zone.go:29 msgid "Manage network zones" msgstr "" @@ -3618,11 +3613,11 @@ msgstr "" msgid "Manage projects" msgstr "" -#: lxc/storage_bucket.go:726 +#: lxc/storage_bucket.go:731 msgid "Manage storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:727 +#: lxc/storage_bucket.go:732 msgid "Manage storage bucket keys." msgstr "" @@ -3650,7 +3645,7 @@ msgid "" "\"custom\" (user created) volumes." msgstr "" -#: lxc/remote.go:33 lxc/remote.go:34 +#: lxc/remote.go:34 lxc/remote.go:35 msgid "Manage the list of remote servers" msgstr "" @@ -3731,12 +3726,12 @@ msgid "" "Minimum level for log messages (only available when using pretty format)" msgstr "" -#: lxc/storage_bucket.go:111 lxc/storage_bucket.go:211 -#: lxc/storage_bucket.go:287 lxc/storage_bucket.go:406 -#: lxc/storage_bucket.go:563 lxc/storage_bucket.go:655 -#: lxc/storage_bucket.go:797 lxc/storage_bucket.go:878 -#: lxc/storage_bucket.go:953 lxc/storage_bucket.go:1032 -#: lxc/storage_bucket.go:1155 +#: lxc/storage_bucket.go:116 lxc/storage_bucket.go:216 +#: lxc/storage_bucket.go:292 lxc/storage_bucket.go:411 +#: lxc/storage_bucket.go:568 lxc/storage_bucket.go:660 +#: lxc/storage_bucket.go:802 lxc/storage_bucket.go:883 +#: lxc/storage_bucket.go:958 lxc/storage_bucket.go:1037 +#: lxc/storage_bucket.go:1160 msgid "Missing bucket name" msgstr "" @@ -3780,8 +3775,8 @@ msgstr "" msgid "Missing instance name" msgstr "" -#: lxc/storage_bucket.go:882 lxc/storage_bucket.go:957 -#: lxc/storage_bucket.go:1036 lxc/storage_bucket.go:1159 +#: lxc/storage_bucket.go:887 lxc/storage_bucket.go:962 +#: lxc/storage_bucket.go:1041 lxc/storage_bucket.go:1164 msgid "Missing key name" msgstr "" @@ -3789,10 +3784,10 @@ msgstr "" #: lxc/network_forward.go:481 lxc/network_forward.go:627 #: lxc/network_forward.go:746 lxc/network_forward.go:823 #: lxc/network_forward.go:889 lxc/network_load_balancer.go:201 -#: lxc/network_load_balancer.go:411 lxc/network_load_balancer.go:484 -#: lxc/network_load_balancer.go:630 lxc/network_load_balancer.go:750 -#: lxc/network_load_balancer.go:826 lxc/network_load_balancer.go:890 -#: lxc/network_load_balancer.go:991 lxc/network_load_balancer.go:1053 +#: lxc/network_load_balancer.go:416 lxc/network_load_balancer.go:489 +#: lxc/network_load_balancer.go:635 lxc/network_load_balancer.go:755 +#: lxc/network_load_balancer.go:831 lxc/network_load_balancer.go:895 +#: lxc/network_load_balancer.go:996 lxc/network_load_balancer.go:1058 msgid "Missing listen address" msgstr "" @@ -3817,26 +3812,26 @@ msgstr "" #: lxc/network_forward.go:477 lxc/network_forward.go:623 #: lxc/network_forward.go:742 lxc/network_forward.go:819 #: lxc/network_forward.go:885 lxc/network_load_balancer.go:123 -#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:261 -#: lxc/network_load_balancer.go:407 lxc/network_load_balancer.go:480 -#: lxc/network_load_balancer.go:626 lxc/network_load_balancer.go:746 -#: lxc/network_load_balancer.go:822 lxc/network_load_balancer.go:886 -#: lxc/network_load_balancer.go:987 lxc/network_load_balancer.go:1049 +#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:266 +#: lxc/network_load_balancer.go:412 lxc/network_load_balancer.go:485 +#: lxc/network_load_balancer.go:631 lxc/network_load_balancer.go:751 +#: lxc/network_load_balancer.go:827 lxc/network_load_balancer.go:891 +#: lxc/network_load_balancer.go:992 lxc/network_load_balancer.go:1054 #: lxc/network_peer.go:110 lxc/network_peer.go:180 lxc/network_peer.go:237 #: lxc/network_peer.go:355 lxc/network_peer.go:426 lxc/network_peer.go:556 #: lxc/network_peer.go:665 msgid "Missing network name" msgstr "" -#: lxc/network_zone.go:178 lxc/network_zone.go:234 lxc/network_zone.go:294 -#: lxc/network_zone.go:382 lxc/network_zone.go:503 lxc/network_zone.go:606 -#: lxc/network_zone.go:712 lxc/network_zone.go:780 lxc/network_zone.go:892 -#: lxc/network_zone.go:976 lxc/network_zone.go:1197 lxc/network_zone.go:1262 -#: lxc/network_zone.go:1307 +#: lxc/network_zone.go:179 lxc/network_zone.go:235 lxc/network_zone.go:299 +#: lxc/network_zone.go:387 lxc/network_zone.go:508 lxc/network_zone.go:611 +#: lxc/network_zone.go:717 lxc/network_zone.go:785 lxc/network_zone.go:897 +#: lxc/network_zone.go:981 lxc/network_zone.go:1202 lxc/network_zone.go:1267 +#: lxc/network_zone.go:1312 msgid "Missing network zone name" msgstr "" -#: lxc/network_zone.go:833 lxc/network_zone.go:1095 +#: lxc/network_zone.go:838 lxc/network_zone.go:1100 msgid "Missing network zone record name" msgstr "" @@ -3846,13 +3841,13 @@ msgid "Missing peer name" msgstr "" #: lxc/storage.go:194 lxc/storage.go:264 lxc/storage.go:370 lxc/storage.go:440 -#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:107 -#: lxc/storage_bucket.go:207 lxc/storage_bucket.go:283 -#: lxc/storage_bucket.go:402 lxc/storage_bucket.go:477 -#: lxc/storage_bucket.go:559 lxc/storage_bucket.go:651 -#: lxc/storage_bucket.go:793 lxc/storage_bucket.go:874 -#: lxc/storage_bucket.go:949 lxc/storage_bucket.go:1028 -#: lxc/storage_bucket.go:1151 lxc/storage_volume.go:189 +#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:112 +#: lxc/storage_bucket.go:212 lxc/storage_bucket.go:288 +#: lxc/storage_bucket.go:407 lxc/storage_bucket.go:482 +#: lxc/storage_bucket.go:564 lxc/storage_bucket.go:656 +#: lxc/storage_bucket.go:798 lxc/storage_bucket.go:879 +#: lxc/storage_bucket.go:954 lxc/storage_bucket.go:1033 +#: lxc/storage_bucket.go:1156 lxc/storage_volume.go:189 #: lxc/storage_volume.go:287 lxc/storage_volume.go:583 #: lxc/storage_volume.go:660 lxc/storage_volume.go:735 #: lxc/storage_volume.go:817 lxc/storage_volume.go:919 @@ -3972,7 +3967,7 @@ msgstr "" msgid "Moving the storage volume: %s" msgstr "" -#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1097 +#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1102 msgid "Multiple ports match. Use --force to remove them all" msgstr "" @@ -3991,10 +3986,10 @@ 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:677 lxc/project.go:498 -#: lxc/remote.go:731 lxc/storage.go:638 lxc/storage_bucket.go:506 -#: lxc/storage_bucket.go:826 lxc/storage_volume.go:1561 +#: lxc/network_acl.go:147 lxc/network_peer.go:139 lxc/network_zone.go:139 +#: lxc/network_zone.go:746 lxc/profile.go:677 lxc/project.go:498 +#: lxc/remote.go:732 lxc/storage.go:638 lxc/storage_bucket.go:511 +#: lxc/storage_bucket.go:831 lxc/storage_volume.go:1561 msgid "NAME" msgstr "" @@ -4020,7 +4015,7 @@ msgstr "" #: lxc/network.go:957 lxc/operation.go:154 lxc/project.go:456 #: lxc/project.go:461 lxc/project.go:466 lxc/project.go:471 lxc/project.go:476 -#: lxc/project.go:481 lxc/remote.go:691 lxc/remote.go:696 lxc/remote.go:701 +#: lxc/project.go:481 lxc/remote.go:692 lxc/remote.go:697 lxc/remote.go:702 msgid "NO" msgstr "" @@ -4047,7 +4042,7 @@ msgstr "" msgid "Name" msgstr "" -#: lxc/remote.go:141 +#: lxc/remote.go:142 msgid "Name of the project to use for this remote:" msgstr "" @@ -4096,12 +4091,12 @@ msgstr "" msgid "Network ACL %s renamed to %s" msgstr "" -#: lxc/network_zone.go:336 +#: lxc/network_zone.go:341 #, c-format msgid "Network Zone %s created" msgstr "" -#: lxc/network_zone.go:616 +#: lxc/network_zone.go:621 #, c-format msgid "Network Zone %s deleted" msgstr "" @@ -4116,12 +4111,12 @@ msgstr "" msgid "Network forward %s deleted" msgstr "" -#: lxc/network_load_balancer.go:365 +#: lxc/network_load_balancer.go:370 #, c-format msgid "Network load balancer %s created" msgstr "" -#: lxc/network_load_balancer.go:767 +#: lxc/network_load_balancer.go:772 #, c-format msgid "Network load balancer %s deleted" msgstr "" @@ -4159,12 +4154,12 @@ msgstr "" msgid "Network usage:" msgstr "" -#: lxc/network_zone.go:934 +#: lxc/network_zone.go:939 #, c-format msgid "Network zone record %s created" msgstr "" -#: lxc/network_zone.go:1207 +#: lxc/network_zone.go:1212 #, c-format msgid "Network zone record %s deleted" msgstr "" @@ -4199,11 +4194,11 @@ msgstr "" msgid "No device found for this storage volume" msgstr "" -#: lxc/network_load_balancer.go:921 +#: lxc/network_load_balancer.go:926 msgid "No matching backend found" msgstr "" -#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1108 +#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1113 msgid "No matching port(s) found" msgstr "" @@ -4249,7 +4244,7 @@ msgstr "" msgid "Only \"custom\" volumes can be snapshotted" msgstr "" -#: lxc/remote.go:332 +#: lxc/remote.go:333 msgid "Only https URLs are supported for simplestreams" msgstr "" @@ -4274,7 +4269,7 @@ msgstr "" msgid "Optimized Storage" msgstr "" -#: lxc/main.go:96 +#: lxc/main.go:97 msgid "Override the source project" msgstr "" @@ -4320,11 +4315,11 @@ msgstr "" msgid "PROJECT" msgstr "" -#: lxc/remote.go:733 +#: lxc/remote.go:734 msgid "PROTOCOL" msgstr "" -#: lxc/image.go:1073 lxc/remote.go:735 +#: lxc/image.go:1073 lxc/remote.go:736 msgid "PUBLIC" msgstr "" @@ -4340,7 +4335,7 @@ msgstr "" msgid "Partitions:" msgstr "" -#: lxc/main.go:361 +#: lxc/main.go:363 #, c-format msgid "Password for %s: " msgstr "" @@ -4353,7 +4348,7 @@ msgstr "" msgid "Perform an incremental copy" msgstr "" -#: lxc/remote.go:182 +#: lxc/remote.go:183 msgid "Please provide an alternate server address (empty to abort):" msgstr "" @@ -4365,7 +4360,7 @@ msgstr "" msgid "Please provide cluster member name: " msgstr "" -#: lxc/remote.go:462 +#: lxc/remote.go:463 msgid "Please type 'y', 'n' or the fingerprint:" msgstr "" @@ -4387,10 +4382,10 @@ msgstr "" #: lxc/config.go:1278 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/network_load_balancer.go:695 lxc/network_peer.go:611 +#: lxc/network_zone.go:557 lxc/network_zone.go:1149 lxc/profile.go:539 +#: lxc/project.go:316 lxc/storage.go:311 lxc/storage_bucket.go:349 +#: lxc/storage_bucket.go:1098 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 "" @@ -4399,7 +4394,7 @@ msgstr "" msgid "Pretty rendering (short for --format=pretty)" msgstr "" -#: lxc/main.go:94 +#: lxc/main.go:95 msgid "Print help" msgstr "" @@ -4407,7 +4402,7 @@ msgstr "" msgid "Print the raw response" msgstr "" -#: lxc/main.go:93 +#: lxc/main.go:94 msgid "Print version number" msgstr "" @@ -4496,7 +4491,7 @@ msgstr "" msgid "Project %s renamed to %s" msgstr "" -#: lxc/remote.go:106 +#: lxc/remote.go:107 msgid "Project to use for the remote" msgstr "" @@ -4594,7 +4589,7 @@ msgid "" "pool \"default\"." msgstr "" -#: lxc/remote.go:105 +#: lxc/remote.go:106 msgid "Public image server" msgstr "" @@ -4642,7 +4637,7 @@ msgstr "" msgid "RESOURCE" msgstr "" -#: lxc/storage_bucket.go:828 +#: lxc/storage_bucket.go:833 msgid "ROLE" msgstr "" @@ -4685,45 +4680,45 @@ msgstr "" msgid "Refreshing the image: %s" msgstr "" -#: lxc/remote.go:785 +#: lxc/remote.go:786 #, c-format msgid "Remote %s already exists" msgstr "" -#: lxc/project.go:769 lxc/remote.go:776 lxc/remote.go:849 lxc/remote.go:905 -#: lxc/remote.go:945 +#: lxc/project.go:769 lxc/remote.go:777 lxc/remote.go:850 lxc/remote.go:906 +#: lxc/remote.go:946 #, c-format msgid "Remote %s doesn't exist" msgstr "" -#: lxc/remote.go:301 +#: lxc/remote.go:302 #, c-format msgid "Remote %s exists as <%s>" msgstr "" -#: lxc/remote.go:857 +#: lxc/remote.go:858 #, c-format msgid "Remote %s is global and cannot be removed" msgstr "" -#: lxc/remote.go:780 lxc/remote.go:853 lxc/remote.go:949 +#: lxc/remote.go:781 lxc/remote.go:854 lxc/remote.go:950 #, c-format msgid "Remote %s is static and cannot be modified" msgstr "" -#: lxc/remote.go:290 +#: lxc/remote.go:291 msgid "Remote address must not be empty" msgstr "" -#: lxc/remote.go:101 +#: lxc/remote.go:102 msgid "Remote admin password" msgstr "" -#: lxc/remote.go:295 +#: lxc/remote.go:296 msgid "Remote names may not contain colons" msgstr "" -#: lxc/remote.go:102 +#: lxc/remote.go:103 msgid "Remote trust token" msgstr "" @@ -4749,7 +4744,7 @@ msgstr "" msgid "Remove a member from the cluster" msgstr "" -#: lxc/network_zone.go:1285 +#: lxc/network_zone.go:1290 msgid "Remove a network zone record entry" msgstr "" @@ -4757,7 +4752,7 @@ msgstr "" msgid "Remove aliases" msgstr "" -#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1025 +#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1030 msgid "Remove all ports that match" msgstr "" @@ -4765,15 +4760,15 @@ msgstr "" msgid "Remove all rules that match" msgstr "" -#: lxc/network_load_balancer.go:862 +#: lxc/network_load_balancer.go:867 msgid "Remove backend from a load balancer" msgstr "" -#: lxc/network_load_balancer.go:861 +#: lxc/network_load_balancer.go:866 msgid "Remove backends from a load balancer" msgstr "" -#: lxc/network_zone.go:1286 +#: lxc/network_zone.go:1291 msgid "Remove entries from a network zone record" msgstr "" @@ -4797,7 +4792,7 @@ msgstr "" msgid "Remove ports from a forward" msgstr "" -#: lxc/network_load_balancer.go:1023 lxc/network_load_balancer.go:1024 +#: lxc/network_load_balancer.go:1028 lxc/network_load_balancer.go:1029 msgid "Remove ports from a load balancer" msgstr "" @@ -4805,7 +4800,7 @@ msgstr "" msgid "Remove profiles from instances" msgstr "" -#: lxc/remote.go:827 lxc/remote.go:828 +#: lxc/remote.go:828 lxc/remote.go:829 msgid "Remove remotes" msgstr "" @@ -4862,7 +4857,7 @@ msgstr "" msgid "Rename projects" msgstr "" -#: lxc/remote.go:754 lxc/remote.go:755 +#: lxc/remote.go:755 lxc/remote.go:756 msgid "Rename remotes" msgstr "" @@ -4940,7 +4935,7 @@ msgid "Restrict the certificate to one or more projects" msgstr "" #: lxc/console.go:44 -msgid "Retrieve the instance's console log" +msgid "Retrieve the container's console log" msgstr "" #: lxc/init.go:347 @@ -4956,7 +4951,7 @@ msgstr "" msgid "Revoke cluster member join token" msgstr "" -#: lxc/storage_bucket.go:851 +#: lxc/storage_bucket.go:856 msgid "Role (admin or read-only)" msgstr "" @@ -5007,7 +5002,7 @@ msgstr "" msgid "STATE" msgstr "" -#: lxc/remote.go:736 +#: lxc/remote.go:737 msgid "STATIC" msgstr "" @@ -5031,11 +5026,11 @@ msgstr "" msgid "STP" msgstr "" -#: lxc/storage_bucket.go:853 +#: lxc/storage_bucket.go:858 msgid "Secret key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:909 +#: lxc/storage_bucket.go:914 #, c-format msgid "Secret key: %s" msgstr "" @@ -5044,19 +5039,19 @@ msgstr "" msgid "Send a raw query to LXD" msgstr "" -#: lxc/remote.go:104 +#: lxc/remote.go:105 msgid "Server authentication type (tls or oidc)" msgstr "" -#: lxc/remote.go:460 +#: lxc/remote.go:461 msgid "Server certificate NACKed by user" msgstr "" -#: lxc/remote.go:599 +#: lxc/remote.go:600 msgid "Server doesn't trust us after authentication" msgstr "" -#: lxc/remote.go:103 +#: lxc/remote.go:104 msgid "Server protocol (lxd or simplestreams)" msgstr "" @@ -5155,11 +5150,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_load_balancer.go:450 +#: lxc/network_load_balancer.go:455 msgid "Set network load balancer keys" msgstr "" -#: lxc/network_load_balancer.go:451 +#: lxc/network_load_balancer.go:456 msgid "" "Set network load balancer keys\n" "\n" @@ -5181,11 +5176,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:353 +#: lxc/network_zone.go:358 msgid "Set network zone configuration keys" msgstr "" -#: lxc/network_zone.go:354 +#: lxc/network_zone.go:359 msgid "" "Set network zone configuration keys\n" "\n" @@ -5194,7 +5189,7 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:951 lxc/network_zone.go:952 +#: lxc/network_zone.go:956 lxc/network_zone.go:957 msgid "Set network zone record configuration keys" msgstr "" @@ -5224,11 +5219,11 @@ msgid "" " lxc project set [:] " msgstr "" -#: lxc/storage_bucket.go:529 +#: lxc/storage_bucket.go:534 msgid "Set storage bucket configuration keys" msgstr "" -#: lxc/storage_bucket.go:530 +#: lxc/storage_bucket.go:535 msgid "" "Set storage bucket configuration keys\n" "\n" @@ -5263,7 +5258,7 @@ msgid "" " lxc storage volume set [:] [/] " msgstr "" -#: lxc/remote.go:923 lxc/remote.go:924 +#: lxc/remote.go:924 lxc/remote.go:925 msgid "Set the URL for the remote" msgstr "" @@ -5291,7 +5286,7 @@ msgstr "" msgid "Set the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:458 +#: lxc/network_load_balancer.go:463 msgid "Set the key as a network load balancer property" msgstr "" @@ -5303,11 +5298,11 @@ msgstr "" msgid "Set the key as a network property" msgstr "" -#: lxc/network_zone.go:361 +#: lxc/network_zone.go:366 msgid "Set the key as a network zone property" msgstr "" -#: lxc/network_zone.go:957 +#: lxc/network_zone.go:962 msgid "Set the key as a network zone record property" msgstr "" @@ -5319,7 +5314,7 @@ msgstr "" msgid "Set the key as a project property" msgstr "" -#: lxc/storage_bucket.go:537 +#: lxc/storage_bucket.go:542 msgid "Set the key as a storage bucket property" msgstr "" @@ -5339,11 +5334,11 @@ msgstr "" msgid "Setup SSH SFTP listener on address:port instead of mounting" msgstr "" -#: lxc/main.go:97 +#: lxc/main.go:98 msgid "Show all debug messages" msgstr "" -#: lxc/main.go:98 +#: lxc/main.go:99 msgid "Show all information messages" msgstr "" @@ -5412,7 +5407,7 @@ msgstr "" msgid "Show instance or server information" msgstr "" -#: lxc/main.go:271 lxc/main.go:272 +#: lxc/main.go:272 lxc/main.go:273 msgid "Show less common commands" msgstr "" @@ -5444,15 +5439,15 @@ msgstr "" msgid "Show network peer configurations" msgstr "" -#: lxc/network_zone.go:155 lxc/network_zone.go:156 +#: lxc/network_zone.go:156 lxc/network_zone.go:157 msgid "Show network zone configurations" msgstr "" -#: lxc/network_zone.go:758 +#: lxc/network_zone.go:763 msgid "Show network zone record configuration" msgstr "" -#: lxc/network_zone.go:759 +#: lxc/network_zone.go:764 msgid "Show network zone record configurations" msgstr "" @@ -5464,11 +5459,11 @@ msgstr "" msgid "Show project options" msgstr "" -#: lxc/storage_bucket.go:623 lxc/storage_bucket.go:624 +#: lxc/storage_bucket.go:628 lxc/storage_bucket.go:629 msgid "Show storage bucket configurations" msgstr "" -#: lxc/storage_bucket.go:1123 lxc/storage_bucket.go:1124 +#: lxc/storage_bucket.go:1128 lxc/storage_bucket.go:1129 msgid "Show storage bucket key configurations" msgstr "" @@ -5494,7 +5489,7 @@ msgid "" "that are granted via identity provider group mappings. \n" msgstr "" -#: lxc/remote.go:630 lxc/remote.go:631 +#: lxc/remote.go:631 lxc/remote.go:632 msgid "Show the default remote" msgstr "" @@ -5618,22 +5613,22 @@ msgstr "" msgid "Stopping the instance failed: %s" msgstr "" -#: lxc/storage_bucket.go:161 +#: lxc/storage_bucket.go:166 #, c-format msgid "Storage bucket %s created" msgstr "" -#: lxc/storage_bucket.go:228 +#: lxc/storage_bucket.go:233 #, c-format msgid "Storage bucket %s deleted" msgstr "" -#: lxc/storage_bucket.go:907 +#: lxc/storage_bucket.go:912 #, c-format msgid "Storage bucket key %s added" msgstr "" -#: lxc/storage_bucket.go:973 +#: lxc/storage_bucket.go:978 #, c-format msgid "Storage bucket key %s removed" msgstr "" @@ -5706,7 +5701,7 @@ msgstr "" msgid "Switch the current project" msgstr "" -#: lxc/remote.go:883 lxc/remote.go:884 +#: lxc/remote.go:884 lxc/remote.go:885 msgid "Switch the default remote" msgstr "" @@ -5821,7 +5816,7 @@ msgstr "" msgid "The property %q does not exist on the instance snapshot %s/%s: %v" msgstr "" -#: lxc/network_load_balancer.go:424 +#: lxc/network_load_balancer.go:429 #, c-format msgid "The property %q does not exist on the load balancer %q: %v" msgstr "" @@ -5846,12 +5841,12 @@ msgstr "" msgid "The property %q does not exist on the network peer %q: %v" msgstr "" -#: lxc/network_zone.go:246 +#: lxc/network_zone.go:247 #, c-format msgid "The property %q does not exist on the network zone %q: %v" msgstr "" -#: lxc/network_zone.go:845 +#: lxc/network_zone.go:850 #, c-format msgid "The property %q does not exist on the network zone record %q: %v" msgstr "" @@ -5866,7 +5861,7 @@ msgstr "" msgid "The property %q does not exist on the project %q: %v" msgstr "" -#: lxc/storage_bucket.go:426 +#: lxc/storage_bucket.go:431 #, c-format msgid "The property %q does not exist on the storage bucket %q: %v" msgstr "" @@ -5920,7 +5915,7 @@ msgstr "" msgid "This LXD server is not available on the network" msgstr "" -#: lxc/main.go:293 +#: lxc/main.go:294 msgid "" "This client hasn't been configured to use a remote LXD server yet.\n" "As your platform can't run native Linux instances, you must connect to a " @@ -5952,11 +5947,11 @@ msgstr "" msgid "To create a new network, use: lxc network create" msgstr "" -#: lxc/console.go:210 +#: lxc/console.go:215 msgid "To detach from the console, press: +a q" msgstr "" -#: lxc/main.go:403 +#: lxc/main.go:406 msgid "" "To start your first container, try: lxc launch ubuntu:24.04\n" "Or for a virtual machine: lxc launch ubuntu:24.04 --vm" @@ -6054,7 +6049,7 @@ msgstr "" msgid "UPLOAD DATE" msgstr "" -#: lxc/cluster.go:184 lxc/remote.go:732 +#: lxc/cluster.go:184 lxc/remote.go:733 msgid "URL" msgstr "" @@ -6063,7 +6058,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:679 lxc/project.go:506 +#: lxc/network_zone.go:141 lxc/profile.go:679 lxc/project.go:506 #: lxc/storage.go:647 lxc/storage_volume.go:1564 msgid "USED BY" msgstr "" @@ -6082,7 +6077,7 @@ msgstr "" msgid "Unable to create a temporary file: %v" msgstr "" -#: lxc/remote.go:213 lxc/remote.go:247 +#: lxc/remote.go:214 lxc/remote.go:248 msgid "Unavailable remote server" msgstr "" @@ -6102,7 +6097,7 @@ msgstr "" msgid "Unknown column shorthand char '%c' in '%s'" msgstr "" -#: lxc/console.go:159 +#: lxc/console.go:164 #, c-format msgid "Unknown console type %q" msgstr "" @@ -6162,11 +6157,11 @@ msgstr "" msgid "Unset network forward keys" msgstr "" -#: lxc/network_load_balancer.go:548 +#: lxc/network_load_balancer.go:553 msgid "Unset network load balancer configuration keys" msgstr "" -#: lxc/network_load_balancer.go:549 +#: lxc/network_load_balancer.go:554 msgid "Unset network load balancer keys" msgstr "" @@ -6178,11 +6173,11 @@ msgstr "" msgid "Unset network peer keys" msgstr "" -#: lxc/network_zone.go:433 lxc/network_zone.go:434 +#: lxc/network_zone.go:438 lxc/network_zone.go:439 msgid "Unset network zone configuration keys" msgstr "" -#: lxc/network_zone.go:1027 lxc/network_zone.go:1028 +#: lxc/network_zone.go:1032 lxc/network_zone.go:1033 msgid "Unset network zone record configuration keys" msgstr "" @@ -6194,7 +6189,7 @@ msgstr "" msgid "Unset project configuration keys" msgstr "" -#: lxc/storage_bucket.go:692 lxc/storage_bucket.go:693 +#: lxc/storage_bucket.go:697 lxc/storage_bucket.go:698 msgid "Unset storage bucket configuration keys" msgstr "" @@ -6218,7 +6213,7 @@ msgstr "" msgid "Unset the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:552 +#: lxc/network_load_balancer.go:557 msgid "Unset the key as a network load balancer property" msgstr "" @@ -6230,11 +6225,11 @@ msgstr "" msgid "Unset the key as a network property" msgstr "" -#: lxc/network_zone.go:437 +#: lxc/network_zone.go:442 msgid "Unset the key as a network zone property" msgstr "" -#: lxc/network_zone.go:1031 +#: lxc/network_zone.go:1036 msgid "Unset the key as a network zone record property" msgstr "" @@ -6246,7 +6241,7 @@ msgstr "" msgid "Unset the key as a project property" msgstr "" -#: lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:701 msgid "Unset the key as a storage bucket property" msgstr "" @@ -6308,7 +6303,7 @@ msgid "" "Use storage driver optimized format (can only be restored on a similar pool)" msgstr "" -#: lxc/main.go:100 +#: lxc/main.go:101 msgid "Use with help or --help to view sub-commands" msgstr "" @@ -6405,7 +6400,7 @@ msgstr "" #: lxc/network.go:959 lxc/operation.go:156 lxc/project.go:458 #: lxc/project.go:463 lxc/project.go:468 lxc/project.go:473 lxc/project.go:478 -#: lxc/project.go:483 lxc/remote.go:693 lxc/remote.go:698 lxc/remote.go:703 +#: lxc/project.go:483 lxc/remote.go:694 lxc/remote.go:699 lxc/remote.go:704 msgid "YES" msgstr "" @@ -6440,7 +6435,7 @@ 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/network.go:909 lxc/network_acl.go:91 lxc/network_zone.go:83 #: 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 "[:]" @@ -6503,19 +6498,19 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:154 lxc/network_zone.go:463 lxc/network_zone.go:581 +#: lxc/network_zone.go:155 lxc/network_zone.go:468 lxc/network_zone.go:586 msgid "[:]" msgstr "" -#: lxc/network_zone.go:209 lxc/network_zone.go:432 +#: lxc/network_zone.go:210 lxc/network_zone.go:437 msgid "[:] " msgstr "" -#: lxc/network_zone.go:352 +#: lxc/network_zone.go:357 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:269 +#: lxc/network_zone.go:270 msgid "[:] [key=value...]" msgstr "" @@ -6761,30 +6756,30 @@ msgstr "" #: lxc/network_forward.go:169 lxc/network_forward.go:574 #: lxc/network_forward.go:715 lxc/network_load_balancer.go:171 -#: lxc/network_load_balancer.go:577 lxc/network_load_balancer.go:719 +#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:724 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:860 +#: lxc/network_load_balancer.go:865 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:796 +#: lxc/network_load_balancer.go:801 msgid "" "[:] " "[]" msgstr "" #: lxc/network_forward.go:377 lxc/network_forward.go:544 -#: lxc/network_load_balancer.go:381 lxc/network_load_balancer.go:547 +#: lxc/network_load_balancer.go:386 lxc/network_load_balancer.go:552 msgid "[:] " msgstr "" -#: lxc/network_forward.go:446 lxc/network_load_balancer.go:449 +#: lxc/network_forward.go:446 lxc/network_load_balancer.go:454 msgid "[:] =..." msgstr "" -#: lxc/network_load_balancer.go:961 +#: lxc/network_load_balancer.go:966 msgid "" "[:] " "[,...]" @@ -6796,7 +6791,7 @@ msgid "" " []" msgstr "" -#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1022 +#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1027 msgid "[:] [] []" msgstr "" @@ -6847,7 +6842,7 @@ msgid "[:]" msgstr "" #: lxc/storage.go:167 lxc/storage.go:218 lxc/storage.go:412 lxc/storage.go:759 -#: lxc/storage_bucket.go:449 +#: lxc/storage_bucket.go:454 msgid "[:]" msgstr "" @@ -6855,18 +6850,18 @@ msgstr "" msgid "[:] []" msgstr "" -#: lxc/storage_bucket.go:180 lxc/storage_bucket.go:242 -#: lxc/storage_bucket.go:622 lxc/storage_bucket.go:764 +#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:247 +#: lxc/storage_bucket.go:627 lxc/storage_bucket.go:769 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:375 lxc/storage_bucket.go:691 -#: lxc/storage_bucket.go:845 lxc/storage_bucket.go:923 -#: lxc/storage_bucket.go:987 lxc/storage_bucket.go:1122 +#: lxc/storage_bucket.go:380 lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:850 lxc/storage_bucket.go:928 +#: lxc/storage_bucket.go:992 lxc/storage_bucket.go:1127 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:528 +#: lxc/storage_bucket.go:533 msgid "[:] =..." msgstr "" @@ -7010,27 +7005,27 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:686 +#: lxc/network_zone.go:691 msgid "[:]" msgstr "" -#: lxc/network_zone.go:757 lxc/network_zone.go:1056 lxc/network_zone.go:1173 +#: lxc/network_zone.go:762 lxc/network_zone.go:1061 lxc/network_zone.go:1178 msgid "[:] " msgstr "" -#: lxc/network_zone.go:809 lxc/network_zone.go:1026 +#: lxc/network_zone.go:814 lxc/network_zone.go:1031 msgid "[:] " msgstr "" -#: lxc/network_zone.go:950 +#: lxc/network_zone.go:955 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:1238 lxc/network_zone.go:1284 +#: lxc/network_zone.go:1243 lxc/network_zone.go:1289 msgid "[:] " msgstr "" -#: lxc/network_zone.go:868 +#: lxc/network_zone.go:873 msgid "[:] [key=value...]" msgstr "" @@ -7054,7 +7049,7 @@ msgstr "" msgid "[:][] [...]" msgstr "" -#: lxc/remote.go:88 +#: lxc/remote.go:89 msgid "[] " msgstr "" @@ -7062,7 +7057,7 @@ msgstr "" msgid "[[:]]" msgstr "" -#: lxc/project.go:488 lxc/remote.go:722 +#: lxc/project.go:488 lxc/remote.go:723 msgid "current" msgstr "" @@ -7325,6 +7320,23 @@ msgid "" " Create a new OVN network called bar using baz as its uplink network" msgstr "" +#: lxc/network_load_balancer.go:239 +msgid "" +"lxc network load-balancer create n1 127.0.0.1\n" +"\n" +"lxc network load-balancer create n1 127.0.0.1 < config.yaml\n" +" Create network load-balancer for network n1 with configuration from " +"config.yaml" +msgstr "" + +#: lxc/network_zone.go:273 +msgid "" +"lxc network zone create z1\n" +"\n" +"lxc network zone create z1 < config.yaml\n" +" Create network zone z1 with configuration from config.yaml" +msgstr "" + #: lxc/operation.go:195 msgid "" "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n" @@ -7395,26 +7407,36 @@ msgid "" " Restore the snapshot." msgstr "" -#: lxc/storage_bucket.go:245 +#: lxc/storage_bucket.go:84 +msgid "" +"lxc storage bucket create p1 b01\n" +"\tCreate a new storage bucket name b01 in storage pool p1\n" +"\n" +"lxc storage bucket create p1 b01 < config.yaml\n" +"\tCreate a new storage bucket name b01 in storage pool p1 using the content " +"of config.yaml" +msgstr "" + +#: lxc/storage_bucket.go:250 msgid "" "lxc storage bucket edit [:] < bucket.yaml\n" " Update a storage bucket using the content of bucket.yaml." msgstr "" -#: lxc/storage_bucket.go:990 +#: lxc/storage_bucket.go:995 msgid "" "lxc storage bucket edit [:] < key.yaml\n" " Update a storage bucket key using the content of key.yaml." msgstr "" -#: lxc/storage_bucket.go:1125 +#: lxc/storage_bucket.go:1130 msgid "" "lxc storage bucket key show default data foo\n" " Will show the properties of a bucket key called \"foo\" for a bucket " "called \"data\" in the \"default\" pool." msgstr "" -#: lxc/storage_bucket.go:625 +#: lxc/storage_bucket.go:630 msgid "" "lxc storage bucket show default data\n" " Will show the properties of a bucket called \"data\" in the \"default\" " @@ -7433,7 +7455,7 @@ msgid "" "\t\tCreate a new custom volume using backup0.tar.gz as the source." msgstr "" -#: lxc/remote.go:459 +#: lxc/remote.go:460 msgid "n" msgstr "" @@ -7445,7 +7467,7 @@ msgstr "" msgid "no" msgstr "" -#: lxc/remote.go:452 +#: lxc/remote.go:453 msgid "ok (y/n/[fingerprint])?" msgstr "" @@ -7482,7 +7504,7 @@ msgstr "" msgid "used by" msgstr "" -#: lxc/remote.go:461 +#: lxc/remote.go:462 msgid "y" msgstr "" diff --git a/po/sr.po b/po/sr.po index 16b99b3171d6..dbb7e08f5089 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-08-20 09:31+0100\n" +"POT-Creation-Date: 2024-08-30 09:27+0100\n" "PO-Revision-Date: 2022-03-10 15:07+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Serbian =20) ? 1 : 2;\n" "X-Generator: Weblate 4.12-dev\n" -#: lxc/storage_bucket.go:255 lxc/storage_bucket.go:1000 +#: lxc/storage_bucket.go:260 lxc/storage_bucket.go:1005 msgid "" "### This is a YAML representation of a storage bucket.\n" "### Any line starting with a '# will be ignored.\n" @@ -282,7 +282,7 @@ msgid "" "### Note that the listen_address and location cannot be changed." msgstr "" -#: lxc/network_load_balancer.go:588 +#: lxc/network_load_balancer.go:593 msgid "" "### This is a YAML representation of the network load balancer.\n" "### Any line starting with a '# will be ignored.\n" @@ -323,7 +323,7 @@ msgid "" "cannot be changed." msgstr "" -#: lxc/network_zone.go:1066 +#: lxc/network_zone.go:1071 msgid "" "### This is a YAML representation of the network zone record.\n" "### Any line starting with a '# will be ignored.\n" @@ -337,7 +337,7 @@ msgid "" "### user.foo: bah\n" msgstr "" -#: lxc/network_zone.go:473 +#: lxc/network_zone.go:478 msgid "" "### This is a YAML representation of the network zone.\n" "### Any line starting with a '# will be ignored.\n" @@ -516,15 +516,15 @@ msgstr "" msgid " " msgstr "" -#: lxc/remote.go:825 lxc/remote.go:882 +#: lxc/remote.go:826 lxc/remote.go:883 msgid "" msgstr "" -#: lxc/remote.go:922 +#: lxc/remote.go:923 msgid " " msgstr "" -#: lxc/remote.go:752 +#: lxc/remote.go:753 msgid " " msgstr "" @@ -557,7 +557,7 @@ msgstr "" msgid "ARCHITECTURE" msgstr "" -#: lxc/remote.go:734 +#: lxc/remote.go:735 msgid "AUTH TYPE" msgstr "" @@ -565,15 +565,15 @@ msgstr "" msgid "AUTHENTICATION METHOD" msgstr "" -#: lxc/remote.go:100 +#: lxc/remote.go:101 msgid "Accept certificate" msgstr "" -#: lxc/storage_bucket.go:852 +#: lxc/storage_bucket.go:857 msgid "Access key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:908 +#: lxc/storage_bucket.go:913 #, c-format msgid "Access key: %s" msgstr "" @@ -607,19 +607,19 @@ msgstr "" msgid "Add a group to an identity provider group" msgstr "" -#: lxc/network_zone.go:1239 +#: lxc/network_zone.go:1244 msgid "Add a network zone record entry" msgstr "" -#: lxc/network_load_balancer.go:798 +#: lxc/network_load_balancer.go:803 msgid "Add backend to a load balancer" msgstr "" -#: lxc/network_load_balancer.go:797 +#: lxc/network_load_balancer.go:802 msgid "Add backends to a load balancer" msgstr "" -#: lxc/network_zone.go:1240 +#: lxc/network_zone.go:1245 msgid "Add entries to a network zone record" msgstr "" @@ -635,11 +635,11 @@ msgstr "" msgid "Add new aliases" msgstr "" -#: lxc/remote.go:89 +#: lxc/remote.go:90 msgid "Add new remote servers" msgstr "" -#: lxc/remote.go:90 +#: lxc/remote.go:91 msgid "" "Add new remote servers\n" "\n" @@ -680,7 +680,7 @@ msgstr "" msgid "Add ports to a forward" msgstr "" -#: lxc/network_load_balancer.go:962 lxc/network_load_balancer.go:963 +#: lxc/network_load_balancer.go:967 lxc/network_load_balancer.go:968 msgid "Add ports to a load balancer" msgstr "" @@ -701,17 +701,17 @@ msgstr "" msgid "Address: %s" msgstr "" -#: lxc/storage_bucket.go:164 +#: lxc/storage_bucket.go:169 #, c-format msgid "Admin access key: %s" msgstr "" -#: lxc/remote.go:566 +#: lxc/remote.go:567 #, c-format msgid "Admin password (or token) for %s:" msgstr "" -#: lxc/storage_bucket.go:165 +#: lxc/storage_bucket.go:170 #, c-format msgid "Admin secret key: %s" msgstr "" @@ -743,7 +743,7 @@ msgstr "" msgid "All projects" msgstr "" -#: lxc/remote.go:181 +#: lxc/remote.go:182 msgid "All server addresses are unavailable" msgstr "" @@ -766,7 +766,7 @@ msgstr "" msgid "Are you sure you want to %s cluster member %q? (yes/no) [default=no]: " msgstr "" -#: lxc/console.go:383 +#: lxc/console.go:388 msgid "As neither could be found, the raw SPICE socket can be found at:" msgstr "" @@ -814,7 +814,7 @@ msgid "" "as well as retrieve past log entries from it." msgstr "" -#: lxc/remote.go:548 +#: lxc/remote.go:549 #, c-format msgid "Authentication type '%s' not supported by server" msgstr "" @@ -833,11 +833,11 @@ msgstr "" msgid "Auto update: %s" msgstr "" -#: lxc/network_forward.go:240 lxc/network_load_balancer.go:242 +#: lxc/network_forward.go:240 lxc/network_load_balancer.go:247 msgid "Auto-allocate an IPv4 or IPv6 listen address. One of 'ipv4', 'ipv6'." msgstr "" -#: lxc/remote.go:136 +#: lxc/remote.go:137 msgid "Available projects:" msgstr "" @@ -869,8 +869,8 @@ msgid "Bad device override syntax, expecting ,=: %s" msgstr "" #: lxc/network.go:333 lxc/network_acl.go:382 lxc/network_forward.go:293 -#: lxc/network_load_balancer.go:296 lxc/network_peer.go:280 -#: lxc/network_zone.go:324 lxc/network_zone.go:922 lxc/storage_bucket.go:136 +#: lxc/network_load_balancer.go:301 lxc/network_peer.go:280 +#: lxc/network_zone.go:329 lxc/network_zone.go:927 lxc/storage_bucket.go:141 #, c-format msgid "Bad key/value pair: %s" msgstr "" @@ -992,7 +992,7 @@ msgstr "" msgid "Can't read from stdin: %w" msgstr "" -#: lxc/remote.go:861 +#: lxc/remote.go:862 msgid "Can't remove the default remote" msgstr "" @@ -1058,15 +1058,14 @@ msgstr "" msgid "Certificate add token for %s deleted" msgstr "" -#: lxc/remote.go:218 -#, c-format -msgid "" -"Certificate fingerprint mismatch between certificate token and server %q" +#: lxc/remote.go:452 +msgid "Certificate fingerprint" msgstr "" -#: lxc/remote.go:451 +#: lxc/remote.go:219 #, c-format -msgid "Certificate fingerprint: %s" +msgid "" +"Certificate fingerprint mismatch between certificate token and server %q" msgstr "" #: lxc/network.go:893 @@ -1078,7 +1077,7 @@ msgstr "" msgid "Client %s certificate add token:" msgstr "" -#: lxc/remote.go:603 +#: lxc/remote.go:604 msgid "Client certificate now trusted by server:" msgstr "" @@ -1140,18 +1139,18 @@ msgstr "" #: lxc/network_forward.go:456 lxc/network_forward.go:579 #: lxc/network_forward.go:721 lxc/network_forward.go:798 #: lxc/network_forward.go:864 lxc/network_load_balancer.go:176 -#: lxc/network_load_balancer.go:241 lxc/network_load_balancer.go:459 -#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:725 -#: lxc/network_load_balancer.go:801 lxc/network_load_balancer.go:865 -#: lxc/network_load_balancer.go:966 lxc/network_load_balancer.go:1028 +#: lxc/network_load_balancer.go:246 lxc/network_load_balancer.go:464 +#: lxc/network_load_balancer.go:587 lxc/network_load_balancer.go:730 +#: lxc/network_load_balancer.go:806 lxc/network_load_balancer.go:870 +#: lxc/network_load_balancer.go:971 lxc/network_load_balancer.go:1033 #: lxc/storage.go:99 lxc/storage.go:347 lxc/storage.go:418 lxc/storage.go:671 -#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:85 -#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:248 -#: lxc/storage_bucket.go:379 lxc/storage_bucket.go:536 -#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:695 -#: lxc/storage_bucket.go:770 lxc/storage_bucket.go:850 -#: lxc/storage_bucket.go:928 lxc/storage_bucket.go:993 -#: lxc/storage_bucket.go:1129 lxc/storage_volume.go:358 +#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:90 +#: lxc/storage_bucket.go:190 lxc/storage_bucket.go:253 +#: lxc/storage_bucket.go:384 lxc/storage_bucket.go:541 +#: lxc/storage_bucket.go:634 lxc/storage_bucket.go:700 +#: lxc/storage_bucket.go:775 lxc/storage_bucket.go:855 +#: lxc/storage_bucket.go:933 lxc/storage_bucket.go:998 +#: lxc/storage_bucket.go:1134 lxc/storage_volume.go:358 #: lxc/storage_volume.go:560 lxc/storage_volume.go:639 #: lxc/storage_volume.go:883 lxc/storage_volume.go:1097 #: lxc/storage_volume.go:1210 lxc/storage_volume.go:1678 @@ -1179,11 +1178,11 @@ msgstr "" msgid "Columns" msgstr "" -#: lxc/main.go:81 +#: lxc/main.go:82 msgid "Command line client for LXD" msgstr "" -#: lxc/main.go:82 +#: lxc/main.go:83 msgid "" "Command line client for LXD\n" "\n" @@ -1215,19 +1214,15 @@ msgstr "" #: lxc/config.go:347 lxc/config.go:1277 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/network_load_balancer.go:694 lxc/network_peer.go:610 +#: lxc/network_zone.go:556 lxc/network_zone.go:1148 lxc/profile.go:538 +#: lxc/project.go:315 lxc/storage.go:310 lxc/storage_bucket.go:348 +#: lxc/storage_bucket.go:1097 lxc/storage_volume.go:1016 #: lxc/storage_volume.go:1048 #, c-format msgid "Config parsing error: %s" msgstr "" -#: lxc/console.go:140 -msgid "Console log:" -msgstr "" - #: lxc/storage_volume.go:561 msgid "Content type, block or filesystem" msgstr "" @@ -1330,12 +1325,12 @@ msgstr "" msgid "Cores:" msgstr "" -#: lxc/remote.go:486 +#: lxc/remote.go:487 #, c-format msgid "Could not close server cert file %q: %w" msgstr "" -#: lxc/remote.go:224 lxc/remote.go:470 +#: lxc/remote.go:225 lxc/remote.go:471 msgid "Could not create server cert dir" msgstr "" @@ -1374,12 +1369,12 @@ msgstr "" msgid "Could not write new remote certificate for remote '%s' with error: %v" msgstr "" -#: lxc/remote.go:481 +#: lxc/remote.go:482 #, c-format msgid "Could not write server cert file %q: %w" msgstr "" -#: lxc/network_zone.go:1327 +#: lxc/network_zone.go:1332 msgid "Couldn't find a matching entry" msgstr "" @@ -1431,7 +1426,7 @@ msgstr "" msgid "Create instances from images" msgstr "" -#: lxc/storage_bucket.go:846 lxc/storage_bucket.go:847 +#: lxc/storage_bucket.go:851 lxc/storage_bucket.go:852 msgid "Create key for a storage bucket" msgstr "" @@ -1463,11 +1458,11 @@ msgstr "" msgid "Create new network peering" msgstr "" -#: lxc/network_zone.go:869 lxc/network_zone.go:870 +#: lxc/network_zone.go:874 lxc/network_zone.go:875 msgid "Create new network zone record" msgstr "" -#: lxc/network_zone.go:270 lxc/network_zone.go:271 +#: lxc/network_zone.go:271 lxc/network_zone.go:272 msgid "Create new network zones" msgstr "" @@ -1518,9 +1513,9 @@ msgstr "" #: 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/network_zone.go:140 lxc/network_zone.go:747 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_bucket.go:512 lxc/storage_bucket.go:832 #: lxc/storage_volume.go:1562 msgid "DESCRIPTION" msgstr "" @@ -1585,7 +1580,7 @@ msgstr "" msgid "Delete instances and snapshots" msgstr "" -#: lxc/storage_bucket.go:924 lxc/storage_bucket.go:925 +#: lxc/storage_bucket.go:929 lxc/storage_bucket.go:930 msgid "Delete key from a storage bucket" msgstr "" @@ -1597,7 +1592,7 @@ msgstr "" msgid "Delete network forwards" msgstr "" -#: lxc/network_load_balancer.go:721 lxc/network_load_balancer.go:722 +#: lxc/network_load_balancer.go:726 lxc/network_load_balancer.go:727 msgid "Delete network load balancers" msgstr "" @@ -1605,11 +1600,11 @@ msgstr "" msgid "Delete network peerings" msgstr "" -#: lxc/network_zone.go:1175 lxc/network_zone.go:1176 +#: lxc/network_zone.go:1180 lxc/network_zone.go:1181 msgid "Delete network zone record" msgstr "" -#: lxc/network_zone.go:583 lxc/network_zone.go:584 +#: lxc/network_zone.go:588 lxc/network_zone.go:589 msgid "Delete network zones" msgstr "" @@ -1625,7 +1620,7 @@ msgstr "" msgid "Delete projects" msgstr "" -#: lxc/storage_bucket.go:182 lxc/storage_bucket.go:183 +#: lxc/storage_bucket.go:187 lxc/storage_bucket.go:188 msgid "Delete storage buckets" msgstr "" @@ -1681,7 +1676,7 @@ msgstr "" #: 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/info.go:32 lxc/init.go:43 lxc/launch.go:24 lxc/list.go:48 lxc/main.go:83 #: 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 @@ -1700,22 +1695,22 @@ msgstr "" #: 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_load_balancer.go:238 lxc/network_load_balancer.go:388 +#: lxc/network_load_balancer.go:456 lxc/network_load_balancer.go:554 +#: lxc/network_load_balancer.go:584 lxc/network_load_balancer.go:727 +#: lxc/network_load_balancer.go:788 lxc/network_load_balancer.go:803 +#: lxc/network_load_balancer.go:867 lxc/network_load_balancer.go:953 +#: lxc/network_load_balancer.go:968 lxc/network_load_balancer.go:1029 #: 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/network_zone.go:29 lxc/network_zone.go:86 lxc/network_zone.go:157 +#: lxc/network_zone.go:212 lxc/network_zone.go:272 lxc/network_zone.go:359 +#: lxc/network_zone.go:439 lxc/network_zone.go:470 lxc/network_zone.go:589 +#: lxc/network_zone.go:637 lxc/network_zone.go:694 lxc/network_zone.go:764 +#: lxc/network_zone.go:816 lxc/network_zone.go:875 lxc/network_zone.go:957 +#: lxc/network_zone.go:1033 lxc/network_zone.go:1063 lxc/network_zone.go:1181 +#: lxc/network_zone.go:1230 lxc/network_zone.go:1245 lxc/network_zone.go:1291 #: 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 @@ -1724,19 +1719,19 @@ msgstr "" #: 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:631 lxc/remote.go:669 lxc/remote.go:755 lxc/remote.go:828 -#: lxc/remote.go:884 lxc/remote.go:924 lxc/rename.go:21 lxc/restore.go:24 +#: lxc/query.go:34 lxc/rebuild.go:27 lxc/remote.go:35 lxc/remote.go:91 +#: lxc/remote.go:632 lxc/remote.go:670 lxc/remote.go:756 lxc/remote.go:829 +#: lxc/remote.go:885 lxc/remote.go:925 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_bucket.go:29 lxc/storage_bucket.go:83 lxc/storage_bucket.go:188 +#: lxc/storage_bucket.go:249 lxc/storage_bucket.go:382 +#: lxc/storage_bucket.go:458 lxc/storage_bucket.go:535 +#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:698 +#: lxc/storage_bucket.go:732 lxc/storage_bucket.go:773 +#: lxc/storage_bucket.go:852 lxc/storage_bucket.go:930 +#: lxc/storage_bucket.go:994 lxc/storage_bucket.go:1129 #: 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 @@ -1872,7 +1867,7 @@ msgstr "" msgid "Don't require user confirmation for using --force" msgstr "" -#: lxc/main.go:99 +#: lxc/main.go:100 msgid "Don't show progress information" msgstr "" @@ -1885,7 +1880,7 @@ msgstr "" msgid "Driver: %v (%v)" msgstr "" -#: lxc/network_zone.go:743 +#: lxc/network_zone.go:748 msgid "ENTRIES" msgstr "" @@ -1963,7 +1958,7 @@ msgstr "" msgid "Edit network forward configurations as YAML" msgstr "" -#: lxc/network_load_balancer.go:578 lxc/network_load_balancer.go:579 +#: lxc/network_load_balancer.go:583 lxc/network_load_balancer.go:584 msgid "Edit network load balancer configurations as YAML" msgstr "" @@ -1971,11 +1966,11 @@ msgstr "" msgid "Edit network peer configurations as YAML" msgstr "" -#: lxc/network_zone.go:464 lxc/network_zone.go:465 +#: lxc/network_zone.go:469 lxc/network_zone.go:470 msgid "Edit network zone configurations as YAML" msgstr "" -#: lxc/network_zone.go:1057 lxc/network_zone.go:1058 +#: lxc/network_zone.go:1062 lxc/network_zone.go:1063 msgid "Edit network zone record configurations as YAML" msgstr "" @@ -1987,11 +1982,11 @@ msgstr "" msgid "Edit project configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:243 lxc/storage_bucket.go:244 +#: lxc/storage_bucket.go:248 lxc/storage_bucket.go:249 msgid "Edit storage bucket configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:988 lxc/storage_bucket.go:989 +#: lxc/storage_bucket.go:993 lxc/storage_bucket.go:994 msgid "Edit storage bucket key as YAML" msgstr "" @@ -2032,7 +2027,7 @@ msgid "" " for the address if not yet set." msgstr "" -#: lxc/network_zone.go:1242 +#: lxc/network_zone.go:1247 msgid "Entry TTL" msgstr "" @@ -2061,9 +2056,9 @@ msgstr "" #: lxc/cluster.go:414 lxc/config.go:624 lxc/config.go:656 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/network_load_balancer.go:527 lxc/network_peer.go:463 +#: lxc/network_zone.go:414 lxc/network_zone.go:1008 lxc/profile.go:876 +#: lxc/project.go:634 lxc/storage.go:727 lxc/storage_bucket.go:602 #: lxc/storage_volume.go:1947 lxc/storage_volume.go:1985 #, c-format msgid "Error setting properties: %v" @@ -2075,10 +2070,10 @@ 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/network_forward.go:513 lxc/network_load_balancer.go:521 +#: lxc/network_peer.go:457 lxc/network_zone.go:408 lxc/network_zone.go:1002 #: lxc/profile.go:870 lxc/project.go:628 lxc/storage.go:721 -#: lxc/storage_bucket.go:591 lxc/storage_volume.go:1941 +#: lxc/storage_bucket.go:596 lxc/storage_volume.go:1941 #: lxc/storage_volume.go:1979 #, c-format msgid "Error unsetting property: %v" @@ -2264,7 +2259,7 @@ msgstr "" msgid "Failed parsing SSH host key: %w" msgstr "" -#: lxc/console.go:361 +#: lxc/console.go:366 #, c-format msgid "Failed starting command: %w" msgstr "" @@ -2279,11 +2274,11 @@ msgstr "" msgid "Failed to accept incoming connection: %w" msgstr "" -#: lxc/remote.go:190 +#: lxc/remote.go:191 msgid "Failed to add remote" msgstr "" -#: lxc/remote.go:241 +#: lxc/remote.go:242 #, c-format msgid "Failed to close server cert file %q: %w" msgstr "" @@ -2293,7 +2288,7 @@ msgstr "" msgid "Failed to connect to cluster member: %w" msgstr "" -#: lxc/remote.go:231 +#: lxc/remote.go:232 #, c-format msgid "Failed to create %q: %w" msgstr "" @@ -2303,12 +2298,12 @@ msgstr "" msgid "Failed to create alias %s: %w" msgstr "" -#: lxc/remote.go:256 +#: lxc/remote.go:257 #, c-format msgid "Failed to create certificate: %w" msgstr "" -#: lxc/remote.go:263 +#: lxc/remote.go:264 #, c-format msgid "Failed to find project: %w" msgstr "" @@ -2333,7 +2328,7 @@ msgstr "" msgid "Failed to walk path for %s: %s" msgstr "" -#: lxc/remote.go:236 +#: lxc/remote.go:237 #, c-format msgid "Failed to write server cert file %q: %w" msgstr "" @@ -2342,7 +2337,7 @@ msgstr "" msgid "Fast mode (same as --columns=nsacPt)" msgstr "" -#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:115 +#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:116 #: lxc/operation.go:136 msgid "Filtering isn't supported yet" msgstr "" @@ -2380,7 +2375,7 @@ msgstr "" msgid "Force the removal of running instances" msgstr "" -#: lxc/main.go:95 +#: lxc/main.go:96 msgid "Force using the local unix socket" msgstr "" @@ -2414,10 +2409,10 @@ msgstr "" #: 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/network_peer.go:84 lxc/network_zone.go:89 lxc/network_zone.go:697 #: lxc/operation.go:108 lxc/profile.go:637 lxc/project.go:412 -#: lxc/project.go:804 lxc/remote.go:673 lxc/storage.go:588 -#: lxc/storage_bucket.go:454 lxc/storage_bucket.go:769 +#: lxc/project.go:804 lxc/remote.go:674 lxc/storage.go:588 +#: lxc/storage_bucket.go:459 lxc/storage_bucket.go:774 #: lxc/storage_volume.go:1446 lxc/warning.go:93 msgid "Format (csv|json|table|yaml|compact)" msgstr "" @@ -2454,7 +2449,7 @@ msgstr "" msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)" msgstr "" -#: lxc/remote.go:737 +#: lxc/remote.go:738 msgid "GLOBAL" msgstr "" @@ -2474,7 +2469,7 @@ msgstr "" msgid "Generate manpages for all commands" msgstr "" -#: lxc/remote.go:159 lxc/remote.go:397 +#: lxc/remote.go:160 lxc/remote.go:398 msgid "Generating a client certificate. This may take a minute..." msgstr "" @@ -2506,7 +2501,7 @@ msgstr "" msgid "Get the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:386 +#: lxc/network_load_balancer.go:391 msgid "Get the key as a network load balancer property" msgstr "" @@ -2518,11 +2513,11 @@ msgstr "" msgid "Get the key as a network property" msgstr "" -#: lxc/network_zone.go:214 +#: lxc/network_zone.go:215 msgid "Get the key as a network zone property" msgstr "" -#: lxc/network_zone.go:814 +#: lxc/network_zone.go:819 msgid "Get the key as a network zone record property" msgstr "" @@ -2534,7 +2529,7 @@ msgstr "" msgid "Get the key as a project property" msgstr "" -#: lxc/storage_bucket.go:380 +#: lxc/storage_bucket.go:385 msgid "Get the key as a storage bucket property" msgstr "" @@ -2574,7 +2569,7 @@ msgstr "" msgid "Get values for network forward configuration keys" msgstr "" -#: lxc/network_load_balancer.go:382 lxc/network_load_balancer.go:383 +#: lxc/network_load_balancer.go:387 lxc/network_load_balancer.go:388 msgid "Get values for network load balancer configuration keys" msgstr "" @@ -2582,11 +2577,11 @@ msgstr "" msgid "Get values for network peer configuration keys" msgstr "" -#: lxc/network_zone.go:210 lxc/network_zone.go:211 +#: lxc/network_zone.go:211 lxc/network_zone.go:212 msgid "Get values for network zone configuration keys" msgstr "" -#: lxc/network_zone.go:810 lxc/network_zone.go:811 +#: lxc/network_zone.go:815 lxc/network_zone.go:816 msgid "Get values for network zone record configuration keys" msgstr "" @@ -2598,7 +2593,7 @@ msgstr "" msgid "Get values for project configuration keys" msgstr "" -#: lxc/storage_bucket.go:376 lxc/storage_bucket.go:377 +#: lxc/storage_bucket.go:381 lxc/storage_bucket.go:382 msgid "Get values for storage bucket configuration keys" msgstr "" @@ -2738,7 +2733,7 @@ msgstr "" msgid "If the snapshot name already exists, delete and create a new one" msgstr "" -#: lxc/main.go:398 +#: lxc/main.go:400 msgid "" "If this is your first time running LXD on this machine, you should also run: " "lxd init" @@ -2895,7 +2890,7 @@ msgstr "" msgid "Instance type" msgstr "" -#: lxc/remote.go:349 +#: lxc/remote.go:350 #, c-format msgid "Invalid URL scheme \"%s\" in \"%s\"" msgstr "" @@ -2967,7 +2962,7 @@ msgstr "" msgid "Invalid new snapshot name, parent volume must be the same as source" msgstr "" -#: lxc/main.go:498 +#: lxc/main.go:502 msgid "Invalid number of arguments" msgstr "" @@ -2976,7 +2971,7 @@ msgstr "" msgid "Invalid path %s" msgstr "" -#: lxc/remote.go:338 +#: lxc/remote.go:339 #, c-format msgid "Invalid protocol: %s" msgstr "" @@ -3024,7 +3019,7 @@ msgstr "" #: lxc/list.go:597 lxc/network.go:1059 lxc/network_forward.go:155 #: lxc/network_load_balancer.go:157 lxc/operation.go:177 -#: lxc/storage_bucket.go:511 lxc/storage_volume.go:1569 lxc/warning.go:220 +#: lxc/storage_bucket.go:516 lxc/storage_volume.go:1569 lxc/warning.go:220 msgid "LOCATION" msgstr "" @@ -3032,7 +3027,7 @@ msgstr "" msgid "LXD - Command line client" msgstr "" -#: lxc/console.go:382 +#: lxc/console.go:387 msgid "LXD automatically uses either spicy or remote-viewer when present." msgstr "" @@ -3122,15 +3117,15 @@ msgstr "" msgid "List available network peers" msgstr "" -#: lxc/network_zone.go:85 +#: lxc/network_zone.go:86 msgid "List available network zone" msgstr "" -#: lxc/network_zone.go:688 lxc/network_zone.go:689 +#: lxc/network_zone.go:693 lxc/network_zone.go:694 msgid "List available network zone records" msgstr "" -#: lxc/network_zone.go:84 +#: lxc/network_zone.go:85 msgid "List available network zoneS" msgstr "" @@ -3319,11 +3314,11 @@ msgstr "" msgid "List projects" msgstr "" -#: lxc/storage_bucket.go:766 lxc/storage_bucket.go:768 +#: lxc/storage_bucket.go:771 lxc/storage_bucket.go:773 msgid "List storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:451 lxc/storage_bucket.go:453 +#: lxc/storage_bucket.go:456 lxc/storage_bucket.go:458 msgid "List storage buckets" msgstr "" @@ -3351,7 +3346,7 @@ msgid "" " U - Current disk usage" msgstr "" -#: lxc/remote.go:668 lxc/remote.go:669 +#: lxc/remote.go:669 lxc/remote.go:670 msgid "List the available remotes" msgstr "" @@ -3578,11 +3573,11 @@ msgstr "" msgid "Manage network forwards" msgstr "" -#: lxc/network_load_balancer.go:782 lxc/network_load_balancer.go:783 +#: lxc/network_load_balancer.go:787 lxc/network_load_balancer.go:788 msgid "Manage network load balancer backends" msgstr "" -#: lxc/network_load_balancer.go:947 lxc/network_load_balancer.go:948 +#: lxc/network_load_balancer.go:952 lxc/network_load_balancer.go:953 msgid "Manage network load balancer ports" msgstr "" @@ -3594,15 +3589,15 @@ msgstr "" msgid "Manage network peerings" msgstr "" -#: lxc/network_zone.go:1224 lxc/network_zone.go:1225 +#: lxc/network_zone.go:1229 lxc/network_zone.go:1230 msgid "Manage network zone record entries" msgstr "" -#: lxc/network_zone.go:631 lxc/network_zone.go:632 +#: lxc/network_zone.go:636 lxc/network_zone.go:637 msgid "Manage network zone records" msgstr "" -#: lxc/network_zone.go:27 lxc/network_zone.go:28 +#: lxc/network_zone.go:28 lxc/network_zone.go:29 msgid "Manage network zones" msgstr "" @@ -3618,11 +3613,11 @@ msgstr "" msgid "Manage projects" msgstr "" -#: lxc/storage_bucket.go:726 +#: lxc/storage_bucket.go:731 msgid "Manage storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:727 +#: lxc/storage_bucket.go:732 msgid "Manage storage bucket keys." msgstr "" @@ -3650,7 +3645,7 @@ msgid "" "\"custom\" (user created) volumes." msgstr "" -#: lxc/remote.go:33 lxc/remote.go:34 +#: lxc/remote.go:34 lxc/remote.go:35 msgid "Manage the list of remote servers" msgstr "" @@ -3731,12 +3726,12 @@ msgid "" "Minimum level for log messages (only available when using pretty format)" msgstr "" -#: lxc/storage_bucket.go:111 lxc/storage_bucket.go:211 -#: lxc/storage_bucket.go:287 lxc/storage_bucket.go:406 -#: lxc/storage_bucket.go:563 lxc/storage_bucket.go:655 -#: lxc/storage_bucket.go:797 lxc/storage_bucket.go:878 -#: lxc/storage_bucket.go:953 lxc/storage_bucket.go:1032 -#: lxc/storage_bucket.go:1155 +#: lxc/storage_bucket.go:116 lxc/storage_bucket.go:216 +#: lxc/storage_bucket.go:292 lxc/storage_bucket.go:411 +#: lxc/storage_bucket.go:568 lxc/storage_bucket.go:660 +#: lxc/storage_bucket.go:802 lxc/storage_bucket.go:883 +#: lxc/storage_bucket.go:958 lxc/storage_bucket.go:1037 +#: lxc/storage_bucket.go:1160 msgid "Missing bucket name" msgstr "" @@ -3780,8 +3775,8 @@ msgstr "" msgid "Missing instance name" msgstr "" -#: lxc/storage_bucket.go:882 lxc/storage_bucket.go:957 -#: lxc/storage_bucket.go:1036 lxc/storage_bucket.go:1159 +#: lxc/storage_bucket.go:887 lxc/storage_bucket.go:962 +#: lxc/storage_bucket.go:1041 lxc/storage_bucket.go:1164 msgid "Missing key name" msgstr "" @@ -3789,10 +3784,10 @@ msgstr "" #: lxc/network_forward.go:481 lxc/network_forward.go:627 #: lxc/network_forward.go:746 lxc/network_forward.go:823 #: lxc/network_forward.go:889 lxc/network_load_balancer.go:201 -#: lxc/network_load_balancer.go:411 lxc/network_load_balancer.go:484 -#: lxc/network_load_balancer.go:630 lxc/network_load_balancer.go:750 -#: lxc/network_load_balancer.go:826 lxc/network_load_balancer.go:890 -#: lxc/network_load_balancer.go:991 lxc/network_load_balancer.go:1053 +#: lxc/network_load_balancer.go:416 lxc/network_load_balancer.go:489 +#: lxc/network_load_balancer.go:635 lxc/network_load_balancer.go:755 +#: lxc/network_load_balancer.go:831 lxc/network_load_balancer.go:895 +#: lxc/network_load_balancer.go:996 lxc/network_load_balancer.go:1058 msgid "Missing listen address" msgstr "" @@ -3817,26 +3812,26 @@ msgstr "" #: lxc/network_forward.go:477 lxc/network_forward.go:623 #: lxc/network_forward.go:742 lxc/network_forward.go:819 #: lxc/network_forward.go:885 lxc/network_load_balancer.go:123 -#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:261 -#: lxc/network_load_balancer.go:407 lxc/network_load_balancer.go:480 -#: lxc/network_load_balancer.go:626 lxc/network_load_balancer.go:746 -#: lxc/network_load_balancer.go:822 lxc/network_load_balancer.go:886 -#: lxc/network_load_balancer.go:987 lxc/network_load_balancer.go:1049 +#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:266 +#: lxc/network_load_balancer.go:412 lxc/network_load_balancer.go:485 +#: lxc/network_load_balancer.go:631 lxc/network_load_balancer.go:751 +#: lxc/network_load_balancer.go:827 lxc/network_load_balancer.go:891 +#: lxc/network_load_balancer.go:992 lxc/network_load_balancer.go:1054 #: lxc/network_peer.go:110 lxc/network_peer.go:180 lxc/network_peer.go:237 #: lxc/network_peer.go:355 lxc/network_peer.go:426 lxc/network_peer.go:556 #: lxc/network_peer.go:665 msgid "Missing network name" msgstr "" -#: lxc/network_zone.go:178 lxc/network_zone.go:234 lxc/network_zone.go:294 -#: lxc/network_zone.go:382 lxc/network_zone.go:503 lxc/network_zone.go:606 -#: lxc/network_zone.go:712 lxc/network_zone.go:780 lxc/network_zone.go:892 -#: lxc/network_zone.go:976 lxc/network_zone.go:1197 lxc/network_zone.go:1262 -#: lxc/network_zone.go:1307 +#: lxc/network_zone.go:179 lxc/network_zone.go:235 lxc/network_zone.go:299 +#: lxc/network_zone.go:387 lxc/network_zone.go:508 lxc/network_zone.go:611 +#: lxc/network_zone.go:717 lxc/network_zone.go:785 lxc/network_zone.go:897 +#: lxc/network_zone.go:981 lxc/network_zone.go:1202 lxc/network_zone.go:1267 +#: lxc/network_zone.go:1312 msgid "Missing network zone name" msgstr "" -#: lxc/network_zone.go:833 lxc/network_zone.go:1095 +#: lxc/network_zone.go:838 lxc/network_zone.go:1100 msgid "Missing network zone record name" msgstr "" @@ -3846,13 +3841,13 @@ msgid "Missing peer name" msgstr "" #: lxc/storage.go:194 lxc/storage.go:264 lxc/storage.go:370 lxc/storage.go:440 -#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:107 -#: lxc/storage_bucket.go:207 lxc/storage_bucket.go:283 -#: lxc/storage_bucket.go:402 lxc/storage_bucket.go:477 -#: lxc/storage_bucket.go:559 lxc/storage_bucket.go:651 -#: lxc/storage_bucket.go:793 lxc/storage_bucket.go:874 -#: lxc/storage_bucket.go:949 lxc/storage_bucket.go:1028 -#: lxc/storage_bucket.go:1151 lxc/storage_volume.go:189 +#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:112 +#: lxc/storage_bucket.go:212 lxc/storage_bucket.go:288 +#: lxc/storage_bucket.go:407 lxc/storage_bucket.go:482 +#: lxc/storage_bucket.go:564 lxc/storage_bucket.go:656 +#: lxc/storage_bucket.go:798 lxc/storage_bucket.go:879 +#: lxc/storage_bucket.go:954 lxc/storage_bucket.go:1033 +#: lxc/storage_bucket.go:1156 lxc/storage_volume.go:189 #: lxc/storage_volume.go:287 lxc/storage_volume.go:583 #: lxc/storage_volume.go:660 lxc/storage_volume.go:735 #: lxc/storage_volume.go:817 lxc/storage_volume.go:919 @@ -3972,7 +3967,7 @@ msgstr "" msgid "Moving the storage volume: %s" msgstr "" -#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1097 +#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1102 msgid "Multiple ports match. Use --force to remove them all" msgstr "" @@ -3991,10 +3986,10 @@ 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:677 lxc/project.go:498 -#: lxc/remote.go:731 lxc/storage.go:638 lxc/storage_bucket.go:506 -#: lxc/storage_bucket.go:826 lxc/storage_volume.go:1561 +#: lxc/network_acl.go:147 lxc/network_peer.go:139 lxc/network_zone.go:139 +#: lxc/network_zone.go:746 lxc/profile.go:677 lxc/project.go:498 +#: lxc/remote.go:732 lxc/storage.go:638 lxc/storage_bucket.go:511 +#: lxc/storage_bucket.go:831 lxc/storage_volume.go:1561 msgid "NAME" msgstr "" @@ -4020,7 +4015,7 @@ msgstr "" #: lxc/network.go:957 lxc/operation.go:154 lxc/project.go:456 #: lxc/project.go:461 lxc/project.go:466 lxc/project.go:471 lxc/project.go:476 -#: lxc/project.go:481 lxc/remote.go:691 lxc/remote.go:696 lxc/remote.go:701 +#: lxc/project.go:481 lxc/remote.go:692 lxc/remote.go:697 lxc/remote.go:702 msgid "NO" msgstr "" @@ -4047,7 +4042,7 @@ msgstr "" msgid "Name" msgstr "" -#: lxc/remote.go:141 +#: lxc/remote.go:142 msgid "Name of the project to use for this remote:" msgstr "" @@ -4096,12 +4091,12 @@ msgstr "" msgid "Network ACL %s renamed to %s" msgstr "" -#: lxc/network_zone.go:336 +#: lxc/network_zone.go:341 #, c-format msgid "Network Zone %s created" msgstr "" -#: lxc/network_zone.go:616 +#: lxc/network_zone.go:621 #, c-format msgid "Network Zone %s deleted" msgstr "" @@ -4116,12 +4111,12 @@ msgstr "" msgid "Network forward %s deleted" msgstr "" -#: lxc/network_load_balancer.go:365 +#: lxc/network_load_balancer.go:370 #, c-format msgid "Network load balancer %s created" msgstr "" -#: lxc/network_load_balancer.go:767 +#: lxc/network_load_balancer.go:772 #, c-format msgid "Network load balancer %s deleted" msgstr "" @@ -4159,12 +4154,12 @@ msgstr "" msgid "Network usage:" msgstr "" -#: lxc/network_zone.go:934 +#: lxc/network_zone.go:939 #, c-format msgid "Network zone record %s created" msgstr "" -#: lxc/network_zone.go:1207 +#: lxc/network_zone.go:1212 #, c-format msgid "Network zone record %s deleted" msgstr "" @@ -4199,11 +4194,11 @@ msgstr "" msgid "No device found for this storage volume" msgstr "" -#: lxc/network_load_balancer.go:921 +#: lxc/network_load_balancer.go:926 msgid "No matching backend found" msgstr "" -#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1108 +#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1113 msgid "No matching port(s) found" msgstr "" @@ -4249,7 +4244,7 @@ msgstr "" msgid "Only \"custom\" volumes can be snapshotted" msgstr "" -#: lxc/remote.go:332 +#: lxc/remote.go:333 msgid "Only https URLs are supported for simplestreams" msgstr "" @@ -4274,7 +4269,7 @@ msgstr "" msgid "Optimized Storage" msgstr "" -#: lxc/main.go:96 +#: lxc/main.go:97 msgid "Override the source project" msgstr "" @@ -4320,11 +4315,11 @@ msgstr "" msgid "PROJECT" msgstr "" -#: lxc/remote.go:733 +#: lxc/remote.go:734 msgid "PROTOCOL" msgstr "" -#: lxc/image.go:1073 lxc/remote.go:735 +#: lxc/image.go:1073 lxc/remote.go:736 msgid "PUBLIC" msgstr "" @@ -4340,7 +4335,7 @@ msgstr "" msgid "Partitions:" msgstr "" -#: lxc/main.go:361 +#: lxc/main.go:363 #, c-format msgid "Password for %s: " msgstr "" @@ -4353,7 +4348,7 @@ msgstr "" msgid "Perform an incremental copy" msgstr "" -#: lxc/remote.go:182 +#: lxc/remote.go:183 msgid "Please provide an alternate server address (empty to abort):" msgstr "" @@ -4365,7 +4360,7 @@ msgstr "" msgid "Please provide cluster member name: " msgstr "" -#: lxc/remote.go:462 +#: lxc/remote.go:463 msgid "Please type 'y', 'n' or the fingerprint:" msgstr "" @@ -4387,10 +4382,10 @@ msgstr "" #: lxc/config.go:1278 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/network_load_balancer.go:695 lxc/network_peer.go:611 +#: lxc/network_zone.go:557 lxc/network_zone.go:1149 lxc/profile.go:539 +#: lxc/project.go:316 lxc/storage.go:311 lxc/storage_bucket.go:349 +#: lxc/storage_bucket.go:1098 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 "" @@ -4399,7 +4394,7 @@ msgstr "" msgid "Pretty rendering (short for --format=pretty)" msgstr "" -#: lxc/main.go:94 +#: lxc/main.go:95 msgid "Print help" msgstr "" @@ -4407,7 +4402,7 @@ msgstr "" msgid "Print the raw response" msgstr "" -#: lxc/main.go:93 +#: lxc/main.go:94 msgid "Print version number" msgstr "" @@ -4496,7 +4491,7 @@ msgstr "" msgid "Project %s renamed to %s" msgstr "" -#: lxc/remote.go:106 +#: lxc/remote.go:107 msgid "Project to use for the remote" msgstr "" @@ -4594,7 +4589,7 @@ msgid "" "pool \"default\"." msgstr "" -#: lxc/remote.go:105 +#: lxc/remote.go:106 msgid "Public image server" msgstr "" @@ -4642,7 +4637,7 @@ msgstr "" msgid "RESOURCE" msgstr "" -#: lxc/storage_bucket.go:828 +#: lxc/storage_bucket.go:833 msgid "ROLE" msgstr "" @@ -4685,45 +4680,45 @@ msgstr "" msgid "Refreshing the image: %s" msgstr "" -#: lxc/remote.go:785 +#: lxc/remote.go:786 #, c-format msgid "Remote %s already exists" msgstr "" -#: lxc/project.go:769 lxc/remote.go:776 lxc/remote.go:849 lxc/remote.go:905 -#: lxc/remote.go:945 +#: lxc/project.go:769 lxc/remote.go:777 lxc/remote.go:850 lxc/remote.go:906 +#: lxc/remote.go:946 #, c-format msgid "Remote %s doesn't exist" msgstr "" -#: lxc/remote.go:301 +#: lxc/remote.go:302 #, c-format msgid "Remote %s exists as <%s>" msgstr "" -#: lxc/remote.go:857 +#: lxc/remote.go:858 #, c-format msgid "Remote %s is global and cannot be removed" msgstr "" -#: lxc/remote.go:780 lxc/remote.go:853 lxc/remote.go:949 +#: lxc/remote.go:781 lxc/remote.go:854 lxc/remote.go:950 #, c-format msgid "Remote %s is static and cannot be modified" msgstr "" -#: lxc/remote.go:290 +#: lxc/remote.go:291 msgid "Remote address must not be empty" msgstr "" -#: lxc/remote.go:101 +#: lxc/remote.go:102 msgid "Remote admin password" msgstr "" -#: lxc/remote.go:295 +#: lxc/remote.go:296 msgid "Remote names may not contain colons" msgstr "" -#: lxc/remote.go:102 +#: lxc/remote.go:103 msgid "Remote trust token" msgstr "" @@ -4749,7 +4744,7 @@ msgstr "" msgid "Remove a member from the cluster" msgstr "" -#: lxc/network_zone.go:1285 +#: lxc/network_zone.go:1290 msgid "Remove a network zone record entry" msgstr "" @@ -4757,7 +4752,7 @@ msgstr "" msgid "Remove aliases" msgstr "" -#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1025 +#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1030 msgid "Remove all ports that match" msgstr "" @@ -4765,15 +4760,15 @@ msgstr "" msgid "Remove all rules that match" msgstr "" -#: lxc/network_load_balancer.go:862 +#: lxc/network_load_balancer.go:867 msgid "Remove backend from a load balancer" msgstr "" -#: lxc/network_load_balancer.go:861 +#: lxc/network_load_balancer.go:866 msgid "Remove backends from a load balancer" msgstr "" -#: lxc/network_zone.go:1286 +#: lxc/network_zone.go:1291 msgid "Remove entries from a network zone record" msgstr "" @@ -4797,7 +4792,7 @@ msgstr "" msgid "Remove ports from a forward" msgstr "" -#: lxc/network_load_balancer.go:1023 lxc/network_load_balancer.go:1024 +#: lxc/network_load_balancer.go:1028 lxc/network_load_balancer.go:1029 msgid "Remove ports from a load balancer" msgstr "" @@ -4805,7 +4800,7 @@ msgstr "" msgid "Remove profiles from instances" msgstr "" -#: lxc/remote.go:827 lxc/remote.go:828 +#: lxc/remote.go:828 lxc/remote.go:829 msgid "Remove remotes" msgstr "" @@ -4862,7 +4857,7 @@ msgstr "" msgid "Rename projects" msgstr "" -#: lxc/remote.go:754 lxc/remote.go:755 +#: lxc/remote.go:755 lxc/remote.go:756 msgid "Rename remotes" msgstr "" @@ -4940,7 +4935,7 @@ msgid "Restrict the certificate to one or more projects" msgstr "" #: lxc/console.go:44 -msgid "Retrieve the instance's console log" +msgid "Retrieve the container's console log" msgstr "" #: lxc/init.go:347 @@ -4956,7 +4951,7 @@ msgstr "" msgid "Revoke cluster member join token" msgstr "" -#: lxc/storage_bucket.go:851 +#: lxc/storage_bucket.go:856 msgid "Role (admin or read-only)" msgstr "" @@ -5007,7 +5002,7 @@ msgstr "" msgid "STATE" msgstr "" -#: lxc/remote.go:736 +#: lxc/remote.go:737 msgid "STATIC" msgstr "" @@ -5031,11 +5026,11 @@ msgstr "" msgid "STP" msgstr "" -#: lxc/storage_bucket.go:853 +#: lxc/storage_bucket.go:858 msgid "Secret key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:909 +#: lxc/storage_bucket.go:914 #, c-format msgid "Secret key: %s" msgstr "" @@ -5044,19 +5039,19 @@ msgstr "" msgid "Send a raw query to LXD" msgstr "" -#: lxc/remote.go:104 +#: lxc/remote.go:105 msgid "Server authentication type (tls or oidc)" msgstr "" -#: lxc/remote.go:460 +#: lxc/remote.go:461 msgid "Server certificate NACKed by user" msgstr "" -#: lxc/remote.go:599 +#: lxc/remote.go:600 msgid "Server doesn't trust us after authentication" msgstr "" -#: lxc/remote.go:103 +#: lxc/remote.go:104 msgid "Server protocol (lxd or simplestreams)" msgstr "" @@ -5155,11 +5150,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_load_balancer.go:450 +#: lxc/network_load_balancer.go:455 msgid "Set network load balancer keys" msgstr "" -#: lxc/network_load_balancer.go:451 +#: lxc/network_load_balancer.go:456 msgid "" "Set network load balancer keys\n" "\n" @@ -5181,11 +5176,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:353 +#: lxc/network_zone.go:358 msgid "Set network zone configuration keys" msgstr "" -#: lxc/network_zone.go:354 +#: lxc/network_zone.go:359 msgid "" "Set network zone configuration keys\n" "\n" @@ -5194,7 +5189,7 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:951 lxc/network_zone.go:952 +#: lxc/network_zone.go:956 lxc/network_zone.go:957 msgid "Set network zone record configuration keys" msgstr "" @@ -5224,11 +5219,11 @@ msgid "" " lxc project set [:] " msgstr "" -#: lxc/storage_bucket.go:529 +#: lxc/storage_bucket.go:534 msgid "Set storage bucket configuration keys" msgstr "" -#: lxc/storage_bucket.go:530 +#: lxc/storage_bucket.go:535 msgid "" "Set storage bucket configuration keys\n" "\n" @@ -5263,7 +5258,7 @@ msgid "" " lxc storage volume set [:] [/] " msgstr "" -#: lxc/remote.go:923 lxc/remote.go:924 +#: lxc/remote.go:924 lxc/remote.go:925 msgid "Set the URL for the remote" msgstr "" @@ -5291,7 +5286,7 @@ msgstr "" msgid "Set the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:458 +#: lxc/network_load_balancer.go:463 msgid "Set the key as a network load balancer property" msgstr "" @@ -5303,11 +5298,11 @@ msgstr "" msgid "Set the key as a network property" msgstr "" -#: lxc/network_zone.go:361 +#: lxc/network_zone.go:366 msgid "Set the key as a network zone property" msgstr "" -#: lxc/network_zone.go:957 +#: lxc/network_zone.go:962 msgid "Set the key as a network zone record property" msgstr "" @@ -5319,7 +5314,7 @@ msgstr "" msgid "Set the key as a project property" msgstr "" -#: lxc/storage_bucket.go:537 +#: lxc/storage_bucket.go:542 msgid "Set the key as a storage bucket property" msgstr "" @@ -5339,11 +5334,11 @@ msgstr "" msgid "Setup SSH SFTP listener on address:port instead of mounting" msgstr "" -#: lxc/main.go:97 +#: lxc/main.go:98 msgid "Show all debug messages" msgstr "" -#: lxc/main.go:98 +#: lxc/main.go:99 msgid "Show all information messages" msgstr "" @@ -5412,7 +5407,7 @@ msgstr "" msgid "Show instance or server information" msgstr "" -#: lxc/main.go:271 lxc/main.go:272 +#: lxc/main.go:272 lxc/main.go:273 msgid "Show less common commands" msgstr "" @@ -5444,15 +5439,15 @@ msgstr "" msgid "Show network peer configurations" msgstr "" -#: lxc/network_zone.go:155 lxc/network_zone.go:156 +#: lxc/network_zone.go:156 lxc/network_zone.go:157 msgid "Show network zone configurations" msgstr "" -#: lxc/network_zone.go:758 +#: lxc/network_zone.go:763 msgid "Show network zone record configuration" msgstr "" -#: lxc/network_zone.go:759 +#: lxc/network_zone.go:764 msgid "Show network zone record configurations" msgstr "" @@ -5464,11 +5459,11 @@ msgstr "" msgid "Show project options" msgstr "" -#: lxc/storage_bucket.go:623 lxc/storage_bucket.go:624 +#: lxc/storage_bucket.go:628 lxc/storage_bucket.go:629 msgid "Show storage bucket configurations" msgstr "" -#: lxc/storage_bucket.go:1123 lxc/storage_bucket.go:1124 +#: lxc/storage_bucket.go:1128 lxc/storage_bucket.go:1129 msgid "Show storage bucket key configurations" msgstr "" @@ -5494,7 +5489,7 @@ msgid "" "that are granted via identity provider group mappings. \n" msgstr "" -#: lxc/remote.go:630 lxc/remote.go:631 +#: lxc/remote.go:631 lxc/remote.go:632 msgid "Show the default remote" msgstr "" @@ -5618,22 +5613,22 @@ msgstr "" msgid "Stopping the instance failed: %s" msgstr "" -#: lxc/storage_bucket.go:161 +#: lxc/storage_bucket.go:166 #, c-format msgid "Storage bucket %s created" msgstr "" -#: lxc/storage_bucket.go:228 +#: lxc/storage_bucket.go:233 #, c-format msgid "Storage bucket %s deleted" msgstr "" -#: lxc/storage_bucket.go:907 +#: lxc/storage_bucket.go:912 #, c-format msgid "Storage bucket key %s added" msgstr "" -#: lxc/storage_bucket.go:973 +#: lxc/storage_bucket.go:978 #, c-format msgid "Storage bucket key %s removed" msgstr "" @@ -5706,7 +5701,7 @@ msgstr "" msgid "Switch the current project" msgstr "" -#: lxc/remote.go:883 lxc/remote.go:884 +#: lxc/remote.go:884 lxc/remote.go:885 msgid "Switch the default remote" msgstr "" @@ -5821,7 +5816,7 @@ msgstr "" msgid "The property %q does not exist on the instance snapshot %s/%s: %v" msgstr "" -#: lxc/network_load_balancer.go:424 +#: lxc/network_load_balancer.go:429 #, c-format msgid "The property %q does not exist on the load balancer %q: %v" msgstr "" @@ -5846,12 +5841,12 @@ msgstr "" msgid "The property %q does not exist on the network peer %q: %v" msgstr "" -#: lxc/network_zone.go:246 +#: lxc/network_zone.go:247 #, c-format msgid "The property %q does not exist on the network zone %q: %v" msgstr "" -#: lxc/network_zone.go:845 +#: lxc/network_zone.go:850 #, c-format msgid "The property %q does not exist on the network zone record %q: %v" msgstr "" @@ -5866,7 +5861,7 @@ msgstr "" msgid "The property %q does not exist on the project %q: %v" msgstr "" -#: lxc/storage_bucket.go:426 +#: lxc/storage_bucket.go:431 #, c-format msgid "The property %q does not exist on the storage bucket %q: %v" msgstr "" @@ -5920,7 +5915,7 @@ msgstr "" msgid "This LXD server is not available on the network" msgstr "" -#: lxc/main.go:293 +#: lxc/main.go:294 msgid "" "This client hasn't been configured to use a remote LXD server yet.\n" "As your platform can't run native Linux instances, you must connect to a " @@ -5952,11 +5947,11 @@ msgstr "" msgid "To create a new network, use: lxc network create" msgstr "" -#: lxc/console.go:210 +#: lxc/console.go:215 msgid "To detach from the console, press: +a q" msgstr "" -#: lxc/main.go:403 +#: lxc/main.go:406 msgid "" "To start your first container, try: lxc launch ubuntu:24.04\n" "Or for a virtual machine: lxc launch ubuntu:24.04 --vm" @@ -6054,7 +6049,7 @@ msgstr "" msgid "UPLOAD DATE" msgstr "" -#: lxc/cluster.go:184 lxc/remote.go:732 +#: lxc/cluster.go:184 lxc/remote.go:733 msgid "URL" msgstr "" @@ -6063,7 +6058,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:679 lxc/project.go:506 +#: lxc/network_zone.go:141 lxc/profile.go:679 lxc/project.go:506 #: lxc/storage.go:647 lxc/storage_volume.go:1564 msgid "USED BY" msgstr "" @@ -6082,7 +6077,7 @@ msgstr "" msgid "Unable to create a temporary file: %v" msgstr "" -#: lxc/remote.go:213 lxc/remote.go:247 +#: lxc/remote.go:214 lxc/remote.go:248 msgid "Unavailable remote server" msgstr "" @@ -6102,7 +6097,7 @@ msgstr "" msgid "Unknown column shorthand char '%c' in '%s'" msgstr "" -#: lxc/console.go:159 +#: lxc/console.go:164 #, c-format msgid "Unknown console type %q" msgstr "" @@ -6162,11 +6157,11 @@ msgstr "" msgid "Unset network forward keys" msgstr "" -#: lxc/network_load_balancer.go:548 +#: lxc/network_load_balancer.go:553 msgid "Unset network load balancer configuration keys" msgstr "" -#: lxc/network_load_balancer.go:549 +#: lxc/network_load_balancer.go:554 msgid "Unset network load balancer keys" msgstr "" @@ -6178,11 +6173,11 @@ msgstr "" msgid "Unset network peer keys" msgstr "" -#: lxc/network_zone.go:433 lxc/network_zone.go:434 +#: lxc/network_zone.go:438 lxc/network_zone.go:439 msgid "Unset network zone configuration keys" msgstr "" -#: lxc/network_zone.go:1027 lxc/network_zone.go:1028 +#: lxc/network_zone.go:1032 lxc/network_zone.go:1033 msgid "Unset network zone record configuration keys" msgstr "" @@ -6194,7 +6189,7 @@ msgstr "" msgid "Unset project configuration keys" msgstr "" -#: lxc/storage_bucket.go:692 lxc/storage_bucket.go:693 +#: lxc/storage_bucket.go:697 lxc/storage_bucket.go:698 msgid "Unset storage bucket configuration keys" msgstr "" @@ -6218,7 +6213,7 @@ msgstr "" msgid "Unset the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:552 +#: lxc/network_load_balancer.go:557 msgid "Unset the key as a network load balancer property" msgstr "" @@ -6230,11 +6225,11 @@ msgstr "" msgid "Unset the key as a network property" msgstr "" -#: lxc/network_zone.go:437 +#: lxc/network_zone.go:442 msgid "Unset the key as a network zone property" msgstr "" -#: lxc/network_zone.go:1031 +#: lxc/network_zone.go:1036 msgid "Unset the key as a network zone record property" msgstr "" @@ -6246,7 +6241,7 @@ msgstr "" msgid "Unset the key as a project property" msgstr "" -#: lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:701 msgid "Unset the key as a storage bucket property" msgstr "" @@ -6308,7 +6303,7 @@ msgid "" "Use storage driver optimized format (can only be restored on a similar pool)" msgstr "" -#: lxc/main.go:100 +#: lxc/main.go:101 msgid "Use with help or --help to view sub-commands" msgstr "" @@ -6405,7 +6400,7 @@ msgstr "" #: lxc/network.go:959 lxc/operation.go:156 lxc/project.go:458 #: lxc/project.go:463 lxc/project.go:468 lxc/project.go:473 lxc/project.go:478 -#: lxc/project.go:483 lxc/remote.go:693 lxc/remote.go:698 lxc/remote.go:703 +#: lxc/project.go:483 lxc/remote.go:694 lxc/remote.go:699 lxc/remote.go:704 msgid "YES" msgstr "" @@ -6440,7 +6435,7 @@ 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/network.go:909 lxc/network_acl.go:91 lxc/network_zone.go:83 #: 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 "[:]" @@ -6503,19 +6498,19 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:154 lxc/network_zone.go:463 lxc/network_zone.go:581 +#: lxc/network_zone.go:155 lxc/network_zone.go:468 lxc/network_zone.go:586 msgid "[:]" msgstr "" -#: lxc/network_zone.go:209 lxc/network_zone.go:432 +#: lxc/network_zone.go:210 lxc/network_zone.go:437 msgid "[:] " msgstr "" -#: lxc/network_zone.go:352 +#: lxc/network_zone.go:357 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:269 +#: lxc/network_zone.go:270 msgid "[:] [key=value...]" msgstr "" @@ -6761,30 +6756,30 @@ msgstr "" #: lxc/network_forward.go:169 lxc/network_forward.go:574 #: lxc/network_forward.go:715 lxc/network_load_balancer.go:171 -#: lxc/network_load_balancer.go:577 lxc/network_load_balancer.go:719 +#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:724 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:860 +#: lxc/network_load_balancer.go:865 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:796 +#: lxc/network_load_balancer.go:801 msgid "" "[:] " "[]" msgstr "" #: lxc/network_forward.go:377 lxc/network_forward.go:544 -#: lxc/network_load_balancer.go:381 lxc/network_load_balancer.go:547 +#: lxc/network_load_balancer.go:386 lxc/network_load_balancer.go:552 msgid "[:] " msgstr "" -#: lxc/network_forward.go:446 lxc/network_load_balancer.go:449 +#: lxc/network_forward.go:446 lxc/network_load_balancer.go:454 msgid "[:] =..." msgstr "" -#: lxc/network_load_balancer.go:961 +#: lxc/network_load_balancer.go:966 msgid "" "[:] " "[,...]" @@ -6796,7 +6791,7 @@ msgid "" " []" msgstr "" -#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1022 +#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1027 msgid "[:] [] []" msgstr "" @@ -6847,7 +6842,7 @@ msgid "[:]" msgstr "" #: lxc/storage.go:167 lxc/storage.go:218 lxc/storage.go:412 lxc/storage.go:759 -#: lxc/storage_bucket.go:449 +#: lxc/storage_bucket.go:454 msgid "[:]" msgstr "" @@ -6855,18 +6850,18 @@ msgstr "" msgid "[:] []" msgstr "" -#: lxc/storage_bucket.go:180 lxc/storage_bucket.go:242 -#: lxc/storage_bucket.go:622 lxc/storage_bucket.go:764 +#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:247 +#: lxc/storage_bucket.go:627 lxc/storage_bucket.go:769 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:375 lxc/storage_bucket.go:691 -#: lxc/storage_bucket.go:845 lxc/storage_bucket.go:923 -#: lxc/storage_bucket.go:987 lxc/storage_bucket.go:1122 +#: lxc/storage_bucket.go:380 lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:850 lxc/storage_bucket.go:928 +#: lxc/storage_bucket.go:992 lxc/storage_bucket.go:1127 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:528 +#: lxc/storage_bucket.go:533 msgid "[:] =..." msgstr "" @@ -7010,27 +7005,27 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:686 +#: lxc/network_zone.go:691 msgid "[:]" msgstr "" -#: lxc/network_zone.go:757 lxc/network_zone.go:1056 lxc/network_zone.go:1173 +#: lxc/network_zone.go:762 lxc/network_zone.go:1061 lxc/network_zone.go:1178 msgid "[:] " msgstr "" -#: lxc/network_zone.go:809 lxc/network_zone.go:1026 +#: lxc/network_zone.go:814 lxc/network_zone.go:1031 msgid "[:] " msgstr "" -#: lxc/network_zone.go:950 +#: lxc/network_zone.go:955 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:1238 lxc/network_zone.go:1284 +#: lxc/network_zone.go:1243 lxc/network_zone.go:1289 msgid "[:] " msgstr "" -#: lxc/network_zone.go:868 +#: lxc/network_zone.go:873 msgid "[:] [key=value...]" msgstr "" @@ -7054,7 +7049,7 @@ msgstr "" msgid "[:][] [...]" msgstr "" -#: lxc/remote.go:88 +#: lxc/remote.go:89 msgid "[] " msgstr "" @@ -7062,7 +7057,7 @@ msgstr "" msgid "[[:]]" msgstr "" -#: lxc/project.go:488 lxc/remote.go:722 +#: lxc/project.go:488 lxc/remote.go:723 msgid "current" msgstr "" @@ -7325,6 +7320,23 @@ msgid "" " Create a new OVN network called bar using baz as its uplink network" msgstr "" +#: lxc/network_load_balancer.go:239 +msgid "" +"lxc network load-balancer create n1 127.0.0.1\n" +"\n" +"lxc network load-balancer create n1 127.0.0.1 < config.yaml\n" +" Create network load-balancer for network n1 with configuration from " +"config.yaml" +msgstr "" + +#: lxc/network_zone.go:273 +msgid "" +"lxc network zone create z1\n" +"\n" +"lxc network zone create z1 < config.yaml\n" +" Create network zone z1 with configuration from config.yaml" +msgstr "" + #: lxc/operation.go:195 msgid "" "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n" @@ -7395,26 +7407,36 @@ msgid "" " Restore the snapshot." msgstr "" -#: lxc/storage_bucket.go:245 +#: lxc/storage_bucket.go:84 +msgid "" +"lxc storage bucket create p1 b01\n" +"\tCreate a new storage bucket name b01 in storage pool p1\n" +"\n" +"lxc storage bucket create p1 b01 < config.yaml\n" +"\tCreate a new storage bucket name b01 in storage pool p1 using the content " +"of config.yaml" +msgstr "" + +#: lxc/storage_bucket.go:250 msgid "" "lxc storage bucket edit [:] < bucket.yaml\n" " Update a storage bucket using the content of bucket.yaml." msgstr "" -#: lxc/storage_bucket.go:990 +#: lxc/storage_bucket.go:995 msgid "" "lxc storage bucket edit [:] < key.yaml\n" " Update a storage bucket key using the content of key.yaml." msgstr "" -#: lxc/storage_bucket.go:1125 +#: lxc/storage_bucket.go:1130 msgid "" "lxc storage bucket key show default data foo\n" " Will show the properties of a bucket key called \"foo\" for a bucket " "called \"data\" in the \"default\" pool." msgstr "" -#: lxc/storage_bucket.go:625 +#: lxc/storage_bucket.go:630 msgid "" "lxc storage bucket show default data\n" " Will show the properties of a bucket called \"data\" in the \"default\" " @@ -7433,7 +7455,7 @@ msgid "" "\t\tCreate a new custom volume using backup0.tar.gz as the source." msgstr "" -#: lxc/remote.go:459 +#: lxc/remote.go:460 msgid "n" msgstr "" @@ -7445,7 +7467,7 @@ msgstr "" msgid "no" msgstr "" -#: lxc/remote.go:452 +#: lxc/remote.go:453 msgid "ok (y/n/[fingerprint])?" msgstr "" @@ -7482,7 +7504,7 @@ msgstr "" msgid "used by" msgstr "" -#: lxc/remote.go:461 +#: lxc/remote.go:462 msgid "y" msgstr "" diff --git a/po/sv.po b/po/sv.po index db649c34b8fe..05acde564c65 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-08-20 09:31+0100\n" +"POT-Creation-Date: 2024-08-30 09:27+0100\n" "PO-Revision-Date: 2022-03-10 15:07+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Swedish " msgstr "" -#: lxc/remote.go:825 lxc/remote.go:882 +#: lxc/remote.go:826 lxc/remote.go:883 msgid "" msgstr "" -#: lxc/remote.go:922 +#: lxc/remote.go:923 msgid " " msgstr "" -#: lxc/remote.go:752 +#: lxc/remote.go:753 msgid " " msgstr "" @@ -556,7 +556,7 @@ msgstr "" msgid "ARCHITECTURE" msgstr "" -#: lxc/remote.go:734 +#: lxc/remote.go:735 msgid "AUTH TYPE" msgstr "" @@ -564,15 +564,15 @@ msgstr "" msgid "AUTHENTICATION METHOD" msgstr "" -#: lxc/remote.go:100 +#: lxc/remote.go:101 msgid "Accept certificate" msgstr "" -#: lxc/storage_bucket.go:852 +#: lxc/storage_bucket.go:857 msgid "Access key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:908 +#: lxc/storage_bucket.go:913 #, c-format msgid "Access key: %s" msgstr "" @@ -606,19 +606,19 @@ msgstr "" msgid "Add a group to an identity provider group" msgstr "" -#: lxc/network_zone.go:1239 +#: lxc/network_zone.go:1244 msgid "Add a network zone record entry" msgstr "" -#: lxc/network_load_balancer.go:798 +#: lxc/network_load_balancer.go:803 msgid "Add backend to a load balancer" msgstr "" -#: lxc/network_load_balancer.go:797 +#: lxc/network_load_balancer.go:802 msgid "Add backends to a load balancer" msgstr "" -#: lxc/network_zone.go:1240 +#: lxc/network_zone.go:1245 msgid "Add entries to a network zone record" msgstr "" @@ -634,11 +634,11 @@ msgstr "" msgid "Add new aliases" msgstr "" -#: lxc/remote.go:89 +#: lxc/remote.go:90 msgid "Add new remote servers" msgstr "" -#: lxc/remote.go:90 +#: lxc/remote.go:91 msgid "" "Add new remote servers\n" "\n" @@ -679,7 +679,7 @@ msgstr "" msgid "Add ports to a forward" msgstr "" -#: lxc/network_load_balancer.go:962 lxc/network_load_balancer.go:963 +#: lxc/network_load_balancer.go:967 lxc/network_load_balancer.go:968 msgid "Add ports to a load balancer" msgstr "" @@ -700,17 +700,17 @@ msgstr "" msgid "Address: %s" msgstr "" -#: lxc/storage_bucket.go:164 +#: lxc/storage_bucket.go:169 #, c-format msgid "Admin access key: %s" msgstr "" -#: lxc/remote.go:566 +#: lxc/remote.go:567 #, c-format msgid "Admin password (or token) for %s:" msgstr "" -#: lxc/storage_bucket.go:165 +#: lxc/storage_bucket.go:170 #, c-format msgid "Admin secret key: %s" msgstr "" @@ -742,7 +742,7 @@ msgstr "" msgid "All projects" msgstr "" -#: lxc/remote.go:181 +#: lxc/remote.go:182 msgid "All server addresses are unavailable" msgstr "" @@ -765,7 +765,7 @@ msgstr "" msgid "Are you sure you want to %s cluster member %q? (yes/no) [default=no]: " msgstr "" -#: lxc/console.go:383 +#: lxc/console.go:388 msgid "As neither could be found, the raw SPICE socket can be found at:" msgstr "" @@ -813,7 +813,7 @@ msgid "" "as well as retrieve past log entries from it." msgstr "" -#: lxc/remote.go:548 +#: lxc/remote.go:549 #, c-format msgid "Authentication type '%s' not supported by server" msgstr "" @@ -832,11 +832,11 @@ msgstr "" msgid "Auto update: %s" msgstr "" -#: lxc/network_forward.go:240 lxc/network_load_balancer.go:242 +#: lxc/network_forward.go:240 lxc/network_load_balancer.go:247 msgid "Auto-allocate an IPv4 or IPv6 listen address. One of 'ipv4', 'ipv6'." msgstr "" -#: lxc/remote.go:136 +#: lxc/remote.go:137 msgid "Available projects:" msgstr "" @@ -868,8 +868,8 @@ msgid "Bad device override syntax, expecting ,=: %s" msgstr "" #: lxc/network.go:333 lxc/network_acl.go:382 lxc/network_forward.go:293 -#: lxc/network_load_balancer.go:296 lxc/network_peer.go:280 -#: lxc/network_zone.go:324 lxc/network_zone.go:922 lxc/storage_bucket.go:136 +#: lxc/network_load_balancer.go:301 lxc/network_peer.go:280 +#: lxc/network_zone.go:329 lxc/network_zone.go:927 lxc/storage_bucket.go:141 #, c-format msgid "Bad key/value pair: %s" msgstr "" @@ -991,7 +991,7 @@ msgstr "" msgid "Can't read from stdin: %w" msgstr "" -#: lxc/remote.go:861 +#: lxc/remote.go:862 msgid "Can't remove the default remote" msgstr "" @@ -1057,15 +1057,14 @@ msgstr "" msgid "Certificate add token for %s deleted" msgstr "" -#: lxc/remote.go:218 -#, c-format -msgid "" -"Certificate fingerprint mismatch between certificate token and server %q" +#: lxc/remote.go:452 +msgid "Certificate fingerprint" msgstr "" -#: lxc/remote.go:451 +#: lxc/remote.go:219 #, c-format -msgid "Certificate fingerprint: %s" +msgid "" +"Certificate fingerprint mismatch between certificate token and server %q" msgstr "" #: lxc/network.go:893 @@ -1077,7 +1076,7 @@ msgstr "" msgid "Client %s certificate add token:" msgstr "" -#: lxc/remote.go:603 +#: lxc/remote.go:604 msgid "Client certificate now trusted by server:" msgstr "" @@ -1139,18 +1138,18 @@ msgstr "" #: lxc/network_forward.go:456 lxc/network_forward.go:579 #: lxc/network_forward.go:721 lxc/network_forward.go:798 #: lxc/network_forward.go:864 lxc/network_load_balancer.go:176 -#: lxc/network_load_balancer.go:241 lxc/network_load_balancer.go:459 -#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:725 -#: lxc/network_load_balancer.go:801 lxc/network_load_balancer.go:865 -#: lxc/network_load_balancer.go:966 lxc/network_load_balancer.go:1028 +#: lxc/network_load_balancer.go:246 lxc/network_load_balancer.go:464 +#: lxc/network_load_balancer.go:587 lxc/network_load_balancer.go:730 +#: lxc/network_load_balancer.go:806 lxc/network_load_balancer.go:870 +#: lxc/network_load_balancer.go:971 lxc/network_load_balancer.go:1033 #: lxc/storage.go:99 lxc/storage.go:347 lxc/storage.go:418 lxc/storage.go:671 -#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:85 -#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:248 -#: lxc/storage_bucket.go:379 lxc/storage_bucket.go:536 -#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:695 -#: lxc/storage_bucket.go:770 lxc/storage_bucket.go:850 -#: lxc/storage_bucket.go:928 lxc/storage_bucket.go:993 -#: lxc/storage_bucket.go:1129 lxc/storage_volume.go:358 +#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:90 +#: lxc/storage_bucket.go:190 lxc/storage_bucket.go:253 +#: lxc/storage_bucket.go:384 lxc/storage_bucket.go:541 +#: lxc/storage_bucket.go:634 lxc/storage_bucket.go:700 +#: lxc/storage_bucket.go:775 lxc/storage_bucket.go:855 +#: lxc/storage_bucket.go:933 lxc/storage_bucket.go:998 +#: lxc/storage_bucket.go:1134 lxc/storage_volume.go:358 #: lxc/storage_volume.go:560 lxc/storage_volume.go:639 #: lxc/storage_volume.go:883 lxc/storage_volume.go:1097 #: lxc/storage_volume.go:1210 lxc/storage_volume.go:1678 @@ -1178,11 +1177,11 @@ msgstr "" msgid "Columns" msgstr "" -#: lxc/main.go:81 +#: lxc/main.go:82 msgid "Command line client for LXD" msgstr "" -#: lxc/main.go:82 +#: lxc/main.go:83 msgid "" "Command line client for LXD\n" "\n" @@ -1214,19 +1213,15 @@ msgstr "" #: lxc/config.go:347 lxc/config.go:1277 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/network_load_balancer.go:694 lxc/network_peer.go:610 +#: lxc/network_zone.go:556 lxc/network_zone.go:1148 lxc/profile.go:538 +#: lxc/project.go:315 lxc/storage.go:310 lxc/storage_bucket.go:348 +#: lxc/storage_bucket.go:1097 lxc/storage_volume.go:1016 #: lxc/storage_volume.go:1048 #, c-format msgid "Config parsing error: %s" msgstr "" -#: lxc/console.go:140 -msgid "Console log:" -msgstr "" - #: lxc/storage_volume.go:561 msgid "Content type, block or filesystem" msgstr "" @@ -1329,12 +1324,12 @@ msgstr "" msgid "Cores:" msgstr "" -#: lxc/remote.go:486 +#: lxc/remote.go:487 #, c-format msgid "Could not close server cert file %q: %w" msgstr "" -#: lxc/remote.go:224 lxc/remote.go:470 +#: lxc/remote.go:225 lxc/remote.go:471 msgid "Could not create server cert dir" msgstr "" @@ -1373,12 +1368,12 @@ msgstr "" msgid "Could not write new remote certificate for remote '%s' with error: %v" msgstr "" -#: lxc/remote.go:481 +#: lxc/remote.go:482 #, c-format msgid "Could not write server cert file %q: %w" msgstr "" -#: lxc/network_zone.go:1327 +#: lxc/network_zone.go:1332 msgid "Couldn't find a matching entry" msgstr "" @@ -1430,7 +1425,7 @@ msgstr "" msgid "Create instances from images" msgstr "" -#: lxc/storage_bucket.go:846 lxc/storage_bucket.go:847 +#: lxc/storage_bucket.go:851 lxc/storage_bucket.go:852 msgid "Create key for a storage bucket" msgstr "" @@ -1462,11 +1457,11 @@ msgstr "" msgid "Create new network peering" msgstr "" -#: lxc/network_zone.go:869 lxc/network_zone.go:870 +#: lxc/network_zone.go:874 lxc/network_zone.go:875 msgid "Create new network zone record" msgstr "" -#: lxc/network_zone.go:270 lxc/network_zone.go:271 +#: lxc/network_zone.go:271 lxc/network_zone.go:272 msgid "Create new network zones" msgstr "" @@ -1517,9 +1512,9 @@ msgstr "" #: 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/network_zone.go:140 lxc/network_zone.go:747 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_bucket.go:512 lxc/storage_bucket.go:832 #: lxc/storage_volume.go:1562 msgid "DESCRIPTION" msgstr "" @@ -1584,7 +1579,7 @@ msgstr "" msgid "Delete instances and snapshots" msgstr "" -#: lxc/storage_bucket.go:924 lxc/storage_bucket.go:925 +#: lxc/storage_bucket.go:929 lxc/storage_bucket.go:930 msgid "Delete key from a storage bucket" msgstr "" @@ -1596,7 +1591,7 @@ msgstr "" msgid "Delete network forwards" msgstr "" -#: lxc/network_load_balancer.go:721 lxc/network_load_balancer.go:722 +#: lxc/network_load_balancer.go:726 lxc/network_load_balancer.go:727 msgid "Delete network load balancers" msgstr "" @@ -1604,11 +1599,11 @@ msgstr "" msgid "Delete network peerings" msgstr "" -#: lxc/network_zone.go:1175 lxc/network_zone.go:1176 +#: lxc/network_zone.go:1180 lxc/network_zone.go:1181 msgid "Delete network zone record" msgstr "" -#: lxc/network_zone.go:583 lxc/network_zone.go:584 +#: lxc/network_zone.go:588 lxc/network_zone.go:589 msgid "Delete network zones" msgstr "" @@ -1624,7 +1619,7 @@ msgstr "" msgid "Delete projects" msgstr "" -#: lxc/storage_bucket.go:182 lxc/storage_bucket.go:183 +#: lxc/storage_bucket.go:187 lxc/storage_bucket.go:188 msgid "Delete storage buckets" msgstr "" @@ -1680,7 +1675,7 @@ msgstr "" #: 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/info.go:32 lxc/init.go:43 lxc/launch.go:24 lxc/list.go:48 lxc/main.go:83 #: 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 @@ -1699,22 +1694,22 @@ msgstr "" #: 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_load_balancer.go:238 lxc/network_load_balancer.go:388 +#: lxc/network_load_balancer.go:456 lxc/network_load_balancer.go:554 +#: lxc/network_load_balancer.go:584 lxc/network_load_balancer.go:727 +#: lxc/network_load_balancer.go:788 lxc/network_load_balancer.go:803 +#: lxc/network_load_balancer.go:867 lxc/network_load_balancer.go:953 +#: lxc/network_load_balancer.go:968 lxc/network_load_balancer.go:1029 #: 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/network_zone.go:29 lxc/network_zone.go:86 lxc/network_zone.go:157 +#: lxc/network_zone.go:212 lxc/network_zone.go:272 lxc/network_zone.go:359 +#: lxc/network_zone.go:439 lxc/network_zone.go:470 lxc/network_zone.go:589 +#: lxc/network_zone.go:637 lxc/network_zone.go:694 lxc/network_zone.go:764 +#: lxc/network_zone.go:816 lxc/network_zone.go:875 lxc/network_zone.go:957 +#: lxc/network_zone.go:1033 lxc/network_zone.go:1063 lxc/network_zone.go:1181 +#: lxc/network_zone.go:1230 lxc/network_zone.go:1245 lxc/network_zone.go:1291 #: 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 @@ -1723,19 +1718,19 @@ msgstr "" #: 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:631 lxc/remote.go:669 lxc/remote.go:755 lxc/remote.go:828 -#: lxc/remote.go:884 lxc/remote.go:924 lxc/rename.go:21 lxc/restore.go:24 +#: lxc/query.go:34 lxc/rebuild.go:27 lxc/remote.go:35 lxc/remote.go:91 +#: lxc/remote.go:632 lxc/remote.go:670 lxc/remote.go:756 lxc/remote.go:829 +#: lxc/remote.go:885 lxc/remote.go:925 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_bucket.go:29 lxc/storage_bucket.go:83 lxc/storage_bucket.go:188 +#: lxc/storage_bucket.go:249 lxc/storage_bucket.go:382 +#: lxc/storage_bucket.go:458 lxc/storage_bucket.go:535 +#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:698 +#: lxc/storage_bucket.go:732 lxc/storage_bucket.go:773 +#: lxc/storage_bucket.go:852 lxc/storage_bucket.go:930 +#: lxc/storage_bucket.go:994 lxc/storage_bucket.go:1129 #: 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 @@ -1871,7 +1866,7 @@ msgstr "" msgid "Don't require user confirmation for using --force" msgstr "" -#: lxc/main.go:99 +#: lxc/main.go:100 msgid "Don't show progress information" msgstr "" @@ -1884,7 +1879,7 @@ msgstr "" msgid "Driver: %v (%v)" msgstr "" -#: lxc/network_zone.go:743 +#: lxc/network_zone.go:748 msgid "ENTRIES" msgstr "" @@ -1962,7 +1957,7 @@ msgstr "" msgid "Edit network forward configurations as YAML" msgstr "" -#: lxc/network_load_balancer.go:578 lxc/network_load_balancer.go:579 +#: lxc/network_load_balancer.go:583 lxc/network_load_balancer.go:584 msgid "Edit network load balancer configurations as YAML" msgstr "" @@ -1970,11 +1965,11 @@ msgstr "" msgid "Edit network peer configurations as YAML" msgstr "" -#: lxc/network_zone.go:464 lxc/network_zone.go:465 +#: lxc/network_zone.go:469 lxc/network_zone.go:470 msgid "Edit network zone configurations as YAML" msgstr "" -#: lxc/network_zone.go:1057 lxc/network_zone.go:1058 +#: lxc/network_zone.go:1062 lxc/network_zone.go:1063 msgid "Edit network zone record configurations as YAML" msgstr "" @@ -1986,11 +1981,11 @@ msgstr "" msgid "Edit project configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:243 lxc/storage_bucket.go:244 +#: lxc/storage_bucket.go:248 lxc/storage_bucket.go:249 msgid "Edit storage bucket configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:988 lxc/storage_bucket.go:989 +#: lxc/storage_bucket.go:993 lxc/storage_bucket.go:994 msgid "Edit storage bucket key as YAML" msgstr "" @@ -2031,7 +2026,7 @@ msgid "" " for the address if not yet set." msgstr "" -#: lxc/network_zone.go:1242 +#: lxc/network_zone.go:1247 msgid "Entry TTL" msgstr "" @@ -2060,9 +2055,9 @@ msgstr "" #: lxc/cluster.go:414 lxc/config.go:624 lxc/config.go:656 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/network_load_balancer.go:527 lxc/network_peer.go:463 +#: lxc/network_zone.go:414 lxc/network_zone.go:1008 lxc/profile.go:876 +#: lxc/project.go:634 lxc/storage.go:727 lxc/storage_bucket.go:602 #: lxc/storage_volume.go:1947 lxc/storage_volume.go:1985 #, c-format msgid "Error setting properties: %v" @@ -2074,10 +2069,10 @@ 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/network_forward.go:513 lxc/network_load_balancer.go:521 +#: lxc/network_peer.go:457 lxc/network_zone.go:408 lxc/network_zone.go:1002 #: lxc/profile.go:870 lxc/project.go:628 lxc/storage.go:721 -#: lxc/storage_bucket.go:591 lxc/storage_volume.go:1941 +#: lxc/storage_bucket.go:596 lxc/storage_volume.go:1941 #: lxc/storage_volume.go:1979 #, c-format msgid "Error unsetting property: %v" @@ -2263,7 +2258,7 @@ msgstr "" msgid "Failed parsing SSH host key: %w" msgstr "" -#: lxc/console.go:361 +#: lxc/console.go:366 #, c-format msgid "Failed starting command: %w" msgstr "" @@ -2278,11 +2273,11 @@ msgstr "" msgid "Failed to accept incoming connection: %w" msgstr "" -#: lxc/remote.go:190 +#: lxc/remote.go:191 msgid "Failed to add remote" msgstr "" -#: lxc/remote.go:241 +#: lxc/remote.go:242 #, c-format msgid "Failed to close server cert file %q: %w" msgstr "" @@ -2292,7 +2287,7 @@ msgstr "" msgid "Failed to connect to cluster member: %w" msgstr "" -#: lxc/remote.go:231 +#: lxc/remote.go:232 #, c-format msgid "Failed to create %q: %w" msgstr "" @@ -2302,12 +2297,12 @@ msgstr "" msgid "Failed to create alias %s: %w" msgstr "" -#: lxc/remote.go:256 +#: lxc/remote.go:257 #, c-format msgid "Failed to create certificate: %w" msgstr "" -#: lxc/remote.go:263 +#: lxc/remote.go:264 #, c-format msgid "Failed to find project: %w" msgstr "" @@ -2332,7 +2327,7 @@ msgstr "" msgid "Failed to walk path for %s: %s" msgstr "" -#: lxc/remote.go:236 +#: lxc/remote.go:237 #, c-format msgid "Failed to write server cert file %q: %w" msgstr "" @@ -2341,7 +2336,7 @@ msgstr "" msgid "Fast mode (same as --columns=nsacPt)" msgstr "" -#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:115 +#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:116 #: lxc/operation.go:136 msgid "Filtering isn't supported yet" msgstr "" @@ -2379,7 +2374,7 @@ msgstr "" msgid "Force the removal of running instances" msgstr "" -#: lxc/main.go:95 +#: lxc/main.go:96 msgid "Force using the local unix socket" msgstr "" @@ -2413,10 +2408,10 @@ msgstr "" #: 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/network_peer.go:84 lxc/network_zone.go:89 lxc/network_zone.go:697 #: lxc/operation.go:108 lxc/profile.go:637 lxc/project.go:412 -#: lxc/project.go:804 lxc/remote.go:673 lxc/storage.go:588 -#: lxc/storage_bucket.go:454 lxc/storage_bucket.go:769 +#: lxc/project.go:804 lxc/remote.go:674 lxc/storage.go:588 +#: lxc/storage_bucket.go:459 lxc/storage_bucket.go:774 #: lxc/storage_volume.go:1446 lxc/warning.go:93 msgid "Format (csv|json|table|yaml|compact)" msgstr "" @@ -2453,7 +2448,7 @@ msgstr "" msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)" msgstr "" -#: lxc/remote.go:737 +#: lxc/remote.go:738 msgid "GLOBAL" msgstr "" @@ -2473,7 +2468,7 @@ msgstr "" msgid "Generate manpages for all commands" msgstr "" -#: lxc/remote.go:159 lxc/remote.go:397 +#: lxc/remote.go:160 lxc/remote.go:398 msgid "Generating a client certificate. This may take a minute..." msgstr "" @@ -2505,7 +2500,7 @@ msgstr "" msgid "Get the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:386 +#: lxc/network_load_balancer.go:391 msgid "Get the key as a network load balancer property" msgstr "" @@ -2517,11 +2512,11 @@ msgstr "" msgid "Get the key as a network property" msgstr "" -#: lxc/network_zone.go:214 +#: lxc/network_zone.go:215 msgid "Get the key as a network zone property" msgstr "" -#: lxc/network_zone.go:814 +#: lxc/network_zone.go:819 msgid "Get the key as a network zone record property" msgstr "" @@ -2533,7 +2528,7 @@ msgstr "" msgid "Get the key as a project property" msgstr "" -#: lxc/storage_bucket.go:380 +#: lxc/storage_bucket.go:385 msgid "Get the key as a storage bucket property" msgstr "" @@ -2573,7 +2568,7 @@ msgstr "" msgid "Get values for network forward configuration keys" msgstr "" -#: lxc/network_load_balancer.go:382 lxc/network_load_balancer.go:383 +#: lxc/network_load_balancer.go:387 lxc/network_load_balancer.go:388 msgid "Get values for network load balancer configuration keys" msgstr "" @@ -2581,11 +2576,11 @@ msgstr "" msgid "Get values for network peer configuration keys" msgstr "" -#: lxc/network_zone.go:210 lxc/network_zone.go:211 +#: lxc/network_zone.go:211 lxc/network_zone.go:212 msgid "Get values for network zone configuration keys" msgstr "" -#: lxc/network_zone.go:810 lxc/network_zone.go:811 +#: lxc/network_zone.go:815 lxc/network_zone.go:816 msgid "Get values for network zone record configuration keys" msgstr "" @@ -2597,7 +2592,7 @@ msgstr "" msgid "Get values for project configuration keys" msgstr "" -#: lxc/storage_bucket.go:376 lxc/storage_bucket.go:377 +#: lxc/storage_bucket.go:381 lxc/storage_bucket.go:382 msgid "Get values for storage bucket configuration keys" msgstr "" @@ -2737,7 +2732,7 @@ msgstr "" msgid "If the snapshot name already exists, delete and create a new one" msgstr "" -#: lxc/main.go:398 +#: lxc/main.go:400 msgid "" "If this is your first time running LXD on this machine, you should also run: " "lxd init" @@ -2894,7 +2889,7 @@ msgstr "" msgid "Instance type" msgstr "" -#: lxc/remote.go:349 +#: lxc/remote.go:350 #, c-format msgid "Invalid URL scheme \"%s\" in \"%s\"" msgstr "" @@ -2966,7 +2961,7 @@ msgstr "" msgid "Invalid new snapshot name, parent volume must be the same as source" msgstr "" -#: lxc/main.go:498 +#: lxc/main.go:502 msgid "Invalid number of arguments" msgstr "" @@ -2975,7 +2970,7 @@ msgstr "" msgid "Invalid path %s" msgstr "" -#: lxc/remote.go:338 +#: lxc/remote.go:339 #, c-format msgid "Invalid protocol: %s" msgstr "" @@ -3023,7 +3018,7 @@ msgstr "" #: lxc/list.go:597 lxc/network.go:1059 lxc/network_forward.go:155 #: lxc/network_load_balancer.go:157 lxc/operation.go:177 -#: lxc/storage_bucket.go:511 lxc/storage_volume.go:1569 lxc/warning.go:220 +#: lxc/storage_bucket.go:516 lxc/storage_volume.go:1569 lxc/warning.go:220 msgid "LOCATION" msgstr "" @@ -3031,7 +3026,7 @@ msgstr "" msgid "LXD - Command line client" msgstr "" -#: lxc/console.go:382 +#: lxc/console.go:387 msgid "LXD automatically uses either spicy or remote-viewer when present." msgstr "" @@ -3121,15 +3116,15 @@ msgstr "" msgid "List available network peers" msgstr "" -#: lxc/network_zone.go:85 +#: lxc/network_zone.go:86 msgid "List available network zone" msgstr "" -#: lxc/network_zone.go:688 lxc/network_zone.go:689 +#: lxc/network_zone.go:693 lxc/network_zone.go:694 msgid "List available network zone records" msgstr "" -#: lxc/network_zone.go:84 +#: lxc/network_zone.go:85 msgid "List available network zoneS" msgstr "" @@ -3318,11 +3313,11 @@ msgstr "" msgid "List projects" msgstr "" -#: lxc/storage_bucket.go:766 lxc/storage_bucket.go:768 +#: lxc/storage_bucket.go:771 lxc/storage_bucket.go:773 msgid "List storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:451 lxc/storage_bucket.go:453 +#: lxc/storage_bucket.go:456 lxc/storage_bucket.go:458 msgid "List storage buckets" msgstr "" @@ -3350,7 +3345,7 @@ msgid "" " U - Current disk usage" msgstr "" -#: lxc/remote.go:668 lxc/remote.go:669 +#: lxc/remote.go:669 lxc/remote.go:670 msgid "List the available remotes" msgstr "" @@ -3577,11 +3572,11 @@ msgstr "" msgid "Manage network forwards" msgstr "" -#: lxc/network_load_balancer.go:782 lxc/network_load_balancer.go:783 +#: lxc/network_load_balancer.go:787 lxc/network_load_balancer.go:788 msgid "Manage network load balancer backends" msgstr "" -#: lxc/network_load_balancer.go:947 lxc/network_load_balancer.go:948 +#: lxc/network_load_balancer.go:952 lxc/network_load_balancer.go:953 msgid "Manage network load balancer ports" msgstr "" @@ -3593,15 +3588,15 @@ msgstr "" msgid "Manage network peerings" msgstr "" -#: lxc/network_zone.go:1224 lxc/network_zone.go:1225 +#: lxc/network_zone.go:1229 lxc/network_zone.go:1230 msgid "Manage network zone record entries" msgstr "" -#: lxc/network_zone.go:631 lxc/network_zone.go:632 +#: lxc/network_zone.go:636 lxc/network_zone.go:637 msgid "Manage network zone records" msgstr "" -#: lxc/network_zone.go:27 lxc/network_zone.go:28 +#: lxc/network_zone.go:28 lxc/network_zone.go:29 msgid "Manage network zones" msgstr "" @@ -3617,11 +3612,11 @@ msgstr "" msgid "Manage projects" msgstr "" -#: lxc/storage_bucket.go:726 +#: lxc/storage_bucket.go:731 msgid "Manage storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:727 +#: lxc/storage_bucket.go:732 msgid "Manage storage bucket keys." msgstr "" @@ -3649,7 +3644,7 @@ msgid "" "\"custom\" (user created) volumes." msgstr "" -#: lxc/remote.go:33 lxc/remote.go:34 +#: lxc/remote.go:34 lxc/remote.go:35 msgid "Manage the list of remote servers" msgstr "" @@ -3730,12 +3725,12 @@ msgid "" "Minimum level for log messages (only available when using pretty format)" msgstr "" -#: lxc/storage_bucket.go:111 lxc/storage_bucket.go:211 -#: lxc/storage_bucket.go:287 lxc/storage_bucket.go:406 -#: lxc/storage_bucket.go:563 lxc/storage_bucket.go:655 -#: lxc/storage_bucket.go:797 lxc/storage_bucket.go:878 -#: lxc/storage_bucket.go:953 lxc/storage_bucket.go:1032 -#: lxc/storage_bucket.go:1155 +#: lxc/storage_bucket.go:116 lxc/storage_bucket.go:216 +#: lxc/storage_bucket.go:292 lxc/storage_bucket.go:411 +#: lxc/storage_bucket.go:568 lxc/storage_bucket.go:660 +#: lxc/storage_bucket.go:802 lxc/storage_bucket.go:883 +#: lxc/storage_bucket.go:958 lxc/storage_bucket.go:1037 +#: lxc/storage_bucket.go:1160 msgid "Missing bucket name" msgstr "" @@ -3779,8 +3774,8 @@ msgstr "" msgid "Missing instance name" msgstr "" -#: lxc/storage_bucket.go:882 lxc/storage_bucket.go:957 -#: lxc/storage_bucket.go:1036 lxc/storage_bucket.go:1159 +#: lxc/storage_bucket.go:887 lxc/storage_bucket.go:962 +#: lxc/storage_bucket.go:1041 lxc/storage_bucket.go:1164 msgid "Missing key name" msgstr "" @@ -3788,10 +3783,10 @@ msgstr "" #: lxc/network_forward.go:481 lxc/network_forward.go:627 #: lxc/network_forward.go:746 lxc/network_forward.go:823 #: lxc/network_forward.go:889 lxc/network_load_balancer.go:201 -#: lxc/network_load_balancer.go:411 lxc/network_load_balancer.go:484 -#: lxc/network_load_balancer.go:630 lxc/network_load_balancer.go:750 -#: lxc/network_load_balancer.go:826 lxc/network_load_balancer.go:890 -#: lxc/network_load_balancer.go:991 lxc/network_load_balancer.go:1053 +#: lxc/network_load_balancer.go:416 lxc/network_load_balancer.go:489 +#: lxc/network_load_balancer.go:635 lxc/network_load_balancer.go:755 +#: lxc/network_load_balancer.go:831 lxc/network_load_balancer.go:895 +#: lxc/network_load_balancer.go:996 lxc/network_load_balancer.go:1058 msgid "Missing listen address" msgstr "" @@ -3816,26 +3811,26 @@ msgstr "" #: lxc/network_forward.go:477 lxc/network_forward.go:623 #: lxc/network_forward.go:742 lxc/network_forward.go:819 #: lxc/network_forward.go:885 lxc/network_load_balancer.go:123 -#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:261 -#: lxc/network_load_balancer.go:407 lxc/network_load_balancer.go:480 -#: lxc/network_load_balancer.go:626 lxc/network_load_balancer.go:746 -#: lxc/network_load_balancer.go:822 lxc/network_load_balancer.go:886 -#: lxc/network_load_balancer.go:987 lxc/network_load_balancer.go:1049 +#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:266 +#: lxc/network_load_balancer.go:412 lxc/network_load_balancer.go:485 +#: lxc/network_load_balancer.go:631 lxc/network_load_balancer.go:751 +#: lxc/network_load_balancer.go:827 lxc/network_load_balancer.go:891 +#: lxc/network_load_balancer.go:992 lxc/network_load_balancer.go:1054 #: lxc/network_peer.go:110 lxc/network_peer.go:180 lxc/network_peer.go:237 #: lxc/network_peer.go:355 lxc/network_peer.go:426 lxc/network_peer.go:556 #: lxc/network_peer.go:665 msgid "Missing network name" msgstr "" -#: lxc/network_zone.go:178 lxc/network_zone.go:234 lxc/network_zone.go:294 -#: lxc/network_zone.go:382 lxc/network_zone.go:503 lxc/network_zone.go:606 -#: lxc/network_zone.go:712 lxc/network_zone.go:780 lxc/network_zone.go:892 -#: lxc/network_zone.go:976 lxc/network_zone.go:1197 lxc/network_zone.go:1262 -#: lxc/network_zone.go:1307 +#: lxc/network_zone.go:179 lxc/network_zone.go:235 lxc/network_zone.go:299 +#: lxc/network_zone.go:387 lxc/network_zone.go:508 lxc/network_zone.go:611 +#: lxc/network_zone.go:717 lxc/network_zone.go:785 lxc/network_zone.go:897 +#: lxc/network_zone.go:981 lxc/network_zone.go:1202 lxc/network_zone.go:1267 +#: lxc/network_zone.go:1312 msgid "Missing network zone name" msgstr "" -#: lxc/network_zone.go:833 lxc/network_zone.go:1095 +#: lxc/network_zone.go:838 lxc/network_zone.go:1100 msgid "Missing network zone record name" msgstr "" @@ -3845,13 +3840,13 @@ msgid "Missing peer name" msgstr "" #: lxc/storage.go:194 lxc/storage.go:264 lxc/storage.go:370 lxc/storage.go:440 -#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:107 -#: lxc/storage_bucket.go:207 lxc/storage_bucket.go:283 -#: lxc/storage_bucket.go:402 lxc/storage_bucket.go:477 -#: lxc/storage_bucket.go:559 lxc/storage_bucket.go:651 -#: lxc/storage_bucket.go:793 lxc/storage_bucket.go:874 -#: lxc/storage_bucket.go:949 lxc/storage_bucket.go:1028 -#: lxc/storage_bucket.go:1151 lxc/storage_volume.go:189 +#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:112 +#: lxc/storage_bucket.go:212 lxc/storage_bucket.go:288 +#: lxc/storage_bucket.go:407 lxc/storage_bucket.go:482 +#: lxc/storage_bucket.go:564 lxc/storage_bucket.go:656 +#: lxc/storage_bucket.go:798 lxc/storage_bucket.go:879 +#: lxc/storage_bucket.go:954 lxc/storage_bucket.go:1033 +#: lxc/storage_bucket.go:1156 lxc/storage_volume.go:189 #: lxc/storage_volume.go:287 lxc/storage_volume.go:583 #: lxc/storage_volume.go:660 lxc/storage_volume.go:735 #: lxc/storage_volume.go:817 lxc/storage_volume.go:919 @@ -3971,7 +3966,7 @@ msgstr "" msgid "Moving the storage volume: %s" msgstr "" -#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1097 +#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1102 msgid "Multiple ports match. Use --force to remove them all" msgstr "" @@ -3990,10 +3985,10 @@ 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:677 lxc/project.go:498 -#: lxc/remote.go:731 lxc/storage.go:638 lxc/storage_bucket.go:506 -#: lxc/storage_bucket.go:826 lxc/storage_volume.go:1561 +#: lxc/network_acl.go:147 lxc/network_peer.go:139 lxc/network_zone.go:139 +#: lxc/network_zone.go:746 lxc/profile.go:677 lxc/project.go:498 +#: lxc/remote.go:732 lxc/storage.go:638 lxc/storage_bucket.go:511 +#: lxc/storage_bucket.go:831 lxc/storage_volume.go:1561 msgid "NAME" msgstr "" @@ -4019,7 +4014,7 @@ msgstr "" #: lxc/network.go:957 lxc/operation.go:154 lxc/project.go:456 #: lxc/project.go:461 lxc/project.go:466 lxc/project.go:471 lxc/project.go:476 -#: lxc/project.go:481 lxc/remote.go:691 lxc/remote.go:696 lxc/remote.go:701 +#: lxc/project.go:481 lxc/remote.go:692 lxc/remote.go:697 lxc/remote.go:702 msgid "NO" msgstr "" @@ -4046,7 +4041,7 @@ msgstr "" msgid "Name" msgstr "" -#: lxc/remote.go:141 +#: lxc/remote.go:142 msgid "Name of the project to use for this remote:" msgstr "" @@ -4095,12 +4090,12 @@ msgstr "" msgid "Network ACL %s renamed to %s" msgstr "" -#: lxc/network_zone.go:336 +#: lxc/network_zone.go:341 #, c-format msgid "Network Zone %s created" msgstr "" -#: lxc/network_zone.go:616 +#: lxc/network_zone.go:621 #, c-format msgid "Network Zone %s deleted" msgstr "" @@ -4115,12 +4110,12 @@ msgstr "" msgid "Network forward %s deleted" msgstr "" -#: lxc/network_load_balancer.go:365 +#: lxc/network_load_balancer.go:370 #, c-format msgid "Network load balancer %s created" msgstr "" -#: lxc/network_load_balancer.go:767 +#: lxc/network_load_balancer.go:772 #, c-format msgid "Network load balancer %s deleted" msgstr "" @@ -4158,12 +4153,12 @@ msgstr "" msgid "Network usage:" msgstr "" -#: lxc/network_zone.go:934 +#: lxc/network_zone.go:939 #, c-format msgid "Network zone record %s created" msgstr "" -#: lxc/network_zone.go:1207 +#: lxc/network_zone.go:1212 #, c-format msgid "Network zone record %s deleted" msgstr "" @@ -4198,11 +4193,11 @@ msgstr "" msgid "No device found for this storage volume" msgstr "" -#: lxc/network_load_balancer.go:921 +#: lxc/network_load_balancer.go:926 msgid "No matching backend found" msgstr "" -#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1108 +#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1113 msgid "No matching port(s) found" msgstr "" @@ -4248,7 +4243,7 @@ msgstr "" msgid "Only \"custom\" volumes can be snapshotted" msgstr "" -#: lxc/remote.go:332 +#: lxc/remote.go:333 msgid "Only https URLs are supported for simplestreams" msgstr "" @@ -4273,7 +4268,7 @@ msgstr "" msgid "Optimized Storage" msgstr "" -#: lxc/main.go:96 +#: lxc/main.go:97 msgid "Override the source project" msgstr "" @@ -4319,11 +4314,11 @@ msgstr "" msgid "PROJECT" msgstr "" -#: lxc/remote.go:733 +#: lxc/remote.go:734 msgid "PROTOCOL" msgstr "" -#: lxc/image.go:1073 lxc/remote.go:735 +#: lxc/image.go:1073 lxc/remote.go:736 msgid "PUBLIC" msgstr "" @@ -4339,7 +4334,7 @@ msgstr "" msgid "Partitions:" msgstr "" -#: lxc/main.go:361 +#: lxc/main.go:363 #, c-format msgid "Password for %s: " msgstr "" @@ -4352,7 +4347,7 @@ msgstr "" msgid "Perform an incremental copy" msgstr "" -#: lxc/remote.go:182 +#: lxc/remote.go:183 msgid "Please provide an alternate server address (empty to abort):" msgstr "" @@ -4364,7 +4359,7 @@ msgstr "" msgid "Please provide cluster member name: " msgstr "" -#: lxc/remote.go:462 +#: lxc/remote.go:463 msgid "Please type 'y', 'n' or the fingerprint:" msgstr "" @@ -4386,10 +4381,10 @@ msgstr "" #: lxc/config.go:1278 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/network_load_balancer.go:695 lxc/network_peer.go:611 +#: lxc/network_zone.go:557 lxc/network_zone.go:1149 lxc/profile.go:539 +#: lxc/project.go:316 lxc/storage.go:311 lxc/storage_bucket.go:349 +#: lxc/storage_bucket.go:1098 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 "" @@ -4398,7 +4393,7 @@ msgstr "" msgid "Pretty rendering (short for --format=pretty)" msgstr "" -#: lxc/main.go:94 +#: lxc/main.go:95 msgid "Print help" msgstr "" @@ -4406,7 +4401,7 @@ msgstr "" msgid "Print the raw response" msgstr "" -#: lxc/main.go:93 +#: lxc/main.go:94 msgid "Print version number" msgstr "" @@ -4495,7 +4490,7 @@ msgstr "" msgid "Project %s renamed to %s" msgstr "" -#: lxc/remote.go:106 +#: lxc/remote.go:107 msgid "Project to use for the remote" msgstr "" @@ -4593,7 +4588,7 @@ msgid "" "pool \"default\"." msgstr "" -#: lxc/remote.go:105 +#: lxc/remote.go:106 msgid "Public image server" msgstr "" @@ -4641,7 +4636,7 @@ msgstr "" msgid "RESOURCE" msgstr "" -#: lxc/storage_bucket.go:828 +#: lxc/storage_bucket.go:833 msgid "ROLE" msgstr "" @@ -4684,45 +4679,45 @@ msgstr "" msgid "Refreshing the image: %s" msgstr "" -#: lxc/remote.go:785 +#: lxc/remote.go:786 #, c-format msgid "Remote %s already exists" msgstr "" -#: lxc/project.go:769 lxc/remote.go:776 lxc/remote.go:849 lxc/remote.go:905 -#: lxc/remote.go:945 +#: lxc/project.go:769 lxc/remote.go:777 lxc/remote.go:850 lxc/remote.go:906 +#: lxc/remote.go:946 #, c-format msgid "Remote %s doesn't exist" msgstr "" -#: lxc/remote.go:301 +#: lxc/remote.go:302 #, c-format msgid "Remote %s exists as <%s>" msgstr "" -#: lxc/remote.go:857 +#: lxc/remote.go:858 #, c-format msgid "Remote %s is global and cannot be removed" msgstr "" -#: lxc/remote.go:780 lxc/remote.go:853 lxc/remote.go:949 +#: lxc/remote.go:781 lxc/remote.go:854 lxc/remote.go:950 #, c-format msgid "Remote %s is static and cannot be modified" msgstr "" -#: lxc/remote.go:290 +#: lxc/remote.go:291 msgid "Remote address must not be empty" msgstr "" -#: lxc/remote.go:101 +#: lxc/remote.go:102 msgid "Remote admin password" msgstr "" -#: lxc/remote.go:295 +#: lxc/remote.go:296 msgid "Remote names may not contain colons" msgstr "" -#: lxc/remote.go:102 +#: lxc/remote.go:103 msgid "Remote trust token" msgstr "" @@ -4748,7 +4743,7 @@ msgstr "" msgid "Remove a member from the cluster" msgstr "" -#: lxc/network_zone.go:1285 +#: lxc/network_zone.go:1290 msgid "Remove a network zone record entry" msgstr "" @@ -4756,7 +4751,7 @@ msgstr "" msgid "Remove aliases" msgstr "" -#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1025 +#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1030 msgid "Remove all ports that match" msgstr "" @@ -4764,15 +4759,15 @@ msgstr "" msgid "Remove all rules that match" msgstr "" -#: lxc/network_load_balancer.go:862 +#: lxc/network_load_balancer.go:867 msgid "Remove backend from a load balancer" msgstr "" -#: lxc/network_load_balancer.go:861 +#: lxc/network_load_balancer.go:866 msgid "Remove backends from a load balancer" msgstr "" -#: lxc/network_zone.go:1286 +#: lxc/network_zone.go:1291 msgid "Remove entries from a network zone record" msgstr "" @@ -4796,7 +4791,7 @@ msgstr "" msgid "Remove ports from a forward" msgstr "" -#: lxc/network_load_balancer.go:1023 lxc/network_load_balancer.go:1024 +#: lxc/network_load_balancer.go:1028 lxc/network_load_balancer.go:1029 msgid "Remove ports from a load balancer" msgstr "" @@ -4804,7 +4799,7 @@ msgstr "" msgid "Remove profiles from instances" msgstr "" -#: lxc/remote.go:827 lxc/remote.go:828 +#: lxc/remote.go:828 lxc/remote.go:829 msgid "Remove remotes" msgstr "" @@ -4861,7 +4856,7 @@ msgstr "" msgid "Rename projects" msgstr "" -#: lxc/remote.go:754 lxc/remote.go:755 +#: lxc/remote.go:755 lxc/remote.go:756 msgid "Rename remotes" msgstr "" @@ -4939,7 +4934,7 @@ msgid "Restrict the certificate to one or more projects" msgstr "" #: lxc/console.go:44 -msgid "Retrieve the instance's console log" +msgid "Retrieve the container's console log" msgstr "" #: lxc/init.go:347 @@ -4955,7 +4950,7 @@ msgstr "" msgid "Revoke cluster member join token" msgstr "" -#: lxc/storage_bucket.go:851 +#: lxc/storage_bucket.go:856 msgid "Role (admin or read-only)" msgstr "" @@ -5006,7 +5001,7 @@ msgstr "" msgid "STATE" msgstr "" -#: lxc/remote.go:736 +#: lxc/remote.go:737 msgid "STATIC" msgstr "" @@ -5030,11 +5025,11 @@ msgstr "" msgid "STP" msgstr "" -#: lxc/storage_bucket.go:853 +#: lxc/storage_bucket.go:858 msgid "Secret key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:909 +#: lxc/storage_bucket.go:914 #, c-format msgid "Secret key: %s" msgstr "" @@ -5043,19 +5038,19 @@ msgstr "" msgid "Send a raw query to LXD" msgstr "" -#: lxc/remote.go:104 +#: lxc/remote.go:105 msgid "Server authentication type (tls or oidc)" msgstr "" -#: lxc/remote.go:460 +#: lxc/remote.go:461 msgid "Server certificate NACKed by user" msgstr "" -#: lxc/remote.go:599 +#: lxc/remote.go:600 msgid "Server doesn't trust us after authentication" msgstr "" -#: lxc/remote.go:103 +#: lxc/remote.go:104 msgid "Server protocol (lxd or simplestreams)" msgstr "" @@ -5154,11 +5149,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_load_balancer.go:450 +#: lxc/network_load_balancer.go:455 msgid "Set network load balancer keys" msgstr "" -#: lxc/network_load_balancer.go:451 +#: lxc/network_load_balancer.go:456 msgid "" "Set network load balancer keys\n" "\n" @@ -5180,11 +5175,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:353 +#: lxc/network_zone.go:358 msgid "Set network zone configuration keys" msgstr "" -#: lxc/network_zone.go:354 +#: lxc/network_zone.go:359 msgid "" "Set network zone configuration keys\n" "\n" @@ -5193,7 +5188,7 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:951 lxc/network_zone.go:952 +#: lxc/network_zone.go:956 lxc/network_zone.go:957 msgid "Set network zone record configuration keys" msgstr "" @@ -5223,11 +5218,11 @@ msgid "" " lxc project set [:] " msgstr "" -#: lxc/storage_bucket.go:529 +#: lxc/storage_bucket.go:534 msgid "Set storage bucket configuration keys" msgstr "" -#: lxc/storage_bucket.go:530 +#: lxc/storage_bucket.go:535 msgid "" "Set storage bucket configuration keys\n" "\n" @@ -5262,7 +5257,7 @@ msgid "" " lxc storage volume set [:] [/] " msgstr "" -#: lxc/remote.go:923 lxc/remote.go:924 +#: lxc/remote.go:924 lxc/remote.go:925 msgid "Set the URL for the remote" msgstr "" @@ -5290,7 +5285,7 @@ msgstr "" msgid "Set the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:458 +#: lxc/network_load_balancer.go:463 msgid "Set the key as a network load balancer property" msgstr "" @@ -5302,11 +5297,11 @@ msgstr "" msgid "Set the key as a network property" msgstr "" -#: lxc/network_zone.go:361 +#: lxc/network_zone.go:366 msgid "Set the key as a network zone property" msgstr "" -#: lxc/network_zone.go:957 +#: lxc/network_zone.go:962 msgid "Set the key as a network zone record property" msgstr "" @@ -5318,7 +5313,7 @@ msgstr "" msgid "Set the key as a project property" msgstr "" -#: lxc/storage_bucket.go:537 +#: lxc/storage_bucket.go:542 msgid "Set the key as a storage bucket property" msgstr "" @@ -5338,11 +5333,11 @@ msgstr "" msgid "Setup SSH SFTP listener on address:port instead of mounting" msgstr "" -#: lxc/main.go:97 +#: lxc/main.go:98 msgid "Show all debug messages" msgstr "" -#: lxc/main.go:98 +#: lxc/main.go:99 msgid "Show all information messages" msgstr "" @@ -5411,7 +5406,7 @@ msgstr "" msgid "Show instance or server information" msgstr "" -#: lxc/main.go:271 lxc/main.go:272 +#: lxc/main.go:272 lxc/main.go:273 msgid "Show less common commands" msgstr "" @@ -5443,15 +5438,15 @@ msgstr "" msgid "Show network peer configurations" msgstr "" -#: lxc/network_zone.go:155 lxc/network_zone.go:156 +#: lxc/network_zone.go:156 lxc/network_zone.go:157 msgid "Show network zone configurations" msgstr "" -#: lxc/network_zone.go:758 +#: lxc/network_zone.go:763 msgid "Show network zone record configuration" msgstr "" -#: lxc/network_zone.go:759 +#: lxc/network_zone.go:764 msgid "Show network zone record configurations" msgstr "" @@ -5463,11 +5458,11 @@ msgstr "" msgid "Show project options" msgstr "" -#: lxc/storage_bucket.go:623 lxc/storage_bucket.go:624 +#: lxc/storage_bucket.go:628 lxc/storage_bucket.go:629 msgid "Show storage bucket configurations" msgstr "" -#: lxc/storage_bucket.go:1123 lxc/storage_bucket.go:1124 +#: lxc/storage_bucket.go:1128 lxc/storage_bucket.go:1129 msgid "Show storage bucket key configurations" msgstr "" @@ -5493,7 +5488,7 @@ msgid "" "that are granted via identity provider group mappings. \n" msgstr "" -#: lxc/remote.go:630 lxc/remote.go:631 +#: lxc/remote.go:631 lxc/remote.go:632 msgid "Show the default remote" msgstr "" @@ -5617,22 +5612,22 @@ msgstr "" msgid "Stopping the instance failed: %s" msgstr "" -#: lxc/storage_bucket.go:161 +#: lxc/storage_bucket.go:166 #, c-format msgid "Storage bucket %s created" msgstr "" -#: lxc/storage_bucket.go:228 +#: lxc/storage_bucket.go:233 #, c-format msgid "Storage bucket %s deleted" msgstr "" -#: lxc/storage_bucket.go:907 +#: lxc/storage_bucket.go:912 #, c-format msgid "Storage bucket key %s added" msgstr "" -#: lxc/storage_bucket.go:973 +#: lxc/storage_bucket.go:978 #, c-format msgid "Storage bucket key %s removed" msgstr "" @@ -5705,7 +5700,7 @@ msgstr "" msgid "Switch the current project" msgstr "" -#: lxc/remote.go:883 lxc/remote.go:884 +#: lxc/remote.go:884 lxc/remote.go:885 msgid "Switch the default remote" msgstr "" @@ -5820,7 +5815,7 @@ msgstr "" msgid "The property %q does not exist on the instance snapshot %s/%s: %v" msgstr "" -#: lxc/network_load_balancer.go:424 +#: lxc/network_load_balancer.go:429 #, c-format msgid "The property %q does not exist on the load balancer %q: %v" msgstr "" @@ -5845,12 +5840,12 @@ msgstr "" msgid "The property %q does not exist on the network peer %q: %v" msgstr "" -#: lxc/network_zone.go:246 +#: lxc/network_zone.go:247 #, c-format msgid "The property %q does not exist on the network zone %q: %v" msgstr "" -#: lxc/network_zone.go:845 +#: lxc/network_zone.go:850 #, c-format msgid "The property %q does not exist on the network zone record %q: %v" msgstr "" @@ -5865,7 +5860,7 @@ msgstr "" msgid "The property %q does not exist on the project %q: %v" msgstr "" -#: lxc/storage_bucket.go:426 +#: lxc/storage_bucket.go:431 #, c-format msgid "The property %q does not exist on the storage bucket %q: %v" msgstr "" @@ -5919,7 +5914,7 @@ msgstr "" msgid "This LXD server is not available on the network" msgstr "" -#: lxc/main.go:293 +#: lxc/main.go:294 msgid "" "This client hasn't been configured to use a remote LXD server yet.\n" "As your platform can't run native Linux instances, you must connect to a " @@ -5951,11 +5946,11 @@ msgstr "" msgid "To create a new network, use: lxc network create" msgstr "" -#: lxc/console.go:210 +#: lxc/console.go:215 msgid "To detach from the console, press: +a q" msgstr "" -#: lxc/main.go:403 +#: lxc/main.go:406 msgid "" "To start your first container, try: lxc launch ubuntu:24.04\n" "Or for a virtual machine: lxc launch ubuntu:24.04 --vm" @@ -6053,7 +6048,7 @@ msgstr "" msgid "UPLOAD DATE" msgstr "" -#: lxc/cluster.go:184 lxc/remote.go:732 +#: lxc/cluster.go:184 lxc/remote.go:733 msgid "URL" msgstr "" @@ -6062,7 +6057,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:679 lxc/project.go:506 +#: lxc/network_zone.go:141 lxc/profile.go:679 lxc/project.go:506 #: lxc/storage.go:647 lxc/storage_volume.go:1564 msgid "USED BY" msgstr "" @@ -6081,7 +6076,7 @@ msgstr "" msgid "Unable to create a temporary file: %v" msgstr "" -#: lxc/remote.go:213 lxc/remote.go:247 +#: lxc/remote.go:214 lxc/remote.go:248 msgid "Unavailable remote server" msgstr "" @@ -6101,7 +6096,7 @@ msgstr "" msgid "Unknown column shorthand char '%c' in '%s'" msgstr "" -#: lxc/console.go:159 +#: lxc/console.go:164 #, c-format msgid "Unknown console type %q" msgstr "" @@ -6161,11 +6156,11 @@ msgstr "" msgid "Unset network forward keys" msgstr "" -#: lxc/network_load_balancer.go:548 +#: lxc/network_load_balancer.go:553 msgid "Unset network load balancer configuration keys" msgstr "" -#: lxc/network_load_balancer.go:549 +#: lxc/network_load_balancer.go:554 msgid "Unset network load balancer keys" msgstr "" @@ -6177,11 +6172,11 @@ msgstr "" msgid "Unset network peer keys" msgstr "" -#: lxc/network_zone.go:433 lxc/network_zone.go:434 +#: lxc/network_zone.go:438 lxc/network_zone.go:439 msgid "Unset network zone configuration keys" msgstr "" -#: lxc/network_zone.go:1027 lxc/network_zone.go:1028 +#: lxc/network_zone.go:1032 lxc/network_zone.go:1033 msgid "Unset network zone record configuration keys" msgstr "" @@ -6193,7 +6188,7 @@ msgstr "" msgid "Unset project configuration keys" msgstr "" -#: lxc/storage_bucket.go:692 lxc/storage_bucket.go:693 +#: lxc/storage_bucket.go:697 lxc/storage_bucket.go:698 msgid "Unset storage bucket configuration keys" msgstr "" @@ -6217,7 +6212,7 @@ msgstr "" msgid "Unset the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:552 +#: lxc/network_load_balancer.go:557 msgid "Unset the key as a network load balancer property" msgstr "" @@ -6229,11 +6224,11 @@ msgstr "" msgid "Unset the key as a network property" msgstr "" -#: lxc/network_zone.go:437 +#: lxc/network_zone.go:442 msgid "Unset the key as a network zone property" msgstr "" -#: lxc/network_zone.go:1031 +#: lxc/network_zone.go:1036 msgid "Unset the key as a network zone record property" msgstr "" @@ -6245,7 +6240,7 @@ msgstr "" msgid "Unset the key as a project property" msgstr "" -#: lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:701 msgid "Unset the key as a storage bucket property" msgstr "" @@ -6307,7 +6302,7 @@ msgid "" "Use storage driver optimized format (can only be restored on a similar pool)" msgstr "" -#: lxc/main.go:100 +#: lxc/main.go:101 msgid "Use with help or --help to view sub-commands" msgstr "" @@ -6404,7 +6399,7 @@ msgstr "" #: lxc/network.go:959 lxc/operation.go:156 lxc/project.go:458 #: lxc/project.go:463 lxc/project.go:468 lxc/project.go:473 lxc/project.go:478 -#: lxc/project.go:483 lxc/remote.go:693 lxc/remote.go:698 lxc/remote.go:703 +#: lxc/project.go:483 lxc/remote.go:694 lxc/remote.go:699 lxc/remote.go:704 msgid "YES" msgstr "" @@ -6439,7 +6434,7 @@ 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/network.go:909 lxc/network_acl.go:91 lxc/network_zone.go:83 #: 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 "[:]" @@ -6502,19 +6497,19 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:154 lxc/network_zone.go:463 lxc/network_zone.go:581 +#: lxc/network_zone.go:155 lxc/network_zone.go:468 lxc/network_zone.go:586 msgid "[:]" msgstr "" -#: lxc/network_zone.go:209 lxc/network_zone.go:432 +#: lxc/network_zone.go:210 lxc/network_zone.go:437 msgid "[:] " msgstr "" -#: lxc/network_zone.go:352 +#: lxc/network_zone.go:357 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:269 +#: lxc/network_zone.go:270 msgid "[:] [key=value...]" msgstr "" @@ -6760,30 +6755,30 @@ msgstr "" #: lxc/network_forward.go:169 lxc/network_forward.go:574 #: lxc/network_forward.go:715 lxc/network_load_balancer.go:171 -#: lxc/network_load_balancer.go:577 lxc/network_load_balancer.go:719 +#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:724 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:860 +#: lxc/network_load_balancer.go:865 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:796 +#: lxc/network_load_balancer.go:801 msgid "" "[:] " "[]" msgstr "" #: lxc/network_forward.go:377 lxc/network_forward.go:544 -#: lxc/network_load_balancer.go:381 lxc/network_load_balancer.go:547 +#: lxc/network_load_balancer.go:386 lxc/network_load_balancer.go:552 msgid "[:] " msgstr "" -#: lxc/network_forward.go:446 lxc/network_load_balancer.go:449 +#: lxc/network_forward.go:446 lxc/network_load_balancer.go:454 msgid "[:] =..." msgstr "" -#: lxc/network_load_balancer.go:961 +#: lxc/network_load_balancer.go:966 msgid "" "[:] " "[,...]" @@ -6795,7 +6790,7 @@ msgid "" " []" msgstr "" -#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1022 +#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1027 msgid "[:] [] []" msgstr "" @@ -6846,7 +6841,7 @@ msgid "[:]" msgstr "" #: lxc/storage.go:167 lxc/storage.go:218 lxc/storage.go:412 lxc/storage.go:759 -#: lxc/storage_bucket.go:449 +#: lxc/storage_bucket.go:454 msgid "[:]" msgstr "" @@ -6854,18 +6849,18 @@ msgstr "" msgid "[:] []" msgstr "" -#: lxc/storage_bucket.go:180 lxc/storage_bucket.go:242 -#: lxc/storage_bucket.go:622 lxc/storage_bucket.go:764 +#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:247 +#: lxc/storage_bucket.go:627 lxc/storage_bucket.go:769 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:375 lxc/storage_bucket.go:691 -#: lxc/storage_bucket.go:845 lxc/storage_bucket.go:923 -#: lxc/storage_bucket.go:987 lxc/storage_bucket.go:1122 +#: lxc/storage_bucket.go:380 lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:850 lxc/storage_bucket.go:928 +#: lxc/storage_bucket.go:992 lxc/storage_bucket.go:1127 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:528 +#: lxc/storage_bucket.go:533 msgid "[:] =..." msgstr "" @@ -7009,27 +7004,27 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:686 +#: lxc/network_zone.go:691 msgid "[:]" msgstr "" -#: lxc/network_zone.go:757 lxc/network_zone.go:1056 lxc/network_zone.go:1173 +#: lxc/network_zone.go:762 lxc/network_zone.go:1061 lxc/network_zone.go:1178 msgid "[:] " msgstr "" -#: lxc/network_zone.go:809 lxc/network_zone.go:1026 +#: lxc/network_zone.go:814 lxc/network_zone.go:1031 msgid "[:] " msgstr "" -#: lxc/network_zone.go:950 +#: lxc/network_zone.go:955 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:1238 lxc/network_zone.go:1284 +#: lxc/network_zone.go:1243 lxc/network_zone.go:1289 msgid "[:] " msgstr "" -#: lxc/network_zone.go:868 +#: lxc/network_zone.go:873 msgid "[:] [key=value...]" msgstr "" @@ -7053,7 +7048,7 @@ msgstr "" msgid "[:][] [...]" msgstr "" -#: lxc/remote.go:88 +#: lxc/remote.go:89 msgid "[] " msgstr "" @@ -7061,7 +7056,7 @@ msgstr "" msgid "[[:]]" msgstr "" -#: lxc/project.go:488 lxc/remote.go:722 +#: lxc/project.go:488 lxc/remote.go:723 msgid "current" msgstr "" @@ -7324,6 +7319,23 @@ msgid "" " Create a new OVN network called bar using baz as its uplink network" msgstr "" +#: lxc/network_load_balancer.go:239 +msgid "" +"lxc network load-balancer create n1 127.0.0.1\n" +"\n" +"lxc network load-balancer create n1 127.0.0.1 < config.yaml\n" +" Create network load-balancer for network n1 with configuration from " +"config.yaml" +msgstr "" + +#: lxc/network_zone.go:273 +msgid "" +"lxc network zone create z1\n" +"\n" +"lxc network zone create z1 < config.yaml\n" +" Create network zone z1 with configuration from config.yaml" +msgstr "" + #: lxc/operation.go:195 msgid "" "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n" @@ -7394,26 +7406,36 @@ msgid "" " Restore the snapshot." msgstr "" -#: lxc/storage_bucket.go:245 +#: lxc/storage_bucket.go:84 +msgid "" +"lxc storage bucket create p1 b01\n" +"\tCreate a new storage bucket name b01 in storage pool p1\n" +"\n" +"lxc storage bucket create p1 b01 < config.yaml\n" +"\tCreate a new storage bucket name b01 in storage pool p1 using the content " +"of config.yaml" +msgstr "" + +#: lxc/storage_bucket.go:250 msgid "" "lxc storage bucket edit [:] < bucket.yaml\n" " Update a storage bucket using the content of bucket.yaml." msgstr "" -#: lxc/storage_bucket.go:990 +#: lxc/storage_bucket.go:995 msgid "" "lxc storage bucket edit [:] < key.yaml\n" " Update a storage bucket key using the content of key.yaml." msgstr "" -#: lxc/storage_bucket.go:1125 +#: lxc/storage_bucket.go:1130 msgid "" "lxc storage bucket key show default data foo\n" " Will show the properties of a bucket key called \"foo\" for a bucket " "called \"data\" in the \"default\" pool." msgstr "" -#: lxc/storage_bucket.go:625 +#: lxc/storage_bucket.go:630 msgid "" "lxc storage bucket show default data\n" " Will show the properties of a bucket called \"data\" in the \"default\" " @@ -7432,7 +7454,7 @@ msgid "" "\t\tCreate a new custom volume using backup0.tar.gz as the source." msgstr "" -#: lxc/remote.go:459 +#: lxc/remote.go:460 msgid "n" msgstr "" @@ -7444,7 +7466,7 @@ msgstr "" msgid "no" msgstr "" -#: lxc/remote.go:452 +#: lxc/remote.go:453 msgid "ok (y/n/[fingerprint])?" msgstr "" @@ -7481,7 +7503,7 @@ msgstr "" msgid "used by" msgstr "" -#: lxc/remote.go:461 +#: lxc/remote.go:462 msgid "y" msgstr "" diff --git a/po/te.po b/po/te.po index bc527cc823d1..9dcd8b9cfc39 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-08-20 09:31+0100\n" +"POT-Creation-Date: 2024-08-30 09:27+0100\n" "PO-Revision-Date: 2022-03-10 15:09+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Telugu " msgstr "" -#: lxc/remote.go:825 lxc/remote.go:882 +#: lxc/remote.go:826 lxc/remote.go:883 msgid "" msgstr "" -#: lxc/remote.go:922 +#: lxc/remote.go:923 msgid " " msgstr "" -#: lxc/remote.go:752 +#: lxc/remote.go:753 msgid " " msgstr "" @@ -556,7 +556,7 @@ msgstr "" msgid "ARCHITECTURE" msgstr "" -#: lxc/remote.go:734 +#: lxc/remote.go:735 msgid "AUTH TYPE" msgstr "" @@ -564,15 +564,15 @@ msgstr "" msgid "AUTHENTICATION METHOD" msgstr "" -#: lxc/remote.go:100 +#: lxc/remote.go:101 msgid "Accept certificate" msgstr "" -#: lxc/storage_bucket.go:852 +#: lxc/storage_bucket.go:857 msgid "Access key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:908 +#: lxc/storage_bucket.go:913 #, c-format msgid "Access key: %s" msgstr "" @@ -606,19 +606,19 @@ msgstr "" msgid "Add a group to an identity provider group" msgstr "" -#: lxc/network_zone.go:1239 +#: lxc/network_zone.go:1244 msgid "Add a network zone record entry" msgstr "" -#: lxc/network_load_balancer.go:798 +#: lxc/network_load_balancer.go:803 msgid "Add backend to a load balancer" msgstr "" -#: lxc/network_load_balancer.go:797 +#: lxc/network_load_balancer.go:802 msgid "Add backends to a load balancer" msgstr "" -#: lxc/network_zone.go:1240 +#: lxc/network_zone.go:1245 msgid "Add entries to a network zone record" msgstr "" @@ -634,11 +634,11 @@ msgstr "" msgid "Add new aliases" msgstr "" -#: lxc/remote.go:89 +#: lxc/remote.go:90 msgid "Add new remote servers" msgstr "" -#: lxc/remote.go:90 +#: lxc/remote.go:91 msgid "" "Add new remote servers\n" "\n" @@ -679,7 +679,7 @@ msgstr "" msgid "Add ports to a forward" msgstr "" -#: lxc/network_load_balancer.go:962 lxc/network_load_balancer.go:963 +#: lxc/network_load_balancer.go:967 lxc/network_load_balancer.go:968 msgid "Add ports to a load balancer" msgstr "" @@ -700,17 +700,17 @@ msgstr "" msgid "Address: %s" msgstr "" -#: lxc/storage_bucket.go:164 +#: lxc/storage_bucket.go:169 #, c-format msgid "Admin access key: %s" msgstr "" -#: lxc/remote.go:566 +#: lxc/remote.go:567 #, c-format msgid "Admin password (or token) for %s:" msgstr "" -#: lxc/storage_bucket.go:165 +#: lxc/storage_bucket.go:170 #, c-format msgid "Admin secret key: %s" msgstr "" @@ -742,7 +742,7 @@ msgstr "" msgid "All projects" msgstr "" -#: lxc/remote.go:181 +#: lxc/remote.go:182 msgid "All server addresses are unavailable" msgstr "" @@ -765,7 +765,7 @@ msgstr "" msgid "Are you sure you want to %s cluster member %q? (yes/no) [default=no]: " msgstr "" -#: lxc/console.go:383 +#: lxc/console.go:388 msgid "As neither could be found, the raw SPICE socket can be found at:" msgstr "" @@ -813,7 +813,7 @@ msgid "" "as well as retrieve past log entries from it." msgstr "" -#: lxc/remote.go:548 +#: lxc/remote.go:549 #, c-format msgid "Authentication type '%s' not supported by server" msgstr "" @@ -832,11 +832,11 @@ msgstr "" msgid "Auto update: %s" msgstr "" -#: lxc/network_forward.go:240 lxc/network_load_balancer.go:242 +#: lxc/network_forward.go:240 lxc/network_load_balancer.go:247 msgid "Auto-allocate an IPv4 or IPv6 listen address. One of 'ipv4', 'ipv6'." msgstr "" -#: lxc/remote.go:136 +#: lxc/remote.go:137 msgid "Available projects:" msgstr "" @@ -868,8 +868,8 @@ msgid "Bad device override syntax, expecting ,=: %s" msgstr "" #: lxc/network.go:333 lxc/network_acl.go:382 lxc/network_forward.go:293 -#: lxc/network_load_balancer.go:296 lxc/network_peer.go:280 -#: lxc/network_zone.go:324 lxc/network_zone.go:922 lxc/storage_bucket.go:136 +#: lxc/network_load_balancer.go:301 lxc/network_peer.go:280 +#: lxc/network_zone.go:329 lxc/network_zone.go:927 lxc/storage_bucket.go:141 #, c-format msgid "Bad key/value pair: %s" msgstr "" @@ -991,7 +991,7 @@ msgstr "" msgid "Can't read from stdin: %w" msgstr "" -#: lxc/remote.go:861 +#: lxc/remote.go:862 msgid "Can't remove the default remote" msgstr "" @@ -1057,15 +1057,14 @@ msgstr "" msgid "Certificate add token for %s deleted" msgstr "" -#: lxc/remote.go:218 -#, c-format -msgid "" -"Certificate fingerprint mismatch between certificate token and server %q" +#: lxc/remote.go:452 +msgid "Certificate fingerprint" msgstr "" -#: lxc/remote.go:451 +#: lxc/remote.go:219 #, c-format -msgid "Certificate fingerprint: %s" +msgid "" +"Certificate fingerprint mismatch between certificate token and server %q" msgstr "" #: lxc/network.go:893 @@ -1077,7 +1076,7 @@ msgstr "" msgid "Client %s certificate add token:" msgstr "" -#: lxc/remote.go:603 +#: lxc/remote.go:604 msgid "Client certificate now trusted by server:" msgstr "" @@ -1139,18 +1138,18 @@ msgstr "" #: lxc/network_forward.go:456 lxc/network_forward.go:579 #: lxc/network_forward.go:721 lxc/network_forward.go:798 #: lxc/network_forward.go:864 lxc/network_load_balancer.go:176 -#: lxc/network_load_balancer.go:241 lxc/network_load_balancer.go:459 -#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:725 -#: lxc/network_load_balancer.go:801 lxc/network_load_balancer.go:865 -#: lxc/network_load_balancer.go:966 lxc/network_load_balancer.go:1028 +#: lxc/network_load_balancer.go:246 lxc/network_load_balancer.go:464 +#: lxc/network_load_balancer.go:587 lxc/network_load_balancer.go:730 +#: lxc/network_load_balancer.go:806 lxc/network_load_balancer.go:870 +#: lxc/network_load_balancer.go:971 lxc/network_load_balancer.go:1033 #: lxc/storage.go:99 lxc/storage.go:347 lxc/storage.go:418 lxc/storage.go:671 -#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:85 -#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:248 -#: lxc/storage_bucket.go:379 lxc/storage_bucket.go:536 -#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:695 -#: lxc/storage_bucket.go:770 lxc/storage_bucket.go:850 -#: lxc/storage_bucket.go:928 lxc/storage_bucket.go:993 -#: lxc/storage_bucket.go:1129 lxc/storage_volume.go:358 +#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:90 +#: lxc/storage_bucket.go:190 lxc/storage_bucket.go:253 +#: lxc/storage_bucket.go:384 lxc/storage_bucket.go:541 +#: lxc/storage_bucket.go:634 lxc/storage_bucket.go:700 +#: lxc/storage_bucket.go:775 lxc/storage_bucket.go:855 +#: lxc/storage_bucket.go:933 lxc/storage_bucket.go:998 +#: lxc/storage_bucket.go:1134 lxc/storage_volume.go:358 #: lxc/storage_volume.go:560 lxc/storage_volume.go:639 #: lxc/storage_volume.go:883 lxc/storage_volume.go:1097 #: lxc/storage_volume.go:1210 lxc/storage_volume.go:1678 @@ -1178,11 +1177,11 @@ msgstr "" msgid "Columns" msgstr "" -#: lxc/main.go:81 +#: lxc/main.go:82 msgid "Command line client for LXD" msgstr "" -#: lxc/main.go:82 +#: lxc/main.go:83 msgid "" "Command line client for LXD\n" "\n" @@ -1214,19 +1213,15 @@ msgstr "" #: lxc/config.go:347 lxc/config.go:1277 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/network_load_balancer.go:694 lxc/network_peer.go:610 +#: lxc/network_zone.go:556 lxc/network_zone.go:1148 lxc/profile.go:538 +#: lxc/project.go:315 lxc/storage.go:310 lxc/storage_bucket.go:348 +#: lxc/storage_bucket.go:1097 lxc/storage_volume.go:1016 #: lxc/storage_volume.go:1048 #, c-format msgid "Config parsing error: %s" msgstr "" -#: lxc/console.go:140 -msgid "Console log:" -msgstr "" - #: lxc/storage_volume.go:561 msgid "Content type, block or filesystem" msgstr "" @@ -1329,12 +1324,12 @@ msgstr "" msgid "Cores:" msgstr "" -#: lxc/remote.go:486 +#: lxc/remote.go:487 #, c-format msgid "Could not close server cert file %q: %w" msgstr "" -#: lxc/remote.go:224 lxc/remote.go:470 +#: lxc/remote.go:225 lxc/remote.go:471 msgid "Could not create server cert dir" msgstr "" @@ -1373,12 +1368,12 @@ msgstr "" msgid "Could not write new remote certificate for remote '%s' with error: %v" msgstr "" -#: lxc/remote.go:481 +#: lxc/remote.go:482 #, c-format msgid "Could not write server cert file %q: %w" msgstr "" -#: lxc/network_zone.go:1327 +#: lxc/network_zone.go:1332 msgid "Couldn't find a matching entry" msgstr "" @@ -1430,7 +1425,7 @@ msgstr "" msgid "Create instances from images" msgstr "" -#: lxc/storage_bucket.go:846 lxc/storage_bucket.go:847 +#: lxc/storage_bucket.go:851 lxc/storage_bucket.go:852 msgid "Create key for a storage bucket" msgstr "" @@ -1462,11 +1457,11 @@ msgstr "" msgid "Create new network peering" msgstr "" -#: lxc/network_zone.go:869 lxc/network_zone.go:870 +#: lxc/network_zone.go:874 lxc/network_zone.go:875 msgid "Create new network zone record" msgstr "" -#: lxc/network_zone.go:270 lxc/network_zone.go:271 +#: lxc/network_zone.go:271 lxc/network_zone.go:272 msgid "Create new network zones" msgstr "" @@ -1517,9 +1512,9 @@ msgstr "" #: 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/network_zone.go:140 lxc/network_zone.go:747 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_bucket.go:512 lxc/storage_bucket.go:832 #: lxc/storage_volume.go:1562 msgid "DESCRIPTION" msgstr "" @@ -1584,7 +1579,7 @@ msgstr "" msgid "Delete instances and snapshots" msgstr "" -#: lxc/storage_bucket.go:924 lxc/storage_bucket.go:925 +#: lxc/storage_bucket.go:929 lxc/storage_bucket.go:930 msgid "Delete key from a storage bucket" msgstr "" @@ -1596,7 +1591,7 @@ msgstr "" msgid "Delete network forwards" msgstr "" -#: lxc/network_load_balancer.go:721 lxc/network_load_balancer.go:722 +#: lxc/network_load_balancer.go:726 lxc/network_load_balancer.go:727 msgid "Delete network load balancers" msgstr "" @@ -1604,11 +1599,11 @@ msgstr "" msgid "Delete network peerings" msgstr "" -#: lxc/network_zone.go:1175 lxc/network_zone.go:1176 +#: lxc/network_zone.go:1180 lxc/network_zone.go:1181 msgid "Delete network zone record" msgstr "" -#: lxc/network_zone.go:583 lxc/network_zone.go:584 +#: lxc/network_zone.go:588 lxc/network_zone.go:589 msgid "Delete network zones" msgstr "" @@ -1624,7 +1619,7 @@ msgstr "" msgid "Delete projects" msgstr "" -#: lxc/storage_bucket.go:182 lxc/storage_bucket.go:183 +#: lxc/storage_bucket.go:187 lxc/storage_bucket.go:188 msgid "Delete storage buckets" msgstr "" @@ -1680,7 +1675,7 @@ msgstr "" #: 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/info.go:32 lxc/init.go:43 lxc/launch.go:24 lxc/list.go:48 lxc/main.go:83 #: 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 @@ -1699,22 +1694,22 @@ msgstr "" #: 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_load_balancer.go:238 lxc/network_load_balancer.go:388 +#: lxc/network_load_balancer.go:456 lxc/network_load_balancer.go:554 +#: lxc/network_load_balancer.go:584 lxc/network_load_balancer.go:727 +#: lxc/network_load_balancer.go:788 lxc/network_load_balancer.go:803 +#: lxc/network_load_balancer.go:867 lxc/network_load_balancer.go:953 +#: lxc/network_load_balancer.go:968 lxc/network_load_balancer.go:1029 #: 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/network_zone.go:29 lxc/network_zone.go:86 lxc/network_zone.go:157 +#: lxc/network_zone.go:212 lxc/network_zone.go:272 lxc/network_zone.go:359 +#: lxc/network_zone.go:439 lxc/network_zone.go:470 lxc/network_zone.go:589 +#: lxc/network_zone.go:637 lxc/network_zone.go:694 lxc/network_zone.go:764 +#: lxc/network_zone.go:816 lxc/network_zone.go:875 lxc/network_zone.go:957 +#: lxc/network_zone.go:1033 lxc/network_zone.go:1063 lxc/network_zone.go:1181 +#: lxc/network_zone.go:1230 lxc/network_zone.go:1245 lxc/network_zone.go:1291 #: 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 @@ -1723,19 +1718,19 @@ msgstr "" #: 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:631 lxc/remote.go:669 lxc/remote.go:755 lxc/remote.go:828 -#: lxc/remote.go:884 lxc/remote.go:924 lxc/rename.go:21 lxc/restore.go:24 +#: lxc/query.go:34 lxc/rebuild.go:27 lxc/remote.go:35 lxc/remote.go:91 +#: lxc/remote.go:632 lxc/remote.go:670 lxc/remote.go:756 lxc/remote.go:829 +#: lxc/remote.go:885 lxc/remote.go:925 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_bucket.go:29 lxc/storage_bucket.go:83 lxc/storage_bucket.go:188 +#: lxc/storage_bucket.go:249 lxc/storage_bucket.go:382 +#: lxc/storage_bucket.go:458 lxc/storage_bucket.go:535 +#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:698 +#: lxc/storage_bucket.go:732 lxc/storage_bucket.go:773 +#: lxc/storage_bucket.go:852 lxc/storage_bucket.go:930 +#: lxc/storage_bucket.go:994 lxc/storage_bucket.go:1129 #: 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 @@ -1871,7 +1866,7 @@ msgstr "" msgid "Don't require user confirmation for using --force" msgstr "" -#: lxc/main.go:99 +#: lxc/main.go:100 msgid "Don't show progress information" msgstr "" @@ -1884,7 +1879,7 @@ msgstr "" msgid "Driver: %v (%v)" msgstr "" -#: lxc/network_zone.go:743 +#: lxc/network_zone.go:748 msgid "ENTRIES" msgstr "" @@ -1962,7 +1957,7 @@ msgstr "" msgid "Edit network forward configurations as YAML" msgstr "" -#: lxc/network_load_balancer.go:578 lxc/network_load_balancer.go:579 +#: lxc/network_load_balancer.go:583 lxc/network_load_balancer.go:584 msgid "Edit network load balancer configurations as YAML" msgstr "" @@ -1970,11 +1965,11 @@ msgstr "" msgid "Edit network peer configurations as YAML" msgstr "" -#: lxc/network_zone.go:464 lxc/network_zone.go:465 +#: lxc/network_zone.go:469 lxc/network_zone.go:470 msgid "Edit network zone configurations as YAML" msgstr "" -#: lxc/network_zone.go:1057 lxc/network_zone.go:1058 +#: lxc/network_zone.go:1062 lxc/network_zone.go:1063 msgid "Edit network zone record configurations as YAML" msgstr "" @@ -1986,11 +1981,11 @@ msgstr "" msgid "Edit project configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:243 lxc/storage_bucket.go:244 +#: lxc/storage_bucket.go:248 lxc/storage_bucket.go:249 msgid "Edit storage bucket configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:988 lxc/storage_bucket.go:989 +#: lxc/storage_bucket.go:993 lxc/storage_bucket.go:994 msgid "Edit storage bucket key as YAML" msgstr "" @@ -2031,7 +2026,7 @@ msgid "" " for the address if not yet set." msgstr "" -#: lxc/network_zone.go:1242 +#: lxc/network_zone.go:1247 msgid "Entry TTL" msgstr "" @@ -2060,9 +2055,9 @@ msgstr "" #: lxc/cluster.go:414 lxc/config.go:624 lxc/config.go:656 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/network_load_balancer.go:527 lxc/network_peer.go:463 +#: lxc/network_zone.go:414 lxc/network_zone.go:1008 lxc/profile.go:876 +#: lxc/project.go:634 lxc/storage.go:727 lxc/storage_bucket.go:602 #: lxc/storage_volume.go:1947 lxc/storage_volume.go:1985 #, c-format msgid "Error setting properties: %v" @@ -2074,10 +2069,10 @@ 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/network_forward.go:513 lxc/network_load_balancer.go:521 +#: lxc/network_peer.go:457 lxc/network_zone.go:408 lxc/network_zone.go:1002 #: lxc/profile.go:870 lxc/project.go:628 lxc/storage.go:721 -#: lxc/storage_bucket.go:591 lxc/storage_volume.go:1941 +#: lxc/storage_bucket.go:596 lxc/storage_volume.go:1941 #: lxc/storage_volume.go:1979 #, c-format msgid "Error unsetting property: %v" @@ -2263,7 +2258,7 @@ msgstr "" msgid "Failed parsing SSH host key: %w" msgstr "" -#: lxc/console.go:361 +#: lxc/console.go:366 #, c-format msgid "Failed starting command: %w" msgstr "" @@ -2278,11 +2273,11 @@ msgstr "" msgid "Failed to accept incoming connection: %w" msgstr "" -#: lxc/remote.go:190 +#: lxc/remote.go:191 msgid "Failed to add remote" msgstr "" -#: lxc/remote.go:241 +#: lxc/remote.go:242 #, c-format msgid "Failed to close server cert file %q: %w" msgstr "" @@ -2292,7 +2287,7 @@ msgstr "" msgid "Failed to connect to cluster member: %w" msgstr "" -#: lxc/remote.go:231 +#: lxc/remote.go:232 #, c-format msgid "Failed to create %q: %w" msgstr "" @@ -2302,12 +2297,12 @@ msgstr "" msgid "Failed to create alias %s: %w" msgstr "" -#: lxc/remote.go:256 +#: lxc/remote.go:257 #, c-format msgid "Failed to create certificate: %w" msgstr "" -#: lxc/remote.go:263 +#: lxc/remote.go:264 #, c-format msgid "Failed to find project: %w" msgstr "" @@ -2332,7 +2327,7 @@ msgstr "" msgid "Failed to walk path for %s: %s" msgstr "" -#: lxc/remote.go:236 +#: lxc/remote.go:237 #, c-format msgid "Failed to write server cert file %q: %w" msgstr "" @@ -2341,7 +2336,7 @@ msgstr "" msgid "Fast mode (same as --columns=nsacPt)" msgstr "" -#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:115 +#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:116 #: lxc/operation.go:136 msgid "Filtering isn't supported yet" msgstr "" @@ -2379,7 +2374,7 @@ msgstr "" msgid "Force the removal of running instances" msgstr "" -#: lxc/main.go:95 +#: lxc/main.go:96 msgid "Force using the local unix socket" msgstr "" @@ -2413,10 +2408,10 @@ msgstr "" #: 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/network_peer.go:84 lxc/network_zone.go:89 lxc/network_zone.go:697 #: lxc/operation.go:108 lxc/profile.go:637 lxc/project.go:412 -#: lxc/project.go:804 lxc/remote.go:673 lxc/storage.go:588 -#: lxc/storage_bucket.go:454 lxc/storage_bucket.go:769 +#: lxc/project.go:804 lxc/remote.go:674 lxc/storage.go:588 +#: lxc/storage_bucket.go:459 lxc/storage_bucket.go:774 #: lxc/storage_volume.go:1446 lxc/warning.go:93 msgid "Format (csv|json|table|yaml|compact)" msgstr "" @@ -2453,7 +2448,7 @@ msgstr "" msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)" msgstr "" -#: lxc/remote.go:737 +#: lxc/remote.go:738 msgid "GLOBAL" msgstr "" @@ -2473,7 +2468,7 @@ msgstr "" msgid "Generate manpages for all commands" msgstr "" -#: lxc/remote.go:159 lxc/remote.go:397 +#: lxc/remote.go:160 lxc/remote.go:398 msgid "Generating a client certificate. This may take a minute..." msgstr "" @@ -2505,7 +2500,7 @@ msgstr "" msgid "Get the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:386 +#: lxc/network_load_balancer.go:391 msgid "Get the key as a network load balancer property" msgstr "" @@ -2517,11 +2512,11 @@ msgstr "" msgid "Get the key as a network property" msgstr "" -#: lxc/network_zone.go:214 +#: lxc/network_zone.go:215 msgid "Get the key as a network zone property" msgstr "" -#: lxc/network_zone.go:814 +#: lxc/network_zone.go:819 msgid "Get the key as a network zone record property" msgstr "" @@ -2533,7 +2528,7 @@ msgstr "" msgid "Get the key as a project property" msgstr "" -#: lxc/storage_bucket.go:380 +#: lxc/storage_bucket.go:385 msgid "Get the key as a storage bucket property" msgstr "" @@ -2573,7 +2568,7 @@ msgstr "" msgid "Get values for network forward configuration keys" msgstr "" -#: lxc/network_load_balancer.go:382 lxc/network_load_balancer.go:383 +#: lxc/network_load_balancer.go:387 lxc/network_load_balancer.go:388 msgid "Get values for network load balancer configuration keys" msgstr "" @@ -2581,11 +2576,11 @@ msgstr "" msgid "Get values for network peer configuration keys" msgstr "" -#: lxc/network_zone.go:210 lxc/network_zone.go:211 +#: lxc/network_zone.go:211 lxc/network_zone.go:212 msgid "Get values for network zone configuration keys" msgstr "" -#: lxc/network_zone.go:810 lxc/network_zone.go:811 +#: lxc/network_zone.go:815 lxc/network_zone.go:816 msgid "Get values for network zone record configuration keys" msgstr "" @@ -2597,7 +2592,7 @@ msgstr "" msgid "Get values for project configuration keys" msgstr "" -#: lxc/storage_bucket.go:376 lxc/storage_bucket.go:377 +#: lxc/storage_bucket.go:381 lxc/storage_bucket.go:382 msgid "Get values for storage bucket configuration keys" msgstr "" @@ -2737,7 +2732,7 @@ msgstr "" msgid "If the snapshot name already exists, delete and create a new one" msgstr "" -#: lxc/main.go:398 +#: lxc/main.go:400 msgid "" "If this is your first time running LXD on this machine, you should also run: " "lxd init" @@ -2894,7 +2889,7 @@ msgstr "" msgid "Instance type" msgstr "" -#: lxc/remote.go:349 +#: lxc/remote.go:350 #, c-format msgid "Invalid URL scheme \"%s\" in \"%s\"" msgstr "" @@ -2966,7 +2961,7 @@ msgstr "" msgid "Invalid new snapshot name, parent volume must be the same as source" msgstr "" -#: lxc/main.go:498 +#: lxc/main.go:502 msgid "Invalid number of arguments" msgstr "" @@ -2975,7 +2970,7 @@ msgstr "" msgid "Invalid path %s" msgstr "" -#: lxc/remote.go:338 +#: lxc/remote.go:339 #, c-format msgid "Invalid protocol: %s" msgstr "" @@ -3023,7 +3018,7 @@ msgstr "" #: lxc/list.go:597 lxc/network.go:1059 lxc/network_forward.go:155 #: lxc/network_load_balancer.go:157 lxc/operation.go:177 -#: lxc/storage_bucket.go:511 lxc/storage_volume.go:1569 lxc/warning.go:220 +#: lxc/storage_bucket.go:516 lxc/storage_volume.go:1569 lxc/warning.go:220 msgid "LOCATION" msgstr "" @@ -3031,7 +3026,7 @@ msgstr "" msgid "LXD - Command line client" msgstr "" -#: lxc/console.go:382 +#: lxc/console.go:387 msgid "LXD automatically uses either spicy or remote-viewer when present." msgstr "" @@ -3121,15 +3116,15 @@ msgstr "" msgid "List available network peers" msgstr "" -#: lxc/network_zone.go:85 +#: lxc/network_zone.go:86 msgid "List available network zone" msgstr "" -#: lxc/network_zone.go:688 lxc/network_zone.go:689 +#: lxc/network_zone.go:693 lxc/network_zone.go:694 msgid "List available network zone records" msgstr "" -#: lxc/network_zone.go:84 +#: lxc/network_zone.go:85 msgid "List available network zoneS" msgstr "" @@ -3318,11 +3313,11 @@ msgstr "" msgid "List projects" msgstr "" -#: lxc/storage_bucket.go:766 lxc/storage_bucket.go:768 +#: lxc/storage_bucket.go:771 lxc/storage_bucket.go:773 msgid "List storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:451 lxc/storage_bucket.go:453 +#: lxc/storage_bucket.go:456 lxc/storage_bucket.go:458 msgid "List storage buckets" msgstr "" @@ -3350,7 +3345,7 @@ msgid "" " U - Current disk usage" msgstr "" -#: lxc/remote.go:668 lxc/remote.go:669 +#: lxc/remote.go:669 lxc/remote.go:670 msgid "List the available remotes" msgstr "" @@ -3577,11 +3572,11 @@ msgstr "" msgid "Manage network forwards" msgstr "" -#: lxc/network_load_balancer.go:782 lxc/network_load_balancer.go:783 +#: lxc/network_load_balancer.go:787 lxc/network_load_balancer.go:788 msgid "Manage network load balancer backends" msgstr "" -#: lxc/network_load_balancer.go:947 lxc/network_load_balancer.go:948 +#: lxc/network_load_balancer.go:952 lxc/network_load_balancer.go:953 msgid "Manage network load balancer ports" msgstr "" @@ -3593,15 +3588,15 @@ msgstr "" msgid "Manage network peerings" msgstr "" -#: lxc/network_zone.go:1224 lxc/network_zone.go:1225 +#: lxc/network_zone.go:1229 lxc/network_zone.go:1230 msgid "Manage network zone record entries" msgstr "" -#: lxc/network_zone.go:631 lxc/network_zone.go:632 +#: lxc/network_zone.go:636 lxc/network_zone.go:637 msgid "Manage network zone records" msgstr "" -#: lxc/network_zone.go:27 lxc/network_zone.go:28 +#: lxc/network_zone.go:28 lxc/network_zone.go:29 msgid "Manage network zones" msgstr "" @@ -3617,11 +3612,11 @@ msgstr "" msgid "Manage projects" msgstr "" -#: lxc/storage_bucket.go:726 +#: lxc/storage_bucket.go:731 msgid "Manage storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:727 +#: lxc/storage_bucket.go:732 msgid "Manage storage bucket keys." msgstr "" @@ -3649,7 +3644,7 @@ msgid "" "\"custom\" (user created) volumes." msgstr "" -#: lxc/remote.go:33 lxc/remote.go:34 +#: lxc/remote.go:34 lxc/remote.go:35 msgid "Manage the list of remote servers" msgstr "" @@ -3730,12 +3725,12 @@ msgid "" "Minimum level for log messages (only available when using pretty format)" msgstr "" -#: lxc/storage_bucket.go:111 lxc/storage_bucket.go:211 -#: lxc/storage_bucket.go:287 lxc/storage_bucket.go:406 -#: lxc/storage_bucket.go:563 lxc/storage_bucket.go:655 -#: lxc/storage_bucket.go:797 lxc/storage_bucket.go:878 -#: lxc/storage_bucket.go:953 lxc/storage_bucket.go:1032 -#: lxc/storage_bucket.go:1155 +#: lxc/storage_bucket.go:116 lxc/storage_bucket.go:216 +#: lxc/storage_bucket.go:292 lxc/storage_bucket.go:411 +#: lxc/storage_bucket.go:568 lxc/storage_bucket.go:660 +#: lxc/storage_bucket.go:802 lxc/storage_bucket.go:883 +#: lxc/storage_bucket.go:958 lxc/storage_bucket.go:1037 +#: lxc/storage_bucket.go:1160 msgid "Missing bucket name" msgstr "" @@ -3779,8 +3774,8 @@ msgstr "" msgid "Missing instance name" msgstr "" -#: lxc/storage_bucket.go:882 lxc/storage_bucket.go:957 -#: lxc/storage_bucket.go:1036 lxc/storage_bucket.go:1159 +#: lxc/storage_bucket.go:887 lxc/storage_bucket.go:962 +#: lxc/storage_bucket.go:1041 lxc/storage_bucket.go:1164 msgid "Missing key name" msgstr "" @@ -3788,10 +3783,10 @@ msgstr "" #: lxc/network_forward.go:481 lxc/network_forward.go:627 #: lxc/network_forward.go:746 lxc/network_forward.go:823 #: lxc/network_forward.go:889 lxc/network_load_balancer.go:201 -#: lxc/network_load_balancer.go:411 lxc/network_load_balancer.go:484 -#: lxc/network_load_balancer.go:630 lxc/network_load_balancer.go:750 -#: lxc/network_load_balancer.go:826 lxc/network_load_balancer.go:890 -#: lxc/network_load_balancer.go:991 lxc/network_load_balancer.go:1053 +#: lxc/network_load_balancer.go:416 lxc/network_load_balancer.go:489 +#: lxc/network_load_balancer.go:635 lxc/network_load_balancer.go:755 +#: lxc/network_load_balancer.go:831 lxc/network_load_balancer.go:895 +#: lxc/network_load_balancer.go:996 lxc/network_load_balancer.go:1058 msgid "Missing listen address" msgstr "" @@ -3816,26 +3811,26 @@ msgstr "" #: lxc/network_forward.go:477 lxc/network_forward.go:623 #: lxc/network_forward.go:742 lxc/network_forward.go:819 #: lxc/network_forward.go:885 lxc/network_load_balancer.go:123 -#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:261 -#: lxc/network_load_balancer.go:407 lxc/network_load_balancer.go:480 -#: lxc/network_load_balancer.go:626 lxc/network_load_balancer.go:746 -#: lxc/network_load_balancer.go:822 lxc/network_load_balancer.go:886 -#: lxc/network_load_balancer.go:987 lxc/network_load_balancer.go:1049 +#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:266 +#: lxc/network_load_balancer.go:412 lxc/network_load_balancer.go:485 +#: lxc/network_load_balancer.go:631 lxc/network_load_balancer.go:751 +#: lxc/network_load_balancer.go:827 lxc/network_load_balancer.go:891 +#: lxc/network_load_balancer.go:992 lxc/network_load_balancer.go:1054 #: lxc/network_peer.go:110 lxc/network_peer.go:180 lxc/network_peer.go:237 #: lxc/network_peer.go:355 lxc/network_peer.go:426 lxc/network_peer.go:556 #: lxc/network_peer.go:665 msgid "Missing network name" msgstr "" -#: lxc/network_zone.go:178 lxc/network_zone.go:234 lxc/network_zone.go:294 -#: lxc/network_zone.go:382 lxc/network_zone.go:503 lxc/network_zone.go:606 -#: lxc/network_zone.go:712 lxc/network_zone.go:780 lxc/network_zone.go:892 -#: lxc/network_zone.go:976 lxc/network_zone.go:1197 lxc/network_zone.go:1262 -#: lxc/network_zone.go:1307 +#: lxc/network_zone.go:179 lxc/network_zone.go:235 lxc/network_zone.go:299 +#: lxc/network_zone.go:387 lxc/network_zone.go:508 lxc/network_zone.go:611 +#: lxc/network_zone.go:717 lxc/network_zone.go:785 lxc/network_zone.go:897 +#: lxc/network_zone.go:981 lxc/network_zone.go:1202 lxc/network_zone.go:1267 +#: lxc/network_zone.go:1312 msgid "Missing network zone name" msgstr "" -#: lxc/network_zone.go:833 lxc/network_zone.go:1095 +#: lxc/network_zone.go:838 lxc/network_zone.go:1100 msgid "Missing network zone record name" msgstr "" @@ -3845,13 +3840,13 @@ msgid "Missing peer name" msgstr "" #: lxc/storage.go:194 lxc/storage.go:264 lxc/storage.go:370 lxc/storage.go:440 -#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:107 -#: lxc/storage_bucket.go:207 lxc/storage_bucket.go:283 -#: lxc/storage_bucket.go:402 lxc/storage_bucket.go:477 -#: lxc/storage_bucket.go:559 lxc/storage_bucket.go:651 -#: lxc/storage_bucket.go:793 lxc/storage_bucket.go:874 -#: lxc/storage_bucket.go:949 lxc/storage_bucket.go:1028 -#: lxc/storage_bucket.go:1151 lxc/storage_volume.go:189 +#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:112 +#: lxc/storage_bucket.go:212 lxc/storage_bucket.go:288 +#: lxc/storage_bucket.go:407 lxc/storage_bucket.go:482 +#: lxc/storage_bucket.go:564 lxc/storage_bucket.go:656 +#: lxc/storage_bucket.go:798 lxc/storage_bucket.go:879 +#: lxc/storage_bucket.go:954 lxc/storage_bucket.go:1033 +#: lxc/storage_bucket.go:1156 lxc/storage_volume.go:189 #: lxc/storage_volume.go:287 lxc/storage_volume.go:583 #: lxc/storage_volume.go:660 lxc/storage_volume.go:735 #: lxc/storage_volume.go:817 lxc/storage_volume.go:919 @@ -3971,7 +3966,7 @@ msgstr "" msgid "Moving the storage volume: %s" msgstr "" -#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1097 +#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1102 msgid "Multiple ports match. Use --force to remove them all" msgstr "" @@ -3990,10 +3985,10 @@ 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:677 lxc/project.go:498 -#: lxc/remote.go:731 lxc/storage.go:638 lxc/storage_bucket.go:506 -#: lxc/storage_bucket.go:826 lxc/storage_volume.go:1561 +#: lxc/network_acl.go:147 lxc/network_peer.go:139 lxc/network_zone.go:139 +#: lxc/network_zone.go:746 lxc/profile.go:677 lxc/project.go:498 +#: lxc/remote.go:732 lxc/storage.go:638 lxc/storage_bucket.go:511 +#: lxc/storage_bucket.go:831 lxc/storage_volume.go:1561 msgid "NAME" msgstr "" @@ -4019,7 +4014,7 @@ msgstr "" #: lxc/network.go:957 lxc/operation.go:154 lxc/project.go:456 #: lxc/project.go:461 lxc/project.go:466 lxc/project.go:471 lxc/project.go:476 -#: lxc/project.go:481 lxc/remote.go:691 lxc/remote.go:696 lxc/remote.go:701 +#: lxc/project.go:481 lxc/remote.go:692 lxc/remote.go:697 lxc/remote.go:702 msgid "NO" msgstr "" @@ -4046,7 +4041,7 @@ msgstr "" msgid "Name" msgstr "" -#: lxc/remote.go:141 +#: lxc/remote.go:142 msgid "Name of the project to use for this remote:" msgstr "" @@ -4095,12 +4090,12 @@ msgstr "" msgid "Network ACL %s renamed to %s" msgstr "" -#: lxc/network_zone.go:336 +#: lxc/network_zone.go:341 #, c-format msgid "Network Zone %s created" msgstr "" -#: lxc/network_zone.go:616 +#: lxc/network_zone.go:621 #, c-format msgid "Network Zone %s deleted" msgstr "" @@ -4115,12 +4110,12 @@ msgstr "" msgid "Network forward %s deleted" msgstr "" -#: lxc/network_load_balancer.go:365 +#: lxc/network_load_balancer.go:370 #, c-format msgid "Network load balancer %s created" msgstr "" -#: lxc/network_load_balancer.go:767 +#: lxc/network_load_balancer.go:772 #, c-format msgid "Network load balancer %s deleted" msgstr "" @@ -4158,12 +4153,12 @@ msgstr "" msgid "Network usage:" msgstr "" -#: lxc/network_zone.go:934 +#: lxc/network_zone.go:939 #, c-format msgid "Network zone record %s created" msgstr "" -#: lxc/network_zone.go:1207 +#: lxc/network_zone.go:1212 #, c-format msgid "Network zone record %s deleted" msgstr "" @@ -4198,11 +4193,11 @@ msgstr "" msgid "No device found for this storage volume" msgstr "" -#: lxc/network_load_balancer.go:921 +#: lxc/network_load_balancer.go:926 msgid "No matching backend found" msgstr "" -#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1108 +#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1113 msgid "No matching port(s) found" msgstr "" @@ -4248,7 +4243,7 @@ msgstr "" msgid "Only \"custom\" volumes can be snapshotted" msgstr "" -#: lxc/remote.go:332 +#: lxc/remote.go:333 msgid "Only https URLs are supported for simplestreams" msgstr "" @@ -4273,7 +4268,7 @@ msgstr "" msgid "Optimized Storage" msgstr "" -#: lxc/main.go:96 +#: lxc/main.go:97 msgid "Override the source project" msgstr "" @@ -4319,11 +4314,11 @@ msgstr "" msgid "PROJECT" msgstr "" -#: lxc/remote.go:733 +#: lxc/remote.go:734 msgid "PROTOCOL" msgstr "" -#: lxc/image.go:1073 lxc/remote.go:735 +#: lxc/image.go:1073 lxc/remote.go:736 msgid "PUBLIC" msgstr "" @@ -4339,7 +4334,7 @@ msgstr "" msgid "Partitions:" msgstr "" -#: lxc/main.go:361 +#: lxc/main.go:363 #, c-format msgid "Password for %s: " msgstr "" @@ -4352,7 +4347,7 @@ msgstr "" msgid "Perform an incremental copy" msgstr "" -#: lxc/remote.go:182 +#: lxc/remote.go:183 msgid "Please provide an alternate server address (empty to abort):" msgstr "" @@ -4364,7 +4359,7 @@ msgstr "" msgid "Please provide cluster member name: " msgstr "" -#: lxc/remote.go:462 +#: lxc/remote.go:463 msgid "Please type 'y', 'n' or the fingerprint:" msgstr "" @@ -4386,10 +4381,10 @@ msgstr "" #: lxc/config.go:1278 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/network_load_balancer.go:695 lxc/network_peer.go:611 +#: lxc/network_zone.go:557 lxc/network_zone.go:1149 lxc/profile.go:539 +#: lxc/project.go:316 lxc/storage.go:311 lxc/storage_bucket.go:349 +#: lxc/storage_bucket.go:1098 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 "" @@ -4398,7 +4393,7 @@ msgstr "" msgid "Pretty rendering (short for --format=pretty)" msgstr "" -#: lxc/main.go:94 +#: lxc/main.go:95 msgid "Print help" msgstr "" @@ -4406,7 +4401,7 @@ msgstr "" msgid "Print the raw response" msgstr "" -#: lxc/main.go:93 +#: lxc/main.go:94 msgid "Print version number" msgstr "" @@ -4495,7 +4490,7 @@ msgstr "" msgid "Project %s renamed to %s" msgstr "" -#: lxc/remote.go:106 +#: lxc/remote.go:107 msgid "Project to use for the remote" msgstr "" @@ -4593,7 +4588,7 @@ msgid "" "pool \"default\"." msgstr "" -#: lxc/remote.go:105 +#: lxc/remote.go:106 msgid "Public image server" msgstr "" @@ -4641,7 +4636,7 @@ msgstr "" msgid "RESOURCE" msgstr "" -#: lxc/storage_bucket.go:828 +#: lxc/storage_bucket.go:833 msgid "ROLE" msgstr "" @@ -4684,45 +4679,45 @@ msgstr "" msgid "Refreshing the image: %s" msgstr "" -#: lxc/remote.go:785 +#: lxc/remote.go:786 #, c-format msgid "Remote %s already exists" msgstr "" -#: lxc/project.go:769 lxc/remote.go:776 lxc/remote.go:849 lxc/remote.go:905 -#: lxc/remote.go:945 +#: lxc/project.go:769 lxc/remote.go:777 lxc/remote.go:850 lxc/remote.go:906 +#: lxc/remote.go:946 #, c-format msgid "Remote %s doesn't exist" msgstr "" -#: lxc/remote.go:301 +#: lxc/remote.go:302 #, c-format msgid "Remote %s exists as <%s>" msgstr "" -#: lxc/remote.go:857 +#: lxc/remote.go:858 #, c-format msgid "Remote %s is global and cannot be removed" msgstr "" -#: lxc/remote.go:780 lxc/remote.go:853 lxc/remote.go:949 +#: lxc/remote.go:781 lxc/remote.go:854 lxc/remote.go:950 #, c-format msgid "Remote %s is static and cannot be modified" msgstr "" -#: lxc/remote.go:290 +#: lxc/remote.go:291 msgid "Remote address must not be empty" msgstr "" -#: lxc/remote.go:101 +#: lxc/remote.go:102 msgid "Remote admin password" msgstr "" -#: lxc/remote.go:295 +#: lxc/remote.go:296 msgid "Remote names may not contain colons" msgstr "" -#: lxc/remote.go:102 +#: lxc/remote.go:103 msgid "Remote trust token" msgstr "" @@ -4748,7 +4743,7 @@ msgstr "" msgid "Remove a member from the cluster" msgstr "" -#: lxc/network_zone.go:1285 +#: lxc/network_zone.go:1290 msgid "Remove a network zone record entry" msgstr "" @@ -4756,7 +4751,7 @@ msgstr "" msgid "Remove aliases" msgstr "" -#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1025 +#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1030 msgid "Remove all ports that match" msgstr "" @@ -4764,15 +4759,15 @@ msgstr "" msgid "Remove all rules that match" msgstr "" -#: lxc/network_load_balancer.go:862 +#: lxc/network_load_balancer.go:867 msgid "Remove backend from a load balancer" msgstr "" -#: lxc/network_load_balancer.go:861 +#: lxc/network_load_balancer.go:866 msgid "Remove backends from a load balancer" msgstr "" -#: lxc/network_zone.go:1286 +#: lxc/network_zone.go:1291 msgid "Remove entries from a network zone record" msgstr "" @@ -4796,7 +4791,7 @@ msgstr "" msgid "Remove ports from a forward" msgstr "" -#: lxc/network_load_balancer.go:1023 lxc/network_load_balancer.go:1024 +#: lxc/network_load_balancer.go:1028 lxc/network_load_balancer.go:1029 msgid "Remove ports from a load balancer" msgstr "" @@ -4804,7 +4799,7 @@ msgstr "" msgid "Remove profiles from instances" msgstr "" -#: lxc/remote.go:827 lxc/remote.go:828 +#: lxc/remote.go:828 lxc/remote.go:829 msgid "Remove remotes" msgstr "" @@ -4861,7 +4856,7 @@ msgstr "" msgid "Rename projects" msgstr "" -#: lxc/remote.go:754 lxc/remote.go:755 +#: lxc/remote.go:755 lxc/remote.go:756 msgid "Rename remotes" msgstr "" @@ -4939,7 +4934,7 @@ msgid "Restrict the certificate to one or more projects" msgstr "" #: lxc/console.go:44 -msgid "Retrieve the instance's console log" +msgid "Retrieve the container's console log" msgstr "" #: lxc/init.go:347 @@ -4955,7 +4950,7 @@ msgstr "" msgid "Revoke cluster member join token" msgstr "" -#: lxc/storage_bucket.go:851 +#: lxc/storage_bucket.go:856 msgid "Role (admin or read-only)" msgstr "" @@ -5006,7 +5001,7 @@ msgstr "" msgid "STATE" msgstr "" -#: lxc/remote.go:736 +#: lxc/remote.go:737 msgid "STATIC" msgstr "" @@ -5030,11 +5025,11 @@ msgstr "" msgid "STP" msgstr "" -#: lxc/storage_bucket.go:853 +#: lxc/storage_bucket.go:858 msgid "Secret key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:909 +#: lxc/storage_bucket.go:914 #, c-format msgid "Secret key: %s" msgstr "" @@ -5043,19 +5038,19 @@ msgstr "" msgid "Send a raw query to LXD" msgstr "" -#: lxc/remote.go:104 +#: lxc/remote.go:105 msgid "Server authentication type (tls or oidc)" msgstr "" -#: lxc/remote.go:460 +#: lxc/remote.go:461 msgid "Server certificate NACKed by user" msgstr "" -#: lxc/remote.go:599 +#: lxc/remote.go:600 msgid "Server doesn't trust us after authentication" msgstr "" -#: lxc/remote.go:103 +#: lxc/remote.go:104 msgid "Server protocol (lxd or simplestreams)" msgstr "" @@ -5154,11 +5149,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_load_balancer.go:450 +#: lxc/network_load_balancer.go:455 msgid "Set network load balancer keys" msgstr "" -#: lxc/network_load_balancer.go:451 +#: lxc/network_load_balancer.go:456 msgid "" "Set network load balancer keys\n" "\n" @@ -5180,11 +5175,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:353 +#: lxc/network_zone.go:358 msgid "Set network zone configuration keys" msgstr "" -#: lxc/network_zone.go:354 +#: lxc/network_zone.go:359 msgid "" "Set network zone configuration keys\n" "\n" @@ -5193,7 +5188,7 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:951 lxc/network_zone.go:952 +#: lxc/network_zone.go:956 lxc/network_zone.go:957 msgid "Set network zone record configuration keys" msgstr "" @@ -5223,11 +5218,11 @@ msgid "" " lxc project set [:] " msgstr "" -#: lxc/storage_bucket.go:529 +#: lxc/storage_bucket.go:534 msgid "Set storage bucket configuration keys" msgstr "" -#: lxc/storage_bucket.go:530 +#: lxc/storage_bucket.go:535 msgid "" "Set storage bucket configuration keys\n" "\n" @@ -5262,7 +5257,7 @@ msgid "" " lxc storage volume set [:] [/] " msgstr "" -#: lxc/remote.go:923 lxc/remote.go:924 +#: lxc/remote.go:924 lxc/remote.go:925 msgid "Set the URL for the remote" msgstr "" @@ -5290,7 +5285,7 @@ msgstr "" msgid "Set the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:458 +#: lxc/network_load_balancer.go:463 msgid "Set the key as a network load balancer property" msgstr "" @@ -5302,11 +5297,11 @@ msgstr "" msgid "Set the key as a network property" msgstr "" -#: lxc/network_zone.go:361 +#: lxc/network_zone.go:366 msgid "Set the key as a network zone property" msgstr "" -#: lxc/network_zone.go:957 +#: lxc/network_zone.go:962 msgid "Set the key as a network zone record property" msgstr "" @@ -5318,7 +5313,7 @@ msgstr "" msgid "Set the key as a project property" msgstr "" -#: lxc/storage_bucket.go:537 +#: lxc/storage_bucket.go:542 msgid "Set the key as a storage bucket property" msgstr "" @@ -5338,11 +5333,11 @@ msgstr "" msgid "Setup SSH SFTP listener on address:port instead of mounting" msgstr "" -#: lxc/main.go:97 +#: lxc/main.go:98 msgid "Show all debug messages" msgstr "" -#: lxc/main.go:98 +#: lxc/main.go:99 msgid "Show all information messages" msgstr "" @@ -5411,7 +5406,7 @@ msgstr "" msgid "Show instance or server information" msgstr "" -#: lxc/main.go:271 lxc/main.go:272 +#: lxc/main.go:272 lxc/main.go:273 msgid "Show less common commands" msgstr "" @@ -5443,15 +5438,15 @@ msgstr "" msgid "Show network peer configurations" msgstr "" -#: lxc/network_zone.go:155 lxc/network_zone.go:156 +#: lxc/network_zone.go:156 lxc/network_zone.go:157 msgid "Show network zone configurations" msgstr "" -#: lxc/network_zone.go:758 +#: lxc/network_zone.go:763 msgid "Show network zone record configuration" msgstr "" -#: lxc/network_zone.go:759 +#: lxc/network_zone.go:764 msgid "Show network zone record configurations" msgstr "" @@ -5463,11 +5458,11 @@ msgstr "" msgid "Show project options" msgstr "" -#: lxc/storage_bucket.go:623 lxc/storage_bucket.go:624 +#: lxc/storage_bucket.go:628 lxc/storage_bucket.go:629 msgid "Show storage bucket configurations" msgstr "" -#: lxc/storage_bucket.go:1123 lxc/storage_bucket.go:1124 +#: lxc/storage_bucket.go:1128 lxc/storage_bucket.go:1129 msgid "Show storage bucket key configurations" msgstr "" @@ -5493,7 +5488,7 @@ msgid "" "that are granted via identity provider group mappings. \n" msgstr "" -#: lxc/remote.go:630 lxc/remote.go:631 +#: lxc/remote.go:631 lxc/remote.go:632 msgid "Show the default remote" msgstr "" @@ -5617,22 +5612,22 @@ msgstr "" msgid "Stopping the instance failed: %s" msgstr "" -#: lxc/storage_bucket.go:161 +#: lxc/storage_bucket.go:166 #, c-format msgid "Storage bucket %s created" msgstr "" -#: lxc/storage_bucket.go:228 +#: lxc/storage_bucket.go:233 #, c-format msgid "Storage bucket %s deleted" msgstr "" -#: lxc/storage_bucket.go:907 +#: lxc/storage_bucket.go:912 #, c-format msgid "Storage bucket key %s added" msgstr "" -#: lxc/storage_bucket.go:973 +#: lxc/storage_bucket.go:978 #, c-format msgid "Storage bucket key %s removed" msgstr "" @@ -5705,7 +5700,7 @@ msgstr "" msgid "Switch the current project" msgstr "" -#: lxc/remote.go:883 lxc/remote.go:884 +#: lxc/remote.go:884 lxc/remote.go:885 msgid "Switch the default remote" msgstr "" @@ -5820,7 +5815,7 @@ msgstr "" msgid "The property %q does not exist on the instance snapshot %s/%s: %v" msgstr "" -#: lxc/network_load_balancer.go:424 +#: lxc/network_load_balancer.go:429 #, c-format msgid "The property %q does not exist on the load balancer %q: %v" msgstr "" @@ -5845,12 +5840,12 @@ msgstr "" msgid "The property %q does not exist on the network peer %q: %v" msgstr "" -#: lxc/network_zone.go:246 +#: lxc/network_zone.go:247 #, c-format msgid "The property %q does not exist on the network zone %q: %v" msgstr "" -#: lxc/network_zone.go:845 +#: lxc/network_zone.go:850 #, c-format msgid "The property %q does not exist on the network zone record %q: %v" msgstr "" @@ -5865,7 +5860,7 @@ msgstr "" msgid "The property %q does not exist on the project %q: %v" msgstr "" -#: lxc/storage_bucket.go:426 +#: lxc/storage_bucket.go:431 #, c-format msgid "The property %q does not exist on the storage bucket %q: %v" msgstr "" @@ -5919,7 +5914,7 @@ msgstr "" msgid "This LXD server is not available on the network" msgstr "" -#: lxc/main.go:293 +#: lxc/main.go:294 msgid "" "This client hasn't been configured to use a remote LXD server yet.\n" "As your platform can't run native Linux instances, you must connect to a " @@ -5951,11 +5946,11 @@ msgstr "" msgid "To create a new network, use: lxc network create" msgstr "" -#: lxc/console.go:210 +#: lxc/console.go:215 msgid "To detach from the console, press: +a q" msgstr "" -#: lxc/main.go:403 +#: lxc/main.go:406 msgid "" "To start your first container, try: lxc launch ubuntu:24.04\n" "Or for a virtual machine: lxc launch ubuntu:24.04 --vm" @@ -6053,7 +6048,7 @@ msgstr "" msgid "UPLOAD DATE" msgstr "" -#: lxc/cluster.go:184 lxc/remote.go:732 +#: lxc/cluster.go:184 lxc/remote.go:733 msgid "URL" msgstr "" @@ -6062,7 +6057,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:679 lxc/project.go:506 +#: lxc/network_zone.go:141 lxc/profile.go:679 lxc/project.go:506 #: lxc/storage.go:647 lxc/storage_volume.go:1564 msgid "USED BY" msgstr "" @@ -6081,7 +6076,7 @@ msgstr "" msgid "Unable to create a temporary file: %v" msgstr "" -#: lxc/remote.go:213 lxc/remote.go:247 +#: lxc/remote.go:214 lxc/remote.go:248 msgid "Unavailable remote server" msgstr "" @@ -6101,7 +6096,7 @@ msgstr "" msgid "Unknown column shorthand char '%c' in '%s'" msgstr "" -#: lxc/console.go:159 +#: lxc/console.go:164 #, c-format msgid "Unknown console type %q" msgstr "" @@ -6161,11 +6156,11 @@ msgstr "" msgid "Unset network forward keys" msgstr "" -#: lxc/network_load_balancer.go:548 +#: lxc/network_load_balancer.go:553 msgid "Unset network load balancer configuration keys" msgstr "" -#: lxc/network_load_balancer.go:549 +#: lxc/network_load_balancer.go:554 msgid "Unset network load balancer keys" msgstr "" @@ -6177,11 +6172,11 @@ msgstr "" msgid "Unset network peer keys" msgstr "" -#: lxc/network_zone.go:433 lxc/network_zone.go:434 +#: lxc/network_zone.go:438 lxc/network_zone.go:439 msgid "Unset network zone configuration keys" msgstr "" -#: lxc/network_zone.go:1027 lxc/network_zone.go:1028 +#: lxc/network_zone.go:1032 lxc/network_zone.go:1033 msgid "Unset network zone record configuration keys" msgstr "" @@ -6193,7 +6188,7 @@ msgstr "" msgid "Unset project configuration keys" msgstr "" -#: lxc/storage_bucket.go:692 lxc/storage_bucket.go:693 +#: lxc/storage_bucket.go:697 lxc/storage_bucket.go:698 msgid "Unset storage bucket configuration keys" msgstr "" @@ -6217,7 +6212,7 @@ msgstr "" msgid "Unset the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:552 +#: lxc/network_load_balancer.go:557 msgid "Unset the key as a network load balancer property" msgstr "" @@ -6229,11 +6224,11 @@ msgstr "" msgid "Unset the key as a network property" msgstr "" -#: lxc/network_zone.go:437 +#: lxc/network_zone.go:442 msgid "Unset the key as a network zone property" msgstr "" -#: lxc/network_zone.go:1031 +#: lxc/network_zone.go:1036 msgid "Unset the key as a network zone record property" msgstr "" @@ -6245,7 +6240,7 @@ msgstr "" msgid "Unset the key as a project property" msgstr "" -#: lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:701 msgid "Unset the key as a storage bucket property" msgstr "" @@ -6307,7 +6302,7 @@ msgid "" "Use storage driver optimized format (can only be restored on a similar pool)" msgstr "" -#: lxc/main.go:100 +#: lxc/main.go:101 msgid "Use with help or --help to view sub-commands" msgstr "" @@ -6404,7 +6399,7 @@ msgstr "" #: lxc/network.go:959 lxc/operation.go:156 lxc/project.go:458 #: lxc/project.go:463 lxc/project.go:468 lxc/project.go:473 lxc/project.go:478 -#: lxc/project.go:483 lxc/remote.go:693 lxc/remote.go:698 lxc/remote.go:703 +#: lxc/project.go:483 lxc/remote.go:694 lxc/remote.go:699 lxc/remote.go:704 msgid "YES" msgstr "" @@ -6439,7 +6434,7 @@ 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/network.go:909 lxc/network_acl.go:91 lxc/network_zone.go:83 #: 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 "[:]" @@ -6502,19 +6497,19 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:154 lxc/network_zone.go:463 lxc/network_zone.go:581 +#: lxc/network_zone.go:155 lxc/network_zone.go:468 lxc/network_zone.go:586 msgid "[:]" msgstr "" -#: lxc/network_zone.go:209 lxc/network_zone.go:432 +#: lxc/network_zone.go:210 lxc/network_zone.go:437 msgid "[:] " msgstr "" -#: lxc/network_zone.go:352 +#: lxc/network_zone.go:357 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:269 +#: lxc/network_zone.go:270 msgid "[:] [key=value...]" msgstr "" @@ -6760,30 +6755,30 @@ msgstr "" #: lxc/network_forward.go:169 lxc/network_forward.go:574 #: lxc/network_forward.go:715 lxc/network_load_balancer.go:171 -#: lxc/network_load_balancer.go:577 lxc/network_load_balancer.go:719 +#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:724 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:860 +#: lxc/network_load_balancer.go:865 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:796 +#: lxc/network_load_balancer.go:801 msgid "" "[:] " "[]" msgstr "" #: lxc/network_forward.go:377 lxc/network_forward.go:544 -#: lxc/network_load_balancer.go:381 lxc/network_load_balancer.go:547 +#: lxc/network_load_balancer.go:386 lxc/network_load_balancer.go:552 msgid "[:] " msgstr "" -#: lxc/network_forward.go:446 lxc/network_load_balancer.go:449 +#: lxc/network_forward.go:446 lxc/network_load_balancer.go:454 msgid "[:] =..." msgstr "" -#: lxc/network_load_balancer.go:961 +#: lxc/network_load_balancer.go:966 msgid "" "[:] " "[,...]" @@ -6795,7 +6790,7 @@ msgid "" " []" msgstr "" -#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1022 +#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1027 msgid "[:] [] []" msgstr "" @@ -6846,7 +6841,7 @@ msgid "[:]" msgstr "" #: lxc/storage.go:167 lxc/storage.go:218 lxc/storage.go:412 lxc/storage.go:759 -#: lxc/storage_bucket.go:449 +#: lxc/storage_bucket.go:454 msgid "[:]" msgstr "" @@ -6854,18 +6849,18 @@ msgstr "" msgid "[:] []" msgstr "" -#: lxc/storage_bucket.go:180 lxc/storage_bucket.go:242 -#: lxc/storage_bucket.go:622 lxc/storage_bucket.go:764 +#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:247 +#: lxc/storage_bucket.go:627 lxc/storage_bucket.go:769 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:375 lxc/storage_bucket.go:691 -#: lxc/storage_bucket.go:845 lxc/storage_bucket.go:923 -#: lxc/storage_bucket.go:987 lxc/storage_bucket.go:1122 +#: lxc/storage_bucket.go:380 lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:850 lxc/storage_bucket.go:928 +#: lxc/storage_bucket.go:992 lxc/storage_bucket.go:1127 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:528 +#: lxc/storage_bucket.go:533 msgid "[:] =..." msgstr "" @@ -7009,27 +7004,27 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:686 +#: lxc/network_zone.go:691 msgid "[:]" msgstr "" -#: lxc/network_zone.go:757 lxc/network_zone.go:1056 lxc/network_zone.go:1173 +#: lxc/network_zone.go:762 lxc/network_zone.go:1061 lxc/network_zone.go:1178 msgid "[:] " msgstr "" -#: lxc/network_zone.go:809 lxc/network_zone.go:1026 +#: lxc/network_zone.go:814 lxc/network_zone.go:1031 msgid "[:] " msgstr "" -#: lxc/network_zone.go:950 +#: lxc/network_zone.go:955 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:1238 lxc/network_zone.go:1284 +#: lxc/network_zone.go:1243 lxc/network_zone.go:1289 msgid "[:] " msgstr "" -#: lxc/network_zone.go:868 +#: lxc/network_zone.go:873 msgid "[:] [key=value...]" msgstr "" @@ -7053,7 +7048,7 @@ msgstr "" msgid "[:][] [...]" msgstr "" -#: lxc/remote.go:88 +#: lxc/remote.go:89 msgid "[] " msgstr "" @@ -7061,7 +7056,7 @@ msgstr "" msgid "[[:]]" msgstr "" -#: lxc/project.go:488 lxc/remote.go:722 +#: lxc/project.go:488 lxc/remote.go:723 msgid "current" msgstr "" @@ -7324,6 +7319,23 @@ msgid "" " Create a new OVN network called bar using baz as its uplink network" msgstr "" +#: lxc/network_load_balancer.go:239 +msgid "" +"lxc network load-balancer create n1 127.0.0.1\n" +"\n" +"lxc network load-balancer create n1 127.0.0.1 < config.yaml\n" +" Create network load-balancer for network n1 with configuration from " +"config.yaml" +msgstr "" + +#: lxc/network_zone.go:273 +msgid "" +"lxc network zone create z1\n" +"\n" +"lxc network zone create z1 < config.yaml\n" +" Create network zone z1 with configuration from config.yaml" +msgstr "" + #: lxc/operation.go:195 msgid "" "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n" @@ -7394,26 +7406,36 @@ msgid "" " Restore the snapshot." msgstr "" -#: lxc/storage_bucket.go:245 +#: lxc/storage_bucket.go:84 +msgid "" +"lxc storage bucket create p1 b01\n" +"\tCreate a new storage bucket name b01 in storage pool p1\n" +"\n" +"lxc storage bucket create p1 b01 < config.yaml\n" +"\tCreate a new storage bucket name b01 in storage pool p1 using the content " +"of config.yaml" +msgstr "" + +#: lxc/storage_bucket.go:250 msgid "" "lxc storage bucket edit [:] < bucket.yaml\n" " Update a storage bucket using the content of bucket.yaml." msgstr "" -#: lxc/storage_bucket.go:990 +#: lxc/storage_bucket.go:995 msgid "" "lxc storage bucket edit [:] < key.yaml\n" " Update a storage bucket key using the content of key.yaml." msgstr "" -#: lxc/storage_bucket.go:1125 +#: lxc/storage_bucket.go:1130 msgid "" "lxc storage bucket key show default data foo\n" " Will show the properties of a bucket key called \"foo\" for a bucket " "called \"data\" in the \"default\" pool." msgstr "" -#: lxc/storage_bucket.go:625 +#: lxc/storage_bucket.go:630 msgid "" "lxc storage bucket show default data\n" " Will show the properties of a bucket called \"data\" in the \"default\" " @@ -7432,7 +7454,7 @@ msgid "" "\t\tCreate a new custom volume using backup0.tar.gz as the source." msgstr "" -#: lxc/remote.go:459 +#: lxc/remote.go:460 msgid "n" msgstr "" @@ -7444,7 +7466,7 @@ msgstr "" msgid "no" msgstr "" -#: lxc/remote.go:452 +#: lxc/remote.go:453 msgid "ok (y/n/[fingerprint])?" msgstr "" @@ -7481,7 +7503,7 @@ msgstr "" msgid "used by" msgstr "" -#: lxc/remote.go:461 +#: lxc/remote.go:462 msgid "y" msgstr "" diff --git a/po/th.po b/po/th.po index d79aaae2cd54..38f67ba59f1b 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-08-20 09:31+0100\n" +"POT-Creation-Date: 2024-08-30 09:27+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: lxc/storage_bucket.go:255 lxc/storage_bucket.go:1000 +#: lxc/storage_bucket.go:260 lxc/storage_bucket.go:1005 msgid "" "### This is a YAML representation of a storage bucket.\n" "### Any line starting with a '# will be ignored.\n" @@ -278,7 +278,7 @@ msgid "" "### Note that the listen_address and location cannot be changed." msgstr "" -#: lxc/network_load_balancer.go:588 +#: lxc/network_load_balancer.go:593 msgid "" "### This is a YAML representation of the network load balancer.\n" "### Any line starting with a '# will be ignored.\n" @@ -319,7 +319,7 @@ msgid "" "cannot be changed." msgstr "" -#: lxc/network_zone.go:1066 +#: lxc/network_zone.go:1071 msgid "" "### This is a YAML representation of the network zone record.\n" "### Any line starting with a '# will be ignored.\n" @@ -333,7 +333,7 @@ msgid "" "### user.foo: bah\n" msgstr "" -#: lxc/network_zone.go:473 +#: lxc/network_zone.go:478 msgid "" "### This is a YAML representation of the network zone.\n" "### Any line starting with a '# will be ignored.\n" @@ -512,15 +512,15 @@ msgstr "" msgid " " msgstr "" -#: lxc/remote.go:825 lxc/remote.go:882 +#: lxc/remote.go:826 lxc/remote.go:883 msgid "" msgstr "" -#: lxc/remote.go:922 +#: lxc/remote.go:923 msgid " " msgstr "" -#: lxc/remote.go:752 +#: lxc/remote.go:753 msgid " " msgstr "" @@ -553,7 +553,7 @@ msgstr "" msgid "ARCHITECTURE" msgstr "" -#: lxc/remote.go:734 +#: lxc/remote.go:735 msgid "AUTH TYPE" msgstr "" @@ -561,15 +561,15 @@ msgstr "" msgid "AUTHENTICATION METHOD" msgstr "" -#: lxc/remote.go:100 +#: lxc/remote.go:101 msgid "Accept certificate" msgstr "" -#: lxc/storage_bucket.go:852 +#: lxc/storage_bucket.go:857 msgid "Access key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:908 +#: lxc/storage_bucket.go:913 #, c-format msgid "Access key: %s" msgstr "" @@ -603,19 +603,19 @@ msgstr "" msgid "Add a group to an identity provider group" msgstr "" -#: lxc/network_zone.go:1239 +#: lxc/network_zone.go:1244 msgid "Add a network zone record entry" msgstr "" -#: lxc/network_load_balancer.go:798 +#: lxc/network_load_balancer.go:803 msgid "Add backend to a load balancer" msgstr "" -#: lxc/network_load_balancer.go:797 +#: lxc/network_load_balancer.go:802 msgid "Add backends to a load balancer" msgstr "" -#: lxc/network_zone.go:1240 +#: lxc/network_zone.go:1245 msgid "Add entries to a network zone record" msgstr "" @@ -631,11 +631,11 @@ msgstr "" msgid "Add new aliases" msgstr "" -#: lxc/remote.go:89 +#: lxc/remote.go:90 msgid "Add new remote servers" msgstr "" -#: lxc/remote.go:90 +#: lxc/remote.go:91 msgid "" "Add new remote servers\n" "\n" @@ -676,7 +676,7 @@ msgstr "" msgid "Add ports to a forward" msgstr "" -#: lxc/network_load_balancer.go:962 lxc/network_load_balancer.go:963 +#: lxc/network_load_balancer.go:967 lxc/network_load_balancer.go:968 msgid "Add ports to a load balancer" msgstr "" @@ -697,17 +697,17 @@ msgstr "" msgid "Address: %s" msgstr "" -#: lxc/storage_bucket.go:164 +#: lxc/storage_bucket.go:169 #, c-format msgid "Admin access key: %s" msgstr "" -#: lxc/remote.go:566 +#: lxc/remote.go:567 #, c-format msgid "Admin password (or token) for %s:" msgstr "" -#: lxc/storage_bucket.go:165 +#: lxc/storage_bucket.go:170 #, c-format msgid "Admin secret key: %s" msgstr "" @@ -739,7 +739,7 @@ msgstr "" msgid "All projects" msgstr "" -#: lxc/remote.go:181 +#: lxc/remote.go:182 msgid "All server addresses are unavailable" msgstr "" @@ -762,7 +762,7 @@ msgstr "" msgid "Are you sure you want to %s cluster member %q? (yes/no) [default=no]: " msgstr "" -#: lxc/console.go:383 +#: lxc/console.go:388 msgid "As neither could be found, the raw SPICE socket can be found at:" msgstr "" @@ -810,7 +810,7 @@ msgid "" "as well as retrieve past log entries from it." msgstr "" -#: lxc/remote.go:548 +#: lxc/remote.go:549 #, c-format msgid "Authentication type '%s' not supported by server" msgstr "" @@ -829,11 +829,11 @@ msgstr "" msgid "Auto update: %s" msgstr "" -#: lxc/network_forward.go:240 lxc/network_load_balancer.go:242 +#: lxc/network_forward.go:240 lxc/network_load_balancer.go:247 msgid "Auto-allocate an IPv4 or IPv6 listen address. One of 'ipv4', 'ipv6'." msgstr "" -#: lxc/remote.go:136 +#: lxc/remote.go:137 msgid "Available projects:" msgstr "" @@ -865,8 +865,8 @@ msgid "Bad device override syntax, expecting ,=: %s" msgstr "" #: lxc/network.go:333 lxc/network_acl.go:382 lxc/network_forward.go:293 -#: lxc/network_load_balancer.go:296 lxc/network_peer.go:280 -#: lxc/network_zone.go:324 lxc/network_zone.go:922 lxc/storage_bucket.go:136 +#: lxc/network_load_balancer.go:301 lxc/network_peer.go:280 +#: lxc/network_zone.go:329 lxc/network_zone.go:927 lxc/storage_bucket.go:141 #, c-format msgid "Bad key/value pair: %s" msgstr "" @@ -988,7 +988,7 @@ msgstr "" msgid "Can't read from stdin: %w" msgstr "" -#: lxc/remote.go:861 +#: lxc/remote.go:862 msgid "Can't remove the default remote" msgstr "" @@ -1054,15 +1054,14 @@ msgstr "" msgid "Certificate add token for %s deleted" msgstr "" -#: lxc/remote.go:218 -#, c-format -msgid "" -"Certificate fingerprint mismatch between certificate token and server %q" +#: lxc/remote.go:452 +msgid "Certificate fingerprint" msgstr "" -#: lxc/remote.go:451 +#: lxc/remote.go:219 #, c-format -msgid "Certificate fingerprint: %s" +msgid "" +"Certificate fingerprint mismatch between certificate token and server %q" msgstr "" #: lxc/network.go:893 @@ -1074,7 +1073,7 @@ msgstr "" msgid "Client %s certificate add token:" msgstr "" -#: lxc/remote.go:603 +#: lxc/remote.go:604 msgid "Client certificate now trusted by server:" msgstr "" @@ -1136,18 +1135,18 @@ msgstr "" #: lxc/network_forward.go:456 lxc/network_forward.go:579 #: lxc/network_forward.go:721 lxc/network_forward.go:798 #: lxc/network_forward.go:864 lxc/network_load_balancer.go:176 -#: lxc/network_load_balancer.go:241 lxc/network_load_balancer.go:459 -#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:725 -#: lxc/network_load_balancer.go:801 lxc/network_load_balancer.go:865 -#: lxc/network_load_balancer.go:966 lxc/network_load_balancer.go:1028 +#: lxc/network_load_balancer.go:246 lxc/network_load_balancer.go:464 +#: lxc/network_load_balancer.go:587 lxc/network_load_balancer.go:730 +#: lxc/network_load_balancer.go:806 lxc/network_load_balancer.go:870 +#: lxc/network_load_balancer.go:971 lxc/network_load_balancer.go:1033 #: lxc/storage.go:99 lxc/storage.go:347 lxc/storage.go:418 lxc/storage.go:671 -#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:85 -#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:248 -#: lxc/storage_bucket.go:379 lxc/storage_bucket.go:536 -#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:695 -#: lxc/storage_bucket.go:770 lxc/storage_bucket.go:850 -#: lxc/storage_bucket.go:928 lxc/storage_bucket.go:993 -#: lxc/storage_bucket.go:1129 lxc/storage_volume.go:358 +#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:90 +#: lxc/storage_bucket.go:190 lxc/storage_bucket.go:253 +#: lxc/storage_bucket.go:384 lxc/storage_bucket.go:541 +#: lxc/storage_bucket.go:634 lxc/storage_bucket.go:700 +#: lxc/storage_bucket.go:775 lxc/storage_bucket.go:855 +#: lxc/storage_bucket.go:933 lxc/storage_bucket.go:998 +#: lxc/storage_bucket.go:1134 lxc/storage_volume.go:358 #: lxc/storage_volume.go:560 lxc/storage_volume.go:639 #: lxc/storage_volume.go:883 lxc/storage_volume.go:1097 #: lxc/storage_volume.go:1210 lxc/storage_volume.go:1678 @@ -1175,11 +1174,11 @@ msgstr "" msgid "Columns" msgstr "" -#: lxc/main.go:81 +#: lxc/main.go:82 msgid "Command line client for LXD" msgstr "" -#: lxc/main.go:82 +#: lxc/main.go:83 msgid "" "Command line client for LXD\n" "\n" @@ -1211,19 +1210,15 @@ msgstr "" #: lxc/config.go:347 lxc/config.go:1277 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/network_load_balancer.go:694 lxc/network_peer.go:610 +#: lxc/network_zone.go:556 lxc/network_zone.go:1148 lxc/profile.go:538 +#: lxc/project.go:315 lxc/storage.go:310 lxc/storage_bucket.go:348 +#: lxc/storage_bucket.go:1097 lxc/storage_volume.go:1016 #: lxc/storage_volume.go:1048 #, c-format msgid "Config parsing error: %s" msgstr "" -#: lxc/console.go:140 -msgid "Console log:" -msgstr "" - #: lxc/storage_volume.go:561 msgid "Content type, block or filesystem" msgstr "" @@ -1326,12 +1321,12 @@ msgstr "" msgid "Cores:" msgstr "" -#: lxc/remote.go:486 +#: lxc/remote.go:487 #, c-format msgid "Could not close server cert file %q: %w" msgstr "" -#: lxc/remote.go:224 lxc/remote.go:470 +#: lxc/remote.go:225 lxc/remote.go:471 msgid "Could not create server cert dir" msgstr "" @@ -1370,12 +1365,12 @@ msgstr "" msgid "Could not write new remote certificate for remote '%s' with error: %v" msgstr "" -#: lxc/remote.go:481 +#: lxc/remote.go:482 #, c-format msgid "Could not write server cert file %q: %w" msgstr "" -#: lxc/network_zone.go:1327 +#: lxc/network_zone.go:1332 msgid "Couldn't find a matching entry" msgstr "" @@ -1427,7 +1422,7 @@ msgstr "" msgid "Create instances from images" msgstr "" -#: lxc/storage_bucket.go:846 lxc/storage_bucket.go:847 +#: lxc/storage_bucket.go:851 lxc/storage_bucket.go:852 msgid "Create key for a storage bucket" msgstr "" @@ -1459,11 +1454,11 @@ msgstr "" msgid "Create new network peering" msgstr "" -#: lxc/network_zone.go:869 lxc/network_zone.go:870 +#: lxc/network_zone.go:874 lxc/network_zone.go:875 msgid "Create new network zone record" msgstr "" -#: lxc/network_zone.go:270 lxc/network_zone.go:271 +#: lxc/network_zone.go:271 lxc/network_zone.go:272 msgid "Create new network zones" msgstr "" @@ -1514,9 +1509,9 @@ msgstr "" #: 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/network_zone.go:140 lxc/network_zone.go:747 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_bucket.go:512 lxc/storage_bucket.go:832 #: lxc/storage_volume.go:1562 msgid "DESCRIPTION" msgstr "" @@ -1581,7 +1576,7 @@ msgstr "" msgid "Delete instances and snapshots" msgstr "" -#: lxc/storage_bucket.go:924 lxc/storage_bucket.go:925 +#: lxc/storage_bucket.go:929 lxc/storage_bucket.go:930 msgid "Delete key from a storage bucket" msgstr "" @@ -1593,7 +1588,7 @@ msgstr "" msgid "Delete network forwards" msgstr "" -#: lxc/network_load_balancer.go:721 lxc/network_load_balancer.go:722 +#: lxc/network_load_balancer.go:726 lxc/network_load_balancer.go:727 msgid "Delete network load balancers" msgstr "" @@ -1601,11 +1596,11 @@ msgstr "" msgid "Delete network peerings" msgstr "" -#: lxc/network_zone.go:1175 lxc/network_zone.go:1176 +#: lxc/network_zone.go:1180 lxc/network_zone.go:1181 msgid "Delete network zone record" msgstr "" -#: lxc/network_zone.go:583 lxc/network_zone.go:584 +#: lxc/network_zone.go:588 lxc/network_zone.go:589 msgid "Delete network zones" msgstr "" @@ -1621,7 +1616,7 @@ msgstr "" msgid "Delete projects" msgstr "" -#: lxc/storage_bucket.go:182 lxc/storage_bucket.go:183 +#: lxc/storage_bucket.go:187 lxc/storage_bucket.go:188 msgid "Delete storage buckets" msgstr "" @@ -1677,7 +1672,7 @@ msgstr "" #: 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/info.go:32 lxc/init.go:43 lxc/launch.go:24 lxc/list.go:48 lxc/main.go:83 #: 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 @@ -1696,22 +1691,22 @@ msgstr "" #: 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_load_balancer.go:238 lxc/network_load_balancer.go:388 +#: lxc/network_load_balancer.go:456 lxc/network_load_balancer.go:554 +#: lxc/network_load_balancer.go:584 lxc/network_load_balancer.go:727 +#: lxc/network_load_balancer.go:788 lxc/network_load_balancer.go:803 +#: lxc/network_load_balancer.go:867 lxc/network_load_balancer.go:953 +#: lxc/network_load_balancer.go:968 lxc/network_load_balancer.go:1029 #: 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/network_zone.go:29 lxc/network_zone.go:86 lxc/network_zone.go:157 +#: lxc/network_zone.go:212 lxc/network_zone.go:272 lxc/network_zone.go:359 +#: lxc/network_zone.go:439 lxc/network_zone.go:470 lxc/network_zone.go:589 +#: lxc/network_zone.go:637 lxc/network_zone.go:694 lxc/network_zone.go:764 +#: lxc/network_zone.go:816 lxc/network_zone.go:875 lxc/network_zone.go:957 +#: lxc/network_zone.go:1033 lxc/network_zone.go:1063 lxc/network_zone.go:1181 +#: lxc/network_zone.go:1230 lxc/network_zone.go:1245 lxc/network_zone.go:1291 #: 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 @@ -1720,19 +1715,19 @@ msgstr "" #: 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:631 lxc/remote.go:669 lxc/remote.go:755 lxc/remote.go:828 -#: lxc/remote.go:884 lxc/remote.go:924 lxc/rename.go:21 lxc/restore.go:24 +#: lxc/query.go:34 lxc/rebuild.go:27 lxc/remote.go:35 lxc/remote.go:91 +#: lxc/remote.go:632 lxc/remote.go:670 lxc/remote.go:756 lxc/remote.go:829 +#: lxc/remote.go:885 lxc/remote.go:925 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_bucket.go:29 lxc/storage_bucket.go:83 lxc/storage_bucket.go:188 +#: lxc/storage_bucket.go:249 lxc/storage_bucket.go:382 +#: lxc/storage_bucket.go:458 lxc/storage_bucket.go:535 +#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:698 +#: lxc/storage_bucket.go:732 lxc/storage_bucket.go:773 +#: lxc/storage_bucket.go:852 lxc/storage_bucket.go:930 +#: lxc/storage_bucket.go:994 lxc/storage_bucket.go:1129 #: 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 @@ -1868,7 +1863,7 @@ msgstr "" msgid "Don't require user confirmation for using --force" msgstr "" -#: lxc/main.go:99 +#: lxc/main.go:100 msgid "Don't show progress information" msgstr "" @@ -1881,7 +1876,7 @@ msgstr "" msgid "Driver: %v (%v)" msgstr "" -#: lxc/network_zone.go:743 +#: lxc/network_zone.go:748 msgid "ENTRIES" msgstr "" @@ -1959,7 +1954,7 @@ msgstr "" msgid "Edit network forward configurations as YAML" msgstr "" -#: lxc/network_load_balancer.go:578 lxc/network_load_balancer.go:579 +#: lxc/network_load_balancer.go:583 lxc/network_load_balancer.go:584 msgid "Edit network load balancer configurations as YAML" msgstr "" @@ -1967,11 +1962,11 @@ msgstr "" msgid "Edit network peer configurations as YAML" msgstr "" -#: lxc/network_zone.go:464 lxc/network_zone.go:465 +#: lxc/network_zone.go:469 lxc/network_zone.go:470 msgid "Edit network zone configurations as YAML" msgstr "" -#: lxc/network_zone.go:1057 lxc/network_zone.go:1058 +#: lxc/network_zone.go:1062 lxc/network_zone.go:1063 msgid "Edit network zone record configurations as YAML" msgstr "" @@ -1983,11 +1978,11 @@ msgstr "" msgid "Edit project configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:243 lxc/storage_bucket.go:244 +#: lxc/storage_bucket.go:248 lxc/storage_bucket.go:249 msgid "Edit storage bucket configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:988 lxc/storage_bucket.go:989 +#: lxc/storage_bucket.go:993 lxc/storage_bucket.go:994 msgid "Edit storage bucket key as YAML" msgstr "" @@ -2028,7 +2023,7 @@ msgid "" " for the address if not yet set." msgstr "" -#: lxc/network_zone.go:1242 +#: lxc/network_zone.go:1247 msgid "Entry TTL" msgstr "" @@ -2057,9 +2052,9 @@ msgstr "" #: lxc/cluster.go:414 lxc/config.go:624 lxc/config.go:656 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/network_load_balancer.go:527 lxc/network_peer.go:463 +#: lxc/network_zone.go:414 lxc/network_zone.go:1008 lxc/profile.go:876 +#: lxc/project.go:634 lxc/storage.go:727 lxc/storage_bucket.go:602 #: lxc/storage_volume.go:1947 lxc/storage_volume.go:1985 #, c-format msgid "Error setting properties: %v" @@ -2071,10 +2066,10 @@ 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/network_forward.go:513 lxc/network_load_balancer.go:521 +#: lxc/network_peer.go:457 lxc/network_zone.go:408 lxc/network_zone.go:1002 #: lxc/profile.go:870 lxc/project.go:628 lxc/storage.go:721 -#: lxc/storage_bucket.go:591 lxc/storage_volume.go:1941 +#: lxc/storage_bucket.go:596 lxc/storage_volume.go:1941 #: lxc/storage_volume.go:1979 #, c-format msgid "Error unsetting property: %v" @@ -2260,7 +2255,7 @@ msgstr "" msgid "Failed parsing SSH host key: %w" msgstr "" -#: lxc/console.go:361 +#: lxc/console.go:366 #, c-format msgid "Failed starting command: %w" msgstr "" @@ -2275,11 +2270,11 @@ msgstr "" msgid "Failed to accept incoming connection: %w" msgstr "" -#: lxc/remote.go:190 +#: lxc/remote.go:191 msgid "Failed to add remote" msgstr "" -#: lxc/remote.go:241 +#: lxc/remote.go:242 #, c-format msgid "Failed to close server cert file %q: %w" msgstr "" @@ -2289,7 +2284,7 @@ msgstr "" msgid "Failed to connect to cluster member: %w" msgstr "" -#: lxc/remote.go:231 +#: lxc/remote.go:232 #, c-format msgid "Failed to create %q: %w" msgstr "" @@ -2299,12 +2294,12 @@ msgstr "" msgid "Failed to create alias %s: %w" msgstr "" -#: lxc/remote.go:256 +#: lxc/remote.go:257 #, c-format msgid "Failed to create certificate: %w" msgstr "" -#: lxc/remote.go:263 +#: lxc/remote.go:264 #, c-format msgid "Failed to find project: %w" msgstr "" @@ -2329,7 +2324,7 @@ msgstr "" msgid "Failed to walk path for %s: %s" msgstr "" -#: lxc/remote.go:236 +#: lxc/remote.go:237 #, c-format msgid "Failed to write server cert file %q: %w" msgstr "" @@ -2338,7 +2333,7 @@ msgstr "" msgid "Fast mode (same as --columns=nsacPt)" msgstr "" -#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:115 +#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:116 #: lxc/operation.go:136 msgid "Filtering isn't supported yet" msgstr "" @@ -2376,7 +2371,7 @@ msgstr "" msgid "Force the removal of running instances" msgstr "" -#: lxc/main.go:95 +#: lxc/main.go:96 msgid "Force using the local unix socket" msgstr "" @@ -2410,10 +2405,10 @@ msgstr "" #: 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/network_peer.go:84 lxc/network_zone.go:89 lxc/network_zone.go:697 #: lxc/operation.go:108 lxc/profile.go:637 lxc/project.go:412 -#: lxc/project.go:804 lxc/remote.go:673 lxc/storage.go:588 -#: lxc/storage_bucket.go:454 lxc/storage_bucket.go:769 +#: lxc/project.go:804 lxc/remote.go:674 lxc/storage.go:588 +#: lxc/storage_bucket.go:459 lxc/storage_bucket.go:774 #: lxc/storage_volume.go:1446 lxc/warning.go:93 msgid "Format (csv|json|table|yaml|compact)" msgstr "" @@ -2450,7 +2445,7 @@ msgstr "" msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)" msgstr "" -#: lxc/remote.go:737 +#: lxc/remote.go:738 msgid "GLOBAL" msgstr "" @@ -2470,7 +2465,7 @@ msgstr "" msgid "Generate manpages for all commands" msgstr "" -#: lxc/remote.go:159 lxc/remote.go:397 +#: lxc/remote.go:160 lxc/remote.go:398 msgid "Generating a client certificate. This may take a minute..." msgstr "" @@ -2502,7 +2497,7 @@ msgstr "" msgid "Get the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:386 +#: lxc/network_load_balancer.go:391 msgid "Get the key as a network load balancer property" msgstr "" @@ -2514,11 +2509,11 @@ msgstr "" msgid "Get the key as a network property" msgstr "" -#: lxc/network_zone.go:214 +#: lxc/network_zone.go:215 msgid "Get the key as a network zone property" msgstr "" -#: lxc/network_zone.go:814 +#: lxc/network_zone.go:819 msgid "Get the key as a network zone record property" msgstr "" @@ -2530,7 +2525,7 @@ msgstr "" msgid "Get the key as a project property" msgstr "" -#: lxc/storage_bucket.go:380 +#: lxc/storage_bucket.go:385 msgid "Get the key as a storage bucket property" msgstr "" @@ -2570,7 +2565,7 @@ msgstr "" msgid "Get values for network forward configuration keys" msgstr "" -#: lxc/network_load_balancer.go:382 lxc/network_load_balancer.go:383 +#: lxc/network_load_balancer.go:387 lxc/network_load_balancer.go:388 msgid "Get values for network load balancer configuration keys" msgstr "" @@ -2578,11 +2573,11 @@ msgstr "" msgid "Get values for network peer configuration keys" msgstr "" -#: lxc/network_zone.go:210 lxc/network_zone.go:211 +#: lxc/network_zone.go:211 lxc/network_zone.go:212 msgid "Get values for network zone configuration keys" msgstr "" -#: lxc/network_zone.go:810 lxc/network_zone.go:811 +#: lxc/network_zone.go:815 lxc/network_zone.go:816 msgid "Get values for network zone record configuration keys" msgstr "" @@ -2594,7 +2589,7 @@ msgstr "" msgid "Get values for project configuration keys" msgstr "" -#: lxc/storage_bucket.go:376 lxc/storage_bucket.go:377 +#: lxc/storage_bucket.go:381 lxc/storage_bucket.go:382 msgid "Get values for storage bucket configuration keys" msgstr "" @@ -2734,7 +2729,7 @@ msgstr "" msgid "If the snapshot name already exists, delete and create a new one" msgstr "" -#: lxc/main.go:398 +#: lxc/main.go:400 msgid "" "If this is your first time running LXD on this machine, you should also run: " "lxd init" @@ -2891,7 +2886,7 @@ msgstr "" msgid "Instance type" msgstr "" -#: lxc/remote.go:349 +#: lxc/remote.go:350 #, c-format msgid "Invalid URL scheme \"%s\" in \"%s\"" msgstr "" @@ -2963,7 +2958,7 @@ msgstr "" msgid "Invalid new snapshot name, parent volume must be the same as source" msgstr "" -#: lxc/main.go:498 +#: lxc/main.go:502 msgid "Invalid number of arguments" msgstr "" @@ -2972,7 +2967,7 @@ msgstr "" msgid "Invalid path %s" msgstr "" -#: lxc/remote.go:338 +#: lxc/remote.go:339 #, c-format msgid "Invalid protocol: %s" msgstr "" @@ -3020,7 +3015,7 @@ msgstr "" #: lxc/list.go:597 lxc/network.go:1059 lxc/network_forward.go:155 #: lxc/network_load_balancer.go:157 lxc/operation.go:177 -#: lxc/storage_bucket.go:511 lxc/storage_volume.go:1569 lxc/warning.go:220 +#: lxc/storage_bucket.go:516 lxc/storage_volume.go:1569 lxc/warning.go:220 msgid "LOCATION" msgstr "" @@ -3028,7 +3023,7 @@ msgstr "" msgid "LXD - Command line client" msgstr "" -#: lxc/console.go:382 +#: lxc/console.go:387 msgid "LXD automatically uses either spicy or remote-viewer when present." msgstr "" @@ -3118,15 +3113,15 @@ msgstr "" msgid "List available network peers" msgstr "" -#: lxc/network_zone.go:85 +#: lxc/network_zone.go:86 msgid "List available network zone" msgstr "" -#: lxc/network_zone.go:688 lxc/network_zone.go:689 +#: lxc/network_zone.go:693 lxc/network_zone.go:694 msgid "List available network zone records" msgstr "" -#: lxc/network_zone.go:84 +#: lxc/network_zone.go:85 msgid "List available network zoneS" msgstr "" @@ -3315,11 +3310,11 @@ msgstr "" msgid "List projects" msgstr "" -#: lxc/storage_bucket.go:766 lxc/storage_bucket.go:768 +#: lxc/storage_bucket.go:771 lxc/storage_bucket.go:773 msgid "List storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:451 lxc/storage_bucket.go:453 +#: lxc/storage_bucket.go:456 lxc/storage_bucket.go:458 msgid "List storage buckets" msgstr "" @@ -3347,7 +3342,7 @@ msgid "" " U - Current disk usage" msgstr "" -#: lxc/remote.go:668 lxc/remote.go:669 +#: lxc/remote.go:669 lxc/remote.go:670 msgid "List the available remotes" msgstr "" @@ -3574,11 +3569,11 @@ msgstr "" msgid "Manage network forwards" msgstr "" -#: lxc/network_load_balancer.go:782 lxc/network_load_balancer.go:783 +#: lxc/network_load_balancer.go:787 lxc/network_load_balancer.go:788 msgid "Manage network load balancer backends" msgstr "" -#: lxc/network_load_balancer.go:947 lxc/network_load_balancer.go:948 +#: lxc/network_load_balancer.go:952 lxc/network_load_balancer.go:953 msgid "Manage network load balancer ports" msgstr "" @@ -3590,15 +3585,15 @@ msgstr "" msgid "Manage network peerings" msgstr "" -#: lxc/network_zone.go:1224 lxc/network_zone.go:1225 +#: lxc/network_zone.go:1229 lxc/network_zone.go:1230 msgid "Manage network zone record entries" msgstr "" -#: lxc/network_zone.go:631 lxc/network_zone.go:632 +#: lxc/network_zone.go:636 lxc/network_zone.go:637 msgid "Manage network zone records" msgstr "" -#: lxc/network_zone.go:27 lxc/network_zone.go:28 +#: lxc/network_zone.go:28 lxc/network_zone.go:29 msgid "Manage network zones" msgstr "" @@ -3614,11 +3609,11 @@ msgstr "" msgid "Manage projects" msgstr "" -#: lxc/storage_bucket.go:726 +#: lxc/storage_bucket.go:731 msgid "Manage storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:727 +#: lxc/storage_bucket.go:732 msgid "Manage storage bucket keys." msgstr "" @@ -3646,7 +3641,7 @@ msgid "" "\"custom\" (user created) volumes." msgstr "" -#: lxc/remote.go:33 lxc/remote.go:34 +#: lxc/remote.go:34 lxc/remote.go:35 msgid "Manage the list of remote servers" msgstr "" @@ -3727,12 +3722,12 @@ msgid "" "Minimum level for log messages (only available when using pretty format)" msgstr "" -#: lxc/storage_bucket.go:111 lxc/storage_bucket.go:211 -#: lxc/storage_bucket.go:287 lxc/storage_bucket.go:406 -#: lxc/storage_bucket.go:563 lxc/storage_bucket.go:655 -#: lxc/storage_bucket.go:797 lxc/storage_bucket.go:878 -#: lxc/storage_bucket.go:953 lxc/storage_bucket.go:1032 -#: lxc/storage_bucket.go:1155 +#: lxc/storage_bucket.go:116 lxc/storage_bucket.go:216 +#: lxc/storage_bucket.go:292 lxc/storage_bucket.go:411 +#: lxc/storage_bucket.go:568 lxc/storage_bucket.go:660 +#: lxc/storage_bucket.go:802 lxc/storage_bucket.go:883 +#: lxc/storage_bucket.go:958 lxc/storage_bucket.go:1037 +#: lxc/storage_bucket.go:1160 msgid "Missing bucket name" msgstr "" @@ -3776,8 +3771,8 @@ msgstr "" msgid "Missing instance name" msgstr "" -#: lxc/storage_bucket.go:882 lxc/storage_bucket.go:957 -#: lxc/storage_bucket.go:1036 lxc/storage_bucket.go:1159 +#: lxc/storage_bucket.go:887 lxc/storage_bucket.go:962 +#: lxc/storage_bucket.go:1041 lxc/storage_bucket.go:1164 msgid "Missing key name" msgstr "" @@ -3785,10 +3780,10 @@ msgstr "" #: lxc/network_forward.go:481 lxc/network_forward.go:627 #: lxc/network_forward.go:746 lxc/network_forward.go:823 #: lxc/network_forward.go:889 lxc/network_load_balancer.go:201 -#: lxc/network_load_balancer.go:411 lxc/network_load_balancer.go:484 -#: lxc/network_load_balancer.go:630 lxc/network_load_balancer.go:750 -#: lxc/network_load_balancer.go:826 lxc/network_load_balancer.go:890 -#: lxc/network_load_balancer.go:991 lxc/network_load_balancer.go:1053 +#: lxc/network_load_balancer.go:416 lxc/network_load_balancer.go:489 +#: lxc/network_load_balancer.go:635 lxc/network_load_balancer.go:755 +#: lxc/network_load_balancer.go:831 lxc/network_load_balancer.go:895 +#: lxc/network_load_balancer.go:996 lxc/network_load_balancer.go:1058 msgid "Missing listen address" msgstr "" @@ -3813,26 +3808,26 @@ msgstr "" #: lxc/network_forward.go:477 lxc/network_forward.go:623 #: lxc/network_forward.go:742 lxc/network_forward.go:819 #: lxc/network_forward.go:885 lxc/network_load_balancer.go:123 -#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:261 -#: lxc/network_load_balancer.go:407 lxc/network_load_balancer.go:480 -#: lxc/network_load_balancer.go:626 lxc/network_load_balancer.go:746 -#: lxc/network_load_balancer.go:822 lxc/network_load_balancer.go:886 -#: lxc/network_load_balancer.go:987 lxc/network_load_balancer.go:1049 +#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:266 +#: lxc/network_load_balancer.go:412 lxc/network_load_balancer.go:485 +#: lxc/network_load_balancer.go:631 lxc/network_load_balancer.go:751 +#: lxc/network_load_balancer.go:827 lxc/network_load_balancer.go:891 +#: lxc/network_load_balancer.go:992 lxc/network_load_balancer.go:1054 #: lxc/network_peer.go:110 lxc/network_peer.go:180 lxc/network_peer.go:237 #: lxc/network_peer.go:355 lxc/network_peer.go:426 lxc/network_peer.go:556 #: lxc/network_peer.go:665 msgid "Missing network name" msgstr "" -#: lxc/network_zone.go:178 lxc/network_zone.go:234 lxc/network_zone.go:294 -#: lxc/network_zone.go:382 lxc/network_zone.go:503 lxc/network_zone.go:606 -#: lxc/network_zone.go:712 lxc/network_zone.go:780 lxc/network_zone.go:892 -#: lxc/network_zone.go:976 lxc/network_zone.go:1197 lxc/network_zone.go:1262 -#: lxc/network_zone.go:1307 +#: lxc/network_zone.go:179 lxc/network_zone.go:235 lxc/network_zone.go:299 +#: lxc/network_zone.go:387 lxc/network_zone.go:508 lxc/network_zone.go:611 +#: lxc/network_zone.go:717 lxc/network_zone.go:785 lxc/network_zone.go:897 +#: lxc/network_zone.go:981 lxc/network_zone.go:1202 lxc/network_zone.go:1267 +#: lxc/network_zone.go:1312 msgid "Missing network zone name" msgstr "" -#: lxc/network_zone.go:833 lxc/network_zone.go:1095 +#: lxc/network_zone.go:838 lxc/network_zone.go:1100 msgid "Missing network zone record name" msgstr "" @@ -3842,13 +3837,13 @@ msgid "Missing peer name" msgstr "" #: lxc/storage.go:194 lxc/storage.go:264 lxc/storage.go:370 lxc/storage.go:440 -#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:107 -#: lxc/storage_bucket.go:207 lxc/storage_bucket.go:283 -#: lxc/storage_bucket.go:402 lxc/storage_bucket.go:477 -#: lxc/storage_bucket.go:559 lxc/storage_bucket.go:651 -#: lxc/storage_bucket.go:793 lxc/storage_bucket.go:874 -#: lxc/storage_bucket.go:949 lxc/storage_bucket.go:1028 -#: lxc/storage_bucket.go:1151 lxc/storage_volume.go:189 +#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:112 +#: lxc/storage_bucket.go:212 lxc/storage_bucket.go:288 +#: lxc/storage_bucket.go:407 lxc/storage_bucket.go:482 +#: lxc/storage_bucket.go:564 lxc/storage_bucket.go:656 +#: lxc/storage_bucket.go:798 lxc/storage_bucket.go:879 +#: lxc/storage_bucket.go:954 lxc/storage_bucket.go:1033 +#: lxc/storage_bucket.go:1156 lxc/storage_volume.go:189 #: lxc/storage_volume.go:287 lxc/storage_volume.go:583 #: lxc/storage_volume.go:660 lxc/storage_volume.go:735 #: lxc/storage_volume.go:817 lxc/storage_volume.go:919 @@ -3968,7 +3963,7 @@ msgstr "" msgid "Moving the storage volume: %s" msgstr "" -#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1097 +#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1102 msgid "Multiple ports match. Use --force to remove them all" msgstr "" @@ -3987,10 +3982,10 @@ 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:677 lxc/project.go:498 -#: lxc/remote.go:731 lxc/storage.go:638 lxc/storage_bucket.go:506 -#: lxc/storage_bucket.go:826 lxc/storage_volume.go:1561 +#: lxc/network_acl.go:147 lxc/network_peer.go:139 lxc/network_zone.go:139 +#: lxc/network_zone.go:746 lxc/profile.go:677 lxc/project.go:498 +#: lxc/remote.go:732 lxc/storage.go:638 lxc/storage_bucket.go:511 +#: lxc/storage_bucket.go:831 lxc/storage_volume.go:1561 msgid "NAME" msgstr "" @@ -4016,7 +4011,7 @@ msgstr "" #: lxc/network.go:957 lxc/operation.go:154 lxc/project.go:456 #: lxc/project.go:461 lxc/project.go:466 lxc/project.go:471 lxc/project.go:476 -#: lxc/project.go:481 lxc/remote.go:691 lxc/remote.go:696 lxc/remote.go:701 +#: lxc/project.go:481 lxc/remote.go:692 lxc/remote.go:697 lxc/remote.go:702 msgid "NO" msgstr "" @@ -4043,7 +4038,7 @@ msgstr "" msgid "Name" msgstr "" -#: lxc/remote.go:141 +#: lxc/remote.go:142 msgid "Name of the project to use for this remote:" msgstr "" @@ -4092,12 +4087,12 @@ msgstr "" msgid "Network ACL %s renamed to %s" msgstr "" -#: lxc/network_zone.go:336 +#: lxc/network_zone.go:341 #, c-format msgid "Network Zone %s created" msgstr "" -#: lxc/network_zone.go:616 +#: lxc/network_zone.go:621 #, c-format msgid "Network Zone %s deleted" msgstr "" @@ -4112,12 +4107,12 @@ msgstr "" msgid "Network forward %s deleted" msgstr "" -#: lxc/network_load_balancer.go:365 +#: lxc/network_load_balancer.go:370 #, c-format msgid "Network load balancer %s created" msgstr "" -#: lxc/network_load_balancer.go:767 +#: lxc/network_load_balancer.go:772 #, c-format msgid "Network load balancer %s deleted" msgstr "" @@ -4155,12 +4150,12 @@ msgstr "" msgid "Network usage:" msgstr "" -#: lxc/network_zone.go:934 +#: lxc/network_zone.go:939 #, c-format msgid "Network zone record %s created" msgstr "" -#: lxc/network_zone.go:1207 +#: lxc/network_zone.go:1212 #, c-format msgid "Network zone record %s deleted" msgstr "" @@ -4195,11 +4190,11 @@ msgstr "" msgid "No device found for this storage volume" msgstr "" -#: lxc/network_load_balancer.go:921 +#: lxc/network_load_balancer.go:926 msgid "No matching backend found" msgstr "" -#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1108 +#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1113 msgid "No matching port(s) found" msgstr "" @@ -4245,7 +4240,7 @@ msgstr "" msgid "Only \"custom\" volumes can be snapshotted" msgstr "" -#: lxc/remote.go:332 +#: lxc/remote.go:333 msgid "Only https URLs are supported for simplestreams" msgstr "" @@ -4270,7 +4265,7 @@ msgstr "" msgid "Optimized Storage" msgstr "" -#: lxc/main.go:96 +#: lxc/main.go:97 msgid "Override the source project" msgstr "" @@ -4316,11 +4311,11 @@ msgstr "" msgid "PROJECT" msgstr "" -#: lxc/remote.go:733 +#: lxc/remote.go:734 msgid "PROTOCOL" msgstr "" -#: lxc/image.go:1073 lxc/remote.go:735 +#: lxc/image.go:1073 lxc/remote.go:736 msgid "PUBLIC" msgstr "" @@ -4336,7 +4331,7 @@ msgstr "" msgid "Partitions:" msgstr "" -#: lxc/main.go:361 +#: lxc/main.go:363 #, c-format msgid "Password for %s: " msgstr "" @@ -4349,7 +4344,7 @@ msgstr "" msgid "Perform an incremental copy" msgstr "" -#: lxc/remote.go:182 +#: lxc/remote.go:183 msgid "Please provide an alternate server address (empty to abort):" msgstr "" @@ -4361,7 +4356,7 @@ msgstr "" msgid "Please provide cluster member name: " msgstr "" -#: lxc/remote.go:462 +#: lxc/remote.go:463 msgid "Please type 'y', 'n' or the fingerprint:" msgstr "" @@ -4383,10 +4378,10 @@ msgstr "" #: lxc/config.go:1278 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/network_load_balancer.go:695 lxc/network_peer.go:611 +#: lxc/network_zone.go:557 lxc/network_zone.go:1149 lxc/profile.go:539 +#: lxc/project.go:316 lxc/storage.go:311 lxc/storage_bucket.go:349 +#: lxc/storage_bucket.go:1098 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 "" @@ -4395,7 +4390,7 @@ msgstr "" msgid "Pretty rendering (short for --format=pretty)" msgstr "" -#: lxc/main.go:94 +#: lxc/main.go:95 msgid "Print help" msgstr "" @@ -4403,7 +4398,7 @@ msgstr "" msgid "Print the raw response" msgstr "" -#: lxc/main.go:93 +#: lxc/main.go:94 msgid "Print version number" msgstr "" @@ -4492,7 +4487,7 @@ msgstr "" msgid "Project %s renamed to %s" msgstr "" -#: lxc/remote.go:106 +#: lxc/remote.go:107 msgid "Project to use for the remote" msgstr "" @@ -4590,7 +4585,7 @@ msgid "" "pool \"default\"." msgstr "" -#: lxc/remote.go:105 +#: lxc/remote.go:106 msgid "Public image server" msgstr "" @@ -4638,7 +4633,7 @@ msgstr "" msgid "RESOURCE" msgstr "" -#: lxc/storage_bucket.go:828 +#: lxc/storage_bucket.go:833 msgid "ROLE" msgstr "" @@ -4681,45 +4676,45 @@ msgstr "" msgid "Refreshing the image: %s" msgstr "" -#: lxc/remote.go:785 +#: lxc/remote.go:786 #, c-format msgid "Remote %s already exists" msgstr "" -#: lxc/project.go:769 lxc/remote.go:776 lxc/remote.go:849 lxc/remote.go:905 -#: lxc/remote.go:945 +#: lxc/project.go:769 lxc/remote.go:777 lxc/remote.go:850 lxc/remote.go:906 +#: lxc/remote.go:946 #, c-format msgid "Remote %s doesn't exist" msgstr "" -#: lxc/remote.go:301 +#: lxc/remote.go:302 #, c-format msgid "Remote %s exists as <%s>" msgstr "" -#: lxc/remote.go:857 +#: lxc/remote.go:858 #, c-format msgid "Remote %s is global and cannot be removed" msgstr "" -#: lxc/remote.go:780 lxc/remote.go:853 lxc/remote.go:949 +#: lxc/remote.go:781 lxc/remote.go:854 lxc/remote.go:950 #, c-format msgid "Remote %s is static and cannot be modified" msgstr "" -#: lxc/remote.go:290 +#: lxc/remote.go:291 msgid "Remote address must not be empty" msgstr "" -#: lxc/remote.go:101 +#: lxc/remote.go:102 msgid "Remote admin password" msgstr "" -#: lxc/remote.go:295 +#: lxc/remote.go:296 msgid "Remote names may not contain colons" msgstr "" -#: lxc/remote.go:102 +#: lxc/remote.go:103 msgid "Remote trust token" msgstr "" @@ -4745,7 +4740,7 @@ msgstr "" msgid "Remove a member from the cluster" msgstr "" -#: lxc/network_zone.go:1285 +#: lxc/network_zone.go:1290 msgid "Remove a network zone record entry" msgstr "" @@ -4753,7 +4748,7 @@ msgstr "" msgid "Remove aliases" msgstr "" -#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1025 +#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1030 msgid "Remove all ports that match" msgstr "" @@ -4761,15 +4756,15 @@ msgstr "" msgid "Remove all rules that match" msgstr "" -#: lxc/network_load_balancer.go:862 +#: lxc/network_load_balancer.go:867 msgid "Remove backend from a load balancer" msgstr "" -#: lxc/network_load_balancer.go:861 +#: lxc/network_load_balancer.go:866 msgid "Remove backends from a load balancer" msgstr "" -#: lxc/network_zone.go:1286 +#: lxc/network_zone.go:1291 msgid "Remove entries from a network zone record" msgstr "" @@ -4793,7 +4788,7 @@ msgstr "" msgid "Remove ports from a forward" msgstr "" -#: lxc/network_load_balancer.go:1023 lxc/network_load_balancer.go:1024 +#: lxc/network_load_balancer.go:1028 lxc/network_load_balancer.go:1029 msgid "Remove ports from a load balancer" msgstr "" @@ -4801,7 +4796,7 @@ msgstr "" msgid "Remove profiles from instances" msgstr "" -#: lxc/remote.go:827 lxc/remote.go:828 +#: lxc/remote.go:828 lxc/remote.go:829 msgid "Remove remotes" msgstr "" @@ -4858,7 +4853,7 @@ msgstr "" msgid "Rename projects" msgstr "" -#: lxc/remote.go:754 lxc/remote.go:755 +#: lxc/remote.go:755 lxc/remote.go:756 msgid "Rename remotes" msgstr "" @@ -4936,7 +4931,7 @@ msgid "Restrict the certificate to one or more projects" msgstr "" #: lxc/console.go:44 -msgid "Retrieve the instance's console log" +msgid "Retrieve the container's console log" msgstr "" #: lxc/init.go:347 @@ -4952,7 +4947,7 @@ msgstr "" msgid "Revoke cluster member join token" msgstr "" -#: lxc/storage_bucket.go:851 +#: lxc/storage_bucket.go:856 msgid "Role (admin or read-only)" msgstr "" @@ -5003,7 +4998,7 @@ msgstr "" msgid "STATE" msgstr "" -#: lxc/remote.go:736 +#: lxc/remote.go:737 msgid "STATIC" msgstr "" @@ -5027,11 +5022,11 @@ msgstr "" msgid "STP" msgstr "" -#: lxc/storage_bucket.go:853 +#: lxc/storage_bucket.go:858 msgid "Secret key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:909 +#: lxc/storage_bucket.go:914 #, c-format msgid "Secret key: %s" msgstr "" @@ -5040,19 +5035,19 @@ msgstr "" msgid "Send a raw query to LXD" msgstr "" -#: lxc/remote.go:104 +#: lxc/remote.go:105 msgid "Server authentication type (tls or oidc)" msgstr "" -#: lxc/remote.go:460 +#: lxc/remote.go:461 msgid "Server certificate NACKed by user" msgstr "" -#: lxc/remote.go:599 +#: lxc/remote.go:600 msgid "Server doesn't trust us after authentication" msgstr "" -#: lxc/remote.go:103 +#: lxc/remote.go:104 msgid "Server protocol (lxd or simplestreams)" msgstr "" @@ -5151,11 +5146,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_load_balancer.go:450 +#: lxc/network_load_balancer.go:455 msgid "Set network load balancer keys" msgstr "" -#: lxc/network_load_balancer.go:451 +#: lxc/network_load_balancer.go:456 msgid "" "Set network load balancer keys\n" "\n" @@ -5177,11 +5172,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:353 +#: lxc/network_zone.go:358 msgid "Set network zone configuration keys" msgstr "" -#: lxc/network_zone.go:354 +#: lxc/network_zone.go:359 msgid "" "Set network zone configuration keys\n" "\n" @@ -5190,7 +5185,7 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:951 lxc/network_zone.go:952 +#: lxc/network_zone.go:956 lxc/network_zone.go:957 msgid "Set network zone record configuration keys" msgstr "" @@ -5220,11 +5215,11 @@ msgid "" " lxc project set [:] " msgstr "" -#: lxc/storage_bucket.go:529 +#: lxc/storage_bucket.go:534 msgid "Set storage bucket configuration keys" msgstr "" -#: lxc/storage_bucket.go:530 +#: lxc/storage_bucket.go:535 msgid "" "Set storage bucket configuration keys\n" "\n" @@ -5259,7 +5254,7 @@ msgid "" " lxc storage volume set [:] [/] " msgstr "" -#: lxc/remote.go:923 lxc/remote.go:924 +#: lxc/remote.go:924 lxc/remote.go:925 msgid "Set the URL for the remote" msgstr "" @@ -5287,7 +5282,7 @@ msgstr "" msgid "Set the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:458 +#: lxc/network_load_balancer.go:463 msgid "Set the key as a network load balancer property" msgstr "" @@ -5299,11 +5294,11 @@ msgstr "" msgid "Set the key as a network property" msgstr "" -#: lxc/network_zone.go:361 +#: lxc/network_zone.go:366 msgid "Set the key as a network zone property" msgstr "" -#: lxc/network_zone.go:957 +#: lxc/network_zone.go:962 msgid "Set the key as a network zone record property" msgstr "" @@ -5315,7 +5310,7 @@ msgstr "" msgid "Set the key as a project property" msgstr "" -#: lxc/storage_bucket.go:537 +#: lxc/storage_bucket.go:542 msgid "Set the key as a storage bucket property" msgstr "" @@ -5335,11 +5330,11 @@ msgstr "" msgid "Setup SSH SFTP listener on address:port instead of mounting" msgstr "" -#: lxc/main.go:97 +#: lxc/main.go:98 msgid "Show all debug messages" msgstr "" -#: lxc/main.go:98 +#: lxc/main.go:99 msgid "Show all information messages" msgstr "" @@ -5408,7 +5403,7 @@ msgstr "" msgid "Show instance or server information" msgstr "" -#: lxc/main.go:271 lxc/main.go:272 +#: lxc/main.go:272 lxc/main.go:273 msgid "Show less common commands" msgstr "" @@ -5440,15 +5435,15 @@ msgstr "" msgid "Show network peer configurations" msgstr "" -#: lxc/network_zone.go:155 lxc/network_zone.go:156 +#: lxc/network_zone.go:156 lxc/network_zone.go:157 msgid "Show network zone configurations" msgstr "" -#: lxc/network_zone.go:758 +#: lxc/network_zone.go:763 msgid "Show network zone record configuration" msgstr "" -#: lxc/network_zone.go:759 +#: lxc/network_zone.go:764 msgid "Show network zone record configurations" msgstr "" @@ -5460,11 +5455,11 @@ msgstr "" msgid "Show project options" msgstr "" -#: lxc/storage_bucket.go:623 lxc/storage_bucket.go:624 +#: lxc/storage_bucket.go:628 lxc/storage_bucket.go:629 msgid "Show storage bucket configurations" msgstr "" -#: lxc/storage_bucket.go:1123 lxc/storage_bucket.go:1124 +#: lxc/storage_bucket.go:1128 lxc/storage_bucket.go:1129 msgid "Show storage bucket key configurations" msgstr "" @@ -5490,7 +5485,7 @@ msgid "" "that are granted via identity provider group mappings. \n" msgstr "" -#: lxc/remote.go:630 lxc/remote.go:631 +#: lxc/remote.go:631 lxc/remote.go:632 msgid "Show the default remote" msgstr "" @@ -5614,22 +5609,22 @@ msgstr "" msgid "Stopping the instance failed: %s" msgstr "" -#: lxc/storage_bucket.go:161 +#: lxc/storage_bucket.go:166 #, c-format msgid "Storage bucket %s created" msgstr "" -#: lxc/storage_bucket.go:228 +#: lxc/storage_bucket.go:233 #, c-format msgid "Storage bucket %s deleted" msgstr "" -#: lxc/storage_bucket.go:907 +#: lxc/storage_bucket.go:912 #, c-format msgid "Storage bucket key %s added" msgstr "" -#: lxc/storage_bucket.go:973 +#: lxc/storage_bucket.go:978 #, c-format msgid "Storage bucket key %s removed" msgstr "" @@ -5702,7 +5697,7 @@ msgstr "" msgid "Switch the current project" msgstr "" -#: lxc/remote.go:883 lxc/remote.go:884 +#: lxc/remote.go:884 lxc/remote.go:885 msgid "Switch the default remote" msgstr "" @@ -5817,7 +5812,7 @@ msgstr "" msgid "The property %q does not exist on the instance snapshot %s/%s: %v" msgstr "" -#: lxc/network_load_balancer.go:424 +#: lxc/network_load_balancer.go:429 #, c-format msgid "The property %q does not exist on the load balancer %q: %v" msgstr "" @@ -5842,12 +5837,12 @@ msgstr "" msgid "The property %q does not exist on the network peer %q: %v" msgstr "" -#: lxc/network_zone.go:246 +#: lxc/network_zone.go:247 #, c-format msgid "The property %q does not exist on the network zone %q: %v" msgstr "" -#: lxc/network_zone.go:845 +#: lxc/network_zone.go:850 #, c-format msgid "The property %q does not exist on the network zone record %q: %v" msgstr "" @@ -5862,7 +5857,7 @@ msgstr "" msgid "The property %q does not exist on the project %q: %v" msgstr "" -#: lxc/storage_bucket.go:426 +#: lxc/storage_bucket.go:431 #, c-format msgid "The property %q does not exist on the storage bucket %q: %v" msgstr "" @@ -5916,7 +5911,7 @@ msgstr "" msgid "This LXD server is not available on the network" msgstr "" -#: lxc/main.go:293 +#: lxc/main.go:294 msgid "" "This client hasn't been configured to use a remote LXD server yet.\n" "As your platform can't run native Linux instances, you must connect to a " @@ -5948,11 +5943,11 @@ msgstr "" msgid "To create a new network, use: lxc network create" msgstr "" -#: lxc/console.go:210 +#: lxc/console.go:215 msgid "To detach from the console, press: +a q" msgstr "" -#: lxc/main.go:403 +#: lxc/main.go:406 msgid "" "To start your first container, try: lxc launch ubuntu:24.04\n" "Or for a virtual machine: lxc launch ubuntu:24.04 --vm" @@ -6050,7 +6045,7 @@ msgstr "" msgid "UPLOAD DATE" msgstr "" -#: lxc/cluster.go:184 lxc/remote.go:732 +#: lxc/cluster.go:184 lxc/remote.go:733 msgid "URL" msgstr "" @@ -6059,7 +6054,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:679 lxc/project.go:506 +#: lxc/network_zone.go:141 lxc/profile.go:679 lxc/project.go:506 #: lxc/storage.go:647 lxc/storage_volume.go:1564 msgid "USED BY" msgstr "" @@ -6078,7 +6073,7 @@ msgstr "" msgid "Unable to create a temporary file: %v" msgstr "" -#: lxc/remote.go:213 lxc/remote.go:247 +#: lxc/remote.go:214 lxc/remote.go:248 msgid "Unavailable remote server" msgstr "" @@ -6098,7 +6093,7 @@ msgstr "" msgid "Unknown column shorthand char '%c' in '%s'" msgstr "" -#: lxc/console.go:159 +#: lxc/console.go:164 #, c-format msgid "Unknown console type %q" msgstr "" @@ -6158,11 +6153,11 @@ msgstr "" msgid "Unset network forward keys" msgstr "" -#: lxc/network_load_balancer.go:548 +#: lxc/network_load_balancer.go:553 msgid "Unset network load balancer configuration keys" msgstr "" -#: lxc/network_load_balancer.go:549 +#: lxc/network_load_balancer.go:554 msgid "Unset network load balancer keys" msgstr "" @@ -6174,11 +6169,11 @@ msgstr "" msgid "Unset network peer keys" msgstr "" -#: lxc/network_zone.go:433 lxc/network_zone.go:434 +#: lxc/network_zone.go:438 lxc/network_zone.go:439 msgid "Unset network zone configuration keys" msgstr "" -#: lxc/network_zone.go:1027 lxc/network_zone.go:1028 +#: lxc/network_zone.go:1032 lxc/network_zone.go:1033 msgid "Unset network zone record configuration keys" msgstr "" @@ -6190,7 +6185,7 @@ msgstr "" msgid "Unset project configuration keys" msgstr "" -#: lxc/storage_bucket.go:692 lxc/storage_bucket.go:693 +#: lxc/storage_bucket.go:697 lxc/storage_bucket.go:698 msgid "Unset storage bucket configuration keys" msgstr "" @@ -6214,7 +6209,7 @@ msgstr "" msgid "Unset the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:552 +#: lxc/network_load_balancer.go:557 msgid "Unset the key as a network load balancer property" msgstr "" @@ -6226,11 +6221,11 @@ msgstr "" msgid "Unset the key as a network property" msgstr "" -#: lxc/network_zone.go:437 +#: lxc/network_zone.go:442 msgid "Unset the key as a network zone property" msgstr "" -#: lxc/network_zone.go:1031 +#: lxc/network_zone.go:1036 msgid "Unset the key as a network zone record property" msgstr "" @@ -6242,7 +6237,7 @@ msgstr "" msgid "Unset the key as a project property" msgstr "" -#: lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:701 msgid "Unset the key as a storage bucket property" msgstr "" @@ -6304,7 +6299,7 @@ msgid "" "Use storage driver optimized format (can only be restored on a similar pool)" msgstr "" -#: lxc/main.go:100 +#: lxc/main.go:101 msgid "Use with help or --help to view sub-commands" msgstr "" @@ -6401,7 +6396,7 @@ msgstr "" #: lxc/network.go:959 lxc/operation.go:156 lxc/project.go:458 #: lxc/project.go:463 lxc/project.go:468 lxc/project.go:473 lxc/project.go:478 -#: lxc/project.go:483 lxc/remote.go:693 lxc/remote.go:698 lxc/remote.go:703 +#: lxc/project.go:483 lxc/remote.go:694 lxc/remote.go:699 lxc/remote.go:704 msgid "YES" msgstr "" @@ -6436,7 +6431,7 @@ 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/network.go:909 lxc/network_acl.go:91 lxc/network_zone.go:83 #: 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 "[:]" @@ -6499,19 +6494,19 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:154 lxc/network_zone.go:463 lxc/network_zone.go:581 +#: lxc/network_zone.go:155 lxc/network_zone.go:468 lxc/network_zone.go:586 msgid "[:]" msgstr "" -#: lxc/network_zone.go:209 lxc/network_zone.go:432 +#: lxc/network_zone.go:210 lxc/network_zone.go:437 msgid "[:] " msgstr "" -#: lxc/network_zone.go:352 +#: lxc/network_zone.go:357 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:269 +#: lxc/network_zone.go:270 msgid "[:] [key=value...]" msgstr "" @@ -6757,30 +6752,30 @@ msgstr "" #: lxc/network_forward.go:169 lxc/network_forward.go:574 #: lxc/network_forward.go:715 lxc/network_load_balancer.go:171 -#: lxc/network_load_balancer.go:577 lxc/network_load_balancer.go:719 +#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:724 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:860 +#: lxc/network_load_balancer.go:865 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:796 +#: lxc/network_load_balancer.go:801 msgid "" "[:] " "[]" msgstr "" #: lxc/network_forward.go:377 lxc/network_forward.go:544 -#: lxc/network_load_balancer.go:381 lxc/network_load_balancer.go:547 +#: lxc/network_load_balancer.go:386 lxc/network_load_balancer.go:552 msgid "[:] " msgstr "" -#: lxc/network_forward.go:446 lxc/network_load_balancer.go:449 +#: lxc/network_forward.go:446 lxc/network_load_balancer.go:454 msgid "[:] =..." msgstr "" -#: lxc/network_load_balancer.go:961 +#: lxc/network_load_balancer.go:966 msgid "" "[:] " "[,...]" @@ -6792,7 +6787,7 @@ msgid "" " []" msgstr "" -#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1022 +#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1027 msgid "[:] [] []" msgstr "" @@ -6843,7 +6838,7 @@ msgid "[:]" msgstr "" #: lxc/storage.go:167 lxc/storage.go:218 lxc/storage.go:412 lxc/storage.go:759 -#: lxc/storage_bucket.go:449 +#: lxc/storage_bucket.go:454 msgid "[:]" msgstr "" @@ -6851,18 +6846,18 @@ msgstr "" msgid "[:] []" msgstr "" -#: lxc/storage_bucket.go:180 lxc/storage_bucket.go:242 -#: lxc/storage_bucket.go:622 lxc/storage_bucket.go:764 +#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:247 +#: lxc/storage_bucket.go:627 lxc/storage_bucket.go:769 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:375 lxc/storage_bucket.go:691 -#: lxc/storage_bucket.go:845 lxc/storage_bucket.go:923 -#: lxc/storage_bucket.go:987 lxc/storage_bucket.go:1122 +#: lxc/storage_bucket.go:380 lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:850 lxc/storage_bucket.go:928 +#: lxc/storage_bucket.go:992 lxc/storage_bucket.go:1127 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:528 +#: lxc/storage_bucket.go:533 msgid "[:] =..." msgstr "" @@ -7006,27 +7001,27 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:686 +#: lxc/network_zone.go:691 msgid "[:]" msgstr "" -#: lxc/network_zone.go:757 lxc/network_zone.go:1056 lxc/network_zone.go:1173 +#: lxc/network_zone.go:762 lxc/network_zone.go:1061 lxc/network_zone.go:1178 msgid "[:] " msgstr "" -#: lxc/network_zone.go:809 lxc/network_zone.go:1026 +#: lxc/network_zone.go:814 lxc/network_zone.go:1031 msgid "[:] " msgstr "" -#: lxc/network_zone.go:950 +#: lxc/network_zone.go:955 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:1238 lxc/network_zone.go:1284 +#: lxc/network_zone.go:1243 lxc/network_zone.go:1289 msgid "[:] " msgstr "" -#: lxc/network_zone.go:868 +#: lxc/network_zone.go:873 msgid "[:] [key=value...]" msgstr "" @@ -7050,7 +7045,7 @@ msgstr "" msgid "[:][] [...]" msgstr "" -#: lxc/remote.go:88 +#: lxc/remote.go:89 msgid "[] " msgstr "" @@ -7058,7 +7053,7 @@ msgstr "" msgid "[[:]]" msgstr "" -#: lxc/project.go:488 lxc/remote.go:722 +#: lxc/project.go:488 lxc/remote.go:723 msgid "current" msgstr "" @@ -7321,6 +7316,23 @@ msgid "" " Create a new OVN network called bar using baz as its uplink network" msgstr "" +#: lxc/network_load_balancer.go:239 +msgid "" +"lxc network load-balancer create n1 127.0.0.1\n" +"\n" +"lxc network load-balancer create n1 127.0.0.1 < config.yaml\n" +" Create network load-balancer for network n1 with configuration from " +"config.yaml" +msgstr "" + +#: lxc/network_zone.go:273 +msgid "" +"lxc network zone create z1\n" +"\n" +"lxc network zone create z1 < config.yaml\n" +" Create network zone z1 with configuration from config.yaml" +msgstr "" + #: lxc/operation.go:195 msgid "" "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n" @@ -7391,26 +7403,36 @@ msgid "" " Restore the snapshot." msgstr "" -#: lxc/storage_bucket.go:245 +#: lxc/storage_bucket.go:84 +msgid "" +"lxc storage bucket create p1 b01\n" +"\tCreate a new storage bucket name b01 in storage pool p1\n" +"\n" +"lxc storage bucket create p1 b01 < config.yaml\n" +"\tCreate a new storage bucket name b01 in storage pool p1 using the content " +"of config.yaml" +msgstr "" + +#: lxc/storage_bucket.go:250 msgid "" "lxc storage bucket edit [:] < bucket.yaml\n" " Update a storage bucket using the content of bucket.yaml." msgstr "" -#: lxc/storage_bucket.go:990 +#: lxc/storage_bucket.go:995 msgid "" "lxc storage bucket edit [:] < key.yaml\n" " Update a storage bucket key using the content of key.yaml." msgstr "" -#: lxc/storage_bucket.go:1125 +#: lxc/storage_bucket.go:1130 msgid "" "lxc storage bucket key show default data foo\n" " Will show the properties of a bucket key called \"foo\" for a bucket " "called \"data\" in the \"default\" pool." msgstr "" -#: lxc/storage_bucket.go:625 +#: lxc/storage_bucket.go:630 msgid "" "lxc storage bucket show default data\n" " Will show the properties of a bucket called \"data\" in the \"default\" " @@ -7429,7 +7451,7 @@ msgid "" "\t\tCreate a new custom volume using backup0.tar.gz as the source." msgstr "" -#: lxc/remote.go:459 +#: lxc/remote.go:460 msgid "n" msgstr "" @@ -7441,7 +7463,7 @@ msgstr "" msgid "no" msgstr "" -#: lxc/remote.go:452 +#: lxc/remote.go:453 msgid "ok (y/n/[fingerprint])?" msgstr "" @@ -7478,7 +7500,7 @@ msgstr "" msgid "used by" msgstr "" -#: lxc/remote.go:461 +#: lxc/remote.go:462 msgid "y" msgstr "" diff --git a/po/tr.po b/po/tr.po index 8b1fbe1ff829..5b547339f3ff 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-08-20 09:31+0100\n" +"POT-Creation-Date: 2024-08-30 09:27+0100\n" "PO-Revision-Date: 2022-03-10 15:07+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Turkish " msgstr "" -#: lxc/remote.go:825 lxc/remote.go:882 +#: lxc/remote.go:826 lxc/remote.go:883 msgid "" msgstr "" -#: lxc/remote.go:922 +#: lxc/remote.go:923 msgid " " msgstr "" -#: lxc/remote.go:752 +#: lxc/remote.go:753 msgid " " msgstr "" @@ -556,7 +556,7 @@ msgstr "" msgid "ARCHITECTURE" msgstr "" -#: lxc/remote.go:734 +#: lxc/remote.go:735 msgid "AUTH TYPE" msgstr "" @@ -564,15 +564,15 @@ msgstr "" msgid "AUTHENTICATION METHOD" msgstr "" -#: lxc/remote.go:100 +#: lxc/remote.go:101 msgid "Accept certificate" msgstr "" -#: lxc/storage_bucket.go:852 +#: lxc/storage_bucket.go:857 msgid "Access key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:908 +#: lxc/storage_bucket.go:913 #, c-format msgid "Access key: %s" msgstr "" @@ -606,19 +606,19 @@ msgstr "" msgid "Add a group to an identity provider group" msgstr "" -#: lxc/network_zone.go:1239 +#: lxc/network_zone.go:1244 msgid "Add a network zone record entry" msgstr "" -#: lxc/network_load_balancer.go:798 +#: lxc/network_load_balancer.go:803 msgid "Add backend to a load balancer" msgstr "" -#: lxc/network_load_balancer.go:797 +#: lxc/network_load_balancer.go:802 msgid "Add backends to a load balancer" msgstr "" -#: lxc/network_zone.go:1240 +#: lxc/network_zone.go:1245 msgid "Add entries to a network zone record" msgstr "" @@ -634,11 +634,11 @@ msgstr "" msgid "Add new aliases" msgstr "" -#: lxc/remote.go:89 +#: lxc/remote.go:90 msgid "Add new remote servers" msgstr "" -#: lxc/remote.go:90 +#: lxc/remote.go:91 msgid "" "Add new remote servers\n" "\n" @@ -679,7 +679,7 @@ msgstr "" msgid "Add ports to a forward" msgstr "" -#: lxc/network_load_balancer.go:962 lxc/network_load_balancer.go:963 +#: lxc/network_load_balancer.go:967 lxc/network_load_balancer.go:968 msgid "Add ports to a load balancer" msgstr "" @@ -700,17 +700,17 @@ msgstr "" msgid "Address: %s" msgstr "" -#: lxc/storage_bucket.go:164 +#: lxc/storage_bucket.go:169 #, c-format msgid "Admin access key: %s" msgstr "" -#: lxc/remote.go:566 +#: lxc/remote.go:567 #, c-format msgid "Admin password (or token) for %s:" msgstr "" -#: lxc/storage_bucket.go:165 +#: lxc/storage_bucket.go:170 #, c-format msgid "Admin secret key: %s" msgstr "" @@ -742,7 +742,7 @@ msgstr "" msgid "All projects" msgstr "" -#: lxc/remote.go:181 +#: lxc/remote.go:182 msgid "All server addresses are unavailable" msgstr "" @@ -765,7 +765,7 @@ msgstr "" msgid "Are you sure you want to %s cluster member %q? (yes/no) [default=no]: " msgstr "" -#: lxc/console.go:383 +#: lxc/console.go:388 msgid "As neither could be found, the raw SPICE socket can be found at:" msgstr "" @@ -813,7 +813,7 @@ msgid "" "as well as retrieve past log entries from it." msgstr "" -#: lxc/remote.go:548 +#: lxc/remote.go:549 #, c-format msgid "Authentication type '%s' not supported by server" msgstr "" @@ -832,11 +832,11 @@ msgstr "" msgid "Auto update: %s" msgstr "" -#: lxc/network_forward.go:240 lxc/network_load_balancer.go:242 +#: lxc/network_forward.go:240 lxc/network_load_balancer.go:247 msgid "Auto-allocate an IPv4 or IPv6 listen address. One of 'ipv4', 'ipv6'." msgstr "" -#: lxc/remote.go:136 +#: lxc/remote.go:137 msgid "Available projects:" msgstr "" @@ -868,8 +868,8 @@ msgid "Bad device override syntax, expecting ,=: %s" msgstr "" #: lxc/network.go:333 lxc/network_acl.go:382 lxc/network_forward.go:293 -#: lxc/network_load_balancer.go:296 lxc/network_peer.go:280 -#: lxc/network_zone.go:324 lxc/network_zone.go:922 lxc/storage_bucket.go:136 +#: lxc/network_load_balancer.go:301 lxc/network_peer.go:280 +#: lxc/network_zone.go:329 lxc/network_zone.go:927 lxc/storage_bucket.go:141 #, c-format msgid "Bad key/value pair: %s" msgstr "" @@ -991,7 +991,7 @@ msgstr "" msgid "Can't read from stdin: %w" msgstr "" -#: lxc/remote.go:861 +#: lxc/remote.go:862 msgid "Can't remove the default remote" msgstr "" @@ -1057,15 +1057,14 @@ msgstr "" msgid "Certificate add token for %s deleted" msgstr "" -#: lxc/remote.go:218 -#, c-format -msgid "" -"Certificate fingerprint mismatch between certificate token and server %q" +#: lxc/remote.go:452 +msgid "Certificate fingerprint" msgstr "" -#: lxc/remote.go:451 +#: lxc/remote.go:219 #, c-format -msgid "Certificate fingerprint: %s" +msgid "" +"Certificate fingerprint mismatch between certificate token and server %q" msgstr "" #: lxc/network.go:893 @@ -1077,7 +1076,7 @@ msgstr "" msgid "Client %s certificate add token:" msgstr "" -#: lxc/remote.go:603 +#: lxc/remote.go:604 msgid "Client certificate now trusted by server:" msgstr "" @@ -1139,18 +1138,18 @@ msgstr "" #: lxc/network_forward.go:456 lxc/network_forward.go:579 #: lxc/network_forward.go:721 lxc/network_forward.go:798 #: lxc/network_forward.go:864 lxc/network_load_balancer.go:176 -#: lxc/network_load_balancer.go:241 lxc/network_load_balancer.go:459 -#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:725 -#: lxc/network_load_balancer.go:801 lxc/network_load_balancer.go:865 -#: lxc/network_load_balancer.go:966 lxc/network_load_balancer.go:1028 +#: lxc/network_load_balancer.go:246 lxc/network_load_balancer.go:464 +#: lxc/network_load_balancer.go:587 lxc/network_load_balancer.go:730 +#: lxc/network_load_balancer.go:806 lxc/network_load_balancer.go:870 +#: lxc/network_load_balancer.go:971 lxc/network_load_balancer.go:1033 #: lxc/storage.go:99 lxc/storage.go:347 lxc/storage.go:418 lxc/storage.go:671 -#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:85 -#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:248 -#: lxc/storage_bucket.go:379 lxc/storage_bucket.go:536 -#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:695 -#: lxc/storage_bucket.go:770 lxc/storage_bucket.go:850 -#: lxc/storage_bucket.go:928 lxc/storage_bucket.go:993 -#: lxc/storage_bucket.go:1129 lxc/storage_volume.go:358 +#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:90 +#: lxc/storage_bucket.go:190 lxc/storage_bucket.go:253 +#: lxc/storage_bucket.go:384 lxc/storage_bucket.go:541 +#: lxc/storage_bucket.go:634 lxc/storage_bucket.go:700 +#: lxc/storage_bucket.go:775 lxc/storage_bucket.go:855 +#: lxc/storage_bucket.go:933 lxc/storage_bucket.go:998 +#: lxc/storage_bucket.go:1134 lxc/storage_volume.go:358 #: lxc/storage_volume.go:560 lxc/storage_volume.go:639 #: lxc/storage_volume.go:883 lxc/storage_volume.go:1097 #: lxc/storage_volume.go:1210 lxc/storage_volume.go:1678 @@ -1178,11 +1177,11 @@ msgstr "" msgid "Columns" msgstr "" -#: lxc/main.go:81 +#: lxc/main.go:82 msgid "Command line client for LXD" msgstr "" -#: lxc/main.go:82 +#: lxc/main.go:83 msgid "" "Command line client for LXD\n" "\n" @@ -1214,19 +1213,15 @@ msgstr "" #: lxc/config.go:347 lxc/config.go:1277 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/network_load_balancer.go:694 lxc/network_peer.go:610 +#: lxc/network_zone.go:556 lxc/network_zone.go:1148 lxc/profile.go:538 +#: lxc/project.go:315 lxc/storage.go:310 lxc/storage_bucket.go:348 +#: lxc/storage_bucket.go:1097 lxc/storage_volume.go:1016 #: lxc/storage_volume.go:1048 #, c-format msgid "Config parsing error: %s" msgstr "" -#: lxc/console.go:140 -msgid "Console log:" -msgstr "" - #: lxc/storage_volume.go:561 msgid "Content type, block or filesystem" msgstr "" @@ -1329,12 +1324,12 @@ msgstr "" msgid "Cores:" msgstr "" -#: lxc/remote.go:486 +#: lxc/remote.go:487 #, c-format msgid "Could not close server cert file %q: %w" msgstr "" -#: lxc/remote.go:224 lxc/remote.go:470 +#: lxc/remote.go:225 lxc/remote.go:471 msgid "Could not create server cert dir" msgstr "" @@ -1373,12 +1368,12 @@ msgstr "" msgid "Could not write new remote certificate for remote '%s' with error: %v" msgstr "" -#: lxc/remote.go:481 +#: lxc/remote.go:482 #, c-format msgid "Could not write server cert file %q: %w" msgstr "" -#: lxc/network_zone.go:1327 +#: lxc/network_zone.go:1332 msgid "Couldn't find a matching entry" msgstr "" @@ -1430,7 +1425,7 @@ msgstr "" msgid "Create instances from images" msgstr "" -#: lxc/storage_bucket.go:846 lxc/storage_bucket.go:847 +#: lxc/storage_bucket.go:851 lxc/storage_bucket.go:852 msgid "Create key for a storage bucket" msgstr "" @@ -1462,11 +1457,11 @@ msgstr "" msgid "Create new network peering" msgstr "" -#: lxc/network_zone.go:869 lxc/network_zone.go:870 +#: lxc/network_zone.go:874 lxc/network_zone.go:875 msgid "Create new network zone record" msgstr "" -#: lxc/network_zone.go:270 lxc/network_zone.go:271 +#: lxc/network_zone.go:271 lxc/network_zone.go:272 msgid "Create new network zones" msgstr "" @@ -1517,9 +1512,9 @@ msgstr "" #: 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/network_zone.go:140 lxc/network_zone.go:747 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_bucket.go:512 lxc/storage_bucket.go:832 #: lxc/storage_volume.go:1562 msgid "DESCRIPTION" msgstr "" @@ -1584,7 +1579,7 @@ msgstr "" msgid "Delete instances and snapshots" msgstr "" -#: lxc/storage_bucket.go:924 lxc/storage_bucket.go:925 +#: lxc/storage_bucket.go:929 lxc/storage_bucket.go:930 msgid "Delete key from a storage bucket" msgstr "" @@ -1596,7 +1591,7 @@ msgstr "" msgid "Delete network forwards" msgstr "" -#: lxc/network_load_balancer.go:721 lxc/network_load_balancer.go:722 +#: lxc/network_load_balancer.go:726 lxc/network_load_balancer.go:727 msgid "Delete network load balancers" msgstr "" @@ -1604,11 +1599,11 @@ msgstr "" msgid "Delete network peerings" msgstr "" -#: lxc/network_zone.go:1175 lxc/network_zone.go:1176 +#: lxc/network_zone.go:1180 lxc/network_zone.go:1181 msgid "Delete network zone record" msgstr "" -#: lxc/network_zone.go:583 lxc/network_zone.go:584 +#: lxc/network_zone.go:588 lxc/network_zone.go:589 msgid "Delete network zones" msgstr "" @@ -1624,7 +1619,7 @@ msgstr "" msgid "Delete projects" msgstr "" -#: lxc/storage_bucket.go:182 lxc/storage_bucket.go:183 +#: lxc/storage_bucket.go:187 lxc/storage_bucket.go:188 msgid "Delete storage buckets" msgstr "" @@ -1680,7 +1675,7 @@ msgstr "" #: 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/info.go:32 lxc/init.go:43 lxc/launch.go:24 lxc/list.go:48 lxc/main.go:83 #: 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 @@ -1699,22 +1694,22 @@ msgstr "" #: 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_load_balancer.go:238 lxc/network_load_balancer.go:388 +#: lxc/network_load_balancer.go:456 lxc/network_load_balancer.go:554 +#: lxc/network_load_balancer.go:584 lxc/network_load_balancer.go:727 +#: lxc/network_load_balancer.go:788 lxc/network_load_balancer.go:803 +#: lxc/network_load_balancer.go:867 lxc/network_load_balancer.go:953 +#: lxc/network_load_balancer.go:968 lxc/network_load_balancer.go:1029 #: 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/network_zone.go:29 lxc/network_zone.go:86 lxc/network_zone.go:157 +#: lxc/network_zone.go:212 lxc/network_zone.go:272 lxc/network_zone.go:359 +#: lxc/network_zone.go:439 lxc/network_zone.go:470 lxc/network_zone.go:589 +#: lxc/network_zone.go:637 lxc/network_zone.go:694 lxc/network_zone.go:764 +#: lxc/network_zone.go:816 lxc/network_zone.go:875 lxc/network_zone.go:957 +#: lxc/network_zone.go:1033 lxc/network_zone.go:1063 lxc/network_zone.go:1181 +#: lxc/network_zone.go:1230 lxc/network_zone.go:1245 lxc/network_zone.go:1291 #: 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 @@ -1723,19 +1718,19 @@ msgstr "" #: 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:631 lxc/remote.go:669 lxc/remote.go:755 lxc/remote.go:828 -#: lxc/remote.go:884 lxc/remote.go:924 lxc/rename.go:21 lxc/restore.go:24 +#: lxc/query.go:34 lxc/rebuild.go:27 lxc/remote.go:35 lxc/remote.go:91 +#: lxc/remote.go:632 lxc/remote.go:670 lxc/remote.go:756 lxc/remote.go:829 +#: lxc/remote.go:885 lxc/remote.go:925 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_bucket.go:29 lxc/storage_bucket.go:83 lxc/storage_bucket.go:188 +#: lxc/storage_bucket.go:249 lxc/storage_bucket.go:382 +#: lxc/storage_bucket.go:458 lxc/storage_bucket.go:535 +#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:698 +#: lxc/storage_bucket.go:732 lxc/storage_bucket.go:773 +#: lxc/storage_bucket.go:852 lxc/storage_bucket.go:930 +#: lxc/storage_bucket.go:994 lxc/storage_bucket.go:1129 #: 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 @@ -1871,7 +1866,7 @@ msgstr "" msgid "Don't require user confirmation for using --force" msgstr "" -#: lxc/main.go:99 +#: lxc/main.go:100 msgid "Don't show progress information" msgstr "" @@ -1884,7 +1879,7 @@ msgstr "" msgid "Driver: %v (%v)" msgstr "" -#: lxc/network_zone.go:743 +#: lxc/network_zone.go:748 msgid "ENTRIES" msgstr "" @@ -1962,7 +1957,7 @@ msgstr "" msgid "Edit network forward configurations as YAML" msgstr "" -#: lxc/network_load_balancer.go:578 lxc/network_load_balancer.go:579 +#: lxc/network_load_balancer.go:583 lxc/network_load_balancer.go:584 msgid "Edit network load balancer configurations as YAML" msgstr "" @@ -1970,11 +1965,11 @@ msgstr "" msgid "Edit network peer configurations as YAML" msgstr "" -#: lxc/network_zone.go:464 lxc/network_zone.go:465 +#: lxc/network_zone.go:469 lxc/network_zone.go:470 msgid "Edit network zone configurations as YAML" msgstr "" -#: lxc/network_zone.go:1057 lxc/network_zone.go:1058 +#: lxc/network_zone.go:1062 lxc/network_zone.go:1063 msgid "Edit network zone record configurations as YAML" msgstr "" @@ -1986,11 +1981,11 @@ msgstr "" msgid "Edit project configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:243 lxc/storage_bucket.go:244 +#: lxc/storage_bucket.go:248 lxc/storage_bucket.go:249 msgid "Edit storage bucket configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:988 lxc/storage_bucket.go:989 +#: lxc/storage_bucket.go:993 lxc/storage_bucket.go:994 msgid "Edit storage bucket key as YAML" msgstr "" @@ -2031,7 +2026,7 @@ msgid "" " for the address if not yet set." msgstr "" -#: lxc/network_zone.go:1242 +#: lxc/network_zone.go:1247 msgid "Entry TTL" msgstr "" @@ -2060,9 +2055,9 @@ msgstr "" #: lxc/cluster.go:414 lxc/config.go:624 lxc/config.go:656 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/network_load_balancer.go:527 lxc/network_peer.go:463 +#: lxc/network_zone.go:414 lxc/network_zone.go:1008 lxc/profile.go:876 +#: lxc/project.go:634 lxc/storage.go:727 lxc/storage_bucket.go:602 #: lxc/storage_volume.go:1947 lxc/storage_volume.go:1985 #, c-format msgid "Error setting properties: %v" @@ -2074,10 +2069,10 @@ 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/network_forward.go:513 lxc/network_load_balancer.go:521 +#: lxc/network_peer.go:457 lxc/network_zone.go:408 lxc/network_zone.go:1002 #: lxc/profile.go:870 lxc/project.go:628 lxc/storage.go:721 -#: lxc/storage_bucket.go:591 lxc/storage_volume.go:1941 +#: lxc/storage_bucket.go:596 lxc/storage_volume.go:1941 #: lxc/storage_volume.go:1979 #, c-format msgid "Error unsetting property: %v" @@ -2263,7 +2258,7 @@ msgstr "" msgid "Failed parsing SSH host key: %w" msgstr "" -#: lxc/console.go:361 +#: lxc/console.go:366 #, c-format msgid "Failed starting command: %w" msgstr "" @@ -2278,11 +2273,11 @@ msgstr "" msgid "Failed to accept incoming connection: %w" msgstr "" -#: lxc/remote.go:190 +#: lxc/remote.go:191 msgid "Failed to add remote" msgstr "" -#: lxc/remote.go:241 +#: lxc/remote.go:242 #, c-format msgid "Failed to close server cert file %q: %w" msgstr "" @@ -2292,7 +2287,7 @@ msgstr "" msgid "Failed to connect to cluster member: %w" msgstr "" -#: lxc/remote.go:231 +#: lxc/remote.go:232 #, c-format msgid "Failed to create %q: %w" msgstr "" @@ -2302,12 +2297,12 @@ msgstr "" msgid "Failed to create alias %s: %w" msgstr "" -#: lxc/remote.go:256 +#: lxc/remote.go:257 #, c-format msgid "Failed to create certificate: %w" msgstr "" -#: lxc/remote.go:263 +#: lxc/remote.go:264 #, c-format msgid "Failed to find project: %w" msgstr "" @@ -2332,7 +2327,7 @@ msgstr "" msgid "Failed to walk path for %s: %s" msgstr "" -#: lxc/remote.go:236 +#: lxc/remote.go:237 #, c-format msgid "Failed to write server cert file %q: %w" msgstr "" @@ -2341,7 +2336,7 @@ msgstr "" msgid "Fast mode (same as --columns=nsacPt)" msgstr "" -#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:115 +#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:116 #: lxc/operation.go:136 msgid "Filtering isn't supported yet" msgstr "" @@ -2379,7 +2374,7 @@ msgstr "" msgid "Force the removal of running instances" msgstr "" -#: lxc/main.go:95 +#: lxc/main.go:96 msgid "Force using the local unix socket" msgstr "" @@ -2413,10 +2408,10 @@ msgstr "" #: 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/network_peer.go:84 lxc/network_zone.go:89 lxc/network_zone.go:697 #: lxc/operation.go:108 lxc/profile.go:637 lxc/project.go:412 -#: lxc/project.go:804 lxc/remote.go:673 lxc/storage.go:588 -#: lxc/storage_bucket.go:454 lxc/storage_bucket.go:769 +#: lxc/project.go:804 lxc/remote.go:674 lxc/storage.go:588 +#: lxc/storage_bucket.go:459 lxc/storage_bucket.go:774 #: lxc/storage_volume.go:1446 lxc/warning.go:93 msgid "Format (csv|json|table|yaml|compact)" msgstr "" @@ -2453,7 +2448,7 @@ msgstr "" msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)" msgstr "" -#: lxc/remote.go:737 +#: lxc/remote.go:738 msgid "GLOBAL" msgstr "" @@ -2473,7 +2468,7 @@ msgstr "" msgid "Generate manpages for all commands" msgstr "" -#: lxc/remote.go:159 lxc/remote.go:397 +#: lxc/remote.go:160 lxc/remote.go:398 msgid "Generating a client certificate. This may take a minute..." msgstr "" @@ -2505,7 +2500,7 @@ msgstr "" msgid "Get the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:386 +#: lxc/network_load_balancer.go:391 msgid "Get the key as a network load balancer property" msgstr "" @@ -2517,11 +2512,11 @@ msgstr "" msgid "Get the key as a network property" msgstr "" -#: lxc/network_zone.go:214 +#: lxc/network_zone.go:215 msgid "Get the key as a network zone property" msgstr "" -#: lxc/network_zone.go:814 +#: lxc/network_zone.go:819 msgid "Get the key as a network zone record property" msgstr "" @@ -2533,7 +2528,7 @@ msgstr "" msgid "Get the key as a project property" msgstr "" -#: lxc/storage_bucket.go:380 +#: lxc/storage_bucket.go:385 msgid "Get the key as a storage bucket property" msgstr "" @@ -2573,7 +2568,7 @@ msgstr "" msgid "Get values for network forward configuration keys" msgstr "" -#: lxc/network_load_balancer.go:382 lxc/network_load_balancer.go:383 +#: lxc/network_load_balancer.go:387 lxc/network_load_balancer.go:388 msgid "Get values for network load balancer configuration keys" msgstr "" @@ -2581,11 +2576,11 @@ msgstr "" msgid "Get values for network peer configuration keys" msgstr "" -#: lxc/network_zone.go:210 lxc/network_zone.go:211 +#: lxc/network_zone.go:211 lxc/network_zone.go:212 msgid "Get values for network zone configuration keys" msgstr "" -#: lxc/network_zone.go:810 lxc/network_zone.go:811 +#: lxc/network_zone.go:815 lxc/network_zone.go:816 msgid "Get values for network zone record configuration keys" msgstr "" @@ -2597,7 +2592,7 @@ msgstr "" msgid "Get values for project configuration keys" msgstr "" -#: lxc/storage_bucket.go:376 lxc/storage_bucket.go:377 +#: lxc/storage_bucket.go:381 lxc/storage_bucket.go:382 msgid "Get values for storage bucket configuration keys" msgstr "" @@ -2737,7 +2732,7 @@ msgstr "" msgid "If the snapshot name already exists, delete and create a new one" msgstr "" -#: lxc/main.go:398 +#: lxc/main.go:400 msgid "" "If this is your first time running LXD on this machine, you should also run: " "lxd init" @@ -2894,7 +2889,7 @@ msgstr "" msgid "Instance type" msgstr "" -#: lxc/remote.go:349 +#: lxc/remote.go:350 #, c-format msgid "Invalid URL scheme \"%s\" in \"%s\"" msgstr "" @@ -2966,7 +2961,7 @@ msgstr "" msgid "Invalid new snapshot name, parent volume must be the same as source" msgstr "" -#: lxc/main.go:498 +#: lxc/main.go:502 msgid "Invalid number of arguments" msgstr "" @@ -2975,7 +2970,7 @@ msgstr "" msgid "Invalid path %s" msgstr "" -#: lxc/remote.go:338 +#: lxc/remote.go:339 #, c-format msgid "Invalid protocol: %s" msgstr "" @@ -3023,7 +3018,7 @@ msgstr "" #: lxc/list.go:597 lxc/network.go:1059 lxc/network_forward.go:155 #: lxc/network_load_balancer.go:157 lxc/operation.go:177 -#: lxc/storage_bucket.go:511 lxc/storage_volume.go:1569 lxc/warning.go:220 +#: lxc/storage_bucket.go:516 lxc/storage_volume.go:1569 lxc/warning.go:220 msgid "LOCATION" msgstr "" @@ -3031,7 +3026,7 @@ msgstr "" msgid "LXD - Command line client" msgstr "" -#: lxc/console.go:382 +#: lxc/console.go:387 msgid "LXD automatically uses either spicy or remote-viewer when present." msgstr "" @@ -3121,15 +3116,15 @@ msgstr "" msgid "List available network peers" msgstr "" -#: lxc/network_zone.go:85 +#: lxc/network_zone.go:86 msgid "List available network zone" msgstr "" -#: lxc/network_zone.go:688 lxc/network_zone.go:689 +#: lxc/network_zone.go:693 lxc/network_zone.go:694 msgid "List available network zone records" msgstr "" -#: lxc/network_zone.go:84 +#: lxc/network_zone.go:85 msgid "List available network zoneS" msgstr "" @@ -3318,11 +3313,11 @@ msgstr "" msgid "List projects" msgstr "" -#: lxc/storage_bucket.go:766 lxc/storage_bucket.go:768 +#: lxc/storage_bucket.go:771 lxc/storage_bucket.go:773 msgid "List storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:451 lxc/storage_bucket.go:453 +#: lxc/storage_bucket.go:456 lxc/storage_bucket.go:458 msgid "List storage buckets" msgstr "" @@ -3350,7 +3345,7 @@ msgid "" " U - Current disk usage" msgstr "" -#: lxc/remote.go:668 lxc/remote.go:669 +#: lxc/remote.go:669 lxc/remote.go:670 msgid "List the available remotes" msgstr "" @@ -3577,11 +3572,11 @@ msgstr "" msgid "Manage network forwards" msgstr "" -#: lxc/network_load_balancer.go:782 lxc/network_load_balancer.go:783 +#: lxc/network_load_balancer.go:787 lxc/network_load_balancer.go:788 msgid "Manage network load balancer backends" msgstr "" -#: lxc/network_load_balancer.go:947 lxc/network_load_balancer.go:948 +#: lxc/network_load_balancer.go:952 lxc/network_load_balancer.go:953 msgid "Manage network load balancer ports" msgstr "" @@ -3593,15 +3588,15 @@ msgstr "" msgid "Manage network peerings" msgstr "" -#: lxc/network_zone.go:1224 lxc/network_zone.go:1225 +#: lxc/network_zone.go:1229 lxc/network_zone.go:1230 msgid "Manage network zone record entries" msgstr "" -#: lxc/network_zone.go:631 lxc/network_zone.go:632 +#: lxc/network_zone.go:636 lxc/network_zone.go:637 msgid "Manage network zone records" msgstr "" -#: lxc/network_zone.go:27 lxc/network_zone.go:28 +#: lxc/network_zone.go:28 lxc/network_zone.go:29 msgid "Manage network zones" msgstr "" @@ -3617,11 +3612,11 @@ msgstr "" msgid "Manage projects" msgstr "" -#: lxc/storage_bucket.go:726 +#: lxc/storage_bucket.go:731 msgid "Manage storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:727 +#: lxc/storage_bucket.go:732 msgid "Manage storage bucket keys." msgstr "" @@ -3649,7 +3644,7 @@ msgid "" "\"custom\" (user created) volumes." msgstr "" -#: lxc/remote.go:33 lxc/remote.go:34 +#: lxc/remote.go:34 lxc/remote.go:35 msgid "Manage the list of remote servers" msgstr "" @@ -3730,12 +3725,12 @@ msgid "" "Minimum level for log messages (only available when using pretty format)" msgstr "" -#: lxc/storage_bucket.go:111 lxc/storage_bucket.go:211 -#: lxc/storage_bucket.go:287 lxc/storage_bucket.go:406 -#: lxc/storage_bucket.go:563 lxc/storage_bucket.go:655 -#: lxc/storage_bucket.go:797 lxc/storage_bucket.go:878 -#: lxc/storage_bucket.go:953 lxc/storage_bucket.go:1032 -#: lxc/storage_bucket.go:1155 +#: lxc/storage_bucket.go:116 lxc/storage_bucket.go:216 +#: lxc/storage_bucket.go:292 lxc/storage_bucket.go:411 +#: lxc/storage_bucket.go:568 lxc/storage_bucket.go:660 +#: lxc/storage_bucket.go:802 lxc/storage_bucket.go:883 +#: lxc/storage_bucket.go:958 lxc/storage_bucket.go:1037 +#: lxc/storage_bucket.go:1160 msgid "Missing bucket name" msgstr "" @@ -3779,8 +3774,8 @@ msgstr "" msgid "Missing instance name" msgstr "" -#: lxc/storage_bucket.go:882 lxc/storage_bucket.go:957 -#: lxc/storage_bucket.go:1036 lxc/storage_bucket.go:1159 +#: lxc/storage_bucket.go:887 lxc/storage_bucket.go:962 +#: lxc/storage_bucket.go:1041 lxc/storage_bucket.go:1164 msgid "Missing key name" msgstr "" @@ -3788,10 +3783,10 @@ msgstr "" #: lxc/network_forward.go:481 lxc/network_forward.go:627 #: lxc/network_forward.go:746 lxc/network_forward.go:823 #: lxc/network_forward.go:889 lxc/network_load_balancer.go:201 -#: lxc/network_load_balancer.go:411 lxc/network_load_balancer.go:484 -#: lxc/network_load_balancer.go:630 lxc/network_load_balancer.go:750 -#: lxc/network_load_balancer.go:826 lxc/network_load_balancer.go:890 -#: lxc/network_load_balancer.go:991 lxc/network_load_balancer.go:1053 +#: lxc/network_load_balancer.go:416 lxc/network_load_balancer.go:489 +#: lxc/network_load_balancer.go:635 lxc/network_load_balancer.go:755 +#: lxc/network_load_balancer.go:831 lxc/network_load_balancer.go:895 +#: lxc/network_load_balancer.go:996 lxc/network_load_balancer.go:1058 msgid "Missing listen address" msgstr "" @@ -3816,26 +3811,26 @@ msgstr "" #: lxc/network_forward.go:477 lxc/network_forward.go:623 #: lxc/network_forward.go:742 lxc/network_forward.go:819 #: lxc/network_forward.go:885 lxc/network_load_balancer.go:123 -#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:261 -#: lxc/network_load_balancer.go:407 lxc/network_load_balancer.go:480 -#: lxc/network_load_balancer.go:626 lxc/network_load_balancer.go:746 -#: lxc/network_load_balancer.go:822 lxc/network_load_balancer.go:886 -#: lxc/network_load_balancer.go:987 lxc/network_load_balancer.go:1049 +#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:266 +#: lxc/network_load_balancer.go:412 lxc/network_load_balancer.go:485 +#: lxc/network_load_balancer.go:631 lxc/network_load_balancer.go:751 +#: lxc/network_load_balancer.go:827 lxc/network_load_balancer.go:891 +#: lxc/network_load_balancer.go:992 lxc/network_load_balancer.go:1054 #: lxc/network_peer.go:110 lxc/network_peer.go:180 lxc/network_peer.go:237 #: lxc/network_peer.go:355 lxc/network_peer.go:426 lxc/network_peer.go:556 #: lxc/network_peer.go:665 msgid "Missing network name" msgstr "" -#: lxc/network_zone.go:178 lxc/network_zone.go:234 lxc/network_zone.go:294 -#: lxc/network_zone.go:382 lxc/network_zone.go:503 lxc/network_zone.go:606 -#: lxc/network_zone.go:712 lxc/network_zone.go:780 lxc/network_zone.go:892 -#: lxc/network_zone.go:976 lxc/network_zone.go:1197 lxc/network_zone.go:1262 -#: lxc/network_zone.go:1307 +#: lxc/network_zone.go:179 lxc/network_zone.go:235 lxc/network_zone.go:299 +#: lxc/network_zone.go:387 lxc/network_zone.go:508 lxc/network_zone.go:611 +#: lxc/network_zone.go:717 lxc/network_zone.go:785 lxc/network_zone.go:897 +#: lxc/network_zone.go:981 lxc/network_zone.go:1202 lxc/network_zone.go:1267 +#: lxc/network_zone.go:1312 msgid "Missing network zone name" msgstr "" -#: lxc/network_zone.go:833 lxc/network_zone.go:1095 +#: lxc/network_zone.go:838 lxc/network_zone.go:1100 msgid "Missing network zone record name" msgstr "" @@ -3845,13 +3840,13 @@ msgid "Missing peer name" msgstr "" #: lxc/storage.go:194 lxc/storage.go:264 lxc/storage.go:370 lxc/storage.go:440 -#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:107 -#: lxc/storage_bucket.go:207 lxc/storage_bucket.go:283 -#: lxc/storage_bucket.go:402 lxc/storage_bucket.go:477 -#: lxc/storage_bucket.go:559 lxc/storage_bucket.go:651 -#: lxc/storage_bucket.go:793 lxc/storage_bucket.go:874 -#: lxc/storage_bucket.go:949 lxc/storage_bucket.go:1028 -#: lxc/storage_bucket.go:1151 lxc/storage_volume.go:189 +#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:112 +#: lxc/storage_bucket.go:212 lxc/storage_bucket.go:288 +#: lxc/storage_bucket.go:407 lxc/storage_bucket.go:482 +#: lxc/storage_bucket.go:564 lxc/storage_bucket.go:656 +#: lxc/storage_bucket.go:798 lxc/storage_bucket.go:879 +#: lxc/storage_bucket.go:954 lxc/storage_bucket.go:1033 +#: lxc/storage_bucket.go:1156 lxc/storage_volume.go:189 #: lxc/storage_volume.go:287 lxc/storage_volume.go:583 #: lxc/storage_volume.go:660 lxc/storage_volume.go:735 #: lxc/storage_volume.go:817 lxc/storage_volume.go:919 @@ -3971,7 +3966,7 @@ msgstr "" msgid "Moving the storage volume: %s" msgstr "" -#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1097 +#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1102 msgid "Multiple ports match. Use --force to remove them all" msgstr "" @@ -3990,10 +3985,10 @@ 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:677 lxc/project.go:498 -#: lxc/remote.go:731 lxc/storage.go:638 lxc/storage_bucket.go:506 -#: lxc/storage_bucket.go:826 lxc/storage_volume.go:1561 +#: lxc/network_acl.go:147 lxc/network_peer.go:139 lxc/network_zone.go:139 +#: lxc/network_zone.go:746 lxc/profile.go:677 lxc/project.go:498 +#: lxc/remote.go:732 lxc/storage.go:638 lxc/storage_bucket.go:511 +#: lxc/storage_bucket.go:831 lxc/storage_volume.go:1561 msgid "NAME" msgstr "" @@ -4019,7 +4014,7 @@ msgstr "" #: lxc/network.go:957 lxc/operation.go:154 lxc/project.go:456 #: lxc/project.go:461 lxc/project.go:466 lxc/project.go:471 lxc/project.go:476 -#: lxc/project.go:481 lxc/remote.go:691 lxc/remote.go:696 lxc/remote.go:701 +#: lxc/project.go:481 lxc/remote.go:692 lxc/remote.go:697 lxc/remote.go:702 msgid "NO" msgstr "" @@ -4046,7 +4041,7 @@ msgstr "" msgid "Name" msgstr "" -#: lxc/remote.go:141 +#: lxc/remote.go:142 msgid "Name of the project to use for this remote:" msgstr "" @@ -4095,12 +4090,12 @@ msgstr "" msgid "Network ACL %s renamed to %s" msgstr "" -#: lxc/network_zone.go:336 +#: lxc/network_zone.go:341 #, c-format msgid "Network Zone %s created" msgstr "" -#: lxc/network_zone.go:616 +#: lxc/network_zone.go:621 #, c-format msgid "Network Zone %s deleted" msgstr "" @@ -4115,12 +4110,12 @@ msgstr "" msgid "Network forward %s deleted" msgstr "" -#: lxc/network_load_balancer.go:365 +#: lxc/network_load_balancer.go:370 #, c-format msgid "Network load balancer %s created" msgstr "" -#: lxc/network_load_balancer.go:767 +#: lxc/network_load_balancer.go:772 #, c-format msgid "Network load balancer %s deleted" msgstr "" @@ -4158,12 +4153,12 @@ msgstr "" msgid "Network usage:" msgstr "" -#: lxc/network_zone.go:934 +#: lxc/network_zone.go:939 #, c-format msgid "Network zone record %s created" msgstr "" -#: lxc/network_zone.go:1207 +#: lxc/network_zone.go:1212 #, c-format msgid "Network zone record %s deleted" msgstr "" @@ -4198,11 +4193,11 @@ msgstr "" msgid "No device found for this storage volume" msgstr "" -#: lxc/network_load_balancer.go:921 +#: lxc/network_load_balancer.go:926 msgid "No matching backend found" msgstr "" -#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1108 +#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1113 msgid "No matching port(s) found" msgstr "" @@ -4248,7 +4243,7 @@ msgstr "" msgid "Only \"custom\" volumes can be snapshotted" msgstr "" -#: lxc/remote.go:332 +#: lxc/remote.go:333 msgid "Only https URLs are supported for simplestreams" msgstr "" @@ -4273,7 +4268,7 @@ msgstr "" msgid "Optimized Storage" msgstr "" -#: lxc/main.go:96 +#: lxc/main.go:97 msgid "Override the source project" msgstr "" @@ -4319,11 +4314,11 @@ msgstr "" msgid "PROJECT" msgstr "" -#: lxc/remote.go:733 +#: lxc/remote.go:734 msgid "PROTOCOL" msgstr "" -#: lxc/image.go:1073 lxc/remote.go:735 +#: lxc/image.go:1073 lxc/remote.go:736 msgid "PUBLIC" msgstr "" @@ -4339,7 +4334,7 @@ msgstr "" msgid "Partitions:" msgstr "" -#: lxc/main.go:361 +#: lxc/main.go:363 #, c-format msgid "Password for %s: " msgstr "" @@ -4352,7 +4347,7 @@ msgstr "" msgid "Perform an incremental copy" msgstr "" -#: lxc/remote.go:182 +#: lxc/remote.go:183 msgid "Please provide an alternate server address (empty to abort):" msgstr "" @@ -4364,7 +4359,7 @@ msgstr "" msgid "Please provide cluster member name: " msgstr "" -#: lxc/remote.go:462 +#: lxc/remote.go:463 msgid "Please type 'y', 'n' or the fingerprint:" msgstr "" @@ -4386,10 +4381,10 @@ msgstr "" #: lxc/config.go:1278 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/network_load_balancer.go:695 lxc/network_peer.go:611 +#: lxc/network_zone.go:557 lxc/network_zone.go:1149 lxc/profile.go:539 +#: lxc/project.go:316 lxc/storage.go:311 lxc/storage_bucket.go:349 +#: lxc/storage_bucket.go:1098 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 "" @@ -4398,7 +4393,7 @@ msgstr "" msgid "Pretty rendering (short for --format=pretty)" msgstr "" -#: lxc/main.go:94 +#: lxc/main.go:95 msgid "Print help" msgstr "" @@ -4406,7 +4401,7 @@ msgstr "" msgid "Print the raw response" msgstr "" -#: lxc/main.go:93 +#: lxc/main.go:94 msgid "Print version number" msgstr "" @@ -4495,7 +4490,7 @@ msgstr "" msgid "Project %s renamed to %s" msgstr "" -#: lxc/remote.go:106 +#: lxc/remote.go:107 msgid "Project to use for the remote" msgstr "" @@ -4593,7 +4588,7 @@ msgid "" "pool \"default\"." msgstr "" -#: lxc/remote.go:105 +#: lxc/remote.go:106 msgid "Public image server" msgstr "" @@ -4641,7 +4636,7 @@ msgstr "" msgid "RESOURCE" msgstr "" -#: lxc/storage_bucket.go:828 +#: lxc/storage_bucket.go:833 msgid "ROLE" msgstr "" @@ -4684,45 +4679,45 @@ msgstr "" msgid "Refreshing the image: %s" msgstr "" -#: lxc/remote.go:785 +#: lxc/remote.go:786 #, c-format msgid "Remote %s already exists" msgstr "" -#: lxc/project.go:769 lxc/remote.go:776 lxc/remote.go:849 lxc/remote.go:905 -#: lxc/remote.go:945 +#: lxc/project.go:769 lxc/remote.go:777 lxc/remote.go:850 lxc/remote.go:906 +#: lxc/remote.go:946 #, c-format msgid "Remote %s doesn't exist" msgstr "" -#: lxc/remote.go:301 +#: lxc/remote.go:302 #, c-format msgid "Remote %s exists as <%s>" msgstr "" -#: lxc/remote.go:857 +#: lxc/remote.go:858 #, c-format msgid "Remote %s is global and cannot be removed" msgstr "" -#: lxc/remote.go:780 lxc/remote.go:853 lxc/remote.go:949 +#: lxc/remote.go:781 lxc/remote.go:854 lxc/remote.go:950 #, c-format msgid "Remote %s is static and cannot be modified" msgstr "" -#: lxc/remote.go:290 +#: lxc/remote.go:291 msgid "Remote address must not be empty" msgstr "" -#: lxc/remote.go:101 +#: lxc/remote.go:102 msgid "Remote admin password" msgstr "" -#: lxc/remote.go:295 +#: lxc/remote.go:296 msgid "Remote names may not contain colons" msgstr "" -#: lxc/remote.go:102 +#: lxc/remote.go:103 msgid "Remote trust token" msgstr "" @@ -4748,7 +4743,7 @@ msgstr "" msgid "Remove a member from the cluster" msgstr "" -#: lxc/network_zone.go:1285 +#: lxc/network_zone.go:1290 msgid "Remove a network zone record entry" msgstr "" @@ -4756,7 +4751,7 @@ msgstr "" msgid "Remove aliases" msgstr "" -#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1025 +#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1030 msgid "Remove all ports that match" msgstr "" @@ -4764,15 +4759,15 @@ msgstr "" msgid "Remove all rules that match" msgstr "" -#: lxc/network_load_balancer.go:862 +#: lxc/network_load_balancer.go:867 msgid "Remove backend from a load balancer" msgstr "" -#: lxc/network_load_balancer.go:861 +#: lxc/network_load_balancer.go:866 msgid "Remove backends from a load balancer" msgstr "" -#: lxc/network_zone.go:1286 +#: lxc/network_zone.go:1291 msgid "Remove entries from a network zone record" msgstr "" @@ -4796,7 +4791,7 @@ msgstr "" msgid "Remove ports from a forward" msgstr "" -#: lxc/network_load_balancer.go:1023 lxc/network_load_balancer.go:1024 +#: lxc/network_load_balancer.go:1028 lxc/network_load_balancer.go:1029 msgid "Remove ports from a load balancer" msgstr "" @@ -4804,7 +4799,7 @@ msgstr "" msgid "Remove profiles from instances" msgstr "" -#: lxc/remote.go:827 lxc/remote.go:828 +#: lxc/remote.go:828 lxc/remote.go:829 msgid "Remove remotes" msgstr "" @@ -4861,7 +4856,7 @@ msgstr "" msgid "Rename projects" msgstr "" -#: lxc/remote.go:754 lxc/remote.go:755 +#: lxc/remote.go:755 lxc/remote.go:756 msgid "Rename remotes" msgstr "" @@ -4939,7 +4934,7 @@ msgid "Restrict the certificate to one or more projects" msgstr "" #: lxc/console.go:44 -msgid "Retrieve the instance's console log" +msgid "Retrieve the container's console log" msgstr "" #: lxc/init.go:347 @@ -4955,7 +4950,7 @@ msgstr "" msgid "Revoke cluster member join token" msgstr "" -#: lxc/storage_bucket.go:851 +#: lxc/storage_bucket.go:856 msgid "Role (admin or read-only)" msgstr "" @@ -5006,7 +5001,7 @@ msgstr "" msgid "STATE" msgstr "" -#: lxc/remote.go:736 +#: lxc/remote.go:737 msgid "STATIC" msgstr "" @@ -5030,11 +5025,11 @@ msgstr "" msgid "STP" msgstr "" -#: lxc/storage_bucket.go:853 +#: lxc/storage_bucket.go:858 msgid "Secret key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:909 +#: lxc/storage_bucket.go:914 #, c-format msgid "Secret key: %s" msgstr "" @@ -5043,19 +5038,19 @@ msgstr "" msgid "Send a raw query to LXD" msgstr "" -#: lxc/remote.go:104 +#: lxc/remote.go:105 msgid "Server authentication type (tls or oidc)" msgstr "" -#: lxc/remote.go:460 +#: lxc/remote.go:461 msgid "Server certificate NACKed by user" msgstr "" -#: lxc/remote.go:599 +#: lxc/remote.go:600 msgid "Server doesn't trust us after authentication" msgstr "" -#: lxc/remote.go:103 +#: lxc/remote.go:104 msgid "Server protocol (lxd or simplestreams)" msgstr "" @@ -5154,11 +5149,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_load_balancer.go:450 +#: lxc/network_load_balancer.go:455 msgid "Set network load balancer keys" msgstr "" -#: lxc/network_load_balancer.go:451 +#: lxc/network_load_balancer.go:456 msgid "" "Set network load balancer keys\n" "\n" @@ -5180,11 +5175,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:353 +#: lxc/network_zone.go:358 msgid "Set network zone configuration keys" msgstr "" -#: lxc/network_zone.go:354 +#: lxc/network_zone.go:359 msgid "" "Set network zone configuration keys\n" "\n" @@ -5193,7 +5188,7 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:951 lxc/network_zone.go:952 +#: lxc/network_zone.go:956 lxc/network_zone.go:957 msgid "Set network zone record configuration keys" msgstr "" @@ -5223,11 +5218,11 @@ msgid "" " lxc project set [:] " msgstr "" -#: lxc/storage_bucket.go:529 +#: lxc/storage_bucket.go:534 msgid "Set storage bucket configuration keys" msgstr "" -#: lxc/storage_bucket.go:530 +#: lxc/storage_bucket.go:535 msgid "" "Set storage bucket configuration keys\n" "\n" @@ -5262,7 +5257,7 @@ msgid "" " lxc storage volume set [:] [/] " msgstr "" -#: lxc/remote.go:923 lxc/remote.go:924 +#: lxc/remote.go:924 lxc/remote.go:925 msgid "Set the URL for the remote" msgstr "" @@ -5290,7 +5285,7 @@ msgstr "" msgid "Set the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:458 +#: lxc/network_load_balancer.go:463 msgid "Set the key as a network load balancer property" msgstr "" @@ -5302,11 +5297,11 @@ msgstr "" msgid "Set the key as a network property" msgstr "" -#: lxc/network_zone.go:361 +#: lxc/network_zone.go:366 msgid "Set the key as a network zone property" msgstr "" -#: lxc/network_zone.go:957 +#: lxc/network_zone.go:962 msgid "Set the key as a network zone record property" msgstr "" @@ -5318,7 +5313,7 @@ msgstr "" msgid "Set the key as a project property" msgstr "" -#: lxc/storage_bucket.go:537 +#: lxc/storage_bucket.go:542 msgid "Set the key as a storage bucket property" msgstr "" @@ -5338,11 +5333,11 @@ msgstr "" msgid "Setup SSH SFTP listener on address:port instead of mounting" msgstr "" -#: lxc/main.go:97 +#: lxc/main.go:98 msgid "Show all debug messages" msgstr "" -#: lxc/main.go:98 +#: lxc/main.go:99 msgid "Show all information messages" msgstr "" @@ -5411,7 +5406,7 @@ msgstr "" msgid "Show instance or server information" msgstr "" -#: lxc/main.go:271 lxc/main.go:272 +#: lxc/main.go:272 lxc/main.go:273 msgid "Show less common commands" msgstr "" @@ -5443,15 +5438,15 @@ msgstr "" msgid "Show network peer configurations" msgstr "" -#: lxc/network_zone.go:155 lxc/network_zone.go:156 +#: lxc/network_zone.go:156 lxc/network_zone.go:157 msgid "Show network zone configurations" msgstr "" -#: lxc/network_zone.go:758 +#: lxc/network_zone.go:763 msgid "Show network zone record configuration" msgstr "" -#: lxc/network_zone.go:759 +#: lxc/network_zone.go:764 msgid "Show network zone record configurations" msgstr "" @@ -5463,11 +5458,11 @@ msgstr "" msgid "Show project options" msgstr "" -#: lxc/storage_bucket.go:623 lxc/storage_bucket.go:624 +#: lxc/storage_bucket.go:628 lxc/storage_bucket.go:629 msgid "Show storage bucket configurations" msgstr "" -#: lxc/storage_bucket.go:1123 lxc/storage_bucket.go:1124 +#: lxc/storage_bucket.go:1128 lxc/storage_bucket.go:1129 msgid "Show storage bucket key configurations" msgstr "" @@ -5493,7 +5488,7 @@ msgid "" "that are granted via identity provider group mappings. \n" msgstr "" -#: lxc/remote.go:630 lxc/remote.go:631 +#: lxc/remote.go:631 lxc/remote.go:632 msgid "Show the default remote" msgstr "" @@ -5617,22 +5612,22 @@ msgstr "" msgid "Stopping the instance failed: %s" msgstr "" -#: lxc/storage_bucket.go:161 +#: lxc/storage_bucket.go:166 #, c-format msgid "Storage bucket %s created" msgstr "" -#: lxc/storage_bucket.go:228 +#: lxc/storage_bucket.go:233 #, c-format msgid "Storage bucket %s deleted" msgstr "" -#: lxc/storage_bucket.go:907 +#: lxc/storage_bucket.go:912 #, c-format msgid "Storage bucket key %s added" msgstr "" -#: lxc/storage_bucket.go:973 +#: lxc/storage_bucket.go:978 #, c-format msgid "Storage bucket key %s removed" msgstr "" @@ -5705,7 +5700,7 @@ msgstr "" msgid "Switch the current project" msgstr "" -#: lxc/remote.go:883 lxc/remote.go:884 +#: lxc/remote.go:884 lxc/remote.go:885 msgid "Switch the default remote" msgstr "" @@ -5820,7 +5815,7 @@ msgstr "" msgid "The property %q does not exist on the instance snapshot %s/%s: %v" msgstr "" -#: lxc/network_load_balancer.go:424 +#: lxc/network_load_balancer.go:429 #, c-format msgid "The property %q does not exist on the load balancer %q: %v" msgstr "" @@ -5845,12 +5840,12 @@ msgstr "" msgid "The property %q does not exist on the network peer %q: %v" msgstr "" -#: lxc/network_zone.go:246 +#: lxc/network_zone.go:247 #, c-format msgid "The property %q does not exist on the network zone %q: %v" msgstr "" -#: lxc/network_zone.go:845 +#: lxc/network_zone.go:850 #, c-format msgid "The property %q does not exist on the network zone record %q: %v" msgstr "" @@ -5865,7 +5860,7 @@ msgstr "" msgid "The property %q does not exist on the project %q: %v" msgstr "" -#: lxc/storage_bucket.go:426 +#: lxc/storage_bucket.go:431 #, c-format msgid "The property %q does not exist on the storage bucket %q: %v" msgstr "" @@ -5919,7 +5914,7 @@ msgstr "" msgid "This LXD server is not available on the network" msgstr "" -#: lxc/main.go:293 +#: lxc/main.go:294 msgid "" "This client hasn't been configured to use a remote LXD server yet.\n" "As your platform can't run native Linux instances, you must connect to a " @@ -5951,11 +5946,11 @@ msgstr "" msgid "To create a new network, use: lxc network create" msgstr "" -#: lxc/console.go:210 +#: lxc/console.go:215 msgid "To detach from the console, press: +a q" msgstr "" -#: lxc/main.go:403 +#: lxc/main.go:406 msgid "" "To start your first container, try: lxc launch ubuntu:24.04\n" "Or for a virtual machine: lxc launch ubuntu:24.04 --vm" @@ -6053,7 +6048,7 @@ msgstr "" msgid "UPLOAD DATE" msgstr "" -#: lxc/cluster.go:184 lxc/remote.go:732 +#: lxc/cluster.go:184 lxc/remote.go:733 msgid "URL" msgstr "" @@ -6062,7 +6057,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:679 lxc/project.go:506 +#: lxc/network_zone.go:141 lxc/profile.go:679 lxc/project.go:506 #: lxc/storage.go:647 lxc/storage_volume.go:1564 msgid "USED BY" msgstr "" @@ -6081,7 +6076,7 @@ msgstr "" msgid "Unable to create a temporary file: %v" msgstr "" -#: lxc/remote.go:213 lxc/remote.go:247 +#: lxc/remote.go:214 lxc/remote.go:248 msgid "Unavailable remote server" msgstr "" @@ -6101,7 +6096,7 @@ msgstr "" msgid "Unknown column shorthand char '%c' in '%s'" msgstr "" -#: lxc/console.go:159 +#: lxc/console.go:164 #, c-format msgid "Unknown console type %q" msgstr "" @@ -6161,11 +6156,11 @@ msgstr "" msgid "Unset network forward keys" msgstr "" -#: lxc/network_load_balancer.go:548 +#: lxc/network_load_balancer.go:553 msgid "Unset network load balancer configuration keys" msgstr "" -#: lxc/network_load_balancer.go:549 +#: lxc/network_load_balancer.go:554 msgid "Unset network load balancer keys" msgstr "" @@ -6177,11 +6172,11 @@ msgstr "" msgid "Unset network peer keys" msgstr "" -#: lxc/network_zone.go:433 lxc/network_zone.go:434 +#: lxc/network_zone.go:438 lxc/network_zone.go:439 msgid "Unset network zone configuration keys" msgstr "" -#: lxc/network_zone.go:1027 lxc/network_zone.go:1028 +#: lxc/network_zone.go:1032 lxc/network_zone.go:1033 msgid "Unset network zone record configuration keys" msgstr "" @@ -6193,7 +6188,7 @@ msgstr "" msgid "Unset project configuration keys" msgstr "" -#: lxc/storage_bucket.go:692 lxc/storage_bucket.go:693 +#: lxc/storage_bucket.go:697 lxc/storage_bucket.go:698 msgid "Unset storage bucket configuration keys" msgstr "" @@ -6217,7 +6212,7 @@ msgstr "" msgid "Unset the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:552 +#: lxc/network_load_balancer.go:557 msgid "Unset the key as a network load balancer property" msgstr "" @@ -6229,11 +6224,11 @@ msgstr "" msgid "Unset the key as a network property" msgstr "" -#: lxc/network_zone.go:437 +#: lxc/network_zone.go:442 msgid "Unset the key as a network zone property" msgstr "" -#: lxc/network_zone.go:1031 +#: lxc/network_zone.go:1036 msgid "Unset the key as a network zone record property" msgstr "" @@ -6245,7 +6240,7 @@ msgstr "" msgid "Unset the key as a project property" msgstr "" -#: lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:701 msgid "Unset the key as a storage bucket property" msgstr "" @@ -6307,7 +6302,7 @@ msgid "" "Use storage driver optimized format (can only be restored on a similar pool)" msgstr "" -#: lxc/main.go:100 +#: lxc/main.go:101 msgid "Use with help or --help to view sub-commands" msgstr "" @@ -6404,7 +6399,7 @@ msgstr "" #: lxc/network.go:959 lxc/operation.go:156 lxc/project.go:458 #: lxc/project.go:463 lxc/project.go:468 lxc/project.go:473 lxc/project.go:478 -#: lxc/project.go:483 lxc/remote.go:693 lxc/remote.go:698 lxc/remote.go:703 +#: lxc/project.go:483 lxc/remote.go:694 lxc/remote.go:699 lxc/remote.go:704 msgid "YES" msgstr "" @@ -6439,7 +6434,7 @@ 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/network.go:909 lxc/network_acl.go:91 lxc/network_zone.go:83 #: 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 "[:]" @@ -6502,19 +6497,19 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:154 lxc/network_zone.go:463 lxc/network_zone.go:581 +#: lxc/network_zone.go:155 lxc/network_zone.go:468 lxc/network_zone.go:586 msgid "[:]" msgstr "" -#: lxc/network_zone.go:209 lxc/network_zone.go:432 +#: lxc/network_zone.go:210 lxc/network_zone.go:437 msgid "[:] " msgstr "" -#: lxc/network_zone.go:352 +#: lxc/network_zone.go:357 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:269 +#: lxc/network_zone.go:270 msgid "[:] [key=value...]" msgstr "" @@ -6760,30 +6755,30 @@ msgstr "" #: lxc/network_forward.go:169 lxc/network_forward.go:574 #: lxc/network_forward.go:715 lxc/network_load_balancer.go:171 -#: lxc/network_load_balancer.go:577 lxc/network_load_balancer.go:719 +#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:724 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:860 +#: lxc/network_load_balancer.go:865 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:796 +#: lxc/network_load_balancer.go:801 msgid "" "[:] " "[]" msgstr "" #: lxc/network_forward.go:377 lxc/network_forward.go:544 -#: lxc/network_load_balancer.go:381 lxc/network_load_balancer.go:547 +#: lxc/network_load_balancer.go:386 lxc/network_load_balancer.go:552 msgid "[:] " msgstr "" -#: lxc/network_forward.go:446 lxc/network_load_balancer.go:449 +#: lxc/network_forward.go:446 lxc/network_load_balancer.go:454 msgid "[:] =..." msgstr "" -#: lxc/network_load_balancer.go:961 +#: lxc/network_load_balancer.go:966 msgid "" "[:] " "[,...]" @@ -6795,7 +6790,7 @@ msgid "" " []" msgstr "" -#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1022 +#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1027 msgid "[:] [] []" msgstr "" @@ -6846,7 +6841,7 @@ msgid "[:]" msgstr "" #: lxc/storage.go:167 lxc/storage.go:218 lxc/storage.go:412 lxc/storage.go:759 -#: lxc/storage_bucket.go:449 +#: lxc/storage_bucket.go:454 msgid "[:]" msgstr "" @@ -6854,18 +6849,18 @@ msgstr "" msgid "[:] []" msgstr "" -#: lxc/storage_bucket.go:180 lxc/storage_bucket.go:242 -#: lxc/storage_bucket.go:622 lxc/storage_bucket.go:764 +#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:247 +#: lxc/storage_bucket.go:627 lxc/storage_bucket.go:769 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:375 lxc/storage_bucket.go:691 -#: lxc/storage_bucket.go:845 lxc/storage_bucket.go:923 -#: lxc/storage_bucket.go:987 lxc/storage_bucket.go:1122 +#: lxc/storage_bucket.go:380 lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:850 lxc/storage_bucket.go:928 +#: lxc/storage_bucket.go:992 lxc/storage_bucket.go:1127 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:528 +#: lxc/storage_bucket.go:533 msgid "[:] =..." msgstr "" @@ -7009,27 +7004,27 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:686 +#: lxc/network_zone.go:691 msgid "[:]" msgstr "" -#: lxc/network_zone.go:757 lxc/network_zone.go:1056 lxc/network_zone.go:1173 +#: lxc/network_zone.go:762 lxc/network_zone.go:1061 lxc/network_zone.go:1178 msgid "[:] " msgstr "" -#: lxc/network_zone.go:809 lxc/network_zone.go:1026 +#: lxc/network_zone.go:814 lxc/network_zone.go:1031 msgid "[:] " msgstr "" -#: lxc/network_zone.go:950 +#: lxc/network_zone.go:955 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:1238 lxc/network_zone.go:1284 +#: lxc/network_zone.go:1243 lxc/network_zone.go:1289 msgid "[:] " msgstr "" -#: lxc/network_zone.go:868 +#: lxc/network_zone.go:873 msgid "[:] [key=value...]" msgstr "" @@ -7053,7 +7048,7 @@ msgstr "" msgid "[:][] [...]" msgstr "" -#: lxc/remote.go:88 +#: lxc/remote.go:89 msgid "[] " msgstr "" @@ -7061,7 +7056,7 @@ msgstr "" msgid "[[:]]" msgstr "" -#: lxc/project.go:488 lxc/remote.go:722 +#: lxc/project.go:488 lxc/remote.go:723 msgid "current" msgstr "" @@ -7324,6 +7319,23 @@ msgid "" " Create a new OVN network called bar using baz as its uplink network" msgstr "" +#: lxc/network_load_balancer.go:239 +msgid "" +"lxc network load-balancer create n1 127.0.0.1\n" +"\n" +"lxc network load-balancer create n1 127.0.0.1 < config.yaml\n" +" Create network load-balancer for network n1 with configuration from " +"config.yaml" +msgstr "" + +#: lxc/network_zone.go:273 +msgid "" +"lxc network zone create z1\n" +"\n" +"lxc network zone create z1 < config.yaml\n" +" Create network zone z1 with configuration from config.yaml" +msgstr "" + #: lxc/operation.go:195 msgid "" "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n" @@ -7394,26 +7406,36 @@ msgid "" " Restore the snapshot." msgstr "" -#: lxc/storage_bucket.go:245 +#: lxc/storage_bucket.go:84 +msgid "" +"lxc storage bucket create p1 b01\n" +"\tCreate a new storage bucket name b01 in storage pool p1\n" +"\n" +"lxc storage bucket create p1 b01 < config.yaml\n" +"\tCreate a new storage bucket name b01 in storage pool p1 using the content " +"of config.yaml" +msgstr "" + +#: lxc/storage_bucket.go:250 msgid "" "lxc storage bucket edit [:] < bucket.yaml\n" " Update a storage bucket using the content of bucket.yaml." msgstr "" -#: lxc/storage_bucket.go:990 +#: lxc/storage_bucket.go:995 msgid "" "lxc storage bucket edit [:] < key.yaml\n" " Update a storage bucket key using the content of key.yaml." msgstr "" -#: lxc/storage_bucket.go:1125 +#: lxc/storage_bucket.go:1130 msgid "" "lxc storage bucket key show default data foo\n" " Will show the properties of a bucket key called \"foo\" for a bucket " "called \"data\" in the \"default\" pool." msgstr "" -#: lxc/storage_bucket.go:625 +#: lxc/storage_bucket.go:630 msgid "" "lxc storage bucket show default data\n" " Will show the properties of a bucket called \"data\" in the \"default\" " @@ -7432,7 +7454,7 @@ msgid "" "\t\tCreate a new custom volume using backup0.tar.gz as the source." msgstr "" -#: lxc/remote.go:459 +#: lxc/remote.go:460 msgid "n" msgstr "" @@ -7444,7 +7466,7 @@ msgstr "" msgid "no" msgstr "" -#: lxc/remote.go:452 +#: lxc/remote.go:453 msgid "ok (y/n/[fingerprint])?" msgstr "" @@ -7481,7 +7503,7 @@ msgstr "" msgid "used by" msgstr "" -#: lxc/remote.go:461 +#: lxc/remote.go:462 msgid "y" msgstr "" diff --git a/po/tzm.po b/po/tzm.po index 15818b002def..09b58d9fb88d 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-08-20 09:31+0100\n" +"POT-Creation-Date: 2024-08-30 09:27+0100\n" "PO-Revision-Date: 2022-03-10 15:10+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Tamazight (Central Atlas) = 2 && (n < 11 || n > 99);\n" "X-Generator: Weblate 4.12-dev\n" -#: lxc/storage_bucket.go:255 lxc/storage_bucket.go:1000 +#: lxc/storage_bucket.go:260 lxc/storage_bucket.go:1005 msgid "" "### This is a YAML representation of a storage bucket.\n" "### Any line starting with a '# will be ignored.\n" @@ -281,7 +281,7 @@ msgid "" "### Note that the listen_address and location cannot be changed." msgstr "" -#: lxc/network_load_balancer.go:588 +#: lxc/network_load_balancer.go:593 msgid "" "### This is a YAML representation of the network load balancer.\n" "### Any line starting with a '# will be ignored.\n" @@ -322,7 +322,7 @@ msgid "" "cannot be changed." msgstr "" -#: lxc/network_zone.go:1066 +#: lxc/network_zone.go:1071 msgid "" "### This is a YAML representation of the network zone record.\n" "### Any line starting with a '# will be ignored.\n" @@ -336,7 +336,7 @@ msgid "" "### user.foo: bah\n" msgstr "" -#: lxc/network_zone.go:473 +#: lxc/network_zone.go:478 msgid "" "### This is a YAML representation of the network zone.\n" "### Any line starting with a '# will be ignored.\n" @@ -515,15 +515,15 @@ msgstr "" msgid " " msgstr "" -#: lxc/remote.go:825 lxc/remote.go:882 +#: lxc/remote.go:826 lxc/remote.go:883 msgid "" msgstr "" -#: lxc/remote.go:922 +#: lxc/remote.go:923 msgid " " msgstr "" -#: lxc/remote.go:752 +#: lxc/remote.go:753 msgid " " msgstr "" @@ -556,7 +556,7 @@ msgstr "" msgid "ARCHITECTURE" msgstr "" -#: lxc/remote.go:734 +#: lxc/remote.go:735 msgid "AUTH TYPE" msgstr "" @@ -564,15 +564,15 @@ msgstr "" msgid "AUTHENTICATION METHOD" msgstr "" -#: lxc/remote.go:100 +#: lxc/remote.go:101 msgid "Accept certificate" msgstr "" -#: lxc/storage_bucket.go:852 +#: lxc/storage_bucket.go:857 msgid "Access key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:908 +#: lxc/storage_bucket.go:913 #, c-format msgid "Access key: %s" msgstr "" @@ -606,19 +606,19 @@ msgstr "" msgid "Add a group to an identity provider group" msgstr "" -#: lxc/network_zone.go:1239 +#: lxc/network_zone.go:1244 msgid "Add a network zone record entry" msgstr "" -#: lxc/network_load_balancer.go:798 +#: lxc/network_load_balancer.go:803 msgid "Add backend to a load balancer" msgstr "" -#: lxc/network_load_balancer.go:797 +#: lxc/network_load_balancer.go:802 msgid "Add backends to a load balancer" msgstr "" -#: lxc/network_zone.go:1240 +#: lxc/network_zone.go:1245 msgid "Add entries to a network zone record" msgstr "" @@ -634,11 +634,11 @@ msgstr "" msgid "Add new aliases" msgstr "" -#: lxc/remote.go:89 +#: lxc/remote.go:90 msgid "Add new remote servers" msgstr "" -#: lxc/remote.go:90 +#: lxc/remote.go:91 msgid "" "Add new remote servers\n" "\n" @@ -679,7 +679,7 @@ msgstr "" msgid "Add ports to a forward" msgstr "" -#: lxc/network_load_balancer.go:962 lxc/network_load_balancer.go:963 +#: lxc/network_load_balancer.go:967 lxc/network_load_balancer.go:968 msgid "Add ports to a load balancer" msgstr "" @@ -700,17 +700,17 @@ msgstr "" msgid "Address: %s" msgstr "" -#: lxc/storage_bucket.go:164 +#: lxc/storage_bucket.go:169 #, c-format msgid "Admin access key: %s" msgstr "" -#: lxc/remote.go:566 +#: lxc/remote.go:567 #, c-format msgid "Admin password (or token) for %s:" msgstr "" -#: lxc/storage_bucket.go:165 +#: lxc/storage_bucket.go:170 #, c-format msgid "Admin secret key: %s" msgstr "" @@ -742,7 +742,7 @@ msgstr "" msgid "All projects" msgstr "" -#: lxc/remote.go:181 +#: lxc/remote.go:182 msgid "All server addresses are unavailable" msgstr "" @@ -765,7 +765,7 @@ msgstr "" msgid "Are you sure you want to %s cluster member %q? (yes/no) [default=no]: " msgstr "" -#: lxc/console.go:383 +#: lxc/console.go:388 msgid "As neither could be found, the raw SPICE socket can be found at:" msgstr "" @@ -813,7 +813,7 @@ msgid "" "as well as retrieve past log entries from it." msgstr "" -#: lxc/remote.go:548 +#: lxc/remote.go:549 #, c-format msgid "Authentication type '%s' not supported by server" msgstr "" @@ -832,11 +832,11 @@ msgstr "" msgid "Auto update: %s" msgstr "" -#: lxc/network_forward.go:240 lxc/network_load_balancer.go:242 +#: lxc/network_forward.go:240 lxc/network_load_balancer.go:247 msgid "Auto-allocate an IPv4 or IPv6 listen address. One of 'ipv4', 'ipv6'." msgstr "" -#: lxc/remote.go:136 +#: lxc/remote.go:137 msgid "Available projects:" msgstr "" @@ -868,8 +868,8 @@ msgid "Bad device override syntax, expecting ,=: %s" msgstr "" #: lxc/network.go:333 lxc/network_acl.go:382 lxc/network_forward.go:293 -#: lxc/network_load_balancer.go:296 lxc/network_peer.go:280 -#: lxc/network_zone.go:324 lxc/network_zone.go:922 lxc/storage_bucket.go:136 +#: lxc/network_load_balancer.go:301 lxc/network_peer.go:280 +#: lxc/network_zone.go:329 lxc/network_zone.go:927 lxc/storage_bucket.go:141 #, c-format msgid "Bad key/value pair: %s" msgstr "" @@ -991,7 +991,7 @@ msgstr "" msgid "Can't read from stdin: %w" msgstr "" -#: lxc/remote.go:861 +#: lxc/remote.go:862 msgid "Can't remove the default remote" msgstr "" @@ -1057,15 +1057,14 @@ msgstr "" msgid "Certificate add token for %s deleted" msgstr "" -#: lxc/remote.go:218 -#, c-format -msgid "" -"Certificate fingerprint mismatch between certificate token and server %q" +#: lxc/remote.go:452 +msgid "Certificate fingerprint" msgstr "" -#: lxc/remote.go:451 +#: lxc/remote.go:219 #, c-format -msgid "Certificate fingerprint: %s" +msgid "" +"Certificate fingerprint mismatch between certificate token and server %q" msgstr "" #: lxc/network.go:893 @@ -1077,7 +1076,7 @@ msgstr "" msgid "Client %s certificate add token:" msgstr "" -#: lxc/remote.go:603 +#: lxc/remote.go:604 msgid "Client certificate now trusted by server:" msgstr "" @@ -1139,18 +1138,18 @@ msgstr "" #: lxc/network_forward.go:456 lxc/network_forward.go:579 #: lxc/network_forward.go:721 lxc/network_forward.go:798 #: lxc/network_forward.go:864 lxc/network_load_balancer.go:176 -#: lxc/network_load_balancer.go:241 lxc/network_load_balancer.go:459 -#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:725 -#: lxc/network_load_balancer.go:801 lxc/network_load_balancer.go:865 -#: lxc/network_load_balancer.go:966 lxc/network_load_balancer.go:1028 +#: lxc/network_load_balancer.go:246 lxc/network_load_balancer.go:464 +#: lxc/network_load_balancer.go:587 lxc/network_load_balancer.go:730 +#: lxc/network_load_balancer.go:806 lxc/network_load_balancer.go:870 +#: lxc/network_load_balancer.go:971 lxc/network_load_balancer.go:1033 #: lxc/storage.go:99 lxc/storage.go:347 lxc/storage.go:418 lxc/storage.go:671 -#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:85 -#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:248 -#: lxc/storage_bucket.go:379 lxc/storage_bucket.go:536 -#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:695 -#: lxc/storage_bucket.go:770 lxc/storage_bucket.go:850 -#: lxc/storage_bucket.go:928 lxc/storage_bucket.go:993 -#: lxc/storage_bucket.go:1129 lxc/storage_volume.go:358 +#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:90 +#: lxc/storage_bucket.go:190 lxc/storage_bucket.go:253 +#: lxc/storage_bucket.go:384 lxc/storage_bucket.go:541 +#: lxc/storage_bucket.go:634 lxc/storage_bucket.go:700 +#: lxc/storage_bucket.go:775 lxc/storage_bucket.go:855 +#: lxc/storage_bucket.go:933 lxc/storage_bucket.go:998 +#: lxc/storage_bucket.go:1134 lxc/storage_volume.go:358 #: lxc/storage_volume.go:560 lxc/storage_volume.go:639 #: lxc/storage_volume.go:883 lxc/storage_volume.go:1097 #: lxc/storage_volume.go:1210 lxc/storage_volume.go:1678 @@ -1178,11 +1177,11 @@ msgstr "" msgid "Columns" msgstr "" -#: lxc/main.go:81 +#: lxc/main.go:82 msgid "Command line client for LXD" msgstr "" -#: lxc/main.go:82 +#: lxc/main.go:83 msgid "" "Command line client for LXD\n" "\n" @@ -1214,19 +1213,15 @@ msgstr "" #: lxc/config.go:347 lxc/config.go:1277 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/network_load_balancer.go:694 lxc/network_peer.go:610 +#: lxc/network_zone.go:556 lxc/network_zone.go:1148 lxc/profile.go:538 +#: lxc/project.go:315 lxc/storage.go:310 lxc/storage_bucket.go:348 +#: lxc/storage_bucket.go:1097 lxc/storage_volume.go:1016 #: lxc/storage_volume.go:1048 #, c-format msgid "Config parsing error: %s" msgstr "" -#: lxc/console.go:140 -msgid "Console log:" -msgstr "" - #: lxc/storage_volume.go:561 msgid "Content type, block or filesystem" msgstr "" @@ -1329,12 +1324,12 @@ msgstr "" msgid "Cores:" msgstr "" -#: lxc/remote.go:486 +#: lxc/remote.go:487 #, c-format msgid "Could not close server cert file %q: %w" msgstr "" -#: lxc/remote.go:224 lxc/remote.go:470 +#: lxc/remote.go:225 lxc/remote.go:471 msgid "Could not create server cert dir" msgstr "" @@ -1373,12 +1368,12 @@ msgstr "" msgid "Could not write new remote certificate for remote '%s' with error: %v" msgstr "" -#: lxc/remote.go:481 +#: lxc/remote.go:482 #, c-format msgid "Could not write server cert file %q: %w" msgstr "" -#: lxc/network_zone.go:1327 +#: lxc/network_zone.go:1332 msgid "Couldn't find a matching entry" msgstr "" @@ -1430,7 +1425,7 @@ msgstr "" msgid "Create instances from images" msgstr "" -#: lxc/storage_bucket.go:846 lxc/storage_bucket.go:847 +#: lxc/storage_bucket.go:851 lxc/storage_bucket.go:852 msgid "Create key for a storage bucket" msgstr "" @@ -1462,11 +1457,11 @@ msgstr "" msgid "Create new network peering" msgstr "" -#: lxc/network_zone.go:869 lxc/network_zone.go:870 +#: lxc/network_zone.go:874 lxc/network_zone.go:875 msgid "Create new network zone record" msgstr "" -#: lxc/network_zone.go:270 lxc/network_zone.go:271 +#: lxc/network_zone.go:271 lxc/network_zone.go:272 msgid "Create new network zones" msgstr "" @@ -1517,9 +1512,9 @@ msgstr "" #: 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/network_zone.go:140 lxc/network_zone.go:747 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_bucket.go:512 lxc/storage_bucket.go:832 #: lxc/storage_volume.go:1562 msgid "DESCRIPTION" msgstr "" @@ -1584,7 +1579,7 @@ msgstr "" msgid "Delete instances and snapshots" msgstr "" -#: lxc/storage_bucket.go:924 lxc/storage_bucket.go:925 +#: lxc/storage_bucket.go:929 lxc/storage_bucket.go:930 msgid "Delete key from a storage bucket" msgstr "" @@ -1596,7 +1591,7 @@ msgstr "" msgid "Delete network forwards" msgstr "" -#: lxc/network_load_balancer.go:721 lxc/network_load_balancer.go:722 +#: lxc/network_load_balancer.go:726 lxc/network_load_balancer.go:727 msgid "Delete network load balancers" msgstr "" @@ -1604,11 +1599,11 @@ msgstr "" msgid "Delete network peerings" msgstr "" -#: lxc/network_zone.go:1175 lxc/network_zone.go:1176 +#: lxc/network_zone.go:1180 lxc/network_zone.go:1181 msgid "Delete network zone record" msgstr "" -#: lxc/network_zone.go:583 lxc/network_zone.go:584 +#: lxc/network_zone.go:588 lxc/network_zone.go:589 msgid "Delete network zones" msgstr "" @@ -1624,7 +1619,7 @@ msgstr "" msgid "Delete projects" msgstr "" -#: lxc/storage_bucket.go:182 lxc/storage_bucket.go:183 +#: lxc/storage_bucket.go:187 lxc/storage_bucket.go:188 msgid "Delete storage buckets" msgstr "" @@ -1680,7 +1675,7 @@ msgstr "" #: 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/info.go:32 lxc/init.go:43 lxc/launch.go:24 lxc/list.go:48 lxc/main.go:83 #: 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 @@ -1699,22 +1694,22 @@ msgstr "" #: 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_load_balancer.go:238 lxc/network_load_balancer.go:388 +#: lxc/network_load_balancer.go:456 lxc/network_load_balancer.go:554 +#: lxc/network_load_balancer.go:584 lxc/network_load_balancer.go:727 +#: lxc/network_load_balancer.go:788 lxc/network_load_balancer.go:803 +#: lxc/network_load_balancer.go:867 lxc/network_load_balancer.go:953 +#: lxc/network_load_balancer.go:968 lxc/network_load_balancer.go:1029 #: 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/network_zone.go:29 lxc/network_zone.go:86 lxc/network_zone.go:157 +#: lxc/network_zone.go:212 lxc/network_zone.go:272 lxc/network_zone.go:359 +#: lxc/network_zone.go:439 lxc/network_zone.go:470 lxc/network_zone.go:589 +#: lxc/network_zone.go:637 lxc/network_zone.go:694 lxc/network_zone.go:764 +#: lxc/network_zone.go:816 lxc/network_zone.go:875 lxc/network_zone.go:957 +#: lxc/network_zone.go:1033 lxc/network_zone.go:1063 lxc/network_zone.go:1181 +#: lxc/network_zone.go:1230 lxc/network_zone.go:1245 lxc/network_zone.go:1291 #: 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 @@ -1723,19 +1718,19 @@ msgstr "" #: 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:631 lxc/remote.go:669 lxc/remote.go:755 lxc/remote.go:828 -#: lxc/remote.go:884 lxc/remote.go:924 lxc/rename.go:21 lxc/restore.go:24 +#: lxc/query.go:34 lxc/rebuild.go:27 lxc/remote.go:35 lxc/remote.go:91 +#: lxc/remote.go:632 lxc/remote.go:670 lxc/remote.go:756 lxc/remote.go:829 +#: lxc/remote.go:885 lxc/remote.go:925 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_bucket.go:29 lxc/storage_bucket.go:83 lxc/storage_bucket.go:188 +#: lxc/storage_bucket.go:249 lxc/storage_bucket.go:382 +#: lxc/storage_bucket.go:458 lxc/storage_bucket.go:535 +#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:698 +#: lxc/storage_bucket.go:732 lxc/storage_bucket.go:773 +#: lxc/storage_bucket.go:852 lxc/storage_bucket.go:930 +#: lxc/storage_bucket.go:994 lxc/storage_bucket.go:1129 #: 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 @@ -1871,7 +1866,7 @@ msgstr "" msgid "Don't require user confirmation for using --force" msgstr "" -#: lxc/main.go:99 +#: lxc/main.go:100 msgid "Don't show progress information" msgstr "" @@ -1884,7 +1879,7 @@ msgstr "" msgid "Driver: %v (%v)" msgstr "" -#: lxc/network_zone.go:743 +#: lxc/network_zone.go:748 msgid "ENTRIES" msgstr "" @@ -1962,7 +1957,7 @@ msgstr "" msgid "Edit network forward configurations as YAML" msgstr "" -#: lxc/network_load_balancer.go:578 lxc/network_load_balancer.go:579 +#: lxc/network_load_balancer.go:583 lxc/network_load_balancer.go:584 msgid "Edit network load balancer configurations as YAML" msgstr "" @@ -1970,11 +1965,11 @@ msgstr "" msgid "Edit network peer configurations as YAML" msgstr "" -#: lxc/network_zone.go:464 lxc/network_zone.go:465 +#: lxc/network_zone.go:469 lxc/network_zone.go:470 msgid "Edit network zone configurations as YAML" msgstr "" -#: lxc/network_zone.go:1057 lxc/network_zone.go:1058 +#: lxc/network_zone.go:1062 lxc/network_zone.go:1063 msgid "Edit network zone record configurations as YAML" msgstr "" @@ -1986,11 +1981,11 @@ msgstr "" msgid "Edit project configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:243 lxc/storage_bucket.go:244 +#: lxc/storage_bucket.go:248 lxc/storage_bucket.go:249 msgid "Edit storage bucket configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:988 lxc/storage_bucket.go:989 +#: lxc/storage_bucket.go:993 lxc/storage_bucket.go:994 msgid "Edit storage bucket key as YAML" msgstr "" @@ -2031,7 +2026,7 @@ msgid "" " for the address if not yet set." msgstr "" -#: lxc/network_zone.go:1242 +#: lxc/network_zone.go:1247 msgid "Entry TTL" msgstr "" @@ -2060,9 +2055,9 @@ msgstr "" #: lxc/cluster.go:414 lxc/config.go:624 lxc/config.go:656 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/network_load_balancer.go:527 lxc/network_peer.go:463 +#: lxc/network_zone.go:414 lxc/network_zone.go:1008 lxc/profile.go:876 +#: lxc/project.go:634 lxc/storage.go:727 lxc/storage_bucket.go:602 #: lxc/storage_volume.go:1947 lxc/storage_volume.go:1985 #, c-format msgid "Error setting properties: %v" @@ -2074,10 +2069,10 @@ 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/network_forward.go:513 lxc/network_load_balancer.go:521 +#: lxc/network_peer.go:457 lxc/network_zone.go:408 lxc/network_zone.go:1002 #: lxc/profile.go:870 lxc/project.go:628 lxc/storage.go:721 -#: lxc/storage_bucket.go:591 lxc/storage_volume.go:1941 +#: lxc/storage_bucket.go:596 lxc/storage_volume.go:1941 #: lxc/storage_volume.go:1979 #, c-format msgid "Error unsetting property: %v" @@ -2263,7 +2258,7 @@ msgstr "" msgid "Failed parsing SSH host key: %w" msgstr "" -#: lxc/console.go:361 +#: lxc/console.go:366 #, c-format msgid "Failed starting command: %w" msgstr "" @@ -2278,11 +2273,11 @@ msgstr "" msgid "Failed to accept incoming connection: %w" msgstr "" -#: lxc/remote.go:190 +#: lxc/remote.go:191 msgid "Failed to add remote" msgstr "" -#: lxc/remote.go:241 +#: lxc/remote.go:242 #, c-format msgid "Failed to close server cert file %q: %w" msgstr "" @@ -2292,7 +2287,7 @@ msgstr "" msgid "Failed to connect to cluster member: %w" msgstr "" -#: lxc/remote.go:231 +#: lxc/remote.go:232 #, c-format msgid "Failed to create %q: %w" msgstr "" @@ -2302,12 +2297,12 @@ msgstr "" msgid "Failed to create alias %s: %w" msgstr "" -#: lxc/remote.go:256 +#: lxc/remote.go:257 #, c-format msgid "Failed to create certificate: %w" msgstr "" -#: lxc/remote.go:263 +#: lxc/remote.go:264 #, c-format msgid "Failed to find project: %w" msgstr "" @@ -2332,7 +2327,7 @@ msgstr "" msgid "Failed to walk path for %s: %s" msgstr "" -#: lxc/remote.go:236 +#: lxc/remote.go:237 #, c-format msgid "Failed to write server cert file %q: %w" msgstr "" @@ -2341,7 +2336,7 @@ msgstr "" msgid "Fast mode (same as --columns=nsacPt)" msgstr "" -#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:115 +#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:116 #: lxc/operation.go:136 msgid "Filtering isn't supported yet" msgstr "" @@ -2379,7 +2374,7 @@ msgstr "" msgid "Force the removal of running instances" msgstr "" -#: lxc/main.go:95 +#: lxc/main.go:96 msgid "Force using the local unix socket" msgstr "" @@ -2413,10 +2408,10 @@ msgstr "" #: 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/network_peer.go:84 lxc/network_zone.go:89 lxc/network_zone.go:697 #: lxc/operation.go:108 lxc/profile.go:637 lxc/project.go:412 -#: lxc/project.go:804 lxc/remote.go:673 lxc/storage.go:588 -#: lxc/storage_bucket.go:454 lxc/storage_bucket.go:769 +#: lxc/project.go:804 lxc/remote.go:674 lxc/storage.go:588 +#: lxc/storage_bucket.go:459 lxc/storage_bucket.go:774 #: lxc/storage_volume.go:1446 lxc/warning.go:93 msgid "Format (csv|json|table|yaml|compact)" msgstr "" @@ -2453,7 +2448,7 @@ msgstr "" msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)" msgstr "" -#: lxc/remote.go:737 +#: lxc/remote.go:738 msgid "GLOBAL" msgstr "" @@ -2473,7 +2468,7 @@ msgstr "" msgid "Generate manpages for all commands" msgstr "" -#: lxc/remote.go:159 lxc/remote.go:397 +#: lxc/remote.go:160 lxc/remote.go:398 msgid "Generating a client certificate. This may take a minute..." msgstr "" @@ -2505,7 +2500,7 @@ msgstr "" msgid "Get the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:386 +#: lxc/network_load_balancer.go:391 msgid "Get the key as a network load balancer property" msgstr "" @@ -2517,11 +2512,11 @@ msgstr "" msgid "Get the key as a network property" msgstr "" -#: lxc/network_zone.go:214 +#: lxc/network_zone.go:215 msgid "Get the key as a network zone property" msgstr "" -#: lxc/network_zone.go:814 +#: lxc/network_zone.go:819 msgid "Get the key as a network zone record property" msgstr "" @@ -2533,7 +2528,7 @@ msgstr "" msgid "Get the key as a project property" msgstr "" -#: lxc/storage_bucket.go:380 +#: lxc/storage_bucket.go:385 msgid "Get the key as a storage bucket property" msgstr "" @@ -2573,7 +2568,7 @@ msgstr "" msgid "Get values for network forward configuration keys" msgstr "" -#: lxc/network_load_balancer.go:382 lxc/network_load_balancer.go:383 +#: lxc/network_load_balancer.go:387 lxc/network_load_balancer.go:388 msgid "Get values for network load balancer configuration keys" msgstr "" @@ -2581,11 +2576,11 @@ msgstr "" msgid "Get values for network peer configuration keys" msgstr "" -#: lxc/network_zone.go:210 lxc/network_zone.go:211 +#: lxc/network_zone.go:211 lxc/network_zone.go:212 msgid "Get values for network zone configuration keys" msgstr "" -#: lxc/network_zone.go:810 lxc/network_zone.go:811 +#: lxc/network_zone.go:815 lxc/network_zone.go:816 msgid "Get values for network zone record configuration keys" msgstr "" @@ -2597,7 +2592,7 @@ msgstr "" msgid "Get values for project configuration keys" msgstr "" -#: lxc/storage_bucket.go:376 lxc/storage_bucket.go:377 +#: lxc/storage_bucket.go:381 lxc/storage_bucket.go:382 msgid "Get values for storage bucket configuration keys" msgstr "" @@ -2737,7 +2732,7 @@ msgstr "" msgid "If the snapshot name already exists, delete and create a new one" msgstr "" -#: lxc/main.go:398 +#: lxc/main.go:400 msgid "" "If this is your first time running LXD on this machine, you should also run: " "lxd init" @@ -2894,7 +2889,7 @@ msgstr "" msgid "Instance type" msgstr "" -#: lxc/remote.go:349 +#: lxc/remote.go:350 #, c-format msgid "Invalid URL scheme \"%s\" in \"%s\"" msgstr "" @@ -2966,7 +2961,7 @@ msgstr "" msgid "Invalid new snapshot name, parent volume must be the same as source" msgstr "" -#: lxc/main.go:498 +#: lxc/main.go:502 msgid "Invalid number of arguments" msgstr "" @@ -2975,7 +2970,7 @@ msgstr "" msgid "Invalid path %s" msgstr "" -#: lxc/remote.go:338 +#: lxc/remote.go:339 #, c-format msgid "Invalid protocol: %s" msgstr "" @@ -3023,7 +3018,7 @@ msgstr "" #: lxc/list.go:597 lxc/network.go:1059 lxc/network_forward.go:155 #: lxc/network_load_balancer.go:157 lxc/operation.go:177 -#: lxc/storage_bucket.go:511 lxc/storage_volume.go:1569 lxc/warning.go:220 +#: lxc/storage_bucket.go:516 lxc/storage_volume.go:1569 lxc/warning.go:220 msgid "LOCATION" msgstr "" @@ -3031,7 +3026,7 @@ msgstr "" msgid "LXD - Command line client" msgstr "" -#: lxc/console.go:382 +#: lxc/console.go:387 msgid "LXD automatically uses either spicy or remote-viewer when present." msgstr "" @@ -3121,15 +3116,15 @@ msgstr "" msgid "List available network peers" msgstr "" -#: lxc/network_zone.go:85 +#: lxc/network_zone.go:86 msgid "List available network zone" msgstr "" -#: lxc/network_zone.go:688 lxc/network_zone.go:689 +#: lxc/network_zone.go:693 lxc/network_zone.go:694 msgid "List available network zone records" msgstr "" -#: lxc/network_zone.go:84 +#: lxc/network_zone.go:85 msgid "List available network zoneS" msgstr "" @@ -3318,11 +3313,11 @@ msgstr "" msgid "List projects" msgstr "" -#: lxc/storage_bucket.go:766 lxc/storage_bucket.go:768 +#: lxc/storage_bucket.go:771 lxc/storage_bucket.go:773 msgid "List storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:451 lxc/storage_bucket.go:453 +#: lxc/storage_bucket.go:456 lxc/storage_bucket.go:458 msgid "List storage buckets" msgstr "" @@ -3350,7 +3345,7 @@ msgid "" " U - Current disk usage" msgstr "" -#: lxc/remote.go:668 lxc/remote.go:669 +#: lxc/remote.go:669 lxc/remote.go:670 msgid "List the available remotes" msgstr "" @@ -3577,11 +3572,11 @@ msgstr "" msgid "Manage network forwards" msgstr "" -#: lxc/network_load_balancer.go:782 lxc/network_load_balancer.go:783 +#: lxc/network_load_balancer.go:787 lxc/network_load_balancer.go:788 msgid "Manage network load balancer backends" msgstr "" -#: lxc/network_load_balancer.go:947 lxc/network_load_balancer.go:948 +#: lxc/network_load_balancer.go:952 lxc/network_load_balancer.go:953 msgid "Manage network load balancer ports" msgstr "" @@ -3593,15 +3588,15 @@ msgstr "" msgid "Manage network peerings" msgstr "" -#: lxc/network_zone.go:1224 lxc/network_zone.go:1225 +#: lxc/network_zone.go:1229 lxc/network_zone.go:1230 msgid "Manage network zone record entries" msgstr "" -#: lxc/network_zone.go:631 lxc/network_zone.go:632 +#: lxc/network_zone.go:636 lxc/network_zone.go:637 msgid "Manage network zone records" msgstr "" -#: lxc/network_zone.go:27 lxc/network_zone.go:28 +#: lxc/network_zone.go:28 lxc/network_zone.go:29 msgid "Manage network zones" msgstr "" @@ -3617,11 +3612,11 @@ msgstr "" msgid "Manage projects" msgstr "" -#: lxc/storage_bucket.go:726 +#: lxc/storage_bucket.go:731 msgid "Manage storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:727 +#: lxc/storage_bucket.go:732 msgid "Manage storage bucket keys." msgstr "" @@ -3649,7 +3644,7 @@ msgid "" "\"custom\" (user created) volumes." msgstr "" -#: lxc/remote.go:33 lxc/remote.go:34 +#: lxc/remote.go:34 lxc/remote.go:35 msgid "Manage the list of remote servers" msgstr "" @@ -3730,12 +3725,12 @@ msgid "" "Minimum level for log messages (only available when using pretty format)" msgstr "" -#: lxc/storage_bucket.go:111 lxc/storage_bucket.go:211 -#: lxc/storage_bucket.go:287 lxc/storage_bucket.go:406 -#: lxc/storage_bucket.go:563 lxc/storage_bucket.go:655 -#: lxc/storage_bucket.go:797 lxc/storage_bucket.go:878 -#: lxc/storage_bucket.go:953 lxc/storage_bucket.go:1032 -#: lxc/storage_bucket.go:1155 +#: lxc/storage_bucket.go:116 lxc/storage_bucket.go:216 +#: lxc/storage_bucket.go:292 lxc/storage_bucket.go:411 +#: lxc/storage_bucket.go:568 lxc/storage_bucket.go:660 +#: lxc/storage_bucket.go:802 lxc/storage_bucket.go:883 +#: lxc/storage_bucket.go:958 lxc/storage_bucket.go:1037 +#: lxc/storage_bucket.go:1160 msgid "Missing bucket name" msgstr "" @@ -3779,8 +3774,8 @@ msgstr "" msgid "Missing instance name" msgstr "" -#: lxc/storage_bucket.go:882 lxc/storage_bucket.go:957 -#: lxc/storage_bucket.go:1036 lxc/storage_bucket.go:1159 +#: lxc/storage_bucket.go:887 lxc/storage_bucket.go:962 +#: lxc/storage_bucket.go:1041 lxc/storage_bucket.go:1164 msgid "Missing key name" msgstr "" @@ -3788,10 +3783,10 @@ msgstr "" #: lxc/network_forward.go:481 lxc/network_forward.go:627 #: lxc/network_forward.go:746 lxc/network_forward.go:823 #: lxc/network_forward.go:889 lxc/network_load_balancer.go:201 -#: lxc/network_load_balancer.go:411 lxc/network_load_balancer.go:484 -#: lxc/network_load_balancer.go:630 lxc/network_load_balancer.go:750 -#: lxc/network_load_balancer.go:826 lxc/network_load_balancer.go:890 -#: lxc/network_load_balancer.go:991 lxc/network_load_balancer.go:1053 +#: lxc/network_load_balancer.go:416 lxc/network_load_balancer.go:489 +#: lxc/network_load_balancer.go:635 lxc/network_load_balancer.go:755 +#: lxc/network_load_balancer.go:831 lxc/network_load_balancer.go:895 +#: lxc/network_load_balancer.go:996 lxc/network_load_balancer.go:1058 msgid "Missing listen address" msgstr "" @@ -3816,26 +3811,26 @@ msgstr "" #: lxc/network_forward.go:477 lxc/network_forward.go:623 #: lxc/network_forward.go:742 lxc/network_forward.go:819 #: lxc/network_forward.go:885 lxc/network_load_balancer.go:123 -#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:261 -#: lxc/network_load_balancer.go:407 lxc/network_load_balancer.go:480 -#: lxc/network_load_balancer.go:626 lxc/network_load_balancer.go:746 -#: lxc/network_load_balancer.go:822 lxc/network_load_balancer.go:886 -#: lxc/network_load_balancer.go:987 lxc/network_load_balancer.go:1049 +#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:266 +#: lxc/network_load_balancer.go:412 lxc/network_load_balancer.go:485 +#: lxc/network_load_balancer.go:631 lxc/network_load_balancer.go:751 +#: lxc/network_load_balancer.go:827 lxc/network_load_balancer.go:891 +#: lxc/network_load_balancer.go:992 lxc/network_load_balancer.go:1054 #: lxc/network_peer.go:110 lxc/network_peer.go:180 lxc/network_peer.go:237 #: lxc/network_peer.go:355 lxc/network_peer.go:426 lxc/network_peer.go:556 #: lxc/network_peer.go:665 msgid "Missing network name" msgstr "" -#: lxc/network_zone.go:178 lxc/network_zone.go:234 lxc/network_zone.go:294 -#: lxc/network_zone.go:382 lxc/network_zone.go:503 lxc/network_zone.go:606 -#: lxc/network_zone.go:712 lxc/network_zone.go:780 lxc/network_zone.go:892 -#: lxc/network_zone.go:976 lxc/network_zone.go:1197 lxc/network_zone.go:1262 -#: lxc/network_zone.go:1307 +#: lxc/network_zone.go:179 lxc/network_zone.go:235 lxc/network_zone.go:299 +#: lxc/network_zone.go:387 lxc/network_zone.go:508 lxc/network_zone.go:611 +#: lxc/network_zone.go:717 lxc/network_zone.go:785 lxc/network_zone.go:897 +#: lxc/network_zone.go:981 lxc/network_zone.go:1202 lxc/network_zone.go:1267 +#: lxc/network_zone.go:1312 msgid "Missing network zone name" msgstr "" -#: lxc/network_zone.go:833 lxc/network_zone.go:1095 +#: lxc/network_zone.go:838 lxc/network_zone.go:1100 msgid "Missing network zone record name" msgstr "" @@ -3845,13 +3840,13 @@ msgid "Missing peer name" msgstr "" #: lxc/storage.go:194 lxc/storage.go:264 lxc/storage.go:370 lxc/storage.go:440 -#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:107 -#: lxc/storage_bucket.go:207 lxc/storage_bucket.go:283 -#: lxc/storage_bucket.go:402 lxc/storage_bucket.go:477 -#: lxc/storage_bucket.go:559 lxc/storage_bucket.go:651 -#: lxc/storage_bucket.go:793 lxc/storage_bucket.go:874 -#: lxc/storage_bucket.go:949 lxc/storage_bucket.go:1028 -#: lxc/storage_bucket.go:1151 lxc/storage_volume.go:189 +#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:112 +#: lxc/storage_bucket.go:212 lxc/storage_bucket.go:288 +#: lxc/storage_bucket.go:407 lxc/storage_bucket.go:482 +#: lxc/storage_bucket.go:564 lxc/storage_bucket.go:656 +#: lxc/storage_bucket.go:798 lxc/storage_bucket.go:879 +#: lxc/storage_bucket.go:954 lxc/storage_bucket.go:1033 +#: lxc/storage_bucket.go:1156 lxc/storage_volume.go:189 #: lxc/storage_volume.go:287 lxc/storage_volume.go:583 #: lxc/storage_volume.go:660 lxc/storage_volume.go:735 #: lxc/storage_volume.go:817 lxc/storage_volume.go:919 @@ -3971,7 +3966,7 @@ msgstr "" msgid "Moving the storage volume: %s" msgstr "" -#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1097 +#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1102 msgid "Multiple ports match. Use --force to remove them all" msgstr "" @@ -3990,10 +3985,10 @@ 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:677 lxc/project.go:498 -#: lxc/remote.go:731 lxc/storage.go:638 lxc/storage_bucket.go:506 -#: lxc/storage_bucket.go:826 lxc/storage_volume.go:1561 +#: lxc/network_acl.go:147 lxc/network_peer.go:139 lxc/network_zone.go:139 +#: lxc/network_zone.go:746 lxc/profile.go:677 lxc/project.go:498 +#: lxc/remote.go:732 lxc/storage.go:638 lxc/storage_bucket.go:511 +#: lxc/storage_bucket.go:831 lxc/storage_volume.go:1561 msgid "NAME" msgstr "" @@ -4019,7 +4014,7 @@ msgstr "" #: lxc/network.go:957 lxc/operation.go:154 lxc/project.go:456 #: lxc/project.go:461 lxc/project.go:466 lxc/project.go:471 lxc/project.go:476 -#: lxc/project.go:481 lxc/remote.go:691 lxc/remote.go:696 lxc/remote.go:701 +#: lxc/project.go:481 lxc/remote.go:692 lxc/remote.go:697 lxc/remote.go:702 msgid "NO" msgstr "" @@ -4046,7 +4041,7 @@ msgstr "" msgid "Name" msgstr "" -#: lxc/remote.go:141 +#: lxc/remote.go:142 msgid "Name of the project to use for this remote:" msgstr "" @@ -4095,12 +4090,12 @@ msgstr "" msgid "Network ACL %s renamed to %s" msgstr "" -#: lxc/network_zone.go:336 +#: lxc/network_zone.go:341 #, c-format msgid "Network Zone %s created" msgstr "" -#: lxc/network_zone.go:616 +#: lxc/network_zone.go:621 #, c-format msgid "Network Zone %s deleted" msgstr "" @@ -4115,12 +4110,12 @@ msgstr "" msgid "Network forward %s deleted" msgstr "" -#: lxc/network_load_balancer.go:365 +#: lxc/network_load_balancer.go:370 #, c-format msgid "Network load balancer %s created" msgstr "" -#: lxc/network_load_balancer.go:767 +#: lxc/network_load_balancer.go:772 #, c-format msgid "Network load balancer %s deleted" msgstr "" @@ -4158,12 +4153,12 @@ msgstr "" msgid "Network usage:" msgstr "" -#: lxc/network_zone.go:934 +#: lxc/network_zone.go:939 #, c-format msgid "Network zone record %s created" msgstr "" -#: lxc/network_zone.go:1207 +#: lxc/network_zone.go:1212 #, c-format msgid "Network zone record %s deleted" msgstr "" @@ -4198,11 +4193,11 @@ msgstr "" msgid "No device found for this storage volume" msgstr "" -#: lxc/network_load_balancer.go:921 +#: lxc/network_load_balancer.go:926 msgid "No matching backend found" msgstr "" -#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1108 +#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1113 msgid "No matching port(s) found" msgstr "" @@ -4248,7 +4243,7 @@ msgstr "" msgid "Only \"custom\" volumes can be snapshotted" msgstr "" -#: lxc/remote.go:332 +#: lxc/remote.go:333 msgid "Only https URLs are supported for simplestreams" msgstr "" @@ -4273,7 +4268,7 @@ msgstr "" msgid "Optimized Storage" msgstr "" -#: lxc/main.go:96 +#: lxc/main.go:97 msgid "Override the source project" msgstr "" @@ -4319,11 +4314,11 @@ msgstr "" msgid "PROJECT" msgstr "" -#: lxc/remote.go:733 +#: lxc/remote.go:734 msgid "PROTOCOL" msgstr "" -#: lxc/image.go:1073 lxc/remote.go:735 +#: lxc/image.go:1073 lxc/remote.go:736 msgid "PUBLIC" msgstr "" @@ -4339,7 +4334,7 @@ msgstr "" msgid "Partitions:" msgstr "" -#: lxc/main.go:361 +#: lxc/main.go:363 #, c-format msgid "Password for %s: " msgstr "" @@ -4352,7 +4347,7 @@ msgstr "" msgid "Perform an incremental copy" msgstr "" -#: lxc/remote.go:182 +#: lxc/remote.go:183 msgid "Please provide an alternate server address (empty to abort):" msgstr "" @@ -4364,7 +4359,7 @@ msgstr "" msgid "Please provide cluster member name: " msgstr "" -#: lxc/remote.go:462 +#: lxc/remote.go:463 msgid "Please type 'y', 'n' or the fingerprint:" msgstr "" @@ -4386,10 +4381,10 @@ msgstr "" #: lxc/config.go:1278 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/network_load_balancer.go:695 lxc/network_peer.go:611 +#: lxc/network_zone.go:557 lxc/network_zone.go:1149 lxc/profile.go:539 +#: lxc/project.go:316 lxc/storage.go:311 lxc/storage_bucket.go:349 +#: lxc/storage_bucket.go:1098 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 "" @@ -4398,7 +4393,7 @@ msgstr "" msgid "Pretty rendering (short for --format=pretty)" msgstr "" -#: lxc/main.go:94 +#: lxc/main.go:95 msgid "Print help" msgstr "" @@ -4406,7 +4401,7 @@ msgstr "" msgid "Print the raw response" msgstr "" -#: lxc/main.go:93 +#: lxc/main.go:94 msgid "Print version number" msgstr "" @@ -4495,7 +4490,7 @@ msgstr "" msgid "Project %s renamed to %s" msgstr "" -#: lxc/remote.go:106 +#: lxc/remote.go:107 msgid "Project to use for the remote" msgstr "" @@ -4593,7 +4588,7 @@ msgid "" "pool \"default\"." msgstr "" -#: lxc/remote.go:105 +#: lxc/remote.go:106 msgid "Public image server" msgstr "" @@ -4641,7 +4636,7 @@ msgstr "" msgid "RESOURCE" msgstr "" -#: lxc/storage_bucket.go:828 +#: lxc/storage_bucket.go:833 msgid "ROLE" msgstr "" @@ -4684,45 +4679,45 @@ msgstr "" msgid "Refreshing the image: %s" msgstr "" -#: lxc/remote.go:785 +#: lxc/remote.go:786 #, c-format msgid "Remote %s already exists" msgstr "" -#: lxc/project.go:769 lxc/remote.go:776 lxc/remote.go:849 lxc/remote.go:905 -#: lxc/remote.go:945 +#: lxc/project.go:769 lxc/remote.go:777 lxc/remote.go:850 lxc/remote.go:906 +#: lxc/remote.go:946 #, c-format msgid "Remote %s doesn't exist" msgstr "" -#: lxc/remote.go:301 +#: lxc/remote.go:302 #, c-format msgid "Remote %s exists as <%s>" msgstr "" -#: lxc/remote.go:857 +#: lxc/remote.go:858 #, c-format msgid "Remote %s is global and cannot be removed" msgstr "" -#: lxc/remote.go:780 lxc/remote.go:853 lxc/remote.go:949 +#: lxc/remote.go:781 lxc/remote.go:854 lxc/remote.go:950 #, c-format msgid "Remote %s is static and cannot be modified" msgstr "" -#: lxc/remote.go:290 +#: lxc/remote.go:291 msgid "Remote address must not be empty" msgstr "" -#: lxc/remote.go:101 +#: lxc/remote.go:102 msgid "Remote admin password" msgstr "" -#: lxc/remote.go:295 +#: lxc/remote.go:296 msgid "Remote names may not contain colons" msgstr "" -#: lxc/remote.go:102 +#: lxc/remote.go:103 msgid "Remote trust token" msgstr "" @@ -4748,7 +4743,7 @@ msgstr "" msgid "Remove a member from the cluster" msgstr "" -#: lxc/network_zone.go:1285 +#: lxc/network_zone.go:1290 msgid "Remove a network zone record entry" msgstr "" @@ -4756,7 +4751,7 @@ msgstr "" msgid "Remove aliases" msgstr "" -#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1025 +#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1030 msgid "Remove all ports that match" msgstr "" @@ -4764,15 +4759,15 @@ msgstr "" msgid "Remove all rules that match" msgstr "" -#: lxc/network_load_balancer.go:862 +#: lxc/network_load_balancer.go:867 msgid "Remove backend from a load balancer" msgstr "" -#: lxc/network_load_balancer.go:861 +#: lxc/network_load_balancer.go:866 msgid "Remove backends from a load balancer" msgstr "" -#: lxc/network_zone.go:1286 +#: lxc/network_zone.go:1291 msgid "Remove entries from a network zone record" msgstr "" @@ -4796,7 +4791,7 @@ msgstr "" msgid "Remove ports from a forward" msgstr "" -#: lxc/network_load_balancer.go:1023 lxc/network_load_balancer.go:1024 +#: lxc/network_load_balancer.go:1028 lxc/network_load_balancer.go:1029 msgid "Remove ports from a load balancer" msgstr "" @@ -4804,7 +4799,7 @@ msgstr "" msgid "Remove profiles from instances" msgstr "" -#: lxc/remote.go:827 lxc/remote.go:828 +#: lxc/remote.go:828 lxc/remote.go:829 msgid "Remove remotes" msgstr "" @@ -4861,7 +4856,7 @@ msgstr "" msgid "Rename projects" msgstr "" -#: lxc/remote.go:754 lxc/remote.go:755 +#: lxc/remote.go:755 lxc/remote.go:756 msgid "Rename remotes" msgstr "" @@ -4939,7 +4934,7 @@ msgid "Restrict the certificate to one or more projects" msgstr "" #: lxc/console.go:44 -msgid "Retrieve the instance's console log" +msgid "Retrieve the container's console log" msgstr "" #: lxc/init.go:347 @@ -4955,7 +4950,7 @@ msgstr "" msgid "Revoke cluster member join token" msgstr "" -#: lxc/storage_bucket.go:851 +#: lxc/storage_bucket.go:856 msgid "Role (admin or read-only)" msgstr "" @@ -5006,7 +5001,7 @@ msgstr "" msgid "STATE" msgstr "" -#: lxc/remote.go:736 +#: lxc/remote.go:737 msgid "STATIC" msgstr "" @@ -5030,11 +5025,11 @@ msgstr "" msgid "STP" msgstr "" -#: lxc/storage_bucket.go:853 +#: lxc/storage_bucket.go:858 msgid "Secret key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:909 +#: lxc/storage_bucket.go:914 #, c-format msgid "Secret key: %s" msgstr "" @@ -5043,19 +5038,19 @@ msgstr "" msgid "Send a raw query to LXD" msgstr "" -#: lxc/remote.go:104 +#: lxc/remote.go:105 msgid "Server authentication type (tls or oidc)" msgstr "" -#: lxc/remote.go:460 +#: lxc/remote.go:461 msgid "Server certificate NACKed by user" msgstr "" -#: lxc/remote.go:599 +#: lxc/remote.go:600 msgid "Server doesn't trust us after authentication" msgstr "" -#: lxc/remote.go:103 +#: lxc/remote.go:104 msgid "Server protocol (lxd or simplestreams)" msgstr "" @@ -5154,11 +5149,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_load_balancer.go:450 +#: lxc/network_load_balancer.go:455 msgid "Set network load balancer keys" msgstr "" -#: lxc/network_load_balancer.go:451 +#: lxc/network_load_balancer.go:456 msgid "" "Set network load balancer keys\n" "\n" @@ -5180,11 +5175,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:353 +#: lxc/network_zone.go:358 msgid "Set network zone configuration keys" msgstr "" -#: lxc/network_zone.go:354 +#: lxc/network_zone.go:359 msgid "" "Set network zone configuration keys\n" "\n" @@ -5193,7 +5188,7 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:951 lxc/network_zone.go:952 +#: lxc/network_zone.go:956 lxc/network_zone.go:957 msgid "Set network zone record configuration keys" msgstr "" @@ -5223,11 +5218,11 @@ msgid "" " lxc project set [:] " msgstr "" -#: lxc/storage_bucket.go:529 +#: lxc/storage_bucket.go:534 msgid "Set storage bucket configuration keys" msgstr "" -#: lxc/storage_bucket.go:530 +#: lxc/storage_bucket.go:535 msgid "" "Set storage bucket configuration keys\n" "\n" @@ -5262,7 +5257,7 @@ msgid "" " lxc storage volume set [:] [/] " msgstr "" -#: lxc/remote.go:923 lxc/remote.go:924 +#: lxc/remote.go:924 lxc/remote.go:925 msgid "Set the URL for the remote" msgstr "" @@ -5290,7 +5285,7 @@ msgstr "" msgid "Set the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:458 +#: lxc/network_load_balancer.go:463 msgid "Set the key as a network load balancer property" msgstr "" @@ -5302,11 +5297,11 @@ msgstr "" msgid "Set the key as a network property" msgstr "" -#: lxc/network_zone.go:361 +#: lxc/network_zone.go:366 msgid "Set the key as a network zone property" msgstr "" -#: lxc/network_zone.go:957 +#: lxc/network_zone.go:962 msgid "Set the key as a network zone record property" msgstr "" @@ -5318,7 +5313,7 @@ msgstr "" msgid "Set the key as a project property" msgstr "" -#: lxc/storage_bucket.go:537 +#: lxc/storage_bucket.go:542 msgid "Set the key as a storage bucket property" msgstr "" @@ -5338,11 +5333,11 @@ msgstr "" msgid "Setup SSH SFTP listener on address:port instead of mounting" msgstr "" -#: lxc/main.go:97 +#: lxc/main.go:98 msgid "Show all debug messages" msgstr "" -#: lxc/main.go:98 +#: lxc/main.go:99 msgid "Show all information messages" msgstr "" @@ -5411,7 +5406,7 @@ msgstr "" msgid "Show instance or server information" msgstr "" -#: lxc/main.go:271 lxc/main.go:272 +#: lxc/main.go:272 lxc/main.go:273 msgid "Show less common commands" msgstr "" @@ -5443,15 +5438,15 @@ msgstr "" msgid "Show network peer configurations" msgstr "" -#: lxc/network_zone.go:155 lxc/network_zone.go:156 +#: lxc/network_zone.go:156 lxc/network_zone.go:157 msgid "Show network zone configurations" msgstr "" -#: lxc/network_zone.go:758 +#: lxc/network_zone.go:763 msgid "Show network zone record configuration" msgstr "" -#: lxc/network_zone.go:759 +#: lxc/network_zone.go:764 msgid "Show network zone record configurations" msgstr "" @@ -5463,11 +5458,11 @@ msgstr "" msgid "Show project options" msgstr "" -#: lxc/storage_bucket.go:623 lxc/storage_bucket.go:624 +#: lxc/storage_bucket.go:628 lxc/storage_bucket.go:629 msgid "Show storage bucket configurations" msgstr "" -#: lxc/storage_bucket.go:1123 lxc/storage_bucket.go:1124 +#: lxc/storage_bucket.go:1128 lxc/storage_bucket.go:1129 msgid "Show storage bucket key configurations" msgstr "" @@ -5493,7 +5488,7 @@ msgid "" "that are granted via identity provider group mappings. \n" msgstr "" -#: lxc/remote.go:630 lxc/remote.go:631 +#: lxc/remote.go:631 lxc/remote.go:632 msgid "Show the default remote" msgstr "" @@ -5617,22 +5612,22 @@ msgstr "" msgid "Stopping the instance failed: %s" msgstr "" -#: lxc/storage_bucket.go:161 +#: lxc/storage_bucket.go:166 #, c-format msgid "Storage bucket %s created" msgstr "" -#: lxc/storage_bucket.go:228 +#: lxc/storage_bucket.go:233 #, c-format msgid "Storage bucket %s deleted" msgstr "" -#: lxc/storage_bucket.go:907 +#: lxc/storage_bucket.go:912 #, c-format msgid "Storage bucket key %s added" msgstr "" -#: lxc/storage_bucket.go:973 +#: lxc/storage_bucket.go:978 #, c-format msgid "Storage bucket key %s removed" msgstr "" @@ -5705,7 +5700,7 @@ msgstr "" msgid "Switch the current project" msgstr "" -#: lxc/remote.go:883 lxc/remote.go:884 +#: lxc/remote.go:884 lxc/remote.go:885 msgid "Switch the default remote" msgstr "" @@ -5820,7 +5815,7 @@ msgstr "" msgid "The property %q does not exist on the instance snapshot %s/%s: %v" msgstr "" -#: lxc/network_load_balancer.go:424 +#: lxc/network_load_balancer.go:429 #, c-format msgid "The property %q does not exist on the load balancer %q: %v" msgstr "" @@ -5845,12 +5840,12 @@ msgstr "" msgid "The property %q does not exist on the network peer %q: %v" msgstr "" -#: lxc/network_zone.go:246 +#: lxc/network_zone.go:247 #, c-format msgid "The property %q does not exist on the network zone %q: %v" msgstr "" -#: lxc/network_zone.go:845 +#: lxc/network_zone.go:850 #, c-format msgid "The property %q does not exist on the network zone record %q: %v" msgstr "" @@ -5865,7 +5860,7 @@ msgstr "" msgid "The property %q does not exist on the project %q: %v" msgstr "" -#: lxc/storage_bucket.go:426 +#: lxc/storage_bucket.go:431 #, c-format msgid "The property %q does not exist on the storage bucket %q: %v" msgstr "" @@ -5919,7 +5914,7 @@ msgstr "" msgid "This LXD server is not available on the network" msgstr "" -#: lxc/main.go:293 +#: lxc/main.go:294 msgid "" "This client hasn't been configured to use a remote LXD server yet.\n" "As your platform can't run native Linux instances, you must connect to a " @@ -5951,11 +5946,11 @@ msgstr "" msgid "To create a new network, use: lxc network create" msgstr "" -#: lxc/console.go:210 +#: lxc/console.go:215 msgid "To detach from the console, press: +a q" msgstr "" -#: lxc/main.go:403 +#: lxc/main.go:406 msgid "" "To start your first container, try: lxc launch ubuntu:24.04\n" "Or for a virtual machine: lxc launch ubuntu:24.04 --vm" @@ -6053,7 +6048,7 @@ msgstr "" msgid "UPLOAD DATE" msgstr "" -#: lxc/cluster.go:184 lxc/remote.go:732 +#: lxc/cluster.go:184 lxc/remote.go:733 msgid "URL" msgstr "" @@ -6062,7 +6057,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:679 lxc/project.go:506 +#: lxc/network_zone.go:141 lxc/profile.go:679 lxc/project.go:506 #: lxc/storage.go:647 lxc/storage_volume.go:1564 msgid "USED BY" msgstr "" @@ -6081,7 +6076,7 @@ msgstr "" msgid "Unable to create a temporary file: %v" msgstr "" -#: lxc/remote.go:213 lxc/remote.go:247 +#: lxc/remote.go:214 lxc/remote.go:248 msgid "Unavailable remote server" msgstr "" @@ -6101,7 +6096,7 @@ msgstr "" msgid "Unknown column shorthand char '%c' in '%s'" msgstr "" -#: lxc/console.go:159 +#: lxc/console.go:164 #, c-format msgid "Unknown console type %q" msgstr "" @@ -6161,11 +6156,11 @@ msgstr "" msgid "Unset network forward keys" msgstr "" -#: lxc/network_load_balancer.go:548 +#: lxc/network_load_balancer.go:553 msgid "Unset network load balancer configuration keys" msgstr "" -#: lxc/network_load_balancer.go:549 +#: lxc/network_load_balancer.go:554 msgid "Unset network load balancer keys" msgstr "" @@ -6177,11 +6172,11 @@ msgstr "" msgid "Unset network peer keys" msgstr "" -#: lxc/network_zone.go:433 lxc/network_zone.go:434 +#: lxc/network_zone.go:438 lxc/network_zone.go:439 msgid "Unset network zone configuration keys" msgstr "" -#: lxc/network_zone.go:1027 lxc/network_zone.go:1028 +#: lxc/network_zone.go:1032 lxc/network_zone.go:1033 msgid "Unset network zone record configuration keys" msgstr "" @@ -6193,7 +6188,7 @@ msgstr "" msgid "Unset project configuration keys" msgstr "" -#: lxc/storage_bucket.go:692 lxc/storage_bucket.go:693 +#: lxc/storage_bucket.go:697 lxc/storage_bucket.go:698 msgid "Unset storage bucket configuration keys" msgstr "" @@ -6217,7 +6212,7 @@ msgstr "" msgid "Unset the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:552 +#: lxc/network_load_balancer.go:557 msgid "Unset the key as a network load balancer property" msgstr "" @@ -6229,11 +6224,11 @@ msgstr "" msgid "Unset the key as a network property" msgstr "" -#: lxc/network_zone.go:437 +#: lxc/network_zone.go:442 msgid "Unset the key as a network zone property" msgstr "" -#: lxc/network_zone.go:1031 +#: lxc/network_zone.go:1036 msgid "Unset the key as a network zone record property" msgstr "" @@ -6245,7 +6240,7 @@ msgstr "" msgid "Unset the key as a project property" msgstr "" -#: lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:701 msgid "Unset the key as a storage bucket property" msgstr "" @@ -6307,7 +6302,7 @@ msgid "" "Use storage driver optimized format (can only be restored on a similar pool)" msgstr "" -#: lxc/main.go:100 +#: lxc/main.go:101 msgid "Use with help or --help to view sub-commands" msgstr "" @@ -6404,7 +6399,7 @@ msgstr "" #: lxc/network.go:959 lxc/operation.go:156 lxc/project.go:458 #: lxc/project.go:463 lxc/project.go:468 lxc/project.go:473 lxc/project.go:478 -#: lxc/project.go:483 lxc/remote.go:693 lxc/remote.go:698 lxc/remote.go:703 +#: lxc/project.go:483 lxc/remote.go:694 lxc/remote.go:699 lxc/remote.go:704 msgid "YES" msgstr "" @@ -6439,7 +6434,7 @@ 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/network.go:909 lxc/network_acl.go:91 lxc/network_zone.go:83 #: 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 "[:]" @@ -6502,19 +6497,19 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:154 lxc/network_zone.go:463 lxc/network_zone.go:581 +#: lxc/network_zone.go:155 lxc/network_zone.go:468 lxc/network_zone.go:586 msgid "[:]" msgstr "" -#: lxc/network_zone.go:209 lxc/network_zone.go:432 +#: lxc/network_zone.go:210 lxc/network_zone.go:437 msgid "[:] " msgstr "" -#: lxc/network_zone.go:352 +#: lxc/network_zone.go:357 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:269 +#: lxc/network_zone.go:270 msgid "[:] [key=value...]" msgstr "" @@ -6760,30 +6755,30 @@ msgstr "" #: lxc/network_forward.go:169 lxc/network_forward.go:574 #: lxc/network_forward.go:715 lxc/network_load_balancer.go:171 -#: lxc/network_load_balancer.go:577 lxc/network_load_balancer.go:719 +#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:724 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:860 +#: lxc/network_load_balancer.go:865 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:796 +#: lxc/network_load_balancer.go:801 msgid "" "[:] " "[]" msgstr "" #: lxc/network_forward.go:377 lxc/network_forward.go:544 -#: lxc/network_load_balancer.go:381 lxc/network_load_balancer.go:547 +#: lxc/network_load_balancer.go:386 lxc/network_load_balancer.go:552 msgid "[:] " msgstr "" -#: lxc/network_forward.go:446 lxc/network_load_balancer.go:449 +#: lxc/network_forward.go:446 lxc/network_load_balancer.go:454 msgid "[:] =..." msgstr "" -#: lxc/network_load_balancer.go:961 +#: lxc/network_load_balancer.go:966 msgid "" "[:] " "[,...]" @@ -6795,7 +6790,7 @@ msgid "" " []" msgstr "" -#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1022 +#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1027 msgid "[:] [] []" msgstr "" @@ -6846,7 +6841,7 @@ msgid "[:]" msgstr "" #: lxc/storage.go:167 lxc/storage.go:218 lxc/storage.go:412 lxc/storage.go:759 -#: lxc/storage_bucket.go:449 +#: lxc/storage_bucket.go:454 msgid "[:]" msgstr "" @@ -6854,18 +6849,18 @@ msgstr "" msgid "[:] []" msgstr "" -#: lxc/storage_bucket.go:180 lxc/storage_bucket.go:242 -#: lxc/storage_bucket.go:622 lxc/storage_bucket.go:764 +#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:247 +#: lxc/storage_bucket.go:627 lxc/storage_bucket.go:769 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:375 lxc/storage_bucket.go:691 -#: lxc/storage_bucket.go:845 lxc/storage_bucket.go:923 -#: lxc/storage_bucket.go:987 lxc/storage_bucket.go:1122 +#: lxc/storage_bucket.go:380 lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:850 lxc/storage_bucket.go:928 +#: lxc/storage_bucket.go:992 lxc/storage_bucket.go:1127 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:528 +#: lxc/storage_bucket.go:533 msgid "[:] =..." msgstr "" @@ -7009,27 +7004,27 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:686 +#: lxc/network_zone.go:691 msgid "[:]" msgstr "" -#: lxc/network_zone.go:757 lxc/network_zone.go:1056 lxc/network_zone.go:1173 +#: lxc/network_zone.go:762 lxc/network_zone.go:1061 lxc/network_zone.go:1178 msgid "[:] " msgstr "" -#: lxc/network_zone.go:809 lxc/network_zone.go:1026 +#: lxc/network_zone.go:814 lxc/network_zone.go:1031 msgid "[:] " msgstr "" -#: lxc/network_zone.go:950 +#: lxc/network_zone.go:955 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:1238 lxc/network_zone.go:1284 +#: lxc/network_zone.go:1243 lxc/network_zone.go:1289 msgid "[:] " msgstr "" -#: lxc/network_zone.go:868 +#: lxc/network_zone.go:873 msgid "[:] [key=value...]" msgstr "" @@ -7053,7 +7048,7 @@ msgstr "" msgid "[:][] [...]" msgstr "" -#: lxc/remote.go:88 +#: lxc/remote.go:89 msgid "[] " msgstr "" @@ -7061,7 +7056,7 @@ msgstr "" msgid "[[:]]" msgstr "" -#: lxc/project.go:488 lxc/remote.go:722 +#: lxc/project.go:488 lxc/remote.go:723 msgid "current" msgstr "" @@ -7324,6 +7319,23 @@ msgid "" " Create a new OVN network called bar using baz as its uplink network" msgstr "" +#: lxc/network_load_balancer.go:239 +msgid "" +"lxc network load-balancer create n1 127.0.0.1\n" +"\n" +"lxc network load-balancer create n1 127.0.0.1 < config.yaml\n" +" Create network load-balancer for network n1 with configuration from " +"config.yaml" +msgstr "" + +#: lxc/network_zone.go:273 +msgid "" +"lxc network zone create z1\n" +"\n" +"lxc network zone create z1 < config.yaml\n" +" Create network zone z1 with configuration from config.yaml" +msgstr "" + #: lxc/operation.go:195 msgid "" "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n" @@ -7394,26 +7406,36 @@ msgid "" " Restore the snapshot." msgstr "" -#: lxc/storage_bucket.go:245 +#: lxc/storage_bucket.go:84 +msgid "" +"lxc storage bucket create p1 b01\n" +"\tCreate a new storage bucket name b01 in storage pool p1\n" +"\n" +"lxc storage bucket create p1 b01 < config.yaml\n" +"\tCreate a new storage bucket name b01 in storage pool p1 using the content " +"of config.yaml" +msgstr "" + +#: lxc/storage_bucket.go:250 msgid "" "lxc storage bucket edit [:] < bucket.yaml\n" " Update a storage bucket using the content of bucket.yaml." msgstr "" -#: lxc/storage_bucket.go:990 +#: lxc/storage_bucket.go:995 msgid "" "lxc storage bucket edit [:] < key.yaml\n" " Update a storage bucket key using the content of key.yaml." msgstr "" -#: lxc/storage_bucket.go:1125 +#: lxc/storage_bucket.go:1130 msgid "" "lxc storage bucket key show default data foo\n" " Will show the properties of a bucket key called \"foo\" for a bucket " "called \"data\" in the \"default\" pool." msgstr "" -#: lxc/storage_bucket.go:625 +#: lxc/storage_bucket.go:630 msgid "" "lxc storage bucket show default data\n" " Will show the properties of a bucket called \"data\" in the \"default\" " @@ -7432,7 +7454,7 @@ msgid "" "\t\tCreate a new custom volume using backup0.tar.gz as the source." msgstr "" -#: lxc/remote.go:459 +#: lxc/remote.go:460 msgid "n" msgstr "" @@ -7444,7 +7466,7 @@ msgstr "" msgid "no" msgstr "" -#: lxc/remote.go:452 +#: lxc/remote.go:453 msgid "ok (y/n/[fingerprint])?" msgstr "" @@ -7481,7 +7503,7 @@ msgstr "" msgid "used by" msgstr "" -#: lxc/remote.go:461 +#: lxc/remote.go:462 msgid "y" msgstr "" diff --git a/po/ug.po b/po/ug.po index 867535e6ee1c..68347b254af3 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-08-20 09:31+0100\n" +"POT-Creation-Date: 2024-08-30 09:27+0100\n" "PO-Revision-Date: 2022-03-10 15:10+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Uyghur " msgstr "" -#: lxc/remote.go:825 lxc/remote.go:882 +#: lxc/remote.go:826 lxc/remote.go:883 msgid "" msgstr "" -#: lxc/remote.go:922 +#: lxc/remote.go:923 msgid " " msgstr "" -#: lxc/remote.go:752 +#: lxc/remote.go:753 msgid " " msgstr "" @@ -556,7 +556,7 @@ msgstr "" msgid "ARCHITECTURE" msgstr "" -#: lxc/remote.go:734 +#: lxc/remote.go:735 msgid "AUTH TYPE" msgstr "" @@ -564,15 +564,15 @@ msgstr "" msgid "AUTHENTICATION METHOD" msgstr "" -#: lxc/remote.go:100 +#: lxc/remote.go:101 msgid "Accept certificate" msgstr "" -#: lxc/storage_bucket.go:852 +#: lxc/storage_bucket.go:857 msgid "Access key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:908 +#: lxc/storage_bucket.go:913 #, c-format msgid "Access key: %s" msgstr "" @@ -606,19 +606,19 @@ msgstr "" msgid "Add a group to an identity provider group" msgstr "" -#: lxc/network_zone.go:1239 +#: lxc/network_zone.go:1244 msgid "Add a network zone record entry" msgstr "" -#: lxc/network_load_balancer.go:798 +#: lxc/network_load_balancer.go:803 msgid "Add backend to a load balancer" msgstr "" -#: lxc/network_load_balancer.go:797 +#: lxc/network_load_balancer.go:802 msgid "Add backends to a load balancer" msgstr "" -#: lxc/network_zone.go:1240 +#: lxc/network_zone.go:1245 msgid "Add entries to a network zone record" msgstr "" @@ -634,11 +634,11 @@ msgstr "" msgid "Add new aliases" msgstr "" -#: lxc/remote.go:89 +#: lxc/remote.go:90 msgid "Add new remote servers" msgstr "" -#: lxc/remote.go:90 +#: lxc/remote.go:91 msgid "" "Add new remote servers\n" "\n" @@ -679,7 +679,7 @@ msgstr "" msgid "Add ports to a forward" msgstr "" -#: lxc/network_load_balancer.go:962 lxc/network_load_balancer.go:963 +#: lxc/network_load_balancer.go:967 lxc/network_load_balancer.go:968 msgid "Add ports to a load balancer" msgstr "" @@ -700,17 +700,17 @@ msgstr "" msgid "Address: %s" msgstr "" -#: lxc/storage_bucket.go:164 +#: lxc/storage_bucket.go:169 #, c-format msgid "Admin access key: %s" msgstr "" -#: lxc/remote.go:566 +#: lxc/remote.go:567 #, c-format msgid "Admin password (or token) for %s:" msgstr "" -#: lxc/storage_bucket.go:165 +#: lxc/storage_bucket.go:170 #, c-format msgid "Admin secret key: %s" msgstr "" @@ -742,7 +742,7 @@ msgstr "" msgid "All projects" msgstr "" -#: lxc/remote.go:181 +#: lxc/remote.go:182 msgid "All server addresses are unavailable" msgstr "" @@ -765,7 +765,7 @@ msgstr "" msgid "Are you sure you want to %s cluster member %q? (yes/no) [default=no]: " msgstr "" -#: lxc/console.go:383 +#: lxc/console.go:388 msgid "As neither could be found, the raw SPICE socket can be found at:" msgstr "" @@ -813,7 +813,7 @@ msgid "" "as well as retrieve past log entries from it." msgstr "" -#: lxc/remote.go:548 +#: lxc/remote.go:549 #, c-format msgid "Authentication type '%s' not supported by server" msgstr "" @@ -832,11 +832,11 @@ msgstr "" msgid "Auto update: %s" msgstr "" -#: lxc/network_forward.go:240 lxc/network_load_balancer.go:242 +#: lxc/network_forward.go:240 lxc/network_load_balancer.go:247 msgid "Auto-allocate an IPv4 or IPv6 listen address. One of 'ipv4', 'ipv6'." msgstr "" -#: lxc/remote.go:136 +#: lxc/remote.go:137 msgid "Available projects:" msgstr "" @@ -868,8 +868,8 @@ msgid "Bad device override syntax, expecting ,=: %s" msgstr "" #: lxc/network.go:333 lxc/network_acl.go:382 lxc/network_forward.go:293 -#: lxc/network_load_balancer.go:296 lxc/network_peer.go:280 -#: lxc/network_zone.go:324 lxc/network_zone.go:922 lxc/storage_bucket.go:136 +#: lxc/network_load_balancer.go:301 lxc/network_peer.go:280 +#: lxc/network_zone.go:329 lxc/network_zone.go:927 lxc/storage_bucket.go:141 #, c-format msgid "Bad key/value pair: %s" msgstr "" @@ -991,7 +991,7 @@ msgstr "" msgid "Can't read from stdin: %w" msgstr "" -#: lxc/remote.go:861 +#: lxc/remote.go:862 msgid "Can't remove the default remote" msgstr "" @@ -1057,15 +1057,14 @@ msgstr "" msgid "Certificate add token for %s deleted" msgstr "" -#: lxc/remote.go:218 -#, c-format -msgid "" -"Certificate fingerprint mismatch between certificate token and server %q" +#: lxc/remote.go:452 +msgid "Certificate fingerprint" msgstr "" -#: lxc/remote.go:451 +#: lxc/remote.go:219 #, c-format -msgid "Certificate fingerprint: %s" +msgid "" +"Certificate fingerprint mismatch between certificate token and server %q" msgstr "" #: lxc/network.go:893 @@ -1077,7 +1076,7 @@ msgstr "" msgid "Client %s certificate add token:" msgstr "" -#: lxc/remote.go:603 +#: lxc/remote.go:604 msgid "Client certificate now trusted by server:" msgstr "" @@ -1139,18 +1138,18 @@ msgstr "" #: lxc/network_forward.go:456 lxc/network_forward.go:579 #: lxc/network_forward.go:721 lxc/network_forward.go:798 #: lxc/network_forward.go:864 lxc/network_load_balancer.go:176 -#: lxc/network_load_balancer.go:241 lxc/network_load_balancer.go:459 -#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:725 -#: lxc/network_load_balancer.go:801 lxc/network_load_balancer.go:865 -#: lxc/network_load_balancer.go:966 lxc/network_load_balancer.go:1028 +#: lxc/network_load_balancer.go:246 lxc/network_load_balancer.go:464 +#: lxc/network_load_balancer.go:587 lxc/network_load_balancer.go:730 +#: lxc/network_load_balancer.go:806 lxc/network_load_balancer.go:870 +#: lxc/network_load_balancer.go:971 lxc/network_load_balancer.go:1033 #: lxc/storage.go:99 lxc/storage.go:347 lxc/storage.go:418 lxc/storage.go:671 -#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:85 -#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:248 -#: lxc/storage_bucket.go:379 lxc/storage_bucket.go:536 -#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:695 -#: lxc/storage_bucket.go:770 lxc/storage_bucket.go:850 -#: lxc/storage_bucket.go:928 lxc/storage_bucket.go:993 -#: lxc/storage_bucket.go:1129 lxc/storage_volume.go:358 +#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:90 +#: lxc/storage_bucket.go:190 lxc/storage_bucket.go:253 +#: lxc/storage_bucket.go:384 lxc/storage_bucket.go:541 +#: lxc/storage_bucket.go:634 lxc/storage_bucket.go:700 +#: lxc/storage_bucket.go:775 lxc/storage_bucket.go:855 +#: lxc/storage_bucket.go:933 lxc/storage_bucket.go:998 +#: lxc/storage_bucket.go:1134 lxc/storage_volume.go:358 #: lxc/storage_volume.go:560 lxc/storage_volume.go:639 #: lxc/storage_volume.go:883 lxc/storage_volume.go:1097 #: lxc/storage_volume.go:1210 lxc/storage_volume.go:1678 @@ -1178,11 +1177,11 @@ msgstr "" msgid "Columns" msgstr "" -#: lxc/main.go:81 +#: lxc/main.go:82 msgid "Command line client for LXD" msgstr "" -#: lxc/main.go:82 +#: lxc/main.go:83 msgid "" "Command line client for LXD\n" "\n" @@ -1214,19 +1213,15 @@ msgstr "" #: lxc/config.go:347 lxc/config.go:1277 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/network_load_balancer.go:694 lxc/network_peer.go:610 +#: lxc/network_zone.go:556 lxc/network_zone.go:1148 lxc/profile.go:538 +#: lxc/project.go:315 lxc/storage.go:310 lxc/storage_bucket.go:348 +#: lxc/storage_bucket.go:1097 lxc/storage_volume.go:1016 #: lxc/storage_volume.go:1048 #, c-format msgid "Config parsing error: %s" msgstr "" -#: lxc/console.go:140 -msgid "Console log:" -msgstr "" - #: lxc/storage_volume.go:561 msgid "Content type, block or filesystem" msgstr "" @@ -1329,12 +1324,12 @@ msgstr "" msgid "Cores:" msgstr "" -#: lxc/remote.go:486 +#: lxc/remote.go:487 #, c-format msgid "Could not close server cert file %q: %w" msgstr "" -#: lxc/remote.go:224 lxc/remote.go:470 +#: lxc/remote.go:225 lxc/remote.go:471 msgid "Could not create server cert dir" msgstr "" @@ -1373,12 +1368,12 @@ msgstr "" msgid "Could not write new remote certificate for remote '%s' with error: %v" msgstr "" -#: lxc/remote.go:481 +#: lxc/remote.go:482 #, c-format msgid "Could not write server cert file %q: %w" msgstr "" -#: lxc/network_zone.go:1327 +#: lxc/network_zone.go:1332 msgid "Couldn't find a matching entry" msgstr "" @@ -1430,7 +1425,7 @@ msgstr "" msgid "Create instances from images" msgstr "" -#: lxc/storage_bucket.go:846 lxc/storage_bucket.go:847 +#: lxc/storage_bucket.go:851 lxc/storage_bucket.go:852 msgid "Create key for a storage bucket" msgstr "" @@ -1462,11 +1457,11 @@ msgstr "" msgid "Create new network peering" msgstr "" -#: lxc/network_zone.go:869 lxc/network_zone.go:870 +#: lxc/network_zone.go:874 lxc/network_zone.go:875 msgid "Create new network zone record" msgstr "" -#: lxc/network_zone.go:270 lxc/network_zone.go:271 +#: lxc/network_zone.go:271 lxc/network_zone.go:272 msgid "Create new network zones" msgstr "" @@ -1517,9 +1512,9 @@ msgstr "" #: 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/network_zone.go:140 lxc/network_zone.go:747 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_bucket.go:512 lxc/storage_bucket.go:832 #: lxc/storage_volume.go:1562 msgid "DESCRIPTION" msgstr "" @@ -1584,7 +1579,7 @@ msgstr "" msgid "Delete instances and snapshots" msgstr "" -#: lxc/storage_bucket.go:924 lxc/storage_bucket.go:925 +#: lxc/storage_bucket.go:929 lxc/storage_bucket.go:930 msgid "Delete key from a storage bucket" msgstr "" @@ -1596,7 +1591,7 @@ msgstr "" msgid "Delete network forwards" msgstr "" -#: lxc/network_load_balancer.go:721 lxc/network_load_balancer.go:722 +#: lxc/network_load_balancer.go:726 lxc/network_load_balancer.go:727 msgid "Delete network load balancers" msgstr "" @@ -1604,11 +1599,11 @@ msgstr "" msgid "Delete network peerings" msgstr "" -#: lxc/network_zone.go:1175 lxc/network_zone.go:1176 +#: lxc/network_zone.go:1180 lxc/network_zone.go:1181 msgid "Delete network zone record" msgstr "" -#: lxc/network_zone.go:583 lxc/network_zone.go:584 +#: lxc/network_zone.go:588 lxc/network_zone.go:589 msgid "Delete network zones" msgstr "" @@ -1624,7 +1619,7 @@ msgstr "" msgid "Delete projects" msgstr "" -#: lxc/storage_bucket.go:182 lxc/storage_bucket.go:183 +#: lxc/storage_bucket.go:187 lxc/storage_bucket.go:188 msgid "Delete storage buckets" msgstr "" @@ -1680,7 +1675,7 @@ msgstr "" #: 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/info.go:32 lxc/init.go:43 lxc/launch.go:24 lxc/list.go:48 lxc/main.go:83 #: 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 @@ -1699,22 +1694,22 @@ msgstr "" #: 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_load_balancer.go:238 lxc/network_load_balancer.go:388 +#: lxc/network_load_balancer.go:456 lxc/network_load_balancer.go:554 +#: lxc/network_load_balancer.go:584 lxc/network_load_balancer.go:727 +#: lxc/network_load_balancer.go:788 lxc/network_load_balancer.go:803 +#: lxc/network_load_balancer.go:867 lxc/network_load_balancer.go:953 +#: lxc/network_load_balancer.go:968 lxc/network_load_balancer.go:1029 #: 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/network_zone.go:29 lxc/network_zone.go:86 lxc/network_zone.go:157 +#: lxc/network_zone.go:212 lxc/network_zone.go:272 lxc/network_zone.go:359 +#: lxc/network_zone.go:439 lxc/network_zone.go:470 lxc/network_zone.go:589 +#: lxc/network_zone.go:637 lxc/network_zone.go:694 lxc/network_zone.go:764 +#: lxc/network_zone.go:816 lxc/network_zone.go:875 lxc/network_zone.go:957 +#: lxc/network_zone.go:1033 lxc/network_zone.go:1063 lxc/network_zone.go:1181 +#: lxc/network_zone.go:1230 lxc/network_zone.go:1245 lxc/network_zone.go:1291 #: 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 @@ -1723,19 +1718,19 @@ msgstr "" #: 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:631 lxc/remote.go:669 lxc/remote.go:755 lxc/remote.go:828 -#: lxc/remote.go:884 lxc/remote.go:924 lxc/rename.go:21 lxc/restore.go:24 +#: lxc/query.go:34 lxc/rebuild.go:27 lxc/remote.go:35 lxc/remote.go:91 +#: lxc/remote.go:632 lxc/remote.go:670 lxc/remote.go:756 lxc/remote.go:829 +#: lxc/remote.go:885 lxc/remote.go:925 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_bucket.go:29 lxc/storage_bucket.go:83 lxc/storage_bucket.go:188 +#: lxc/storage_bucket.go:249 lxc/storage_bucket.go:382 +#: lxc/storage_bucket.go:458 lxc/storage_bucket.go:535 +#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:698 +#: lxc/storage_bucket.go:732 lxc/storage_bucket.go:773 +#: lxc/storage_bucket.go:852 lxc/storage_bucket.go:930 +#: lxc/storage_bucket.go:994 lxc/storage_bucket.go:1129 #: 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 @@ -1871,7 +1866,7 @@ msgstr "" msgid "Don't require user confirmation for using --force" msgstr "" -#: lxc/main.go:99 +#: lxc/main.go:100 msgid "Don't show progress information" msgstr "" @@ -1884,7 +1879,7 @@ msgstr "" msgid "Driver: %v (%v)" msgstr "" -#: lxc/network_zone.go:743 +#: lxc/network_zone.go:748 msgid "ENTRIES" msgstr "" @@ -1962,7 +1957,7 @@ msgstr "" msgid "Edit network forward configurations as YAML" msgstr "" -#: lxc/network_load_balancer.go:578 lxc/network_load_balancer.go:579 +#: lxc/network_load_balancer.go:583 lxc/network_load_balancer.go:584 msgid "Edit network load balancer configurations as YAML" msgstr "" @@ -1970,11 +1965,11 @@ msgstr "" msgid "Edit network peer configurations as YAML" msgstr "" -#: lxc/network_zone.go:464 lxc/network_zone.go:465 +#: lxc/network_zone.go:469 lxc/network_zone.go:470 msgid "Edit network zone configurations as YAML" msgstr "" -#: lxc/network_zone.go:1057 lxc/network_zone.go:1058 +#: lxc/network_zone.go:1062 lxc/network_zone.go:1063 msgid "Edit network zone record configurations as YAML" msgstr "" @@ -1986,11 +1981,11 @@ msgstr "" msgid "Edit project configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:243 lxc/storage_bucket.go:244 +#: lxc/storage_bucket.go:248 lxc/storage_bucket.go:249 msgid "Edit storage bucket configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:988 lxc/storage_bucket.go:989 +#: lxc/storage_bucket.go:993 lxc/storage_bucket.go:994 msgid "Edit storage bucket key as YAML" msgstr "" @@ -2031,7 +2026,7 @@ msgid "" " for the address if not yet set." msgstr "" -#: lxc/network_zone.go:1242 +#: lxc/network_zone.go:1247 msgid "Entry TTL" msgstr "" @@ -2060,9 +2055,9 @@ msgstr "" #: lxc/cluster.go:414 lxc/config.go:624 lxc/config.go:656 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/network_load_balancer.go:527 lxc/network_peer.go:463 +#: lxc/network_zone.go:414 lxc/network_zone.go:1008 lxc/profile.go:876 +#: lxc/project.go:634 lxc/storage.go:727 lxc/storage_bucket.go:602 #: lxc/storage_volume.go:1947 lxc/storage_volume.go:1985 #, c-format msgid "Error setting properties: %v" @@ -2074,10 +2069,10 @@ 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/network_forward.go:513 lxc/network_load_balancer.go:521 +#: lxc/network_peer.go:457 lxc/network_zone.go:408 lxc/network_zone.go:1002 #: lxc/profile.go:870 lxc/project.go:628 lxc/storage.go:721 -#: lxc/storage_bucket.go:591 lxc/storage_volume.go:1941 +#: lxc/storage_bucket.go:596 lxc/storage_volume.go:1941 #: lxc/storage_volume.go:1979 #, c-format msgid "Error unsetting property: %v" @@ -2263,7 +2258,7 @@ msgstr "" msgid "Failed parsing SSH host key: %w" msgstr "" -#: lxc/console.go:361 +#: lxc/console.go:366 #, c-format msgid "Failed starting command: %w" msgstr "" @@ -2278,11 +2273,11 @@ msgstr "" msgid "Failed to accept incoming connection: %w" msgstr "" -#: lxc/remote.go:190 +#: lxc/remote.go:191 msgid "Failed to add remote" msgstr "" -#: lxc/remote.go:241 +#: lxc/remote.go:242 #, c-format msgid "Failed to close server cert file %q: %w" msgstr "" @@ -2292,7 +2287,7 @@ msgstr "" msgid "Failed to connect to cluster member: %w" msgstr "" -#: lxc/remote.go:231 +#: lxc/remote.go:232 #, c-format msgid "Failed to create %q: %w" msgstr "" @@ -2302,12 +2297,12 @@ msgstr "" msgid "Failed to create alias %s: %w" msgstr "" -#: lxc/remote.go:256 +#: lxc/remote.go:257 #, c-format msgid "Failed to create certificate: %w" msgstr "" -#: lxc/remote.go:263 +#: lxc/remote.go:264 #, c-format msgid "Failed to find project: %w" msgstr "" @@ -2332,7 +2327,7 @@ msgstr "" msgid "Failed to walk path for %s: %s" msgstr "" -#: lxc/remote.go:236 +#: lxc/remote.go:237 #, c-format msgid "Failed to write server cert file %q: %w" msgstr "" @@ -2341,7 +2336,7 @@ msgstr "" msgid "Fast mode (same as --columns=nsacPt)" msgstr "" -#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:115 +#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:116 #: lxc/operation.go:136 msgid "Filtering isn't supported yet" msgstr "" @@ -2379,7 +2374,7 @@ msgstr "" msgid "Force the removal of running instances" msgstr "" -#: lxc/main.go:95 +#: lxc/main.go:96 msgid "Force using the local unix socket" msgstr "" @@ -2413,10 +2408,10 @@ msgstr "" #: 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/network_peer.go:84 lxc/network_zone.go:89 lxc/network_zone.go:697 #: lxc/operation.go:108 lxc/profile.go:637 lxc/project.go:412 -#: lxc/project.go:804 lxc/remote.go:673 lxc/storage.go:588 -#: lxc/storage_bucket.go:454 lxc/storage_bucket.go:769 +#: lxc/project.go:804 lxc/remote.go:674 lxc/storage.go:588 +#: lxc/storage_bucket.go:459 lxc/storage_bucket.go:774 #: lxc/storage_volume.go:1446 lxc/warning.go:93 msgid "Format (csv|json|table|yaml|compact)" msgstr "" @@ -2453,7 +2448,7 @@ msgstr "" msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)" msgstr "" -#: lxc/remote.go:737 +#: lxc/remote.go:738 msgid "GLOBAL" msgstr "" @@ -2473,7 +2468,7 @@ msgstr "" msgid "Generate manpages for all commands" msgstr "" -#: lxc/remote.go:159 lxc/remote.go:397 +#: lxc/remote.go:160 lxc/remote.go:398 msgid "Generating a client certificate. This may take a minute..." msgstr "" @@ -2505,7 +2500,7 @@ msgstr "" msgid "Get the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:386 +#: lxc/network_load_balancer.go:391 msgid "Get the key as a network load balancer property" msgstr "" @@ -2517,11 +2512,11 @@ msgstr "" msgid "Get the key as a network property" msgstr "" -#: lxc/network_zone.go:214 +#: lxc/network_zone.go:215 msgid "Get the key as a network zone property" msgstr "" -#: lxc/network_zone.go:814 +#: lxc/network_zone.go:819 msgid "Get the key as a network zone record property" msgstr "" @@ -2533,7 +2528,7 @@ msgstr "" msgid "Get the key as a project property" msgstr "" -#: lxc/storage_bucket.go:380 +#: lxc/storage_bucket.go:385 msgid "Get the key as a storage bucket property" msgstr "" @@ -2573,7 +2568,7 @@ msgstr "" msgid "Get values for network forward configuration keys" msgstr "" -#: lxc/network_load_balancer.go:382 lxc/network_load_balancer.go:383 +#: lxc/network_load_balancer.go:387 lxc/network_load_balancer.go:388 msgid "Get values for network load balancer configuration keys" msgstr "" @@ -2581,11 +2576,11 @@ msgstr "" msgid "Get values for network peer configuration keys" msgstr "" -#: lxc/network_zone.go:210 lxc/network_zone.go:211 +#: lxc/network_zone.go:211 lxc/network_zone.go:212 msgid "Get values for network zone configuration keys" msgstr "" -#: lxc/network_zone.go:810 lxc/network_zone.go:811 +#: lxc/network_zone.go:815 lxc/network_zone.go:816 msgid "Get values for network zone record configuration keys" msgstr "" @@ -2597,7 +2592,7 @@ msgstr "" msgid "Get values for project configuration keys" msgstr "" -#: lxc/storage_bucket.go:376 lxc/storage_bucket.go:377 +#: lxc/storage_bucket.go:381 lxc/storage_bucket.go:382 msgid "Get values for storage bucket configuration keys" msgstr "" @@ -2737,7 +2732,7 @@ msgstr "" msgid "If the snapshot name already exists, delete and create a new one" msgstr "" -#: lxc/main.go:398 +#: lxc/main.go:400 msgid "" "If this is your first time running LXD on this machine, you should also run: " "lxd init" @@ -2894,7 +2889,7 @@ msgstr "" msgid "Instance type" msgstr "" -#: lxc/remote.go:349 +#: lxc/remote.go:350 #, c-format msgid "Invalid URL scheme \"%s\" in \"%s\"" msgstr "" @@ -2966,7 +2961,7 @@ msgstr "" msgid "Invalid new snapshot name, parent volume must be the same as source" msgstr "" -#: lxc/main.go:498 +#: lxc/main.go:502 msgid "Invalid number of arguments" msgstr "" @@ -2975,7 +2970,7 @@ msgstr "" msgid "Invalid path %s" msgstr "" -#: lxc/remote.go:338 +#: lxc/remote.go:339 #, c-format msgid "Invalid protocol: %s" msgstr "" @@ -3023,7 +3018,7 @@ msgstr "" #: lxc/list.go:597 lxc/network.go:1059 lxc/network_forward.go:155 #: lxc/network_load_balancer.go:157 lxc/operation.go:177 -#: lxc/storage_bucket.go:511 lxc/storage_volume.go:1569 lxc/warning.go:220 +#: lxc/storage_bucket.go:516 lxc/storage_volume.go:1569 lxc/warning.go:220 msgid "LOCATION" msgstr "" @@ -3031,7 +3026,7 @@ msgstr "" msgid "LXD - Command line client" msgstr "" -#: lxc/console.go:382 +#: lxc/console.go:387 msgid "LXD automatically uses either spicy or remote-viewer when present." msgstr "" @@ -3121,15 +3116,15 @@ msgstr "" msgid "List available network peers" msgstr "" -#: lxc/network_zone.go:85 +#: lxc/network_zone.go:86 msgid "List available network zone" msgstr "" -#: lxc/network_zone.go:688 lxc/network_zone.go:689 +#: lxc/network_zone.go:693 lxc/network_zone.go:694 msgid "List available network zone records" msgstr "" -#: lxc/network_zone.go:84 +#: lxc/network_zone.go:85 msgid "List available network zoneS" msgstr "" @@ -3318,11 +3313,11 @@ msgstr "" msgid "List projects" msgstr "" -#: lxc/storage_bucket.go:766 lxc/storage_bucket.go:768 +#: lxc/storage_bucket.go:771 lxc/storage_bucket.go:773 msgid "List storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:451 lxc/storage_bucket.go:453 +#: lxc/storage_bucket.go:456 lxc/storage_bucket.go:458 msgid "List storage buckets" msgstr "" @@ -3350,7 +3345,7 @@ msgid "" " U - Current disk usage" msgstr "" -#: lxc/remote.go:668 lxc/remote.go:669 +#: lxc/remote.go:669 lxc/remote.go:670 msgid "List the available remotes" msgstr "" @@ -3577,11 +3572,11 @@ msgstr "" msgid "Manage network forwards" msgstr "" -#: lxc/network_load_balancer.go:782 lxc/network_load_balancer.go:783 +#: lxc/network_load_balancer.go:787 lxc/network_load_balancer.go:788 msgid "Manage network load balancer backends" msgstr "" -#: lxc/network_load_balancer.go:947 lxc/network_load_balancer.go:948 +#: lxc/network_load_balancer.go:952 lxc/network_load_balancer.go:953 msgid "Manage network load balancer ports" msgstr "" @@ -3593,15 +3588,15 @@ msgstr "" msgid "Manage network peerings" msgstr "" -#: lxc/network_zone.go:1224 lxc/network_zone.go:1225 +#: lxc/network_zone.go:1229 lxc/network_zone.go:1230 msgid "Manage network zone record entries" msgstr "" -#: lxc/network_zone.go:631 lxc/network_zone.go:632 +#: lxc/network_zone.go:636 lxc/network_zone.go:637 msgid "Manage network zone records" msgstr "" -#: lxc/network_zone.go:27 lxc/network_zone.go:28 +#: lxc/network_zone.go:28 lxc/network_zone.go:29 msgid "Manage network zones" msgstr "" @@ -3617,11 +3612,11 @@ msgstr "" msgid "Manage projects" msgstr "" -#: lxc/storage_bucket.go:726 +#: lxc/storage_bucket.go:731 msgid "Manage storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:727 +#: lxc/storage_bucket.go:732 msgid "Manage storage bucket keys." msgstr "" @@ -3649,7 +3644,7 @@ msgid "" "\"custom\" (user created) volumes." msgstr "" -#: lxc/remote.go:33 lxc/remote.go:34 +#: lxc/remote.go:34 lxc/remote.go:35 msgid "Manage the list of remote servers" msgstr "" @@ -3730,12 +3725,12 @@ msgid "" "Minimum level for log messages (only available when using pretty format)" msgstr "" -#: lxc/storage_bucket.go:111 lxc/storage_bucket.go:211 -#: lxc/storage_bucket.go:287 lxc/storage_bucket.go:406 -#: lxc/storage_bucket.go:563 lxc/storage_bucket.go:655 -#: lxc/storage_bucket.go:797 lxc/storage_bucket.go:878 -#: lxc/storage_bucket.go:953 lxc/storage_bucket.go:1032 -#: lxc/storage_bucket.go:1155 +#: lxc/storage_bucket.go:116 lxc/storage_bucket.go:216 +#: lxc/storage_bucket.go:292 lxc/storage_bucket.go:411 +#: lxc/storage_bucket.go:568 lxc/storage_bucket.go:660 +#: lxc/storage_bucket.go:802 lxc/storage_bucket.go:883 +#: lxc/storage_bucket.go:958 lxc/storage_bucket.go:1037 +#: lxc/storage_bucket.go:1160 msgid "Missing bucket name" msgstr "" @@ -3779,8 +3774,8 @@ msgstr "" msgid "Missing instance name" msgstr "" -#: lxc/storage_bucket.go:882 lxc/storage_bucket.go:957 -#: lxc/storage_bucket.go:1036 lxc/storage_bucket.go:1159 +#: lxc/storage_bucket.go:887 lxc/storage_bucket.go:962 +#: lxc/storage_bucket.go:1041 lxc/storage_bucket.go:1164 msgid "Missing key name" msgstr "" @@ -3788,10 +3783,10 @@ msgstr "" #: lxc/network_forward.go:481 lxc/network_forward.go:627 #: lxc/network_forward.go:746 lxc/network_forward.go:823 #: lxc/network_forward.go:889 lxc/network_load_balancer.go:201 -#: lxc/network_load_balancer.go:411 lxc/network_load_balancer.go:484 -#: lxc/network_load_balancer.go:630 lxc/network_load_balancer.go:750 -#: lxc/network_load_balancer.go:826 lxc/network_load_balancer.go:890 -#: lxc/network_load_balancer.go:991 lxc/network_load_balancer.go:1053 +#: lxc/network_load_balancer.go:416 lxc/network_load_balancer.go:489 +#: lxc/network_load_balancer.go:635 lxc/network_load_balancer.go:755 +#: lxc/network_load_balancer.go:831 lxc/network_load_balancer.go:895 +#: lxc/network_load_balancer.go:996 lxc/network_load_balancer.go:1058 msgid "Missing listen address" msgstr "" @@ -3816,26 +3811,26 @@ msgstr "" #: lxc/network_forward.go:477 lxc/network_forward.go:623 #: lxc/network_forward.go:742 lxc/network_forward.go:819 #: lxc/network_forward.go:885 lxc/network_load_balancer.go:123 -#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:261 -#: lxc/network_load_balancer.go:407 lxc/network_load_balancer.go:480 -#: lxc/network_load_balancer.go:626 lxc/network_load_balancer.go:746 -#: lxc/network_load_balancer.go:822 lxc/network_load_balancer.go:886 -#: lxc/network_load_balancer.go:987 lxc/network_load_balancer.go:1049 +#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:266 +#: lxc/network_load_balancer.go:412 lxc/network_load_balancer.go:485 +#: lxc/network_load_balancer.go:631 lxc/network_load_balancer.go:751 +#: lxc/network_load_balancer.go:827 lxc/network_load_balancer.go:891 +#: lxc/network_load_balancer.go:992 lxc/network_load_balancer.go:1054 #: lxc/network_peer.go:110 lxc/network_peer.go:180 lxc/network_peer.go:237 #: lxc/network_peer.go:355 lxc/network_peer.go:426 lxc/network_peer.go:556 #: lxc/network_peer.go:665 msgid "Missing network name" msgstr "" -#: lxc/network_zone.go:178 lxc/network_zone.go:234 lxc/network_zone.go:294 -#: lxc/network_zone.go:382 lxc/network_zone.go:503 lxc/network_zone.go:606 -#: lxc/network_zone.go:712 lxc/network_zone.go:780 lxc/network_zone.go:892 -#: lxc/network_zone.go:976 lxc/network_zone.go:1197 lxc/network_zone.go:1262 -#: lxc/network_zone.go:1307 +#: lxc/network_zone.go:179 lxc/network_zone.go:235 lxc/network_zone.go:299 +#: lxc/network_zone.go:387 lxc/network_zone.go:508 lxc/network_zone.go:611 +#: lxc/network_zone.go:717 lxc/network_zone.go:785 lxc/network_zone.go:897 +#: lxc/network_zone.go:981 lxc/network_zone.go:1202 lxc/network_zone.go:1267 +#: lxc/network_zone.go:1312 msgid "Missing network zone name" msgstr "" -#: lxc/network_zone.go:833 lxc/network_zone.go:1095 +#: lxc/network_zone.go:838 lxc/network_zone.go:1100 msgid "Missing network zone record name" msgstr "" @@ -3845,13 +3840,13 @@ msgid "Missing peer name" msgstr "" #: lxc/storage.go:194 lxc/storage.go:264 lxc/storage.go:370 lxc/storage.go:440 -#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:107 -#: lxc/storage_bucket.go:207 lxc/storage_bucket.go:283 -#: lxc/storage_bucket.go:402 lxc/storage_bucket.go:477 -#: lxc/storage_bucket.go:559 lxc/storage_bucket.go:651 -#: lxc/storage_bucket.go:793 lxc/storage_bucket.go:874 -#: lxc/storage_bucket.go:949 lxc/storage_bucket.go:1028 -#: lxc/storage_bucket.go:1151 lxc/storage_volume.go:189 +#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:112 +#: lxc/storage_bucket.go:212 lxc/storage_bucket.go:288 +#: lxc/storage_bucket.go:407 lxc/storage_bucket.go:482 +#: lxc/storage_bucket.go:564 lxc/storage_bucket.go:656 +#: lxc/storage_bucket.go:798 lxc/storage_bucket.go:879 +#: lxc/storage_bucket.go:954 lxc/storage_bucket.go:1033 +#: lxc/storage_bucket.go:1156 lxc/storage_volume.go:189 #: lxc/storage_volume.go:287 lxc/storage_volume.go:583 #: lxc/storage_volume.go:660 lxc/storage_volume.go:735 #: lxc/storage_volume.go:817 lxc/storage_volume.go:919 @@ -3971,7 +3966,7 @@ msgstr "" msgid "Moving the storage volume: %s" msgstr "" -#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1097 +#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1102 msgid "Multiple ports match. Use --force to remove them all" msgstr "" @@ -3990,10 +3985,10 @@ 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:677 lxc/project.go:498 -#: lxc/remote.go:731 lxc/storage.go:638 lxc/storage_bucket.go:506 -#: lxc/storage_bucket.go:826 lxc/storage_volume.go:1561 +#: lxc/network_acl.go:147 lxc/network_peer.go:139 lxc/network_zone.go:139 +#: lxc/network_zone.go:746 lxc/profile.go:677 lxc/project.go:498 +#: lxc/remote.go:732 lxc/storage.go:638 lxc/storage_bucket.go:511 +#: lxc/storage_bucket.go:831 lxc/storage_volume.go:1561 msgid "NAME" msgstr "" @@ -4019,7 +4014,7 @@ msgstr "" #: lxc/network.go:957 lxc/operation.go:154 lxc/project.go:456 #: lxc/project.go:461 lxc/project.go:466 lxc/project.go:471 lxc/project.go:476 -#: lxc/project.go:481 lxc/remote.go:691 lxc/remote.go:696 lxc/remote.go:701 +#: lxc/project.go:481 lxc/remote.go:692 lxc/remote.go:697 lxc/remote.go:702 msgid "NO" msgstr "" @@ -4046,7 +4041,7 @@ msgstr "" msgid "Name" msgstr "" -#: lxc/remote.go:141 +#: lxc/remote.go:142 msgid "Name of the project to use for this remote:" msgstr "" @@ -4095,12 +4090,12 @@ msgstr "" msgid "Network ACL %s renamed to %s" msgstr "" -#: lxc/network_zone.go:336 +#: lxc/network_zone.go:341 #, c-format msgid "Network Zone %s created" msgstr "" -#: lxc/network_zone.go:616 +#: lxc/network_zone.go:621 #, c-format msgid "Network Zone %s deleted" msgstr "" @@ -4115,12 +4110,12 @@ msgstr "" msgid "Network forward %s deleted" msgstr "" -#: lxc/network_load_balancer.go:365 +#: lxc/network_load_balancer.go:370 #, c-format msgid "Network load balancer %s created" msgstr "" -#: lxc/network_load_balancer.go:767 +#: lxc/network_load_balancer.go:772 #, c-format msgid "Network load balancer %s deleted" msgstr "" @@ -4158,12 +4153,12 @@ msgstr "" msgid "Network usage:" msgstr "" -#: lxc/network_zone.go:934 +#: lxc/network_zone.go:939 #, c-format msgid "Network zone record %s created" msgstr "" -#: lxc/network_zone.go:1207 +#: lxc/network_zone.go:1212 #, c-format msgid "Network zone record %s deleted" msgstr "" @@ -4198,11 +4193,11 @@ msgstr "" msgid "No device found for this storage volume" msgstr "" -#: lxc/network_load_balancer.go:921 +#: lxc/network_load_balancer.go:926 msgid "No matching backend found" msgstr "" -#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1108 +#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1113 msgid "No matching port(s) found" msgstr "" @@ -4248,7 +4243,7 @@ msgstr "" msgid "Only \"custom\" volumes can be snapshotted" msgstr "" -#: lxc/remote.go:332 +#: lxc/remote.go:333 msgid "Only https URLs are supported for simplestreams" msgstr "" @@ -4273,7 +4268,7 @@ msgstr "" msgid "Optimized Storage" msgstr "" -#: lxc/main.go:96 +#: lxc/main.go:97 msgid "Override the source project" msgstr "" @@ -4319,11 +4314,11 @@ msgstr "" msgid "PROJECT" msgstr "" -#: lxc/remote.go:733 +#: lxc/remote.go:734 msgid "PROTOCOL" msgstr "" -#: lxc/image.go:1073 lxc/remote.go:735 +#: lxc/image.go:1073 lxc/remote.go:736 msgid "PUBLIC" msgstr "" @@ -4339,7 +4334,7 @@ msgstr "" msgid "Partitions:" msgstr "" -#: lxc/main.go:361 +#: lxc/main.go:363 #, c-format msgid "Password for %s: " msgstr "" @@ -4352,7 +4347,7 @@ msgstr "" msgid "Perform an incremental copy" msgstr "" -#: lxc/remote.go:182 +#: lxc/remote.go:183 msgid "Please provide an alternate server address (empty to abort):" msgstr "" @@ -4364,7 +4359,7 @@ msgstr "" msgid "Please provide cluster member name: " msgstr "" -#: lxc/remote.go:462 +#: lxc/remote.go:463 msgid "Please type 'y', 'n' or the fingerprint:" msgstr "" @@ -4386,10 +4381,10 @@ msgstr "" #: lxc/config.go:1278 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/network_load_balancer.go:695 lxc/network_peer.go:611 +#: lxc/network_zone.go:557 lxc/network_zone.go:1149 lxc/profile.go:539 +#: lxc/project.go:316 lxc/storage.go:311 lxc/storage_bucket.go:349 +#: lxc/storage_bucket.go:1098 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 "" @@ -4398,7 +4393,7 @@ msgstr "" msgid "Pretty rendering (short for --format=pretty)" msgstr "" -#: lxc/main.go:94 +#: lxc/main.go:95 msgid "Print help" msgstr "" @@ -4406,7 +4401,7 @@ msgstr "" msgid "Print the raw response" msgstr "" -#: lxc/main.go:93 +#: lxc/main.go:94 msgid "Print version number" msgstr "" @@ -4495,7 +4490,7 @@ msgstr "" msgid "Project %s renamed to %s" msgstr "" -#: lxc/remote.go:106 +#: lxc/remote.go:107 msgid "Project to use for the remote" msgstr "" @@ -4593,7 +4588,7 @@ msgid "" "pool \"default\"." msgstr "" -#: lxc/remote.go:105 +#: lxc/remote.go:106 msgid "Public image server" msgstr "" @@ -4641,7 +4636,7 @@ msgstr "" msgid "RESOURCE" msgstr "" -#: lxc/storage_bucket.go:828 +#: lxc/storage_bucket.go:833 msgid "ROLE" msgstr "" @@ -4684,45 +4679,45 @@ msgstr "" msgid "Refreshing the image: %s" msgstr "" -#: lxc/remote.go:785 +#: lxc/remote.go:786 #, c-format msgid "Remote %s already exists" msgstr "" -#: lxc/project.go:769 lxc/remote.go:776 lxc/remote.go:849 lxc/remote.go:905 -#: lxc/remote.go:945 +#: lxc/project.go:769 lxc/remote.go:777 lxc/remote.go:850 lxc/remote.go:906 +#: lxc/remote.go:946 #, c-format msgid "Remote %s doesn't exist" msgstr "" -#: lxc/remote.go:301 +#: lxc/remote.go:302 #, c-format msgid "Remote %s exists as <%s>" msgstr "" -#: lxc/remote.go:857 +#: lxc/remote.go:858 #, c-format msgid "Remote %s is global and cannot be removed" msgstr "" -#: lxc/remote.go:780 lxc/remote.go:853 lxc/remote.go:949 +#: lxc/remote.go:781 lxc/remote.go:854 lxc/remote.go:950 #, c-format msgid "Remote %s is static and cannot be modified" msgstr "" -#: lxc/remote.go:290 +#: lxc/remote.go:291 msgid "Remote address must not be empty" msgstr "" -#: lxc/remote.go:101 +#: lxc/remote.go:102 msgid "Remote admin password" msgstr "" -#: lxc/remote.go:295 +#: lxc/remote.go:296 msgid "Remote names may not contain colons" msgstr "" -#: lxc/remote.go:102 +#: lxc/remote.go:103 msgid "Remote trust token" msgstr "" @@ -4748,7 +4743,7 @@ msgstr "" msgid "Remove a member from the cluster" msgstr "" -#: lxc/network_zone.go:1285 +#: lxc/network_zone.go:1290 msgid "Remove a network zone record entry" msgstr "" @@ -4756,7 +4751,7 @@ msgstr "" msgid "Remove aliases" msgstr "" -#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1025 +#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1030 msgid "Remove all ports that match" msgstr "" @@ -4764,15 +4759,15 @@ msgstr "" msgid "Remove all rules that match" msgstr "" -#: lxc/network_load_balancer.go:862 +#: lxc/network_load_balancer.go:867 msgid "Remove backend from a load balancer" msgstr "" -#: lxc/network_load_balancer.go:861 +#: lxc/network_load_balancer.go:866 msgid "Remove backends from a load balancer" msgstr "" -#: lxc/network_zone.go:1286 +#: lxc/network_zone.go:1291 msgid "Remove entries from a network zone record" msgstr "" @@ -4796,7 +4791,7 @@ msgstr "" msgid "Remove ports from a forward" msgstr "" -#: lxc/network_load_balancer.go:1023 lxc/network_load_balancer.go:1024 +#: lxc/network_load_balancer.go:1028 lxc/network_load_balancer.go:1029 msgid "Remove ports from a load balancer" msgstr "" @@ -4804,7 +4799,7 @@ msgstr "" msgid "Remove profiles from instances" msgstr "" -#: lxc/remote.go:827 lxc/remote.go:828 +#: lxc/remote.go:828 lxc/remote.go:829 msgid "Remove remotes" msgstr "" @@ -4861,7 +4856,7 @@ msgstr "" msgid "Rename projects" msgstr "" -#: lxc/remote.go:754 lxc/remote.go:755 +#: lxc/remote.go:755 lxc/remote.go:756 msgid "Rename remotes" msgstr "" @@ -4939,7 +4934,7 @@ msgid "Restrict the certificate to one or more projects" msgstr "" #: lxc/console.go:44 -msgid "Retrieve the instance's console log" +msgid "Retrieve the container's console log" msgstr "" #: lxc/init.go:347 @@ -4955,7 +4950,7 @@ msgstr "" msgid "Revoke cluster member join token" msgstr "" -#: lxc/storage_bucket.go:851 +#: lxc/storage_bucket.go:856 msgid "Role (admin or read-only)" msgstr "" @@ -5006,7 +5001,7 @@ msgstr "" msgid "STATE" msgstr "" -#: lxc/remote.go:736 +#: lxc/remote.go:737 msgid "STATIC" msgstr "" @@ -5030,11 +5025,11 @@ msgstr "" msgid "STP" msgstr "" -#: lxc/storage_bucket.go:853 +#: lxc/storage_bucket.go:858 msgid "Secret key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:909 +#: lxc/storage_bucket.go:914 #, c-format msgid "Secret key: %s" msgstr "" @@ -5043,19 +5038,19 @@ msgstr "" msgid "Send a raw query to LXD" msgstr "" -#: lxc/remote.go:104 +#: lxc/remote.go:105 msgid "Server authentication type (tls or oidc)" msgstr "" -#: lxc/remote.go:460 +#: lxc/remote.go:461 msgid "Server certificate NACKed by user" msgstr "" -#: lxc/remote.go:599 +#: lxc/remote.go:600 msgid "Server doesn't trust us after authentication" msgstr "" -#: lxc/remote.go:103 +#: lxc/remote.go:104 msgid "Server protocol (lxd or simplestreams)" msgstr "" @@ -5154,11 +5149,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_load_balancer.go:450 +#: lxc/network_load_balancer.go:455 msgid "Set network load balancer keys" msgstr "" -#: lxc/network_load_balancer.go:451 +#: lxc/network_load_balancer.go:456 msgid "" "Set network load balancer keys\n" "\n" @@ -5180,11 +5175,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:353 +#: lxc/network_zone.go:358 msgid "Set network zone configuration keys" msgstr "" -#: lxc/network_zone.go:354 +#: lxc/network_zone.go:359 msgid "" "Set network zone configuration keys\n" "\n" @@ -5193,7 +5188,7 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:951 lxc/network_zone.go:952 +#: lxc/network_zone.go:956 lxc/network_zone.go:957 msgid "Set network zone record configuration keys" msgstr "" @@ -5223,11 +5218,11 @@ msgid "" " lxc project set [:] " msgstr "" -#: lxc/storage_bucket.go:529 +#: lxc/storage_bucket.go:534 msgid "Set storage bucket configuration keys" msgstr "" -#: lxc/storage_bucket.go:530 +#: lxc/storage_bucket.go:535 msgid "" "Set storage bucket configuration keys\n" "\n" @@ -5262,7 +5257,7 @@ msgid "" " lxc storage volume set [:] [/] " msgstr "" -#: lxc/remote.go:923 lxc/remote.go:924 +#: lxc/remote.go:924 lxc/remote.go:925 msgid "Set the URL for the remote" msgstr "" @@ -5290,7 +5285,7 @@ msgstr "" msgid "Set the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:458 +#: lxc/network_load_balancer.go:463 msgid "Set the key as a network load balancer property" msgstr "" @@ -5302,11 +5297,11 @@ msgstr "" msgid "Set the key as a network property" msgstr "" -#: lxc/network_zone.go:361 +#: lxc/network_zone.go:366 msgid "Set the key as a network zone property" msgstr "" -#: lxc/network_zone.go:957 +#: lxc/network_zone.go:962 msgid "Set the key as a network zone record property" msgstr "" @@ -5318,7 +5313,7 @@ msgstr "" msgid "Set the key as a project property" msgstr "" -#: lxc/storage_bucket.go:537 +#: lxc/storage_bucket.go:542 msgid "Set the key as a storage bucket property" msgstr "" @@ -5338,11 +5333,11 @@ msgstr "" msgid "Setup SSH SFTP listener on address:port instead of mounting" msgstr "" -#: lxc/main.go:97 +#: lxc/main.go:98 msgid "Show all debug messages" msgstr "" -#: lxc/main.go:98 +#: lxc/main.go:99 msgid "Show all information messages" msgstr "" @@ -5411,7 +5406,7 @@ msgstr "" msgid "Show instance or server information" msgstr "" -#: lxc/main.go:271 lxc/main.go:272 +#: lxc/main.go:272 lxc/main.go:273 msgid "Show less common commands" msgstr "" @@ -5443,15 +5438,15 @@ msgstr "" msgid "Show network peer configurations" msgstr "" -#: lxc/network_zone.go:155 lxc/network_zone.go:156 +#: lxc/network_zone.go:156 lxc/network_zone.go:157 msgid "Show network zone configurations" msgstr "" -#: lxc/network_zone.go:758 +#: lxc/network_zone.go:763 msgid "Show network zone record configuration" msgstr "" -#: lxc/network_zone.go:759 +#: lxc/network_zone.go:764 msgid "Show network zone record configurations" msgstr "" @@ -5463,11 +5458,11 @@ msgstr "" msgid "Show project options" msgstr "" -#: lxc/storage_bucket.go:623 lxc/storage_bucket.go:624 +#: lxc/storage_bucket.go:628 lxc/storage_bucket.go:629 msgid "Show storage bucket configurations" msgstr "" -#: lxc/storage_bucket.go:1123 lxc/storage_bucket.go:1124 +#: lxc/storage_bucket.go:1128 lxc/storage_bucket.go:1129 msgid "Show storage bucket key configurations" msgstr "" @@ -5493,7 +5488,7 @@ msgid "" "that are granted via identity provider group mappings. \n" msgstr "" -#: lxc/remote.go:630 lxc/remote.go:631 +#: lxc/remote.go:631 lxc/remote.go:632 msgid "Show the default remote" msgstr "" @@ -5617,22 +5612,22 @@ msgstr "" msgid "Stopping the instance failed: %s" msgstr "" -#: lxc/storage_bucket.go:161 +#: lxc/storage_bucket.go:166 #, c-format msgid "Storage bucket %s created" msgstr "" -#: lxc/storage_bucket.go:228 +#: lxc/storage_bucket.go:233 #, c-format msgid "Storage bucket %s deleted" msgstr "" -#: lxc/storage_bucket.go:907 +#: lxc/storage_bucket.go:912 #, c-format msgid "Storage bucket key %s added" msgstr "" -#: lxc/storage_bucket.go:973 +#: lxc/storage_bucket.go:978 #, c-format msgid "Storage bucket key %s removed" msgstr "" @@ -5705,7 +5700,7 @@ msgstr "" msgid "Switch the current project" msgstr "" -#: lxc/remote.go:883 lxc/remote.go:884 +#: lxc/remote.go:884 lxc/remote.go:885 msgid "Switch the default remote" msgstr "" @@ -5820,7 +5815,7 @@ msgstr "" msgid "The property %q does not exist on the instance snapshot %s/%s: %v" msgstr "" -#: lxc/network_load_balancer.go:424 +#: lxc/network_load_balancer.go:429 #, c-format msgid "The property %q does not exist on the load balancer %q: %v" msgstr "" @@ -5845,12 +5840,12 @@ msgstr "" msgid "The property %q does not exist on the network peer %q: %v" msgstr "" -#: lxc/network_zone.go:246 +#: lxc/network_zone.go:247 #, c-format msgid "The property %q does not exist on the network zone %q: %v" msgstr "" -#: lxc/network_zone.go:845 +#: lxc/network_zone.go:850 #, c-format msgid "The property %q does not exist on the network zone record %q: %v" msgstr "" @@ -5865,7 +5860,7 @@ msgstr "" msgid "The property %q does not exist on the project %q: %v" msgstr "" -#: lxc/storage_bucket.go:426 +#: lxc/storage_bucket.go:431 #, c-format msgid "The property %q does not exist on the storage bucket %q: %v" msgstr "" @@ -5919,7 +5914,7 @@ msgstr "" msgid "This LXD server is not available on the network" msgstr "" -#: lxc/main.go:293 +#: lxc/main.go:294 msgid "" "This client hasn't been configured to use a remote LXD server yet.\n" "As your platform can't run native Linux instances, you must connect to a " @@ -5951,11 +5946,11 @@ msgstr "" msgid "To create a new network, use: lxc network create" msgstr "" -#: lxc/console.go:210 +#: lxc/console.go:215 msgid "To detach from the console, press: +a q" msgstr "" -#: lxc/main.go:403 +#: lxc/main.go:406 msgid "" "To start your first container, try: lxc launch ubuntu:24.04\n" "Or for a virtual machine: lxc launch ubuntu:24.04 --vm" @@ -6053,7 +6048,7 @@ msgstr "" msgid "UPLOAD DATE" msgstr "" -#: lxc/cluster.go:184 lxc/remote.go:732 +#: lxc/cluster.go:184 lxc/remote.go:733 msgid "URL" msgstr "" @@ -6062,7 +6057,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:679 lxc/project.go:506 +#: lxc/network_zone.go:141 lxc/profile.go:679 lxc/project.go:506 #: lxc/storage.go:647 lxc/storage_volume.go:1564 msgid "USED BY" msgstr "" @@ -6081,7 +6076,7 @@ msgstr "" msgid "Unable to create a temporary file: %v" msgstr "" -#: lxc/remote.go:213 lxc/remote.go:247 +#: lxc/remote.go:214 lxc/remote.go:248 msgid "Unavailable remote server" msgstr "" @@ -6101,7 +6096,7 @@ msgstr "" msgid "Unknown column shorthand char '%c' in '%s'" msgstr "" -#: lxc/console.go:159 +#: lxc/console.go:164 #, c-format msgid "Unknown console type %q" msgstr "" @@ -6161,11 +6156,11 @@ msgstr "" msgid "Unset network forward keys" msgstr "" -#: lxc/network_load_balancer.go:548 +#: lxc/network_load_balancer.go:553 msgid "Unset network load balancer configuration keys" msgstr "" -#: lxc/network_load_balancer.go:549 +#: lxc/network_load_balancer.go:554 msgid "Unset network load balancer keys" msgstr "" @@ -6177,11 +6172,11 @@ msgstr "" msgid "Unset network peer keys" msgstr "" -#: lxc/network_zone.go:433 lxc/network_zone.go:434 +#: lxc/network_zone.go:438 lxc/network_zone.go:439 msgid "Unset network zone configuration keys" msgstr "" -#: lxc/network_zone.go:1027 lxc/network_zone.go:1028 +#: lxc/network_zone.go:1032 lxc/network_zone.go:1033 msgid "Unset network zone record configuration keys" msgstr "" @@ -6193,7 +6188,7 @@ msgstr "" msgid "Unset project configuration keys" msgstr "" -#: lxc/storage_bucket.go:692 lxc/storage_bucket.go:693 +#: lxc/storage_bucket.go:697 lxc/storage_bucket.go:698 msgid "Unset storage bucket configuration keys" msgstr "" @@ -6217,7 +6212,7 @@ msgstr "" msgid "Unset the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:552 +#: lxc/network_load_balancer.go:557 msgid "Unset the key as a network load balancer property" msgstr "" @@ -6229,11 +6224,11 @@ msgstr "" msgid "Unset the key as a network property" msgstr "" -#: lxc/network_zone.go:437 +#: lxc/network_zone.go:442 msgid "Unset the key as a network zone property" msgstr "" -#: lxc/network_zone.go:1031 +#: lxc/network_zone.go:1036 msgid "Unset the key as a network zone record property" msgstr "" @@ -6245,7 +6240,7 @@ msgstr "" msgid "Unset the key as a project property" msgstr "" -#: lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:701 msgid "Unset the key as a storage bucket property" msgstr "" @@ -6307,7 +6302,7 @@ msgid "" "Use storage driver optimized format (can only be restored on a similar pool)" msgstr "" -#: lxc/main.go:100 +#: lxc/main.go:101 msgid "Use with help or --help to view sub-commands" msgstr "" @@ -6404,7 +6399,7 @@ msgstr "" #: lxc/network.go:959 lxc/operation.go:156 lxc/project.go:458 #: lxc/project.go:463 lxc/project.go:468 lxc/project.go:473 lxc/project.go:478 -#: lxc/project.go:483 lxc/remote.go:693 lxc/remote.go:698 lxc/remote.go:703 +#: lxc/project.go:483 lxc/remote.go:694 lxc/remote.go:699 lxc/remote.go:704 msgid "YES" msgstr "" @@ -6439,7 +6434,7 @@ 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/network.go:909 lxc/network_acl.go:91 lxc/network_zone.go:83 #: 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 "[:]" @@ -6502,19 +6497,19 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:154 lxc/network_zone.go:463 lxc/network_zone.go:581 +#: lxc/network_zone.go:155 lxc/network_zone.go:468 lxc/network_zone.go:586 msgid "[:]" msgstr "" -#: lxc/network_zone.go:209 lxc/network_zone.go:432 +#: lxc/network_zone.go:210 lxc/network_zone.go:437 msgid "[:] " msgstr "" -#: lxc/network_zone.go:352 +#: lxc/network_zone.go:357 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:269 +#: lxc/network_zone.go:270 msgid "[:] [key=value...]" msgstr "" @@ -6760,30 +6755,30 @@ msgstr "" #: lxc/network_forward.go:169 lxc/network_forward.go:574 #: lxc/network_forward.go:715 lxc/network_load_balancer.go:171 -#: lxc/network_load_balancer.go:577 lxc/network_load_balancer.go:719 +#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:724 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:860 +#: lxc/network_load_balancer.go:865 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:796 +#: lxc/network_load_balancer.go:801 msgid "" "[:] " "[]" msgstr "" #: lxc/network_forward.go:377 lxc/network_forward.go:544 -#: lxc/network_load_balancer.go:381 lxc/network_load_balancer.go:547 +#: lxc/network_load_balancer.go:386 lxc/network_load_balancer.go:552 msgid "[:] " msgstr "" -#: lxc/network_forward.go:446 lxc/network_load_balancer.go:449 +#: lxc/network_forward.go:446 lxc/network_load_balancer.go:454 msgid "[:] =..." msgstr "" -#: lxc/network_load_balancer.go:961 +#: lxc/network_load_balancer.go:966 msgid "" "[:] " "[,...]" @@ -6795,7 +6790,7 @@ msgid "" " []" msgstr "" -#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1022 +#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1027 msgid "[:] [] []" msgstr "" @@ -6846,7 +6841,7 @@ msgid "[:]" msgstr "" #: lxc/storage.go:167 lxc/storage.go:218 lxc/storage.go:412 lxc/storage.go:759 -#: lxc/storage_bucket.go:449 +#: lxc/storage_bucket.go:454 msgid "[:]" msgstr "" @@ -6854,18 +6849,18 @@ msgstr "" msgid "[:] []" msgstr "" -#: lxc/storage_bucket.go:180 lxc/storage_bucket.go:242 -#: lxc/storage_bucket.go:622 lxc/storage_bucket.go:764 +#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:247 +#: lxc/storage_bucket.go:627 lxc/storage_bucket.go:769 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:375 lxc/storage_bucket.go:691 -#: lxc/storage_bucket.go:845 lxc/storage_bucket.go:923 -#: lxc/storage_bucket.go:987 lxc/storage_bucket.go:1122 +#: lxc/storage_bucket.go:380 lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:850 lxc/storage_bucket.go:928 +#: lxc/storage_bucket.go:992 lxc/storage_bucket.go:1127 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:528 +#: lxc/storage_bucket.go:533 msgid "[:] =..." msgstr "" @@ -7009,27 +7004,27 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:686 +#: lxc/network_zone.go:691 msgid "[:]" msgstr "" -#: lxc/network_zone.go:757 lxc/network_zone.go:1056 lxc/network_zone.go:1173 +#: lxc/network_zone.go:762 lxc/network_zone.go:1061 lxc/network_zone.go:1178 msgid "[:] " msgstr "" -#: lxc/network_zone.go:809 lxc/network_zone.go:1026 +#: lxc/network_zone.go:814 lxc/network_zone.go:1031 msgid "[:] " msgstr "" -#: lxc/network_zone.go:950 +#: lxc/network_zone.go:955 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:1238 lxc/network_zone.go:1284 +#: lxc/network_zone.go:1243 lxc/network_zone.go:1289 msgid "[:] " msgstr "" -#: lxc/network_zone.go:868 +#: lxc/network_zone.go:873 msgid "[:] [key=value...]" msgstr "" @@ -7053,7 +7048,7 @@ msgstr "" msgid "[:][] [...]" msgstr "" -#: lxc/remote.go:88 +#: lxc/remote.go:89 msgid "[] " msgstr "" @@ -7061,7 +7056,7 @@ msgstr "" msgid "[[:]]" msgstr "" -#: lxc/project.go:488 lxc/remote.go:722 +#: lxc/project.go:488 lxc/remote.go:723 msgid "current" msgstr "" @@ -7324,6 +7319,23 @@ msgid "" " Create a new OVN network called bar using baz as its uplink network" msgstr "" +#: lxc/network_load_balancer.go:239 +msgid "" +"lxc network load-balancer create n1 127.0.0.1\n" +"\n" +"lxc network load-balancer create n1 127.0.0.1 < config.yaml\n" +" Create network load-balancer for network n1 with configuration from " +"config.yaml" +msgstr "" + +#: lxc/network_zone.go:273 +msgid "" +"lxc network zone create z1\n" +"\n" +"lxc network zone create z1 < config.yaml\n" +" Create network zone z1 with configuration from config.yaml" +msgstr "" + #: lxc/operation.go:195 msgid "" "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n" @@ -7394,26 +7406,36 @@ msgid "" " Restore the snapshot." msgstr "" -#: lxc/storage_bucket.go:245 +#: lxc/storage_bucket.go:84 +msgid "" +"lxc storage bucket create p1 b01\n" +"\tCreate a new storage bucket name b01 in storage pool p1\n" +"\n" +"lxc storage bucket create p1 b01 < config.yaml\n" +"\tCreate a new storage bucket name b01 in storage pool p1 using the content " +"of config.yaml" +msgstr "" + +#: lxc/storage_bucket.go:250 msgid "" "lxc storage bucket edit [:] < bucket.yaml\n" " Update a storage bucket using the content of bucket.yaml." msgstr "" -#: lxc/storage_bucket.go:990 +#: lxc/storage_bucket.go:995 msgid "" "lxc storage bucket edit [:] < key.yaml\n" " Update a storage bucket key using the content of key.yaml." msgstr "" -#: lxc/storage_bucket.go:1125 +#: lxc/storage_bucket.go:1130 msgid "" "lxc storage bucket key show default data foo\n" " Will show the properties of a bucket key called \"foo\" for a bucket " "called \"data\" in the \"default\" pool." msgstr "" -#: lxc/storage_bucket.go:625 +#: lxc/storage_bucket.go:630 msgid "" "lxc storage bucket show default data\n" " Will show the properties of a bucket called \"data\" in the \"default\" " @@ -7432,7 +7454,7 @@ msgid "" "\t\tCreate a new custom volume using backup0.tar.gz as the source." msgstr "" -#: lxc/remote.go:459 +#: lxc/remote.go:460 msgid "n" msgstr "" @@ -7444,7 +7466,7 @@ msgstr "" msgid "no" msgstr "" -#: lxc/remote.go:452 +#: lxc/remote.go:453 msgid "ok (y/n/[fingerprint])?" msgstr "" @@ -7481,7 +7503,7 @@ msgstr "" msgid "used by" msgstr "" -#: lxc/remote.go:461 +#: lxc/remote.go:462 msgid "y" msgstr "" diff --git a/po/uk.po b/po/uk.po index 718750022a51..ac26276f149f 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-08-20 09:31+0100\n" +"POT-Creation-Date: 2024-08-30 09:27+0100\n" "PO-Revision-Date: 2022-03-10 15:09+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Ukrainian =20) ? 1 : 2;\n" "X-Generator: Weblate 4.12-dev\n" -#: lxc/storage_bucket.go:255 lxc/storage_bucket.go:1000 +#: lxc/storage_bucket.go:260 lxc/storage_bucket.go:1005 msgid "" "### This is a YAML representation of a storage bucket.\n" "### Any line starting with a '# will be ignored.\n" @@ -282,7 +282,7 @@ msgid "" "### Note that the listen_address and location cannot be changed." msgstr "" -#: lxc/network_load_balancer.go:588 +#: lxc/network_load_balancer.go:593 msgid "" "### This is a YAML representation of the network load balancer.\n" "### Any line starting with a '# will be ignored.\n" @@ -323,7 +323,7 @@ msgid "" "cannot be changed." msgstr "" -#: lxc/network_zone.go:1066 +#: lxc/network_zone.go:1071 msgid "" "### This is a YAML representation of the network zone record.\n" "### Any line starting with a '# will be ignored.\n" @@ -337,7 +337,7 @@ msgid "" "### user.foo: bah\n" msgstr "" -#: lxc/network_zone.go:473 +#: lxc/network_zone.go:478 msgid "" "### This is a YAML representation of the network zone.\n" "### Any line starting with a '# will be ignored.\n" @@ -516,15 +516,15 @@ msgstr "" msgid " " msgstr "" -#: lxc/remote.go:825 lxc/remote.go:882 +#: lxc/remote.go:826 lxc/remote.go:883 msgid "" msgstr "" -#: lxc/remote.go:922 +#: lxc/remote.go:923 msgid " " msgstr "" -#: lxc/remote.go:752 +#: lxc/remote.go:753 msgid " " msgstr "" @@ -557,7 +557,7 @@ msgstr "" msgid "ARCHITECTURE" msgstr "" -#: lxc/remote.go:734 +#: lxc/remote.go:735 msgid "AUTH TYPE" msgstr "" @@ -565,15 +565,15 @@ msgstr "" msgid "AUTHENTICATION METHOD" msgstr "" -#: lxc/remote.go:100 +#: lxc/remote.go:101 msgid "Accept certificate" msgstr "" -#: lxc/storage_bucket.go:852 +#: lxc/storage_bucket.go:857 msgid "Access key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:908 +#: lxc/storage_bucket.go:913 #, c-format msgid "Access key: %s" msgstr "" @@ -607,19 +607,19 @@ msgstr "" msgid "Add a group to an identity provider group" msgstr "" -#: lxc/network_zone.go:1239 +#: lxc/network_zone.go:1244 msgid "Add a network zone record entry" msgstr "" -#: lxc/network_load_balancer.go:798 +#: lxc/network_load_balancer.go:803 msgid "Add backend to a load balancer" msgstr "" -#: lxc/network_load_balancer.go:797 +#: lxc/network_load_balancer.go:802 msgid "Add backends to a load balancer" msgstr "" -#: lxc/network_zone.go:1240 +#: lxc/network_zone.go:1245 msgid "Add entries to a network zone record" msgstr "" @@ -635,11 +635,11 @@ msgstr "" msgid "Add new aliases" msgstr "" -#: lxc/remote.go:89 +#: lxc/remote.go:90 msgid "Add new remote servers" msgstr "" -#: lxc/remote.go:90 +#: lxc/remote.go:91 msgid "" "Add new remote servers\n" "\n" @@ -680,7 +680,7 @@ msgstr "" msgid "Add ports to a forward" msgstr "" -#: lxc/network_load_balancer.go:962 lxc/network_load_balancer.go:963 +#: lxc/network_load_balancer.go:967 lxc/network_load_balancer.go:968 msgid "Add ports to a load balancer" msgstr "" @@ -701,17 +701,17 @@ msgstr "" msgid "Address: %s" msgstr "" -#: lxc/storage_bucket.go:164 +#: lxc/storage_bucket.go:169 #, c-format msgid "Admin access key: %s" msgstr "" -#: lxc/remote.go:566 +#: lxc/remote.go:567 #, c-format msgid "Admin password (or token) for %s:" msgstr "" -#: lxc/storage_bucket.go:165 +#: lxc/storage_bucket.go:170 #, c-format msgid "Admin secret key: %s" msgstr "" @@ -743,7 +743,7 @@ msgstr "" msgid "All projects" msgstr "" -#: lxc/remote.go:181 +#: lxc/remote.go:182 msgid "All server addresses are unavailable" msgstr "" @@ -766,7 +766,7 @@ msgstr "" msgid "Are you sure you want to %s cluster member %q? (yes/no) [default=no]: " msgstr "" -#: lxc/console.go:383 +#: lxc/console.go:388 msgid "As neither could be found, the raw SPICE socket can be found at:" msgstr "" @@ -814,7 +814,7 @@ msgid "" "as well as retrieve past log entries from it." msgstr "" -#: lxc/remote.go:548 +#: lxc/remote.go:549 #, c-format msgid "Authentication type '%s' not supported by server" msgstr "" @@ -833,11 +833,11 @@ msgstr "" msgid "Auto update: %s" msgstr "" -#: lxc/network_forward.go:240 lxc/network_load_balancer.go:242 +#: lxc/network_forward.go:240 lxc/network_load_balancer.go:247 msgid "Auto-allocate an IPv4 or IPv6 listen address. One of 'ipv4', 'ipv6'." msgstr "" -#: lxc/remote.go:136 +#: lxc/remote.go:137 msgid "Available projects:" msgstr "" @@ -869,8 +869,8 @@ msgid "Bad device override syntax, expecting ,=: %s" msgstr "" #: lxc/network.go:333 lxc/network_acl.go:382 lxc/network_forward.go:293 -#: lxc/network_load_balancer.go:296 lxc/network_peer.go:280 -#: lxc/network_zone.go:324 lxc/network_zone.go:922 lxc/storage_bucket.go:136 +#: lxc/network_load_balancer.go:301 lxc/network_peer.go:280 +#: lxc/network_zone.go:329 lxc/network_zone.go:927 lxc/storage_bucket.go:141 #, c-format msgid "Bad key/value pair: %s" msgstr "" @@ -992,7 +992,7 @@ msgstr "" msgid "Can't read from stdin: %w" msgstr "" -#: lxc/remote.go:861 +#: lxc/remote.go:862 msgid "Can't remove the default remote" msgstr "" @@ -1058,15 +1058,14 @@ msgstr "" msgid "Certificate add token for %s deleted" msgstr "" -#: lxc/remote.go:218 -#, c-format -msgid "" -"Certificate fingerprint mismatch between certificate token and server %q" +#: lxc/remote.go:452 +msgid "Certificate fingerprint" msgstr "" -#: lxc/remote.go:451 +#: lxc/remote.go:219 #, c-format -msgid "Certificate fingerprint: %s" +msgid "" +"Certificate fingerprint mismatch between certificate token and server %q" msgstr "" #: lxc/network.go:893 @@ -1078,7 +1077,7 @@ msgstr "" msgid "Client %s certificate add token:" msgstr "" -#: lxc/remote.go:603 +#: lxc/remote.go:604 msgid "Client certificate now trusted by server:" msgstr "" @@ -1140,18 +1139,18 @@ msgstr "" #: lxc/network_forward.go:456 lxc/network_forward.go:579 #: lxc/network_forward.go:721 lxc/network_forward.go:798 #: lxc/network_forward.go:864 lxc/network_load_balancer.go:176 -#: lxc/network_load_balancer.go:241 lxc/network_load_balancer.go:459 -#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:725 -#: lxc/network_load_balancer.go:801 lxc/network_load_balancer.go:865 -#: lxc/network_load_balancer.go:966 lxc/network_load_balancer.go:1028 +#: lxc/network_load_balancer.go:246 lxc/network_load_balancer.go:464 +#: lxc/network_load_balancer.go:587 lxc/network_load_balancer.go:730 +#: lxc/network_load_balancer.go:806 lxc/network_load_balancer.go:870 +#: lxc/network_load_balancer.go:971 lxc/network_load_balancer.go:1033 #: lxc/storage.go:99 lxc/storage.go:347 lxc/storage.go:418 lxc/storage.go:671 -#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:85 -#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:248 -#: lxc/storage_bucket.go:379 lxc/storage_bucket.go:536 -#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:695 -#: lxc/storage_bucket.go:770 lxc/storage_bucket.go:850 -#: lxc/storage_bucket.go:928 lxc/storage_bucket.go:993 -#: lxc/storage_bucket.go:1129 lxc/storage_volume.go:358 +#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:90 +#: lxc/storage_bucket.go:190 lxc/storage_bucket.go:253 +#: lxc/storage_bucket.go:384 lxc/storage_bucket.go:541 +#: lxc/storage_bucket.go:634 lxc/storage_bucket.go:700 +#: lxc/storage_bucket.go:775 lxc/storage_bucket.go:855 +#: lxc/storage_bucket.go:933 lxc/storage_bucket.go:998 +#: lxc/storage_bucket.go:1134 lxc/storage_volume.go:358 #: lxc/storage_volume.go:560 lxc/storage_volume.go:639 #: lxc/storage_volume.go:883 lxc/storage_volume.go:1097 #: lxc/storage_volume.go:1210 lxc/storage_volume.go:1678 @@ -1179,11 +1178,11 @@ msgstr "" msgid "Columns" msgstr "" -#: lxc/main.go:81 +#: lxc/main.go:82 msgid "Command line client for LXD" msgstr "" -#: lxc/main.go:82 +#: lxc/main.go:83 msgid "" "Command line client for LXD\n" "\n" @@ -1215,19 +1214,15 @@ msgstr "" #: lxc/config.go:347 lxc/config.go:1277 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/network_load_balancer.go:694 lxc/network_peer.go:610 +#: lxc/network_zone.go:556 lxc/network_zone.go:1148 lxc/profile.go:538 +#: lxc/project.go:315 lxc/storage.go:310 lxc/storage_bucket.go:348 +#: lxc/storage_bucket.go:1097 lxc/storage_volume.go:1016 #: lxc/storage_volume.go:1048 #, c-format msgid "Config parsing error: %s" msgstr "" -#: lxc/console.go:140 -msgid "Console log:" -msgstr "" - #: lxc/storage_volume.go:561 msgid "Content type, block or filesystem" msgstr "" @@ -1330,12 +1325,12 @@ msgstr "" msgid "Cores:" msgstr "" -#: lxc/remote.go:486 +#: lxc/remote.go:487 #, c-format msgid "Could not close server cert file %q: %w" msgstr "" -#: lxc/remote.go:224 lxc/remote.go:470 +#: lxc/remote.go:225 lxc/remote.go:471 msgid "Could not create server cert dir" msgstr "" @@ -1374,12 +1369,12 @@ msgstr "" msgid "Could not write new remote certificate for remote '%s' with error: %v" msgstr "" -#: lxc/remote.go:481 +#: lxc/remote.go:482 #, c-format msgid "Could not write server cert file %q: %w" msgstr "" -#: lxc/network_zone.go:1327 +#: lxc/network_zone.go:1332 msgid "Couldn't find a matching entry" msgstr "" @@ -1431,7 +1426,7 @@ msgstr "" msgid "Create instances from images" msgstr "" -#: lxc/storage_bucket.go:846 lxc/storage_bucket.go:847 +#: lxc/storage_bucket.go:851 lxc/storage_bucket.go:852 msgid "Create key for a storage bucket" msgstr "" @@ -1463,11 +1458,11 @@ msgstr "" msgid "Create new network peering" msgstr "" -#: lxc/network_zone.go:869 lxc/network_zone.go:870 +#: lxc/network_zone.go:874 lxc/network_zone.go:875 msgid "Create new network zone record" msgstr "" -#: lxc/network_zone.go:270 lxc/network_zone.go:271 +#: lxc/network_zone.go:271 lxc/network_zone.go:272 msgid "Create new network zones" msgstr "" @@ -1518,9 +1513,9 @@ msgstr "" #: 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/network_zone.go:140 lxc/network_zone.go:747 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_bucket.go:512 lxc/storage_bucket.go:832 #: lxc/storage_volume.go:1562 msgid "DESCRIPTION" msgstr "" @@ -1585,7 +1580,7 @@ msgstr "" msgid "Delete instances and snapshots" msgstr "" -#: lxc/storage_bucket.go:924 lxc/storage_bucket.go:925 +#: lxc/storage_bucket.go:929 lxc/storage_bucket.go:930 msgid "Delete key from a storage bucket" msgstr "" @@ -1597,7 +1592,7 @@ msgstr "" msgid "Delete network forwards" msgstr "" -#: lxc/network_load_balancer.go:721 lxc/network_load_balancer.go:722 +#: lxc/network_load_balancer.go:726 lxc/network_load_balancer.go:727 msgid "Delete network load balancers" msgstr "" @@ -1605,11 +1600,11 @@ msgstr "" msgid "Delete network peerings" msgstr "" -#: lxc/network_zone.go:1175 lxc/network_zone.go:1176 +#: lxc/network_zone.go:1180 lxc/network_zone.go:1181 msgid "Delete network zone record" msgstr "" -#: lxc/network_zone.go:583 lxc/network_zone.go:584 +#: lxc/network_zone.go:588 lxc/network_zone.go:589 msgid "Delete network zones" msgstr "" @@ -1625,7 +1620,7 @@ msgstr "" msgid "Delete projects" msgstr "" -#: lxc/storage_bucket.go:182 lxc/storage_bucket.go:183 +#: lxc/storage_bucket.go:187 lxc/storage_bucket.go:188 msgid "Delete storage buckets" msgstr "" @@ -1681,7 +1676,7 @@ msgstr "" #: 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/info.go:32 lxc/init.go:43 lxc/launch.go:24 lxc/list.go:48 lxc/main.go:83 #: 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 @@ -1700,22 +1695,22 @@ msgstr "" #: 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_load_balancer.go:238 lxc/network_load_balancer.go:388 +#: lxc/network_load_balancer.go:456 lxc/network_load_balancer.go:554 +#: lxc/network_load_balancer.go:584 lxc/network_load_balancer.go:727 +#: lxc/network_load_balancer.go:788 lxc/network_load_balancer.go:803 +#: lxc/network_load_balancer.go:867 lxc/network_load_balancer.go:953 +#: lxc/network_load_balancer.go:968 lxc/network_load_balancer.go:1029 #: 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/network_zone.go:29 lxc/network_zone.go:86 lxc/network_zone.go:157 +#: lxc/network_zone.go:212 lxc/network_zone.go:272 lxc/network_zone.go:359 +#: lxc/network_zone.go:439 lxc/network_zone.go:470 lxc/network_zone.go:589 +#: lxc/network_zone.go:637 lxc/network_zone.go:694 lxc/network_zone.go:764 +#: lxc/network_zone.go:816 lxc/network_zone.go:875 lxc/network_zone.go:957 +#: lxc/network_zone.go:1033 lxc/network_zone.go:1063 lxc/network_zone.go:1181 +#: lxc/network_zone.go:1230 lxc/network_zone.go:1245 lxc/network_zone.go:1291 #: 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 @@ -1724,19 +1719,19 @@ msgstr "" #: 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:631 lxc/remote.go:669 lxc/remote.go:755 lxc/remote.go:828 -#: lxc/remote.go:884 lxc/remote.go:924 lxc/rename.go:21 lxc/restore.go:24 +#: lxc/query.go:34 lxc/rebuild.go:27 lxc/remote.go:35 lxc/remote.go:91 +#: lxc/remote.go:632 lxc/remote.go:670 lxc/remote.go:756 lxc/remote.go:829 +#: lxc/remote.go:885 lxc/remote.go:925 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_bucket.go:29 lxc/storage_bucket.go:83 lxc/storage_bucket.go:188 +#: lxc/storage_bucket.go:249 lxc/storage_bucket.go:382 +#: lxc/storage_bucket.go:458 lxc/storage_bucket.go:535 +#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:698 +#: lxc/storage_bucket.go:732 lxc/storage_bucket.go:773 +#: lxc/storage_bucket.go:852 lxc/storage_bucket.go:930 +#: lxc/storage_bucket.go:994 lxc/storage_bucket.go:1129 #: 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 @@ -1872,7 +1867,7 @@ msgstr "" msgid "Don't require user confirmation for using --force" msgstr "" -#: lxc/main.go:99 +#: lxc/main.go:100 msgid "Don't show progress information" msgstr "" @@ -1885,7 +1880,7 @@ msgstr "" msgid "Driver: %v (%v)" msgstr "" -#: lxc/network_zone.go:743 +#: lxc/network_zone.go:748 msgid "ENTRIES" msgstr "" @@ -1963,7 +1958,7 @@ msgstr "" msgid "Edit network forward configurations as YAML" msgstr "" -#: lxc/network_load_balancer.go:578 lxc/network_load_balancer.go:579 +#: lxc/network_load_balancer.go:583 lxc/network_load_balancer.go:584 msgid "Edit network load balancer configurations as YAML" msgstr "" @@ -1971,11 +1966,11 @@ msgstr "" msgid "Edit network peer configurations as YAML" msgstr "" -#: lxc/network_zone.go:464 lxc/network_zone.go:465 +#: lxc/network_zone.go:469 lxc/network_zone.go:470 msgid "Edit network zone configurations as YAML" msgstr "" -#: lxc/network_zone.go:1057 lxc/network_zone.go:1058 +#: lxc/network_zone.go:1062 lxc/network_zone.go:1063 msgid "Edit network zone record configurations as YAML" msgstr "" @@ -1987,11 +1982,11 @@ msgstr "" msgid "Edit project configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:243 lxc/storage_bucket.go:244 +#: lxc/storage_bucket.go:248 lxc/storage_bucket.go:249 msgid "Edit storage bucket configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:988 lxc/storage_bucket.go:989 +#: lxc/storage_bucket.go:993 lxc/storage_bucket.go:994 msgid "Edit storage bucket key as YAML" msgstr "" @@ -2032,7 +2027,7 @@ msgid "" " for the address if not yet set." msgstr "" -#: lxc/network_zone.go:1242 +#: lxc/network_zone.go:1247 msgid "Entry TTL" msgstr "" @@ -2061,9 +2056,9 @@ msgstr "" #: lxc/cluster.go:414 lxc/config.go:624 lxc/config.go:656 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/network_load_balancer.go:527 lxc/network_peer.go:463 +#: lxc/network_zone.go:414 lxc/network_zone.go:1008 lxc/profile.go:876 +#: lxc/project.go:634 lxc/storage.go:727 lxc/storage_bucket.go:602 #: lxc/storage_volume.go:1947 lxc/storage_volume.go:1985 #, c-format msgid "Error setting properties: %v" @@ -2075,10 +2070,10 @@ 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/network_forward.go:513 lxc/network_load_balancer.go:521 +#: lxc/network_peer.go:457 lxc/network_zone.go:408 lxc/network_zone.go:1002 #: lxc/profile.go:870 lxc/project.go:628 lxc/storage.go:721 -#: lxc/storage_bucket.go:591 lxc/storage_volume.go:1941 +#: lxc/storage_bucket.go:596 lxc/storage_volume.go:1941 #: lxc/storage_volume.go:1979 #, c-format msgid "Error unsetting property: %v" @@ -2264,7 +2259,7 @@ msgstr "" msgid "Failed parsing SSH host key: %w" msgstr "" -#: lxc/console.go:361 +#: lxc/console.go:366 #, c-format msgid "Failed starting command: %w" msgstr "" @@ -2279,11 +2274,11 @@ msgstr "" msgid "Failed to accept incoming connection: %w" msgstr "" -#: lxc/remote.go:190 +#: lxc/remote.go:191 msgid "Failed to add remote" msgstr "" -#: lxc/remote.go:241 +#: lxc/remote.go:242 #, c-format msgid "Failed to close server cert file %q: %w" msgstr "" @@ -2293,7 +2288,7 @@ msgstr "" msgid "Failed to connect to cluster member: %w" msgstr "" -#: lxc/remote.go:231 +#: lxc/remote.go:232 #, c-format msgid "Failed to create %q: %w" msgstr "" @@ -2303,12 +2298,12 @@ msgstr "" msgid "Failed to create alias %s: %w" msgstr "" -#: lxc/remote.go:256 +#: lxc/remote.go:257 #, c-format msgid "Failed to create certificate: %w" msgstr "" -#: lxc/remote.go:263 +#: lxc/remote.go:264 #, c-format msgid "Failed to find project: %w" msgstr "" @@ -2333,7 +2328,7 @@ msgstr "" msgid "Failed to walk path for %s: %s" msgstr "" -#: lxc/remote.go:236 +#: lxc/remote.go:237 #, c-format msgid "Failed to write server cert file %q: %w" msgstr "" @@ -2342,7 +2337,7 @@ msgstr "" msgid "Fast mode (same as --columns=nsacPt)" msgstr "" -#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:115 +#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:116 #: lxc/operation.go:136 msgid "Filtering isn't supported yet" msgstr "" @@ -2380,7 +2375,7 @@ msgstr "" msgid "Force the removal of running instances" msgstr "" -#: lxc/main.go:95 +#: lxc/main.go:96 msgid "Force using the local unix socket" msgstr "" @@ -2414,10 +2409,10 @@ msgstr "" #: 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/network_peer.go:84 lxc/network_zone.go:89 lxc/network_zone.go:697 #: lxc/operation.go:108 lxc/profile.go:637 lxc/project.go:412 -#: lxc/project.go:804 lxc/remote.go:673 lxc/storage.go:588 -#: lxc/storage_bucket.go:454 lxc/storage_bucket.go:769 +#: lxc/project.go:804 lxc/remote.go:674 lxc/storage.go:588 +#: lxc/storage_bucket.go:459 lxc/storage_bucket.go:774 #: lxc/storage_volume.go:1446 lxc/warning.go:93 msgid "Format (csv|json|table|yaml|compact)" msgstr "" @@ -2454,7 +2449,7 @@ msgstr "" msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)" msgstr "" -#: lxc/remote.go:737 +#: lxc/remote.go:738 msgid "GLOBAL" msgstr "" @@ -2474,7 +2469,7 @@ msgstr "" msgid "Generate manpages for all commands" msgstr "" -#: lxc/remote.go:159 lxc/remote.go:397 +#: lxc/remote.go:160 lxc/remote.go:398 msgid "Generating a client certificate. This may take a minute..." msgstr "" @@ -2506,7 +2501,7 @@ msgstr "" msgid "Get the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:386 +#: lxc/network_load_balancer.go:391 msgid "Get the key as a network load balancer property" msgstr "" @@ -2518,11 +2513,11 @@ msgstr "" msgid "Get the key as a network property" msgstr "" -#: lxc/network_zone.go:214 +#: lxc/network_zone.go:215 msgid "Get the key as a network zone property" msgstr "" -#: lxc/network_zone.go:814 +#: lxc/network_zone.go:819 msgid "Get the key as a network zone record property" msgstr "" @@ -2534,7 +2529,7 @@ msgstr "" msgid "Get the key as a project property" msgstr "" -#: lxc/storage_bucket.go:380 +#: lxc/storage_bucket.go:385 msgid "Get the key as a storage bucket property" msgstr "" @@ -2574,7 +2569,7 @@ msgstr "" msgid "Get values for network forward configuration keys" msgstr "" -#: lxc/network_load_balancer.go:382 lxc/network_load_balancer.go:383 +#: lxc/network_load_balancer.go:387 lxc/network_load_balancer.go:388 msgid "Get values for network load balancer configuration keys" msgstr "" @@ -2582,11 +2577,11 @@ msgstr "" msgid "Get values for network peer configuration keys" msgstr "" -#: lxc/network_zone.go:210 lxc/network_zone.go:211 +#: lxc/network_zone.go:211 lxc/network_zone.go:212 msgid "Get values for network zone configuration keys" msgstr "" -#: lxc/network_zone.go:810 lxc/network_zone.go:811 +#: lxc/network_zone.go:815 lxc/network_zone.go:816 msgid "Get values for network zone record configuration keys" msgstr "" @@ -2598,7 +2593,7 @@ msgstr "" msgid "Get values for project configuration keys" msgstr "" -#: lxc/storage_bucket.go:376 lxc/storage_bucket.go:377 +#: lxc/storage_bucket.go:381 lxc/storage_bucket.go:382 msgid "Get values for storage bucket configuration keys" msgstr "" @@ -2738,7 +2733,7 @@ msgstr "" msgid "If the snapshot name already exists, delete and create a new one" msgstr "" -#: lxc/main.go:398 +#: lxc/main.go:400 msgid "" "If this is your first time running LXD on this machine, you should also run: " "lxd init" @@ -2895,7 +2890,7 @@ msgstr "" msgid "Instance type" msgstr "" -#: lxc/remote.go:349 +#: lxc/remote.go:350 #, c-format msgid "Invalid URL scheme \"%s\" in \"%s\"" msgstr "" @@ -2967,7 +2962,7 @@ msgstr "" msgid "Invalid new snapshot name, parent volume must be the same as source" msgstr "" -#: lxc/main.go:498 +#: lxc/main.go:502 msgid "Invalid number of arguments" msgstr "" @@ -2976,7 +2971,7 @@ msgstr "" msgid "Invalid path %s" msgstr "" -#: lxc/remote.go:338 +#: lxc/remote.go:339 #, c-format msgid "Invalid protocol: %s" msgstr "" @@ -3024,7 +3019,7 @@ msgstr "" #: lxc/list.go:597 lxc/network.go:1059 lxc/network_forward.go:155 #: lxc/network_load_balancer.go:157 lxc/operation.go:177 -#: lxc/storage_bucket.go:511 lxc/storage_volume.go:1569 lxc/warning.go:220 +#: lxc/storage_bucket.go:516 lxc/storage_volume.go:1569 lxc/warning.go:220 msgid "LOCATION" msgstr "" @@ -3032,7 +3027,7 @@ msgstr "" msgid "LXD - Command line client" msgstr "" -#: lxc/console.go:382 +#: lxc/console.go:387 msgid "LXD automatically uses either spicy or remote-viewer when present." msgstr "" @@ -3122,15 +3117,15 @@ msgstr "" msgid "List available network peers" msgstr "" -#: lxc/network_zone.go:85 +#: lxc/network_zone.go:86 msgid "List available network zone" msgstr "" -#: lxc/network_zone.go:688 lxc/network_zone.go:689 +#: lxc/network_zone.go:693 lxc/network_zone.go:694 msgid "List available network zone records" msgstr "" -#: lxc/network_zone.go:84 +#: lxc/network_zone.go:85 msgid "List available network zoneS" msgstr "" @@ -3319,11 +3314,11 @@ msgstr "" msgid "List projects" msgstr "" -#: lxc/storage_bucket.go:766 lxc/storage_bucket.go:768 +#: lxc/storage_bucket.go:771 lxc/storage_bucket.go:773 msgid "List storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:451 lxc/storage_bucket.go:453 +#: lxc/storage_bucket.go:456 lxc/storage_bucket.go:458 msgid "List storage buckets" msgstr "" @@ -3351,7 +3346,7 @@ msgid "" " U - Current disk usage" msgstr "" -#: lxc/remote.go:668 lxc/remote.go:669 +#: lxc/remote.go:669 lxc/remote.go:670 msgid "List the available remotes" msgstr "" @@ -3578,11 +3573,11 @@ msgstr "" msgid "Manage network forwards" msgstr "" -#: lxc/network_load_balancer.go:782 lxc/network_load_balancer.go:783 +#: lxc/network_load_balancer.go:787 lxc/network_load_balancer.go:788 msgid "Manage network load balancer backends" msgstr "" -#: lxc/network_load_balancer.go:947 lxc/network_load_balancer.go:948 +#: lxc/network_load_balancer.go:952 lxc/network_load_balancer.go:953 msgid "Manage network load balancer ports" msgstr "" @@ -3594,15 +3589,15 @@ msgstr "" msgid "Manage network peerings" msgstr "" -#: lxc/network_zone.go:1224 lxc/network_zone.go:1225 +#: lxc/network_zone.go:1229 lxc/network_zone.go:1230 msgid "Manage network zone record entries" msgstr "" -#: lxc/network_zone.go:631 lxc/network_zone.go:632 +#: lxc/network_zone.go:636 lxc/network_zone.go:637 msgid "Manage network zone records" msgstr "" -#: lxc/network_zone.go:27 lxc/network_zone.go:28 +#: lxc/network_zone.go:28 lxc/network_zone.go:29 msgid "Manage network zones" msgstr "" @@ -3618,11 +3613,11 @@ msgstr "" msgid "Manage projects" msgstr "" -#: lxc/storage_bucket.go:726 +#: lxc/storage_bucket.go:731 msgid "Manage storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:727 +#: lxc/storage_bucket.go:732 msgid "Manage storage bucket keys." msgstr "" @@ -3650,7 +3645,7 @@ msgid "" "\"custom\" (user created) volumes." msgstr "" -#: lxc/remote.go:33 lxc/remote.go:34 +#: lxc/remote.go:34 lxc/remote.go:35 msgid "Manage the list of remote servers" msgstr "" @@ -3731,12 +3726,12 @@ msgid "" "Minimum level for log messages (only available when using pretty format)" msgstr "" -#: lxc/storage_bucket.go:111 lxc/storage_bucket.go:211 -#: lxc/storage_bucket.go:287 lxc/storage_bucket.go:406 -#: lxc/storage_bucket.go:563 lxc/storage_bucket.go:655 -#: lxc/storage_bucket.go:797 lxc/storage_bucket.go:878 -#: lxc/storage_bucket.go:953 lxc/storage_bucket.go:1032 -#: lxc/storage_bucket.go:1155 +#: lxc/storage_bucket.go:116 lxc/storage_bucket.go:216 +#: lxc/storage_bucket.go:292 lxc/storage_bucket.go:411 +#: lxc/storage_bucket.go:568 lxc/storage_bucket.go:660 +#: lxc/storage_bucket.go:802 lxc/storage_bucket.go:883 +#: lxc/storage_bucket.go:958 lxc/storage_bucket.go:1037 +#: lxc/storage_bucket.go:1160 msgid "Missing bucket name" msgstr "" @@ -3780,8 +3775,8 @@ msgstr "" msgid "Missing instance name" msgstr "" -#: lxc/storage_bucket.go:882 lxc/storage_bucket.go:957 -#: lxc/storage_bucket.go:1036 lxc/storage_bucket.go:1159 +#: lxc/storage_bucket.go:887 lxc/storage_bucket.go:962 +#: lxc/storage_bucket.go:1041 lxc/storage_bucket.go:1164 msgid "Missing key name" msgstr "" @@ -3789,10 +3784,10 @@ msgstr "" #: lxc/network_forward.go:481 lxc/network_forward.go:627 #: lxc/network_forward.go:746 lxc/network_forward.go:823 #: lxc/network_forward.go:889 lxc/network_load_balancer.go:201 -#: lxc/network_load_balancer.go:411 lxc/network_load_balancer.go:484 -#: lxc/network_load_balancer.go:630 lxc/network_load_balancer.go:750 -#: lxc/network_load_balancer.go:826 lxc/network_load_balancer.go:890 -#: lxc/network_load_balancer.go:991 lxc/network_load_balancer.go:1053 +#: lxc/network_load_balancer.go:416 lxc/network_load_balancer.go:489 +#: lxc/network_load_balancer.go:635 lxc/network_load_balancer.go:755 +#: lxc/network_load_balancer.go:831 lxc/network_load_balancer.go:895 +#: lxc/network_load_balancer.go:996 lxc/network_load_balancer.go:1058 msgid "Missing listen address" msgstr "" @@ -3817,26 +3812,26 @@ msgstr "" #: lxc/network_forward.go:477 lxc/network_forward.go:623 #: lxc/network_forward.go:742 lxc/network_forward.go:819 #: lxc/network_forward.go:885 lxc/network_load_balancer.go:123 -#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:261 -#: lxc/network_load_balancer.go:407 lxc/network_load_balancer.go:480 -#: lxc/network_load_balancer.go:626 lxc/network_load_balancer.go:746 -#: lxc/network_load_balancer.go:822 lxc/network_load_balancer.go:886 -#: lxc/network_load_balancer.go:987 lxc/network_load_balancer.go:1049 +#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:266 +#: lxc/network_load_balancer.go:412 lxc/network_load_balancer.go:485 +#: lxc/network_load_balancer.go:631 lxc/network_load_balancer.go:751 +#: lxc/network_load_balancer.go:827 lxc/network_load_balancer.go:891 +#: lxc/network_load_balancer.go:992 lxc/network_load_balancer.go:1054 #: lxc/network_peer.go:110 lxc/network_peer.go:180 lxc/network_peer.go:237 #: lxc/network_peer.go:355 lxc/network_peer.go:426 lxc/network_peer.go:556 #: lxc/network_peer.go:665 msgid "Missing network name" msgstr "" -#: lxc/network_zone.go:178 lxc/network_zone.go:234 lxc/network_zone.go:294 -#: lxc/network_zone.go:382 lxc/network_zone.go:503 lxc/network_zone.go:606 -#: lxc/network_zone.go:712 lxc/network_zone.go:780 lxc/network_zone.go:892 -#: lxc/network_zone.go:976 lxc/network_zone.go:1197 lxc/network_zone.go:1262 -#: lxc/network_zone.go:1307 +#: lxc/network_zone.go:179 lxc/network_zone.go:235 lxc/network_zone.go:299 +#: lxc/network_zone.go:387 lxc/network_zone.go:508 lxc/network_zone.go:611 +#: lxc/network_zone.go:717 lxc/network_zone.go:785 lxc/network_zone.go:897 +#: lxc/network_zone.go:981 lxc/network_zone.go:1202 lxc/network_zone.go:1267 +#: lxc/network_zone.go:1312 msgid "Missing network zone name" msgstr "" -#: lxc/network_zone.go:833 lxc/network_zone.go:1095 +#: lxc/network_zone.go:838 lxc/network_zone.go:1100 msgid "Missing network zone record name" msgstr "" @@ -3846,13 +3841,13 @@ msgid "Missing peer name" msgstr "" #: lxc/storage.go:194 lxc/storage.go:264 lxc/storage.go:370 lxc/storage.go:440 -#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:107 -#: lxc/storage_bucket.go:207 lxc/storage_bucket.go:283 -#: lxc/storage_bucket.go:402 lxc/storage_bucket.go:477 -#: lxc/storage_bucket.go:559 lxc/storage_bucket.go:651 -#: lxc/storage_bucket.go:793 lxc/storage_bucket.go:874 -#: lxc/storage_bucket.go:949 lxc/storage_bucket.go:1028 -#: lxc/storage_bucket.go:1151 lxc/storage_volume.go:189 +#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:112 +#: lxc/storage_bucket.go:212 lxc/storage_bucket.go:288 +#: lxc/storage_bucket.go:407 lxc/storage_bucket.go:482 +#: lxc/storage_bucket.go:564 lxc/storage_bucket.go:656 +#: lxc/storage_bucket.go:798 lxc/storage_bucket.go:879 +#: lxc/storage_bucket.go:954 lxc/storage_bucket.go:1033 +#: lxc/storage_bucket.go:1156 lxc/storage_volume.go:189 #: lxc/storage_volume.go:287 lxc/storage_volume.go:583 #: lxc/storage_volume.go:660 lxc/storage_volume.go:735 #: lxc/storage_volume.go:817 lxc/storage_volume.go:919 @@ -3972,7 +3967,7 @@ msgstr "" msgid "Moving the storage volume: %s" msgstr "" -#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1097 +#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1102 msgid "Multiple ports match. Use --force to remove them all" msgstr "" @@ -3991,10 +3986,10 @@ 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:677 lxc/project.go:498 -#: lxc/remote.go:731 lxc/storage.go:638 lxc/storage_bucket.go:506 -#: lxc/storage_bucket.go:826 lxc/storage_volume.go:1561 +#: lxc/network_acl.go:147 lxc/network_peer.go:139 lxc/network_zone.go:139 +#: lxc/network_zone.go:746 lxc/profile.go:677 lxc/project.go:498 +#: lxc/remote.go:732 lxc/storage.go:638 lxc/storage_bucket.go:511 +#: lxc/storage_bucket.go:831 lxc/storage_volume.go:1561 msgid "NAME" msgstr "" @@ -4020,7 +4015,7 @@ msgstr "" #: lxc/network.go:957 lxc/operation.go:154 lxc/project.go:456 #: lxc/project.go:461 lxc/project.go:466 lxc/project.go:471 lxc/project.go:476 -#: lxc/project.go:481 lxc/remote.go:691 lxc/remote.go:696 lxc/remote.go:701 +#: lxc/project.go:481 lxc/remote.go:692 lxc/remote.go:697 lxc/remote.go:702 msgid "NO" msgstr "" @@ -4047,7 +4042,7 @@ msgstr "" msgid "Name" msgstr "" -#: lxc/remote.go:141 +#: lxc/remote.go:142 msgid "Name of the project to use for this remote:" msgstr "" @@ -4096,12 +4091,12 @@ msgstr "" msgid "Network ACL %s renamed to %s" msgstr "" -#: lxc/network_zone.go:336 +#: lxc/network_zone.go:341 #, c-format msgid "Network Zone %s created" msgstr "" -#: lxc/network_zone.go:616 +#: lxc/network_zone.go:621 #, c-format msgid "Network Zone %s deleted" msgstr "" @@ -4116,12 +4111,12 @@ msgstr "" msgid "Network forward %s deleted" msgstr "" -#: lxc/network_load_balancer.go:365 +#: lxc/network_load_balancer.go:370 #, c-format msgid "Network load balancer %s created" msgstr "" -#: lxc/network_load_balancer.go:767 +#: lxc/network_load_balancer.go:772 #, c-format msgid "Network load balancer %s deleted" msgstr "" @@ -4159,12 +4154,12 @@ msgstr "" msgid "Network usage:" msgstr "" -#: lxc/network_zone.go:934 +#: lxc/network_zone.go:939 #, c-format msgid "Network zone record %s created" msgstr "" -#: lxc/network_zone.go:1207 +#: lxc/network_zone.go:1212 #, c-format msgid "Network zone record %s deleted" msgstr "" @@ -4199,11 +4194,11 @@ msgstr "" msgid "No device found for this storage volume" msgstr "" -#: lxc/network_load_balancer.go:921 +#: lxc/network_load_balancer.go:926 msgid "No matching backend found" msgstr "" -#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1108 +#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1113 msgid "No matching port(s) found" msgstr "" @@ -4249,7 +4244,7 @@ msgstr "" msgid "Only \"custom\" volumes can be snapshotted" msgstr "" -#: lxc/remote.go:332 +#: lxc/remote.go:333 msgid "Only https URLs are supported for simplestreams" msgstr "" @@ -4274,7 +4269,7 @@ msgstr "" msgid "Optimized Storage" msgstr "" -#: lxc/main.go:96 +#: lxc/main.go:97 msgid "Override the source project" msgstr "" @@ -4320,11 +4315,11 @@ msgstr "" msgid "PROJECT" msgstr "" -#: lxc/remote.go:733 +#: lxc/remote.go:734 msgid "PROTOCOL" msgstr "" -#: lxc/image.go:1073 lxc/remote.go:735 +#: lxc/image.go:1073 lxc/remote.go:736 msgid "PUBLIC" msgstr "" @@ -4340,7 +4335,7 @@ msgstr "" msgid "Partitions:" msgstr "" -#: lxc/main.go:361 +#: lxc/main.go:363 #, c-format msgid "Password for %s: " msgstr "" @@ -4353,7 +4348,7 @@ msgstr "" msgid "Perform an incremental copy" msgstr "" -#: lxc/remote.go:182 +#: lxc/remote.go:183 msgid "Please provide an alternate server address (empty to abort):" msgstr "" @@ -4365,7 +4360,7 @@ msgstr "" msgid "Please provide cluster member name: " msgstr "" -#: lxc/remote.go:462 +#: lxc/remote.go:463 msgid "Please type 'y', 'n' or the fingerprint:" msgstr "" @@ -4387,10 +4382,10 @@ msgstr "" #: lxc/config.go:1278 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/network_load_balancer.go:695 lxc/network_peer.go:611 +#: lxc/network_zone.go:557 lxc/network_zone.go:1149 lxc/profile.go:539 +#: lxc/project.go:316 lxc/storage.go:311 lxc/storage_bucket.go:349 +#: lxc/storage_bucket.go:1098 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 "" @@ -4399,7 +4394,7 @@ msgstr "" msgid "Pretty rendering (short for --format=pretty)" msgstr "" -#: lxc/main.go:94 +#: lxc/main.go:95 msgid "Print help" msgstr "" @@ -4407,7 +4402,7 @@ msgstr "" msgid "Print the raw response" msgstr "" -#: lxc/main.go:93 +#: lxc/main.go:94 msgid "Print version number" msgstr "" @@ -4496,7 +4491,7 @@ msgstr "" msgid "Project %s renamed to %s" msgstr "" -#: lxc/remote.go:106 +#: lxc/remote.go:107 msgid "Project to use for the remote" msgstr "" @@ -4594,7 +4589,7 @@ msgid "" "pool \"default\"." msgstr "" -#: lxc/remote.go:105 +#: lxc/remote.go:106 msgid "Public image server" msgstr "" @@ -4642,7 +4637,7 @@ msgstr "" msgid "RESOURCE" msgstr "" -#: lxc/storage_bucket.go:828 +#: lxc/storage_bucket.go:833 msgid "ROLE" msgstr "" @@ -4685,45 +4680,45 @@ msgstr "" msgid "Refreshing the image: %s" msgstr "" -#: lxc/remote.go:785 +#: lxc/remote.go:786 #, c-format msgid "Remote %s already exists" msgstr "" -#: lxc/project.go:769 lxc/remote.go:776 lxc/remote.go:849 lxc/remote.go:905 -#: lxc/remote.go:945 +#: lxc/project.go:769 lxc/remote.go:777 lxc/remote.go:850 lxc/remote.go:906 +#: lxc/remote.go:946 #, c-format msgid "Remote %s doesn't exist" msgstr "" -#: lxc/remote.go:301 +#: lxc/remote.go:302 #, c-format msgid "Remote %s exists as <%s>" msgstr "" -#: lxc/remote.go:857 +#: lxc/remote.go:858 #, c-format msgid "Remote %s is global and cannot be removed" msgstr "" -#: lxc/remote.go:780 lxc/remote.go:853 lxc/remote.go:949 +#: lxc/remote.go:781 lxc/remote.go:854 lxc/remote.go:950 #, c-format msgid "Remote %s is static and cannot be modified" msgstr "" -#: lxc/remote.go:290 +#: lxc/remote.go:291 msgid "Remote address must not be empty" msgstr "" -#: lxc/remote.go:101 +#: lxc/remote.go:102 msgid "Remote admin password" msgstr "" -#: lxc/remote.go:295 +#: lxc/remote.go:296 msgid "Remote names may not contain colons" msgstr "" -#: lxc/remote.go:102 +#: lxc/remote.go:103 msgid "Remote trust token" msgstr "" @@ -4749,7 +4744,7 @@ msgstr "" msgid "Remove a member from the cluster" msgstr "" -#: lxc/network_zone.go:1285 +#: lxc/network_zone.go:1290 msgid "Remove a network zone record entry" msgstr "" @@ -4757,7 +4752,7 @@ msgstr "" msgid "Remove aliases" msgstr "" -#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1025 +#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1030 msgid "Remove all ports that match" msgstr "" @@ -4765,15 +4760,15 @@ msgstr "" msgid "Remove all rules that match" msgstr "" -#: lxc/network_load_balancer.go:862 +#: lxc/network_load_balancer.go:867 msgid "Remove backend from a load balancer" msgstr "" -#: lxc/network_load_balancer.go:861 +#: lxc/network_load_balancer.go:866 msgid "Remove backends from a load balancer" msgstr "" -#: lxc/network_zone.go:1286 +#: lxc/network_zone.go:1291 msgid "Remove entries from a network zone record" msgstr "" @@ -4797,7 +4792,7 @@ msgstr "" msgid "Remove ports from a forward" msgstr "" -#: lxc/network_load_balancer.go:1023 lxc/network_load_balancer.go:1024 +#: lxc/network_load_balancer.go:1028 lxc/network_load_balancer.go:1029 msgid "Remove ports from a load balancer" msgstr "" @@ -4805,7 +4800,7 @@ msgstr "" msgid "Remove profiles from instances" msgstr "" -#: lxc/remote.go:827 lxc/remote.go:828 +#: lxc/remote.go:828 lxc/remote.go:829 msgid "Remove remotes" msgstr "" @@ -4862,7 +4857,7 @@ msgstr "" msgid "Rename projects" msgstr "" -#: lxc/remote.go:754 lxc/remote.go:755 +#: lxc/remote.go:755 lxc/remote.go:756 msgid "Rename remotes" msgstr "" @@ -4940,7 +4935,7 @@ msgid "Restrict the certificate to one or more projects" msgstr "" #: lxc/console.go:44 -msgid "Retrieve the instance's console log" +msgid "Retrieve the container's console log" msgstr "" #: lxc/init.go:347 @@ -4956,7 +4951,7 @@ msgstr "" msgid "Revoke cluster member join token" msgstr "" -#: lxc/storage_bucket.go:851 +#: lxc/storage_bucket.go:856 msgid "Role (admin or read-only)" msgstr "" @@ -5007,7 +5002,7 @@ msgstr "" msgid "STATE" msgstr "" -#: lxc/remote.go:736 +#: lxc/remote.go:737 msgid "STATIC" msgstr "" @@ -5031,11 +5026,11 @@ msgstr "" msgid "STP" msgstr "" -#: lxc/storage_bucket.go:853 +#: lxc/storage_bucket.go:858 msgid "Secret key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:909 +#: lxc/storage_bucket.go:914 #, c-format msgid "Secret key: %s" msgstr "" @@ -5044,19 +5039,19 @@ msgstr "" msgid "Send a raw query to LXD" msgstr "" -#: lxc/remote.go:104 +#: lxc/remote.go:105 msgid "Server authentication type (tls or oidc)" msgstr "" -#: lxc/remote.go:460 +#: lxc/remote.go:461 msgid "Server certificate NACKed by user" msgstr "" -#: lxc/remote.go:599 +#: lxc/remote.go:600 msgid "Server doesn't trust us after authentication" msgstr "" -#: lxc/remote.go:103 +#: lxc/remote.go:104 msgid "Server protocol (lxd or simplestreams)" msgstr "" @@ -5155,11 +5150,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_load_balancer.go:450 +#: lxc/network_load_balancer.go:455 msgid "Set network load balancer keys" msgstr "" -#: lxc/network_load_balancer.go:451 +#: lxc/network_load_balancer.go:456 msgid "" "Set network load balancer keys\n" "\n" @@ -5181,11 +5176,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:353 +#: lxc/network_zone.go:358 msgid "Set network zone configuration keys" msgstr "" -#: lxc/network_zone.go:354 +#: lxc/network_zone.go:359 msgid "" "Set network zone configuration keys\n" "\n" @@ -5194,7 +5189,7 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:951 lxc/network_zone.go:952 +#: lxc/network_zone.go:956 lxc/network_zone.go:957 msgid "Set network zone record configuration keys" msgstr "" @@ -5224,11 +5219,11 @@ msgid "" " lxc project set [:] " msgstr "" -#: lxc/storage_bucket.go:529 +#: lxc/storage_bucket.go:534 msgid "Set storage bucket configuration keys" msgstr "" -#: lxc/storage_bucket.go:530 +#: lxc/storage_bucket.go:535 msgid "" "Set storage bucket configuration keys\n" "\n" @@ -5263,7 +5258,7 @@ msgid "" " lxc storage volume set [:] [/] " msgstr "" -#: lxc/remote.go:923 lxc/remote.go:924 +#: lxc/remote.go:924 lxc/remote.go:925 msgid "Set the URL for the remote" msgstr "" @@ -5291,7 +5286,7 @@ msgstr "" msgid "Set the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:458 +#: lxc/network_load_balancer.go:463 msgid "Set the key as a network load balancer property" msgstr "" @@ -5303,11 +5298,11 @@ msgstr "" msgid "Set the key as a network property" msgstr "" -#: lxc/network_zone.go:361 +#: lxc/network_zone.go:366 msgid "Set the key as a network zone property" msgstr "" -#: lxc/network_zone.go:957 +#: lxc/network_zone.go:962 msgid "Set the key as a network zone record property" msgstr "" @@ -5319,7 +5314,7 @@ msgstr "" msgid "Set the key as a project property" msgstr "" -#: lxc/storage_bucket.go:537 +#: lxc/storage_bucket.go:542 msgid "Set the key as a storage bucket property" msgstr "" @@ -5339,11 +5334,11 @@ msgstr "" msgid "Setup SSH SFTP listener on address:port instead of mounting" msgstr "" -#: lxc/main.go:97 +#: lxc/main.go:98 msgid "Show all debug messages" msgstr "" -#: lxc/main.go:98 +#: lxc/main.go:99 msgid "Show all information messages" msgstr "" @@ -5412,7 +5407,7 @@ msgstr "" msgid "Show instance or server information" msgstr "" -#: lxc/main.go:271 lxc/main.go:272 +#: lxc/main.go:272 lxc/main.go:273 msgid "Show less common commands" msgstr "" @@ -5444,15 +5439,15 @@ msgstr "" msgid "Show network peer configurations" msgstr "" -#: lxc/network_zone.go:155 lxc/network_zone.go:156 +#: lxc/network_zone.go:156 lxc/network_zone.go:157 msgid "Show network zone configurations" msgstr "" -#: lxc/network_zone.go:758 +#: lxc/network_zone.go:763 msgid "Show network zone record configuration" msgstr "" -#: lxc/network_zone.go:759 +#: lxc/network_zone.go:764 msgid "Show network zone record configurations" msgstr "" @@ -5464,11 +5459,11 @@ msgstr "" msgid "Show project options" msgstr "" -#: lxc/storage_bucket.go:623 lxc/storage_bucket.go:624 +#: lxc/storage_bucket.go:628 lxc/storage_bucket.go:629 msgid "Show storage bucket configurations" msgstr "" -#: lxc/storage_bucket.go:1123 lxc/storage_bucket.go:1124 +#: lxc/storage_bucket.go:1128 lxc/storage_bucket.go:1129 msgid "Show storage bucket key configurations" msgstr "" @@ -5494,7 +5489,7 @@ msgid "" "that are granted via identity provider group mappings. \n" msgstr "" -#: lxc/remote.go:630 lxc/remote.go:631 +#: lxc/remote.go:631 lxc/remote.go:632 msgid "Show the default remote" msgstr "" @@ -5618,22 +5613,22 @@ msgstr "" msgid "Stopping the instance failed: %s" msgstr "" -#: lxc/storage_bucket.go:161 +#: lxc/storage_bucket.go:166 #, c-format msgid "Storage bucket %s created" msgstr "" -#: lxc/storage_bucket.go:228 +#: lxc/storage_bucket.go:233 #, c-format msgid "Storage bucket %s deleted" msgstr "" -#: lxc/storage_bucket.go:907 +#: lxc/storage_bucket.go:912 #, c-format msgid "Storage bucket key %s added" msgstr "" -#: lxc/storage_bucket.go:973 +#: lxc/storage_bucket.go:978 #, c-format msgid "Storage bucket key %s removed" msgstr "" @@ -5706,7 +5701,7 @@ msgstr "" msgid "Switch the current project" msgstr "" -#: lxc/remote.go:883 lxc/remote.go:884 +#: lxc/remote.go:884 lxc/remote.go:885 msgid "Switch the default remote" msgstr "" @@ -5821,7 +5816,7 @@ msgstr "" msgid "The property %q does not exist on the instance snapshot %s/%s: %v" msgstr "" -#: lxc/network_load_balancer.go:424 +#: lxc/network_load_balancer.go:429 #, c-format msgid "The property %q does not exist on the load balancer %q: %v" msgstr "" @@ -5846,12 +5841,12 @@ msgstr "" msgid "The property %q does not exist on the network peer %q: %v" msgstr "" -#: lxc/network_zone.go:246 +#: lxc/network_zone.go:247 #, c-format msgid "The property %q does not exist on the network zone %q: %v" msgstr "" -#: lxc/network_zone.go:845 +#: lxc/network_zone.go:850 #, c-format msgid "The property %q does not exist on the network zone record %q: %v" msgstr "" @@ -5866,7 +5861,7 @@ msgstr "" msgid "The property %q does not exist on the project %q: %v" msgstr "" -#: lxc/storage_bucket.go:426 +#: lxc/storage_bucket.go:431 #, c-format msgid "The property %q does not exist on the storage bucket %q: %v" msgstr "" @@ -5920,7 +5915,7 @@ msgstr "" msgid "This LXD server is not available on the network" msgstr "" -#: lxc/main.go:293 +#: lxc/main.go:294 msgid "" "This client hasn't been configured to use a remote LXD server yet.\n" "As your platform can't run native Linux instances, you must connect to a " @@ -5952,11 +5947,11 @@ msgstr "" msgid "To create a new network, use: lxc network create" msgstr "" -#: lxc/console.go:210 +#: lxc/console.go:215 msgid "To detach from the console, press: +a q" msgstr "" -#: lxc/main.go:403 +#: lxc/main.go:406 msgid "" "To start your first container, try: lxc launch ubuntu:24.04\n" "Or for a virtual machine: lxc launch ubuntu:24.04 --vm" @@ -6054,7 +6049,7 @@ msgstr "" msgid "UPLOAD DATE" msgstr "" -#: lxc/cluster.go:184 lxc/remote.go:732 +#: lxc/cluster.go:184 lxc/remote.go:733 msgid "URL" msgstr "" @@ -6063,7 +6058,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:679 lxc/project.go:506 +#: lxc/network_zone.go:141 lxc/profile.go:679 lxc/project.go:506 #: lxc/storage.go:647 lxc/storage_volume.go:1564 msgid "USED BY" msgstr "" @@ -6082,7 +6077,7 @@ msgstr "" msgid "Unable to create a temporary file: %v" msgstr "" -#: lxc/remote.go:213 lxc/remote.go:247 +#: lxc/remote.go:214 lxc/remote.go:248 msgid "Unavailable remote server" msgstr "" @@ -6102,7 +6097,7 @@ msgstr "" msgid "Unknown column shorthand char '%c' in '%s'" msgstr "" -#: lxc/console.go:159 +#: lxc/console.go:164 #, c-format msgid "Unknown console type %q" msgstr "" @@ -6162,11 +6157,11 @@ msgstr "" msgid "Unset network forward keys" msgstr "" -#: lxc/network_load_balancer.go:548 +#: lxc/network_load_balancer.go:553 msgid "Unset network load balancer configuration keys" msgstr "" -#: lxc/network_load_balancer.go:549 +#: lxc/network_load_balancer.go:554 msgid "Unset network load balancer keys" msgstr "" @@ -6178,11 +6173,11 @@ msgstr "" msgid "Unset network peer keys" msgstr "" -#: lxc/network_zone.go:433 lxc/network_zone.go:434 +#: lxc/network_zone.go:438 lxc/network_zone.go:439 msgid "Unset network zone configuration keys" msgstr "" -#: lxc/network_zone.go:1027 lxc/network_zone.go:1028 +#: lxc/network_zone.go:1032 lxc/network_zone.go:1033 msgid "Unset network zone record configuration keys" msgstr "" @@ -6194,7 +6189,7 @@ msgstr "" msgid "Unset project configuration keys" msgstr "" -#: lxc/storage_bucket.go:692 lxc/storage_bucket.go:693 +#: lxc/storage_bucket.go:697 lxc/storage_bucket.go:698 msgid "Unset storage bucket configuration keys" msgstr "" @@ -6218,7 +6213,7 @@ msgstr "" msgid "Unset the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:552 +#: lxc/network_load_balancer.go:557 msgid "Unset the key as a network load balancer property" msgstr "" @@ -6230,11 +6225,11 @@ msgstr "" msgid "Unset the key as a network property" msgstr "" -#: lxc/network_zone.go:437 +#: lxc/network_zone.go:442 msgid "Unset the key as a network zone property" msgstr "" -#: lxc/network_zone.go:1031 +#: lxc/network_zone.go:1036 msgid "Unset the key as a network zone record property" msgstr "" @@ -6246,7 +6241,7 @@ msgstr "" msgid "Unset the key as a project property" msgstr "" -#: lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:701 msgid "Unset the key as a storage bucket property" msgstr "" @@ -6308,7 +6303,7 @@ msgid "" "Use storage driver optimized format (can only be restored on a similar pool)" msgstr "" -#: lxc/main.go:100 +#: lxc/main.go:101 msgid "Use with help or --help to view sub-commands" msgstr "" @@ -6405,7 +6400,7 @@ msgstr "" #: lxc/network.go:959 lxc/operation.go:156 lxc/project.go:458 #: lxc/project.go:463 lxc/project.go:468 lxc/project.go:473 lxc/project.go:478 -#: lxc/project.go:483 lxc/remote.go:693 lxc/remote.go:698 lxc/remote.go:703 +#: lxc/project.go:483 lxc/remote.go:694 lxc/remote.go:699 lxc/remote.go:704 msgid "YES" msgstr "" @@ -6440,7 +6435,7 @@ 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/network.go:909 lxc/network_acl.go:91 lxc/network_zone.go:83 #: 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 "[:]" @@ -6503,19 +6498,19 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:154 lxc/network_zone.go:463 lxc/network_zone.go:581 +#: lxc/network_zone.go:155 lxc/network_zone.go:468 lxc/network_zone.go:586 msgid "[:]" msgstr "" -#: lxc/network_zone.go:209 lxc/network_zone.go:432 +#: lxc/network_zone.go:210 lxc/network_zone.go:437 msgid "[:] " msgstr "" -#: lxc/network_zone.go:352 +#: lxc/network_zone.go:357 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:269 +#: lxc/network_zone.go:270 msgid "[:] [key=value...]" msgstr "" @@ -6761,30 +6756,30 @@ msgstr "" #: lxc/network_forward.go:169 lxc/network_forward.go:574 #: lxc/network_forward.go:715 lxc/network_load_balancer.go:171 -#: lxc/network_load_balancer.go:577 lxc/network_load_balancer.go:719 +#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:724 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:860 +#: lxc/network_load_balancer.go:865 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:796 +#: lxc/network_load_balancer.go:801 msgid "" "[:] " "[]" msgstr "" #: lxc/network_forward.go:377 lxc/network_forward.go:544 -#: lxc/network_load_balancer.go:381 lxc/network_load_balancer.go:547 +#: lxc/network_load_balancer.go:386 lxc/network_load_balancer.go:552 msgid "[:] " msgstr "" -#: lxc/network_forward.go:446 lxc/network_load_balancer.go:449 +#: lxc/network_forward.go:446 lxc/network_load_balancer.go:454 msgid "[:] =..." msgstr "" -#: lxc/network_load_balancer.go:961 +#: lxc/network_load_balancer.go:966 msgid "" "[:] " "[,...]" @@ -6796,7 +6791,7 @@ msgid "" " []" msgstr "" -#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1022 +#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1027 msgid "[:] [] []" msgstr "" @@ -6847,7 +6842,7 @@ msgid "[:]" msgstr "" #: lxc/storage.go:167 lxc/storage.go:218 lxc/storage.go:412 lxc/storage.go:759 -#: lxc/storage_bucket.go:449 +#: lxc/storage_bucket.go:454 msgid "[:]" msgstr "" @@ -6855,18 +6850,18 @@ msgstr "" msgid "[:] []" msgstr "" -#: lxc/storage_bucket.go:180 lxc/storage_bucket.go:242 -#: lxc/storage_bucket.go:622 lxc/storage_bucket.go:764 +#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:247 +#: lxc/storage_bucket.go:627 lxc/storage_bucket.go:769 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:375 lxc/storage_bucket.go:691 -#: lxc/storage_bucket.go:845 lxc/storage_bucket.go:923 -#: lxc/storage_bucket.go:987 lxc/storage_bucket.go:1122 +#: lxc/storage_bucket.go:380 lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:850 lxc/storage_bucket.go:928 +#: lxc/storage_bucket.go:992 lxc/storage_bucket.go:1127 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:528 +#: lxc/storage_bucket.go:533 msgid "[:] =..." msgstr "" @@ -7010,27 +7005,27 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:686 +#: lxc/network_zone.go:691 msgid "[:]" msgstr "" -#: lxc/network_zone.go:757 lxc/network_zone.go:1056 lxc/network_zone.go:1173 +#: lxc/network_zone.go:762 lxc/network_zone.go:1061 lxc/network_zone.go:1178 msgid "[:] " msgstr "" -#: lxc/network_zone.go:809 lxc/network_zone.go:1026 +#: lxc/network_zone.go:814 lxc/network_zone.go:1031 msgid "[:] " msgstr "" -#: lxc/network_zone.go:950 +#: lxc/network_zone.go:955 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:1238 lxc/network_zone.go:1284 +#: lxc/network_zone.go:1243 lxc/network_zone.go:1289 msgid "[:] " msgstr "" -#: lxc/network_zone.go:868 +#: lxc/network_zone.go:873 msgid "[:] [key=value...]" msgstr "" @@ -7054,7 +7049,7 @@ msgstr "" msgid "[:][] [...]" msgstr "" -#: lxc/remote.go:88 +#: lxc/remote.go:89 msgid "[] " msgstr "" @@ -7062,7 +7057,7 @@ msgstr "" msgid "[[:]]" msgstr "" -#: lxc/project.go:488 lxc/remote.go:722 +#: lxc/project.go:488 lxc/remote.go:723 msgid "current" msgstr "" @@ -7325,6 +7320,23 @@ msgid "" " Create a new OVN network called bar using baz as its uplink network" msgstr "" +#: lxc/network_load_balancer.go:239 +msgid "" +"lxc network load-balancer create n1 127.0.0.1\n" +"\n" +"lxc network load-balancer create n1 127.0.0.1 < config.yaml\n" +" Create network load-balancer for network n1 with configuration from " +"config.yaml" +msgstr "" + +#: lxc/network_zone.go:273 +msgid "" +"lxc network zone create z1\n" +"\n" +"lxc network zone create z1 < config.yaml\n" +" Create network zone z1 with configuration from config.yaml" +msgstr "" + #: lxc/operation.go:195 msgid "" "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n" @@ -7395,26 +7407,36 @@ msgid "" " Restore the snapshot." msgstr "" -#: lxc/storage_bucket.go:245 +#: lxc/storage_bucket.go:84 +msgid "" +"lxc storage bucket create p1 b01\n" +"\tCreate a new storage bucket name b01 in storage pool p1\n" +"\n" +"lxc storage bucket create p1 b01 < config.yaml\n" +"\tCreate a new storage bucket name b01 in storage pool p1 using the content " +"of config.yaml" +msgstr "" + +#: lxc/storage_bucket.go:250 msgid "" "lxc storage bucket edit [:] < bucket.yaml\n" " Update a storage bucket using the content of bucket.yaml." msgstr "" -#: lxc/storage_bucket.go:990 +#: lxc/storage_bucket.go:995 msgid "" "lxc storage bucket edit [:] < key.yaml\n" " Update a storage bucket key using the content of key.yaml." msgstr "" -#: lxc/storage_bucket.go:1125 +#: lxc/storage_bucket.go:1130 msgid "" "lxc storage bucket key show default data foo\n" " Will show the properties of a bucket key called \"foo\" for a bucket " "called \"data\" in the \"default\" pool." msgstr "" -#: lxc/storage_bucket.go:625 +#: lxc/storage_bucket.go:630 msgid "" "lxc storage bucket show default data\n" " Will show the properties of a bucket called \"data\" in the \"default\" " @@ -7433,7 +7455,7 @@ msgid "" "\t\tCreate a new custom volume using backup0.tar.gz as the source." msgstr "" -#: lxc/remote.go:459 +#: lxc/remote.go:460 msgid "n" msgstr "" @@ -7445,7 +7467,7 @@ msgstr "" msgid "no" msgstr "" -#: lxc/remote.go:452 +#: lxc/remote.go:453 msgid "ok (y/n/[fingerprint])?" msgstr "" @@ -7482,7 +7504,7 @@ msgstr "" msgid "used by" msgstr "" -#: lxc/remote.go:461 +#: lxc/remote.go:462 msgid "y" msgstr "" diff --git a/po/zh_Hans.po b/po/zh_Hans.po index 950b61fd9336..d312973e9913 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-08-20 09:31+0100\n" +"POT-Creation-Date: 2024-08-30 09:27+0100\n" "PO-Revision-Date: 2022-03-10 15:07+0000\n" "Last-Translator: 0x0916 \n" "Language-Team: Chinese (Simplified) " msgstr "" -#: lxc/remote.go:825 lxc/remote.go:882 +#: lxc/remote.go:826 lxc/remote.go:883 msgid "" msgstr "" -#: lxc/remote.go:922 +#: lxc/remote.go:923 msgid " " msgstr "" -#: lxc/remote.go:752 +#: lxc/remote.go:753 msgid " " msgstr "" @@ -717,7 +717,7 @@ msgstr "" msgid "ARCHITECTURE" msgstr "" -#: lxc/remote.go:734 +#: lxc/remote.go:735 msgid "AUTH TYPE" msgstr "" @@ -725,15 +725,15 @@ msgstr "" msgid "AUTHENTICATION METHOD" msgstr "" -#: lxc/remote.go:100 +#: lxc/remote.go:101 msgid "Accept certificate" msgstr "" -#: lxc/storage_bucket.go:852 +#: lxc/storage_bucket.go:857 msgid "Access key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:908 +#: lxc/storage_bucket.go:913 #, c-format msgid "Access key: %s" msgstr "" @@ -767,19 +767,19 @@ msgstr "" msgid "Add a group to an identity provider group" msgstr "" -#: lxc/network_zone.go:1239 +#: lxc/network_zone.go:1244 msgid "Add a network zone record entry" msgstr "" -#: lxc/network_load_balancer.go:798 +#: lxc/network_load_balancer.go:803 msgid "Add backend to a load balancer" msgstr "" -#: lxc/network_load_balancer.go:797 +#: lxc/network_load_balancer.go:802 msgid "Add backends to a load balancer" msgstr "" -#: lxc/network_zone.go:1240 +#: lxc/network_zone.go:1245 msgid "Add entries to a network zone record" msgstr "" @@ -795,11 +795,11 @@ msgstr "" msgid "Add new aliases" msgstr "" -#: lxc/remote.go:89 +#: lxc/remote.go:90 msgid "Add new remote servers" msgstr "" -#: lxc/remote.go:90 +#: lxc/remote.go:91 msgid "" "Add new remote servers\n" "\n" @@ -840,7 +840,7 @@ msgstr "" msgid "Add ports to a forward" msgstr "" -#: lxc/network_load_balancer.go:962 lxc/network_load_balancer.go:963 +#: lxc/network_load_balancer.go:967 lxc/network_load_balancer.go:968 msgid "Add ports to a load balancer" msgstr "" @@ -861,17 +861,17 @@ msgstr "" msgid "Address: %s" msgstr "" -#: lxc/storage_bucket.go:164 +#: lxc/storage_bucket.go:169 #, c-format msgid "Admin access key: %s" msgstr "" -#: lxc/remote.go:566 +#: lxc/remote.go:567 #, c-format msgid "Admin password (or token) for %s:" msgstr "" -#: lxc/storage_bucket.go:165 +#: lxc/storage_bucket.go:170 #, c-format msgid "Admin secret key: %s" msgstr "" @@ -903,7 +903,7 @@ msgstr "" msgid "All projects" msgstr "" -#: lxc/remote.go:181 +#: lxc/remote.go:182 msgid "All server addresses are unavailable" msgstr "" @@ -926,7 +926,7 @@ msgstr "" msgid "Are you sure you want to %s cluster member %q? (yes/no) [default=no]: " msgstr "" -#: lxc/console.go:383 +#: lxc/console.go:388 msgid "As neither could be found, the raw SPICE socket can be found at:" msgstr "" @@ -974,7 +974,7 @@ msgid "" "as well as retrieve past log entries from it." msgstr "" -#: lxc/remote.go:548 +#: lxc/remote.go:549 #, c-format msgid "Authentication type '%s' not supported by server" msgstr "" @@ -993,11 +993,11 @@ msgstr "" msgid "Auto update: %s" msgstr "" -#: lxc/network_forward.go:240 lxc/network_load_balancer.go:242 +#: lxc/network_forward.go:240 lxc/network_load_balancer.go:247 msgid "Auto-allocate an IPv4 or IPv6 listen address. One of 'ipv4', 'ipv6'." msgstr "" -#: lxc/remote.go:136 +#: lxc/remote.go:137 msgid "Available projects:" msgstr "" @@ -1029,8 +1029,8 @@ msgid "Bad device override syntax, expecting ,=: %s" msgstr "" #: lxc/network.go:333 lxc/network_acl.go:382 lxc/network_forward.go:293 -#: lxc/network_load_balancer.go:296 lxc/network_peer.go:280 -#: lxc/network_zone.go:324 lxc/network_zone.go:922 lxc/storage_bucket.go:136 +#: lxc/network_load_balancer.go:301 lxc/network_peer.go:280 +#: lxc/network_zone.go:329 lxc/network_zone.go:927 lxc/storage_bucket.go:141 #, c-format msgid "Bad key/value pair: %s" msgstr "" @@ -1152,7 +1152,7 @@ msgstr "" msgid "Can't read from stdin: %w" msgstr "" -#: lxc/remote.go:861 +#: lxc/remote.go:862 msgid "Can't remove the default remote" msgstr "" @@ -1218,15 +1218,14 @@ msgstr "" msgid "Certificate add token for %s deleted" msgstr "" -#: lxc/remote.go:218 -#, c-format -msgid "" -"Certificate fingerprint mismatch between certificate token and server %q" +#: lxc/remote.go:452 +msgid "Certificate fingerprint" msgstr "" -#: lxc/remote.go:451 +#: lxc/remote.go:219 #, c-format -msgid "Certificate fingerprint: %s" +msgid "" +"Certificate fingerprint mismatch between certificate token and server %q" msgstr "" #: lxc/network.go:893 @@ -1238,7 +1237,7 @@ msgstr "" msgid "Client %s certificate add token:" msgstr "" -#: lxc/remote.go:603 +#: lxc/remote.go:604 msgid "Client certificate now trusted by server:" msgstr "" @@ -1300,18 +1299,18 @@ msgstr "" #: lxc/network_forward.go:456 lxc/network_forward.go:579 #: lxc/network_forward.go:721 lxc/network_forward.go:798 #: lxc/network_forward.go:864 lxc/network_load_balancer.go:176 -#: lxc/network_load_balancer.go:241 lxc/network_load_balancer.go:459 -#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:725 -#: lxc/network_load_balancer.go:801 lxc/network_load_balancer.go:865 -#: lxc/network_load_balancer.go:966 lxc/network_load_balancer.go:1028 +#: lxc/network_load_balancer.go:246 lxc/network_load_balancer.go:464 +#: lxc/network_load_balancer.go:587 lxc/network_load_balancer.go:730 +#: lxc/network_load_balancer.go:806 lxc/network_load_balancer.go:870 +#: lxc/network_load_balancer.go:971 lxc/network_load_balancer.go:1033 #: lxc/storage.go:99 lxc/storage.go:347 lxc/storage.go:418 lxc/storage.go:671 -#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:85 -#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:248 -#: lxc/storage_bucket.go:379 lxc/storage_bucket.go:536 -#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:695 -#: lxc/storage_bucket.go:770 lxc/storage_bucket.go:850 -#: lxc/storage_bucket.go:928 lxc/storage_bucket.go:993 -#: lxc/storage_bucket.go:1129 lxc/storage_volume.go:358 +#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:90 +#: lxc/storage_bucket.go:190 lxc/storage_bucket.go:253 +#: lxc/storage_bucket.go:384 lxc/storage_bucket.go:541 +#: lxc/storage_bucket.go:634 lxc/storage_bucket.go:700 +#: lxc/storage_bucket.go:775 lxc/storage_bucket.go:855 +#: lxc/storage_bucket.go:933 lxc/storage_bucket.go:998 +#: lxc/storage_bucket.go:1134 lxc/storage_volume.go:358 #: lxc/storage_volume.go:560 lxc/storage_volume.go:639 #: lxc/storage_volume.go:883 lxc/storage_volume.go:1097 #: lxc/storage_volume.go:1210 lxc/storage_volume.go:1678 @@ -1339,11 +1338,11 @@ msgstr "" msgid "Columns" msgstr "" -#: lxc/main.go:81 +#: lxc/main.go:82 msgid "Command line client for LXD" msgstr "" -#: lxc/main.go:82 +#: lxc/main.go:83 msgid "" "Command line client for LXD\n" "\n" @@ -1375,19 +1374,15 @@ msgstr "" #: lxc/config.go:347 lxc/config.go:1277 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/network_load_balancer.go:694 lxc/network_peer.go:610 +#: lxc/network_zone.go:556 lxc/network_zone.go:1148 lxc/profile.go:538 +#: lxc/project.go:315 lxc/storage.go:310 lxc/storage_bucket.go:348 +#: lxc/storage_bucket.go:1097 lxc/storage_volume.go:1016 #: lxc/storage_volume.go:1048 #, c-format msgid "Config parsing error: %s" msgstr "" -#: lxc/console.go:140 -msgid "Console log:" -msgstr "" - #: lxc/storage_volume.go:561 msgid "Content type, block or filesystem" msgstr "" @@ -1490,12 +1485,12 @@ msgstr "" msgid "Cores:" msgstr "" -#: lxc/remote.go:486 +#: lxc/remote.go:487 #, c-format msgid "Could not close server cert file %q: %w" msgstr "" -#: lxc/remote.go:224 lxc/remote.go:470 +#: lxc/remote.go:225 lxc/remote.go:471 msgid "Could not create server cert dir" msgstr "" @@ -1534,12 +1529,12 @@ msgstr "" msgid "Could not write new remote certificate for remote '%s' with error: %v" msgstr "" -#: lxc/remote.go:481 +#: lxc/remote.go:482 #, c-format msgid "Could not write server cert file %q: %w" msgstr "" -#: lxc/network_zone.go:1327 +#: lxc/network_zone.go:1332 msgid "Couldn't find a matching entry" msgstr "" @@ -1591,7 +1586,7 @@ msgstr "" msgid "Create instances from images" msgstr "" -#: lxc/storage_bucket.go:846 lxc/storage_bucket.go:847 +#: lxc/storage_bucket.go:851 lxc/storage_bucket.go:852 msgid "Create key for a storage bucket" msgstr "" @@ -1623,11 +1618,11 @@ msgstr "" msgid "Create new network peering" msgstr "" -#: lxc/network_zone.go:869 lxc/network_zone.go:870 +#: lxc/network_zone.go:874 lxc/network_zone.go:875 msgid "Create new network zone record" msgstr "" -#: lxc/network_zone.go:270 lxc/network_zone.go:271 +#: lxc/network_zone.go:271 lxc/network_zone.go:272 msgid "Create new network zones" msgstr "" @@ -1678,9 +1673,9 @@ msgstr "" #: 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/network_zone.go:140 lxc/network_zone.go:747 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_bucket.go:512 lxc/storage_bucket.go:832 #: lxc/storage_volume.go:1562 msgid "DESCRIPTION" msgstr "" @@ -1745,7 +1740,7 @@ msgstr "" msgid "Delete instances and snapshots" msgstr "" -#: lxc/storage_bucket.go:924 lxc/storage_bucket.go:925 +#: lxc/storage_bucket.go:929 lxc/storage_bucket.go:930 msgid "Delete key from a storage bucket" msgstr "" @@ -1757,7 +1752,7 @@ msgstr "" msgid "Delete network forwards" msgstr "" -#: lxc/network_load_balancer.go:721 lxc/network_load_balancer.go:722 +#: lxc/network_load_balancer.go:726 lxc/network_load_balancer.go:727 msgid "Delete network load balancers" msgstr "" @@ -1765,11 +1760,11 @@ msgstr "" msgid "Delete network peerings" msgstr "" -#: lxc/network_zone.go:1175 lxc/network_zone.go:1176 +#: lxc/network_zone.go:1180 lxc/network_zone.go:1181 msgid "Delete network zone record" msgstr "" -#: lxc/network_zone.go:583 lxc/network_zone.go:584 +#: lxc/network_zone.go:588 lxc/network_zone.go:589 msgid "Delete network zones" msgstr "" @@ -1785,7 +1780,7 @@ msgstr "" msgid "Delete projects" msgstr "" -#: lxc/storage_bucket.go:182 lxc/storage_bucket.go:183 +#: lxc/storage_bucket.go:187 lxc/storage_bucket.go:188 msgid "Delete storage buckets" msgstr "" @@ -1841,7 +1836,7 @@ msgstr "" #: 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/info.go:32 lxc/init.go:43 lxc/launch.go:24 lxc/list.go:48 lxc/main.go:83 #: 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 @@ -1860,22 +1855,22 @@ msgstr "" #: 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_load_balancer.go:238 lxc/network_load_balancer.go:388 +#: lxc/network_load_balancer.go:456 lxc/network_load_balancer.go:554 +#: lxc/network_load_balancer.go:584 lxc/network_load_balancer.go:727 +#: lxc/network_load_balancer.go:788 lxc/network_load_balancer.go:803 +#: lxc/network_load_balancer.go:867 lxc/network_load_balancer.go:953 +#: lxc/network_load_balancer.go:968 lxc/network_load_balancer.go:1029 #: 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/network_zone.go:29 lxc/network_zone.go:86 lxc/network_zone.go:157 +#: lxc/network_zone.go:212 lxc/network_zone.go:272 lxc/network_zone.go:359 +#: lxc/network_zone.go:439 lxc/network_zone.go:470 lxc/network_zone.go:589 +#: lxc/network_zone.go:637 lxc/network_zone.go:694 lxc/network_zone.go:764 +#: lxc/network_zone.go:816 lxc/network_zone.go:875 lxc/network_zone.go:957 +#: lxc/network_zone.go:1033 lxc/network_zone.go:1063 lxc/network_zone.go:1181 +#: lxc/network_zone.go:1230 lxc/network_zone.go:1245 lxc/network_zone.go:1291 #: 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 @@ -1884,19 +1879,19 @@ msgstr "" #: 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:631 lxc/remote.go:669 lxc/remote.go:755 lxc/remote.go:828 -#: lxc/remote.go:884 lxc/remote.go:924 lxc/rename.go:21 lxc/restore.go:24 +#: lxc/query.go:34 lxc/rebuild.go:27 lxc/remote.go:35 lxc/remote.go:91 +#: lxc/remote.go:632 lxc/remote.go:670 lxc/remote.go:756 lxc/remote.go:829 +#: lxc/remote.go:885 lxc/remote.go:925 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_bucket.go:29 lxc/storage_bucket.go:83 lxc/storage_bucket.go:188 +#: lxc/storage_bucket.go:249 lxc/storage_bucket.go:382 +#: lxc/storage_bucket.go:458 lxc/storage_bucket.go:535 +#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:698 +#: lxc/storage_bucket.go:732 lxc/storage_bucket.go:773 +#: lxc/storage_bucket.go:852 lxc/storage_bucket.go:930 +#: lxc/storage_bucket.go:994 lxc/storage_bucket.go:1129 #: 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 @@ -2032,7 +2027,7 @@ msgstr "" msgid "Don't require user confirmation for using --force" msgstr "" -#: lxc/main.go:99 +#: lxc/main.go:100 msgid "Don't show progress information" msgstr "" @@ -2045,7 +2040,7 @@ msgstr "" msgid "Driver: %v (%v)" msgstr "" -#: lxc/network_zone.go:743 +#: lxc/network_zone.go:748 msgid "ENTRIES" msgstr "" @@ -2123,7 +2118,7 @@ msgstr "" msgid "Edit network forward configurations as YAML" msgstr "" -#: lxc/network_load_balancer.go:578 lxc/network_load_balancer.go:579 +#: lxc/network_load_balancer.go:583 lxc/network_load_balancer.go:584 msgid "Edit network load balancer configurations as YAML" msgstr "" @@ -2131,11 +2126,11 @@ msgstr "" msgid "Edit network peer configurations as YAML" msgstr "" -#: lxc/network_zone.go:464 lxc/network_zone.go:465 +#: lxc/network_zone.go:469 lxc/network_zone.go:470 msgid "Edit network zone configurations as YAML" msgstr "" -#: lxc/network_zone.go:1057 lxc/network_zone.go:1058 +#: lxc/network_zone.go:1062 lxc/network_zone.go:1063 msgid "Edit network zone record configurations as YAML" msgstr "" @@ -2147,11 +2142,11 @@ msgstr "" msgid "Edit project configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:243 lxc/storage_bucket.go:244 +#: lxc/storage_bucket.go:248 lxc/storage_bucket.go:249 msgid "Edit storage bucket configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:988 lxc/storage_bucket.go:989 +#: lxc/storage_bucket.go:993 lxc/storage_bucket.go:994 msgid "Edit storage bucket key as YAML" msgstr "" @@ -2192,7 +2187,7 @@ msgid "" " for the address if not yet set." msgstr "" -#: lxc/network_zone.go:1242 +#: lxc/network_zone.go:1247 msgid "Entry TTL" msgstr "" @@ -2221,9 +2216,9 @@ msgstr "" #: lxc/cluster.go:414 lxc/config.go:624 lxc/config.go:656 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/network_load_balancer.go:527 lxc/network_peer.go:463 +#: lxc/network_zone.go:414 lxc/network_zone.go:1008 lxc/profile.go:876 +#: lxc/project.go:634 lxc/storage.go:727 lxc/storage_bucket.go:602 #: lxc/storage_volume.go:1947 lxc/storage_volume.go:1985 #, c-format msgid "Error setting properties: %v" @@ -2235,10 +2230,10 @@ 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/network_forward.go:513 lxc/network_load_balancer.go:521 +#: lxc/network_peer.go:457 lxc/network_zone.go:408 lxc/network_zone.go:1002 #: lxc/profile.go:870 lxc/project.go:628 lxc/storage.go:721 -#: lxc/storage_bucket.go:591 lxc/storage_volume.go:1941 +#: lxc/storage_bucket.go:596 lxc/storage_volume.go:1941 #: lxc/storage_volume.go:1979 #, c-format msgid "Error unsetting property: %v" @@ -2424,7 +2419,7 @@ msgstr "" msgid "Failed parsing SSH host key: %w" msgstr "" -#: lxc/console.go:361 +#: lxc/console.go:366 #, c-format msgid "Failed starting command: %w" msgstr "" @@ -2439,11 +2434,11 @@ msgstr "" msgid "Failed to accept incoming connection: %w" msgstr "" -#: lxc/remote.go:190 +#: lxc/remote.go:191 msgid "Failed to add remote" msgstr "" -#: lxc/remote.go:241 +#: lxc/remote.go:242 #, c-format msgid "Failed to close server cert file %q: %w" msgstr "" @@ -2453,7 +2448,7 @@ msgstr "" msgid "Failed to connect to cluster member: %w" msgstr "" -#: lxc/remote.go:231 +#: lxc/remote.go:232 #, c-format msgid "Failed to create %q: %w" msgstr "" @@ -2463,12 +2458,12 @@ msgstr "" msgid "Failed to create alias %s: %w" msgstr "" -#: lxc/remote.go:256 +#: lxc/remote.go:257 #, c-format msgid "Failed to create certificate: %w" msgstr "" -#: lxc/remote.go:263 +#: lxc/remote.go:264 #, c-format msgid "Failed to find project: %w" msgstr "" @@ -2493,7 +2488,7 @@ msgstr "" msgid "Failed to walk path for %s: %s" msgstr "" -#: lxc/remote.go:236 +#: lxc/remote.go:237 #, c-format msgid "Failed to write server cert file %q: %w" msgstr "" @@ -2502,7 +2497,7 @@ msgstr "" msgid "Fast mode (same as --columns=nsacPt)" msgstr "" -#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:115 +#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:116 #: lxc/operation.go:136 msgid "Filtering isn't supported yet" msgstr "" @@ -2540,7 +2535,7 @@ msgstr "" msgid "Force the removal of running instances" msgstr "" -#: lxc/main.go:95 +#: lxc/main.go:96 msgid "Force using the local unix socket" msgstr "" @@ -2574,10 +2569,10 @@ msgstr "" #: 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/network_peer.go:84 lxc/network_zone.go:89 lxc/network_zone.go:697 #: lxc/operation.go:108 lxc/profile.go:637 lxc/project.go:412 -#: lxc/project.go:804 lxc/remote.go:673 lxc/storage.go:588 -#: lxc/storage_bucket.go:454 lxc/storage_bucket.go:769 +#: lxc/project.go:804 lxc/remote.go:674 lxc/storage.go:588 +#: lxc/storage_bucket.go:459 lxc/storage_bucket.go:774 #: lxc/storage_volume.go:1446 lxc/warning.go:93 msgid "Format (csv|json|table|yaml|compact)" msgstr "" @@ -2614,7 +2609,7 @@ msgstr "" msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)" msgstr "" -#: lxc/remote.go:737 +#: lxc/remote.go:738 msgid "GLOBAL" msgstr "" @@ -2634,7 +2629,7 @@ msgstr "" msgid "Generate manpages for all commands" msgstr "" -#: lxc/remote.go:159 lxc/remote.go:397 +#: lxc/remote.go:160 lxc/remote.go:398 msgid "Generating a client certificate. This may take a minute..." msgstr "" @@ -2666,7 +2661,7 @@ msgstr "" msgid "Get the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:386 +#: lxc/network_load_balancer.go:391 msgid "Get the key as a network load balancer property" msgstr "" @@ -2678,11 +2673,11 @@ msgstr "" msgid "Get the key as a network property" msgstr "" -#: lxc/network_zone.go:214 +#: lxc/network_zone.go:215 msgid "Get the key as a network zone property" msgstr "" -#: lxc/network_zone.go:814 +#: lxc/network_zone.go:819 msgid "Get the key as a network zone record property" msgstr "" @@ -2694,7 +2689,7 @@ msgstr "" msgid "Get the key as a project property" msgstr "" -#: lxc/storage_bucket.go:380 +#: lxc/storage_bucket.go:385 msgid "Get the key as a storage bucket property" msgstr "" @@ -2734,7 +2729,7 @@ msgstr "" msgid "Get values for network forward configuration keys" msgstr "" -#: lxc/network_load_balancer.go:382 lxc/network_load_balancer.go:383 +#: lxc/network_load_balancer.go:387 lxc/network_load_balancer.go:388 msgid "Get values for network load balancer configuration keys" msgstr "" @@ -2742,11 +2737,11 @@ msgstr "" msgid "Get values for network peer configuration keys" msgstr "" -#: lxc/network_zone.go:210 lxc/network_zone.go:211 +#: lxc/network_zone.go:211 lxc/network_zone.go:212 msgid "Get values for network zone configuration keys" msgstr "" -#: lxc/network_zone.go:810 lxc/network_zone.go:811 +#: lxc/network_zone.go:815 lxc/network_zone.go:816 msgid "Get values for network zone record configuration keys" msgstr "" @@ -2758,7 +2753,7 @@ msgstr "" msgid "Get values for project configuration keys" msgstr "" -#: lxc/storage_bucket.go:376 lxc/storage_bucket.go:377 +#: lxc/storage_bucket.go:381 lxc/storage_bucket.go:382 msgid "Get values for storage bucket configuration keys" msgstr "" @@ -2898,7 +2893,7 @@ msgstr "" msgid "If the snapshot name already exists, delete and create a new one" msgstr "" -#: lxc/main.go:398 +#: lxc/main.go:400 msgid "" "If this is your first time running LXD on this machine, you should also run: " "lxd init" @@ -3055,7 +3050,7 @@ msgstr "" msgid "Instance type" msgstr "" -#: lxc/remote.go:349 +#: lxc/remote.go:350 #, c-format msgid "Invalid URL scheme \"%s\" in \"%s\"" msgstr "" @@ -3127,7 +3122,7 @@ msgstr "" msgid "Invalid new snapshot name, parent volume must be the same as source" msgstr "" -#: lxc/main.go:498 +#: lxc/main.go:502 msgid "Invalid number of arguments" msgstr "" @@ -3136,7 +3131,7 @@ msgstr "" msgid "Invalid path %s" msgstr "" -#: lxc/remote.go:338 +#: lxc/remote.go:339 #, c-format msgid "Invalid protocol: %s" msgstr "" @@ -3184,7 +3179,7 @@ msgstr "" #: lxc/list.go:597 lxc/network.go:1059 lxc/network_forward.go:155 #: lxc/network_load_balancer.go:157 lxc/operation.go:177 -#: lxc/storage_bucket.go:511 lxc/storage_volume.go:1569 lxc/warning.go:220 +#: lxc/storage_bucket.go:516 lxc/storage_volume.go:1569 lxc/warning.go:220 msgid "LOCATION" msgstr "" @@ -3192,7 +3187,7 @@ msgstr "" msgid "LXD - Command line client" msgstr "" -#: lxc/console.go:382 +#: lxc/console.go:387 msgid "LXD automatically uses either spicy or remote-viewer when present." msgstr "" @@ -3282,15 +3277,15 @@ msgstr "" msgid "List available network peers" msgstr "" -#: lxc/network_zone.go:85 +#: lxc/network_zone.go:86 msgid "List available network zone" msgstr "" -#: lxc/network_zone.go:688 lxc/network_zone.go:689 +#: lxc/network_zone.go:693 lxc/network_zone.go:694 msgid "List available network zone records" msgstr "" -#: lxc/network_zone.go:84 +#: lxc/network_zone.go:85 msgid "List available network zoneS" msgstr "" @@ -3479,11 +3474,11 @@ msgstr "" msgid "List projects" msgstr "" -#: lxc/storage_bucket.go:766 lxc/storage_bucket.go:768 +#: lxc/storage_bucket.go:771 lxc/storage_bucket.go:773 msgid "List storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:451 lxc/storage_bucket.go:453 +#: lxc/storage_bucket.go:456 lxc/storage_bucket.go:458 msgid "List storage buckets" msgstr "" @@ -3511,7 +3506,7 @@ msgid "" " U - Current disk usage" msgstr "" -#: lxc/remote.go:668 lxc/remote.go:669 +#: lxc/remote.go:669 lxc/remote.go:670 msgid "List the available remotes" msgstr "" @@ -3738,11 +3733,11 @@ msgstr "" msgid "Manage network forwards" msgstr "" -#: lxc/network_load_balancer.go:782 lxc/network_load_balancer.go:783 +#: lxc/network_load_balancer.go:787 lxc/network_load_balancer.go:788 msgid "Manage network load balancer backends" msgstr "" -#: lxc/network_load_balancer.go:947 lxc/network_load_balancer.go:948 +#: lxc/network_load_balancer.go:952 lxc/network_load_balancer.go:953 msgid "Manage network load balancer ports" msgstr "" @@ -3754,15 +3749,15 @@ msgstr "" msgid "Manage network peerings" msgstr "" -#: lxc/network_zone.go:1224 lxc/network_zone.go:1225 +#: lxc/network_zone.go:1229 lxc/network_zone.go:1230 msgid "Manage network zone record entries" msgstr "" -#: lxc/network_zone.go:631 lxc/network_zone.go:632 +#: lxc/network_zone.go:636 lxc/network_zone.go:637 msgid "Manage network zone records" msgstr "" -#: lxc/network_zone.go:27 lxc/network_zone.go:28 +#: lxc/network_zone.go:28 lxc/network_zone.go:29 msgid "Manage network zones" msgstr "" @@ -3778,11 +3773,11 @@ msgstr "" msgid "Manage projects" msgstr "" -#: lxc/storage_bucket.go:726 +#: lxc/storage_bucket.go:731 msgid "Manage storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:727 +#: lxc/storage_bucket.go:732 msgid "Manage storage bucket keys." msgstr "" @@ -3810,7 +3805,7 @@ msgid "" "\"custom\" (user created) volumes." msgstr "" -#: lxc/remote.go:33 lxc/remote.go:34 +#: lxc/remote.go:34 lxc/remote.go:35 msgid "Manage the list of remote servers" msgstr "" @@ -3891,12 +3886,12 @@ msgid "" "Minimum level for log messages (only available when using pretty format)" msgstr "" -#: lxc/storage_bucket.go:111 lxc/storage_bucket.go:211 -#: lxc/storage_bucket.go:287 lxc/storage_bucket.go:406 -#: lxc/storage_bucket.go:563 lxc/storage_bucket.go:655 -#: lxc/storage_bucket.go:797 lxc/storage_bucket.go:878 -#: lxc/storage_bucket.go:953 lxc/storage_bucket.go:1032 -#: lxc/storage_bucket.go:1155 +#: lxc/storage_bucket.go:116 lxc/storage_bucket.go:216 +#: lxc/storage_bucket.go:292 lxc/storage_bucket.go:411 +#: lxc/storage_bucket.go:568 lxc/storage_bucket.go:660 +#: lxc/storage_bucket.go:802 lxc/storage_bucket.go:883 +#: lxc/storage_bucket.go:958 lxc/storage_bucket.go:1037 +#: lxc/storage_bucket.go:1160 msgid "Missing bucket name" msgstr "" @@ -3940,8 +3935,8 @@ msgstr "" msgid "Missing instance name" msgstr "" -#: lxc/storage_bucket.go:882 lxc/storage_bucket.go:957 -#: lxc/storage_bucket.go:1036 lxc/storage_bucket.go:1159 +#: lxc/storage_bucket.go:887 lxc/storage_bucket.go:962 +#: lxc/storage_bucket.go:1041 lxc/storage_bucket.go:1164 msgid "Missing key name" msgstr "" @@ -3949,10 +3944,10 @@ msgstr "" #: lxc/network_forward.go:481 lxc/network_forward.go:627 #: lxc/network_forward.go:746 lxc/network_forward.go:823 #: lxc/network_forward.go:889 lxc/network_load_balancer.go:201 -#: lxc/network_load_balancer.go:411 lxc/network_load_balancer.go:484 -#: lxc/network_load_balancer.go:630 lxc/network_load_balancer.go:750 -#: lxc/network_load_balancer.go:826 lxc/network_load_balancer.go:890 -#: lxc/network_load_balancer.go:991 lxc/network_load_balancer.go:1053 +#: lxc/network_load_balancer.go:416 lxc/network_load_balancer.go:489 +#: lxc/network_load_balancer.go:635 lxc/network_load_balancer.go:755 +#: lxc/network_load_balancer.go:831 lxc/network_load_balancer.go:895 +#: lxc/network_load_balancer.go:996 lxc/network_load_balancer.go:1058 msgid "Missing listen address" msgstr "" @@ -3977,26 +3972,26 @@ msgstr "" #: lxc/network_forward.go:477 lxc/network_forward.go:623 #: lxc/network_forward.go:742 lxc/network_forward.go:819 #: lxc/network_forward.go:885 lxc/network_load_balancer.go:123 -#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:261 -#: lxc/network_load_balancer.go:407 lxc/network_load_balancer.go:480 -#: lxc/network_load_balancer.go:626 lxc/network_load_balancer.go:746 -#: lxc/network_load_balancer.go:822 lxc/network_load_balancer.go:886 -#: lxc/network_load_balancer.go:987 lxc/network_load_balancer.go:1049 +#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:266 +#: lxc/network_load_balancer.go:412 lxc/network_load_balancer.go:485 +#: lxc/network_load_balancer.go:631 lxc/network_load_balancer.go:751 +#: lxc/network_load_balancer.go:827 lxc/network_load_balancer.go:891 +#: lxc/network_load_balancer.go:992 lxc/network_load_balancer.go:1054 #: lxc/network_peer.go:110 lxc/network_peer.go:180 lxc/network_peer.go:237 #: lxc/network_peer.go:355 lxc/network_peer.go:426 lxc/network_peer.go:556 #: lxc/network_peer.go:665 msgid "Missing network name" msgstr "" -#: lxc/network_zone.go:178 lxc/network_zone.go:234 lxc/network_zone.go:294 -#: lxc/network_zone.go:382 lxc/network_zone.go:503 lxc/network_zone.go:606 -#: lxc/network_zone.go:712 lxc/network_zone.go:780 lxc/network_zone.go:892 -#: lxc/network_zone.go:976 lxc/network_zone.go:1197 lxc/network_zone.go:1262 -#: lxc/network_zone.go:1307 +#: lxc/network_zone.go:179 lxc/network_zone.go:235 lxc/network_zone.go:299 +#: lxc/network_zone.go:387 lxc/network_zone.go:508 lxc/network_zone.go:611 +#: lxc/network_zone.go:717 lxc/network_zone.go:785 lxc/network_zone.go:897 +#: lxc/network_zone.go:981 lxc/network_zone.go:1202 lxc/network_zone.go:1267 +#: lxc/network_zone.go:1312 msgid "Missing network zone name" msgstr "" -#: lxc/network_zone.go:833 lxc/network_zone.go:1095 +#: lxc/network_zone.go:838 lxc/network_zone.go:1100 msgid "Missing network zone record name" msgstr "" @@ -4006,13 +4001,13 @@ msgid "Missing peer name" msgstr "" #: lxc/storage.go:194 lxc/storage.go:264 lxc/storage.go:370 lxc/storage.go:440 -#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:107 -#: lxc/storage_bucket.go:207 lxc/storage_bucket.go:283 -#: lxc/storage_bucket.go:402 lxc/storage_bucket.go:477 -#: lxc/storage_bucket.go:559 lxc/storage_bucket.go:651 -#: lxc/storage_bucket.go:793 lxc/storage_bucket.go:874 -#: lxc/storage_bucket.go:949 lxc/storage_bucket.go:1028 -#: lxc/storage_bucket.go:1151 lxc/storage_volume.go:189 +#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:112 +#: lxc/storage_bucket.go:212 lxc/storage_bucket.go:288 +#: lxc/storage_bucket.go:407 lxc/storage_bucket.go:482 +#: lxc/storage_bucket.go:564 lxc/storage_bucket.go:656 +#: lxc/storage_bucket.go:798 lxc/storage_bucket.go:879 +#: lxc/storage_bucket.go:954 lxc/storage_bucket.go:1033 +#: lxc/storage_bucket.go:1156 lxc/storage_volume.go:189 #: lxc/storage_volume.go:287 lxc/storage_volume.go:583 #: lxc/storage_volume.go:660 lxc/storage_volume.go:735 #: lxc/storage_volume.go:817 lxc/storage_volume.go:919 @@ -4132,7 +4127,7 @@ msgstr "" msgid "Moving the storage volume: %s" msgstr "" -#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1097 +#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1102 msgid "Multiple ports match. Use --force to remove them all" msgstr "" @@ -4151,10 +4146,10 @@ 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:677 lxc/project.go:498 -#: lxc/remote.go:731 lxc/storage.go:638 lxc/storage_bucket.go:506 -#: lxc/storage_bucket.go:826 lxc/storage_volume.go:1561 +#: lxc/network_acl.go:147 lxc/network_peer.go:139 lxc/network_zone.go:139 +#: lxc/network_zone.go:746 lxc/profile.go:677 lxc/project.go:498 +#: lxc/remote.go:732 lxc/storage.go:638 lxc/storage_bucket.go:511 +#: lxc/storage_bucket.go:831 lxc/storage_volume.go:1561 msgid "NAME" msgstr "" @@ -4180,7 +4175,7 @@ msgstr "" #: lxc/network.go:957 lxc/operation.go:154 lxc/project.go:456 #: lxc/project.go:461 lxc/project.go:466 lxc/project.go:471 lxc/project.go:476 -#: lxc/project.go:481 lxc/remote.go:691 lxc/remote.go:696 lxc/remote.go:701 +#: lxc/project.go:481 lxc/remote.go:692 lxc/remote.go:697 lxc/remote.go:702 msgid "NO" msgstr "" @@ -4207,7 +4202,7 @@ msgstr "" msgid "Name" msgstr "" -#: lxc/remote.go:141 +#: lxc/remote.go:142 msgid "Name of the project to use for this remote:" msgstr "" @@ -4256,12 +4251,12 @@ msgstr "" msgid "Network ACL %s renamed to %s" msgstr "" -#: lxc/network_zone.go:336 +#: lxc/network_zone.go:341 #, c-format msgid "Network Zone %s created" msgstr "" -#: lxc/network_zone.go:616 +#: lxc/network_zone.go:621 #, c-format msgid "Network Zone %s deleted" msgstr "" @@ -4276,12 +4271,12 @@ msgstr "" msgid "Network forward %s deleted" msgstr "" -#: lxc/network_load_balancer.go:365 +#: lxc/network_load_balancer.go:370 #, c-format msgid "Network load balancer %s created" msgstr "" -#: lxc/network_load_balancer.go:767 +#: lxc/network_load_balancer.go:772 #, c-format msgid "Network load balancer %s deleted" msgstr "" @@ -4319,12 +4314,12 @@ msgstr "" msgid "Network usage:" msgstr "" -#: lxc/network_zone.go:934 +#: lxc/network_zone.go:939 #, c-format msgid "Network zone record %s created" msgstr "" -#: lxc/network_zone.go:1207 +#: lxc/network_zone.go:1212 #, c-format msgid "Network zone record %s deleted" msgstr "" @@ -4359,11 +4354,11 @@ msgstr "" msgid "No device found for this storage volume" msgstr "" -#: lxc/network_load_balancer.go:921 +#: lxc/network_load_balancer.go:926 msgid "No matching backend found" msgstr "" -#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1108 +#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1113 msgid "No matching port(s) found" msgstr "" @@ -4409,7 +4404,7 @@ msgstr "" msgid "Only \"custom\" volumes can be snapshotted" msgstr "" -#: lxc/remote.go:332 +#: lxc/remote.go:333 msgid "Only https URLs are supported for simplestreams" msgstr "" @@ -4434,7 +4429,7 @@ msgstr "" msgid "Optimized Storage" msgstr "" -#: lxc/main.go:96 +#: lxc/main.go:97 msgid "Override the source project" msgstr "" @@ -4480,11 +4475,11 @@ msgstr "" msgid "PROJECT" msgstr "" -#: lxc/remote.go:733 +#: lxc/remote.go:734 msgid "PROTOCOL" msgstr "" -#: lxc/image.go:1073 lxc/remote.go:735 +#: lxc/image.go:1073 lxc/remote.go:736 msgid "PUBLIC" msgstr "" @@ -4500,7 +4495,7 @@ msgstr "" msgid "Partitions:" msgstr "" -#: lxc/main.go:361 +#: lxc/main.go:363 #, c-format msgid "Password for %s: " msgstr "" @@ -4513,7 +4508,7 @@ msgstr "" msgid "Perform an incremental copy" msgstr "" -#: lxc/remote.go:182 +#: lxc/remote.go:183 msgid "Please provide an alternate server address (empty to abort):" msgstr "" @@ -4525,7 +4520,7 @@ msgstr "" msgid "Please provide cluster member name: " msgstr "" -#: lxc/remote.go:462 +#: lxc/remote.go:463 msgid "Please type 'y', 'n' or the fingerprint:" msgstr "" @@ -4547,10 +4542,10 @@ msgstr "" #: lxc/config.go:1278 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/network_load_balancer.go:695 lxc/network_peer.go:611 +#: lxc/network_zone.go:557 lxc/network_zone.go:1149 lxc/profile.go:539 +#: lxc/project.go:316 lxc/storage.go:311 lxc/storage_bucket.go:349 +#: lxc/storage_bucket.go:1098 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 "" @@ -4559,7 +4554,7 @@ msgstr "" msgid "Pretty rendering (short for --format=pretty)" msgstr "" -#: lxc/main.go:94 +#: lxc/main.go:95 msgid "Print help" msgstr "" @@ -4567,7 +4562,7 @@ msgstr "" msgid "Print the raw response" msgstr "" -#: lxc/main.go:93 +#: lxc/main.go:94 msgid "Print version number" msgstr "" @@ -4656,7 +4651,7 @@ msgstr "" msgid "Project %s renamed to %s" msgstr "" -#: lxc/remote.go:106 +#: lxc/remote.go:107 msgid "Project to use for the remote" msgstr "" @@ -4754,7 +4749,7 @@ msgid "" "pool \"default\"." msgstr "" -#: lxc/remote.go:105 +#: lxc/remote.go:106 msgid "Public image server" msgstr "" @@ -4802,7 +4797,7 @@ msgstr "" msgid "RESOURCE" msgstr "" -#: lxc/storage_bucket.go:828 +#: lxc/storage_bucket.go:833 msgid "ROLE" msgstr "" @@ -4845,45 +4840,45 @@ msgstr "" msgid "Refreshing the image: %s" msgstr "" -#: lxc/remote.go:785 +#: lxc/remote.go:786 #, c-format msgid "Remote %s already exists" msgstr "" -#: lxc/project.go:769 lxc/remote.go:776 lxc/remote.go:849 lxc/remote.go:905 -#: lxc/remote.go:945 +#: lxc/project.go:769 lxc/remote.go:777 lxc/remote.go:850 lxc/remote.go:906 +#: lxc/remote.go:946 #, c-format msgid "Remote %s doesn't exist" msgstr "" -#: lxc/remote.go:301 +#: lxc/remote.go:302 #, c-format msgid "Remote %s exists as <%s>" msgstr "" -#: lxc/remote.go:857 +#: lxc/remote.go:858 #, c-format msgid "Remote %s is global and cannot be removed" msgstr "" -#: lxc/remote.go:780 lxc/remote.go:853 lxc/remote.go:949 +#: lxc/remote.go:781 lxc/remote.go:854 lxc/remote.go:950 #, c-format msgid "Remote %s is static and cannot be modified" msgstr "" -#: lxc/remote.go:290 +#: lxc/remote.go:291 msgid "Remote address must not be empty" msgstr "" -#: lxc/remote.go:101 +#: lxc/remote.go:102 msgid "Remote admin password" msgstr "" -#: lxc/remote.go:295 +#: lxc/remote.go:296 msgid "Remote names may not contain colons" msgstr "" -#: lxc/remote.go:102 +#: lxc/remote.go:103 msgid "Remote trust token" msgstr "" @@ -4909,7 +4904,7 @@ msgstr "" msgid "Remove a member from the cluster" msgstr "" -#: lxc/network_zone.go:1285 +#: lxc/network_zone.go:1290 msgid "Remove a network zone record entry" msgstr "" @@ -4917,7 +4912,7 @@ msgstr "" msgid "Remove aliases" msgstr "" -#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1025 +#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1030 msgid "Remove all ports that match" msgstr "" @@ -4925,15 +4920,15 @@ msgstr "" msgid "Remove all rules that match" msgstr "" -#: lxc/network_load_balancer.go:862 +#: lxc/network_load_balancer.go:867 msgid "Remove backend from a load balancer" msgstr "" -#: lxc/network_load_balancer.go:861 +#: lxc/network_load_balancer.go:866 msgid "Remove backends from a load balancer" msgstr "" -#: lxc/network_zone.go:1286 +#: lxc/network_zone.go:1291 msgid "Remove entries from a network zone record" msgstr "" @@ -4957,7 +4952,7 @@ msgstr "" msgid "Remove ports from a forward" msgstr "" -#: lxc/network_load_balancer.go:1023 lxc/network_load_balancer.go:1024 +#: lxc/network_load_balancer.go:1028 lxc/network_load_balancer.go:1029 msgid "Remove ports from a load balancer" msgstr "" @@ -4965,7 +4960,7 @@ msgstr "" msgid "Remove profiles from instances" msgstr "" -#: lxc/remote.go:827 lxc/remote.go:828 +#: lxc/remote.go:828 lxc/remote.go:829 msgid "Remove remotes" msgstr "" @@ -5022,7 +5017,7 @@ msgstr "" msgid "Rename projects" msgstr "" -#: lxc/remote.go:754 lxc/remote.go:755 +#: lxc/remote.go:755 lxc/remote.go:756 msgid "Rename remotes" msgstr "" @@ -5100,7 +5095,7 @@ msgid "Restrict the certificate to one or more projects" msgstr "" #: lxc/console.go:44 -msgid "Retrieve the instance's console log" +msgid "Retrieve the container's console log" msgstr "" #: lxc/init.go:347 @@ -5116,7 +5111,7 @@ msgstr "" msgid "Revoke cluster member join token" msgstr "" -#: lxc/storage_bucket.go:851 +#: lxc/storage_bucket.go:856 msgid "Role (admin or read-only)" msgstr "" @@ -5167,7 +5162,7 @@ msgstr "" msgid "STATE" msgstr "" -#: lxc/remote.go:736 +#: lxc/remote.go:737 msgid "STATIC" msgstr "" @@ -5191,11 +5186,11 @@ msgstr "" msgid "STP" msgstr "" -#: lxc/storage_bucket.go:853 +#: lxc/storage_bucket.go:858 msgid "Secret key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:909 +#: lxc/storage_bucket.go:914 #, c-format msgid "Secret key: %s" msgstr "" @@ -5204,19 +5199,19 @@ msgstr "" msgid "Send a raw query to LXD" msgstr "" -#: lxc/remote.go:104 +#: lxc/remote.go:105 msgid "Server authentication type (tls or oidc)" msgstr "" -#: lxc/remote.go:460 +#: lxc/remote.go:461 msgid "Server certificate NACKed by user" msgstr "" -#: lxc/remote.go:599 +#: lxc/remote.go:600 msgid "Server doesn't trust us after authentication" msgstr "" -#: lxc/remote.go:103 +#: lxc/remote.go:104 msgid "Server protocol (lxd or simplestreams)" msgstr "" @@ -5315,11 +5310,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_load_balancer.go:450 +#: lxc/network_load_balancer.go:455 msgid "Set network load balancer keys" msgstr "" -#: lxc/network_load_balancer.go:451 +#: lxc/network_load_balancer.go:456 msgid "" "Set network load balancer keys\n" "\n" @@ -5341,11 +5336,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:353 +#: lxc/network_zone.go:358 msgid "Set network zone configuration keys" msgstr "" -#: lxc/network_zone.go:354 +#: lxc/network_zone.go:359 msgid "" "Set network zone configuration keys\n" "\n" @@ -5354,7 +5349,7 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:951 lxc/network_zone.go:952 +#: lxc/network_zone.go:956 lxc/network_zone.go:957 msgid "Set network zone record configuration keys" msgstr "" @@ -5384,11 +5379,11 @@ msgid "" " lxc project set [:] " msgstr "" -#: lxc/storage_bucket.go:529 +#: lxc/storage_bucket.go:534 msgid "Set storage bucket configuration keys" msgstr "" -#: lxc/storage_bucket.go:530 +#: lxc/storage_bucket.go:535 msgid "" "Set storage bucket configuration keys\n" "\n" @@ -5423,7 +5418,7 @@ msgid "" " lxc storage volume set [:] [/] " msgstr "" -#: lxc/remote.go:923 lxc/remote.go:924 +#: lxc/remote.go:924 lxc/remote.go:925 msgid "Set the URL for the remote" msgstr "" @@ -5451,7 +5446,7 @@ msgstr "" msgid "Set the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:458 +#: lxc/network_load_balancer.go:463 msgid "Set the key as a network load balancer property" msgstr "" @@ -5463,11 +5458,11 @@ msgstr "" msgid "Set the key as a network property" msgstr "" -#: lxc/network_zone.go:361 +#: lxc/network_zone.go:366 msgid "Set the key as a network zone property" msgstr "" -#: lxc/network_zone.go:957 +#: lxc/network_zone.go:962 msgid "Set the key as a network zone record property" msgstr "" @@ -5479,7 +5474,7 @@ msgstr "" msgid "Set the key as a project property" msgstr "" -#: lxc/storage_bucket.go:537 +#: lxc/storage_bucket.go:542 msgid "Set the key as a storage bucket property" msgstr "" @@ -5499,11 +5494,11 @@ msgstr "" msgid "Setup SSH SFTP listener on address:port instead of mounting" msgstr "" -#: lxc/main.go:97 +#: lxc/main.go:98 msgid "Show all debug messages" msgstr "" -#: lxc/main.go:98 +#: lxc/main.go:99 msgid "Show all information messages" msgstr "" @@ -5572,7 +5567,7 @@ msgstr "" msgid "Show instance or server information" msgstr "" -#: lxc/main.go:271 lxc/main.go:272 +#: lxc/main.go:272 lxc/main.go:273 msgid "Show less common commands" msgstr "" @@ -5604,15 +5599,15 @@ msgstr "" msgid "Show network peer configurations" msgstr "" -#: lxc/network_zone.go:155 lxc/network_zone.go:156 +#: lxc/network_zone.go:156 lxc/network_zone.go:157 msgid "Show network zone configurations" msgstr "" -#: lxc/network_zone.go:758 +#: lxc/network_zone.go:763 msgid "Show network zone record configuration" msgstr "" -#: lxc/network_zone.go:759 +#: lxc/network_zone.go:764 msgid "Show network zone record configurations" msgstr "" @@ -5624,11 +5619,11 @@ msgstr "" msgid "Show project options" msgstr "" -#: lxc/storage_bucket.go:623 lxc/storage_bucket.go:624 +#: lxc/storage_bucket.go:628 lxc/storage_bucket.go:629 msgid "Show storage bucket configurations" msgstr "" -#: lxc/storage_bucket.go:1123 lxc/storage_bucket.go:1124 +#: lxc/storage_bucket.go:1128 lxc/storage_bucket.go:1129 msgid "Show storage bucket key configurations" msgstr "" @@ -5654,7 +5649,7 @@ msgid "" "that are granted via identity provider group mappings. \n" msgstr "" -#: lxc/remote.go:630 lxc/remote.go:631 +#: lxc/remote.go:631 lxc/remote.go:632 msgid "Show the default remote" msgstr "" @@ -5778,22 +5773,22 @@ msgstr "" msgid "Stopping the instance failed: %s" msgstr "" -#: lxc/storage_bucket.go:161 +#: lxc/storage_bucket.go:166 #, c-format msgid "Storage bucket %s created" msgstr "" -#: lxc/storage_bucket.go:228 +#: lxc/storage_bucket.go:233 #, c-format msgid "Storage bucket %s deleted" msgstr "" -#: lxc/storage_bucket.go:907 +#: lxc/storage_bucket.go:912 #, c-format msgid "Storage bucket key %s added" msgstr "" -#: lxc/storage_bucket.go:973 +#: lxc/storage_bucket.go:978 #, c-format msgid "Storage bucket key %s removed" msgstr "" @@ -5866,7 +5861,7 @@ msgstr "" msgid "Switch the current project" msgstr "" -#: lxc/remote.go:883 lxc/remote.go:884 +#: lxc/remote.go:884 lxc/remote.go:885 msgid "Switch the default remote" msgstr "" @@ -5981,7 +5976,7 @@ msgstr "" msgid "The property %q does not exist on the instance snapshot %s/%s: %v" msgstr "" -#: lxc/network_load_balancer.go:424 +#: lxc/network_load_balancer.go:429 #, c-format msgid "The property %q does not exist on the load balancer %q: %v" msgstr "" @@ -6006,12 +6001,12 @@ msgstr "" msgid "The property %q does not exist on the network peer %q: %v" msgstr "" -#: lxc/network_zone.go:246 +#: lxc/network_zone.go:247 #, c-format msgid "The property %q does not exist on the network zone %q: %v" msgstr "" -#: lxc/network_zone.go:845 +#: lxc/network_zone.go:850 #, c-format msgid "The property %q does not exist on the network zone record %q: %v" msgstr "" @@ -6026,7 +6021,7 @@ msgstr "" msgid "The property %q does not exist on the project %q: %v" msgstr "" -#: lxc/storage_bucket.go:426 +#: lxc/storage_bucket.go:431 #, c-format msgid "The property %q does not exist on the storage bucket %q: %v" msgstr "" @@ -6080,7 +6075,7 @@ msgstr "" msgid "This LXD server is not available on the network" msgstr "" -#: lxc/main.go:293 +#: lxc/main.go:294 msgid "" "This client hasn't been configured to use a remote LXD server yet.\n" "As your platform can't run native Linux instances, you must connect to a " @@ -6112,11 +6107,11 @@ msgstr "" msgid "To create a new network, use: lxc network create" msgstr "" -#: lxc/console.go:210 +#: lxc/console.go:215 msgid "To detach from the console, press: +a q" msgstr "" -#: lxc/main.go:403 +#: lxc/main.go:406 msgid "" "To start your first container, try: lxc launch ubuntu:24.04\n" "Or for a virtual machine: lxc launch ubuntu:24.04 --vm" @@ -6214,7 +6209,7 @@ msgstr "" msgid "UPLOAD DATE" msgstr "" -#: lxc/cluster.go:184 lxc/remote.go:732 +#: lxc/cluster.go:184 lxc/remote.go:733 msgid "URL" msgstr "" @@ -6223,7 +6218,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:679 lxc/project.go:506 +#: lxc/network_zone.go:141 lxc/profile.go:679 lxc/project.go:506 #: lxc/storage.go:647 lxc/storage_volume.go:1564 msgid "USED BY" msgstr "" @@ -6242,7 +6237,7 @@ msgstr "" msgid "Unable to create a temporary file: %v" msgstr "" -#: lxc/remote.go:213 lxc/remote.go:247 +#: lxc/remote.go:214 lxc/remote.go:248 msgid "Unavailable remote server" msgstr "" @@ -6262,7 +6257,7 @@ msgstr "" msgid "Unknown column shorthand char '%c' in '%s'" msgstr "" -#: lxc/console.go:159 +#: lxc/console.go:164 #, c-format msgid "Unknown console type %q" msgstr "" @@ -6322,11 +6317,11 @@ msgstr "" msgid "Unset network forward keys" msgstr "" -#: lxc/network_load_balancer.go:548 +#: lxc/network_load_balancer.go:553 msgid "Unset network load balancer configuration keys" msgstr "" -#: lxc/network_load_balancer.go:549 +#: lxc/network_load_balancer.go:554 msgid "Unset network load balancer keys" msgstr "" @@ -6338,11 +6333,11 @@ msgstr "" msgid "Unset network peer keys" msgstr "" -#: lxc/network_zone.go:433 lxc/network_zone.go:434 +#: lxc/network_zone.go:438 lxc/network_zone.go:439 msgid "Unset network zone configuration keys" msgstr "" -#: lxc/network_zone.go:1027 lxc/network_zone.go:1028 +#: lxc/network_zone.go:1032 lxc/network_zone.go:1033 msgid "Unset network zone record configuration keys" msgstr "" @@ -6354,7 +6349,7 @@ msgstr "" msgid "Unset project configuration keys" msgstr "" -#: lxc/storage_bucket.go:692 lxc/storage_bucket.go:693 +#: lxc/storage_bucket.go:697 lxc/storage_bucket.go:698 msgid "Unset storage bucket configuration keys" msgstr "" @@ -6378,7 +6373,7 @@ msgstr "" msgid "Unset the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:552 +#: lxc/network_load_balancer.go:557 msgid "Unset the key as a network load balancer property" msgstr "" @@ -6390,11 +6385,11 @@ msgstr "" msgid "Unset the key as a network property" msgstr "" -#: lxc/network_zone.go:437 +#: lxc/network_zone.go:442 msgid "Unset the key as a network zone property" msgstr "" -#: lxc/network_zone.go:1031 +#: lxc/network_zone.go:1036 msgid "Unset the key as a network zone record property" msgstr "" @@ -6406,7 +6401,7 @@ msgstr "" msgid "Unset the key as a project property" msgstr "" -#: lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:701 msgid "Unset the key as a storage bucket property" msgstr "" @@ -6468,7 +6463,7 @@ msgid "" "Use storage driver optimized format (can only be restored on a similar pool)" msgstr "" -#: lxc/main.go:100 +#: lxc/main.go:101 msgid "Use with help or --help to view sub-commands" msgstr "" @@ -6565,7 +6560,7 @@ msgstr "" #: lxc/network.go:959 lxc/operation.go:156 lxc/project.go:458 #: lxc/project.go:463 lxc/project.go:468 lxc/project.go:473 lxc/project.go:478 -#: lxc/project.go:483 lxc/remote.go:693 lxc/remote.go:698 lxc/remote.go:703 +#: lxc/project.go:483 lxc/remote.go:694 lxc/remote.go:699 lxc/remote.go:704 msgid "YES" msgstr "" @@ -6600,7 +6595,7 @@ 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/network.go:909 lxc/network_acl.go:91 lxc/network_zone.go:83 #: 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 "[:]" @@ -6663,19 +6658,19 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:154 lxc/network_zone.go:463 lxc/network_zone.go:581 +#: lxc/network_zone.go:155 lxc/network_zone.go:468 lxc/network_zone.go:586 msgid "[:]" msgstr "" -#: lxc/network_zone.go:209 lxc/network_zone.go:432 +#: lxc/network_zone.go:210 lxc/network_zone.go:437 msgid "[:] " msgstr "" -#: lxc/network_zone.go:352 +#: lxc/network_zone.go:357 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:269 +#: lxc/network_zone.go:270 msgid "[:] [key=value...]" msgstr "" @@ -6921,30 +6916,30 @@ msgstr "" #: lxc/network_forward.go:169 lxc/network_forward.go:574 #: lxc/network_forward.go:715 lxc/network_load_balancer.go:171 -#: lxc/network_load_balancer.go:577 lxc/network_load_balancer.go:719 +#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:724 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:860 +#: lxc/network_load_balancer.go:865 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:796 +#: lxc/network_load_balancer.go:801 msgid "" "[:] " "[]" msgstr "" #: lxc/network_forward.go:377 lxc/network_forward.go:544 -#: lxc/network_load_balancer.go:381 lxc/network_load_balancer.go:547 +#: lxc/network_load_balancer.go:386 lxc/network_load_balancer.go:552 msgid "[:] " msgstr "" -#: lxc/network_forward.go:446 lxc/network_load_balancer.go:449 +#: lxc/network_forward.go:446 lxc/network_load_balancer.go:454 msgid "[:] =..." msgstr "" -#: lxc/network_load_balancer.go:961 +#: lxc/network_load_balancer.go:966 msgid "" "[:] " "[,...]" @@ -6956,7 +6951,7 @@ msgid "" " []" msgstr "" -#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1022 +#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1027 msgid "[:] [] []" msgstr "" @@ -7007,7 +7002,7 @@ msgid "[:]" msgstr "" #: lxc/storage.go:167 lxc/storage.go:218 lxc/storage.go:412 lxc/storage.go:759 -#: lxc/storage_bucket.go:449 +#: lxc/storage_bucket.go:454 msgid "[:]" msgstr "" @@ -7015,18 +7010,18 @@ msgstr "" msgid "[:] []" msgstr "" -#: lxc/storage_bucket.go:180 lxc/storage_bucket.go:242 -#: lxc/storage_bucket.go:622 lxc/storage_bucket.go:764 +#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:247 +#: lxc/storage_bucket.go:627 lxc/storage_bucket.go:769 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:375 lxc/storage_bucket.go:691 -#: lxc/storage_bucket.go:845 lxc/storage_bucket.go:923 -#: lxc/storage_bucket.go:987 lxc/storage_bucket.go:1122 +#: lxc/storage_bucket.go:380 lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:850 lxc/storage_bucket.go:928 +#: lxc/storage_bucket.go:992 lxc/storage_bucket.go:1127 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:528 +#: lxc/storage_bucket.go:533 msgid "[:] =..." msgstr "" @@ -7170,27 +7165,27 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:686 +#: lxc/network_zone.go:691 msgid "[:]" msgstr "" -#: lxc/network_zone.go:757 lxc/network_zone.go:1056 lxc/network_zone.go:1173 +#: lxc/network_zone.go:762 lxc/network_zone.go:1061 lxc/network_zone.go:1178 msgid "[:] " msgstr "" -#: lxc/network_zone.go:809 lxc/network_zone.go:1026 +#: lxc/network_zone.go:814 lxc/network_zone.go:1031 msgid "[:] " msgstr "" -#: lxc/network_zone.go:950 +#: lxc/network_zone.go:955 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:1238 lxc/network_zone.go:1284 +#: lxc/network_zone.go:1243 lxc/network_zone.go:1289 msgid "[:] " msgstr "" -#: lxc/network_zone.go:868 +#: lxc/network_zone.go:873 msgid "[:] [key=value...]" msgstr "" @@ -7214,7 +7209,7 @@ msgstr "" msgid "[:][] [...]" msgstr "" -#: lxc/remote.go:88 +#: lxc/remote.go:89 msgid "[] " msgstr "" @@ -7222,7 +7217,7 @@ msgstr "" msgid "[[:]]" msgstr "" -#: lxc/project.go:488 lxc/remote.go:722 +#: lxc/project.go:488 lxc/remote.go:723 msgid "current" msgstr "" @@ -7485,6 +7480,23 @@ msgid "" " Create a new OVN network called bar using baz as its uplink network" msgstr "" +#: lxc/network_load_balancer.go:239 +msgid "" +"lxc network load-balancer create n1 127.0.0.1\n" +"\n" +"lxc network load-balancer create n1 127.0.0.1 < config.yaml\n" +" Create network load-balancer for network n1 with configuration from " +"config.yaml" +msgstr "" + +#: lxc/network_zone.go:273 +msgid "" +"lxc network zone create z1\n" +"\n" +"lxc network zone create z1 < config.yaml\n" +" Create network zone z1 with configuration from config.yaml" +msgstr "" + #: lxc/operation.go:195 msgid "" "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n" @@ -7555,26 +7567,36 @@ msgid "" " Restore the snapshot." msgstr "" -#: lxc/storage_bucket.go:245 +#: lxc/storage_bucket.go:84 +msgid "" +"lxc storage bucket create p1 b01\n" +"\tCreate a new storage bucket name b01 in storage pool p1\n" +"\n" +"lxc storage bucket create p1 b01 < config.yaml\n" +"\tCreate a new storage bucket name b01 in storage pool p1 using the content " +"of config.yaml" +msgstr "" + +#: lxc/storage_bucket.go:250 msgid "" "lxc storage bucket edit [:] < bucket.yaml\n" " Update a storage bucket using the content of bucket.yaml." msgstr "" -#: lxc/storage_bucket.go:990 +#: lxc/storage_bucket.go:995 msgid "" "lxc storage bucket edit [:] < key.yaml\n" " Update a storage bucket key using the content of key.yaml." msgstr "" -#: lxc/storage_bucket.go:1125 +#: lxc/storage_bucket.go:1130 msgid "" "lxc storage bucket key show default data foo\n" " Will show the properties of a bucket key called \"foo\" for a bucket " "called \"data\" in the \"default\" pool." msgstr "" -#: lxc/storage_bucket.go:625 +#: lxc/storage_bucket.go:630 msgid "" "lxc storage bucket show default data\n" " Will show the properties of a bucket called \"data\" in the \"default\" " @@ -7593,7 +7615,7 @@ msgid "" "\t\tCreate a new custom volume using backup0.tar.gz as the source." msgstr "" -#: lxc/remote.go:459 +#: lxc/remote.go:460 msgid "n" msgstr "" @@ -7605,7 +7627,7 @@ msgstr "" msgid "no" msgstr "" -#: lxc/remote.go:452 +#: lxc/remote.go:453 msgid "ok (y/n/[fingerprint])?" msgstr "" @@ -7642,7 +7664,7 @@ msgstr "" msgid "used by" msgstr "" -#: lxc/remote.go:461 +#: lxc/remote.go:462 msgid "y" msgstr "" diff --git a/po/zh_Hant.po b/po/zh_Hant.po index d94cad4452ba..7be8f93453cc 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-08-20 09:31+0100\n" +"POT-Creation-Date: 2024-08-30 09:27+0100\n" "PO-Revision-Date: 2022-03-10 15:11+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Chinese (Traditional) " msgstr "" -#: lxc/remote.go:825 lxc/remote.go:882 +#: lxc/remote.go:826 lxc/remote.go:883 msgid "" msgstr "" -#: lxc/remote.go:922 +#: lxc/remote.go:923 msgid " " msgstr "" -#: lxc/remote.go:752 +#: lxc/remote.go:753 msgid " " msgstr "" @@ -556,7 +556,7 @@ msgstr "" msgid "ARCHITECTURE" msgstr "" -#: lxc/remote.go:734 +#: lxc/remote.go:735 msgid "AUTH TYPE" msgstr "" @@ -564,15 +564,15 @@ msgstr "" msgid "AUTHENTICATION METHOD" msgstr "" -#: lxc/remote.go:100 +#: lxc/remote.go:101 msgid "Accept certificate" msgstr "" -#: lxc/storage_bucket.go:852 +#: lxc/storage_bucket.go:857 msgid "Access key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:908 +#: lxc/storage_bucket.go:913 #, c-format msgid "Access key: %s" msgstr "" @@ -606,19 +606,19 @@ msgstr "" msgid "Add a group to an identity provider group" msgstr "" -#: lxc/network_zone.go:1239 +#: lxc/network_zone.go:1244 msgid "Add a network zone record entry" msgstr "" -#: lxc/network_load_balancer.go:798 +#: lxc/network_load_balancer.go:803 msgid "Add backend to a load balancer" msgstr "" -#: lxc/network_load_balancer.go:797 +#: lxc/network_load_balancer.go:802 msgid "Add backends to a load balancer" msgstr "" -#: lxc/network_zone.go:1240 +#: lxc/network_zone.go:1245 msgid "Add entries to a network zone record" msgstr "" @@ -634,11 +634,11 @@ msgstr "" msgid "Add new aliases" msgstr "" -#: lxc/remote.go:89 +#: lxc/remote.go:90 msgid "Add new remote servers" msgstr "" -#: lxc/remote.go:90 +#: lxc/remote.go:91 msgid "" "Add new remote servers\n" "\n" @@ -679,7 +679,7 @@ msgstr "" msgid "Add ports to a forward" msgstr "" -#: lxc/network_load_balancer.go:962 lxc/network_load_balancer.go:963 +#: lxc/network_load_balancer.go:967 lxc/network_load_balancer.go:968 msgid "Add ports to a load balancer" msgstr "" @@ -700,17 +700,17 @@ msgstr "" msgid "Address: %s" msgstr "" -#: lxc/storage_bucket.go:164 +#: lxc/storage_bucket.go:169 #, c-format msgid "Admin access key: %s" msgstr "" -#: lxc/remote.go:566 +#: lxc/remote.go:567 #, c-format msgid "Admin password (or token) for %s:" msgstr "" -#: lxc/storage_bucket.go:165 +#: lxc/storage_bucket.go:170 #, c-format msgid "Admin secret key: %s" msgstr "" @@ -742,7 +742,7 @@ msgstr "" msgid "All projects" msgstr "" -#: lxc/remote.go:181 +#: lxc/remote.go:182 msgid "All server addresses are unavailable" msgstr "" @@ -765,7 +765,7 @@ msgstr "" msgid "Are you sure you want to %s cluster member %q? (yes/no) [default=no]: " msgstr "" -#: lxc/console.go:383 +#: lxc/console.go:388 msgid "As neither could be found, the raw SPICE socket can be found at:" msgstr "" @@ -813,7 +813,7 @@ msgid "" "as well as retrieve past log entries from it." msgstr "" -#: lxc/remote.go:548 +#: lxc/remote.go:549 #, c-format msgid "Authentication type '%s' not supported by server" msgstr "" @@ -832,11 +832,11 @@ msgstr "" msgid "Auto update: %s" msgstr "" -#: lxc/network_forward.go:240 lxc/network_load_balancer.go:242 +#: lxc/network_forward.go:240 lxc/network_load_balancer.go:247 msgid "Auto-allocate an IPv4 or IPv6 listen address. One of 'ipv4', 'ipv6'." msgstr "" -#: lxc/remote.go:136 +#: lxc/remote.go:137 msgid "Available projects:" msgstr "" @@ -868,8 +868,8 @@ msgid "Bad device override syntax, expecting ,=: %s" msgstr "" #: lxc/network.go:333 lxc/network_acl.go:382 lxc/network_forward.go:293 -#: lxc/network_load_balancer.go:296 lxc/network_peer.go:280 -#: lxc/network_zone.go:324 lxc/network_zone.go:922 lxc/storage_bucket.go:136 +#: lxc/network_load_balancer.go:301 lxc/network_peer.go:280 +#: lxc/network_zone.go:329 lxc/network_zone.go:927 lxc/storage_bucket.go:141 #, c-format msgid "Bad key/value pair: %s" msgstr "" @@ -991,7 +991,7 @@ msgstr "" msgid "Can't read from stdin: %w" msgstr "" -#: lxc/remote.go:861 +#: lxc/remote.go:862 msgid "Can't remove the default remote" msgstr "" @@ -1057,15 +1057,14 @@ msgstr "" msgid "Certificate add token for %s deleted" msgstr "" -#: lxc/remote.go:218 -#, c-format -msgid "" -"Certificate fingerprint mismatch between certificate token and server %q" +#: lxc/remote.go:452 +msgid "Certificate fingerprint" msgstr "" -#: lxc/remote.go:451 +#: lxc/remote.go:219 #, c-format -msgid "Certificate fingerprint: %s" +msgid "" +"Certificate fingerprint mismatch between certificate token and server %q" msgstr "" #: lxc/network.go:893 @@ -1077,7 +1076,7 @@ msgstr "" msgid "Client %s certificate add token:" msgstr "" -#: lxc/remote.go:603 +#: lxc/remote.go:604 msgid "Client certificate now trusted by server:" msgstr "" @@ -1139,18 +1138,18 @@ msgstr "" #: lxc/network_forward.go:456 lxc/network_forward.go:579 #: lxc/network_forward.go:721 lxc/network_forward.go:798 #: lxc/network_forward.go:864 lxc/network_load_balancer.go:176 -#: lxc/network_load_balancer.go:241 lxc/network_load_balancer.go:459 -#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:725 -#: lxc/network_load_balancer.go:801 lxc/network_load_balancer.go:865 -#: lxc/network_load_balancer.go:966 lxc/network_load_balancer.go:1028 +#: lxc/network_load_balancer.go:246 lxc/network_load_balancer.go:464 +#: lxc/network_load_balancer.go:587 lxc/network_load_balancer.go:730 +#: lxc/network_load_balancer.go:806 lxc/network_load_balancer.go:870 +#: lxc/network_load_balancer.go:971 lxc/network_load_balancer.go:1033 #: lxc/storage.go:99 lxc/storage.go:347 lxc/storage.go:418 lxc/storage.go:671 -#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:85 -#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:248 -#: lxc/storage_bucket.go:379 lxc/storage_bucket.go:536 -#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:695 -#: lxc/storage_bucket.go:770 lxc/storage_bucket.go:850 -#: lxc/storage_bucket.go:928 lxc/storage_bucket.go:993 -#: lxc/storage_bucket.go:1129 lxc/storage_volume.go:358 +#: lxc/storage.go:765 lxc/storage.go:850 lxc/storage_bucket.go:90 +#: lxc/storage_bucket.go:190 lxc/storage_bucket.go:253 +#: lxc/storage_bucket.go:384 lxc/storage_bucket.go:541 +#: lxc/storage_bucket.go:634 lxc/storage_bucket.go:700 +#: lxc/storage_bucket.go:775 lxc/storage_bucket.go:855 +#: lxc/storage_bucket.go:933 lxc/storage_bucket.go:998 +#: lxc/storage_bucket.go:1134 lxc/storage_volume.go:358 #: lxc/storage_volume.go:560 lxc/storage_volume.go:639 #: lxc/storage_volume.go:883 lxc/storage_volume.go:1097 #: lxc/storage_volume.go:1210 lxc/storage_volume.go:1678 @@ -1178,11 +1177,11 @@ msgstr "" msgid "Columns" msgstr "" -#: lxc/main.go:81 +#: lxc/main.go:82 msgid "Command line client for LXD" msgstr "" -#: lxc/main.go:82 +#: lxc/main.go:83 msgid "" "Command line client for LXD\n" "\n" @@ -1214,19 +1213,15 @@ msgstr "" #: lxc/config.go:347 lxc/config.go:1277 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/network_load_balancer.go:694 lxc/network_peer.go:610 +#: lxc/network_zone.go:556 lxc/network_zone.go:1148 lxc/profile.go:538 +#: lxc/project.go:315 lxc/storage.go:310 lxc/storage_bucket.go:348 +#: lxc/storage_bucket.go:1097 lxc/storage_volume.go:1016 #: lxc/storage_volume.go:1048 #, c-format msgid "Config parsing error: %s" msgstr "" -#: lxc/console.go:140 -msgid "Console log:" -msgstr "" - #: lxc/storage_volume.go:561 msgid "Content type, block or filesystem" msgstr "" @@ -1329,12 +1324,12 @@ msgstr "" msgid "Cores:" msgstr "" -#: lxc/remote.go:486 +#: lxc/remote.go:487 #, c-format msgid "Could not close server cert file %q: %w" msgstr "" -#: lxc/remote.go:224 lxc/remote.go:470 +#: lxc/remote.go:225 lxc/remote.go:471 msgid "Could not create server cert dir" msgstr "" @@ -1373,12 +1368,12 @@ msgstr "" msgid "Could not write new remote certificate for remote '%s' with error: %v" msgstr "" -#: lxc/remote.go:481 +#: lxc/remote.go:482 #, c-format msgid "Could not write server cert file %q: %w" msgstr "" -#: lxc/network_zone.go:1327 +#: lxc/network_zone.go:1332 msgid "Couldn't find a matching entry" msgstr "" @@ -1430,7 +1425,7 @@ msgstr "" msgid "Create instances from images" msgstr "" -#: lxc/storage_bucket.go:846 lxc/storage_bucket.go:847 +#: lxc/storage_bucket.go:851 lxc/storage_bucket.go:852 msgid "Create key for a storage bucket" msgstr "" @@ -1462,11 +1457,11 @@ msgstr "" msgid "Create new network peering" msgstr "" -#: lxc/network_zone.go:869 lxc/network_zone.go:870 +#: lxc/network_zone.go:874 lxc/network_zone.go:875 msgid "Create new network zone record" msgstr "" -#: lxc/network_zone.go:270 lxc/network_zone.go:271 +#: lxc/network_zone.go:271 lxc/network_zone.go:272 msgid "Create new network zones" msgstr "" @@ -1517,9 +1512,9 @@ msgstr "" #: 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/network_zone.go:140 lxc/network_zone.go:747 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_bucket.go:512 lxc/storage_bucket.go:832 #: lxc/storage_volume.go:1562 msgid "DESCRIPTION" msgstr "" @@ -1584,7 +1579,7 @@ msgstr "" msgid "Delete instances and snapshots" msgstr "" -#: lxc/storage_bucket.go:924 lxc/storage_bucket.go:925 +#: lxc/storage_bucket.go:929 lxc/storage_bucket.go:930 msgid "Delete key from a storage bucket" msgstr "" @@ -1596,7 +1591,7 @@ msgstr "" msgid "Delete network forwards" msgstr "" -#: lxc/network_load_balancer.go:721 lxc/network_load_balancer.go:722 +#: lxc/network_load_balancer.go:726 lxc/network_load_balancer.go:727 msgid "Delete network load balancers" msgstr "" @@ -1604,11 +1599,11 @@ msgstr "" msgid "Delete network peerings" msgstr "" -#: lxc/network_zone.go:1175 lxc/network_zone.go:1176 +#: lxc/network_zone.go:1180 lxc/network_zone.go:1181 msgid "Delete network zone record" msgstr "" -#: lxc/network_zone.go:583 lxc/network_zone.go:584 +#: lxc/network_zone.go:588 lxc/network_zone.go:589 msgid "Delete network zones" msgstr "" @@ -1624,7 +1619,7 @@ msgstr "" msgid "Delete projects" msgstr "" -#: lxc/storage_bucket.go:182 lxc/storage_bucket.go:183 +#: lxc/storage_bucket.go:187 lxc/storage_bucket.go:188 msgid "Delete storage buckets" msgstr "" @@ -1680,7 +1675,7 @@ msgstr "" #: 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/info.go:32 lxc/init.go:43 lxc/launch.go:24 lxc/list.go:48 lxc/main.go:83 #: 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 @@ -1699,22 +1694,22 @@ msgstr "" #: 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_load_balancer.go:238 lxc/network_load_balancer.go:388 +#: lxc/network_load_balancer.go:456 lxc/network_load_balancer.go:554 +#: lxc/network_load_balancer.go:584 lxc/network_load_balancer.go:727 +#: lxc/network_load_balancer.go:788 lxc/network_load_balancer.go:803 +#: lxc/network_load_balancer.go:867 lxc/network_load_balancer.go:953 +#: lxc/network_load_balancer.go:968 lxc/network_load_balancer.go:1029 #: 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/network_zone.go:29 lxc/network_zone.go:86 lxc/network_zone.go:157 +#: lxc/network_zone.go:212 lxc/network_zone.go:272 lxc/network_zone.go:359 +#: lxc/network_zone.go:439 lxc/network_zone.go:470 lxc/network_zone.go:589 +#: lxc/network_zone.go:637 lxc/network_zone.go:694 lxc/network_zone.go:764 +#: lxc/network_zone.go:816 lxc/network_zone.go:875 lxc/network_zone.go:957 +#: lxc/network_zone.go:1033 lxc/network_zone.go:1063 lxc/network_zone.go:1181 +#: lxc/network_zone.go:1230 lxc/network_zone.go:1245 lxc/network_zone.go:1291 #: 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 @@ -1723,19 +1718,19 @@ msgstr "" #: 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:631 lxc/remote.go:669 lxc/remote.go:755 lxc/remote.go:828 -#: lxc/remote.go:884 lxc/remote.go:924 lxc/rename.go:21 lxc/restore.go:24 +#: lxc/query.go:34 lxc/rebuild.go:27 lxc/remote.go:35 lxc/remote.go:91 +#: lxc/remote.go:632 lxc/remote.go:670 lxc/remote.go:756 lxc/remote.go:829 +#: lxc/remote.go:885 lxc/remote.go:925 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_bucket.go:29 lxc/storage_bucket.go:83 lxc/storage_bucket.go:188 +#: lxc/storage_bucket.go:249 lxc/storage_bucket.go:382 +#: lxc/storage_bucket.go:458 lxc/storage_bucket.go:535 +#: lxc/storage_bucket.go:629 lxc/storage_bucket.go:698 +#: lxc/storage_bucket.go:732 lxc/storage_bucket.go:773 +#: lxc/storage_bucket.go:852 lxc/storage_bucket.go:930 +#: lxc/storage_bucket.go:994 lxc/storage_bucket.go:1129 #: 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 @@ -1871,7 +1866,7 @@ msgstr "" msgid "Don't require user confirmation for using --force" msgstr "" -#: lxc/main.go:99 +#: lxc/main.go:100 msgid "Don't show progress information" msgstr "" @@ -1884,7 +1879,7 @@ msgstr "" msgid "Driver: %v (%v)" msgstr "" -#: lxc/network_zone.go:743 +#: lxc/network_zone.go:748 msgid "ENTRIES" msgstr "" @@ -1962,7 +1957,7 @@ msgstr "" msgid "Edit network forward configurations as YAML" msgstr "" -#: lxc/network_load_balancer.go:578 lxc/network_load_balancer.go:579 +#: lxc/network_load_balancer.go:583 lxc/network_load_balancer.go:584 msgid "Edit network load balancer configurations as YAML" msgstr "" @@ -1970,11 +1965,11 @@ msgstr "" msgid "Edit network peer configurations as YAML" msgstr "" -#: lxc/network_zone.go:464 lxc/network_zone.go:465 +#: lxc/network_zone.go:469 lxc/network_zone.go:470 msgid "Edit network zone configurations as YAML" msgstr "" -#: lxc/network_zone.go:1057 lxc/network_zone.go:1058 +#: lxc/network_zone.go:1062 lxc/network_zone.go:1063 msgid "Edit network zone record configurations as YAML" msgstr "" @@ -1986,11 +1981,11 @@ msgstr "" msgid "Edit project configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:243 lxc/storage_bucket.go:244 +#: lxc/storage_bucket.go:248 lxc/storage_bucket.go:249 msgid "Edit storage bucket configurations as YAML" msgstr "" -#: lxc/storage_bucket.go:988 lxc/storage_bucket.go:989 +#: lxc/storage_bucket.go:993 lxc/storage_bucket.go:994 msgid "Edit storage bucket key as YAML" msgstr "" @@ -2031,7 +2026,7 @@ msgid "" " for the address if not yet set." msgstr "" -#: lxc/network_zone.go:1242 +#: lxc/network_zone.go:1247 msgid "Entry TTL" msgstr "" @@ -2060,9 +2055,9 @@ msgstr "" #: lxc/cluster.go:414 lxc/config.go:624 lxc/config.go:656 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/network_load_balancer.go:527 lxc/network_peer.go:463 +#: lxc/network_zone.go:414 lxc/network_zone.go:1008 lxc/profile.go:876 +#: lxc/project.go:634 lxc/storage.go:727 lxc/storage_bucket.go:602 #: lxc/storage_volume.go:1947 lxc/storage_volume.go:1985 #, c-format msgid "Error setting properties: %v" @@ -2074,10 +2069,10 @@ 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/network_forward.go:513 lxc/network_load_balancer.go:521 +#: lxc/network_peer.go:457 lxc/network_zone.go:408 lxc/network_zone.go:1002 #: lxc/profile.go:870 lxc/project.go:628 lxc/storage.go:721 -#: lxc/storage_bucket.go:591 lxc/storage_volume.go:1941 +#: lxc/storage_bucket.go:596 lxc/storage_volume.go:1941 #: lxc/storage_volume.go:1979 #, c-format msgid "Error unsetting property: %v" @@ -2263,7 +2258,7 @@ msgstr "" msgid "Failed parsing SSH host key: %w" msgstr "" -#: lxc/console.go:361 +#: lxc/console.go:366 #, c-format msgid "Failed starting command: %w" msgstr "" @@ -2278,11 +2273,11 @@ msgstr "" msgid "Failed to accept incoming connection: %w" msgstr "" -#: lxc/remote.go:190 +#: lxc/remote.go:191 msgid "Failed to add remote" msgstr "" -#: lxc/remote.go:241 +#: lxc/remote.go:242 #, c-format msgid "Failed to close server cert file %q: %w" msgstr "" @@ -2292,7 +2287,7 @@ msgstr "" msgid "Failed to connect to cluster member: %w" msgstr "" -#: lxc/remote.go:231 +#: lxc/remote.go:232 #, c-format msgid "Failed to create %q: %w" msgstr "" @@ -2302,12 +2297,12 @@ msgstr "" msgid "Failed to create alias %s: %w" msgstr "" -#: lxc/remote.go:256 +#: lxc/remote.go:257 #, c-format msgid "Failed to create certificate: %w" msgstr "" -#: lxc/remote.go:263 +#: lxc/remote.go:264 #, c-format msgid "Failed to find project: %w" msgstr "" @@ -2332,7 +2327,7 @@ msgstr "" msgid "Failed to walk path for %s: %s" msgstr "" -#: lxc/remote.go:236 +#: lxc/remote.go:237 #, c-format msgid "Failed to write server cert file %q: %w" msgstr "" @@ -2341,7 +2336,7 @@ msgstr "" msgid "Fast mode (same as --columns=nsacPt)" msgstr "" -#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:115 +#: lxc/network.go:943 lxc/network_acl.go:124 lxc/network_zone.go:116 #: lxc/operation.go:136 msgid "Filtering isn't supported yet" msgstr "" @@ -2379,7 +2374,7 @@ msgstr "" msgid "Force the removal of running instances" msgstr "" -#: lxc/main.go:95 +#: lxc/main.go:96 msgid "Force using the local unix socket" msgstr "" @@ -2413,10 +2408,10 @@ msgstr "" #: 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/network_peer.go:84 lxc/network_zone.go:89 lxc/network_zone.go:697 #: lxc/operation.go:108 lxc/profile.go:637 lxc/project.go:412 -#: lxc/project.go:804 lxc/remote.go:673 lxc/storage.go:588 -#: lxc/storage_bucket.go:454 lxc/storage_bucket.go:769 +#: lxc/project.go:804 lxc/remote.go:674 lxc/storage.go:588 +#: lxc/storage_bucket.go:459 lxc/storage_bucket.go:774 #: lxc/storage_volume.go:1446 lxc/warning.go:93 msgid "Format (csv|json|table|yaml|compact)" msgstr "" @@ -2453,7 +2448,7 @@ msgstr "" msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)" msgstr "" -#: lxc/remote.go:737 +#: lxc/remote.go:738 msgid "GLOBAL" msgstr "" @@ -2473,7 +2468,7 @@ msgstr "" msgid "Generate manpages for all commands" msgstr "" -#: lxc/remote.go:159 lxc/remote.go:397 +#: lxc/remote.go:160 lxc/remote.go:398 msgid "Generating a client certificate. This may take a minute..." msgstr "" @@ -2505,7 +2500,7 @@ msgstr "" msgid "Get the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:386 +#: lxc/network_load_balancer.go:391 msgid "Get the key as a network load balancer property" msgstr "" @@ -2517,11 +2512,11 @@ msgstr "" msgid "Get the key as a network property" msgstr "" -#: lxc/network_zone.go:214 +#: lxc/network_zone.go:215 msgid "Get the key as a network zone property" msgstr "" -#: lxc/network_zone.go:814 +#: lxc/network_zone.go:819 msgid "Get the key as a network zone record property" msgstr "" @@ -2533,7 +2528,7 @@ msgstr "" msgid "Get the key as a project property" msgstr "" -#: lxc/storage_bucket.go:380 +#: lxc/storage_bucket.go:385 msgid "Get the key as a storage bucket property" msgstr "" @@ -2573,7 +2568,7 @@ msgstr "" msgid "Get values for network forward configuration keys" msgstr "" -#: lxc/network_load_balancer.go:382 lxc/network_load_balancer.go:383 +#: lxc/network_load_balancer.go:387 lxc/network_load_balancer.go:388 msgid "Get values for network load balancer configuration keys" msgstr "" @@ -2581,11 +2576,11 @@ msgstr "" msgid "Get values for network peer configuration keys" msgstr "" -#: lxc/network_zone.go:210 lxc/network_zone.go:211 +#: lxc/network_zone.go:211 lxc/network_zone.go:212 msgid "Get values for network zone configuration keys" msgstr "" -#: lxc/network_zone.go:810 lxc/network_zone.go:811 +#: lxc/network_zone.go:815 lxc/network_zone.go:816 msgid "Get values for network zone record configuration keys" msgstr "" @@ -2597,7 +2592,7 @@ msgstr "" msgid "Get values for project configuration keys" msgstr "" -#: lxc/storage_bucket.go:376 lxc/storage_bucket.go:377 +#: lxc/storage_bucket.go:381 lxc/storage_bucket.go:382 msgid "Get values for storage bucket configuration keys" msgstr "" @@ -2737,7 +2732,7 @@ msgstr "" msgid "If the snapshot name already exists, delete and create a new one" msgstr "" -#: lxc/main.go:398 +#: lxc/main.go:400 msgid "" "If this is your first time running LXD on this machine, you should also run: " "lxd init" @@ -2894,7 +2889,7 @@ msgstr "" msgid "Instance type" msgstr "" -#: lxc/remote.go:349 +#: lxc/remote.go:350 #, c-format msgid "Invalid URL scheme \"%s\" in \"%s\"" msgstr "" @@ -2966,7 +2961,7 @@ msgstr "" msgid "Invalid new snapshot name, parent volume must be the same as source" msgstr "" -#: lxc/main.go:498 +#: lxc/main.go:502 msgid "Invalid number of arguments" msgstr "" @@ -2975,7 +2970,7 @@ msgstr "" msgid "Invalid path %s" msgstr "" -#: lxc/remote.go:338 +#: lxc/remote.go:339 #, c-format msgid "Invalid protocol: %s" msgstr "" @@ -3023,7 +3018,7 @@ msgstr "" #: lxc/list.go:597 lxc/network.go:1059 lxc/network_forward.go:155 #: lxc/network_load_balancer.go:157 lxc/operation.go:177 -#: lxc/storage_bucket.go:511 lxc/storage_volume.go:1569 lxc/warning.go:220 +#: lxc/storage_bucket.go:516 lxc/storage_volume.go:1569 lxc/warning.go:220 msgid "LOCATION" msgstr "" @@ -3031,7 +3026,7 @@ msgstr "" msgid "LXD - Command line client" msgstr "" -#: lxc/console.go:382 +#: lxc/console.go:387 msgid "LXD automatically uses either spicy or remote-viewer when present." msgstr "" @@ -3121,15 +3116,15 @@ msgstr "" msgid "List available network peers" msgstr "" -#: lxc/network_zone.go:85 +#: lxc/network_zone.go:86 msgid "List available network zone" msgstr "" -#: lxc/network_zone.go:688 lxc/network_zone.go:689 +#: lxc/network_zone.go:693 lxc/network_zone.go:694 msgid "List available network zone records" msgstr "" -#: lxc/network_zone.go:84 +#: lxc/network_zone.go:85 msgid "List available network zoneS" msgstr "" @@ -3318,11 +3313,11 @@ msgstr "" msgid "List projects" msgstr "" -#: lxc/storage_bucket.go:766 lxc/storage_bucket.go:768 +#: lxc/storage_bucket.go:771 lxc/storage_bucket.go:773 msgid "List storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:451 lxc/storage_bucket.go:453 +#: lxc/storage_bucket.go:456 lxc/storage_bucket.go:458 msgid "List storage buckets" msgstr "" @@ -3350,7 +3345,7 @@ msgid "" " U - Current disk usage" msgstr "" -#: lxc/remote.go:668 lxc/remote.go:669 +#: lxc/remote.go:669 lxc/remote.go:670 msgid "List the available remotes" msgstr "" @@ -3577,11 +3572,11 @@ msgstr "" msgid "Manage network forwards" msgstr "" -#: lxc/network_load_balancer.go:782 lxc/network_load_balancer.go:783 +#: lxc/network_load_balancer.go:787 lxc/network_load_balancer.go:788 msgid "Manage network load balancer backends" msgstr "" -#: lxc/network_load_balancer.go:947 lxc/network_load_balancer.go:948 +#: lxc/network_load_balancer.go:952 lxc/network_load_balancer.go:953 msgid "Manage network load balancer ports" msgstr "" @@ -3593,15 +3588,15 @@ msgstr "" msgid "Manage network peerings" msgstr "" -#: lxc/network_zone.go:1224 lxc/network_zone.go:1225 +#: lxc/network_zone.go:1229 lxc/network_zone.go:1230 msgid "Manage network zone record entries" msgstr "" -#: lxc/network_zone.go:631 lxc/network_zone.go:632 +#: lxc/network_zone.go:636 lxc/network_zone.go:637 msgid "Manage network zone records" msgstr "" -#: lxc/network_zone.go:27 lxc/network_zone.go:28 +#: lxc/network_zone.go:28 lxc/network_zone.go:29 msgid "Manage network zones" msgstr "" @@ -3617,11 +3612,11 @@ msgstr "" msgid "Manage projects" msgstr "" -#: lxc/storage_bucket.go:726 +#: lxc/storage_bucket.go:731 msgid "Manage storage bucket keys" msgstr "" -#: lxc/storage_bucket.go:727 +#: lxc/storage_bucket.go:732 msgid "Manage storage bucket keys." msgstr "" @@ -3649,7 +3644,7 @@ msgid "" "\"custom\" (user created) volumes." msgstr "" -#: lxc/remote.go:33 lxc/remote.go:34 +#: lxc/remote.go:34 lxc/remote.go:35 msgid "Manage the list of remote servers" msgstr "" @@ -3730,12 +3725,12 @@ msgid "" "Minimum level for log messages (only available when using pretty format)" msgstr "" -#: lxc/storage_bucket.go:111 lxc/storage_bucket.go:211 -#: lxc/storage_bucket.go:287 lxc/storage_bucket.go:406 -#: lxc/storage_bucket.go:563 lxc/storage_bucket.go:655 -#: lxc/storage_bucket.go:797 lxc/storage_bucket.go:878 -#: lxc/storage_bucket.go:953 lxc/storage_bucket.go:1032 -#: lxc/storage_bucket.go:1155 +#: lxc/storage_bucket.go:116 lxc/storage_bucket.go:216 +#: lxc/storage_bucket.go:292 lxc/storage_bucket.go:411 +#: lxc/storage_bucket.go:568 lxc/storage_bucket.go:660 +#: lxc/storage_bucket.go:802 lxc/storage_bucket.go:883 +#: lxc/storage_bucket.go:958 lxc/storage_bucket.go:1037 +#: lxc/storage_bucket.go:1160 msgid "Missing bucket name" msgstr "" @@ -3779,8 +3774,8 @@ msgstr "" msgid "Missing instance name" msgstr "" -#: lxc/storage_bucket.go:882 lxc/storage_bucket.go:957 -#: lxc/storage_bucket.go:1036 lxc/storage_bucket.go:1159 +#: lxc/storage_bucket.go:887 lxc/storage_bucket.go:962 +#: lxc/storage_bucket.go:1041 lxc/storage_bucket.go:1164 msgid "Missing key name" msgstr "" @@ -3788,10 +3783,10 @@ msgstr "" #: lxc/network_forward.go:481 lxc/network_forward.go:627 #: lxc/network_forward.go:746 lxc/network_forward.go:823 #: lxc/network_forward.go:889 lxc/network_load_balancer.go:201 -#: lxc/network_load_balancer.go:411 lxc/network_load_balancer.go:484 -#: lxc/network_load_balancer.go:630 lxc/network_load_balancer.go:750 -#: lxc/network_load_balancer.go:826 lxc/network_load_balancer.go:890 -#: lxc/network_load_balancer.go:991 lxc/network_load_balancer.go:1053 +#: lxc/network_load_balancer.go:416 lxc/network_load_balancer.go:489 +#: lxc/network_load_balancer.go:635 lxc/network_load_balancer.go:755 +#: lxc/network_load_balancer.go:831 lxc/network_load_balancer.go:895 +#: lxc/network_load_balancer.go:996 lxc/network_load_balancer.go:1058 msgid "Missing listen address" msgstr "" @@ -3816,26 +3811,26 @@ msgstr "" #: lxc/network_forward.go:477 lxc/network_forward.go:623 #: lxc/network_forward.go:742 lxc/network_forward.go:819 #: lxc/network_forward.go:885 lxc/network_load_balancer.go:123 -#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:261 -#: lxc/network_load_balancer.go:407 lxc/network_load_balancer.go:480 -#: lxc/network_load_balancer.go:626 lxc/network_load_balancer.go:746 -#: lxc/network_load_balancer.go:822 lxc/network_load_balancer.go:886 -#: lxc/network_load_balancer.go:987 lxc/network_load_balancer.go:1049 +#: lxc/network_load_balancer.go:197 lxc/network_load_balancer.go:266 +#: lxc/network_load_balancer.go:412 lxc/network_load_balancer.go:485 +#: lxc/network_load_balancer.go:631 lxc/network_load_balancer.go:751 +#: lxc/network_load_balancer.go:827 lxc/network_load_balancer.go:891 +#: lxc/network_load_balancer.go:992 lxc/network_load_balancer.go:1054 #: lxc/network_peer.go:110 lxc/network_peer.go:180 lxc/network_peer.go:237 #: lxc/network_peer.go:355 lxc/network_peer.go:426 lxc/network_peer.go:556 #: lxc/network_peer.go:665 msgid "Missing network name" msgstr "" -#: lxc/network_zone.go:178 lxc/network_zone.go:234 lxc/network_zone.go:294 -#: lxc/network_zone.go:382 lxc/network_zone.go:503 lxc/network_zone.go:606 -#: lxc/network_zone.go:712 lxc/network_zone.go:780 lxc/network_zone.go:892 -#: lxc/network_zone.go:976 lxc/network_zone.go:1197 lxc/network_zone.go:1262 -#: lxc/network_zone.go:1307 +#: lxc/network_zone.go:179 lxc/network_zone.go:235 lxc/network_zone.go:299 +#: lxc/network_zone.go:387 lxc/network_zone.go:508 lxc/network_zone.go:611 +#: lxc/network_zone.go:717 lxc/network_zone.go:785 lxc/network_zone.go:897 +#: lxc/network_zone.go:981 lxc/network_zone.go:1202 lxc/network_zone.go:1267 +#: lxc/network_zone.go:1312 msgid "Missing network zone name" msgstr "" -#: lxc/network_zone.go:833 lxc/network_zone.go:1095 +#: lxc/network_zone.go:838 lxc/network_zone.go:1100 msgid "Missing network zone record name" msgstr "" @@ -3845,13 +3840,13 @@ msgid "Missing peer name" msgstr "" #: lxc/storage.go:194 lxc/storage.go:264 lxc/storage.go:370 lxc/storage.go:440 -#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:107 -#: lxc/storage_bucket.go:207 lxc/storage_bucket.go:283 -#: lxc/storage_bucket.go:402 lxc/storage_bucket.go:477 -#: lxc/storage_bucket.go:559 lxc/storage_bucket.go:651 -#: lxc/storage_bucket.go:793 lxc/storage_bucket.go:874 -#: lxc/storage_bucket.go:949 lxc/storage_bucket.go:1028 -#: lxc/storage_bucket.go:1151 lxc/storage_volume.go:189 +#: lxc/storage.go:695 lxc/storage.go:793 lxc/storage_bucket.go:112 +#: lxc/storage_bucket.go:212 lxc/storage_bucket.go:288 +#: lxc/storage_bucket.go:407 lxc/storage_bucket.go:482 +#: lxc/storage_bucket.go:564 lxc/storage_bucket.go:656 +#: lxc/storage_bucket.go:798 lxc/storage_bucket.go:879 +#: lxc/storage_bucket.go:954 lxc/storage_bucket.go:1033 +#: lxc/storage_bucket.go:1156 lxc/storage_volume.go:189 #: lxc/storage_volume.go:287 lxc/storage_volume.go:583 #: lxc/storage_volume.go:660 lxc/storage_volume.go:735 #: lxc/storage_volume.go:817 lxc/storage_volume.go:919 @@ -3971,7 +3966,7 @@ msgstr "" msgid "Moving the storage volume: %s" msgstr "" -#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1097 +#: lxc/network_forward.go:933 lxc/network_load_balancer.go:1102 msgid "Multiple ports match. Use --force to remove them all" msgstr "" @@ -3990,10 +3985,10 @@ 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:677 lxc/project.go:498 -#: lxc/remote.go:731 lxc/storage.go:638 lxc/storage_bucket.go:506 -#: lxc/storage_bucket.go:826 lxc/storage_volume.go:1561 +#: lxc/network_acl.go:147 lxc/network_peer.go:139 lxc/network_zone.go:139 +#: lxc/network_zone.go:746 lxc/profile.go:677 lxc/project.go:498 +#: lxc/remote.go:732 lxc/storage.go:638 lxc/storage_bucket.go:511 +#: lxc/storage_bucket.go:831 lxc/storage_volume.go:1561 msgid "NAME" msgstr "" @@ -4019,7 +4014,7 @@ msgstr "" #: lxc/network.go:957 lxc/operation.go:154 lxc/project.go:456 #: lxc/project.go:461 lxc/project.go:466 lxc/project.go:471 lxc/project.go:476 -#: lxc/project.go:481 lxc/remote.go:691 lxc/remote.go:696 lxc/remote.go:701 +#: lxc/project.go:481 lxc/remote.go:692 lxc/remote.go:697 lxc/remote.go:702 msgid "NO" msgstr "" @@ -4046,7 +4041,7 @@ msgstr "" msgid "Name" msgstr "" -#: lxc/remote.go:141 +#: lxc/remote.go:142 msgid "Name of the project to use for this remote:" msgstr "" @@ -4095,12 +4090,12 @@ msgstr "" msgid "Network ACL %s renamed to %s" msgstr "" -#: lxc/network_zone.go:336 +#: lxc/network_zone.go:341 #, c-format msgid "Network Zone %s created" msgstr "" -#: lxc/network_zone.go:616 +#: lxc/network_zone.go:621 #, c-format msgid "Network Zone %s deleted" msgstr "" @@ -4115,12 +4110,12 @@ msgstr "" msgid "Network forward %s deleted" msgstr "" -#: lxc/network_load_balancer.go:365 +#: lxc/network_load_balancer.go:370 #, c-format msgid "Network load balancer %s created" msgstr "" -#: lxc/network_load_balancer.go:767 +#: lxc/network_load_balancer.go:772 #, c-format msgid "Network load balancer %s deleted" msgstr "" @@ -4158,12 +4153,12 @@ msgstr "" msgid "Network usage:" msgstr "" -#: lxc/network_zone.go:934 +#: lxc/network_zone.go:939 #, c-format msgid "Network zone record %s created" msgstr "" -#: lxc/network_zone.go:1207 +#: lxc/network_zone.go:1212 #, c-format msgid "Network zone record %s deleted" msgstr "" @@ -4198,11 +4193,11 @@ msgstr "" msgid "No device found for this storage volume" msgstr "" -#: lxc/network_load_balancer.go:921 +#: lxc/network_load_balancer.go:926 msgid "No matching backend found" msgstr "" -#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1108 +#: lxc/network_forward.go:944 lxc/network_load_balancer.go:1113 msgid "No matching port(s) found" msgstr "" @@ -4248,7 +4243,7 @@ msgstr "" msgid "Only \"custom\" volumes can be snapshotted" msgstr "" -#: lxc/remote.go:332 +#: lxc/remote.go:333 msgid "Only https URLs are supported for simplestreams" msgstr "" @@ -4273,7 +4268,7 @@ msgstr "" msgid "Optimized Storage" msgstr "" -#: lxc/main.go:96 +#: lxc/main.go:97 msgid "Override the source project" msgstr "" @@ -4319,11 +4314,11 @@ msgstr "" msgid "PROJECT" msgstr "" -#: lxc/remote.go:733 +#: lxc/remote.go:734 msgid "PROTOCOL" msgstr "" -#: lxc/image.go:1073 lxc/remote.go:735 +#: lxc/image.go:1073 lxc/remote.go:736 msgid "PUBLIC" msgstr "" @@ -4339,7 +4334,7 @@ msgstr "" msgid "Partitions:" msgstr "" -#: lxc/main.go:361 +#: lxc/main.go:363 #, c-format msgid "Password for %s: " msgstr "" @@ -4352,7 +4347,7 @@ msgstr "" msgid "Perform an incremental copy" msgstr "" -#: lxc/remote.go:182 +#: lxc/remote.go:183 msgid "Please provide an alternate server address (empty to abort):" msgstr "" @@ -4364,7 +4359,7 @@ msgstr "" msgid "Please provide cluster member name: " msgstr "" -#: lxc/remote.go:462 +#: lxc/remote.go:463 msgid "Please type 'y', 'n' or the fingerprint:" msgstr "" @@ -4386,10 +4381,10 @@ msgstr "" #: lxc/config.go:1278 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/network_load_balancer.go:695 lxc/network_peer.go:611 +#: lxc/network_zone.go:557 lxc/network_zone.go:1149 lxc/profile.go:539 +#: lxc/project.go:316 lxc/storage.go:311 lxc/storage_bucket.go:349 +#: lxc/storage_bucket.go:1098 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 "" @@ -4398,7 +4393,7 @@ msgstr "" msgid "Pretty rendering (short for --format=pretty)" msgstr "" -#: lxc/main.go:94 +#: lxc/main.go:95 msgid "Print help" msgstr "" @@ -4406,7 +4401,7 @@ msgstr "" msgid "Print the raw response" msgstr "" -#: lxc/main.go:93 +#: lxc/main.go:94 msgid "Print version number" msgstr "" @@ -4495,7 +4490,7 @@ msgstr "" msgid "Project %s renamed to %s" msgstr "" -#: lxc/remote.go:106 +#: lxc/remote.go:107 msgid "Project to use for the remote" msgstr "" @@ -4593,7 +4588,7 @@ msgid "" "pool \"default\"." msgstr "" -#: lxc/remote.go:105 +#: lxc/remote.go:106 msgid "Public image server" msgstr "" @@ -4641,7 +4636,7 @@ msgstr "" msgid "RESOURCE" msgstr "" -#: lxc/storage_bucket.go:828 +#: lxc/storage_bucket.go:833 msgid "ROLE" msgstr "" @@ -4684,45 +4679,45 @@ msgstr "" msgid "Refreshing the image: %s" msgstr "" -#: lxc/remote.go:785 +#: lxc/remote.go:786 #, c-format msgid "Remote %s already exists" msgstr "" -#: lxc/project.go:769 lxc/remote.go:776 lxc/remote.go:849 lxc/remote.go:905 -#: lxc/remote.go:945 +#: lxc/project.go:769 lxc/remote.go:777 lxc/remote.go:850 lxc/remote.go:906 +#: lxc/remote.go:946 #, c-format msgid "Remote %s doesn't exist" msgstr "" -#: lxc/remote.go:301 +#: lxc/remote.go:302 #, c-format msgid "Remote %s exists as <%s>" msgstr "" -#: lxc/remote.go:857 +#: lxc/remote.go:858 #, c-format msgid "Remote %s is global and cannot be removed" msgstr "" -#: lxc/remote.go:780 lxc/remote.go:853 lxc/remote.go:949 +#: lxc/remote.go:781 lxc/remote.go:854 lxc/remote.go:950 #, c-format msgid "Remote %s is static and cannot be modified" msgstr "" -#: lxc/remote.go:290 +#: lxc/remote.go:291 msgid "Remote address must not be empty" msgstr "" -#: lxc/remote.go:101 +#: lxc/remote.go:102 msgid "Remote admin password" msgstr "" -#: lxc/remote.go:295 +#: lxc/remote.go:296 msgid "Remote names may not contain colons" msgstr "" -#: lxc/remote.go:102 +#: lxc/remote.go:103 msgid "Remote trust token" msgstr "" @@ -4748,7 +4743,7 @@ msgstr "" msgid "Remove a member from the cluster" msgstr "" -#: lxc/network_zone.go:1285 +#: lxc/network_zone.go:1290 msgid "Remove a network zone record entry" msgstr "" @@ -4756,7 +4751,7 @@ msgstr "" msgid "Remove aliases" msgstr "" -#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1025 +#: lxc/network_forward.go:861 lxc/network_load_balancer.go:1030 msgid "Remove all ports that match" msgstr "" @@ -4764,15 +4759,15 @@ msgstr "" msgid "Remove all rules that match" msgstr "" -#: lxc/network_load_balancer.go:862 +#: lxc/network_load_balancer.go:867 msgid "Remove backend from a load balancer" msgstr "" -#: lxc/network_load_balancer.go:861 +#: lxc/network_load_balancer.go:866 msgid "Remove backends from a load balancer" msgstr "" -#: lxc/network_zone.go:1286 +#: lxc/network_zone.go:1291 msgid "Remove entries from a network zone record" msgstr "" @@ -4796,7 +4791,7 @@ msgstr "" msgid "Remove ports from a forward" msgstr "" -#: lxc/network_load_balancer.go:1023 lxc/network_load_balancer.go:1024 +#: lxc/network_load_balancer.go:1028 lxc/network_load_balancer.go:1029 msgid "Remove ports from a load balancer" msgstr "" @@ -4804,7 +4799,7 @@ msgstr "" msgid "Remove profiles from instances" msgstr "" -#: lxc/remote.go:827 lxc/remote.go:828 +#: lxc/remote.go:828 lxc/remote.go:829 msgid "Remove remotes" msgstr "" @@ -4861,7 +4856,7 @@ msgstr "" msgid "Rename projects" msgstr "" -#: lxc/remote.go:754 lxc/remote.go:755 +#: lxc/remote.go:755 lxc/remote.go:756 msgid "Rename remotes" msgstr "" @@ -4939,7 +4934,7 @@ msgid "Restrict the certificate to one or more projects" msgstr "" #: lxc/console.go:44 -msgid "Retrieve the instance's console log" +msgid "Retrieve the container's console log" msgstr "" #: lxc/init.go:347 @@ -4955,7 +4950,7 @@ msgstr "" msgid "Revoke cluster member join token" msgstr "" -#: lxc/storage_bucket.go:851 +#: lxc/storage_bucket.go:856 msgid "Role (admin or read-only)" msgstr "" @@ -5006,7 +5001,7 @@ msgstr "" msgid "STATE" msgstr "" -#: lxc/remote.go:736 +#: lxc/remote.go:737 msgid "STATIC" msgstr "" @@ -5030,11 +5025,11 @@ msgstr "" msgid "STP" msgstr "" -#: lxc/storage_bucket.go:853 +#: lxc/storage_bucket.go:858 msgid "Secret key (auto-generated if empty)" msgstr "" -#: lxc/storage_bucket.go:909 +#: lxc/storage_bucket.go:914 #, c-format msgid "Secret key: %s" msgstr "" @@ -5043,19 +5038,19 @@ msgstr "" msgid "Send a raw query to LXD" msgstr "" -#: lxc/remote.go:104 +#: lxc/remote.go:105 msgid "Server authentication type (tls or oidc)" msgstr "" -#: lxc/remote.go:460 +#: lxc/remote.go:461 msgid "Server certificate NACKed by user" msgstr "" -#: lxc/remote.go:599 +#: lxc/remote.go:600 msgid "Server doesn't trust us after authentication" msgstr "" -#: lxc/remote.go:103 +#: lxc/remote.go:104 msgid "Server protocol (lxd or simplestreams)" msgstr "" @@ -5154,11 +5149,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_load_balancer.go:450 +#: lxc/network_load_balancer.go:455 msgid "Set network load balancer keys" msgstr "" -#: lxc/network_load_balancer.go:451 +#: lxc/network_load_balancer.go:456 msgid "" "Set network load balancer keys\n" "\n" @@ -5180,11 +5175,11 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:353 +#: lxc/network_zone.go:358 msgid "Set network zone configuration keys" msgstr "" -#: lxc/network_zone.go:354 +#: lxc/network_zone.go:359 msgid "" "Set network zone configuration keys\n" "\n" @@ -5193,7 +5188,7 @@ msgid "" " lxc network set [:] " msgstr "" -#: lxc/network_zone.go:951 lxc/network_zone.go:952 +#: lxc/network_zone.go:956 lxc/network_zone.go:957 msgid "Set network zone record configuration keys" msgstr "" @@ -5223,11 +5218,11 @@ msgid "" " lxc project set [:] " msgstr "" -#: lxc/storage_bucket.go:529 +#: lxc/storage_bucket.go:534 msgid "Set storage bucket configuration keys" msgstr "" -#: lxc/storage_bucket.go:530 +#: lxc/storage_bucket.go:535 msgid "" "Set storage bucket configuration keys\n" "\n" @@ -5262,7 +5257,7 @@ msgid "" " lxc storage volume set [:] [/] " msgstr "" -#: lxc/remote.go:923 lxc/remote.go:924 +#: lxc/remote.go:924 lxc/remote.go:925 msgid "Set the URL for the remote" msgstr "" @@ -5290,7 +5285,7 @@ msgstr "" msgid "Set the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:458 +#: lxc/network_load_balancer.go:463 msgid "Set the key as a network load balancer property" msgstr "" @@ -5302,11 +5297,11 @@ msgstr "" msgid "Set the key as a network property" msgstr "" -#: lxc/network_zone.go:361 +#: lxc/network_zone.go:366 msgid "Set the key as a network zone property" msgstr "" -#: lxc/network_zone.go:957 +#: lxc/network_zone.go:962 msgid "Set the key as a network zone record property" msgstr "" @@ -5318,7 +5313,7 @@ msgstr "" msgid "Set the key as a project property" msgstr "" -#: lxc/storage_bucket.go:537 +#: lxc/storage_bucket.go:542 msgid "Set the key as a storage bucket property" msgstr "" @@ -5338,11 +5333,11 @@ msgstr "" msgid "Setup SSH SFTP listener on address:port instead of mounting" msgstr "" -#: lxc/main.go:97 +#: lxc/main.go:98 msgid "Show all debug messages" msgstr "" -#: lxc/main.go:98 +#: lxc/main.go:99 msgid "Show all information messages" msgstr "" @@ -5411,7 +5406,7 @@ msgstr "" msgid "Show instance or server information" msgstr "" -#: lxc/main.go:271 lxc/main.go:272 +#: lxc/main.go:272 lxc/main.go:273 msgid "Show less common commands" msgstr "" @@ -5443,15 +5438,15 @@ msgstr "" msgid "Show network peer configurations" msgstr "" -#: lxc/network_zone.go:155 lxc/network_zone.go:156 +#: lxc/network_zone.go:156 lxc/network_zone.go:157 msgid "Show network zone configurations" msgstr "" -#: lxc/network_zone.go:758 +#: lxc/network_zone.go:763 msgid "Show network zone record configuration" msgstr "" -#: lxc/network_zone.go:759 +#: lxc/network_zone.go:764 msgid "Show network zone record configurations" msgstr "" @@ -5463,11 +5458,11 @@ msgstr "" msgid "Show project options" msgstr "" -#: lxc/storage_bucket.go:623 lxc/storage_bucket.go:624 +#: lxc/storage_bucket.go:628 lxc/storage_bucket.go:629 msgid "Show storage bucket configurations" msgstr "" -#: lxc/storage_bucket.go:1123 lxc/storage_bucket.go:1124 +#: lxc/storage_bucket.go:1128 lxc/storage_bucket.go:1129 msgid "Show storage bucket key configurations" msgstr "" @@ -5493,7 +5488,7 @@ msgid "" "that are granted via identity provider group mappings. \n" msgstr "" -#: lxc/remote.go:630 lxc/remote.go:631 +#: lxc/remote.go:631 lxc/remote.go:632 msgid "Show the default remote" msgstr "" @@ -5617,22 +5612,22 @@ msgstr "" msgid "Stopping the instance failed: %s" msgstr "" -#: lxc/storage_bucket.go:161 +#: lxc/storage_bucket.go:166 #, c-format msgid "Storage bucket %s created" msgstr "" -#: lxc/storage_bucket.go:228 +#: lxc/storage_bucket.go:233 #, c-format msgid "Storage bucket %s deleted" msgstr "" -#: lxc/storage_bucket.go:907 +#: lxc/storage_bucket.go:912 #, c-format msgid "Storage bucket key %s added" msgstr "" -#: lxc/storage_bucket.go:973 +#: lxc/storage_bucket.go:978 #, c-format msgid "Storage bucket key %s removed" msgstr "" @@ -5705,7 +5700,7 @@ msgstr "" msgid "Switch the current project" msgstr "" -#: lxc/remote.go:883 lxc/remote.go:884 +#: lxc/remote.go:884 lxc/remote.go:885 msgid "Switch the default remote" msgstr "" @@ -5820,7 +5815,7 @@ msgstr "" msgid "The property %q does not exist on the instance snapshot %s/%s: %v" msgstr "" -#: lxc/network_load_balancer.go:424 +#: lxc/network_load_balancer.go:429 #, c-format msgid "The property %q does not exist on the load balancer %q: %v" msgstr "" @@ -5845,12 +5840,12 @@ msgstr "" msgid "The property %q does not exist on the network peer %q: %v" msgstr "" -#: lxc/network_zone.go:246 +#: lxc/network_zone.go:247 #, c-format msgid "The property %q does not exist on the network zone %q: %v" msgstr "" -#: lxc/network_zone.go:845 +#: lxc/network_zone.go:850 #, c-format msgid "The property %q does not exist on the network zone record %q: %v" msgstr "" @@ -5865,7 +5860,7 @@ msgstr "" msgid "The property %q does not exist on the project %q: %v" msgstr "" -#: lxc/storage_bucket.go:426 +#: lxc/storage_bucket.go:431 #, c-format msgid "The property %q does not exist on the storage bucket %q: %v" msgstr "" @@ -5919,7 +5914,7 @@ msgstr "" msgid "This LXD server is not available on the network" msgstr "" -#: lxc/main.go:293 +#: lxc/main.go:294 msgid "" "This client hasn't been configured to use a remote LXD server yet.\n" "As your platform can't run native Linux instances, you must connect to a " @@ -5951,11 +5946,11 @@ msgstr "" msgid "To create a new network, use: lxc network create" msgstr "" -#: lxc/console.go:210 +#: lxc/console.go:215 msgid "To detach from the console, press: +a q" msgstr "" -#: lxc/main.go:403 +#: lxc/main.go:406 msgid "" "To start your first container, try: lxc launch ubuntu:24.04\n" "Or for a virtual machine: lxc launch ubuntu:24.04 --vm" @@ -6053,7 +6048,7 @@ msgstr "" msgid "UPLOAD DATE" msgstr "" -#: lxc/cluster.go:184 lxc/remote.go:732 +#: lxc/cluster.go:184 lxc/remote.go:733 msgid "URL" msgstr "" @@ -6062,7 +6057,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:679 lxc/project.go:506 +#: lxc/network_zone.go:141 lxc/profile.go:679 lxc/project.go:506 #: lxc/storage.go:647 lxc/storage_volume.go:1564 msgid "USED BY" msgstr "" @@ -6081,7 +6076,7 @@ msgstr "" msgid "Unable to create a temporary file: %v" msgstr "" -#: lxc/remote.go:213 lxc/remote.go:247 +#: lxc/remote.go:214 lxc/remote.go:248 msgid "Unavailable remote server" msgstr "" @@ -6101,7 +6096,7 @@ msgstr "" msgid "Unknown column shorthand char '%c' in '%s'" msgstr "" -#: lxc/console.go:159 +#: lxc/console.go:164 #, c-format msgid "Unknown console type %q" msgstr "" @@ -6161,11 +6156,11 @@ msgstr "" msgid "Unset network forward keys" msgstr "" -#: lxc/network_load_balancer.go:548 +#: lxc/network_load_balancer.go:553 msgid "Unset network load balancer configuration keys" msgstr "" -#: lxc/network_load_balancer.go:549 +#: lxc/network_load_balancer.go:554 msgid "Unset network load balancer keys" msgstr "" @@ -6177,11 +6172,11 @@ msgstr "" msgid "Unset network peer keys" msgstr "" -#: lxc/network_zone.go:433 lxc/network_zone.go:434 +#: lxc/network_zone.go:438 lxc/network_zone.go:439 msgid "Unset network zone configuration keys" msgstr "" -#: lxc/network_zone.go:1027 lxc/network_zone.go:1028 +#: lxc/network_zone.go:1032 lxc/network_zone.go:1033 msgid "Unset network zone record configuration keys" msgstr "" @@ -6193,7 +6188,7 @@ msgstr "" msgid "Unset project configuration keys" msgstr "" -#: lxc/storage_bucket.go:692 lxc/storage_bucket.go:693 +#: lxc/storage_bucket.go:697 lxc/storage_bucket.go:698 msgid "Unset storage bucket configuration keys" msgstr "" @@ -6217,7 +6212,7 @@ msgstr "" msgid "Unset the key as a network forward property" msgstr "" -#: lxc/network_load_balancer.go:552 +#: lxc/network_load_balancer.go:557 msgid "Unset the key as a network load balancer property" msgstr "" @@ -6229,11 +6224,11 @@ msgstr "" msgid "Unset the key as a network property" msgstr "" -#: lxc/network_zone.go:437 +#: lxc/network_zone.go:442 msgid "Unset the key as a network zone property" msgstr "" -#: lxc/network_zone.go:1031 +#: lxc/network_zone.go:1036 msgid "Unset the key as a network zone record property" msgstr "" @@ -6245,7 +6240,7 @@ msgstr "" msgid "Unset the key as a project property" msgstr "" -#: lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:701 msgid "Unset the key as a storage bucket property" msgstr "" @@ -6307,7 +6302,7 @@ msgid "" "Use storage driver optimized format (can only be restored on a similar pool)" msgstr "" -#: lxc/main.go:100 +#: lxc/main.go:101 msgid "Use with help or --help to view sub-commands" msgstr "" @@ -6404,7 +6399,7 @@ msgstr "" #: lxc/network.go:959 lxc/operation.go:156 lxc/project.go:458 #: lxc/project.go:463 lxc/project.go:468 lxc/project.go:473 lxc/project.go:478 -#: lxc/project.go:483 lxc/remote.go:693 lxc/remote.go:698 lxc/remote.go:703 +#: lxc/project.go:483 lxc/remote.go:694 lxc/remote.go:699 lxc/remote.go:704 msgid "YES" msgstr "" @@ -6439,7 +6434,7 @@ 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/network.go:909 lxc/network_acl.go:91 lxc/network_zone.go:83 #: 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 "[:]" @@ -6502,19 +6497,19 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:154 lxc/network_zone.go:463 lxc/network_zone.go:581 +#: lxc/network_zone.go:155 lxc/network_zone.go:468 lxc/network_zone.go:586 msgid "[:]" msgstr "" -#: lxc/network_zone.go:209 lxc/network_zone.go:432 +#: lxc/network_zone.go:210 lxc/network_zone.go:437 msgid "[:] " msgstr "" -#: lxc/network_zone.go:352 +#: lxc/network_zone.go:357 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:269 +#: lxc/network_zone.go:270 msgid "[:] [key=value...]" msgstr "" @@ -6760,30 +6755,30 @@ msgstr "" #: lxc/network_forward.go:169 lxc/network_forward.go:574 #: lxc/network_forward.go:715 lxc/network_load_balancer.go:171 -#: lxc/network_load_balancer.go:577 lxc/network_load_balancer.go:719 +#: lxc/network_load_balancer.go:582 lxc/network_load_balancer.go:724 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:860 +#: lxc/network_load_balancer.go:865 msgid "[:] " msgstr "" -#: lxc/network_load_balancer.go:796 +#: lxc/network_load_balancer.go:801 msgid "" "[:] " "[]" msgstr "" #: lxc/network_forward.go:377 lxc/network_forward.go:544 -#: lxc/network_load_balancer.go:381 lxc/network_load_balancer.go:547 +#: lxc/network_load_balancer.go:386 lxc/network_load_balancer.go:552 msgid "[:] " msgstr "" -#: lxc/network_forward.go:446 lxc/network_load_balancer.go:449 +#: lxc/network_forward.go:446 lxc/network_load_balancer.go:454 msgid "[:] =..." msgstr "" -#: lxc/network_load_balancer.go:961 +#: lxc/network_load_balancer.go:966 msgid "" "[:] " "[,...]" @@ -6795,7 +6790,7 @@ msgid "" " []" msgstr "" -#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1022 +#: lxc/network_forward.go:858 lxc/network_load_balancer.go:1027 msgid "[:] [] []" msgstr "" @@ -6846,7 +6841,7 @@ msgid "[:]" msgstr "" #: lxc/storage.go:167 lxc/storage.go:218 lxc/storage.go:412 lxc/storage.go:759 -#: lxc/storage_bucket.go:449 +#: lxc/storage_bucket.go:454 msgid "[:]" msgstr "" @@ -6854,18 +6849,18 @@ msgstr "" msgid "[:] []" msgstr "" -#: lxc/storage_bucket.go:180 lxc/storage_bucket.go:242 -#: lxc/storage_bucket.go:622 lxc/storage_bucket.go:764 +#: lxc/storage_bucket.go:185 lxc/storage_bucket.go:247 +#: lxc/storage_bucket.go:627 lxc/storage_bucket.go:769 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:375 lxc/storage_bucket.go:691 -#: lxc/storage_bucket.go:845 lxc/storage_bucket.go:923 -#: lxc/storage_bucket.go:987 lxc/storage_bucket.go:1122 +#: lxc/storage_bucket.go:380 lxc/storage_bucket.go:696 +#: lxc/storage_bucket.go:850 lxc/storage_bucket.go:928 +#: lxc/storage_bucket.go:992 lxc/storage_bucket.go:1127 msgid "[:] " msgstr "" -#: lxc/storage_bucket.go:528 +#: lxc/storage_bucket.go:533 msgid "[:] =..." msgstr "" @@ -7009,27 +7004,27 @@ msgstr "" msgid "[:]" msgstr "" -#: lxc/network_zone.go:686 +#: lxc/network_zone.go:691 msgid "[:]" msgstr "" -#: lxc/network_zone.go:757 lxc/network_zone.go:1056 lxc/network_zone.go:1173 +#: lxc/network_zone.go:762 lxc/network_zone.go:1061 lxc/network_zone.go:1178 msgid "[:] " msgstr "" -#: lxc/network_zone.go:809 lxc/network_zone.go:1026 +#: lxc/network_zone.go:814 lxc/network_zone.go:1031 msgid "[:] " msgstr "" -#: lxc/network_zone.go:950 +#: lxc/network_zone.go:955 msgid "[:] =..." msgstr "" -#: lxc/network_zone.go:1238 lxc/network_zone.go:1284 +#: lxc/network_zone.go:1243 lxc/network_zone.go:1289 msgid "[:] " msgstr "" -#: lxc/network_zone.go:868 +#: lxc/network_zone.go:873 msgid "[:] [key=value...]" msgstr "" @@ -7053,7 +7048,7 @@ msgstr "" msgid "[:][] [...]" msgstr "" -#: lxc/remote.go:88 +#: lxc/remote.go:89 msgid "[] " msgstr "" @@ -7061,7 +7056,7 @@ msgstr "" msgid "[[:]]" msgstr "" -#: lxc/project.go:488 lxc/remote.go:722 +#: lxc/project.go:488 lxc/remote.go:723 msgid "current" msgstr "" @@ -7324,6 +7319,23 @@ msgid "" " Create a new OVN network called bar using baz as its uplink network" msgstr "" +#: lxc/network_load_balancer.go:239 +msgid "" +"lxc network load-balancer create n1 127.0.0.1\n" +"\n" +"lxc network load-balancer create n1 127.0.0.1 < config.yaml\n" +" Create network load-balancer for network n1 with configuration from " +"config.yaml" +msgstr "" + +#: lxc/network_zone.go:273 +msgid "" +"lxc network zone create z1\n" +"\n" +"lxc network zone create z1 < config.yaml\n" +" Create network zone z1 with configuration from config.yaml" +msgstr "" + #: lxc/operation.go:195 msgid "" "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n" @@ -7394,26 +7406,36 @@ msgid "" " Restore the snapshot." msgstr "" -#: lxc/storage_bucket.go:245 +#: lxc/storage_bucket.go:84 +msgid "" +"lxc storage bucket create p1 b01\n" +"\tCreate a new storage bucket name b01 in storage pool p1\n" +"\n" +"lxc storage bucket create p1 b01 < config.yaml\n" +"\tCreate a new storage bucket name b01 in storage pool p1 using the content " +"of config.yaml" +msgstr "" + +#: lxc/storage_bucket.go:250 msgid "" "lxc storage bucket edit [:] < bucket.yaml\n" " Update a storage bucket using the content of bucket.yaml." msgstr "" -#: lxc/storage_bucket.go:990 +#: lxc/storage_bucket.go:995 msgid "" "lxc storage bucket edit [:] < key.yaml\n" " Update a storage bucket key using the content of key.yaml." msgstr "" -#: lxc/storage_bucket.go:1125 +#: lxc/storage_bucket.go:1130 msgid "" "lxc storage bucket key show default data foo\n" " Will show the properties of a bucket key called \"foo\" for a bucket " "called \"data\" in the \"default\" pool." msgstr "" -#: lxc/storage_bucket.go:625 +#: lxc/storage_bucket.go:630 msgid "" "lxc storage bucket show default data\n" " Will show the properties of a bucket called \"data\" in the \"default\" " @@ -7432,7 +7454,7 @@ msgid "" "\t\tCreate a new custom volume using backup0.tar.gz as the source." msgstr "" -#: lxc/remote.go:459 +#: lxc/remote.go:460 msgid "n" msgstr "" @@ -7444,7 +7466,7 @@ msgstr "" msgid "no" msgstr "" -#: lxc/remote.go:452 +#: lxc/remote.go:453 msgid "ok (y/n/[fingerprint])?" msgstr "" @@ -7481,7 +7503,7 @@ msgstr "" msgid "used by" msgstr "" -#: lxc/remote.go:461 +#: lxc/remote.go:462 msgid "y" msgstr "" diff --git a/shared/api/error.go b/shared/api/error.go index edee18d2479e..c2eb902bfd48 100644 --- a/shared/api/error.go +++ b/shared/api/error.go @@ -6,6 +6,26 @@ import ( "net/http" ) +// NewGenericStatusError returns a new StatusError with the given status code. +// The generic http.StatusText will be used for the error message. +func NewGenericStatusError(status int) StatusError { + return StatusError{ + status: status, + } +} + +// NewStatusError returns a new StatusError with the given message and status code. +func NewStatusError(status int, msg string) StatusError { + if msg == "" { + return NewGenericStatusError(status) + } + + return StatusError{ + status: status, + err: errors.New(msg), + } +} + // StatusErrorf returns a new StatusError containing the specified status and message. func StatusErrorf(status int, format string, a ...any) StatusError { return StatusError{ @@ -26,7 +46,12 @@ func (e StatusError) Error() string { return e.err.Error() } - return http.StatusText(e.status) + statusText := http.StatusText(e.status) + if statusText == "" { + return "Undefined error" + } + + return statusText } // Unwrap implements the xerrors.Wrapper interface for StatusError. diff --git a/shared/api/instance.go b/shared/api/instance.go index 2b3429373c63..966cd6e0aa8e 100644 --- a/shared/api/instance.go +++ b/shared/api/instance.go @@ -430,7 +430,7 @@ type InstanceSource struct { // Example: 12345 // // API extension: instance_import_conversion - SourceDiskSize int64 `json:"sourceDiskSize" yaml:"sourceDiskSize"` + SourceDiskSize int64 `json:"source_disk_size" yaml:"source_disk_size"` // Optional list of options that are used during image conversion (for conversion). // Example: ["format"] diff --git a/shared/cert.go b/shared/cert.go index 1627793b0070..2e40496d51d0 100644 --- a/shared/cert.go +++ b/shared/cert.go @@ -34,8 +34,11 @@ type CertOptions struct { // AddHosts determines whether to populate the Subject Alternative Name DNS Names and IP Addresses fields. AddHosts bool - // SubjectName will be used in place of the system hostname for the SAN DNS Name and Issuer Common Name. - SubjectName string + // CommonName will be used in place of the system hostname for the SAN DNS Name and Issuer Common Name. + CommonName string + + // SubjectAlternativeNames contains other names to include in the SAN DNS name field in addition to CommonName. + SubjectAlternativeNames []string } // KeyPairAndCA returns a CertInfo object with a reference to the key pair and @@ -245,23 +248,25 @@ func TestingAltKeyPair() *CertInfo { return cert } -/* - * Generate a list of names for which the certificate will be valid. - * This will include the hostname and ip address. - * If the `name` argument is non-empty, it will be used in place of the system hostname. - */ -func mynames(name string) ([]string, error) { - if name == "" { +// generateSANNames creates a list of names for which the certificate will be valid. +// - `commonName` will be the first entry if defined, otherwise the hostname will be used. +// - `additionalNames` will be supplied next, if defined +// - Finally, the localhost IPs will be added. +func generateSANNames(commonName string, additionalNames ...string) ([]string, error) { + if commonName == "" { h, err := os.Hostname() if err != nil { return nil, err } - name = h + commonName = h } - ret := []string{name, "127.0.0.1/8", "::1/128"} - return ret, nil + names := []string{commonName} + names = append(names, additionalNames...) + names = append(names, "127.0.0.1/8", "::1/128") + + return names, nil } // FindOrGenCert generates a keypair if needed. @@ -362,7 +367,7 @@ func GenerateMemCert(client bool, options CertOptions) ([]byte, []byte, error) { username = "UNKNOWN" } - hostname := options.SubjectName + hostname := options.CommonName if hostname == "" { hostname, err = os.Hostname() if err != nil { @@ -390,7 +395,7 @@ func GenerateMemCert(client bool, options CertOptions) ([]byte, []byte, error) { } if options.AddHosts { - hosts, err := mynames(hostname) + hosts, err := generateSANNames(hostname, options.SubjectAlternativeNames...) if err != nil { return nil, nil, fmt.Errorf("Failed to get my hostname: %w", err) } diff --git a/shared/cmd/ask.go b/shared/cmd/ask.go index ddeb890295f9..60ec62ba6c1b 100644 --- a/shared/cmd/ask.go +++ b/shared/cmd/ask.go @@ -10,15 +10,19 @@ import ( "golang.org/x/term" "github.com/canonical/lxd/shared" + "github.com/canonical/lxd/shared/logger" ) // Asker holds a reader for reading input into CLI questions. type Asker struct { reader *bufio.Reader + logger logger.Logger } -func NewAsker(reader *bufio.Reader) Asker { - return Asker{reader: reader} +// NewAsker creates a new Asker instance that reads from the given reader. +// It can also be configured with a logger to help during the debug process. +func NewAsker(reader *bufio.Reader, logger logger.Logger) Asker { + return Asker{reader: reader, logger: logger} } // AskBool asks a question and expect a yes/no answer. @@ -26,6 +30,10 @@ func (a *Asker) AskBool(question string, defaultAnswer string) (bool, error) { for { answer, err := a.askQuestion(question, defaultAnswer) if err != nil { + if a.logger != nil { + a.logger.Error("Failed to read answer for question", logger.Ctx{"answer": answer, "question": question, "err": err}) + } + return false, err } @@ -35,7 +43,7 @@ func (a *Asker) AskBool(question string, defaultAnswer string) (bool, error) { return false, nil } - invalidInput() + a.invalidInput(question, answer) } } @@ -44,14 +52,20 @@ func (a *Asker) AskChoice(question string, choices []string, defaultAnswer strin for { answer, err := a.askQuestion(question, defaultAnswer) if err != nil { + if a.logger != nil { + a.logger.Error("Failed to read answer for question", logger.Ctx{"answer": answer, "question": question, "err": err}) + } + return "", err } if shared.ValueInSlice(answer, choices) { return answer, nil + } else if a.logger != nil { + a.logger.Error("Answer not among the available choices", logger.Ctx{"answer": answer, "choices": choices}) } - invalidInput() + a.invalidInput(question, answer) } } @@ -60,16 +74,28 @@ func (a *Asker) AskInt(question string, min int64, max int64, defaultAnswer stri for { answer, err := a.askQuestion(question, defaultAnswer) if err != nil { + if a.logger != nil { + a.logger.Error("Failed to read answer for question", logger.Ctx{"answer": answer, "question": question, "err": err}) + } + return -1, err } result, err := strconv.ParseInt(answer, 10, 64) if err != nil { + if a.logger != nil { + a.logger.Error("Invalid input for the question", logger.Ctx{"answer": answer, "question": question, "err": err}) + } + fmt.Fprintf(os.Stderr, "Invalid input: %v\n\n", err) continue } if !((min == -1 || result >= min) && (max == -1 || result <= max)) { + if a.logger != nil { + a.logger.Error("Invalid input (out of range) for the question", logger.Ctx{"answer": answer, "question": question}) + } + fmt.Fprintf(os.Stderr, "Invalid input: out of range\n\n") continue } @@ -77,6 +103,10 @@ func (a *Asker) AskInt(question string, min int64, max int64, defaultAnswer stri if validate != nil { err = validate(result) if err != nil { + if a.logger != nil { + a.logger.Error("Invalid input for the question", logger.Ctx{"answer": answer, "question": question, "err": err}) + } + fmt.Fprintf(os.Stderr, "Invalid input: %v\n\n", err) continue } @@ -92,13 +122,21 @@ func (a *Asker) AskString(question string, defaultAnswer string, validate func(s for { answer, err := a.askQuestion(question, defaultAnswer) if err != nil { + if a.logger != nil { + a.logger.Error("Failed to read answer for question", logger.Ctx{"answer": answer, "question": question, "err": err}) + } + return "", err } if validate != nil { - error := validate(answer) - if error != nil { - fmt.Fprintf(os.Stderr, "Invalid input: %s\n\n", error) + err = validate(answer) + if err != nil { + if a.logger != nil { + a.logger.Error("Invalid input for the question", logger.Ctx{"answer": answer, "question": question, "err": err}) + } + + fmt.Fprintf(os.Stderr, "Invalid input: %v\n\n", err) continue } @@ -109,12 +147,12 @@ func (a *Asker) AskString(question string, defaultAnswer string, validate func(s return answer, err } - invalidInput() + a.invalidInput(question, answer) } } // AskPassword asks the user to enter a password. -func AskPassword(question string) string { +func (a *Asker) AskPassword(question string) string { for { fmt.Print(question) @@ -134,14 +172,14 @@ func AskPassword(question string) string { return inFirst } - invalidInput() + a.invalidInput(question, "*****") } } // AskPasswordOnce asks the user to enter a password. // // It's the same as AskPassword, but it won't ask to enter it again. -func AskPasswordOnce(question string) string { +func (a *Asker) AskPasswordOnce(question string) string { for { fmt.Print(question) pwd, _ := term.ReadPassword(0) @@ -153,7 +191,7 @@ func AskPasswordOnce(question string) string { return spwd } - invalidInput() + a.invalidInput(question, "*****") } } @@ -176,6 +214,10 @@ func (a *Asker) readAnswer(defaultAnswer string) (string, error) { } // Print an invalid input message on the error stream. -func invalidInput() { +func (a *Asker) invalidInput(question string, answer string) { + if a.logger != nil { + a.logger.Error("Invalid input for the question", logger.Ctx{"answer": answer, "question": question}) + } + fmt.Fprintf(os.Stderr, "Invalid input, try again.\n\n") } diff --git a/test/godeps/lxd-agent.list b/test/godeps/lxd-agent.list index cea6d8df2dac..1b1f013e7192 100644 --- a/test/godeps/lxd-agent.list +++ b/test/godeps/lxd-agent.list @@ -252,7 +252,9 @@ google.golang.org/grpc/credentials google.golang.org/grpc/credentials/insecure google.golang.org/grpc/encoding google.golang.org/grpc/encoding/proto +google.golang.org/grpc/experimental/stats google.golang.org/grpc/grpclog +google.golang.org/grpc/grpclog/internal google.golang.org/grpc/internal google.golang.org/grpc/internal/backoff google.golang.org/grpc/internal/balancer/gracefulswitch @@ -274,11 +276,13 @@ google.golang.org/grpc/internal/resolver/dns/internal google.golang.org/grpc/internal/resolver/passthrough google.golang.org/grpc/internal/resolver/unix google.golang.org/grpc/internal/serviceconfig +google.golang.org/grpc/internal/stats google.golang.org/grpc/internal/status google.golang.org/grpc/internal/syscall google.golang.org/grpc/internal/transport google.golang.org/grpc/internal/transport/networktype google.golang.org/grpc/keepalive +google.golang.org/grpc/mem google.golang.org/grpc/metadata google.golang.org/grpc/peer google.golang.org/grpc/resolver diff --git a/test/includes/storage.sh b/test/includes/storage.sh index 9cb4fa98e5ab..9f3f001c8faa 100644 --- a/test/includes/storage.sh +++ b/test/includes/storage.sh @@ -130,3 +130,56 @@ umount_loops() { fi } +create_object_storage_pool() { + poolName="${1}" + lxd_backend=$(storage_backend "$LXD_DIR") + + # Pool cannot already exist. + if lxc storage show "${poolName}"; then + echo "Storage pool pool ${poolName} already exists" + exit 1 + fi + + # Check cephobject.radosgw.endpoint is required for cephobject pools. + if [ "${lxd_backend}" = "ceph" ]; then + lxc storage create "${poolName}" cephobject cephobject.radosgw.endpoint="${LXD_CEPH_CEPHOBJECT_RADOSGW}" + else + + # Create a loop device for dir pools as MinIO doesn't support running on tmpfs (which the test suite can do). + # This is because tmpfs does not support O_direct which MinIO requires. This landed in kernel 6.6 (https://kernelnewbies.org/Linux_6.6#TMPFS). + if [ "${lxd_backend}" = "dir" ]; then + mkdir -p "${TEST_DIR}/s3/${poolName}" + configure_loop_device loop_file_1 loop_device_1 + # shellcheck disable=SC2154 + mkfs.ext4 "${loop_device_1}" + mount "${loop_device_1}" "${TEST_DIR}/s3/${poolName}" + mkdir "${TEST_DIR}/s3/${poolName}/objects" + lxc storage create "${poolName}" dir source="${TEST_DIR}/s3/${poolName}/objects" + # shellcheck disable=SC2154 + echo "${loop_device_1}" > "${TEST_DIR}/s3/${poolName}/dev" + # shellcheck disable=SC2154 + echo "${loop_file_1}" > "${TEST_DIR}/s3/${poolName}/file" + else + lxc storage create "${poolName}" "${lxd_backend}" + fi + + buckets_addr="127.0.0.1:$(local_tcp_port)" + lxc config set core.storage_buckets_address "${buckets_addr}" + fi +} + +delete_object_storage_pool() { + poolName="${1}" + lxd_backend=$(storage_backend "$LXD_DIR") + + lxc storage delete "${poolName}" + if [ "$lxd_backend" = "dir" ]; then + loop_file="$(cat "${TEST_DIR}/s3/${poolName}/file")" + loop_device="$(cat "${TEST_DIR}/s3/${poolName}/dev")" + umount "${TEST_DIR}/s3/${poolName}" + rmdir "${TEST_DIR}/s3/${poolName}" + + # shellcheck disable=SC2154 + deconfigure_loop_device "${loop_file}" "${loop_device}" + fi +} \ No newline at end of file diff --git a/test/suites/auth.sh b/test/suites/auth.sh index 90fd20b83522..fcd4f7791ccd 100644 --- a/test/suites/auth.sh +++ b/test/suites/auth.sh @@ -133,6 +133,9 @@ EOF # Perform access checks fine_grained_authorization + # Perform access check compatibility with project feature flags + auth_project_features + # Cleanup lxc auth group delete test-group lxc auth identity-provider-group delete test-idp-group @@ -191,7 +194,7 @@ fine_grained_authorization() { # Change permission to "user" for instance "user-foo" lxc auth group permission add test-group instance user-foo user project=default - # To exec into an instance, the test-group will also need `can_view_events` for the project. + # To exec into an instance, Members of test-group will also need `can_view_events` for the project. # This is because the client uses the events API to figure out when the operation is finished. # Ideally we would use operations for this instead or allow more fine-grained filtering on events. lxc auth group permission add test-group project default can_view_events @@ -453,3 +456,365 @@ user_is_instance_user() { # We can't edit the instance though ! lxc_remote config set "oidc:${instance_name}" user.fizz=buzz || false } + +auth_project_features() { + # test-group must have no permissions to start the test. + [ "$(lxc query /1.0/auth/groups/test-group | jq '.permissions | length')" -eq 0 ] + + # Create project blah + lxc project create blah + + # Validate view with no permissions + [ "$(lxc_remote project list oidc: --format csv | wc -l)" -eq 0 ] + + # Allow operator permissions on project blah + lxc auth group permission add test-group project blah operator + + # Confirm we can still view storage pools + [ "$(lxc_remote storage list oidc: --format csv | wc -l)" = 1 ] + + # Confirm we cannot view storage pool configuration + pool_name="$(lxc_remote storage list oidc: --format csv | cut -d, -f1)" + [ "$(lxc_remote storage get "oidc:${pool_name}" source)" = "" ] + + # Validate restricted view + ! lxc_remote project list oidc: --format csv | grep -w ^default || false + lxc_remote project list oidc: --format csv | grep -w ^blah + + # Validate that the restricted caller cannot edit or delete the project. + ! lxc_remote project set oidc:blah user.foo=bar || false + ! lxc_remote project delete oidc:blah || false + + # Validate restricted caller cannot create projects. + ! lxc_remote project create oidc:blah1 || false + + # Validate restricted caller cannot see resources in projects they do not have access to (the call will not fail, but + # the lists should be empty + [ "$(lxc_remote list oidc: --project default --format csv)" = "" ] + [ "$(lxc_remote profile list oidc: --project default --format csv)" = "" ] + [ "$(lxc_remote network list oidc: --project default --format csv)" = "" ] + [ "$(lxc_remote operation list oidc: --project default --format csv)" = "" ] + [ "$(lxc_remote network zone list oidc: --project default --format csv)" = "" ] + [ "$(lxc_remote storage volume list "oidc:${pool_name}" --project default --format csv)" = "" ] + [ "$(lxc_remote storage bucket list "oidc:${pool_name}" --project default --format csv)" = "" ] + + ### Validate images. + test_image_fingerprint="$(lxc image info testimage --project default | awk '/^Fingerprint/ {print $2}')" + + # We can always list images, but there are no public images in the default project now, so the list should be empty. + [ "$(lxc_remote image list oidc: --project default --format csv)" = "" ] + ! lxc_remote image show oidc:testimage --project default || false + + # Set the image to public and ensure we can view it. + lxc image show testimage --project default | sed -e "s/public: false/public: true/" | lxc image edit testimage --project default + [ "$(lxc_remote image list oidc: --project default --format csv | wc -l)" = 1 ] + lxc_remote image show oidc:testimage --project default + + # Check we can export the public image: + lxc image export oidc:testimage "${TEST_DIR}/" --project default + [ "${test_image_fingerprint}" = "$(sha256sum "${TEST_DIR}/${test_image_fingerprint}.tar.xz" | cut -d' ' -f1)" ] + + # While the image is public, copy it to the blah project and create an alias for it. + lxc_remote image copy oidc:testimage oidc: --project default --target-project blah + lxc_remote image alias create oidc:testimage "${test_image_fingerprint}" --project blah + + # Restore privacy on the test image in the default project. + lxc image show testimage --project default | sed -e "s/public: true/public: false/" | lxc image edit testimage --project default + + # Set up a profile in the blah project. Additionally ensures project operator can edit profiles. + lxc profile show default | lxc_remote profile edit oidc:default --project blah + + # Create an instance (using the test image copied from the default project while it was public). + lxc_remote init testimage oidc:blah-instance --project blah + + # Create a custom volume. + lxc_remote storage volume create "oidc:${pool_name}" blah-volume --project blah + + # There should now be two volume URLs, one instance, one image, and one profile URL in the used-by list. + [ "$(lxc_remote project list oidc: --format csv | cut -d, -f9)" = "5" ] + + # Delete resources in project blah so that we can modify project features. + lxc_remote delete oidc:blah-instance --project blah + lxc_remote storage volume delete "oidc:${pool_name}" blah-volume --project blah + lxc_remote image delete "oidc:${test_image_fingerprint}" --project blah + + # Ensure we can create and view resources that are not enabled for the project (e.g. their effective project is + # the default project). + + ### IMAGES (initial value is true for new projects) + + # Unset the images feature (the default is false). + lxc project unset blah features.images + + # The test image in the default project *not* should be visible by default via project blah. + ! lxc_remote image info "oidc:${test_image_fingerprint}" --project blah || false + ! lxc_remote image show "oidc:${test_image_fingerprint}" --project blah || false + test_image_fingerprint_short="$(echo "${test_image_fingerprint}" | cut -c1-12)" + ! lxc_remote image list oidc: --project blah | grep -F "${test_image_fingerprint_short}" || false + + # Make the images in the default project viewable to members of test-group + lxc auth group permission add test-group project default can_view_images + + # The test image in the default project should now be visible via project blah. + lxc_remote image info "oidc:${test_image_fingerprint}" --project blah + lxc_remote image show "oidc:${test_image_fingerprint}" --project blah + lxc_remote image list oidc: --project blah | grep -F "${test_image_fingerprint_short}" + + # Members of test-group can view it via project default. (This is true even though they do not have can_view on project default). + lxc_remote image info "oidc:${test_image_fingerprint}" --project default + lxc_remote image show "oidc:${test_image_fingerprint}" --project default + lxc_remote image list oidc: --project default | grep -F "${test_image_fingerprint_short}" + + # Members of test-group cannot edit the image. + ! lxc_remote image set-property "oidc:${test_image_fingerprint}" requirements.secureboot true --project blah || false + ! lxc_remote image unset-property "oidc:${test_image_fingerprint}" requirements.secureboot --project blah || false + + # Members of test-group cannot delete the image. + ! lxc_remote image delete "oidc:${test_image_fingerprint}" --project blah || false + + # Delete it anyway to test that we can import a new one. + lxc image delete "${test_image_fingerprint}" --project default + + # Members of test-group can create images. + lxc_remote image import "${TEST_DIR}/${test_image_fingerprint}.tar.xz" oidc: --project blah + lxc_remote image alias create oidc:testimage "${test_image_fingerprint}" --project blah + + # We can view the image we've created via project blah (whose effective project is default) because we've granted the + # group permission to view all images in the default project. + lxc_remote image show "oidc:${test_image_fingerprint}" --project blah + lxc_remote image show "oidc:${test_image_fingerprint}" --project default + + # Image clean up + lxc image delete "${test_image_fingerprint}" --project default + lxc auth group permission remove test-group project default can_view_images + rm "${TEST_DIR}/${test_image_fingerprint}.tar.xz" + + ### NETWORKS (initial value is false in new projects). + + # Create a network in the default project. + networkName="net$$" + lxc network create "${networkName}" --project default + + # The network we created in the default project is not visible in project blah. + ! lxc_remote network show "oidc:${networkName}" --project blah || false + ! lxc_remote network list oidc: --project blah | grep -F "${networkName}" || false + + # Make networks in the default project viewable to members of test-group + lxc auth group permission add test-group project default can_view_networks + + # The network we created in the default project is now visible in project blah. + lxc_remote network show "oidc:${networkName}" --project blah + lxc_remote network list oidc: --project blah | grep -F "${networkName}" + + # Members of test-group can view it via project default. + lxc_remote network show "oidc:${networkName}" --project default + lxc_remote network list oidc: --project default | grep -F "${networkName}" + + # Members of test-group cannot edit the network. + ! lxc_remote network set "oidc:${networkName}" user.foo=bar --project blah || false + + # Members of test-group cannot delete the network. + ! lxc_remote network delete "oidc:${networkName}" --project blah || false + + # Create a network in the blah project. + lxc_remote network create oidc:blah-network --project blah + + # The network is visible only because we have granted view access on networks in the default project. + lxc_remote network show oidc:blah-network --project blah + lxc_remote network list oidc: --project blah | grep blah-network + + # Members of test-group can view it via the default project. + lxc_remote network show oidc:blah-network --project default + + # Members of test-group cannot edit the network. + ! lxc_remote network set oidc:blah-network user.foo=bar --project blah || false + + # Members of test-group cannot delete the network. + ! lxc_remote network delete oidc:blah-network --project blah || false + + # Network clean up + lxc network delete "${networkName}" --project blah + lxc network delete blah-network --project blah + lxc auth group permission remove test-group project default can_view_networks + + ### NETWORK ZONES (initial value is false in new projects). + + # Create a network zone in the default project. + zoneName="zone$$" + lxc network zone create "${zoneName}" --project default + + # The network zone we created in the default project is *not* visible in project blah. + ! lxc_remote network zone show "oidc:${zoneName}" --project blah || false + ! lxc_remote network zone list oidc: --project blah | grep -F "${zoneName}" || false + + # Allow view access to network zones in the default project. + lxc auth group permission add test-group project default can_view_network_zones + + # Members of test-group can now view the network zone via the default project and via the blah project. + lxc_remote network zone show "oidc:${zoneName}" --project default + lxc_remote network zone list oidc: --project default | grep -F "${zoneName}" + lxc_remote network zone show "oidc:${zoneName}" --project blah + lxc_remote network zone list oidc: --project blah | grep -F "${zoneName}" + + # Members of test-group cannot edit the network zone. + ! lxc_remote network zone set "oidc:${zoneName}" user.foo=bar --project blah || false + + # Members of test-group can delete the network zone. + ! lxc_remote network zone delete "oidc:${zoneName}" --project blah || false + + # Create a network zone in the blah project. + lxc_remote network zone create oidc:blah-zone --project blah + + # Network zone is visible to members of test-group in project blah (because they can view network zones in the default project). + lxc_remote network zone show oidc:blah-zone --project blah + lxc_remote network zone list oidc: --project blah | grep blah-zone + lxc_remote network zone show oidc:blah-zone --project default + lxc_remote network zone list oidc: --project default | grep blah-zone + + # Members of test-group cannot delete the network zone. + ! lxc_remote network zone delete oidc:blah-zone --project blah || false + + # Network zone clean up + lxc network zone delete "${zoneName}" --project blah + lxc network zone delete blah-zone --project blah + lxc auth group permission remove test-group project default can_view_network_zones + + ### PROFILES (initial value is true for new projects) + + # Unset the profiles feature (the default is false). + lxc project unset blah features.profiles + + # Create a profile in the default project. + profileName="prof$$" + lxc profile create "${profileName}" --project default + + # The profile we created in the default project is not visible in project blah. + ! lxc_remote profile show "oidc:${profileName}" --project blah || false + ! lxc_remote profile list oidc: --project blah | grep -F "${profileName}" || false + + # Grant members of test-group permission to view profiles in the default project + lxc auth group permission add test-group project default can_view_profiles + + # The profile we just created is now visible via the default project and via the blah project + lxc_remote profile show "oidc:${profileName}" --project default + lxc_remote profile list oidc: --project default | grep -F "${profileName}" + lxc_remote profile show "oidc:${profileName}" --project blah + lxc_remote profile list oidc: --project blah | grep -F "${profileName}" + + # Members of test-group cannot edit the profile. + ! lxc_remote profile set "oidc:${profileName}" user.foo=bar --project blah || false + + # Members of test-group cannot delete the profile. + ! lxc_remote profile delete "oidc:${profileName}" --project blah || false + + # Create a profile in the blah project. + lxc_remote profile create oidc:blah-profile --project blah + + # Profile is visible to members of test-group in project blah and project default. + lxc_remote profile show oidc:blah-profile --project blah + lxc_remote profile list oidc: --project blah | grep blah-profile + lxc_remote profile show oidc:blah-profile --project default + lxc_remote profile list oidc: --project default | grep blah-profile + + # Members of test-group cannot delete the profile. + ! lxc_remote profile delete oidc:blah-profile --project blah || false + + # Profile clean up + lxc profile delete "${profileName}" --project blah + lxc profile delete blah-profile --project blah + lxc auth group permission remove test-group project default can_view_profiles + + ### STORAGE VOLUMES (initial value is true for new projects) + + # Unset the storage volumes feature (the default is false). + lxc project unset blah features.storage.volumes + + # Create a storage volume in the default project. + volName="vol$$" + lxc storage volume create "${pool_name}" "${volName}" --project default + + # The storage volume we created in the default project is not visible in project blah. + ! lxc_remote storage volume show "oidc:${pool_name}" "${volName}" --project blah || false + ! lxc_remote storage volume list "oidc:${pool_name}" --project blah | grep -F "${volName}" || false + + # Grant members of test-group permission to view storage volumes in project default + lxc auth group permission add test-group project default can_view_storage_volumes + + # Members of test-group can't view it via project default and project blah. + lxc_remote storage volume show "oidc:${pool_name}" "${volName}" --project default + lxc_remote storage volume list "oidc:${pool_name}" --project default | grep -F "${volName}" + lxc_remote storage volume show "oidc:${pool_name}" "${volName}" --project blah + lxc_remote storage volume list "oidc:${pool_name}" --project blah | grep -F "${volName}" + + # Members of test-group cannot edit the storage volume. + ! lxc_remote storage volume set "oidc:${pool_name}" "${volName}" user.foo=bar --project blah || false + + # Members of test-group cannot delete the storage volume. + ! lxc_remote storage volume delete "oidc:${pool_name}" "${volName}" --project blah || false + + # Create a storage volume in the blah project. + lxc_remote storage volume create "oidc:${pool_name}" blah-volume --project blah + + # Storage volume is visible to members of test-group in project blah (because they can view volumes in the default project). + lxc_remote storage volume show "oidc:${pool_name}" blah-volume --project blah + lxc_remote storage volume list "oidc:${pool_name}" --project blah | grep blah-volume + lxc_remote storage volume show "oidc:${pool_name}" blah-volume --project default + lxc_remote storage volume list "oidc:${pool_name}" --project default | grep blah-volume + + # Members of test-group cannot delete the storage volume. + ! lxc_remote storage volume delete "oidc:${pool_name}" blah-volume --project blah || false + + # Storage volume clean up + lxc storage volume delete "${pool_name}" "${volName}" + lxc storage volume delete "${pool_name}" blah-volume + lxc auth group permission remove test-group project default can_view_storage_volumes + + ### STORAGE BUCKETS (initial value is true for new projects) + + # Create a storage pool to use with object storage. + create_object_storage_pool s3 + + # Unset the storage buckets feature (the default is false). + lxc project unset blah features.storage.buckets + + # Create a storage bucket in the default project. + bucketName="bucket$$" + lxc storage bucket create s3 "${bucketName}" --project default + + # The storage bucket we created in the default project is not visible in project blah. + ! lxc_remote storage bucket show oidc:s3 "${bucketName}" --project blah || false + ! lxc_remote storage bucket list oidc:s3 --project blah | grep -F "${bucketName}" || false + + # Grant view permission on storage buckets in project default to members of test-group + lxc auth group permission add test-group project default can_view_storage_buckets + + # Members of test-group can now view the bucket via project default and project blah. + lxc_remote storage bucket show oidc:s3 "${bucketName}" --project default + lxc_remote storage bucket list oidc:s3 --project default | grep -F "${bucketName}" + lxc_remote storage bucket show oidc:s3 "${bucketName}" --project blah + lxc_remote storage bucket list oidc:s3 --project blah | grep -F "${bucketName}" + + # Members of test-group cannot edit the storage bucket. + ! lxc_remote storage bucket set oidc:s3 "${bucketName}" user.foo=bar --project blah || false + + # Members of test-group cannot delete the storage bucket. + ! lxc_remote storage bucket delete oidc:s3 "${bucketName}" --project blah || false + + # Create a storage bucket in the blah project. + lxc_remote storage bucket create oidc:s3 blah-bucket --project blah + + # Storage bucket is visible to members of test-group in project blah (because they can view buckets in the default project). + lxc_remote storage bucket show oidc:s3 blah-bucket --project blah + lxc_remote storage bucket list oidc:s3 --project blah | grep blah-bucket + + # Members of test-group cannot delete the storage bucket. + ! lxc_remote storage bucket delete oidc:s3 blah-bucket --project blah || false + + # Cleanup storage buckets + lxc storage bucket delete s3 blah-bucket --project blah + lxc storage bucket delete s3 "${bucketName}" --project blah + delete_object_storage_pool s3 + + # General clean up + lxc project delete blah +} \ No newline at end of file diff --git a/test/suites/backup.sh b/test/suites/backup.sh index 88d1fd314706..316dcfe4b71d 100644 --- a/test/suites/backup.sh +++ b/test/suites/backup.sh @@ -103,8 +103,10 @@ EOF echo "hello world" | lxc exec c1 --project test -- tee /mnt/test.txt [ "$(lxc exec c1 --project test -- cat /mnt/test.txt)" = "hello world" ] lxc stop -f c1 + lxc config set c1 snapshots.expiry 1d lxc snapshot c1 lxc info c1 + snapshotExpiryDateBefore=$(lxc info c1 | grep -wF "snap0") lxc storage volume snapshot "${poolName}" vol1_test snap0 lxc storage volume show "${poolName}" vol1_test @@ -185,6 +187,10 @@ EOF lxc start c1 lxc exec c1 --project test -- hostname + # Check snapshot expiry date has been restored. + snapshotExpiryDateAfter=$(lxc info c1 | grep -wF "snap0") + [ "$snapshotExpiryDateBefore" = "$snapshotExpiryDateAfter" ] + # Check custom volume accessible. lxc exec c1 --project test -- mount | grep /mnt [ "$(lxc exec c1 --project test -- cat /mnt/test.txt)" = "hello world" ] diff --git a/test/suites/network.sh b/test/suites/network.sh index c4775267f47e..c99367dafff5 100644 --- a/test/suites/network.sh +++ b/test/suites/network.sh @@ -64,6 +64,22 @@ test_network() { lxc network create lxdt$$ ipv4.address=none ipv6.address=none lxc network delete lxdt$$ + # Check that we can return state for physical networks + ip link add dummy0 type dummy + lxc network create lxdt$$ --type=physical parent=dummy0 + + expected_state=$(lxc network info dummy0 | grep -F "State:") + expected_type=$(lxc network info dummy0 | grep -F "Type:") + lxc network info lxdt$$ | grep -qF "${expected_state}" + lxc network info lxdt$$ | grep -qF "${expected_type}" + + # Delete physical network and check for expected response + ip link delete dummy0 + lxc network info lxdt$$ | grep -qF "State: unavailable" + lxc network info lxdt$$ | grep -qF "Type: unknown" + + lxc network delete lxdt$$ + # Configured bridge with static assignment lxc network create lxdt$$ dns.domain=test dns.mode=managed ipv6.dhcp.stateful=true lxc network attach lxdt$$ nettest eth0 diff --git a/test/suites/remote.sh b/test/suites/remote.sh index 805b69987612..c241bd1c5013 100644 --- a/test/suites/remote.sh +++ b/test/suites/remote.sh @@ -22,6 +22,10 @@ test_remote_url() { lxc_remote remote remove test done + # invalid certificate names returns an error + ! lxc_remote config trust add --name -foo || false + ! lxc_remote config trust add --name fo/o || false + # shellcheck disable=2153 urls="${LXD_DIR}/unix.socket unix:${LXD_DIR}/unix.socket unix://${LXD_DIR}/unix.socket" diff --git a/test/suites/storage_buckets.sh b/test/suites/storage_buckets.sh index 483bae4661c2..e779ec7e6b68 100644 --- a/test/suites/storage_buckets.sh +++ b/test/suites/storage_buckets.sh @@ -42,33 +42,16 @@ test_storage_buckets() { return fi - poolName=$(lxc profile device get default root pool) + poolName="s3" bucketPrefix="lxd$$" + create_object_storage_pool "${poolName}" + # Check cephobject.radosgw.endpoint is required for cephobject pools. if [ "$lxd_backend" = "ceph" ]; then - ! lxc storage create s3 cephobject || false - lxc storage create s3 cephobject cephobject.radosgw.endpoint="${LXD_CEPH_CEPHOBJECT_RADOSGW}" - lxc storage show s3 - poolName="s3" s3Endpoint="${LXD_CEPH_CEPHOBJECT_RADOSGW}" else - # Create a loop device for dir pools as MinIO doesn't support running on tmpfs (which the test suite can do). - if [ "$lxd_backend" = "dir" ]; then - configure_loop_device loop_file_1 loop_device_1 - # shellcheck disable=SC2154 - mkfs.ext4 "${loop_device_1}" - mkdir "${TEST_DIR}/${bucketPrefix}" - mount "${loop_device_1}" "${TEST_DIR}/${bucketPrefix}" - losetup -d "${loop_device_1}" - mkdir "${TEST_DIR}/${bucketPrefix}/s3" - lxc storage create s3 dir source="${TEST_DIR}/${bucketPrefix}/s3" - poolName="s3" - fi - - buckets_addr="127.0.0.1:$(local_tcp_port)" - lxc config set core.storage_buckets_address "${buckets_addr}" - s3Endpoint="https://${buckets_addr}" + s3Endpoint="https://$(lxc config get core.storage_buckets_address)" fi # Check bucket name validation. @@ -183,15 +166,5 @@ test_storage_buckets() { ! lxc storage bucket list "${poolName}" | grep -F "${bucketPrefix}.foo" || false ! lxc storage bucket show "${poolName}" "${bucketPrefix}.foo" || false - if [ "$lxd_backend" = "ceph" ] || [ "$lxd_backend" = "dir" ]; then - lxc storage delete "${poolName}" - fi - - if [ "$lxd_backend" = "dir" ]; then - umount "${TEST_DIR}/${bucketPrefix}" - rmdir "${TEST_DIR}/${bucketPrefix}" - - # shellcheck disable=SC2154 - deconfigure_loop_device "${loop_file_1}" "${loop_device_1}" - fi + delete_object_storage_pool "${poolName}" } diff --git a/test/suites/tls_restrictions.sh b/test/suites/tls_restrictions.sh index d898d864b078..461a496c7384 100644 --- a/test/suites/tls_restrictions.sh +++ b/test/suites/tls_restrictions.sh @@ -73,9 +73,8 @@ test_tls_restrictions() { lxc_remote image show localhost:testimage --project default # Check we can export the public image: - lxc image export localhost:testimage "${LXD_DIR}/" --project default - [ "${test_image_fingerprint}" = "$(sha256sum "${LXD_DIR}/${test_image_fingerprint}.tar.xz" | cut -d' ' -f1)" ] - rm "${LXD_DIR}/${test_image_fingerprint}.tar.xz" + lxc image export localhost:testimage "${TEST_DIR}/" --project default + [ "${test_image_fingerprint}" = "$(sha256sum "${TEST_DIR}/${test_image_fingerprint}.tar.xz" | cut -d' ' -f1)" ] # While the image is public, copy it to the blah project and create an alias for it. lxc_remote image copy localhost:testimage localhost: --project default --target-project blah @@ -96,43 +95,240 @@ test_tls_restrictions() { # There should now be two volume URLs, one instance, one image, and one profile URL in the used-by list. [ "$(lxc_remote project list localhost: --format csv | cut -d, -f9)" = "5" ] - # Delete resources in project blah so that we can modify project limits. + # Delete resources in project blah so that we can modify project features. lxc_remote delete localhost:blah-instance --project blah lxc_remote storage volume delete "localhost:${pool_name}" blah-volume --project blah - test_image_fingerprint="$(lxc_remote image list localhost: --format csv --columns f --project blah)" lxc_remote image delete "localhost:${test_image_fingerprint}" --project blah # Ensure we can create and view resources that are not enabled for the project (e.g. their effective project is # the default project). - # Networks are disabled when projects are created. + ### IMAGES (initial value is true for new projects) + + # Unset the images feature (the default is false). + lxc project unset blah features.images + + # The test image in the default project should be visible via project blah. + lxc_remote image info "localhost:${test_image_fingerprint}" --project blah + lxc_remote image show "localhost:${test_image_fingerprint}" --project blah + test_image_fingerprint_short="$(echo "${test_image_fingerprint}" | cut -c1-12)" + lxc_remote image list localhost: --project blah | grep -F "${test_image_fingerprint_short}" + + # The restricted client can't view it via project default. + ! lxc_remote image info "localhost:${test_image_fingerprint}" --project default || false + ! lxc_remote image show "localhost:${test_image_fingerprint}" --project default || false + ! lxc_remote image list localhost: --project default | grep -F "${test_image_fingerprint_short}" || false + + # The restricted client can edit the image. + lxc_remote image set-property "localhost:${test_image_fingerprint}" requirements.secureboot true --project blah + lxc_remote image unset-property "localhost:${test_image_fingerprint}" requirements.secureboot --project blah + + # The restricted client can delete the image. + lxc_remote image delete "localhost:${test_image_fingerprint}" --project blah + + # The restricted client can create images. + lxc_remote image import "${TEST_DIR}/${test_image_fingerprint}.tar.xz" localhost: --project blah + + # Clean up + lxc_remote image delete "localhost:${test_image_fingerprint}" --project blah + + + ### NETWORKS (initial value is false in new projects). + + # Create a network in the default project. + networkName="net$$" + lxc network create "${networkName}" --project default + + # The network we created in the default project is visible in project blah. + lxc_remote network show "localhost:${networkName}" --project blah + lxc_remote network list localhost: --project blah | grep -F "${networkName}" + + # The restricted client can't view it via project default. + ! lxc_remote network show "localhost:${networkName}" --project default || false + ! lxc_remote network list localhost: --project default | grep -F "${networkName}" || false + + # The restricted client can edit the network. + lxc_remote network set "localhost:${networkName}" user.foo=bar --project blah + + # The restricted client can delete the network. + lxc_remote network delete "localhost:${networkName}" --project blah + + # Create a network in the blah project. lxc_remote network create localhost:blah-network --project blah + + # Network is visible to restricted client in project blah. lxc_remote network show localhost:blah-network --project blah lxc_remote network list localhost: --project blah | grep blah-network - lxc_remote network rm localhost:blah-network --project blah - # Network zones are disabled when projects are created. + # The network is actually in the default project. + lxc network show blah-network --project default + + # The restricted client can't view it via the default project. + ! lxc_remote network show localhost:blah-network --project default || false + + # The restricted client can delete the network. + lxc_remote network delete localhost:blah-network --project blah + + + ### NETWORK ZONES (initial value is false in new projects). + + # Create a network zone in the default project. + zoneName="zone$$" + lxc network zone create "${zoneName}" --project default + + # The network zone we created in the default project is visible in project blah. + lxc_remote network zone show "localhost:${zoneName}" --project blah + lxc_remote network zone list localhost: --project blah | grep -F "${zoneName}" + + # The restricted client can't view it via project default. + ! lxc_remote network zone show "localhost:${zoneName}" --project default || false + ! lxc_remote network zone list localhost: --project default | grep -F "${zoneName}" || false + + # The restricted client can edit the network zone. + lxc_remote network zone set "localhost:${zoneName}" user.foo=bar --project blah + + # The restricted client can delete the network zone. + lxc_remote network zone delete "localhost:${zoneName}" --project blah + + # Create a network zone in the blah project. lxc_remote network zone create localhost:blah-zone --project blah + + # Network zone is visible to restricted client in project blah. lxc_remote network zone show localhost:blah-zone --project blah lxc_remote network zone list localhost: --project blah | grep blah-zone + + # The network zone is actually in the default project. + lxc network zone show blah-zone --project default + + # The restricted client can't view it via the default project. + ! lxc_remote network zone show localhost:blah-zone --project default || false + + # The restricted client can delete the network zone. lxc_remote network zone delete localhost:blah-zone --project blah + + ### PROFILES (initial value is true for new projects) + # Unset the profiles feature (the default is false). lxc project unset blah features.profiles + + # Create a profile in the default project. + profileName="prof$$" + lxc profile create "${profileName}" --project default + + # The profile we created in the default project is visible in project blah. + lxc_remote profile show "localhost:${profileName}" --project blah + lxc_remote profile list localhost: --project blah | grep -F "${profileName}" + + # The restricted client can't view it via project default. + ! lxc_remote profile show "localhost:${profileName}" --project default || false + ! lxc_remote profile list localhost: --project default | grep -F "${profileName}" || false + + # The restricted client can edit the profile. + lxc_remote profile set "localhost:${profileName}" user.foo=bar --project blah + + # The restricted client can delete the profile. + lxc_remote profile delete "localhost:${profileName}" --project blah + + # Create a profile in the blah project. lxc_remote profile create localhost:blah-profile --project blah + + # Profile is visible to restricted client in project blah. lxc_remote profile show localhost:blah-profile --project blah lxc_remote profile list localhost: --project blah | grep blah-profile + + # The profile is actually in the default project. + lxc profile show blah-profile --project default + + # The restricted client can't view it via the default project. + ! lxc_remote profile show localhost:blah-profile --project default || false + + # The restricted client can delete the profile. lxc_remote profile delete localhost:blah-profile --project blah + + ### STORAGE VOLUMES (initial value is true for new projects) + # Unset the storage volumes feature (the default is false). lxc project unset blah features.storage.volumes + + # Create a storage volume in the default project. + volName="vol$$" + lxc storage volume create "${pool_name}" "${volName}" --project default + + # The storage volume we created in the default project is visible in project blah. + lxc_remote storage volume show "localhost:${pool_name}" "${volName}" --project blah + lxc_remote storage volume list "localhost:${pool_name}" --project blah | grep -F "${volName}" + + # The restricted client can't view it via project default. + ! lxc_remote storage volume show "localhost:${pool_name}" "${volName}" --project default || false + ! lxc_remote storage volume list "localhost:${pool_name}" --project default | grep -F "${volName}" || false + + # The restricted client can edit the storage volume. + lxc_remote storage volume set "localhost:${pool_name}" "${volName}" user.foo=bar --project blah + + # The restricted client can delete the storage volume. + lxc_remote storage volume delete "localhost:${pool_name}" "${volName}" --project blah + + # Create a storage volume in the blah project. lxc_remote storage volume create "localhost:${pool_name}" blah-volume --project blah + + # Storage volume is visible to restricted client in project blah. lxc_remote storage volume show "localhost:${pool_name}" blah-volume --project blah - lxc_remote storage volume list "localhost:${pool_name}" --project blah lxc_remote storage volume list "localhost:${pool_name}" --project blah | grep blah-volume + + # The storage volume is actually in the default project. + lxc storage volume show "${pool_name}" blah-volume --project default + + # The restricted client can't view it via the default project. + ! lxc_remote storage volume show "localhost:${pool_name}" blah-volume --project default || false + + # The restricted client can delete the storage volume. lxc_remote storage volume delete "localhost:${pool_name}" blah-volume --project blah + ### STORAGE BUCKETS (initial value is true for new projects) + create_object_storage_pool s3 + + # Unset the storage buckets feature (the default is false). + lxc project unset blah features.storage.buckets + + # Create a storage bucket in the default project. + bucketName="bucket$$" + lxc storage bucket create s3 "${bucketName}" --project default + + # The storage bucket we created in the default project is visible in project blah. + lxc_remote storage bucket show localhost:s3 "${bucketName}" --project blah + lxc_remote storage bucket list localhost:s3 --project blah | grep -F "${bucketName}" + + # The restricted client can't view it via project default. + ! lxc_remote storage bucket show localhost:s3 "${bucketName}" --project default || false + ! lxc_remote storage bucket list localhost:s3 --project default | grep -F "${bucketName}" || false + + # The restricted client can edit the storage bucket. + lxc_remote storage bucket set localhost:s3 "${bucketName}" user.foo=bar --project blah + + # The restricted client can delete the storage bucket. + lxc_remote storage bucket delete localhost:s3 "${bucketName}" --project blah + + # Create a storage bucket in the blah project. + lxc_remote storage bucket create localhost:s3 blah-bucket --project blah + + # Storage bucket is visible to restricted client in project blah. + lxc_remote storage bucket show localhost:s3 blah-bucket --project blah + lxc_remote storage bucket list localhost:s3 --project blah | grep blah-bucket + + # The storage bucket is actually in the default project. + lxc storage bucket show s3 blah-bucket --project default + + # The restricted client can't view it via the default project. + ! lxc_remote storage bucket show localhost:s3 blah-bucket --project default || false + + # The restricted client can delete the storage bucket. + lxc_remote storage bucket delete localhost:s3 blah-bucket --project blah + # Cleanup + delete_object_storage_pool s3 + rm "${TEST_DIR}/${test_image_fingerprint}.tar.xz" lxc config trust show "${FINGERPRINT}" | sed -e "s/restricted: true/restricted: false/" | lxc config trust edit "${FINGERPRINT}" lxc project delete blah }