diff --git a/cli/app/app.go b/cli/app/app.go index fb732553..a0391496 100644 --- a/cli/app/app.go +++ b/cli/app/app.go @@ -9,5 +9,6 @@ var AppCommand = &cobra.Command{ // translators: `app` command group Use: i18n.G("app [cmd] [args] [flags]"), Aliases: []string{i18n.G("a")}, + // translators: Short description for `app` command group Short: i18n.G("Manage apps"), } diff --git a/cli/app/backup.go b/cli/app/backup.go index 78b90eec..508ab64c 100644 --- a/cli/app/backup.go +++ b/cli/app/backup.go @@ -15,6 +15,7 @@ var AppBackupListCommand = &cobra.Command{ // translators: `app backup list` command Use: i18n.G("list [flags]"), Aliases: []string{i18n.G("ls")}, + // translators: Short description for `app backup list` command Short: i18n.G("List the contents of a snapshot"), Args: cobra.ExactArgs(1), ValidArgsFunction: func( @@ -66,6 +67,7 @@ var AppBackupDownloadCommand = &cobra.Command{ // translators: `app backup download` command Use: i18n.G("download [flags]"), Aliases: []string{i18n.G("d")}, + // translators: Short description for `app backup download` command Short: i18n.G("Download a snapshot"), Long: i18n.G(`Downloads a backup.tar.gz to the current working directory. @@ -136,6 +138,7 @@ var AppBackupCreateCommand = &cobra.Command{ // translators: `app backup create` command Use: i18n.G("create [flags]"), Aliases: []string{i18n.G("c")}, + // translators: Short description for `app backup create` command Short: i18n.G("Create a new snapshot"), Args: cobra.ExactArgs(1), ValidArgsFunction: func( @@ -181,6 +184,7 @@ var AppBackupSnapshotsCommand = &cobra.Command{ // translators: `app backup snapshots` command Use: i18n.G("snapshots [flags]"), Aliases: []string{i18n.G("s")}, + // translators: Short description for `app backup snapshots` command Short: i18n.G("List all snapshots"), Args: cobra.ExactArgs(1), ValidArgsFunction: func( @@ -217,6 +221,7 @@ var AppBackupCommand = &cobra.Command{ // translators: `app backup` command group Use: i18n.G("backup [cmd] [args] [flags]"), Aliases: []string{i18n.G("b")}, + // translators: Short description for `app backup` command group Short: i18n.G("Manage app backups"), } diff --git a/cli/app/check.go b/cli/app/check.go index 3082671c..25e1fb41 100644 --- a/cli/app/check.go +++ b/cli/app/check.go @@ -17,6 +17,7 @@ var AppCheckCommand = &cobra.Command{ // translators: `app check` command Use: i18n.G("check [flags]"), Aliases: []string{i18n.G("chk")}, + // translators: Short description for `app check` command Short: i18n.G("Ensure an app is well configured"), Long: i18n.G(`Compare env vars in both the app ".env" and recipe ".env.sample" file. diff --git a/cli/app/cmd.go b/cli/app/cmd.go index ccf60de6..ff0c03e1 100644 --- a/cli/app/cmd.go +++ b/cli/app/cmd.go @@ -22,6 +22,7 @@ var AppCmdCommand = &cobra.Command{ // translators: `app command` command Use: i18n.G("command [service | --local] [[args] [flags] | [flags] -- [args]]"), Aliases: []string{i18n.G("cmd")}, + // translators: Short description for `app cmd` command Short: i18n.G("Run app commands"), Long: i18n.G(`Run an app specific command. @@ -194,9 +195,10 @@ does not).`), } var AppCmdListCommand = &cobra.Command{ - // translators: `app list` command + // translators: `app cmd list` command Use: i18n.G("list [flags]"), Aliases: []string{i18n.G("ls")}, + // translators: Short description for `app cmd list` command Short: i18n.G("List all available commands"), Args: cobra.MinimumNArgs(1), Run: func(cmd *cobra.Command, args []string) { diff --git a/cli/app/config.go b/cli/app/config.go index 1cb0dd2b..4aecc496 100644 --- a/cli/app/config.go +++ b/cli/app/config.go @@ -16,6 +16,7 @@ var AppConfigCommand = &cobra.Command{ // translators: `app config` command Use: i18n.G("config [flags]"), Aliases: []string{i18n.G("cfg")}, + // translators: Short description for `app config` command Short: i18n.G("Edit app config"), Example: i18n.G(" abra config 1312.net"), Args: cobra.ExactArgs(1), diff --git a/cli/app/cp.go b/cli/app/cp.go index c3d5acbb..daba881a 100644 --- a/cli/app/cp.go +++ b/cli/app/cp.go @@ -29,6 +29,7 @@ var AppCpCommand = &cobra.Command{ // translators: `app cp` command Use: i18n.G("cp [flags]"), Aliases: []string{i18n.G("c")}, + // translators: Short description for `app cp` command Short: i18n.G("Copy files to/from a deployed app service"), Example: i18n.G(` # copy myfile.txt to the root of the app service abra app cp 1312.net myfile.txt app:/ diff --git a/cli/app/deploy.go b/cli/app/deploy.go index d0338beb..45fbbe0d 100644 --- a/cli/app/deploy.go +++ b/cli/app/deploy.go @@ -28,6 +28,7 @@ var AppDeployCommand = &cobra.Command{ // translators: `app deploy` command Use: i18n.G("deploy [version] [flags]"), Aliases: []string{i18n.G("d")}, + // translators: Short description for `app deploy` command Short: i18n.G("Deploy an app"), Long: i18n.G(`Deploy an app. diff --git a/cli/app/env.go b/cli/app/env.go index aed146d0..1ea59e7c 100644 --- a/cli/app/env.go +++ b/cli/app/env.go @@ -15,6 +15,7 @@ var AppEnvCommand = &cobra.Command{ // translators: `app env` command Use: i18n.G("env [flags]"), Aliases: []string{i18n.G("e")}, + // translators: Short description for `app env` command Short: i18n.G("Show app .env values"), Example: i18n.G(" abra app env 1312.net"), Args: cobra.ExactArgs(1), diff --git a/cli/app/labels.go b/cli/app/labels.go index 19d441ff..4f417874 100644 --- a/cli/app/labels.go +++ b/cli/app/labels.go @@ -23,6 +23,7 @@ var AppLabelsCommand = &cobra.Command{ // translators: `app labels` command Use: i18n.G("labels [flags]"), Aliases: []string{i18n.G("lb")}, + // translators: Short description for `app labels` command Short: i18n.G("Show deployment labels"), Long: i18n.G("Both local recipe and live deployment labels are shown."), Example: " " + i18n.G("abra app labels 1312.net"), diff --git a/cli/app/list.go b/cli/app/list.go index 4757729f..648dedbe 100644 --- a/cli/app/list.go +++ b/cli/app/list.go @@ -43,6 +43,7 @@ var AppListCommand = &cobra.Command{ // translators: `app list` command Use: i18n.G("list [flags]"), Aliases: []string{i18n.G("ls")}, + // translators: Short description for `app list` command Short: i18n.G("List all managed apps"), Long: i18n.G(`Generate a report of all managed apps. diff --git a/cli/app/logs.go b/cli/app/logs.go index 1464e95e..9dd57660 100644 --- a/cli/app/logs.go +++ b/cli/app/logs.go @@ -18,6 +18,7 @@ var AppLogsCommand = &cobra.Command{ // translators: `app logs` command Use: i18n.G("logs [service] [flags]"), Aliases: []string{i18n.G("l")}, + // translators: Short description for `app logs` command Short: i18n.G("Tail app logs"), Args: cobra.RangeArgs(1, 2), ValidArgsFunction: func( diff --git a/cli/app/new.go b/cli/app/new.go index 4ab7005b..ee62eb8b 100644 --- a/cli/app/new.go +++ b/cli/app/new.go @@ -46,6 +46,7 @@ var AppNewCommand = &cobra.Command{ // translators: `app new` command Use: i18n.G("new [recipe] [version] [flags]"), Aliases: []string{i18n.G("n")}, + // translators: Short description for `app new` command Short: i18n.G("Create a new app"), Long: appNewDescription, Args: cobra.RangeArgs(0, 2), diff --git a/cli/app/ps.go b/cli/app/ps.go index eefdc50b..d93a22f4 100644 --- a/cli/app/ps.go +++ b/cli/app/ps.go @@ -28,6 +28,7 @@ var AppPsCommand = &cobra.Command{ // translators: `app ps` command Use: i18n.G("ps [flags]"), Aliases: []string{i18n.G("p")}, + // translators: Short description for `app ps` command Short: i18n.G("Check app deployment status"), Args: cobra.ExactArgs(1), ValidArgsFunction: func( diff --git a/cli/app/remove.go b/cli/app/remove.go index 74114662..f953d6b1 100644 --- a/cli/app/remove.go +++ b/cli/app/remove.go @@ -19,6 +19,7 @@ var AppRemoveCommand = &cobra.Command{ // translators: `app remove` command Use: i18n.G("remove [flags]"), Aliases: []string{i18n.G("rm")}, + // translators: Short description for `app remove` command Short: i18n.G("Remove all app data, locally and remotely"), Long: i18n.G(`Remove everything related to an app which is already undeployed. diff --git a/cli/app/restart.go b/cli/app/restart.go index 4604469a..29356ab1 100644 --- a/cli/app/restart.go +++ b/cli/app/restart.go @@ -21,6 +21,7 @@ var AppRestartCommand = &cobra.Command{ // translators: `app restart` command Use: i18n.G("restart [[service] | --all-services] [flags]"), Aliases: []string{i18n.G("re")}, + // translators: Short description for `app restart` command Short: i18n.G("Restart an app"), Long: i18n.G(`This command restarts services within a deployed app. diff --git a/cli/app/restore.go b/cli/app/restore.go index 8d2b15a2..d7656271 100644 --- a/cli/app/restore.go +++ b/cli/app/restore.go @@ -16,6 +16,7 @@ var AppRestoreCommand = &cobra.Command{ // translators: `app restore` command Use: i18n.G("restore [flags]"), Aliases: []string{i18n.G("rs")}, + // translators: Short description for `app restore` command Short: i18n.G("Restore a snapshot"), Long: i18n.G(`Snapshots are restored while apps are deployed. diff --git a/cli/app/rollback.go b/cli/app/rollback.go index 15f65e9d..91ddc820 100644 --- a/cli/app/rollback.go +++ b/cli/app/rollback.go @@ -25,6 +25,7 @@ var AppRollbackCommand = &cobra.Command{ // translators: `app rollback` command Use: i18n.G("rollback [version] [flags]"), Aliases: []string{i18n.G("rl")}, + // translators: Short description for `app rollback` command Short: i18n.G("Roll an app back to a previous version"), Long: i18n.G(`This command rolls an app back to a previous version. diff --git a/cli/app/run.go b/cli/app/run.go index cdce15cf..db76902a 100644 --- a/cli/app/run.go +++ b/cli/app/run.go @@ -21,6 +21,7 @@ var AppRunCommand = &cobra.Command{ // translators: `app run` command Use: i18n.G("run [[args] [flags] | [flags] -- [args]]"), Aliases: []string{i18n.G("r")}, + // translators: Short description for `app run` command Short: i18n.G("Run a command inside a service container"), Example: i18n.G(` # run with args/flags abra app run 1312.net app -- ls -lha diff --git a/cli/app/secret.go b/cli/app/secret.go index f867905e..e153e819 100644 --- a/cli/app/secret.go +++ b/cli/app/secret.go @@ -28,6 +28,7 @@ var AppSecretGenerateCommand = &cobra.Command{ // translators: `app secret generate` command Use: i18n.G("generate [[secret] [version] | --all] [flags]"), Aliases: []string{i18n.G("g")}, + // translators: Short description for `app secret generate` command Short: i18n.G("Generate secrets"), Args: cobra.RangeArgs(1, 3), ValidArgsFunction: func( @@ -149,6 +150,7 @@ var AppSecretInsertCommand = &cobra.Command{ // translators: `app secret insert` command Use: i18n.G("insert [] [flags]"), Aliases: []string{i18n.G("i")}, + // translators: Short description for `app secret insert` command Short: i18n.G("Insert secret"), Long: i18n.G(`This command inserts a secret into an app environment. @@ -323,6 +325,7 @@ var AppSecretRmCommand = &cobra.Command{ // translators: `app secret remove` command Use: i18n.G("remove [[secret] | --all] [flags]"), Aliases: []string{i18n.G("rm")}, + // translators: Short description for `app secret remove` command Short: i18n.G("Remove a secret"), Long: i18n.G(`This command removes a secret from an app environment. @@ -437,6 +440,7 @@ var AppSecretLsCommand = &cobra.Command{ // translators: `app secret list` command Use: i18n.G("list "), Aliases: []string{i18n.G("ls")}, + // translators: Short description for `app secret list` command Short: i18n.G("List all secrets"), Args: cobra.MinimumNArgs(1), ValidArgsFunction: func( @@ -513,6 +517,7 @@ var AppSecretCommand = &cobra.Command{ // translators: `app secret` command group Use: i18n.G("secret [cmd] [args] [flags]"), Aliases: []string{i18n.G("s")}, + // translators: Short description for `app secret` command group Short: i18n.G("Manage app secrets"), } diff --git a/cli/app/services.go b/cli/app/services.go index 2e2fb8f8..1c1f5518 100644 --- a/cli/app/services.go +++ b/cli/app/services.go @@ -21,6 +21,7 @@ var AppServicesCommand = &cobra.Command{ // translators: `app services` command Use: i18n.G("services [flags]"), Aliases: []string{i18n.G("sr")}, + // translators: Short description for `app services` command Short: i18n.G("Display all services of an app"), Args: cobra.ExactArgs(1), ValidArgsFunction: func( diff --git a/cli/app/undeploy.go b/cli/app/undeploy.go index 407d6f4b..fd182068 100644 --- a/cli/app/undeploy.go +++ b/cli/app/undeploy.go @@ -22,6 +22,7 @@ var AppUndeployCommand = &cobra.Command{ // translators: `app undeploy` command Use: i18n.G("undeploy [flags]"), Aliases: []string{i18n.G("un")}, + // translators: Short description for `app undeploy` command Short: i18n.G("Undeploy an app"), Long: i18n.G(`This does not destroy any application data. diff --git a/cli/app/upgrade.go b/cli/app/upgrade.go index a91f336a..d050b8ab 100644 --- a/cli/app/upgrade.go +++ b/cli/app/upgrade.go @@ -29,6 +29,7 @@ var AppUpgradeCommand = &cobra.Command{ // translators: `app upgrade` command Use: i18n.G("upgrade [version] [flags]"), Aliases: []string{i18n.G("up")}, + // translators: Short description for `app upgrade` command Short: i18n.G("Upgrade an app"), Long: i18n.G(`Upgrade an app. diff --git a/cli/app/volume.go b/cli/app/volume.go index fa2a138f..6d000d53 100644 --- a/cli/app/volume.go +++ b/cli/app/volume.go @@ -19,6 +19,7 @@ var AppVolumeListCommand = &cobra.Command{ // translators: `app volume list` command Use: i18n.G("list [flags]"), Aliases: []string{i18n.G("ls")}, + // translators: Short description for `app list` command Short: i18n.G("List volumes associated with an app"), Args: cobra.ExactArgs(1), ValidArgsFunction: func( @@ -76,6 +77,7 @@ var AppVolumeListCommand = &cobra.Command{ var AppVolumeRemoveCommand = &cobra.Command{ // translators: `app volume remove` command Use: i18n.G("remove [volume] [flags]"), + // translators: Short description for `app volume remove` command Short: i18n.G("Remove volume(s) associated with an app"), Long: i18n.G(`Remove volumes associated with an app. diff --git a/cli/catalogue/catalogue.go b/cli/catalogue/catalogue.go index da62333f..b7d1e022 100644 --- a/cli/catalogue/catalogue.go +++ b/cli/catalogue/catalogue.go @@ -25,6 +25,7 @@ var CatalogueSyncCommand = &cobra.Command{ // translators: `catalogue sync` command Use: i18n.G("sync [flags]"), Aliases: []string{i18n.G("g")}, + // translators: Short description for `catalogue sync` command Short: i18n.G("Sync recipe catalogue for latest changes"), Args: cobra.NoArgs, Run: func(cmd *cobra.Command, args []string) { @@ -44,6 +45,7 @@ var CatalogueGenerateCommand = &cobra.Command{ // translators: `catalogue generate` command Use: i18n.G("generate [recipe] [flags]"), Aliases: []string{i18n.G("g")}, + // translators: Short description for `catalogue generate` command Short: i18n.G("Generate the recipe catalogue"), Long: i18n.G(`Generate a new copy of the recipe catalogue. @@ -266,6 +268,7 @@ your private key and enter your passphrase beforehand. var CatalogueCommand = &cobra.Command{ // translators: `catalogue` command group Use: i18n.G("catalogue [cmd] [args] [flags]"), + // translators: Short description for `catalogue` command group Short: i18n.G("Manage the recipe catalogue"), Aliases: []string{"c"}, } diff --git a/cli/complete.go b/cli/complete.go index 49e966eb..731d601b 100644 --- a/cli/complete.go +++ b/cli/complete.go @@ -10,6 +10,7 @@ import ( var AutocompleteCommand = &cobra.Command{ // translators: `autocomplete` command Use: i18n.G("autocomplete [bash|zsh|fish|powershell]"), + // translators: Short description for `autocomplete` command Short: i18n.G("Generate autocompletion script"), Long: i18n.G(`To load completions: diff --git a/cli/recipe/diff.go b/cli/recipe/diff.go index 80718b83..00095bb8 100644 --- a/cli/recipe/diff.go +++ b/cli/recipe/diff.go @@ -13,6 +13,7 @@ var RecipeDiffCommand = &cobra.Command{ // translators: `recipe diff` command Use: i18n.G("diff [flags]"), Aliases: []string{i18n.G("d")}, + // translators: Short description for `recipe diff` command Short: i18n.G("Show unstaged changes in recipe config"), Long: i18n.G("This command requires /usr/bin/git."), Args: cobra.MinimumNArgs(1), diff --git a/cli/recipe/fetch.go b/cli/recipe/fetch.go index 62f2933f..d51d212b 100644 --- a/cli/recipe/fetch.go +++ b/cli/recipe/fetch.go @@ -18,6 +18,7 @@ var RecipeFetchCommand = &cobra.Command{ // translators: `recipe fetch` command Use: i18n.G("fetch [recipe | --all] [flags]"), Aliases: []string{i18n.G("f")}, + // translators: Short description for `recipe fetch` command Short: i18n.G("Clone recipe(s) locally"), Long: i18n.G(`Using "--force/-f" Git syncs an existing recipe. It does not erase unstaged changes.`), Args: cobra.RangeArgs(0, 1), diff --git a/cli/recipe/lint.go b/cli/recipe/lint.go index 6fccb6cd..97df226d 100644 --- a/cli/recipe/lint.go +++ b/cli/recipe/lint.go @@ -13,6 +13,7 @@ import ( var RecipeLintCommand = &cobra.Command{ // translators: `recipe lint` command Use: i18n.G("lint [flags]"), + // translators: Short description for `recipe lint` command Short: i18n.G("Lint a recipe"), Aliases: []string{i18n.G("l")}, Args: cobra.MinimumNArgs(1), diff --git a/cli/recipe/list.go b/cli/recipe/list.go index 2c0e4f81..e057fa67 100644 --- a/cli/recipe/list.go +++ b/cli/recipe/list.go @@ -17,6 +17,7 @@ import ( var RecipeListCommand = &cobra.Command{ // translators: `recipe list` command Use: i18n.G("list"), + // translators: Short description for `recipe list` command Short: i18n.G("List recipes"), Aliases: []string{i18n.G("ls")}, Args: cobra.NoArgs, diff --git a/cli/recipe/recipe.go b/cli/recipe/recipe.go index 1b8a87da..d470be35 100644 --- a/cli/recipe/recipe.go +++ b/cli/recipe/recipe.go @@ -10,6 +10,7 @@ var RecipeCommand = &cobra.Command{ // translators: `recipe` command group Use: i18n.G("recipe [cmd] [args] [flags]"), Aliases: []string{i18n.G("r")}, + // translators: Short description for `recipe` command group Short: i18n.G("Manage recipes"), Long: i18n.G(`A recipe is a blueprint for an app. diff --git a/cli/recipe/release.go b/cli/recipe/release.go index 8cb6f346..cda46e18 100644 --- a/cli/recipe/release.go +++ b/cli/recipe/release.go @@ -27,6 +27,7 @@ var RecipeReleaseCommand = &cobra.Command{ // translators: `recipe release` command Use: i18n.G("release [version] [flags]"), Aliases: []string{i18n.G("rl")}, + // translators: Short description for `recipe release` command Short: i18n.G("Release a new recipe version"), Long: i18n.G(`Create a new version of a recipe. diff --git a/cli/recipe/reset.go b/cli/recipe/reset.go index f6a6a25e..9583c7e1 100644 --- a/cli/recipe/reset.go +++ b/cli/recipe/reset.go @@ -13,6 +13,7 @@ var RecipeResetCommand = &cobra.Command{ // translators: `recipe reset` command Use: i18n.G("reset [flags]"), Aliases: []string{i18n.G("rs")}, + // translators: Short description for `recipe reset` command Short: i18n.G("Remove all unstaged changes from recipe config"), Long: i18n.G("WARNING: this will delete your changes. Be Careful."), Args: cobra.ExactArgs(1), diff --git a/cli/recipe/sync.go b/cli/recipe/sync.go index eba3d158..08b76c18 100644 --- a/cli/recipe/sync.go +++ b/cli/recipe/sync.go @@ -22,6 +22,7 @@ var RecipeSyncCommand = &cobra.Command{ // translators: `recipe sync` command Use: i18n.G("sync [version] [flags]"), Aliases: []string{i18n.G("s")}, + // translators: Short description for `recipe sync` command Short: i18n.G("Sync recipe version label"), Long: i18n.G(`Generate labels for the main recipe service. diff --git a/cli/recipe/upgrade.go b/cli/recipe/upgrade.go index 2a9a7e16..c48daf5c 100644 --- a/cli/recipe/upgrade.go +++ b/cli/recipe/upgrade.go @@ -41,6 +41,7 @@ var RecipeUpgradeCommand = &cobra.Command{ // translators: `recipe upgrade` command Use: i18n.G("upgrade [flags]"), Aliases: []string{i18n.G("u")}, + // translators: Short description for `recipe upgrade` command Short: i18n.G("Upgrade recipe image tags"), Long: i18n.G(`Upgrade a given configuration. diff --git a/cli/recipe/version.go b/cli/recipe/version.go index ad634a31..0d1b2079 100644 --- a/cli/recipe/version.go +++ b/cli/recipe/version.go @@ -17,6 +17,7 @@ var RecipeVersionCommand = &cobra.Command{ // translators: `recipe versions` command Use: i18n.G("versions [flags]"), Aliases: []string{i18n.G("v")}, + // translators: Short description for `recipe versions` command Short: i18n.G("List recipe versions"), Args: cobra.ExactArgs(1), ValidArgsFunction: func( diff --git a/cli/run.go b/cli/run.go index 8f4fc4d3..bde1f2d9 100644 --- a/cli/run.go +++ b/cli/run.go @@ -23,6 +23,7 @@ func Run(version, commit string) { rootCmd := &cobra.Command{ // translators: `abra` binary name Use: i18n.G("abra [cmd] [args] [flags]"), + // translators: Short description for `abra` binary Short: i18n.G("The Co-op Cloud command-line utility belt 🎩🐇"), Version: fmt.Sprintf("%s-%s", version, commit[:7]), ValidArgs: []string{ @@ -82,6 +83,7 @@ func Run(version, commit string) { // translators: `man` command Use: i18n.G("man [flags]"), Aliases: []string{"m"}, + // translators: Short description for `man` command Short: i18n.G("Generate manpage"), Example: i18n.G(` # generate the man pages into /usr/local/share/man/man1 abra_path=$(which abra) # pass abra absolute path to sudo below diff --git a/cli/server/add.go b/cli/server/add.go index 103ba446..e58b4153 100644 --- a/cli/server/add.go +++ b/cli/server/add.go @@ -21,6 +21,7 @@ var ServerAddCommand = &cobra.Command{ // translators: `server add` command Use: i18n.G("add [[server] | --local] [flags]"), Aliases: []string{i18n.G("a")}, + // translators: Short description for `server add` command Short: i18n.G("Add a new server"), Long: i18n.G(`Add a new server to your configuration so that it can be managed by Abra. diff --git a/cli/server/list.go b/cli/server/list.go index 02d0eead..bb0825ee 100644 --- a/cli/server/list.go +++ b/cli/server/list.go @@ -18,6 +18,7 @@ var ServerListCommand = &cobra.Command{ // translators: `server list` command Use: i18n.G("list [flags]"), Aliases: []string{i18n.G("ls")}, + // translators: Short description for `server list` command Short: i18n.G("List managed servers"), Args: cobra.NoArgs, Run: func(cmd *cobra.Command, args []string) { diff --git a/cli/server/prune.go b/cli/server/prune.go index 177ec380..71c4f017 100644 --- a/cli/server/prune.go +++ b/cli/server/prune.go @@ -15,6 +15,7 @@ var ServerPruneCommand = &cobra.Command{ // translators: `server prune` command Use: i18n.G("prune [flags]"), Aliases: []string{i18n.G("p")}, + // translators: Short description for `server prune` command Short: i18n.G("Prune resources on a server"), Long: i18n.G(`Prunes unused containers, networks, and dangling images. diff --git a/cli/server/remove.go b/cli/server/remove.go index 9167164c..cccb607b 100644 --- a/cli/server/remove.go +++ b/cli/server/remove.go @@ -17,6 +17,7 @@ var ServerRemoveCommand = &cobra.Command{ // translators: `server remove` command Use: i18n.G("remove [flags]"), Aliases: []string{i18n.G("rm")}, + // translators: Short description for `server remove` command Short: i18n.G("Remove a managed server"), Long: i18n.G(`Remove a managed server. diff --git a/cli/server/server.go b/cli/server/server.go index 8de5480d..e4f4c8c6 100644 --- a/cli/server/server.go +++ b/cli/server/server.go @@ -10,5 +10,6 @@ var ServerCommand = &cobra.Command{ // translators: `server` command group Use: i18n.G("server [cmd] [args] [flags]"), Aliases: []string{i18n.G("s")}, + // translators: Short description for `server` command group Short: i18n.G("Manage servers"), } diff --git a/cli/updater/updater.go b/cli/updater/updater.go index f2b6ae2e..958dbb8f 100644 --- a/cli/updater/updater.go +++ b/cli/updater/updater.go @@ -35,6 +35,7 @@ var NotifyCommand = &cobra.Command{ // translators: `notify` command Use: i18n.G("notify [flags]"), Aliases: []string{i18n.G("n")}, + // translators: Short description for `notify` command Short: i18n.G("Check for available upgrades"), Long: i18n.G(`Notify on new versions for deployed apps. @@ -75,6 +76,7 @@ var UpgradeCommand = &cobra.Command{ // translators: `app upgrade` command Use: i18n.G("upgrade [[stack] [recipe] | --all] [flags]"), Aliases: []string{i18n.G("u")}, + // translators: Short description for `app upgrade` command Short: i18n.G("Upgrade apps"), Long: i18n.G(`Upgrade an app by specifying stack name and recipe. @@ -473,6 +475,7 @@ func newKadabraApp(version, commit string) *cobra.Command { // translators: `kadabra` binary name Use: i18n.G("kadabra [cmd] [flags]"), Version: fmt.Sprintf("%s-%s", version, commit[:7]), + // translators: Short description for `kababra` binary Short: i18n.G("The Co-op Cloud auto-updater 🤖 🚀"), PersistentPreRun: func(cmd *cobra.Command, args []string) { log.Logger.SetStyles(charmLog.DefaultStyles()) diff --git a/cli/upgrade.go b/cli/upgrade.go index 677ea680..9a54da1c 100644 --- a/cli/upgrade.go +++ b/cli/upgrade.go @@ -16,6 +16,7 @@ var UpgradeCommand = &cobra.Command{ // translators: `upgrade` command Use: i18n.G("upgrade [flags]"), Aliases: []string{"u"}, + // translators: Short description for `upgrade` command Short: i18n.G("Upgrade abra"), Long: i18n.G(`Upgrade abra in-place with the latest stable or release candidate. diff --git a/pkg/i18n/locales/abra.pot b/pkg/i18n/locales/abra.pot index 2f8c67e6..008d6510 100644 --- a/pkg/i18n/locales/abra.pot +++ b/pkg/i18n/locales/abra.pot @@ -7,7 +7,7 @@ msgid "" msgstr "Project-Id-Version: \n" "Report-Msgid-Bugs-To: EMAIL\n" - "POT-Creation-Date: 2025-08-28 16:17+0200\n" + "POT-Creation-Date: 2025-08-28 11:32-0400\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: \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ./cli/app/cp.go:33 +#: ./cli/app/cp.go:34 msgid " # copy myfile.txt to the root of the app service\n" " abra app cp 1312.net myfile.txt app:/\n" "\n" @@ -24,7 +24,7 @@ msgid " # copy myfile.txt to the root of the app service\n" " abra app cp 1312.net app:/myfile.txt ./" msgstr "" -#: ./cli/app/volume.go:90 +#: ./cli/app/volume.go:92 msgid " # delete volumes interactively\n" " abra app volume rm 1312.net\n" "\n" @@ -32,7 +32,7 @@ msgid " # delete volumes interactively\n" " abra app volume rm 1312.net my_volume" msgstr "" -#: ./cli/recipe/fetch.go:24 +#: ./cli/recipe/fetch.go:25 msgid " # fetch from recipe catalogue\n" " abra recipe fetch gitea\n" "\n" @@ -43,7 +43,7 @@ msgid " # fetch from recipe catalogue\n" " abra recipe fetch gitea --ssh" msgstr "" -#: ./cli/run.go:86 +#: ./cli/run.go:88 msgid " # generate the man pages into /usr/local/share/man/man1\n" " abra_path=$(which abra) # pass abra absolute path to sudo below\n" " sudo $abra_path man\n" @@ -54,7 +54,7 @@ msgid " # generate the man pages into /usr/local/share/man/man1\n" " man abra-app-deploy" msgstr "" -#: ./cli/app/secret.go:161 +#: ./cli/app/secret.go:163 msgid " # insert regular secret\n" " abra app secret insert 1312.net my_secret v1 mySuperSecret\n" "\n" @@ -65,7 +65,7 @@ msgid " # insert regular secret\n" " echo \"mmySuperSecret\" | abra app secret insert 1312.net my_secret v1" msgstr "" -#: ./cli/app/list.go:50 +#: ./cli/app/list.go:51 msgid " # list apps of all servers without live status\n" " abra app ls\n" "\n" @@ -76,7 +76,7 @@ msgid " # list apps of all servers without live status\n" " abra app ls -r gitea" msgstr "" -#: ./cli/app/cmd.go:36 +#: ./cli/app/cmd.go:37 msgid " # pass args/flags without \"--\"\n" " abra app cmd 1312.net app my_cmd_arg foo --user bar\n" "\n" @@ -87,7 +87,7 @@ msgid " # pass args/flags without \"--\"\n" " abra app cmd 1312.net my_cmd --local" msgstr "" -#: ./cli/app/restart.go:30 +#: ./cli/app/restart.go:31 msgid " # restart a single app service\n" " abra app restart 1312.net app\n" "\n" @@ -95,7 +95,7 @@ msgid " # restart a single app service\n" " abra app restart 1312.net -a" msgstr "" -#: ./cli/app/run.go:25 +#: ./cli/app/run.go:26 msgid " # run with args/flags\n" " abra app run 1312.net app -- ls -lha\n" "\n" @@ -106,7 +106,7 @@ msgid " # run with args/flags\n" " abra app run 1312.net app --user nobody -- ls -lha" msgstr "" -#: ./cli/app/deploy.go:37 +#: ./cli/app/deploy.go:38 msgid " # standard deployment\n" " abra app deploy 1312.net\n" "\n" @@ -120,31 +120,31 @@ msgid " # standard deployment\n" " abra app deploy 1312.net 886db76d" msgstr "" -#: ./cli/app/env.go:19 +#: ./cli/app/env.go:20 msgid " abra app env 1312.net" msgstr "" -#: ./cli/app/remove.go:39 +#: ./cli/app/remove.go:40 msgid " abra app remove 1312.net" msgstr "" -#: ./cli/app/secret.go:331 +#: ./cli/app/secret.go:334 msgid " abra app secret rm 1312.net oauth_key" msgstr "" -#: ./cli/app/config.go:20 +#: ./cli/app/config.go:21 msgid " abra config 1312.net" msgstr "" -#: ./cli/server/add.go:41 +#: ./cli/server/add.go:42 msgid " abra server add 1312.net" msgstr "" -#: ./cli/upgrade.go:27 +#: ./cli/upgrade.go:28 msgid " abra upgrade --rc" msgstr "" -#: ./cli/app/rollback.go:43 +#: ./cli/app/rollback.go:44 msgid " # standard rollback\n" " abra app rollback 1312.net\n" "\n" @@ -156,7 +156,7 @@ msgstr "" msgid " ago" msgstr "" -#: ./cli/app/remove.go:93 +#: ./cli/app/remove.go:94 #, c-format msgid "%d config(s) removed successfully" msgstr "" @@ -166,17 +166,17 @@ msgstr "" msgid "%d retries failed" msgstr "" -#: ./cli/app/remove.go:140 +#: ./cli/app/remove.go:141 #, c-format msgid "%d volume(s) removed successfully" msgstr "" -#: ./cli/app/volume.go:184 +#: ./cli/app/volume.go:186 #, c-format msgid "%d volumes removed successfully" msgstr "" -#: ./cli/updater/updater.go:233 +#: ./cli/updater/updater.go:235 #, c-format msgid "%s (%s) can be upgraded from version %s to %s" msgstr "" @@ -196,7 +196,7 @@ msgstr "" msgid "%s OVERVIEW" msgstr "" -#: ./cli/server/add.go:121 ./pkg/secret/secret.go:223 ./pkg/secret/secret.go:243 ./pkg/server/server.go:21 +#: ./cli/server/add.go:122 ./pkg/secret/secret.go:223 ./pkg/secret/secret.go:243 ./pkg/server/server.go:21 #, c-format msgid "%s already exists" msgstr "" @@ -206,12 +206,12 @@ msgstr "" msgid "%s already exists?" msgstr "" -#: ./cli/app/new.go:186 +#: ./cli/app/new.go:187 #, c-format msgid "%s created (version: %s)" msgstr "" -#: ./cli/recipe/release.go:147 ./cli/recipe/sync.go:252 ./cli/recipe/upgrade.go:331 +#: ./cli/recipe/release.go:148 ./cli/recipe/sync.go:253 ./cli/recipe/upgrade.go:332 #, c-format msgid "%s currently has these unstaged changes 👇" msgstr "" @@ -221,22 +221,22 @@ msgstr "" msgid "%s does not exist for %s, use /bin/sh as fallback" msgstr "" -#: ./cli/app/cmd.go:109 ./cli/internal/deploy.go:151 +#: ./cli/app/cmd.go:110 ./cli/internal/deploy.go:151 #, c-format msgid "%s does not exist for %s?" msgstr "" -#: ./cli/app/cmd.go:138 +#: ./cli/app/cmd.go:139 #, c-format msgid "%s does not exist locally, use /bin/sh as fallback" msgstr "" -#: ./cli/app/secret.go:81 +#: ./cli/app/secret.go:82 #, c-format msgid "%s doesn't exist in the env config?" msgstr "" -#: ./cli/app/secret.go:427 +#: ./cli/app/secret.go:430 #, c-format msgid "%s doesn't exist on server?" msgstr "" @@ -256,12 +256,12 @@ msgstr "" msgid "%s has been detected as not deployed" msgstr "" -#: ./cli/app/restart.go:133 +#: ./cli/app/restart.go:134 #, c-format msgid "%s has been scaled to 0" msgstr "" -#: ./cli/app/restart.go:144 +#: ./cli/app/restart.go:145 #, c-format msgid "%s has been scaled to 1" msgstr "" @@ -276,12 +276,12 @@ msgstr "" msgid "%s has no main 'app' service?" msgstr "" -#: ./cli/recipe/version.go:54 +#: ./cli/recipe/version.go:55 #, c-format msgid "%s has no published versions?" msgstr "" -#: ./cli/app/new.go:271 +#: ./cli/app/new.go:272 #, c-format msgid "%s has no secrets to generate, skipping..." msgstr "" @@ -296,12 +296,12 @@ msgstr "" msgid "%s inserted into pass store" msgstr "" -#: ./cli/app/deploy.go:97 +#: ./cli/app/deploy.go:98 #, c-format msgid "%s is already deployed" msgstr "" -#: ./cli/recipe/fetch.go:56 +#: ./cli/recipe/fetch.go:57 #, c-format msgid "%s is already fetched" msgstr "" @@ -321,37 +321,37 @@ msgstr "" msgid "%s is missing the TYPE env var?" msgstr "" -#: ./cli/app/rollback.go:279 ./cli/app/rollback.go:283 +#: ./cli/app/rollback.go:280 ./cli/app/rollback.go:284 #, c-format msgid "%s is not a downgrade for %s?" msgstr "" -#: ./cli/app/upgrade.go:401 ./cli/app/upgrade.go:405 +#: ./cli/app/upgrade.go:402 ./cli/app/upgrade.go:406 #, c-format msgid "%s is not an upgrade for %s?" msgstr "" -#: ./cli/app/logs.go:59 ./cli/app/ps.go:57 ./cli/app/restart.go:94 ./cli/app/services.go:50 ./cli/app/undeploy.go:60 ./cli/app/upgrade.go:422 ./cli/updater/updater.go:249 +#: ./cli/app/logs.go:60 ./cli/app/ps.go:58 ./cli/app/restart.go:95 ./cli/app/services.go:51 ./cli/app/undeploy.go:61 ./cli/app/upgrade.go:423 ./cli/updater/updater.go:251 #, c-format msgid "%s is not deployed?" msgstr "" -#: ./cli/server/remove.go:44 +#: ./cli/server/remove.go:45 #, c-format msgid "%s is now lost in time, like tears in rain" msgstr "" -#: ./cli/app/remove.go:74 ./cli/app/volume.go:122 +#: ./cli/app/remove.go:75 ./cli/app/volume.go:124 #, c-format msgid "%s is still deployed. Run \"abra app undeploy %s\"" msgstr "" -#: ./cli/app/deploy.go:167 ./cli/app/upgrade.go:209 +#: ./cli/app/deploy.go:168 ./cli/app/upgrade.go:210 #, c-format msgid "%s missing from %s.env" msgstr "" -#: ./cli/recipe/upgrade.go:146 +#: ./cli/recipe/upgrade.go:147 #, c-format msgid "%s not considered semver-like" msgstr "" @@ -376,7 +376,7 @@ msgstr "" msgid "%s removed from pass store" msgstr "" -#: ./cli/app/new.go:135 +#: ./cli/app/new.go:136 #, c-format msgid "%s sanitised as %s for new app" msgstr "" @@ -386,17 +386,17 @@ msgstr "" msgid "%s service is missing image tag?" msgstr "" -#: ./cli/app/restart.go:145 +#: ./cli/app/restart.go:146 #, c-format msgid "%s service successfully restarted" msgstr "" -#: ./cli/server/add.go:112 +#: ./cli/server/add.go:113 #, c-format msgid "%s successfully added" msgstr "" -#: ./cli/app/secret.go:244 +#: ./cli/app/secret.go:246 #, c-format msgid "%s successfully stored on server" msgstr "" @@ -476,21 +476,21 @@ msgstr "" msgid "%s: waiting %d seconds before next retry" msgstr "" -#: ./cli/app/upgrade.go:396 +#: ./cli/app/upgrade.go:397 #, c-format msgid "'%s' is not a known version" msgstr "" -#: ./cli/app/rollback.go:274 ./cli/app/upgrade.go:391 +#: ./cli/app/rollback.go:275 ./cli/app/upgrade.go:392 #, c-format msgid "'%s' is not a known version for %s" msgstr "" -#: ./cli/app/volume.go:164 +#: ./cli/app/volume.go:166 msgid "'x' indicates selected, enter / return to confirm, ctrl-c to exit, vim mode is enabled" msgstr "" -#: ./cli/app/cmd.go:120 +#: ./cli/app/cmd.go:121 #, c-format msgid "--local detected, running %s on local work station" msgstr "" @@ -503,7 +503,7 @@ msgstr "" msgid "A community managed recipe template is used." msgstr "" -#: ./cli/recipe/recipe.go:14 +#: ./cli/recipe/recipe.go:15 msgid "A recipe is a blueprint for an app.\n" "\n" "It is a bunch of config files which describe how to deploy and maintain an app.\n" @@ -515,20 +515,21 @@ msgid "A recipe is a blueprint for an app.\n" "manner." msgstr "" -#: ./cli/app/remove.go:51 +#: ./cli/app/remove.go:52 #, c-format msgid "ALERTA ALERTA: deleting %s data and config (local/remote)" msgstr "" -#: ./cli/app/list.go:224 +#: ./cli/app/list.go:225 msgid "AUTOUPDATE" msgstr "" -#: ./cli/server/add.go:24 +#. translators: Short description for `server add` command +#: ./cli/server/add.go:25 msgid "Add a new server" msgstr "" -#: ./cli/server/add.go:25 +#: ./cli/server/add.go:26 msgid "Add a new server to your configuration so that it can be managed by Abra.\n" "\n" "Abra relies on the standard SSH command-line and ~/.ssh/config for client\n" @@ -547,15 +548,15 @@ msgid "Add a new server to your configuration so that it can be managed by Abr "developer machine. The domain is then set to \"default\"." msgstr "" -#: ./cli/app/labels.go:27 +#: ./cli/app/labels.go:28 msgid "Both local recipe and live deployment labels are shown." msgstr "" -#: ./cli/app/backup.go:293 ./cli/app/backup.go:309 ./cli/app/check.go:89 ./cli/app/cmd.go:275 ./cli/app/cp.go:380 ./cli/app/deploy.go:326 ./cli/app/labels.go:137 ./cli/app/new.go:367 ./cli/app/ps.go:208 ./cli/app/restart.go:156 ./cli/app/restore.go:133 ./cli/app/secret.go:548 ./cli/app/secret.go:588 ./cli/app/secret.go:612 ./cli/app/secret.go:620 ./cli/catalogue/catalogue.go:306 ./cli/recipe/lint.go:130 ./cli/updater/updater.go:541 +#: ./cli/app/backup.go:298 ./cli/app/backup.go:314 ./cli/app/check.go:90 ./cli/app/cmd.go:277 ./cli/app/cp.go:381 ./cli/app/deploy.go:327 ./cli/app/labels.go:138 ./cli/app/new.go:368 ./cli/app/ps.go:209 ./cli/app/restart.go:157 ./cli/app/restore.go:134 ./cli/app/secret.go:553 ./cli/app/secret.go:593 ./cli/app/secret.go:617 ./cli/app/secret.go:625 ./cli/catalogue/catalogue.go:309 ./cli/recipe/lint.go:131 ./cli/updater/updater.go:544 msgid "C" msgstr "" -#: ./cli/app/list.go:221 ./cli/app/ps.go:184 +#: ./cli/app/list.go:222 ./cli/app/ps.go:185 msgid "CHAOS" msgstr "" @@ -582,7 +583,7 @@ msgstr "" msgid "CONFIG" msgstr "" -#: ./cli/app/secret.go:461 +#: ./cli/app/secret.go:465 msgid "CREATED ON SERVER" msgstr "" @@ -590,19 +591,22 @@ msgstr "" msgid "CURRENT DEPLOYMENT" msgstr "" -#: ./cli/app/ps.go:31 +#. translators: Short description for `app ps` command +#: ./cli/app/ps.go:32 msgid "Check app deployment status" msgstr "" -#: ./cli/updater/updater.go:38 +#. translators: Short description for `notify` command +#: ./cli/updater/updater.go:39 msgid "Check for available upgrades" msgstr "" -#: ./cli/recipe/fetch.go:21 +#. translators: Short description for `recipe fetch` command +#: ./cli/recipe/fetch.go:22 msgid "Clone recipe(s) locally" msgstr "" -#: ./cli/app/check.go:21 +#: ./cli/app/check.go:22 msgid "Compare env vars in both the app \".env\" and recipe \".env.sample\" file.\n" "\n" "The goal is to ensure that recipe \".env.sample\" env vars are defined in your\n" @@ -615,11 +619,13 @@ msgid "Compare env vars in both the app \".env\" and recipe \".env.sample\" fi "${FOO:} syntax). \"check\" does not confirm or deny this for you." msgstr "" -#: ./cli/app/cp.go:32 +#. translators: Short description for `app cp` command +#: ./cli/app/cp.go:33 msgid "Copy files to/from a deployed app service" msgstr "" -#: ./cli/app/new.go:49 +#. translators: Short description for `app new` command +#: ./cli/app/new.go:50 msgid "Create a new app" msgstr "" @@ -627,11 +633,12 @@ msgstr "" msgid "Create a new recipe" msgstr "" -#: ./cli/app/backup.go:139 +#. translators: Short description for `app backup create` command +#: ./cli/app/backup.go:142 msgid "Create a new snapshot" msgstr "" -#: ./cli/recipe/release.go:31 +#: ./cli/recipe/release.go:32 msgid "Create a new version of a recipe.\n" "\n" "These versions are then published on the Co-op Cloud recipe catalogue. These\n" @@ -686,7 +693,7 @@ msgid "Creates a new app from a default recipe.\n" "on your $PATH." msgstr "" -#: ./cli/app/deploy.go:342 ./cli/app/new.go:343 ./cli/app/rollback.go:331 ./cli/app/upgrade.go:442 +#: ./cli/app/deploy.go:343 ./cli/app/new.go:344 ./cli/app/rollback.go:332 ./cli/app/upgrade.go:443 msgid "D" msgstr "" @@ -694,11 +701,11 @@ msgstr "" msgid "DEPLOY" msgstr "" -#: ./cli/app/labels.go:54 +#: ./cli/app/labels.go:55 msgid "DEPLOYED LABELS" msgstr "" -#: ./cli/app/list.go:217 ./cli/internal/deploy.go:75 +#: ./cli/app/list.go:218 ./cli/internal/deploy.go:75 msgid "DOMAIN" msgstr "" @@ -706,11 +713,12 @@ msgstr "" msgid "DOWNGRADE" msgstr "" -#: ./cli/app/deploy.go:31 +#. translators: Short description for `app deploy` command +#: ./cli/app/deploy.go:32 msgid "Deploy an app" msgstr "" -#: ./cli/app/deploy.go:32 +#: ./cli/app/deploy.go:33 msgid "Deploy an app.\n" "\n" "This command supports chaos operations. Use \"--chaos/-C\" to deploy your recipe\n" @@ -718,22 +726,24 @@ msgid "Deploy an app.\n" "\"[version]\". Please note, \"upgrade\"/\"rollback\" do not support chaos operations." msgstr "" -#: ./cli/app/services.go:24 +#. translators: Short description for `app services` command +#: ./cli/app/services.go:25 msgid "Display all services of an app" msgstr "" -#: ./cli/app/backup.go:69 +#. translators: Short description for `app backup download` command +#: ./cli/app/backup.go:71 msgid "Download a snapshot" msgstr "" -#: ./cli/app/backup.go:70 +#: ./cli/app/backup.go:72 msgid "Downloads a backup.tar.gz to the current working directory.\n" "\n" "\"--volumes/-v\" includes data contained in volumes alongide paths specified in\n" "\"backupbot.backup.path\" labels." msgstr "" -#: ./cli/app/env.go:42 +#: ./cli/app/env.go:43 msgid "ENV OVERVIEW" msgstr "" @@ -741,11 +751,13 @@ msgstr "" msgid "ENV VERSION" msgstr "" -#: ./cli/app/config.go:19 +#. translators: Short description for `app config` command +#: ./cli/app/config.go:20 msgid "Edit app config" msgstr "" -#: ./cli/app/check.go:20 +#. translators: Short description for `app check` command +#: ./cli/app/check.go:21 msgid "Ensure an app is well configured" msgstr "" @@ -758,11 +770,11 @@ msgstr "" msgid "Error monitoring TTY size:" msgstr "" -#: ./cli/app/secret.go:461 +#: ./cli/app/secret.go:465 msgid "GENERATED NAME" msgstr "" -#: ./cli/catalogue/catalogue.go:48 +#: ./cli/catalogue/catalogue.go:50 msgid "Generate a new copy of the recipe catalogue.\n" "\n" "N.B. this command **will** wipe local unstaged changes from your local recipes\n" @@ -786,21 +798,22 @@ msgid "Generate a new copy of the recipe catalogue.\n" " ssh-add ~/.ssh/" msgstr "" -#: ./cli/app/list.go:47 +#: ./cli/app/list.go:48 msgid "Generate a report of all managed apps.\n" "\n" "Use \"--status/-S\" flag to query all servers for the live deployment status." msgstr "" -#: ./cli/app/new.go:277 +#: ./cli/app/new.go:278 msgid "Generate app secrets?" msgstr "" -#: ./cli/complete.go:13 +#. translators: Short description for `autocomplete` command +#: ./cli/complete.go:14 msgid "Generate autocompletion script" msgstr "" -#: ./cli/recipe/sync.go:26 +#: ./cli/recipe/sync.go:27 msgid "Generate labels for the main recipe service.\n" "\n" "By convention, the service named \"app\" using the following format:\n" @@ -812,15 +825,18 @@ msgid "Generate labels for the main recipe service.\n" "local file system." msgstr "" -#: ./cli/run.go:85 +#. translators: Short description for `man` command +#: ./cli/run.go:87 msgid "Generate manpage" msgstr "" -#: ./cli/app/secret.go:31 +#. translators: Short description for `app secret generate` command +#: ./cli/app/secret.go:32 msgid "Generate secrets" msgstr "" -#: ./cli/catalogue/catalogue.go:47 +#. translators: Short description for `catalogue generate` command +#: ./cli/catalogue/catalogue.go:49 msgid "Generate the recipe catalogue" msgstr "" @@ -832,91 +848,108 @@ msgstr "" msgid "Git email name to do commits with" msgstr "" -#: ./cli/app/restore.go:125 +#: ./cli/app/restore.go:126 msgid "H" msgstr "" -#: ./cli/server/list.go:35 +#: ./cli/server/list.go:36 msgid "HOST" msgstr "" -#: ./cli/app/ps.go:182 ./cli/recipe/version.go:63 +#: ./cli/app/ps.go:183 ./cli/recipe/version.go:64 msgid "IMAGE" msgstr "" -#: ./cli/app/secret.go:152 +#. translators: Short description for `app secret insert` command +#: ./cli/app/secret.go:154 msgid "Insert secret" msgstr "" -#: ./cli/app/labels.go:103 +#: ./cli/app/labels.go:104 msgid "LABELS OVERVIEW" msgstr "" -#: ./cli/recipe/lint.go:16 +#. translators: Short description for `recipe lint` command +#: ./cli/recipe/lint.go:17 msgid "Lint a recipe" msgstr "" -#: ./cli/app/cmd.go:200 +#. translators: Short description for `app cmd list` command +#: ./cli/app/cmd.go:202 msgid "List all available commands" msgstr "" -#: ./cli/app/list.go:46 +#. translators: Short description for `app list` command +#: ./cli/app/list.go:47 msgid "List all managed apps" msgstr "" -#: ./cli/app/secret.go:440 +#. translators: Short description for `app secret list` command +#: ./cli/app/secret.go:444 msgid "List all secrets" msgstr "" -#: ./cli/app/backup.go:184 +#. translators: Short description for `app backup snapshots` command +#: ./cli/app/backup.go:188 msgid "List all snapshots" msgstr "" -#: ./cli/server/list.go:21 +#. translators: Short description for `server list` command +#: ./cli/server/list.go:22 msgid "List managed servers" msgstr "" -#: ./cli/recipe/version.go:20 +#. translators: Short description for `recipe versions` command +#: ./cli/recipe/version.go:21 msgid "List recipe versions" msgstr "" -#: ./cli/recipe/list.go:20 +#. translators: Short description for `recipe list` command +#: ./cli/recipe/list.go:21 msgid "List recipes" msgstr "" -#: ./cli/app/backup.go:18 +#. translators: Short description for `app backup list` command +#: ./cli/app/backup.go:19 msgid "List the contents of a snapshot" msgstr "" -#: ./cli/app/volume.go:22 +#. translators: Short description for `app list` command +#: ./cli/app/volume.go:23 msgid "List volumes associated with an app" msgstr "" -#: ./cli/app/backup.go:220 +#. translators: Short description for `app backup` command group +#: ./cli/app/backup.go:225 msgid "Manage app backups" msgstr "" -#: ./cli/app/secret.go:516 +#. translators: Short description for `app secret` command group +#: ./cli/app/secret.go:521 msgid "Manage app secrets" msgstr "" -#: ./cli/app/volume.go:195 +#: ./cli/app/volume.go:197 msgid "Manage app volumes" msgstr "" -#: ./cli/app/app.go:12 +#. translators: Short description for `app` command group +#: ./cli/app/app.go:13 msgid "Manage apps" msgstr "" -#: ./cli/recipe/recipe.go:13 +#. translators: Short description for `recipe` command group +#: ./cli/recipe/recipe.go:14 msgid "Manage recipes" msgstr "" -#: ./cli/server/server.go:13 +#. translators: Short description for `server` command group +#: ./cli/server/server.go:14 msgid "Manage servers" msgstr "" -#: ./cli/catalogue/catalogue.go:269 +#. translators: Short description for `catalogue` command group +#: ./cli/catalogue/catalogue.go:272 msgid "Manage the recipe catalogue" msgstr "" @@ -924,7 +957,7 @@ msgstr "" msgid "N" msgstr "" -#: ./cli/app/secret.go:112 ./cli/app/secret.go:461 ./cli/app/volume.go:48 ./cli/recipe/version.go:104 ./cli/server/list.go:35 +#: ./cli/app/secret.go:113 ./cli/app/secret.go:465 ./cli/app/volume.go:49 ./cli/recipe/version.go:105 ./cli/server/list.go:36 msgid "NAME" msgstr "" @@ -936,15 +969,15 @@ msgstr "" msgid "NEW DEPLOYMENT" msgstr "" -#: ./cli/app/secret.go:142 +#: ./cli/app/secret.go:143 msgid "NOT" msgstr "" -#: ./cli/app/secret.go:143 +#: ./cli/app/secret.go:144 msgid "NOW" msgstr "" -#: ./cli/updater/updater.go:39 +#: ./cli/updater/updater.go:40 msgid "Notify on new versions for deployed apps.\n" "\n" "If a new patch/minor version is available, a notification is printed.\n" @@ -952,19 +985,20 @@ msgid "Notify on new versions for deployed apps.\n" "Use \"--major/-m\" to include new major versions." msgstr "" -#: ./cli/app/volume.go:48 +#: ./cli/app/volume.go:49 msgid "ON SERVER" msgstr "" -#: ./cli/recipe/sync.go:129 +#: ./cli/recipe/sync.go:130 msgid "PROPOSED CHANGES" msgstr "" -#: ./cli/server/prune.go:18 +#. translators: Short description for `server prune` command +#: ./cli/server/prune.go:19 msgid "Prune resources on a server" msgstr "" -#: ./cli/server/prune.go:19 +#: ./cli/server/prune.go:20 msgid "Prunes unused containers, networks, and dangling images.\n" "\n" "Use \"--volumes/-v\" to remove volumes that are not associated with a deployed\n" @@ -975,23 +1009,25 @@ msgstr "" msgid "README.md metadata filled in" msgstr "" -#: ./cli/app/list.go:217 ./cli/internal/deploy.go:76 +#: ./cli/app/list.go:218 ./cli/internal/deploy.go:76 msgid "RECIPE" msgstr "" -#: ./cli/app/labels.go:75 +#: ./cli/app/labels.go:76 msgid "RECIPE LABELS" msgstr "" -#: ./cli/recipe/release.go:30 +#. translators: Short description for `recipe release` command +#: ./cli/recipe/release.go:31 msgid "Release a new recipe version" msgstr "" -#: ./cli/server/remove.go:20 +#. translators: Short description for `server remove` command +#: ./cli/server/remove.go:21 msgid "Remove a managed server" msgstr "" -#: ./cli/server/remove.go:21 +#: ./cli/server/remove.go:22 msgid "Remove a managed server.\n" "\n" "Abra will remove the internal bookkeeping ($ABRA_DIR/servers/...) and\n" @@ -999,19 +1035,22 @@ msgid "Remove a managed server.\n" "like tears in rain." msgstr "" -#: ./cli/app/secret.go:326 +#. translators: Short description for `app secret remove` command +#: ./cli/app/secret.go:329 msgid "Remove a secret" msgstr "" -#: ./cli/app/remove.go:22 +#. translators: Short description for `app remove` command +#: ./cli/app/remove.go:23 msgid "Remove all app data, locally and remotely" msgstr "" -#: ./cli/recipe/reset.go:16 +#. translators: Short description for `recipe reset` command +#: ./cli/recipe/reset.go:17 msgid "Remove all unstaged changes from recipe config" msgstr "" -#: ./cli/app/remove.go:23 +#: ./cli/app/remove.go:24 msgid "Remove everything related to an app which is already undeployed.\n" "\n" "By default, it will prompt for confirmation before proceeding. All secrets,\n" @@ -1030,11 +1069,12 @@ msgid "Remove everything related to an app which is already undeployed.\n" "flag." msgstr "" -#: ./cli/app/volume.go:79 +#. translators: Short description for `app volume remove` command +#: ./cli/app/volume.go:81 msgid "Remove volume(s) associated with an app" msgstr "" -#: ./cli/app/volume.go:80 +#: ./cli/app/volume.go:82 msgid "Remove volumes associated with an app.\n" "\n" "The app in question must be undeployed before you try to remove volumes. See\n" @@ -1047,23 +1087,27 @@ msgid "Remove volumes associated with an app.\n" "Passing \"--force/-f\" will select all volumes for removal. Be careful." msgstr "" -#: ./cli/app/restart.go:24 +#. translators: Short description for `app restart` command +#: ./cli/app/restart.go:25 msgid "Restart an app" msgstr "" -#: ./cli/app/restore.go:19 +#. translators: Short description for `app restore` command +#: ./cli/app/restore.go:20 msgid "Restore a snapshot" msgstr "" -#: ./cli/app/rollback.go:28 +#. translators: Short description for `app rollback` command +#: ./cli/app/rollback.go:29 msgid "Roll an app back to a previous version" msgstr "" -#: ./cli/app/run.go:24 +#. translators: Short description for `app run` command +#: ./cli/app/run.go:25 msgid "Run a command inside a service container" msgstr "" -#: ./cli/app/cmd.go:26 +#: ./cli/app/cmd.go:27 msgid "Run an app specific command.\n" "\n" "These commands are bash functions, defined in the abra.sh of the recipe itself.\n" @@ -1076,31 +1120,32 @@ msgid "Run an app specific command.\n" "does not)." msgstr "" -#: ./cli/app/cmd.go:25 +#. translators: Short description for `app cmd` command +#: ./cli/app/cmd.go:26 msgid "Run app commands" msgstr "" -#: ./cli/app/backup.go:277 ./cli/app/list.go:290 ./cli/app/logs.go:103 ./cli/app/new.go:359 +#: ./cli/app/backup.go:282 ./cli/app/list.go:291 ./cli/app/logs.go:104 ./cli/app/new.go:360 msgid "S" msgstr "" -#: ./cli/app/new.go:194 +#: ./cli/app/new.go:195 msgid "SECRETS OVERVIEW" msgstr "" -#: ./cli/app/list.go:217 ./cli/internal/deploy.go:77 +#: ./cli/app/list.go:218 ./cli/internal/deploy.go:77 msgid "SERVER" msgstr "" -#: ./cli/app/ps.go:180 ./cli/recipe/sync.go:129 ./cli/recipe/version.go:63 ./cli/recipe/version.go:104 +#: ./cli/app/ps.go:181 ./cli/recipe/sync.go:130 ./cli/recipe/version.go:64 ./cli/recipe/version.go:105 msgid "SERVICE" msgstr "" -#: ./cli/app/services.go:68 +#: ./cli/app/services.go:69 msgid "SERVICE (LONG)" msgstr "" -#: ./cli/app/services.go:68 +#: ./cli/app/services.go:69 msgid "SERVICE (SHORT)" msgstr "" @@ -1109,15 +1154,15 @@ msgstr "" msgid "SSH host key verification failed for %s" msgstr "" -#: ./cli/recipe/list.go:45 +#: ./cli/recipe/list.go:46 msgid "SSO" msgstr "" -#: ./cli/app/list.go:220 ./cli/app/ps.go:181 +#: ./cli/app/list.go:221 ./cli/app/ps.go:182 msgid "STATUS" msgstr "" -#: ./cli/app/new.go:302 +#: ./cli/app/new.go:303 msgid "Select app server:" msgstr "" @@ -1125,19 +1170,22 @@ msgstr "" msgid "Select recipe" msgstr "" -#: ./cli/app/env.go:18 +#. translators: Short description for `app env` command +#: ./cli/app/env.go:19 msgid "Show app .env values" msgstr "" -#: ./cli/app/labels.go:26 +#. translators: Short description for `app labels` command +#: ./cli/app/labels.go:27 msgid "Show deployment labels" msgstr "" -#: ./cli/recipe/diff.go:16 +#. translators: Short description for `recipe diff` command +#: ./cli/recipe/diff.go:17 msgid "Show unstaged changes in recipe config" msgstr "" -#: ./cli/app/restore.go:20 +#: ./cli/app/restore.go:21 msgid "Snapshots are restored while apps are deployed.\n" "\n" "Some restore scenarios may require service / app restarts." @@ -1151,39 +1199,44 @@ msgstr "" msgid "Specify a server name" msgstr "" -#: ./cli/app/new.go:253 +#: ./cli/app/new.go:254 msgid "Specify app domain" msgstr "" -#: ./cli/catalogue/catalogue.go:28 +#. translators: Short description for `catalogue sync` command +#: ./cli/catalogue/catalogue.go:29 msgid "Sync recipe catalogue for latest changes" msgstr "" -#: ./cli/recipe/sync.go:25 +#. translators: Short description for `recipe sync` command +#: ./cli/recipe/sync.go:26 msgid "Sync recipe version label" msgstr "" -#: ./cli/app/cmd.go:267 +#: ./cli/app/cmd.go:269 msgid "T" msgstr "" -#: ./cli/recipe/version.go:63 ./cli/recipe/version.go:104 +#: ./cli/recipe/version.go:64 ./cli/recipe/version.go:105 msgid "TAG" msgstr "" -#: ./cli/app/logs.go:21 +#. translators: Short description for `app logs` command +#: ./cli/app/logs.go:22 msgid "Tail app logs" msgstr "" -#: ./cli/updater/updater.go:476 +#. translators: Short description for `kababra` binary +#: ./cli/updater/updater.go:479 msgid "The Co-op Cloud auto-updater 🤖 🚀" msgstr "" -#: ./cli/run.go:26 +#. translators: Short description for `abra` binary +#: ./cli/run.go:27 msgid "The Co-op Cloud command-line utility belt 🎩🐇" msgstr "" -#: ./cli/app/secret.go:153 +#: ./cli/app/secret.go:155 msgid "This command inserts a secret into an app environment.\n" "\n" "Arbitrary secret insertion is not supported. Secrets that are inserted must\n" @@ -1194,18 +1247,18 @@ msgid "This command inserts a secret into an app environment.\n" "(see \"abra app new --secrets/-S\" for more)." msgstr "" -#: ./cli/app/secret.go:327 +#: ./cli/app/secret.go:330 msgid "This command removes a secret from an app environment.\n" "\n" "Arbitrary secret removal is not supported. Secrets that are removed must\n" "match those configured in the recipe beforehand." msgstr "" -#: ./cli/recipe/diff.go:17 +#: ./cli/recipe/diff.go:18 msgid "This command requires /usr/bin/git." msgstr "" -#: ./cli/app/restart.go:25 +#: ./cli/app/restart.go:26 msgid "This command restarts services within a deployed app.\n" "\n" "Run \"abra app ps \" to see a list of service names.\n" @@ -1213,7 +1266,7 @@ msgid "This command restarts services within a deployed app.\n" "Pass \"--all-services/-a\" to restart all services." msgstr "" -#: ./cli/app/rollback.go:29 +#: ./cli/app/rollback.go:30 msgid "This command rolls an app back to a previous version.\n" "\n" "Unlike \"abra app deploy\", chaos operations are not supported here. Only recipe\n" @@ -1230,7 +1283,7 @@ msgid "This command rolls an app back to a previous version.\n" "beforehand. See \"abra app backup\" for more." msgstr "" -#: ./cli/app/undeploy.go:26 +#: ./cli/app/undeploy.go:27 msgid "This does not destroy any application data.\n" "\n" "However, you should remain vigilant, as your swarm installation will consider\n" @@ -1239,7 +1292,7 @@ msgid "This does not destroy any application data.\n" "Passing \"--prune/-p\" does not remove those volumes." msgstr "" -#: ./cli/complete.go:14 +#: ./cli/complete.go:15 msgid "To load completions:\n" "\n" "Bash:\n" @@ -1285,15 +1338,16 @@ msgstr "" msgid "UNDEPLOY" msgstr "" -#: ./cli/app/list.go:223 ./cli/internal/deploy.go:140 +#: ./cli/app/list.go:224 ./cli/internal/deploy.go:140 msgid "UPGRADE" msgstr "" -#: ./cli/app/undeploy.go:25 +#. translators: Short description for `app undeploy` command +#: ./cli/app/undeploy.go:26 msgid "Undeploy an app" msgstr "" -#: ./cli/recipe/upgrade.go:45 +#: ./cli/recipe/upgrade.go:46 msgid "Upgrade a given configuration.\n" "\n" "It will update the relevant compose file tags on the local file system.\n" @@ -1309,11 +1363,12 @@ msgid "Upgrade a given configuration.\n" "You may invoke this command in \"wizard\" mode and be prompted for input." msgstr "" -#: ./cli/upgrade.go:19 +#. translators: Short description for `upgrade` command +#: ./cli/upgrade.go:20 msgid "Upgrade abra" msgstr "" -#: ./cli/upgrade.go:20 +#: ./cli/upgrade.go:21 msgid "Upgrade abra in-place with the latest stable or release candidate.\n" "\n" "By default, the latest stable release is downloaded.\n" @@ -1323,11 +1378,12 @@ msgid "Upgrade abra in-place with the latest stable or release candidate.\n" "for the testing efforts 💗" msgstr "" -#: ./cli/app/upgrade.go:32 +#. translators: Short description for `app upgrade` command +#: ./cli/app/upgrade.go:33 msgid "Upgrade an app" msgstr "" -#: ./cli/updater/updater.go:79 +#: ./cli/updater/updater.go:81 msgid "Upgrade an app by specifying stack name and recipe. \n" "\n" "Use \"--all\" to upgrade every deployed app.\n" @@ -1342,7 +1398,7 @@ msgid "Upgrade an app by specifying stack name and recipe. \n" "with care." msgstr "" -#: ./cli/app/upgrade.go:33 +#: ./cli/app/upgrade.go:34 msgid "Upgrade an app.\n" "\n" "Unlike \"abra app deploy\", chaos operations are not supported here. Only recipe\n" @@ -1359,31 +1415,33 @@ msgid "Upgrade an app.\n" "beforehand. See \"abra app backup\" for more." msgstr "" -#: ./cli/updater/updater.go:78 +#. translators: Short description for `app upgrade` command +#: ./cli/updater/updater.go:80 msgid "Upgrade apps" msgstr "" -#: ./cli/recipe/upgrade.go:44 +#. translators: Short description for `recipe upgrade` command +#: ./cli/recipe/upgrade.go:45 msgid "Upgrade recipe image tags" msgstr "" -#: ./cli/recipe/release.go:319 +#: ./cli/recipe/release.go:320 msgid "Use release note in release/next?" msgstr "" -#: ./cli/recipe/fetch.go:22 +#: ./cli/recipe/fetch.go:23 msgid "Using \"--force/-f\" Git syncs an existing recipe. It does not erase unstaged changes." msgstr "" -#: ./cli/app/secret.go:112 +#: ./cli/app/secret.go:113 msgid "VALUE" msgstr "" -#: ./cli/app/list.go:222 ./cli/app/ps.go:183 ./cli/app/secret.go:461 ./cli/recipe/version.go:63 ./cli/recipe/version.go:104 +#: ./cli/app/list.go:223 ./cli/app/ps.go:184 ./cli/app/secret.go:465 ./cli/recipe/version.go:64 ./cli/recipe/version.go:105 msgid "VERSION" msgstr "" -#: ./cli/recipe/reset.go:17 +#: ./cli/recipe/reset.go:18 msgid "WARNING: this will delete your changes. Be Careful." msgstr "" @@ -1395,7 +1453,7 @@ msgstr "" msgid "[hijack] end of stdout" msgstr "" -#: ./cli/recipe/sync.go:79 +#: ./cli/recipe/sync.go:80 #, c-format msgid "\n" "The following options are two types of initial semantic version that you can\n" @@ -1456,11 +1514,11 @@ msgstr "" msgid "^%s" msgstr "" -#: ./cli/app/app.go:11 ./cli/app/backup.go:245 ./cli/app/restart.go:163 ./cli/app/secret.go:556 ./cli/app/secret.go:596 ./cli/recipe/fetch.go:116 ./cli/recipe/upgrade.go:379 ./cli/server/add.go:23 ./cli/server/prune.go:92 ./cli/updater/updater.go:557 +#: ./cli/app/app.go:11 ./cli/app/backup.go:250 ./cli/app/restart.go:164 ./cli/app/secret.go:561 ./cli/app/secret.go:601 ./cli/recipe/fetch.go:117 ./cli/recipe/upgrade.go:380 ./cli/server/add.go:23 ./cli/server/prune.go:93 ./cli/updater/updater.go:560 msgid "a" msgstr "" -#: ./cli/app/remove.go:60 +#: ./cli/app/remove.go:61 msgid "aborting as requested" msgstr "" @@ -1469,11 +1527,11 @@ msgstr "" msgid "abra [cmd] [args] [flags]" msgstr "" -#: ./cli/app/labels.go:28 +#: ./cli/app/labels.go:29 msgid "abra app labels 1312.net" msgstr "" -#: ./cli/run.go:70 +#: ./cli/run.go:71 #, c-format msgid "abra version: %s, commit: %s, lang: %s" msgstr "" @@ -1483,7 +1541,7 @@ msgstr "" msgid "abra.sh: %s}" msgstr "" -#: ./cli/app/cmd.go:52 +#: ./cli/app/cmd.go:53 msgid "accepts at most 2 args with --local/-l" msgstr "" @@ -1497,7 +1555,7 @@ msgstr "" msgid "add [[server] | --local] [flags]" msgstr "" -#: ./cli/recipe/release.go:353 +#: ./cli/recipe/release.go:354 msgid "add release note? (leave empty to skip)" msgstr "" @@ -1506,7 +1564,7 @@ msgstr "" msgid "adding env vars to %s service config" msgstr "" -#: ./cli/app/backup.go:244 ./cli/app/secret.go:555 ./cli/app/secret.go:595 ./cli/recipe/fetch.go:115 ./cli/server/prune.go:91 ./cli/updater/updater.go:556 +#: ./cli/app/backup.go:249 ./cli/app/secret.go:560 ./cli/app/secret.go:600 ./cli/recipe/fetch.go:116 ./cli/server/prune.go:92 ./cli/updater/updater.go:559 msgid "all" msgstr "" @@ -1526,11 +1584,11 @@ msgstr "" msgid "all tasks reached terminal state" msgstr "" -#: ./cli/app/restart.go:162 +#: ./cli/app/restart.go:163 msgid "all-services" msgstr "" -#: ./cli/recipe/upgrade.go:378 +#: ./cli/recipe/upgrade.go:379 msgid "all-tags" msgstr "" @@ -1542,7 +1600,7 @@ msgstr "" msgid "ambiguous service list received, prompting for input" msgstr "" -#: ./cli/run.go:29 +#: ./cli/run.go:30 msgid "app" msgstr "" @@ -1556,11 +1614,11 @@ msgstr "" msgid "app domain %s (%s) does not appear to resolve to app server %s (%s)?" msgstr "" -#: ./cli/recipe/release.go:221 +#: ./cli/recipe/release.go:222 msgid "app service is missing image tag?" msgstr "" -#: ./cli/app/remove.go:54 +#: ./cli/app/remove.go:55 msgid "are you sure?" msgstr "" @@ -1569,7 +1627,7 @@ msgstr "" msgid "attempting to checkout '%s' as chaos commit" msgstr "" -#: ./cli/server/add.go:77 ./cli/server/add.go:104 +#: ./cli/server/add.go:78 ./cli/server/add.go:105 #, c-format msgid "attempting to create client for %s" msgstr "" @@ -1579,27 +1637,27 @@ msgstr "" msgid "attempting to generate and store %s on %s" msgstr "" -#: ./cli/upgrade.go:38 ./pkg/secret/pass.go:23 ./pkg/secret/pass.go:45 +#: ./cli/upgrade.go:39 ./pkg/secret/pass.go:23 ./pkg/secret/pass.go:45 #, c-format msgid "attempting to run %s" msgstr "" -#: ./cli/app/deploy.go:230 ./cli/app/upgrade.go:268 +#: ./cli/app/deploy.go:231 ./cli/app/upgrade.go:269 #, c-format msgid "attempting to run post deploy commands, saw: %s" msgstr "" -#: ./cli/app/restart.go:109 +#: ./cli/app/restart.go:110 #, c-format msgid "attempting to scale %s to 0" msgstr "" -#: ./cli/app/restart.go:134 +#: ./cli/app/restart.go:135 #, c-format msgid "attempting to scale %s to 1" msgstr "" -#: ./cli/run.go:30 +#: ./cli/run.go:31 msgid "autocomplete" msgstr "" @@ -1608,34 +1666,34 @@ msgstr "" msgid "autocomplete [bash|zsh|fish|powershell]" msgstr "" -#: ./cli/app/deploy.go:60 ./cli/app/logs.go:33 ./cli/app/rollback.go:59 ./cli/app/secret.go:44 ./cli/app/secret.go:181 ./cli/app/secret.go:345 ./cli/app/upgrade.go:59 ./pkg/autocomplete/autocomplete.go:18 ./pkg/autocomplete/autocomplete.go:33 ./pkg/autocomplete/autocomplete.go:44 ./pkg/autocomplete/autocomplete.go:50 ./pkg/autocomplete/autocomplete.go:70 ./pkg/autocomplete/autocomplete.go:88 ./pkg/autocomplete/autocomplete.go:104 ./pkg/autocomplete/autocomplete.go:110 ./pkg/autocomplete/autocomplete.go:125 +#: ./cli/app/deploy.go:61 ./cli/app/logs.go:34 ./cli/app/rollback.go:60 ./cli/app/secret.go:45 ./cli/app/secret.go:183 ./cli/app/secret.go:348 ./cli/app/upgrade.go:60 ./pkg/autocomplete/autocomplete.go:18 ./pkg/autocomplete/autocomplete.go:33 ./pkg/autocomplete/autocomplete.go:44 ./pkg/autocomplete/autocomplete.go:50 ./pkg/autocomplete/autocomplete.go:70 ./pkg/autocomplete/autocomplete.go:88 ./pkg/autocomplete/autocomplete.go:104 ./pkg/autocomplete/autocomplete.go:110 ./pkg/autocomplete/autocomplete.go:125 #, c-format msgid "autocomplete failed: %s" msgstr "" -#: ./cli/app/new.go:361 +#: ./cli/app/new.go:362 msgid "automatically generate secrets" msgstr "" -#: ./cli/recipe/fetch.go:126 +#: ./cli/recipe/fetch.go:127 msgid "automatically set ssh remote" msgstr "" -#: ./cli/updater/updater.go:301 +#: ./cli/updater/updater.go:303 #, c-format msgid "available updates for %s: %s" msgstr "" -#: ./cli/app/backup.go:219 +#: ./cli/app/backup.go:223 msgid "b" msgstr "" #. translators: `app backup` command group -#: ./cli/app/backup.go:218 +#: ./cli/app/backup.go:222 msgid "backup [cmd] [args] [flags]" msgstr "" -#: ./cli/recipe/list.go:42 +#: ./cli/recipe/list.go:43 msgid "backups" msgstr "" @@ -1652,7 +1710,7 @@ msgstr "" msgid "bind options are incompatible with type volume" msgstr "" -#: ./cli/updater/updater.go:178 +#: ./cli/updater/updater.go:180 #, c-format msgid "boolean label %s could not be found for %s, set default to false." msgstr "" @@ -1662,11 +1720,11 @@ msgstr "" msgid "broken symlink in your abra config folders: %s" msgstr "" -#: ./cli/app/backup.go:138 ./cli/app/cp.go:31 ./cli/app/deploy.go:350 ./cli/app/rollback.go:339 ./cli/app/upgrade.go:450 +#: ./cli/app/backup.go:140 ./cli/app/cp.go:31 ./cli/app/deploy.go:351 ./cli/app/rollback.go:340 ./cli/app/upgrade.go:451 msgid "c" msgstr "" -#: ./cli/app/secret.go:270 +#: ./cli/app/secret.go:272 msgid "can not insert from file and read from stdin" msgstr "" @@ -1675,12 +1733,12 @@ msgstr "" msgid "can not redeploy chaos version (%s) without --chaos" msgstr "" -#: ./cli/recipe/upgrade.go:319 +#: ./cli/recipe/upgrade.go:320 #, c-format msgid "can upgrade service: %s, image: %s, tag: %s ::" msgstr "" -#: ./cli/app/cp.go:273 +#: ./cli/app/cp.go:274 msgid "can't copy dir to file" msgstr "" @@ -1689,7 +1747,7 @@ msgstr "" msgid "can't read local recipes: %s" msgstr "" -#: ./cli/updater/updater.go:199 +#: ./cli/updater/updater.go:201 #, c-format msgid "can't separate key from value: %s (this variable is probably unset)" msgstr "" @@ -1699,7 +1757,7 @@ msgstr "" msgid "cannot ensure %s is up-to-date, no git remotes configured" msgstr "" -#: ./cli/app/config.go:37 ./pkg/app/app.go:52 +#: ./cli/app/config.go:38 ./pkg/app/app.go:52 #, c-format msgid "cannot find app with name %s" msgstr "" @@ -1709,7 +1767,7 @@ msgstr "" msgid "cannot get label %s for %s" msgstr "" -#: ./cli/recipe/release.go:98 +#: ./cli/recipe/release.go:99 #, c-format msgid "cannot parse %s, invalid tag specified?" msgstr "" @@ -1719,44 +1777,44 @@ msgstr "" msgid "cannot resolve ipv4 for %s?" msgstr "" -#: ./cli/recipe/release.go:103 +#: ./cli/recipe/release.go:104 msgid "cannot specify tag and bump type at the same time" msgstr "" -#: ./cli/app/secret.go:63 +#: ./cli/app/secret.go:64 msgid "cannot use '[secret] [version]' and '--all' together" msgstr "" -#: ./cli/app/cmd.go:102 +#: ./cli/app/cmd.go:103 msgid "cannot use --local & --user together" msgstr "" -#: ./cli/recipe/fetch.go:49 +#: ./cli/recipe/fetch.go:50 msgid "cannot use [recipe] and --all/-a together" msgstr "" -#: ./cli/app/secret.go:372 +#: ./cli/app/secret.go:375 msgid "cannot use [secret] and --all/-a together" msgstr "" -#: ./cli/server/add.go:54 +#: ./cli/server/add.go:55 msgid "cannot use [server] and --local together" msgstr "" -#: ./cli/app/restart.go:69 +#: ./cli/app/restart.go:70 msgid "cannot use [service] and --all-services/-a together" msgstr "" -#: ./cli/app/deploy.go:261 ./cli/app/new.go:70 +#: ./cli/app/deploy.go:262 ./cli/app/new.go:71 msgid "cannot use [version] and --chaos together" msgstr "" -#: ./cli/run.go:31 +#: ./cli/run.go:32 msgid "catalogue" msgstr "" #. translators: `catalogue` command group -#: ./cli/catalogue/catalogue.go:268 +#: ./cli/catalogue/catalogue.go:270 msgid "catalogue [cmd] [args] [flags]" msgstr "" @@ -1764,11 +1822,11 @@ msgstr "" msgid "catalogue is missing, retrieving now" msgstr "" -#: ./cli/catalogue/catalogue.go:39 +#: ./cli/catalogue/catalogue.go:40 msgid "catalogue successfully synced" msgstr "" -#: ./cli/recipe/list.go:39 +#: ./cli/recipe/list.go:40 msgid "category" msgstr "" @@ -1776,7 +1834,7 @@ msgstr "" msgid "cfg" msgstr "" -#: ./cli/app/backup.go:292 ./cli/app/backup.go:308 ./cli/app/check.go:88 ./cli/app/cmd.go:274 ./cli/app/cp.go:379 ./cli/app/deploy.go:325 ./cli/app/labels.go:136 ./cli/app/new.go:366 ./cli/app/ps.go:207 ./cli/app/restart.go:155 ./cli/app/restore.go:132 ./cli/app/secret.go:547 ./cli/app/secret.go:587 ./cli/app/secret.go:611 ./cli/app/secret.go:619 ./cli/catalogue/catalogue.go:305 ./cli/recipe/lint.go:129 ./cli/updater/updater.go:540 +#: ./cli/app/backup.go:297 ./cli/app/backup.go:313 ./cli/app/check.go:89 ./cli/app/cmd.go:276 ./cli/app/cp.go:380 ./cli/app/deploy.go:326 ./cli/app/labels.go:137 ./cli/app/new.go:367 ./cli/app/ps.go:208 ./cli/app/restart.go:156 ./cli/app/restore.go:133 ./cli/app/secret.go:552 ./cli/app/secret.go:592 ./cli/app/secret.go:616 ./cli/app/secret.go:624 ./cli/catalogue/catalogue.go:308 ./cli/recipe/lint.go:130 ./cli/updater/updater.go:543 msgid "chaos" msgstr "" @@ -1785,11 +1843,11 @@ msgstr "" msgid "check [flags]" msgstr "" -#: ./cli/updater/updater.go:551 +#: ./cli/updater/updater.go:554 msgid "check for major updates" msgstr "" -#: ./cli/app/deploy.go:89 ./cli/app/undeploy.go:52 ./cli/app/upgrade.go:414 +#: ./cli/app/deploy.go:90 ./cli/app/undeploy.go:53 ./cli/app/upgrade.go:415 #, c-format msgid "checking whether %s is already deployed" msgstr "" @@ -1803,27 +1861,27 @@ msgstr "" msgid "choosing %s as latest version of %s" msgstr "" -#: ./cli/recipe/sync.go:229 +#: ./cli/recipe/sync.go:230 #, c-format msgid "choosing %s as new version for %s" msgstr "" -#: ./cli/app/rollback.go:146 +#: ./cli/app/rollback.go:147 #, c-format msgid "choosing %s as version to rollback" msgstr "" -#: ./cli/app/upgrade.go:153 +#: ./cli/app/upgrade.go:154 #, c-format msgid "choosing %s as version to upgrade" msgstr "" -#: ./cli/recipe/release.go:285 +#: ./cli/recipe/release.go:286 #, c-format msgid "chore: publish %s release" msgstr "" -#: ./cli/catalogue/catalogue.go:224 +#: ./cli/catalogue/catalogue.go:226 msgid "chore: publish new catalogue release changes" msgstr "" @@ -1836,7 +1894,7 @@ msgstr "" msgid "collected %s for %s" msgstr "" -#: ./cli/catalogue/catalogue.go:122 +#: ./cli/catalogue/catalogue.go:124 msgid "collecting catalogue metadata" msgstr "" @@ -1936,7 +1994,7 @@ msgstr "" msgid "considering %s config(s) for tag update" msgstr "" -#: ./cli/app/undeploy.go:127 ./cli/server/prune.go:46 +#: ./cli/app/undeploy.go:128 ./cli/server/prune.go:47 #, c-format msgid "containers pruned: %d; space reclaimed: %s" msgstr "" @@ -1945,7 +2003,7 @@ msgstr "" msgid "context 'default' cannot be removed" msgstr "" -#: ./cli/server/add.go:164 +#: ./cli/server/add.go:165 #, c-format msgid "context for %s already exists" msgstr "" @@ -1954,7 +2012,7 @@ msgstr "" msgid "context lacks Docker endpoint" msgstr "" -#: ./cli/recipe/sync.go:238 ./pkg/recipe/compose.go:229 +#: ./cli/recipe/sync.go:239 ./pkg/recipe/compose.go:229 #, c-format msgid "coop-cloud.${STACK_NAME}.version=%s" msgstr "" @@ -1964,12 +2022,12 @@ msgstr "" msgid "copied & templated %s to %s" msgstr "" -#: ./cli/app/cp.go:165 +#: ./cli/app/cp.go:166 #, c-format msgid "copy %s from local to %s on container" msgstr "" -#: ./cli/app/cp.go:246 +#: ./cli/app/cp.go:247 #, c-format msgid "copy: %s" msgstr "" @@ -1995,7 +2053,7 @@ msgid "cp [flags]" msgstr "" #. translators: `app backup create` command -#: ./cli/app/backup.go:137 +#: ./cli/app/backup.go:139 msgid "create [flags]" msgstr "" @@ -2003,7 +2061,7 @@ msgstr "" msgid "create an example .env.sample" msgstr "" -#: ./cli/app/cp.go:146 ./cli/app/cp.go:185 +#: ./cli/app/cp.go:147 ./cli/app/cp.go:186 #, c-format msgid "create remote directory: %s" msgstr "" @@ -2013,7 +2071,7 @@ msgstr "" msgid "created client for %s" msgstr "" -#: ./cli/recipe/release.go:423 +#: ./cli/recipe/release.go:424 #, c-format msgid "created tag %s at %s" msgstr "" @@ -2028,7 +2086,7 @@ msgstr "" msgid "creating %s" msgstr "" -#: ./cli/server/add.go:169 +#: ./cli/server/add.go:170 #, c-format msgid "creating context with domain %s" msgstr "" @@ -2047,35 +2105,35 @@ msgstr "" msgid "critical" msgstr "" -#: ./cli/recipe/lint.go:116 +#: ./cli/recipe/lint.go:117 #, c-format msgid "critical errors present in %s config" msgstr "" -#: ./cli/app/rollback.go:269 +#: ./cli/app/rollback.go:270 #, c-format msgid "current deployment '%s' is not a known version for %s" msgstr "" -#: ./cli/recipe/release.go:527 +#: ./cli/recipe/release.go:528 #, c-format msgid "current: %s, new: %s, correct?" msgstr "" -#: ./cli/app/backup.go:68 ./cli/app/deploy.go:30 ./cli/recipe/diff.go:15 ./cli/updater/updater.go:494 +#: ./cli/app/backup.go:69 ./cli/app/deploy.go:30 ./cli/recipe/diff.go:15 ./cli/updater/updater.go:497 msgid "d" msgstr "" -#: ./cli/updater/updater.go:493 +#: ./cli/updater/updater.go:496 msgid "debug" msgstr "" -#: ./cli/app/secret.go:316 +#: ./cli/app/secret.go:318 #, c-format msgid "deleted %s successfully from local pass store" msgstr "" -#: ./cli/app/secret.go:309 +#: ./cli/app/secret.go:311 #, c-format msgid "deleted %s successfully from server" msgstr "" @@ -2113,7 +2171,7 @@ msgstr "" msgid "deployment timed out 🟠" msgstr "" -#: ./cli/app/cp.go:274 +#: ./cli/app/cp.go:275 msgid "destination directory does not exist" msgstr "" @@ -2126,12 +2184,12 @@ msgstr "" msgid "detected ABRA_CI=1" msgstr "" -#: ./cli/recipe/upgrade.go:200 +#: ./cli/recipe/upgrade.go:201 #, c-format msgid "detected compatible upgradable tags %s for %s" msgstr "" -#: ./cli/recipe/upgrade.go:173 +#: ./cli/recipe/upgrade.go:174 #, c-format msgid "detected potential upgradable tags %s for %s" msgstr "" @@ -2141,11 +2199,11 @@ msgstr "" msgid "detected versions %s for %s" msgstr "" -#: ./cli/app/cmd.go:132 ./cli/app/cmd.go:177 +#: ./cli/app/cmd.go:133 ./cli/app/cmd.go:178 msgid "did not detect any command arguments" msgstr "" -#: ./cli/recipe/upgrade.go:120 +#: ./cli/recipe/upgrade.go:121 #, c-format msgid "did not find versions file for %s" msgstr "" @@ -2170,24 +2228,24 @@ msgstr "" msgid "dirty: %v, " msgstr "" -#: ./cli/app/deploy.go:352 ./cli/app/rollback.go:341 ./cli/app/upgrade.go:452 +#: ./cli/app/deploy.go:353 ./cli/app/rollback.go:342 ./cli/app/upgrade.go:453 msgid "disable converge logic checks" msgstr "" -#: ./cli/app/deploy.go:344 ./cli/app/rollback.go:333 ./cli/app/upgrade.go:444 +#: ./cli/app/deploy.go:345 ./cli/app/rollback.go:334 ./cli/app/upgrade.go:445 msgid "disable public DNS checks" msgstr "" -#: ./cli/app/cmd.go:269 +#: ./cli/app/cmd.go:271 msgid "disable remote TTY" msgstr "" -#: ./cli/recipe/release.go:610 +#: ./cli/recipe/release.go:611 #, c-format msgid "discovered %s as currently synced recipe label" msgstr "" -#: ./cli/app/run.go:106 +#: ./cli/app/run.go:107 msgid "do not request a TTY" msgstr "" @@ -2195,40 +2253,40 @@ msgstr "" msgid "docker: is the daemon running / your user has docker permissions?" msgstr "" -#: ./cli/app/new.go:342 +#: ./cli/app/new.go:343 msgid "domain" msgstr "" -#: ./cli/app/new.go:345 +#: ./cli/app/new.go:346 msgid "domain name for app" msgstr "" -#: ./cli/run.go:110 +#: ./cli/run.go:112 msgid "don't forget to run 'sudo mandb'" msgstr "" -#: ./cli/updater/updater.go:388 +#: ./cli/updater/updater.go:390 #, c-format msgid "don't update %s due to chaos deployment" msgstr "" -#: ./cli/updater/updater.go:398 +#: ./cli/updater/updater.go:400 #, c-format msgid "don't update %s due to disabled auto updates or missing ENABLE_AUTO_UPDATE env" msgstr "" -#: ./cli/updater/updater.go:378 +#: ./cli/updater/updater.go:380 #, c-format msgid "don't update %s due to missing recipe name" msgstr "" -#: ./cli/updater/updater.go:408 +#: ./cli/updater/updater.go:410 #, c-format msgid "don't update %s due to no new version" msgstr "" #. translators: `app backup download` command -#: ./cli/app/backup.go:67 +#: ./cli/app/backup.go:68 msgid "download [flags]" msgstr "" @@ -2237,7 +2295,7 @@ msgstr "" msgid "dry run: adding %s" msgstr "" -#: ./cli/recipe/release.go:313 +#: ./cli/recipe/release.go:314 #, c-format msgid "dry run: move release note from 'next' to %s" msgstr "" @@ -2246,11 +2304,11 @@ msgstr "" msgid "dry run: no changes commited" msgstr "" -#: ./cli/recipe/release.go:378 +#: ./cli/recipe/release.go:379 msgid "dry run: no changes committed" msgstr "" -#: ./cli/catalogue/catalogue.go:260 ./cli/recipe/release.go:430 +#: ./cli/catalogue/catalogue.go:262 ./cli/recipe/release.go:431 msgid "dry run: no changes published" msgstr "" @@ -2259,12 +2317,12 @@ msgstr "" msgid "dry run: no git changes pushed in %s" msgstr "" -#: ./cli/recipe/release.go:403 +#: ./cli/recipe/release.go:404 #, c-format msgid "dry run: no git tag created (%s)" msgstr "" -#: ./cli/recipe/sync.go:244 +#: ./cli/recipe/sync.go:245 #, c-format msgid "dry run: not syncing label %s for recipe %s" msgstr "" @@ -2274,7 +2332,7 @@ msgstr "" msgid "dry run: remote %s (%s) not created" msgstr "" -#: ./cli/catalogue/catalogue.go:289 ./cli/recipe/release.go:634 ./cli/recipe/sync.go:263 +#: ./cli/catalogue/catalogue.go:292 ./cli/recipe/release.go:635 ./cli/recipe/sync.go:264 msgid "dry-run" msgstr "" @@ -2288,15 +2346,15 @@ msgstr "" msgid "duplicate secret target for %s not allowed" msgstr "" -#: ./cli/app/env.go:17 ./cli/recipe/lint.go:138 ./cli/recipe/new.go:125 +#: ./cli/app/env.go:17 ./cli/recipe/lint.go:139 ./cli/recipe/new.go:125 msgid "e" msgstr "" -#: ./cli/recipe/list.go:43 +#: ./cli/recipe/list.go:44 msgid "email" msgstr "" -#: ./cli/app/restore.go:127 +#: ./cli/app/restore.go:128 msgid "enable pre/post-hook command execution" msgstr "" @@ -2313,7 +2371,7 @@ msgstr "" msgid "ensure \"image: ...\" set on all services" msgstr "" -#: ./cli/app/deploy.go:108 +#: ./cli/app/deploy.go:109 #, c-format msgid "ensure recipe: %s" msgstr "" @@ -2323,7 +2381,7 @@ msgstr "" msgid "ensuring env version %s" msgstr "" -#: ./cli/recipe/upgrade.go:281 +#: ./cli/recipe/upgrade.go:282 msgid "enter / return to confirm, choose 'skip' to not upgrade this tag, vim mode is enabled" msgstr "" @@ -2347,7 +2405,7 @@ msgstr "" msgid "err: %v, " msgstr "" -#: ./cli/recipe/lint.go:75 ./cli/recipe/lint.go:137 ./pkg/lint/recipe.go:132 ./pkg/lint/recipe.go:139 ./pkg/lint/recipe.go:146 ./pkg/lint/recipe.go:153 ./pkg/lint/recipe.go:161 ./pkg/lint/recipe.go:168 ./pkg/lint/recipe.go:175 +#: ./cli/recipe/lint.go:76 ./cli/recipe/lint.go:138 ./pkg/lint/recipe.go:132 ./pkg/lint/recipe.go:139 ./pkg/lint/recipe.go:146 ./pkg/lint/recipe.go:153 ./pkg/lint/recipe.go:161 ./pkg/lint/recipe.go:168 ./pkg/lint/recipe.go:175 msgid "error" msgstr "" @@ -2380,7 +2438,7 @@ msgstr "" msgid "exec ID empty" msgstr "" -#: ./cli/recipe/release.go:536 +#: ./cli/recipe/release.go:537 msgid "exiting as requested" msgstr "" @@ -2394,11 +2452,11 @@ msgstr "" msgid "expected 1 service but found %v: %s" msgstr "" -#: ./cli/app/deploy.go:334 ./cli/app/remove.go:157 ./cli/app/rollback.go:323 ./cli/app/secret.go:572 ./cli/app/upgrade.go:434 ./cli/app/volume.go:202 ./cli/recipe/fetch.go:20 ./cli/recipe/fetch.go:132 +#: ./cli/app/deploy.go:335 ./cli/app/remove.go:158 ./cli/app/rollback.go:324 ./cli/app/secret.go:577 ./cli/app/upgrade.go:435 ./cli/app/volume.go:204 ./cli/recipe/fetch.go:20 ./cli/recipe/fetch.go:133 msgid "f" msgstr "" -#: ./cli/recipe/release.go:256 ./cli/recipe/release.go:541 +#: ./cli/recipe/release.go:257 ./cli/recipe/release.go:542 #, c-format msgid "failed to add release notes: %s" msgstr "" @@ -2413,7 +2471,7 @@ msgstr "" msgid "failed to check out %s in %s" msgstr "" -#: ./cli/recipe/release.go:260 ./cli/recipe/release.go:545 +#: ./cli/recipe/release.go:261 ./cli/recipe/release.go:546 #, c-format msgid "failed to commit changes: %s" msgstr "" @@ -2438,7 +2496,7 @@ msgstr "" msgid "failed to create secret %s" msgstr "" -#: ./cli/updater/updater.go:253 +#: ./cli/updater/updater.go:255 #, c-format msgid "failed to determine deployed version of %s" msgstr "" @@ -2471,7 +2529,7 @@ msgstr "" msgid "failed to parse image %s, saw: %s" msgstr "" -#: ./cli/recipe/release.go:268 ./cli/recipe/release.go:553 +#: ./cli/recipe/release.go:269 ./cli/recipe/release.go:554 #, c-format msgid "failed to publish new release: %s" msgstr "" @@ -2505,7 +2563,7 @@ msgstr "" msgid "failed to resize tty, using default size" msgstr "" -#: ./cli/app/new.go:118 +#: ./cli/app/new.go:119 #, c-format msgid "failed to retrieve latest commit for %s: %s" msgstr "" @@ -2520,7 +2578,7 @@ msgstr "" msgid "failed to select default branch in %s" msgstr "" -#: ./cli/recipe/release.go:264 ./cli/recipe/release.go:549 +#: ./cli/recipe/release.go:265 ./cli/recipe/release.go:550 #, c-format msgid "failed to tag release: %s" msgstr "" @@ -2550,7 +2608,7 @@ msgstr "" msgid "fetch [recipe | --all] [flags]" msgstr "" -#: ./cli/recipe/fetch.go:118 +#: ./cli/recipe/fetch.go:119 msgid "fetch all recipes" msgstr "" @@ -2559,7 +2617,7 @@ msgstr "" msgid "fetched latest git changes for %s" msgstr "" -#: ./cli/recipe/fetch.go:94 +#: ./cli/recipe/fetch.go:95 msgid "fetching latest recipes..." msgstr "" @@ -2568,11 +2626,11 @@ msgstr "" msgid "fetching repo metadata from %s" msgstr "" -#: ./cli/app/secret.go:571 +#: ./cli/app/secret.go:576 msgid "file" msgstr "" -#: ./cli/app/remove.go:149 +#: ./cli/app/remove.go:150 #, c-format msgid "file: %s removed" msgstr "" @@ -2581,29 +2639,29 @@ msgstr "" msgid "fill out all the metadata" msgstr "" -#: ./cli/recipe/list.go:109 +#: ./cli/recipe/list.go:110 msgid "filter by recipe" msgstr "" -#: ./cli/updater/updater.go:204 +#: ./cli/updater/updater.go:206 #, c-format msgid "for %s read env %s with value: %s from docker service" msgstr "" -#: ./cli/app/deploy.go:333 ./cli/app/remove.go:156 ./cli/app/rollback.go:322 ./cli/app/upgrade.go:433 ./cli/app/volume.go:201 ./cli/recipe/fetch.go:131 +#: ./cli/app/deploy.go:334 ./cli/app/remove.go:157 ./cli/app/rollback.go:323 ./cli/app/upgrade.go:434 ./cli/app/volume.go:203 ./cli/recipe/fetch.go:132 msgid "force" msgstr "" -#: ./cli/recipe/fetch.go:134 +#: ./cli/recipe/fetch.go:135 msgid "force re-fetch" msgstr "" -#: ./cli/recipe/upgrade.go:92 +#: ./cli/recipe/upgrade.go:93 #, c-format msgid "found versions file for %s" msgstr "" -#: ./cli/app/secret.go:30 ./cli/catalogue/catalogue.go:27 ./cli/catalogue/catalogue.go:46 +#: ./cli/app/secret.go:30 ./cli/catalogue/catalogue.go:27 ./cli/catalogue/catalogue.go:47 msgid "g" msgstr "" @@ -2617,11 +2675,11 @@ msgid "generate [[secret] [version] | --all] [flags]" msgstr "" #. translators: `catalogue generate` command -#: ./cli/catalogue/catalogue.go:45 +#: ./cli/catalogue/catalogue.go:46 msgid "generate [recipe] [flags]" msgstr "" -#: ./cli/app/secret.go:558 +#: ./cli/app/secret.go:563 msgid "generate all secrets" msgstr "" @@ -2635,17 +2693,17 @@ msgstr "" msgid "generated and stored %v on %s" msgstr "" -#: ./cli/catalogue/catalogue.go:208 +#: ./cli/catalogue/catalogue.go:210 #, c-format msgid "generated recipe catalogue: %s" msgstr "" -#: ./cli/app/secret.go:140 +#: ./cli/app/secret.go:141 #, c-format msgid "generated secrets %s shown again, please take note of them %s" msgstr "" -#: ./cli/app/deploy.go:102 +#: ./cli/app/deploy.go:103 #, c-format msgid "get deploy version: %s" msgstr "" @@ -2766,7 +2824,7 @@ msgstr "" msgid "has published catalogue version" msgstr "" -#: ./cli/recipe/list.go:41 +#: ./cli/recipe/list.go:42 msgid "healthcheck" msgstr "" @@ -2774,11 +2832,11 @@ msgstr "" msgid "healthcheck enabled for all services" msgstr "" -#: ./cli/app/restore.go:124 +#: ./cli/app/restore.go:125 msgid "hooks" msgstr "" -#: ./cli/app/secret.go:151 +#: ./cli/app/secret.go:152 msgid "i" msgstr "" @@ -2787,15 +2845,15 @@ msgstr "" msgid "id: %s, " msgstr "" -#: ./cli/run.go:143 +#: ./cli/run.go:145 msgid "ignore .env version checkout" msgstr "" -#: ./cli/app/backup.go:295 ./cli/app/backup.go:311 ./cli/app/check.go:91 ./cli/app/cmd.go:277 ./cli/app/cp.go:382 ./cli/app/deploy.go:328 ./cli/app/labels.go:139 ./cli/app/new.go:369 ./cli/app/ps.go:210 ./cli/app/restart.go:158 ./cli/app/restore.go:135 ./cli/app/secret.go:550 ./cli/app/secret.go:590 ./cli/app/secret.go:614 ./cli/app/secret.go:622 ./cli/catalogue/catalogue.go:308 ./cli/recipe/lint.go:132 ./cli/updater/updater.go:543 +#: ./cli/app/backup.go:300 ./cli/app/backup.go:316 ./cli/app/check.go:92 ./cli/app/cmd.go:279 ./cli/app/cp.go:383 ./cli/app/deploy.go:329 ./cli/app/labels.go:140 ./cli/app/new.go:370 ./cli/app/ps.go:211 ./cli/app/restart.go:159 ./cli/app/restore.go:136 ./cli/app/secret.go:555 ./cli/app/secret.go:595 ./cli/app/secret.go:619 ./cli/app/secret.go:627 ./cli/catalogue/catalogue.go:311 ./cli/recipe/lint.go:133 ./cli/updater/updater.go:546 msgid "ignore uncommitted recipes changes" msgstr "" -#: ./cli/app/undeploy.go:142 ./cli/server/prune.go:67 +#: ./cli/app/undeploy.go:143 ./cli/server/prune.go:68 #, c-format msgid "images pruned: %d; space reclaimed: %s" msgstr "" @@ -2808,87 +2866,87 @@ msgstr "" msgid "include \"traefik.enable=true\" deploy label" msgstr "" -#: ./cli/app/backup.go:279 +#: ./cli/app/backup.go:284 msgid "include secrets" msgstr "" -#: ./cli/app/backup.go:255 +#: ./cli/app/backup.go:260 msgid "include timestamps" msgstr "" -#: ./cli/app/backup.go:287 +#: ./cli/app/backup.go:292 msgid "include volumes" msgstr "" -#: ./cli/app/restore.go:75 +#: ./cli/app/restore.go:76 #, c-format msgid "including CONTAINER=%s in backupbot exec invocation" msgstr "" -#: ./cli/app/backup.go:109 +#: ./cli/app/backup.go:111 #, c-format msgid "including INCLUDE_PATH=%s in backupbot exec invocation" msgstr "" -#: ./cli/app/restore.go:63 +#: ./cli/app/restore.go:64 #, c-format msgid "including NONINTERACTIVE=%v in backupbot exec invocation" msgstr "" -#: ./cli/app/restore.go:80 +#: ./cli/app/restore.go:81 #, c-format msgid "including NO_COMMANDS=%v in backupbot exec invocation" msgstr "" -#: ./cli/app/backup.go:170 +#: ./cli/app/backup.go:173 #, c-format msgid "including RETRIES=%s in backupbot exec invocation" msgstr "" -#: ./cli/app/backup.go:114 +#: ./cli/app/backup.go:116 #, c-format msgid "including SECRETS=%v in backupbot exec invocation" msgstr "" -#: ./cli/app/backup.go:50 +#: ./cli/app/backup.go:51 #, c-format msgid "including SHOW_ALL=%v in backupbot exec invocation" msgstr "" -#: ./cli/app/backup.go:45 ./cli/app/backup.go:104 ./cli/app/restore.go:53 +#: ./cli/app/backup.go:46 ./cli/app/backup.go:106 ./cli/app/restore.go:54 #, c-format msgid "including SNAPSHOT=%s in backupbot exec invocation" msgstr "" -#: ./cli/app/restore.go:58 +#: ./cli/app/restore.go:59 #, c-format msgid "including TARGET=%s in backupbot exec invocation" msgstr "" -#: ./cli/app/backup.go:55 +#: ./cli/app/backup.go:56 #, c-format msgid "including TIMESTAMPS=%v in backupbot exec invocation" msgstr "" -#: ./cli/app/restore.go:69 +#: ./cli/app/restore.go:70 #, c-format msgid "including VOLUMES=%s in backupbot exec invocation" msgstr "" -#: ./cli/app/backup.go:119 +#: ./cli/app/backup.go:121 #, c-format msgid "including VOLUMES=%v in backupbot exec invocation" msgstr "" -#: ./cli/recipe/release.go:645 ./cli/recipe/sync.go:274 ./cli/recipe/upgrade.go:349 +#: ./cli/recipe/release.go:646 ./cli/recipe/sync.go:275 ./cli/recipe/upgrade.go:350 msgid "increase the major part of the version" msgstr "" -#: ./cli/recipe/release.go:653 ./cli/recipe/sync.go:282 ./cli/recipe/upgrade.go:357 +#: ./cli/recipe/release.go:654 ./cli/recipe/sync.go:283 ./cli/recipe/upgrade.go:358 msgid "increase the minor part of the version" msgstr "" -#: ./cli/recipe/release.go:661 ./cli/recipe/sync.go:290 ./cli/recipe/upgrade.go:365 +#: ./cli/recipe/release.go:662 ./cli/recipe/sync.go:291 ./cli/recipe/upgrade.go:366 msgid "increase the patch part of the version" msgstr "" @@ -2911,11 +2969,11 @@ msgid "initialising undeploy" msgstr "" #. translators: `app secret insert` command -#: ./cli/app/secret.go:150 +#: ./cli/app/secret.go:151 msgid "insert [] [flags]" msgstr "" -#: ./cli/upgrade.go:56 +#: ./cli/upgrade.go:57 msgid "install release candidate (may contain bugs)" msgstr "" @@ -2965,22 +3023,22 @@ msgstr "" msgid "invalid tmpfs source, source must be empty" msgstr "" -#: ./cli/recipe/sync.go:234 +#: ./cli/recipe/sync.go:235 #, c-format msgid "invalid version %s specified" msgstr "" #. translators: `kadabra` binary name -#: ./cli/updater/updater.go:474 +#: ./cli/updater/updater.go:476 msgid "kadabra [cmd] [flags]" msgstr "" -#: ./cli/updater/updater.go:487 +#: ./cli/updater/updater.go:490 #, c-format msgid "kadabra version %s, commit %s" msgstr "" -#: ./cli/app/cmd.go:251 ./cli/app/logs.go:20 ./cli/recipe/lint.go:17 ./cli/server/add.go:201 +#: ./cli/app/cmd.go:253 ./cli/app/logs.go:20 ./cli/recipe/lint.go:18 ./cli/server/add.go:202 msgid "l" msgstr "" @@ -2989,11 +3047,11 @@ msgstr "" msgid "labels [flags]" msgstr "" -#: ./cli/app/list.go:178 +#: ./cli/app/list.go:179 msgid "latest" msgstr "" -#: ./cli/recipe/release.go:522 +#: ./cli/recipe/release.go:523 #, c-format msgid "latest git tag (%s) and synced label (%s) are the same?" msgstr "" @@ -3023,14 +3081,14 @@ msgid "list" msgstr "" #. translators: `app secret list` command -#: ./cli/app/secret.go:438 +#: ./cli/app/secret.go:441 msgid "list " msgstr "" #. translators: `app backup list` command -#. translators: `app list` command +#. translators: `app cmd list` command #. translators: `app volume list` command -#: ./cli/app/backup.go:16 ./cli/app/cmd.go:198 ./cli/app/volume.go:20 +#: ./cli/app/backup.go:16 ./cli/app/cmd.go:199 ./cli/app/volume.go:20 msgid "list [flags]" msgstr "" @@ -3040,11 +3098,11 @@ msgstr "" msgid "list [flags]" msgstr "" -#: ./cli/recipe/upgrade.go:381 +#: ./cli/recipe/upgrade.go:382 msgid "list all tags, not just upgrades" msgstr "" -#: ./cli/app/backup.go:239 ./cli/app/backup.go:263 +#: ./cli/app/backup.go:244 ./cli/app/backup.go:268 msgid "list specific snapshot" msgstr "" @@ -3053,20 +3111,20 @@ msgstr "" msgid "loaded app %s: %s" msgstr "" -#: ./cli/app/cmd.go:250 ./cli/server/add.go:200 ./cli/server/list.go:70 +#: ./cli/app/cmd.go:252 ./cli/server/add.go:201 ./cli/server/list.go:71 msgid "local" msgstr "" -#: ./cli/app/cp.go:109 +#: ./cli/app/cp.go:110 #, c-format msgid "local %s " msgstr "" -#: ./cli/server/add.go:87 +#: ./cli/server/add.go:88 msgid "local server already exists" msgstr "" -#: ./cli/server/add.go:85 +#: ./cli/server/add.go:86 msgid "local server successfully added" msgstr "" @@ -3084,62 +3142,62 @@ msgstr "" msgid "long secret names" msgstr "" -#: ./cli/app/backup.go:17 ./cli/app/cmd.go:199 ./cli/app/list.go:45 ./cli/app/secret.go:439 ./cli/app/volume.go:21 ./cli/recipe/list.go:21 ./cli/server/list.go:20 +#: ./cli/app/backup.go:17 ./cli/app/cmd.go:200 ./cli/app/list.go:45 ./cli/app/secret.go:442 ./cli/app/volume.go:21 ./cli/recipe/list.go:22 ./cli/server/list.go:20 msgid "ls" msgstr "" -#: ./cli/app/list.go:313 ./cli/app/ps.go:200 ./cli/app/secret.go:532 ./cli/app/secret.go:628 ./cli/recipe/list.go:99 ./cli/recipe/upgrade.go:371 ./cli/recipe/version.go:133 ./cli/server/list.go:101 ./cli/updater/updater.go:549 +#: ./cli/app/list.go:314 ./cli/app/ps.go:201 ./cli/app/secret.go:537 ./cli/app/secret.go:633 ./cli/recipe/list.go:100 ./cli/recipe/upgrade.go:372 ./cli/recipe/version.go:134 ./cli/server/list.go:102 ./cli/updater/updater.go:552 msgid "m" msgstr "" -#: ./cli/app/list.go:312 ./cli/app/ps.go:199 ./cli/app/secret.go:531 ./cli/app/secret.go:627 ./cli/recipe/list.go:98 ./cli/recipe/upgrade.go:370 ./cli/recipe/version.go:132 ./cli/server/list.go:100 +#: ./cli/app/list.go:313 ./cli/app/ps.go:200 ./cli/app/secret.go:536 ./cli/app/secret.go:632 ./cli/recipe/list.go:99 ./cli/recipe/upgrade.go:371 ./cli/recipe/version.go:133 ./cli/server/list.go:101 msgid "machine" msgstr "" -#: ./cli/recipe/release.go:88 +#: ./cli/recipe/release.go:89 #, c-format msgid "main app service version for %s is empty?" msgstr "" -#: ./cli/internal/recipe.go:48 ./cli/internal/recipe.go:66 ./cli/internal/recipe.go:80 ./cli/recipe/release.go:642 ./cli/recipe/sync.go:271 ./cli/recipe/upgrade.go:346 ./cli/updater/updater.go:548 +#: ./cli/internal/recipe.go:48 ./cli/internal/recipe.go:66 ./cli/internal/recipe.go:80 ./cli/recipe/release.go:643 ./cli/recipe/sync.go:272 ./cli/recipe/upgrade.go:347 ./cli/updater/updater.go:551 msgid "major" msgstr "" -#: ./cli/recipe/upgrade.go:102 +#: ./cli/recipe/upgrade.go:103 #, c-format msgid "malformed version pin specification: %s" msgstr "" -#: ./cli/run.go:32 +#: ./cli/run.go:33 msgid "man" msgstr "" #. translators: `man` command -#: ./cli/run.go:83 +#: ./cli/run.go:84 msgid "man [flags]" msgstr "" -#: ./cli/internal/recipe.go:48 ./cli/internal/recipe.go:68 ./cli/internal/recipe.go:82 ./cli/recipe/release.go:650 ./cli/recipe/sync.go:279 ./cli/recipe/upgrade.go:354 +#: ./cli/internal/recipe.go:48 ./cli/internal/recipe.go:68 ./cli/internal/recipe.go:82 ./cli/recipe/release.go:651 ./cli/recipe/sync.go:280 ./cli/recipe/upgrade.go:355 msgid "minor" msgstr "" -#: ./cli/recipe/fetch.go:45 +#: ./cli/recipe/fetch.go:46 msgid "missing [recipe] or --all/-a" msgstr "" -#: ./cli/app/restart.go:65 +#: ./cli/app/restart.go:66 msgid "missing [service]" msgstr "" -#: ./cli/server/add.go:58 +#: ./cli/server/add.go:59 msgid "missing argument or --local/-l flag" msgstr "" -#: ./cli/app/secret.go:59 +#: ./cli/app/secret.go:60 msgid "missing arguments [secret]/[version] or '--all'" msgstr "" -#: ./cli/updater/updater.go:105 +#: ./cli/updater/updater.go:107 msgid "missing arguments or --all/-a flag" msgstr "" @@ -3148,15 +3206,15 @@ msgstr "" msgid "missing version for secret? (%s)" msgstr "" -#: ./cli/app/secret.go:282 +#: ./cli/app/secret.go:284 msgid "must provide argument if --no-input is passed" msgstr "" -#: ./cli/app/new.go:48 ./cli/recipe/new.go:36 ./cli/updater/updater.go:37 ./cli/updater/updater.go:502 +#: ./cli/app/new.go:48 ./cli/recipe/new.go:36 ./cli/updater/updater.go:37 ./cli/updater/updater.go:505 msgid "n" msgstr "" -#: ./cli/recipe/list.go:38 +#: ./cli/recipe/list.go:39 msgid "name" msgstr "" @@ -3169,7 +3227,7 @@ msgstr "" msgid "name: %s, " msgstr "" -#: ./cli/app/secret.go:260 +#: ./cli/app/secret.go:262 msgid "need 3 or 4 arguments" msgstr "" @@ -3183,7 +3241,7 @@ msgstr "" msgid "network %q is declared as external, but it is not in the right scope: %q instead of \"swarm\"" msgstr "" -#: ./cli/app/undeploy.go:134 ./cli/server/prune.go:53 +#: ./cli/app/undeploy.go:135 ./cli/server/prune.go:54 #, c-format msgid "networks pruned: %d" msgstr "" @@ -3198,7 +3256,7 @@ msgstr "" msgid "new [recipe] [version] [flags]" msgstr "" -#: ./cli/catalogue/catalogue.go:256 +#: ./cli/catalogue/catalogue.go:258 #, c-format msgid "new changes published: %s" msgstr "" @@ -3208,7 +3266,7 @@ msgstr "" msgid "new recipe '%s' created: %s" msgstr "" -#: ./cli/recipe/release.go:454 +#: ./cli/recipe/release.go:455 #, c-format msgid "new release published: %s" msgstr "" @@ -3223,12 +3281,12 @@ msgstr "" msgid "no %s exists, skipping reading gitignore paths" msgstr "" -#: ./cli/updater/updater.go:157 ./pkg/app/compose.go:87 +#: ./cli/updater/updater.go:159 ./pkg/app/compose.go:87 #, c-format msgid "no %s label found for %s" msgstr "" -#: ./cli/recipe/release.go:456 +#: ./cli/recipe/release.go:457 msgid "no -p/--publish passed, not publishing" msgstr "" @@ -3246,15 +3304,15 @@ msgstr "" msgid "no app provided" msgstr "" -#: ./cli/app/rollback.go:121 +#: ./cli/app/rollback.go:122 msgid "no available downgrades" msgstr "" -#: ./cli/app/upgrade.go:128 +#: ./cli/app/upgrade.go:129 msgid "no available upgrades" msgstr "" -#: ./cli/updater/updater.go:226 +#: ./cli/updater/updater.go:228 #, c-format msgid "no available upgrades for %s" msgstr "" @@ -3263,7 +3321,7 @@ msgstr "" msgid "no backupbot discovered, is it deployed?" msgstr "" -#: ./cli/catalogue/catalogue.go:220 ./cli/recipe/release.go:389 +#: ./cli/catalogue/catalogue.go:222 ./cli/recipe/release.go:390 #, c-format msgid "no changes discovered in %s, nothing to publish?" msgstr "" @@ -3276,7 +3334,7 @@ msgstr "" msgid "no config file found" msgstr "" -#: ./cli/app/remove.go:95 +#: ./cli/app/remove.go:96 msgid "no configs to remove" msgstr "" @@ -3285,7 +3343,7 @@ msgstr "" msgid "no containers matching the %v filter found?" msgstr "" -#: ./cli/app/new.go:262 ./cli/internal/validate.go:129 +#: ./cli/app/new.go:263 ./cli/internal/validate.go:129 msgid "no domain provided" msgstr "" @@ -3293,17 +3351,17 @@ msgstr "" msgid "no existing label found, automagic insertion not supported yet" msgstr "" -#: ./cli/recipe/sync.go:75 +#: ./cli/recipe/sync.go:76 #, c-format msgid "no git tags found for %s" msgstr "" -#: ./cli/recipe/upgrade.go:178 +#: ./cli/recipe/upgrade.go:179 #, c-format msgid "no new versions available for %s, assuming %s is the latest (use -a/--all-tags to see all anyway)" msgstr "" -#: ./cli/updater/updater.go:275 +#: ./cli/updater/updater.go:277 #, c-format msgid "no published releases for %s in the recipe catalogue?" msgstr "" @@ -3317,37 +3375,37 @@ msgstr "" msgid "no recipe name provided" msgstr "" -#: ./cli/app/secret.go:224 +#: ./cli/app/secret.go:226 #, c-format msgid "no secret %s available for recipe %s?" msgstr "" -#: ./cli/app/secret.go:376 +#: ./cli/app/secret.go:379 msgid "no secret(s) specified?" msgstr "" -#: ./cli/app/secret.go:108 +#: ./cli/app/secret.go:109 msgid "no secrets generated" msgstr "" -#: ./cli/app/secret.go:508 +#: ./cli/app/secret.go:512 #, c-format msgid "no secrets stored for %s" msgstr "" -#: ./cli/app/remove.go:120 +#: ./cli/app/remove.go:121 msgid "no secrets to remove" msgstr "" -#: ./cli/app/secret.go:431 +#: ./cli/app/secret.go:434 msgid "no secrets to remove?" msgstr "" -#: ./cli/app/new.go:311 ./cli/internal/validate.go:167 +#: ./cli/app/new.go:312 ./cli/internal/validate.go:167 msgid "no server provided" msgstr "" -#: ./cli/app/cmd.go:169 +#: ./cli/app/cmd.go:170 #, c-format msgid "no service %s for %s?" msgstr "" @@ -3366,7 +3424,7 @@ msgstr "" msgid "no services matching the %v filter found?" msgstr "" -#: ./cli/recipe/release.go:166 +#: ./cli/recipe/release.go:167 #, c-format msgid "no tag specified and no previous tag available for %s, assuming initial release" msgstr "" @@ -3379,32 +3437,32 @@ msgstr "" msgid "no version bump type specififed?" msgstr "" -#: ./cli/app/volume.go:72 +#: ./cli/app/volume.go:73 #, c-format msgid "no volumes created for %s" msgstr "" -#: ./cli/app/volume.go:186 +#: ./cli/app/volume.go:188 msgid "no volumes removed" msgstr "" -#: ./cli/app/remove.go:142 +#: ./cli/app/remove.go:143 msgid "no volumes to remove" msgstr "" -#: ./cli/app/deploy.go:349 ./cli/app/rollback.go:338 ./cli/app/upgrade.go:449 +#: ./cli/app/deploy.go:350 ./cli/app/rollback.go:339 ./cli/app/upgrade.go:450 msgid "no-converge-checks" msgstr "" -#: ./cli/app/deploy.go:341 ./cli/app/rollback.go:330 ./cli/app/upgrade.go:441 +#: ./cli/app/deploy.go:342 ./cli/app/rollback.go:331 ./cli/app/upgrade.go:442 msgid "no-domain-checks" msgstr "" -#: ./cli/updater/updater.go:501 +#: ./cli/updater/updater.go:504 msgid "no-input" msgstr "" -#: ./cli/app/run.go:103 +#: ./cli/app/run.go:104 msgid "no-tty" msgstr "" @@ -3421,12 +3479,12 @@ msgstr "" msgid "not requesting a remote TTY" msgstr "" -#: ./cli/recipe/upgrade.go:301 +#: ./cli/recipe/upgrade.go:302 #, c-format msgid "not upgrading %s, skipping as requested" msgstr "" -#: ./cli/recipe/upgrade.go:240 +#: ./cli/recipe/upgrade.go:241 #, c-format msgid "not upgrading from %s to %s for %s, because the upgrade type is more serious than what user wants" msgstr "" @@ -3441,11 +3499,11 @@ msgstr "" msgid "notify [flags]" msgstr "" -#: ./cli/app/backup.go:303 +#: ./cli/app/backup.go:308 msgid "number of retry attempts" msgstr "" -#: ./cli/app/cp.go:86 +#: ./cli/app/cp.go:87 msgid "one of / arguments must take $SERVICE:$PATH form" msgstr "" @@ -3457,23 +3515,23 @@ msgstr "" msgid "only annotated tags used for recipe version" msgstr "" -#: ./cli/recipe/lint.go:140 +#: ./cli/recipe/lint.go:141 msgid "only show errors" msgstr "" -#: ./cli/app/upgrade.go:460 +#: ./cli/app/upgrade.go:461 msgid "only show release notes" msgstr "" -#: ./cli/app/logs.go:97 +#: ./cli/app/logs.go:98 msgid "only tail stderr" msgstr "" -#: ./cli/app/backup.go:269 ./cli/app/new.go:351 ./cli/app/ps.go:30 ./cli/app/secret.go:540 ./cli/app/secret.go:564 ./cli/app/secret.go:604 ./cli/app/undeploy.go:155 ./cli/catalogue/catalogue.go:282 ./cli/recipe/list.go:107 ./cli/recipe/release.go:667 ./cli/server/prune.go:17 +#: ./cli/app/backup.go:274 ./cli/app/new.go:352 ./cli/app/ps.go:30 ./cli/app/secret.go:545 ./cli/app/secret.go:569 ./cli/app/secret.go:609 ./cli/app/undeploy.go:156 ./cli/catalogue/catalogue.go:285 ./cli/recipe/list.go:108 ./cli/recipe/release.go:668 ./cli/server/prune.go:17 msgid "p" msgstr "" -#: ./cli/recipe/upgrade.go:159 +#: ./cli/recipe/upgrade.go:160 #, c-format msgid "parsed %s for %s" msgstr "" @@ -3483,32 +3541,32 @@ msgstr "" msgid "parsed %s from %s" msgstr "" -#: ./cli/app/cmd.go:129 ./cli/app/cmd.go:175 +#: ./cli/app/cmd.go:130 ./cli/app/cmd.go:176 #, c-format msgid "parsed following command arguments: %s" msgstr "" -#: ./cli/app/upgrade.go:317 +#: ./cli/app/upgrade.go:318 #, c-format msgid "parsing chosen upgrade version failed: %s" msgstr "" -#: ./cli/app/upgrade.go:361 +#: ./cli/app/upgrade.go:362 #, c-format msgid "parsing deployed version failed: %s" msgstr "" -#: ./cli/app/upgrade.go:322 +#: ./cli/app/upgrade.go:323 #, c-format msgid "parsing deployment version failed: %s" msgstr "" -#: ./cli/app/upgrade.go:328 ./cli/app/upgrade.go:367 +#: ./cli/app/upgrade.go:329 ./cli/app/upgrade.go:368 #, c-format msgid "parsing recipe version failed: %s" msgstr "" -#: ./cli/app/new.go:350 ./cli/app/secret.go:539 ./cli/app/secret.go:563 ./cli/app/secret.go:603 +#: ./cli/app/new.go:351 ./cli/app/secret.go:544 ./cli/app/secret.go:568 ./cli/app/secret.go:608 msgid "pass" msgstr "" @@ -3516,43 +3574,43 @@ msgstr "" msgid "pass command not found on $PATH, is it installed?" msgstr "" -#: ./cli/internal/recipe.go:48 ./cli/internal/recipe.go:70 ./cli/internal/recipe.go:84 ./cli/recipe/release.go:658 ./cli/recipe/sync.go:287 ./cli/recipe/upgrade.go:362 +#: ./cli/internal/recipe.go:48 ./cli/internal/recipe.go:70 ./cli/internal/recipe.go:84 ./cli/recipe/release.go:659 ./cli/recipe/sync.go:288 ./cli/recipe/upgrade.go:363 msgid "patch" msgstr "" -#: ./cli/app/backup.go:268 +#: ./cli/app/backup.go:273 msgid "path" msgstr "" -#: ./cli/recipe/list.go:106 +#: ./cli/recipe/list.go:107 msgid "pattern" msgstr "" -#: ./cli/app/deploy.go:336 ./cli/app/remove.go:159 ./cli/app/rollback.go:325 ./cli/app/upgrade.go:436 ./cli/app/volume.go:204 +#: ./cli/app/deploy.go:337 ./cli/app/remove.go:160 ./cli/app/rollback.go:326 ./cli/app/upgrade.go:437 ./cli/app/volume.go:206 msgid "perform action without further prompt" msgstr "" -#: ./cli/recipe/release.go:620 +#: ./cli/recipe/release.go:621 #, c-format msgid "please fix your synced label for %s and re-run this command" msgstr "" -#: ./cli/app/rollback.go:237 +#: ./cli/app/rollback.go:238 #, c-format msgid "please select a downgrade (version: %s):" msgstr "" -#: ./cli/app/rollback.go:242 +#: ./cli/app/rollback.go:243 #, c-format msgid "please select a downgrade (version: %s, chaos: %s):" msgstr "" -#: ./cli/app/upgrade.go:284 +#: ./cli/app/upgrade.go:285 #, c-format msgid "please select an upgrade (version: %s):" msgstr "" -#: ./cli/app/upgrade.go:289 +#: ./cli/app/upgrade.go:290 #, c-format msgid "please select an upgrade (version: %s, chaos: %s):" msgstr "" @@ -3565,15 +3623,15 @@ msgstr "" msgid "polling undeploy status" msgstr "" -#: ./cli/run.go:135 +#: ./cli/run.go:137 msgid "prefer offline & filesystem access" msgstr "" -#: ./cli/recipe/release.go:154 +#: ./cli/recipe/release.go:155 msgid "previous git tags detected, assuming new semver release" msgstr "" -#: ./cli/app/list.go:315 ./cli/app/ps.go:202 ./cli/app/secret.go:534 ./cli/app/secret.go:630 ./cli/recipe/list.go:101 ./cli/recipe/upgrade.go:373 ./cli/recipe/version.go:135 ./cli/server/list.go:103 +#: ./cli/app/list.go:316 ./cli/app/ps.go:203 ./cli/app/secret.go:539 ./cli/app/secret.go:635 ./cli/recipe/list.go:102 ./cli/recipe/upgrade.go:374 ./cli/recipe/version.go:136 ./cli/server/list.go:104 msgid "print machine-readable output" msgstr "" @@ -3582,7 +3640,7 @@ msgstr "" msgid "processing %s for %s" msgstr "" -#: ./cli/app/undeploy.go:154 +#: ./cli/app/undeploy.go:155 msgid "prune" msgstr "" @@ -3591,7 +3649,7 @@ msgstr "" msgid "prune [flags]" msgstr "" -#: ./cli/app/undeploy.go:157 +#: ./cli/app/undeploy.go:158 msgid "prune unused containers, networks, and dangling images" msgstr "" @@ -3600,7 +3658,7 @@ msgstr "" msgid "ps [flags]" msgstr "" -#: ./cli/catalogue/catalogue.go:281 ./cli/recipe/release.go:666 +#: ./cli/catalogue/catalogue.go:284 ./cli/recipe/release.go:667 msgid "publish" msgstr "" @@ -3608,11 +3666,11 @@ msgstr "" msgid "publish a recipe version to the catalogue" msgstr "" -#: ./cli/catalogue/catalogue.go:284 ./cli/recipe/release.go:669 +#: ./cli/catalogue/catalogue.go:287 ./cli/recipe/release.go:670 msgid "publish changes to git.coopcloud.tech" msgstr "" -#: ./cli/recipe/release.go:436 +#: ./cli/recipe/release.go:437 msgid "publish new release?" msgstr "" @@ -3620,7 +3678,7 @@ msgstr "" msgid "querying remote servers..." msgstr "" -#: ./cli/app/backup.go:301 ./cli/app/list.go:298 ./cli/app/run.go:23 ./cli/app/upgrade.go:458 ./cli/catalogue/catalogue.go:290 ./cli/recipe/recipe.go:12 ./cli/recipe/release.go:635 ./cli/recipe/sync.go:264 +#: ./cli/app/backup.go:306 ./cli/app/list.go:299 ./cli/app/run.go:23 ./cli/app/upgrade.go:459 ./cli/catalogue/catalogue.go:293 ./cli/recipe/recipe.go:12 ./cli/recipe/release.go:636 ./cli/recipe/sync.go:265 msgid "r" msgstr "" @@ -3671,16 +3729,16 @@ msgstr "" msgid "reader: %v, " msgstr "" -#: ./cli/app/secret.go:276 +#: ./cli/app/secret.go:278 #, c-format msgid "reading data from stdin: %s" msgstr "" -#: ./cli/app/secret.go:273 +#: ./cli/app/secret.go:275 msgid "reading secret data from stdin" msgstr "" -#: ./cli/app/secret.go:230 +#: ./cli/app/secret.go:232 #, c-format msgid "reading secret from file: %s" msgstr "" @@ -3690,7 +3748,7 @@ msgstr "" msgid "readme: %s, " msgstr "" -#: ./cli/app/list.go:297 ./cli/app/list.go:304 ./cli/run.go:33 +#: ./cli/app/list.go:298 ./cli/app/list.go:305 ./cli/run.go:34 msgid "recipe" msgstr "" @@ -3719,7 +3777,7 @@ msgstr "" msgid "reduce length of secret names to 12 chars" msgstr "" -#: ./cli/recipe/lint.go:33 +#: ./cli/recipe/lint.go:34 msgid "ref" msgstr "" @@ -3728,22 +3786,22 @@ msgstr "" msgid "release [version] [flags]" msgstr "" -#: ./cli/app/upgrade.go:457 +#: ./cli/app/upgrade.go:458 msgid "releasenotes" msgstr "" -#: ./cli/app/cp.go:118 ./cli/app/cp.go:200 ./cli/app/cp.go:211 +#: ./cli/app/cp.go:119 ./cli/app/cp.go:201 ./cli/app/cp.go:212 #, c-format msgid "remote path: %s" msgstr "" -#: ./cli/app/cp.go:198 +#: ./cli/app/cp.go:199 #, c-format msgid "remote: %s does not exist" msgstr "" #. translators: `app secret remove` command -#: ./cli/app/secret.go:324 +#: ./cli/app/secret.go:326 msgid "remove [[secret] | --all] [flags]" msgstr "" @@ -3753,7 +3811,7 @@ msgid "remove [flags]" msgstr "" #. translators: `app volume remove` command -#: ./cli/app/volume.go:78 +#: ./cli/app/volume.go:79 msgid "remove [volume] [flags]" msgstr "" @@ -3762,19 +3820,19 @@ msgstr "" msgid "remove [flags]" msgstr "" -#: ./cli/app/secret.go:598 +#: ./cli/app/secret.go:603 msgid "remove all secrets" msgstr "" -#: ./cli/server/prune.go:94 +#: ./cli/server/prune.go:95 msgid "remove all unused images" msgstr "" -#: ./cli/app/secret.go:606 +#: ./cli/app/secret.go:611 msgid "remove generated secrets from a local pass store" msgstr "" -#: ./cli/server/prune.go:102 +#: ./cli/server/prune.go:103 msgid "remove volumes" msgstr "" @@ -3788,16 +3846,16 @@ msgstr "" msgid "removed dirty suffix from .env version: %s -> %s" msgstr "" -#: ./cli/recipe/release.go:577 +#: ./cli/recipe/release.go:578 msgid "removed freshly created commit" msgstr "" -#: ./cli/recipe/release.go:595 +#: ./cli/recipe/release.go:596 #, c-format msgid "removed freshly created tag %s" msgstr "" -#: ./cli/server/prune.go:57 +#: ./cli/server/prune.go:58 msgid "removing all images, not only dangling ones" msgstr "" @@ -3806,7 +3864,7 @@ msgstr "" msgid "removing config %s" msgstr "" -#: ./cli/app/remove.go:90 +#: ./cli/app/remove.go:91 #, c-format msgid "removing configs failed: %s" msgstr "" @@ -3826,12 +3884,12 @@ msgstr "" msgid "removing service %s" msgstr "" -#: ./cli/app/volume.go:152 +#: ./cli/app/volume.go:154 #, c-format msgid "removing volume %s failed: %s" msgstr "" -#: ./cli/app/remove.go:137 ./cli/app/volume.go:181 +#: ./cli/app/remove.go:138 ./cli/app/volume.go:183 #, c-format msgid "removing volumes failed: %s" msgstr "" @@ -3854,19 +3912,19 @@ msgstr "" msgid "repo set config: %s" msgstr "" -#: ./cli/catalogue/catalogue.go:292 ./cli/recipe/release.go:637 ./cli/recipe/sync.go:266 +#: ./cli/catalogue/catalogue.go:295 ./cli/recipe/release.go:638 ./cli/recipe/sync.go:267 msgid "report changes that would be made" msgstr "" -#: ./cli/app/cmd.go:261 +#: ./cli/app/cmd.go:263 msgid "request remote user" msgstr "" -#: ./cli/app/cmd.go:47 +#: ./cli/app/cmd.go:48 msgid "requires at least 2 arguments with --local/-l" msgstr "" -#: ./cli/app/cmd.go:68 +#: ./cli/app/cmd.go:69 msgid "requires at least 3 arguments" msgstr "" @@ -3875,7 +3933,7 @@ msgstr "" msgid "reset [flags]" msgstr "" -#: ./cli/recipe/lint.go:38 +#: ./cli/recipe/lint.go:39 msgid "resolve" msgstr "" @@ -3884,7 +3942,7 @@ msgstr "" msgid "restart [[service] | --all-services] [flags]" msgstr "" -#: ./cli/app/restart.go:165 +#: ./cli/app/restart.go:166 msgid "restart all services" msgstr "" @@ -3893,19 +3951,19 @@ msgstr "" msgid "restore [flags]" msgstr "" -#: ./cli/app/restore.go:111 +#: ./cli/app/restore.go:112 msgid "restore specific services" msgstr "" -#: ./cli/app/restore.go:119 +#: ./cli/app/restore.go:120 msgid "restore specific volumes" msgstr "" -#: ./cli/app/backup.go:300 +#: ./cli/app/backup.go:305 msgid "retries" msgstr "" -#: ./cli/updater/updater.go:241 +#: ./cli/updater/updater.go:243 #, c-format msgid "retrieve deployed version whether %s is already deployed" msgstr "" @@ -3915,7 +3973,7 @@ msgstr "" msgid "retrieved %s as backup enabled service" msgstr "" -#: ./cli/app/cp.go:73 ./cli/internal/command.go:39 +#: ./cli/app/cp.go:74 ./cli/internal/command.go:39 #, c-format msgid "retrieved %s as target container on %s" msgstr "" @@ -3930,7 +3988,7 @@ msgstr "" msgid "retrieved %s for %s" msgstr "" -#: ./cli/recipe/upgrade.go:140 +#: ./cli/recipe/upgrade.go:141 #, c-format msgid "retrieved %s from remote registry for %s" msgstr "" @@ -3945,7 +4003,7 @@ msgstr "" msgid "retrieved app statuses: %s" msgstr "" -#: ./cli/recipe/version.go:40 +#: ./cli/recipe/version.go:41 msgid "retrieved versions from local recipe repository" msgstr "" @@ -3962,7 +4020,7 @@ msgstr "" msgid "rl" msgstr "" -#: ./cli/app/remove.go:21 ./cli/app/secret.go:325 ./cli/app/volume.go:95 ./cli/server/remove.go:19 +#: ./cli/app/remove.go:21 ./cli/app/secret.go:327 ./cli/app/volume.go:97 ./cli/server/remove.go:19 msgid "rm" msgstr "" @@ -3979,7 +4037,7 @@ msgstr "" msgid "rs" msgstr "" -#: ./cli/recipe/lint.go:34 +#: ./cli/recipe/lint.go:35 msgid "rule" msgstr "" @@ -3988,15 +4046,15 @@ msgstr "" msgid "run [[args] [flags] | [flags] -- [args]]" msgstr "" -#: ./cli/app/run.go:114 +#: ./cli/app/run.go:115 msgid "run command as user" msgstr "" -#: ./cli/app/cmd.go:253 +#: ./cli/app/cmd.go:255 msgid "run command locally" msgstr "" -#: ./cli/app/deploy.go:228 ./cli/app/upgrade.go:265 +#: ./cli/app/deploy.go:229 ./cli/app/upgrade.go:266 #, c-format msgid "run the following post-deploy commands: %s" msgstr "" @@ -4011,7 +4069,7 @@ msgstr "" msgid "running command %s %s within the context of %s_%s" msgstr "" -#: ./cli/app/cmd.go:172 +#: ./cli/app/cmd.go:173 #, c-format msgid "running command %s within the context of %s_%s" msgstr "" @@ -4031,7 +4089,7 @@ msgstr "" msgid "running post-command '%s %s' in container %s" msgstr "" -#: ./cli/app/backup.go:183 ./cli/app/backup.go:237 ./cli/app/backup.go:261 ./cli/app/list.go:321 ./cli/app/logs.go:95 ./cli/app/new.go:328 ./cli/app/restore.go:109 ./cli/app/secret.go:515 ./cli/catalogue/catalogue.go:298 ./cli/recipe/fetch.go:124 ./cli/recipe/sync.go:24 ./cli/server/server.go:12 +#: ./cli/app/backup.go:186 ./cli/app/backup.go:242 ./cli/app/backup.go:266 ./cli/app/list.go:322 ./cli/app/logs.go:96 ./cli/app/new.go:329 ./cli/app/restore.go:110 ./cli/app/secret.go:519 ./cli/catalogue/catalogue.go:301 ./cli/recipe/fetch.go:125 ./cli/recipe/sync.go:24 ./cli/server/server.go:12 msgid "s" msgstr "" @@ -4040,7 +4098,7 @@ msgstr "" msgid "sample env: %s, " msgstr "" -#: ./cli/recipe/lint.go:36 +#: ./cli/recipe/lint.go:37 msgid "satisfied" msgstr "" @@ -4055,11 +4113,11 @@ msgid "secret %s is longer than 12 characters" msgstr "" #. translators: `app secret` command group -#: ./cli/app/secret.go:514 +#: ./cli/app/secret.go:518 msgid "secret [cmd] [args] [flags]" msgstr "" -#: ./cli/app/secret.go:285 +#: ./cli/app/secret.go:287 msgid "secret data not provided on command-line or stdin, prompting" msgstr "" @@ -4068,26 +4126,26 @@ msgstr "" msgid "secret not found: %s" msgstr "" -#: ./cli/app/deploy.go:275 +#: ./cli/app/deploy.go:276 #, c-format msgid "secret not generated: %s" msgstr "" -#: ./cli/app/remove.go:117 +#: ./cli/app/remove.go:118 #, c-format msgid "secret: %s removed" msgstr "" -#: ./cli/app/backup.go:276 ./cli/app/new.go:358 +#: ./cli/app/backup.go:281 ./cli/app/new.go:359 msgid "secrets" msgstr "" -#: ./cli/app/new.go:198 +#: ./cli/app/new.go:199 #, c-format msgid "secrets are %s shown again, please save them %s" msgstr "" -#: ./cli/app/list.go:320 ./cli/app/list.go:327 ./cli/app/new.go:327 ./cli/app/new.go:334 ./cli/run.go:34 +#: ./cli/app/list.go:321 ./cli/app/list.go:328 ./cli/app/new.go:328 ./cli/app/new.go:335 ./cli/run.go:35 msgid "server" msgstr "" @@ -4101,7 +4159,7 @@ msgstr "" msgid "server [cmd] [args] [flags]" msgstr "" -#: ./cli/server/add.go:185 +#: ./cli/server/add.go:186 #, c-format msgid "server dir for %s already created" msgstr "" @@ -4110,37 +4168,37 @@ msgstr "" msgid "server doesn't exist?" msgstr "" -#: ./cli/server/add.go:142 +#: ./cli/server/add.go:143 #, c-format msgid "serverAdd: cleanUp: %s is not empty, aborting cleanup" msgstr "" -#: ./cli/server/add.go:129 +#: ./cli/server/add.go:130 #, c-format msgid "serverAdd: cleanUp: cleaning up context for %s" msgstr "" -#: ./cli/server/add.go:147 +#: ./cli/server/add.go:148 #, c-format msgid "serverAdd: cleanUp: failed to remove %s: %s" msgstr "" -#: ./cli/server/add.go:138 +#: ./cli/server/add.go:139 #, c-format msgid "serverAdd: cleanUp: unable to list files in %s: %s" msgstr "" -#: ./cli/recipe/upgrade.go:223 +#: ./cli/recipe/upgrade.go:224 #, c-format msgid "service %s is at version %s, but pinned to %s, please correct your compose.yml file manually!" msgstr "" -#: ./cli/recipe/upgrade.go:219 +#: ./cli/recipe/upgrade.go:220 #, c-format msgid "service %s, image %s pinned to %s, no compatible upgrade found" msgstr "" -#: ./cli/app/restore.go:108 +#: ./cli/app/restore.go:109 msgid "services" msgstr "" @@ -4183,48 +4241,48 @@ msgstr "" msgid "set reference: %s" msgstr "" -#: ./cli/recipe/lint.go:35 +#: ./cli/recipe/lint.go:36 msgid "severity" msgstr "" -#: ./cli/app/backup.go:247 +#: ./cli/app/backup.go:252 msgid "show all paths" msgstr "" -#: ./cli/app/list.go:292 +#: ./cli/app/list.go:293 msgid "show app deployment status" msgstr "" -#: ./cli/app/list.go:300 +#: ./cli/app/list.go:301 msgid "show apps of a specific recipe" msgstr "" -#: ./cli/app/list.go:323 +#: ./cli/app/list.go:324 msgid "show apps of a specific server" msgstr "" -#: ./cli/run.go:119 ./cli/updater/updater.go:496 +#: ./cli/run.go:121 ./cli/updater/updater.go:499 msgid "show debug messages" msgstr "" -#: ./cli/app/logs.go:102 +#: ./cli/app/logs.go:103 msgid "since" msgstr "" -#: ./cli/app/new.go:296 +#: ./cli/app/new.go:297 #, c-format msgid "single server detected, choosing %s automatically" msgstr "" -#: ./cli/catalogue/catalogue.go:300 +#: ./cli/catalogue/catalogue.go:303 msgid "skip updating recipe repositories" msgstr "" -#: ./cli/catalogue/catalogue.go:297 +#: ./cli/catalogue/catalogue.go:300 msgid "skip-updates" msgstr "" -#: ./cli/recipe/lint.go:37 +#: ./cli/recipe/lint.go:38 msgid "skipped" msgstr "" @@ -4233,7 +4291,7 @@ msgstr "" msgid "skipping %s based on skip condition" msgstr "" -#: ./cli/recipe/lint.go:54 +#: ./cli/recipe/lint.go:55 #, c-format msgid "skipping %s, does not have level \"error\"" msgstr "" @@ -4246,11 +4304,11 @@ msgstr "" msgid "skipping converge logic checks" msgstr "" -#: ./cli/app/deploy.go:181 +#: ./cli/app/deploy.go:182 msgid "skipping domain checks" msgstr "" -#: ./cli/app/deploy.go:178 +#: ./cli/app/deploy.go:179 msgid "skipping domain checks, no DOMAIN=... configured" msgstr "" @@ -4269,24 +4327,24 @@ msgstr "" msgid "skipping writing version %s because dry run" msgstr "" -#: ./cli/app/backup.go:236 ./cli/app/backup.go:260 +#: ./cli/app/backup.go:241 ./cli/app/backup.go:265 msgid "snapshot" msgstr "" #. translators: `app backup snapshots` command -#: ./cli/app/backup.go:182 +#: ./cli/app/backup.go:185 msgid "snapshots [flags]" msgstr "" -#: ./cli/app/secret.go:293 +#: ./cli/app/secret.go:295 msgid "specify secret file" msgstr "" -#: ./cli/app/secret.go:289 +#: ./cli/app/secret.go:291 msgid "specify secret value" msgstr "" -#: ./cli/app/new.go:330 +#: ./cli/app/new.go:331 msgid "specify server for new app" msgstr "" @@ -4294,11 +4352,11 @@ msgstr "" msgid "sr" msgstr "" -#: ./cli/recipe/fetch.go:123 +#: ./cli/recipe/fetch.go:124 msgid "ssh" msgstr "" -#: ./cli/server/add.go:108 +#: ./cli/server/add.go:109 #, c-format msgid "ssh %s error: %s" msgstr "" @@ -4317,15 +4375,15 @@ msgstr "" msgid "ssh url: %s, " msgstr "" -#: ./cli/recipe/release.go:446 +#: ./cli/recipe/release.go:447 msgid "ssh-agent not found. see \"abra recipe release --help\" and try again" msgstr "" -#: ./cli/catalogue/catalogue.go:87 +#: ./cli/catalogue/catalogue.go:89 msgid "ssh: SSH_AUTH_SOCK missing, --publish/-p will fail. see \"abra catalogue generate --help\"" msgstr "" -#: ./cli/app/list.go:289 ./cli/recipe/list.go:40 +#: ./cli/app/list.go:290 ./cli/recipe/list.go:41 msgid "status" msgstr "" @@ -4334,15 +4392,15 @@ msgstr "" msgid "status: %s}" msgstr "" -#: ./cli/app/logs.go:94 +#: ./cli/app/logs.go:95 msgid "stderr" msgstr "" -#: ./cli/app/secret.go:542 ./cli/app/secret.go:566 +#: ./cli/app/secret.go:547 ./cli/app/secret.go:571 msgid "store generated secrets in a local pass store" msgstr "" -#: ./cli/app/new.go:353 +#: ./cli/app/new.go:354 msgid "store secrets in a local pass store" msgstr "" @@ -4394,7 +4452,7 @@ msgstr "" msgid "synced label %s to service %s" msgstr "" -#: ./cli/app/backup.go:253 ./cli/app/restore.go:101 ./cli/app/run.go:104 ./cli/app/secret.go:580 +#: ./cli/app/backup.go:258 ./cli/app/restore.go:102 ./cli/app/run.go:105 ./cli/app/secret.go:585 msgid "t" msgstr "" @@ -4402,12 +4460,12 @@ msgstr "" msgid "tag all images with stable tags" msgstr "" -#: ./cli/recipe/sync.go:170 +#: ./cli/recipe/sync.go:171 #, c-format msgid "tag at commit %s is unannotated or otherwise broken" msgstr "" -#: ./cli/recipe/upgrade.go:297 +#: ./cli/recipe/upgrade.go:298 #, c-format msgid "tag upgraded from %s to %s for %s" msgstr "" @@ -4416,7 +4474,7 @@ msgstr "" msgid "tags use semver-like format" msgstr "" -#: ./cli/app/logs.go:105 +#: ./cli/app/logs.go:106 msgid "tail logs since YYYY-MM-DDTHH:MM:SSZ" msgstr "" @@ -4425,11 +4483,11 @@ msgstr "" msgid "tailLogs: unable to copy buffer: %s" msgstr "" -#: ./cli/app/restore.go:100 +#: ./cli/app/restore.go:101 msgid "target" msgstr "" -#: ./cli/app/restore.go:103 +#: ./cli/app/restore.go:104 msgid "target path" msgstr "" @@ -4437,7 +4495,7 @@ msgstr "" msgid "test and disable can't be set at the same time" msgstr "" -#: ./cli/recipe/list.go:44 +#: ./cli/recipe/list.go:45 msgid "tests" msgstr "" @@ -4461,7 +4519,7 @@ msgstr "" msgid "timeout: waiting on undeploy tasks (timeout=%v secs)" msgstr "" -#: ./cli/app/backup.go:252 +#: ./cli/app/backup.go:257 msgid "timestamps" msgstr "" @@ -4477,7 +4535,7 @@ msgstr "" msgid "tmpfs options are incompatible with type volume" msgstr "" -#: ./cli/run.go:127 ./cli/updater/updater.go:504 +#: ./cli/run.go:129 ./cli/updater/updater.go:507 msgid "toggle non-interactive mode" msgstr "" @@ -4485,28 +4543,28 @@ msgstr "" msgid "traefik routing enabled" msgstr "" -#: ./cli/app/secret.go:574 +#: ./cli/app/secret.go:579 msgid "treat input as a file" msgstr "" -#: ./cli/app/secret.go:579 +#: ./cli/app/secret.go:584 msgid "trim" msgstr "" -#: ./cli/app/secret.go:582 +#: ./cli/app/secret.go:587 msgid "trim input" msgstr "" -#: ./cli/app/new.go:223 ./pkg/app/app.go:141 +#: ./cli/app/new.go:224 ./pkg/app/app.go:141 #, c-format msgid "trimming %s to %s to avoid runtime limits" msgstr "" -#: ./cli/app/cmd.go:266 +#: ./cli/app/cmd.go:268 msgid "tty" msgstr "" -#: ./cli/app/cmd.go:259 ./cli/app/run.go:112 ./cli/recipe/upgrade.go:43 ./cli/updater/updater.go:77 +#: ./cli/app/cmd.go:261 ./cli/app/run.go:113 ./cli/recipe/upgrade.go:43 ./cli/updater/updater.go:78 msgid "u" msgstr "" @@ -4529,7 +4587,7 @@ msgstr "" msgid "unable to clean up git clone of %s: %s" msgstr "" -#: ./cli/app/list.go:149 +#: ./cli/app/list.go:150 #, c-format msgid "unable to clone %s: %s" msgstr "" @@ -4539,7 +4597,7 @@ msgstr "" msgid "unable to connect to %s, please check your SSH config" msgstr "" -#: ./cli/recipe/sync.go:77 +#: ./cli/recipe/sync.go:78 msgid "unable to continue, input required for initial version" msgstr "" @@ -4548,27 +4606,27 @@ msgstr "" msgid "unable to convert timeout label %s to int: %s" msgstr "" -#: ./cli/app/ps.go:166 +#: ./cli/app/ps.go:167 #, c-format msgid "unable to convert to JSON: %s" msgstr "" -#: ./cli/run.go:50 +#: ./cli/run.go:51 #, c-format msgid "unable to create %s: %s" msgstr "" -#: ./cli/server/add.go:101 +#: ./cli/server/add.go:102 #, c-format msgid "unable to create local context: %s" msgstr "" -#: ./cli/recipe/release.go:591 +#: ./cli/recipe/release.go:592 #, c-format msgid "unable to delete tag %s: %s" msgstr "" -#: ./cli/recipe/upgrade.go:248 +#: ./cli/recipe/upgrade.go:249 #, c-format msgid "unable to determine versioning semantics of %s, listing all tags" msgstr "" @@ -4578,7 +4636,7 @@ msgstr "" msgid "unable to discover .env.sample for %s" msgstr "" -#: ./cli/recipe/fetch.go:65 +#: ./cli/recipe/fetch.go:66 #, c-format msgid "unable to discover SSH remote for %s" msgstr "" @@ -4602,7 +4660,7 @@ msgstr "" msgid "unable to locate git command, cannot output diff" msgstr "" -#: ./cli/recipe/fetch.go:71 ./pkg/git/read.go:26 ./pkg/lint/recipe.go:491 ./pkg/recipe/git.go:236 +#: ./cli/recipe/fetch.go:72 ./pkg/git/read.go:26 ./pkg/lint/recipe.go:491 ./pkg/recipe/git.go:236 #, c-format msgid "unable to open %s: %s" msgstr "" @@ -4612,12 +4670,12 @@ msgstr "" msgid "unable to open git work tree in %s: %s" msgstr "" -#: ./cli/recipe/release.go:564 ./cli/recipe/release.go:586 +#: ./cli/recipe/release.go:565 ./cli/recipe/release.go:587 #, c-format msgid "unable to open repo in %s: %s" msgstr "" -#: ./cli/recipe/release.go:569 +#: ./cli/recipe/release.go:570 #, c-format msgid "unable to open work tree in %s: %s" msgstr "" @@ -4627,7 +4685,7 @@ msgstr "" msgid "unable to open worktree of %s: %s" msgstr "" -#: ./cli/recipe/upgrade.go:155 +#: ./cli/recipe/upgrade.go:156 #, c-format msgid "unable to parse %s, error was: %s, skipping upgrade for %s" msgstr "" @@ -4642,7 +4700,7 @@ msgstr "" msgid "unable to parse '%s' value as bool: %s" msgstr "" -#: ./cli/run.go:102 +#: ./cli/run.go:104 #, c-format msgid "unable to proceed, %s does not exist?" msgstr "" @@ -4657,27 +4715,27 @@ msgstr "" msgid "unable to read remotes in %s: %s" msgstr "" -#: ./cli/recipe/upgrade.go:149 +#: ./cli/recipe/upgrade.go:150 #, c-format msgid "unable to read tag for image %s, is it missing? skipping upgrade for %s" msgstr "" -#: ./cli/recipe/release.go:607 +#: ./cli/recipe/release.go:608 #, c-format msgid "unable to read version for %s from synced label. Did you try running \"abra recipe sync %s\" already?" msgstr "" -#: ./cli/recipe/fetch.go:75 +#: ./cli/recipe/fetch.go:76 #, c-format msgid "unable to remove default remote in %s: %s" msgstr "" -#: ./cli/app/volume.go:147 +#: ./cli/app/volume.go:149 #, c-format msgid "unable to remove volume: no volume with name '%s'?" msgstr "" -#: ./cli/app/secret.go:130 ./cli/app/secret.go:495 ./cli/recipe/list.go:78 ./cli/recipe/version.go:107 ./cli/server/list.go:83 +#: ./cli/app/secret.go:131 ./cli/app/secret.go:499 ./cli/recipe/list.go:79 ./cli/recipe/version.go:108 ./cli/server/list.go:84 #, c-format msgid "unable to render to JSON: %s" msgstr "" @@ -4687,12 +4745,12 @@ msgstr "" msgid "unable to resolve '%s': %s" msgstr "" -#: ./cli/server/add.go:115 +#: ./cli/server/add.go:116 #, c-format msgid "unable to resolve IPv4 for %s" msgstr "" -#: ./cli/app/list.go:154 +#: ./cli/app/list.go:155 #, c-format msgid "unable to retrieve tags for %s: %s" msgstr "" @@ -4702,7 +4760,7 @@ msgstr "" msgid "unable to set IO streams as raw terminal: %s" msgstr "" -#: ./cli/recipe/fetch.go:82 +#: ./cli/recipe/fetch.go:83 #, c-format msgid "unable to set SSH remote in %s: %s" msgstr "" @@ -4712,7 +4770,7 @@ msgstr "" msgid "unable to setup input stream: %s" msgstr "" -#: ./cli/recipe/release.go:574 +#: ./cli/recipe/release.go:575 #, c-format msgid "unable to soft reset %s: %s" msgstr "" @@ -4747,7 +4805,7 @@ msgstr "" msgid "undeploy [flags]" msgstr "" -#: ./cli/app/undeploy.go:103 +#: ./cli/app/undeploy.go:104 msgid "undeploy succeeded 🟢" msgstr "" @@ -4771,15 +4829,15 @@ msgstr "" msgid "unimplemented call: SetWriteDeadline(%v)" msgstr "" -#: ./cli/app/labels.go:72 ./cli/app/list.go:112 ./cli/app/list.go:113 ./cli/app/list.go:114 ./cli/app/list.go:115 ./cli/app/list.go:116 ./cli/app/list.go:176 ./cli/app/ps.go:120 ./cli/app/ps.go:121 ./cli/app/ps.go:122 ./cli/app/ps.go:123 ./cli/app/ps.go:124 ./cli/server/list.go:60 ./cli/server/list.go:72 +#: ./cli/app/labels.go:73 ./cli/app/list.go:113 ./cli/app/list.go:114 ./cli/app/list.go:115 ./cli/app/list.go:116 ./cli/app/list.go:117 ./cli/app/list.go:177 ./cli/app/ps.go:121 ./cli/app/ps.go:122 ./cli/app/ps.go:123 ./cli/app/ps.go:124 ./cli/app/ps.go:125 ./cli/server/list.go:61 ./cli/server/list.go:73 msgid "unknown" msgstr "" -#: ./cli/app/rollback.go:143 +#: ./cli/app/rollback.go:144 msgid "unknown deployed version, unable to downgrade" msgstr "" -#: ./cli/app/upgrade.go:150 +#: ./cli/app/upgrade.go:151 msgid "unknown deployed version, unable to upgrade" msgstr "" @@ -4798,7 +4856,7 @@ msgstr "" msgid "unknown server, run \"abra server add %s\"?" msgstr "" -#: ./cli/app/cp.go:254 +#: ./cli/app/cp.go:255 #, c-format msgid "untar: %s" msgstr "" @@ -4807,7 +4865,7 @@ msgstr "" msgid "up" msgstr "" -#: ./cli/updater/updater.go:559 +#: ./cli/updater/updater.go:562 msgid "update all deployed apps" msgstr "" @@ -4821,11 +4879,11 @@ msgstr "" msgid "updating %s to %s in %s" msgstr "" -#: ./cli/run.go:35 +#: ./cli/run.go:36 msgid "upgrade" msgstr "" -#: ./cli/updater/updater.go:446 +#: ./cli/updater/updater.go:448 #, c-format msgid "upgrade %s (%s) to version %s" msgstr "" @@ -4841,7 +4899,7 @@ msgid "upgrade [flags]" msgstr "" #. translators: `app upgrade` command -#: ./cli/updater/updater.go:76 +#: ./cli/updater/updater.go:77 msgid "upgrade [[stack] [recipe] | --all] [flags]" msgstr "" @@ -4850,17 +4908,17 @@ msgstr "" msgid "upgrade [flags]" msgstr "" -#: ./cli/recipe/upgrade.go:244 +#: ./cli/recipe/upgrade.go:245 #, c-format msgid "upgrade to which tag? (service: %s, image: %s, tag: %s)" msgstr "" -#: ./cli/recipe/upgrade.go:250 +#: ./cli/recipe/upgrade.go:251 #, c-format msgid "upgrade to which tag? (service: %s, tag: %s)" msgstr "" -#: ./cli/recipe/upgrade.go:217 +#: ./cli/recipe/upgrade.go:218 #, c-format msgid "upgrading service %s from %s to %s (pinned tag: %s)" msgstr "" @@ -4869,7 +4927,7 @@ msgstr "" msgid "upload your recipe to git.coopcloud.tech/coop-cloud/..." msgstr "" -#: ./cli/recipe/release.go:614 +#: ./cli/recipe/release.go:615 #, c-format msgid "use %s as the new version?" msgstr "" @@ -4878,7 +4936,7 @@ msgstr "" msgid "use a tag for all images" msgstr "" -#: ./cli/server/add.go:203 +#: ./cli/server/add.go:204 msgid "use local server" msgstr "" @@ -4886,7 +4944,7 @@ msgstr "" msgid "use semver-like tags" msgstr "" -#: ./cli/app/cmd.go:258 ./cli/app/run.go:111 +#: ./cli/app/cmd.go:260 ./cli/app/run.go:112 msgid "user" msgstr "" @@ -4894,7 +4952,7 @@ msgstr "" msgid "using default abra dir" msgstr "" -#: ./cli/app/backup.go:285 ./cli/app/restore.go:117 ./cli/recipe/version.go:19 ./cli/server/prune.go:100 +#: ./cli/app/backup.go:290 ./cli/app/restore.go:118 ./cli/recipe/version.go:19 ./cli/server/prune.go:101 msgid "v" msgstr "" @@ -4942,32 +5000,32 @@ msgstr "" msgid "version wiped from %s.env" msgstr "" -#: ./cli/app/deploy.go:302 +#: ./cli/app/deploy.go:303 #, c-format msgid "version: can not redeploy chaos version %s" msgstr "" -#: ./cli/app/deploy.go:289 +#: ./cli/app/deploy.go:290 #, c-format msgid "version: taking chaos version: %s" msgstr "" -#: ./cli/app/deploy.go:310 +#: ./cli/app/deploy.go:311 #, c-format msgid "version: taking deployed version: %s" msgstr "" -#: ./cli/app/deploy.go:315 +#: ./cli/app/deploy.go:316 #, c-format msgid "version: taking new recipe version: %s" msgstr "" -#: ./cli/app/deploy.go:304 +#: ./cli/app/deploy.go:305 #, c-format msgid "version: taking version from .env file: %s" msgstr "" -#: ./cli/app/deploy.go:295 +#: ./cli/app/deploy.go:296 #, c-format msgid "version: taking version from cli arg: %s" msgstr "" @@ -4977,11 +5035,11 @@ msgstr "" msgid "versions [flags]" msgstr "" -#: ./cli/app/volume.go:194 +#: ./cli/app/volume.go:196 msgid "vl" msgstr "" -#: ./cli/app/volume.go:155 +#: ./cli/app/volume.go:157 #, c-format msgid "volume %s removed successfully" msgstr "" @@ -4992,7 +5050,7 @@ msgid "volume %s: %s" msgstr "" #. translators: `app volume` command group -#: ./cli/app/volume.go:193 +#: ./cli/app/volume.go:195 msgid "volume [cmd] [args] [flags]" msgstr "" @@ -5012,15 +5070,15 @@ msgstr "" msgid "volume type must be volume, bind, tmpfs or npipe" msgstr "" -#: ./cli/app/backup.go:284 ./cli/app/restore.go:116 ./cli/server/prune.go:99 +#: ./cli/app/backup.go:289 ./cli/app/restore.go:117 ./cli/server/prune.go:100 msgid "volumes" msgstr "" -#: ./cli/app/backup.go:271 +#: ./cli/app/backup.go:276 msgid "volumes path" msgstr "" -#: ./cli/server/prune.go:76 +#: ./cli/server/prune.go:77 #, c-format msgid "volumes pruned: %d; space reclaimed: %s" msgstr "" @@ -5063,7 +5121,7 @@ msgstr "" msgid "which container are you looking for?" msgstr "" -#: ./cli/app/config.go:43 +#: ./cli/app/config.go:44 msgid "which editor do you wish to use?" msgstr "" @@ -5071,11 +5129,11 @@ msgstr "" msgid "which service are you looking for?" msgstr "" -#: ./cli/recipe/sync.go:99 +#: ./cli/recipe/sync.go:100 msgid "which version do you want to begin with?" msgstr "" -#: ./cli/app/volume.go:163 +#: ./cli/app/volume.go:165 msgid "which volumes do you want to remove?" msgstr "" @@ -5088,32 +5146,32 @@ msgstr "" msgid "writer: %v, " msgstr "" -#: ./cli/app/deploy.go:235 ./cli/app/new.go:211 ./cli/app/rollback.go:226 ./cli/app/undeploy.go:106 ./cli/app/upgrade.go:273 +#: ./cli/app/deploy.go:236 ./cli/app/new.go:212 ./cli/app/rollback.go:227 ./cli/app/undeploy.go:107 ./cli/app/upgrade.go:274 #, c-format msgid "writing recipe version failed: %s" msgstr "" -#: ./cli/recipe/release.go:643 ./cli/recipe/sync.go:272 ./cli/recipe/upgrade.go:347 +#: ./cli/recipe/release.go:644 ./cli/recipe/sync.go:273 ./cli/recipe/upgrade.go:348 msgid "x" msgstr "" -#: ./cli/recipe/release.go:651 ./cli/recipe/sync.go:280 ./cli/recipe/upgrade.go:355 +#: ./cli/recipe/release.go:652 ./cli/recipe/sync.go:281 ./cli/recipe/upgrade.go:356 msgid "y" msgstr "" -#: ./cli/recipe/release.go:471 +#: ./cli/recipe/release.go:472 msgid "you can only use one of: --major, --minor, --patch" msgstr "" -#: ./cli/recipe/upgrade.go:76 +#: ./cli/recipe/upgrade.go:77 msgid "you can only use one of: --major, --minor, --patch." msgstr "" -#: ./cli/recipe/sync.go:195 +#: ./cli/recipe/sync.go:196 msgid "you can only use one version flag: --major, --minor or --patch" msgstr "" -#: ./cli/recipe/release.go:659 ./cli/recipe/sync.go:288 ./cli/recipe/upgrade.go:363 +#: ./cli/recipe/release.go:660 ./cli/recipe/sync.go:289 ./cli/recipe/upgrade.go:364 msgid "z" msgstr "" diff --git a/pkg/i18n/locales/es.po b/pkg/i18n/locales/es.po index 292178e1..093a2879 100644 --- a/pkg/i18n/locales/es.po +++ b/pkg/i18n/locales/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: EMAIL\n" -"POT-Creation-Date: 2025-08-28 16:17+0200\n" +"POT-Creation-Date: 2025-08-28 11:32-0400\n" "PO-Revision-Date: 2025-08-28 01:00+0000\n" "Last-Translator: 3wordchant <3wc.coopcloud@doesthisthing.work>\n" "Language-Team: Spanish args/flags without \"--\"\n" " abra app cmd 1312.net app my_cmd_arg foo --user bar\n" @@ -92,7 +92,7 @@ msgid "" " abra app cmd 1312.net my_cmd --local" msgstr "" -#: cli/app/restart.go:30 +#: cli/app/restart.go:31 msgid "" " # restart a single app service\n" " abra app restart 1312.net app\n" @@ -101,7 +101,7 @@ msgid "" " abra app restart 1312.net -a" msgstr "" -#: cli/app/run.go:25 +#: cli/app/run.go:26 msgid "" " # run with args/flags\n" " abra app run 1312.net app -- ls -lha\n" @@ -113,7 +113,7 @@ msgid "" " abra app run 1312.net app --user nobody -- ls -lha" msgstr "" -#: cli/app/deploy.go:37 +#: cli/app/deploy.go:38 msgid "" " # standard deployment\n" " abra app deploy 1312.net\n" @@ -128,31 +128,31 @@ msgid "" " abra app deploy 1312.net 886db76d" msgstr "" -#: cli/app/env.go:19 +#: cli/app/env.go:20 msgid " abra app env 1312.net" msgstr "" -#: cli/app/remove.go:39 +#: cli/app/remove.go:40 msgid " abra app remove 1312.net" msgstr "" -#: cli/app/secret.go:331 +#: cli/app/secret.go:334 msgid " abra app secret rm 1312.net oauth_key" msgstr "" -#: cli/app/config.go:20 +#: cli/app/config.go:21 msgid " abra config 1312.net" msgstr "" -#: cli/server/add.go:41 +#: cli/server/add.go:42 msgid " abra server add 1312.net" msgstr "" -#: cli/upgrade.go:27 +#: cli/upgrade.go:28 msgid " abra upgrade --rc" msgstr "" -#: cli/app/rollback.go:43 +#: cli/app/rollback.go:44 msgid "" " # standard rollback\n" " abra app rollback 1312.net\n" @@ -165,7 +165,7 @@ msgstr "" msgid " ago" msgstr "" -#: cli/app/remove.go:93 +#: cli/app/remove.go:94 #, c-format msgid "%d config(s) removed successfully" msgstr "" @@ -175,17 +175,17 @@ msgstr "" msgid "%d retries failed" msgstr "" -#: cli/app/remove.go:140 +#: cli/app/remove.go:141 #, c-format msgid "%d volume(s) removed successfully" msgstr "" -#: cli/app/volume.go:184 +#: cli/app/volume.go:186 #, c-format msgid "%d volumes removed successfully" msgstr "" -#: cli/updater/updater.go:233 +#: cli/updater/updater.go:235 #, c-format msgid "%s (%s) can be upgraded from version %s to %s" msgstr "" @@ -205,7 +205,7 @@ msgstr "" msgid "%s OVERVIEW" msgstr "" -#: cli/server/add.go:121 pkg/secret/secret.go:223 pkg/secret/secret.go:243 +#: cli/server/add.go:122 pkg/secret/secret.go:223 pkg/secret/secret.go:243 #: pkg/server/server.go:21 #, c-format msgid "%s already exists" @@ -216,12 +216,12 @@ msgstr "" msgid "%s already exists?" msgstr "" -#: cli/app/new.go:186 +#: cli/app/new.go:187 #, c-format msgid "%s created (version: %s)" msgstr "" -#: cli/recipe/release.go:147 cli/recipe/sync.go:252 cli/recipe/upgrade.go:331 +#: cli/recipe/release.go:148 cli/recipe/sync.go:253 cli/recipe/upgrade.go:332 #, c-format msgid "%s currently has these unstaged changes 👇" msgstr "" @@ -231,22 +231,22 @@ msgstr "" msgid "%s does not exist for %s, use /bin/sh as fallback" msgstr "" -#: cli/app/cmd.go:109 cli/internal/deploy.go:151 +#: cli/app/cmd.go:110 cli/internal/deploy.go:151 #, c-format msgid "%s does not exist for %s?" msgstr "" -#: cli/app/cmd.go:138 +#: cli/app/cmd.go:139 #, c-format msgid "%s does not exist locally, use /bin/sh as fallback" msgstr "" -#: cli/app/secret.go:81 +#: cli/app/secret.go:82 #, c-format msgid "%s doesn't exist in the env config?" msgstr "" -#: cli/app/secret.go:427 +#: cli/app/secret.go:430 #, c-format msgid "%s doesn't exist on server?" msgstr "" @@ -266,12 +266,12 @@ msgstr "" msgid "%s has been detected as not deployed" msgstr "" -#: cli/app/restart.go:133 +#: cli/app/restart.go:134 #, c-format msgid "%s has been scaled to 0" msgstr "" -#: cli/app/restart.go:144 +#: cli/app/restart.go:145 #, c-format msgid "%s has been scaled to 1" msgstr "" @@ -288,12 +288,12 @@ msgstr "" msgid "%s has no main 'app' service?" msgstr "" -#: cli/recipe/version.go:54 +#: cli/recipe/version.go:55 #, c-format msgid "%s has no published versions?" msgstr "" -#: cli/app/new.go:271 +#: cli/app/new.go:272 #, c-format msgid "%s has no secrets to generate, skipping..." msgstr "" @@ -308,12 +308,12 @@ msgstr "" msgid "%s inserted into pass store" msgstr "" -#: cli/app/deploy.go:97 +#: cli/app/deploy.go:98 #, c-format msgid "%s is already deployed" msgstr "" -#: cli/recipe/fetch.go:56 +#: cli/recipe/fetch.go:57 #, c-format msgid "%s is already fetched" msgstr "" @@ -333,39 +333,39 @@ msgstr "" msgid "%s is missing the TYPE env var?" msgstr "" -#: cli/app/rollback.go:279 cli/app/rollback.go:283 +#: cli/app/rollback.go:280 cli/app/rollback.go:284 #, c-format msgid "%s is not a downgrade for %s?" msgstr "" -#: cli/app/upgrade.go:401 cli/app/upgrade.go:405 +#: cli/app/upgrade.go:402 cli/app/upgrade.go:406 #, c-format msgid "%s is not an upgrade for %s?" msgstr "" -#: cli/app/logs.go:59 cli/app/ps.go:57 cli/app/restart.go:94 -#: cli/app/services.go:50 cli/app/undeploy.go:60 cli/app/upgrade.go:422 -#: cli/updater/updater.go:249 +#: cli/app/logs.go:60 cli/app/ps.go:58 cli/app/restart.go:95 +#: cli/app/services.go:51 cli/app/undeploy.go:61 cli/app/upgrade.go:423 +#: cli/updater/updater.go:251 #, c-format msgid "%s is not deployed?" msgstr "" -#: cli/server/remove.go:44 +#: cli/server/remove.go:45 #, c-format msgid "%s is now lost in time, like tears in rain" msgstr "" -#: cli/app/remove.go:74 cli/app/volume.go:122 +#: cli/app/remove.go:75 cli/app/volume.go:124 #, c-format msgid "%s is still deployed. Run \"abra app undeploy %s\"" msgstr "" -#: cli/app/deploy.go:167 cli/app/upgrade.go:209 +#: cli/app/deploy.go:168 cli/app/upgrade.go:210 #, c-format msgid "%s missing from %s.env" msgstr "" -#: cli/recipe/upgrade.go:146 +#: cli/recipe/upgrade.go:147 #, c-format msgid "%s not considered semver-like" msgstr "" @@ -390,7 +390,7 @@ msgstr "" msgid "%s removed from pass store" msgstr "" -#: cli/app/new.go:135 +#: cli/app/new.go:136 #, c-format msgid "%s sanitised as %s for new app" msgstr "" @@ -400,17 +400,17 @@ msgstr "" msgid "%s service is missing image tag?" msgstr "" -#: cli/app/restart.go:145 +#: cli/app/restart.go:146 #, c-format msgid "%s service successfully restarted" msgstr "" -#: cli/server/add.go:112 +#: cli/server/add.go:113 #, c-format msgid "%s successfully added" msgstr "" -#: cli/app/secret.go:244 +#: cli/app/secret.go:246 #, c-format msgid "%s successfully stored on server" msgstr "" @@ -490,23 +490,23 @@ msgstr "" msgid "%s: waiting %d seconds before next retry" msgstr "" -#: cli/app/upgrade.go:396 +#: cli/app/upgrade.go:397 #, c-format msgid "'%s' is not a known version" msgstr "" -#: cli/app/rollback.go:274 cli/app/upgrade.go:391 +#: cli/app/rollback.go:275 cli/app/upgrade.go:392 #, c-format msgid "'%s' is not a known version for %s" msgstr "" -#: cli/app/volume.go:164 +#: cli/app/volume.go:166 msgid "" "'x' indicates selected, enter / return to confirm, ctrl-c to exit, vim mode " "is enabled" msgstr "" -#: cli/app/cmd.go:120 +#: cli/app/cmd.go:121 #, c-format msgid "--local detected, running %s on local work station" msgstr "" @@ -519,7 +519,7 @@ msgstr "" msgid "A community managed recipe template is used." msgstr "" -#: cli/recipe/recipe.go:14 +#: cli/recipe/recipe.go:15 msgid "" "A recipe is a blueprint for an app.\n" "\n" @@ -535,20 +535,21 @@ msgid "" "manner." msgstr "" -#: cli/app/remove.go:51 +#: cli/app/remove.go:52 #, c-format msgid "ALERTA ALERTA: deleting %s data and config (local/remote)" msgstr "" -#: cli/app/list.go:224 +#: cli/app/list.go:225 msgid "AUTOUPDATE" msgstr "" -#: cli/server/add.go:24 +#. translators: Short description for `server add` command +#: cli/server/add.go:25 msgid "Add a new server" msgstr "" -#: cli/server/add.go:25 +#: cli/server/add.go:26 msgid "" "Add a new server to your configuration so that it can be managed by Abra.\n" "\n" @@ -571,21 +572,21 @@ msgid "" "developer machine. The domain is then set to \"default\"." msgstr "" -#: cli/app/labels.go:27 +#: cli/app/labels.go:28 msgid "Both local recipe and live deployment labels are shown." msgstr "" -#: cli/app/backup.go:293 cli/app/backup.go:309 cli/app/check.go:89 -#: cli/app/cmd.go:275 cli/app/cp.go:380 cli/app/deploy.go:326 -#: cli/app/labels.go:137 cli/app/new.go:367 cli/app/ps.go:208 -#: cli/app/restart.go:156 cli/app/restore.go:133 cli/app/secret.go:548 -#: cli/app/secret.go:588 cli/app/secret.go:612 cli/app/secret.go:620 -#: cli/catalogue/catalogue.go:306 cli/recipe/lint.go:130 -#: cli/updater/updater.go:541 +#: cli/app/backup.go:298 cli/app/backup.go:314 cli/app/check.go:90 +#: cli/app/cmd.go:277 cli/app/cp.go:381 cli/app/deploy.go:327 +#: cli/app/labels.go:138 cli/app/new.go:368 cli/app/ps.go:209 +#: cli/app/restart.go:157 cli/app/restore.go:134 cli/app/secret.go:553 +#: cli/app/secret.go:593 cli/app/secret.go:617 cli/app/secret.go:625 +#: cli/catalogue/catalogue.go:309 cli/recipe/lint.go:131 +#: cli/updater/updater.go:544 msgid "C" msgstr "" -#: cli/app/list.go:221 cli/app/ps.go:184 +#: cli/app/list.go:222 cli/app/ps.go:185 msgid "CHAOS" msgstr "" @@ -612,7 +613,7 @@ msgstr "" msgid "CONFIG" msgstr "" -#: cli/app/secret.go:461 +#: cli/app/secret.go:465 msgid "CREATED ON SERVER" msgstr "" @@ -620,19 +621,22 @@ msgstr "" msgid "CURRENT DEPLOYMENT" msgstr "" -#: cli/app/ps.go:31 +#. translators: Short description for `app ps` command +#: cli/app/ps.go:32 msgid "Check app deployment status" msgstr "" -#: cli/updater/updater.go:38 +#. translators: Short description for `notify` command +#: cli/updater/updater.go:39 msgid "Check for available upgrades" msgstr "" -#: cli/recipe/fetch.go:21 +#. translators: Short description for `recipe fetch` command +#: cli/recipe/fetch.go:22 msgid "Clone recipe(s) locally" msgstr "" -#: cli/app/check.go:21 +#: cli/app/check.go:22 msgid "" "Compare env vars in both the app \".env\" and recipe \".env.sample\" file.\n" "\n" @@ -650,11 +654,13 @@ msgid "" "${FOO:} syntax). \"check\" does not confirm or deny this for you." msgstr "" -#: cli/app/cp.go:32 +#. translators: Short description for `app cp` command +#: cli/app/cp.go:33 msgid "Copy files to/from a deployed app service" msgstr "" -#: cli/app/new.go:49 +#. translators: Short description for `app new` command +#: cli/app/new.go:50 msgid "Create a new app" msgstr "" @@ -662,11 +668,12 @@ msgstr "" msgid "Create a new recipe" msgstr "" -#: cli/app/backup.go:139 +#. translators: Short description for `app backup create` command +#: cli/app/backup.go:142 msgid "Create a new snapshot" msgstr "" -#: cli/recipe/release.go:31 +#: cli/recipe/release.go:32 msgid "" "Create a new version of a recipe.\n" "\n" @@ -736,8 +743,8 @@ msgid "" "on your $PATH." msgstr "" -#: cli/app/deploy.go:342 cli/app/new.go:343 cli/app/rollback.go:331 -#: cli/app/upgrade.go:442 +#: cli/app/deploy.go:343 cli/app/new.go:344 cli/app/rollback.go:332 +#: cli/app/upgrade.go:443 msgid "D" msgstr "" @@ -745,11 +752,11 @@ msgstr "" msgid "DEPLOY" msgstr "" -#: cli/app/labels.go:54 +#: cli/app/labels.go:55 msgid "DEPLOYED LABELS" msgstr "" -#: cli/app/list.go:217 cli/internal/deploy.go:75 +#: cli/app/list.go:218 cli/internal/deploy.go:75 msgid "DOMAIN" msgstr "" @@ -757,11 +764,12 @@ msgstr "" msgid "DOWNGRADE" msgstr "" -#: cli/app/deploy.go:31 +#. translators: Short description for `app deploy` command +#: cli/app/deploy.go:32 msgid "Deploy an app" msgstr "" -#: cli/app/deploy.go:32 +#: cli/app/deploy.go:33 msgid "" "Deploy an app.\n" "\n" @@ -772,15 +780,17 @@ msgid "" "operations." msgstr "" -#: cli/app/services.go:24 +#. translators: Short description for `app services` command +#: cli/app/services.go:25 msgid "Display all services of an app" msgstr "" -#: cli/app/backup.go:69 +#. translators: Short description for `app backup download` command +#: cli/app/backup.go:71 msgid "Download a snapshot" msgstr "" -#: cli/app/backup.go:70 +#: cli/app/backup.go:72 msgid "" "Downloads a backup.tar.gz to the current working directory.\n" "\n" @@ -789,7 +799,7 @@ msgid "" "\"backupbot.backup.path\" labels." msgstr "" -#: cli/app/env.go:42 +#: cli/app/env.go:43 msgid "ENV OVERVIEW" msgstr "" @@ -797,11 +807,13 @@ msgstr "" msgid "ENV VERSION" msgstr "" -#: cli/app/config.go:19 +#. translators: Short description for `app config` command +#: cli/app/config.go:20 msgid "Edit app config" msgstr "" -#: cli/app/check.go:20 +#. translators: Short description for `app check` command +#: cli/app/check.go:21 msgid "Ensure an app is well configured" msgstr "" @@ -814,11 +826,11 @@ msgstr "" msgid "Error monitoring TTY size:" msgstr "" -#: cli/app/secret.go:461 +#: cli/app/secret.go:465 msgid "GENERATED NAME" msgstr "" -#: cli/catalogue/catalogue.go:48 +#: cli/catalogue/catalogue.go:50 msgid "" "Generate a new copy of the recipe catalogue.\n" "\n" @@ -850,22 +862,23 @@ msgid "" " ssh-add ~/.ssh/" msgstr "" -#: cli/app/list.go:47 +#: cli/app/list.go:48 msgid "" "Generate a report of all managed apps.\n" "\n" "Use \"--status/-S\" flag to query all servers for the live deployment status." msgstr "" -#: cli/app/new.go:277 +#: cli/app/new.go:278 msgid "Generate app secrets?" msgstr "" -#: cli/complete.go:13 +#. translators: Short description for `autocomplete` command +#: cli/complete.go:14 msgid "Generate autocompletion script" msgstr "" -#: cli/recipe/sync.go:26 +#: cli/recipe/sync.go:27 msgid "" "Generate labels for the main recipe service.\n" "\n" @@ -878,15 +891,18 @@ msgid "" "local file system." msgstr "" -#: cli/run.go:85 +#. translators: Short description for `man` command +#: cli/run.go:87 msgid "Generate manpage" msgstr "" -#: cli/app/secret.go:31 +#. translators: Short description for `app secret generate` command +#: cli/app/secret.go:32 msgid "Generate secrets" msgstr "" -#: cli/catalogue/catalogue.go:47 +#. translators: Short description for `catalogue generate` command +#: cli/catalogue/catalogue.go:49 msgid "Generate the recipe catalogue" msgstr "" @@ -898,91 +914,108 @@ msgstr "" msgid "Git email name to do commits with" msgstr "" -#: cli/app/restore.go:125 +#: cli/app/restore.go:126 msgid "H" msgstr "" -#: cli/server/list.go:35 +#: cli/server/list.go:36 msgid "HOST" msgstr "" -#: cli/app/ps.go:182 cli/recipe/version.go:63 +#: cli/app/ps.go:183 cli/recipe/version.go:64 msgid "IMAGE" msgstr "" -#: cli/app/secret.go:152 +#. translators: Short description for `app secret insert` command +#: cli/app/secret.go:154 msgid "Insert secret" msgstr "" -#: cli/app/labels.go:103 +#: cli/app/labels.go:104 msgid "LABELS OVERVIEW" msgstr "" -#: cli/recipe/lint.go:16 +#. translators: Short description for `recipe lint` command +#: cli/recipe/lint.go:17 msgid "Lint a recipe" msgstr "" -#: cli/app/cmd.go:200 +#. translators: Short description for `app cmd list` command +#: cli/app/cmd.go:202 msgid "List all available commands" msgstr "" -#: cli/app/list.go:46 +#. translators: Short description for `app list` command +#: cli/app/list.go:47 msgid "List all managed apps" msgstr "" -#: cli/app/secret.go:440 +#. translators: Short description for `app secret list` command +#: cli/app/secret.go:444 msgid "List all secrets" msgstr "" -#: cli/app/backup.go:184 +#. translators: Short description for `app backup snapshots` command +#: cli/app/backup.go:188 msgid "List all snapshots" msgstr "" -#: cli/server/list.go:21 +#. translators: Short description for `server list` command +#: cli/server/list.go:22 msgid "List managed servers" msgstr "" -#: cli/recipe/version.go:20 +#. translators: Short description for `recipe versions` command +#: cli/recipe/version.go:21 msgid "List recipe versions" msgstr "" -#: cli/recipe/list.go:20 +#. translators: Short description for `recipe list` command +#: cli/recipe/list.go:21 msgid "List recipes" msgstr "" -#: cli/app/backup.go:18 +#. translators: Short description for `app backup list` command +#: cli/app/backup.go:19 msgid "List the contents of a snapshot" msgstr "" -#: cli/app/volume.go:22 +#. translators: Short description for `app list` command +#: cli/app/volume.go:23 msgid "List volumes associated with an app" msgstr "" -#: cli/app/backup.go:220 +#. translators: Short description for `app backup` command group +#: cli/app/backup.go:225 msgid "Manage app backups" msgstr "" -#: cli/app/secret.go:516 +#. translators: Short description for `app secret` command group +#: cli/app/secret.go:521 msgid "Manage app secrets" msgstr "" -#: cli/app/volume.go:195 +#: cli/app/volume.go:197 msgid "Manage app volumes" msgstr "" -#: cli/app/app.go:12 +#. translators: Short description for `app` command group +#: cli/app/app.go:13 msgid "Manage apps" msgstr "" -#: cli/recipe/recipe.go:13 +#. translators: Short description for `recipe` command group +#: cli/recipe/recipe.go:14 msgid "Manage recipes" msgstr "" -#: cli/server/server.go:13 +#. translators: Short description for `server` command group +#: cli/server/server.go:14 msgid "Manage servers" msgstr "" -#: cli/catalogue/catalogue.go:269 +#. translators: Short description for `catalogue` command group +#: cli/catalogue/catalogue.go:272 msgid "Manage the recipe catalogue" msgstr "" @@ -990,8 +1023,8 @@ msgstr "" msgid "N" msgstr "" -#: cli/app/secret.go:112 cli/app/secret.go:461 cli/app/volume.go:48 -#: cli/recipe/version.go:104 cli/server/list.go:35 +#: cli/app/secret.go:113 cli/app/secret.go:465 cli/app/volume.go:49 +#: cli/recipe/version.go:105 cli/server/list.go:36 msgid "NAME" msgstr "" @@ -1003,15 +1036,15 @@ msgstr "" msgid "NEW DEPLOYMENT" msgstr "" -#: cli/app/secret.go:142 +#: cli/app/secret.go:143 msgid "NOT" msgstr "" -#: cli/app/secret.go:143 +#: cli/app/secret.go:144 msgid "NOW" msgstr "" -#: cli/updater/updater.go:39 +#: cli/updater/updater.go:40 msgid "" "Notify on new versions for deployed apps.\n" "\n" @@ -1020,19 +1053,20 @@ msgid "" "Use \"--major/-m\" to include new major versions." msgstr "" -#: cli/app/volume.go:48 +#: cli/app/volume.go:49 msgid "ON SERVER" msgstr "" -#: cli/recipe/sync.go:129 +#: cli/recipe/sync.go:130 msgid "PROPOSED CHANGES" msgstr "" -#: cli/server/prune.go:18 +#. translators: Short description for `server prune` command +#: cli/server/prune.go:19 msgid "Prune resources on a server" msgstr "" -#: cli/server/prune.go:19 +#: cli/server/prune.go:20 msgid "" "Prunes unused containers, networks, and dangling images.\n" "\n" @@ -1045,23 +1079,25 @@ msgstr "" msgid "README.md metadata filled in" msgstr "" -#: cli/app/list.go:217 cli/internal/deploy.go:76 +#: cli/app/list.go:218 cli/internal/deploy.go:76 msgid "RECIPE" msgstr "" -#: cli/app/labels.go:75 +#: cli/app/labels.go:76 msgid "RECIPE LABELS" msgstr "" -#: cli/recipe/release.go:30 +#. translators: Short description for `recipe release` command +#: cli/recipe/release.go:31 msgid "Release a new recipe version" msgstr "" -#: cli/server/remove.go:20 +#. translators: Short description for `server remove` command +#: cli/server/remove.go:21 msgid "Remove a managed server" msgstr "" -#: cli/server/remove.go:21 +#: cli/server/remove.go:22 msgid "" "Remove a managed server.\n" "\n" @@ -1071,19 +1107,22 @@ msgid "" "like tears in rain." msgstr "" -#: cli/app/secret.go:326 +#. translators: Short description for `app secret remove` command +#: cli/app/secret.go:329 msgid "Remove a secret" msgstr "" -#: cli/app/remove.go:22 +#. translators: Short description for `app remove` command +#: cli/app/remove.go:23 msgid "Remove all app data, locally and remotely" msgstr "" -#: cli/recipe/reset.go:16 +#. translators: Short description for `recipe reset` command +#: cli/recipe/reset.go:17 msgid "Remove all unstaged changes from recipe config" msgstr "" -#: cli/app/remove.go:23 +#: cli/app/remove.go:24 msgid "" "Remove everything related to an app which is already undeployed.\n" "\n" @@ -1106,11 +1145,12 @@ msgid "" "flag." msgstr "" -#: cli/app/volume.go:79 +#. translators: Short description for `app volume remove` command +#: cli/app/volume.go:81 msgid "Remove volume(s) associated with an app" msgstr "" -#: cli/app/volume.go:80 +#: cli/app/volume.go:82 msgid "" "Remove volumes associated with an app.\n" "\n" @@ -1127,23 +1167,27 @@ msgid "" "Passing \"--force/-f\" will select all volumes for removal. Be careful." msgstr "" -#: cli/app/restart.go:24 +#. translators: Short description for `app restart` command +#: cli/app/restart.go:25 msgid "Restart an app" msgstr "" -#: cli/app/restore.go:19 +#. translators: Short description for `app restore` command +#: cli/app/restore.go:20 msgid "Restore a snapshot" msgstr "" -#: cli/app/rollback.go:28 +#. translators: Short description for `app rollback` command +#: cli/app/rollback.go:29 msgid "Roll an app back to a previous version" msgstr "" -#: cli/app/run.go:24 +#. translators: Short description for `app run` command +#: cli/app/run.go:25 msgid "Run a command inside a service container" msgstr "" -#: cli/app/cmd.go:26 +#: cli/app/cmd.go:27 msgid "" "Run an app specific command.\n" "\n" @@ -1162,33 +1206,34 @@ msgid "" "does not)." msgstr "" -#: cli/app/cmd.go:25 +#. translators: Short description for `app cmd` command +#: cli/app/cmd.go:26 msgid "Run app commands" msgstr "" -#: cli/app/backup.go:277 cli/app/list.go:290 cli/app/logs.go:103 -#: cli/app/new.go:359 +#: cli/app/backup.go:282 cli/app/list.go:291 cli/app/logs.go:104 +#: cli/app/new.go:360 msgid "S" msgstr "" -#: cli/app/new.go:194 +#: cli/app/new.go:195 msgid "SECRETS OVERVIEW" msgstr "" -#: cli/app/list.go:217 cli/internal/deploy.go:77 +#: cli/app/list.go:218 cli/internal/deploy.go:77 msgid "SERVER" msgstr "" -#: cli/app/ps.go:180 cli/recipe/sync.go:129 cli/recipe/version.go:63 -#: cli/recipe/version.go:104 +#: cli/app/ps.go:181 cli/recipe/sync.go:130 cli/recipe/version.go:64 +#: cli/recipe/version.go:105 msgid "SERVICE" msgstr "" -#: cli/app/services.go:68 +#: cli/app/services.go:69 msgid "SERVICE (LONG)" msgstr "" -#: cli/app/services.go:68 +#: cli/app/services.go:69 msgid "SERVICE (SHORT)" msgstr "" @@ -1197,15 +1242,15 @@ msgstr "" msgid "SSH host key verification failed for %s" msgstr "" -#: cli/recipe/list.go:45 +#: cli/recipe/list.go:46 msgid "SSO" msgstr "" -#: cli/app/list.go:220 cli/app/ps.go:181 +#: cli/app/list.go:221 cli/app/ps.go:182 msgid "STATUS" msgstr "" -#: cli/app/new.go:302 +#: cli/app/new.go:303 msgid "Select app server:" msgstr "" @@ -1213,19 +1258,22 @@ msgstr "" msgid "Select recipe" msgstr "" -#: cli/app/env.go:18 +#. translators: Short description for `app env` command +#: cli/app/env.go:19 msgid "Show app .env values" msgstr "" -#: cli/app/labels.go:26 +#. translators: Short description for `app labels` command +#: cli/app/labels.go:27 msgid "Show deployment labels" msgstr "" -#: cli/recipe/diff.go:16 +#. translators: Short description for `recipe diff` command +#: cli/recipe/diff.go:17 msgid "Show unstaged changes in recipe config" msgstr "" -#: cli/app/restore.go:20 +#: cli/app/restore.go:21 msgid "" "Snapshots are restored while apps are deployed.\n" "\n" @@ -1240,39 +1288,44 @@ msgstr "" msgid "Specify a server name" msgstr "" -#: cli/app/new.go:253 +#: cli/app/new.go:254 msgid "Specify app domain" msgstr "" -#: cli/catalogue/catalogue.go:28 +#. translators: Short description for `catalogue sync` command +#: cli/catalogue/catalogue.go:29 msgid "Sync recipe catalogue for latest changes" msgstr "" -#: cli/recipe/sync.go:25 +#. translators: Short description for `recipe sync` command +#: cli/recipe/sync.go:26 msgid "Sync recipe version label" msgstr "" -#: cli/app/cmd.go:267 +#: cli/app/cmd.go:269 msgid "T" msgstr "" -#: cli/recipe/version.go:63 cli/recipe/version.go:104 +#: cli/recipe/version.go:64 cli/recipe/version.go:105 msgid "TAG" msgstr "" -#: cli/app/logs.go:21 +#. translators: Short description for `app logs` command +#: cli/app/logs.go:22 msgid "Tail app logs" msgstr "" -#: cli/updater/updater.go:476 +#. translators: Short description for `kababra` binary +#: cli/updater/updater.go:479 msgid "The Co-op Cloud auto-updater 🤖 🚀" msgstr "" -#: cli/run.go:26 +#. translators: Short description for `abra` binary +#: cli/run.go:27 msgid "The Co-op Cloud command-line utility belt 🎩🐇" msgstr "" -#: cli/app/secret.go:153 +#: cli/app/secret.go:155 msgid "" "This command inserts a secret into an app environment.\n" "\n" @@ -1285,7 +1338,7 @@ msgid "" "(see \"abra app new --secrets/-S\" for more)." msgstr "" -#: cli/app/secret.go:327 +#: cli/app/secret.go:330 msgid "" "This command removes a secret from an app environment.\n" "\n" @@ -1293,11 +1346,11 @@ msgid "" "match those configured in the recipe beforehand." msgstr "" -#: cli/recipe/diff.go:17 +#: cli/recipe/diff.go:18 msgid "This command requires /usr/bin/git." msgstr "" -#: cli/app/restart.go:25 +#: cli/app/restart.go:26 msgid "" "This command restarts services within a deployed app.\n" "\n" @@ -1306,7 +1359,7 @@ msgid "" "Pass \"--all-services/-a\" to restart all services." msgstr "" -#: cli/app/rollback.go:29 +#: cli/app/rollback.go:30 msgid "" "This command rolls an app back to a previous version.\n" "\n" @@ -1329,7 +1382,7 @@ msgid "" "beforehand. See \"abra app backup\" for more." msgstr "" -#: cli/app/undeploy.go:26 +#: cli/app/undeploy.go:27 msgid "" "This does not destroy any application data.\n" "\n" @@ -1340,7 +1393,7 @@ msgid "" "Passing \"--prune/-p\" does not remove those volumes." msgstr "" -#: cli/complete.go:14 +#: cli/complete.go:15 msgid "" "To load completions:\n" "\n" @@ -1388,15 +1441,16 @@ msgstr "" msgid "UNDEPLOY" msgstr "" -#: cli/app/list.go:223 cli/internal/deploy.go:140 +#: cli/app/list.go:224 cli/internal/deploy.go:140 msgid "UPGRADE" msgstr "" -#: cli/app/undeploy.go:25 +#. translators: Short description for `app undeploy` command +#: cli/app/undeploy.go:26 msgid "Undeploy an app" msgstr "" -#: cli/recipe/upgrade.go:45 +#: cli/recipe/upgrade.go:46 msgid "" "Upgrade a given configuration.\n" "\n" @@ -1414,11 +1468,12 @@ msgid "" "You may invoke this command in \"wizard\" mode and be prompted for input." msgstr "" -#: cli/upgrade.go:19 +#. translators: Short description for `upgrade` command +#: cli/upgrade.go:20 msgid "Upgrade abra" msgstr "" -#: cli/upgrade.go:20 +#: cli/upgrade.go:21 msgid "" "Upgrade abra in-place with the latest stable or release candidate.\n" "\n" @@ -1431,11 +1486,12 @@ msgid "" "for the testing efforts 💗" msgstr "" -#: cli/app/upgrade.go:32 +#. translators: Short description for `app upgrade` command +#: cli/app/upgrade.go:33 msgid "Upgrade an app" msgstr "" -#: cli/updater/updater.go:79 +#: cli/updater/updater.go:81 msgid "" "Upgrade an app by specifying stack name and recipe. \n" "\n" @@ -1455,7 +1511,7 @@ msgid "" "with care." msgstr "" -#: cli/app/upgrade.go:33 +#: cli/app/upgrade.go:34 msgid "" "Upgrade an app.\n" "\n" @@ -1478,34 +1534,36 @@ msgid "" "beforehand. See \"abra app backup\" for more." msgstr "" -#: cli/updater/updater.go:78 +#. translators: Short description for `app upgrade` command +#: cli/updater/updater.go:80 msgid "Upgrade apps" msgstr "" -#: cli/recipe/upgrade.go:44 +#. translators: Short description for `recipe upgrade` command +#: cli/recipe/upgrade.go:45 msgid "Upgrade recipe image tags" msgstr "" -#: cli/recipe/release.go:319 +#: cli/recipe/release.go:320 msgid "Use release note in release/next?" msgstr "" -#: cli/recipe/fetch.go:22 +#: cli/recipe/fetch.go:23 msgid "" "Using \"--force/-f\" Git syncs an existing recipe. It does not erase " "unstaged changes." msgstr "" -#: cli/app/secret.go:112 +#: cli/app/secret.go:113 msgid "VALUE" msgstr "" -#: cli/app/list.go:222 cli/app/ps.go:183 cli/app/secret.go:461 -#: cli/recipe/version.go:63 cli/recipe/version.go:104 +#: cli/app/list.go:223 cli/app/ps.go:184 cli/app/secret.go:465 +#: cli/recipe/version.go:64 cli/recipe/version.go:105 msgid "VERSION" msgstr "" -#: cli/recipe/reset.go:17 +#: cli/recipe/reset.go:18 msgid "WARNING: this will delete your changes. Be Careful." msgstr "" @@ -1517,7 +1575,7 @@ msgstr "" msgid "[hijack] end of stdout" msgstr "" -#: cli/recipe/sync.go:79 +#: cli/recipe/sync.go:80 #, c-format msgid "" "\n" @@ -1594,14 +1652,14 @@ msgstr "" msgid "^%s" msgstr "" -#: cli/app/app.go:11 cli/app/backup.go:245 cli/app/restart.go:163 -#: cli/app/secret.go:556 cli/app/secret.go:596 cli/recipe/fetch.go:116 -#: cli/recipe/upgrade.go:379 cli/server/add.go:23 cli/server/prune.go:92 -#: cli/updater/updater.go:557 +#: cli/app/app.go:11 cli/app/backup.go:250 cli/app/restart.go:164 +#: cli/app/secret.go:561 cli/app/secret.go:601 cli/recipe/fetch.go:117 +#: cli/recipe/upgrade.go:380 cli/server/add.go:23 cli/server/prune.go:93 +#: cli/updater/updater.go:560 msgid "a" msgstr "" -#: cli/app/remove.go:60 +#: cli/app/remove.go:61 msgid "aborting as requested" msgstr "" @@ -1610,11 +1668,11 @@ msgstr "" msgid "abra [cmd] [args] [flags]" msgstr "" -#: cli/app/labels.go:28 +#: cli/app/labels.go:29 msgid "abra app labels 1312.net" msgstr "" -#: cli/run.go:70 +#: cli/run.go:71 #, c-format msgid "abra version: %s, commit: %s, lang: %s" msgstr "" @@ -1624,7 +1682,7 @@ msgstr "" msgid "abra.sh: %s}" msgstr "" -#: cli/app/cmd.go:52 +#: cli/app/cmd.go:53 msgid "accepts at most 2 args with --local/-l" msgstr "" @@ -1638,7 +1696,7 @@ msgstr "" msgid "add [[server] | --local] [flags]" msgstr "agregar [[server] | --local] [flags]" -#: cli/recipe/release.go:353 +#: cli/recipe/release.go:354 msgid "add release note? (leave empty to skip)" msgstr "" @@ -1647,8 +1705,8 @@ msgstr "" msgid "adding env vars to %s service config" msgstr "" -#: cli/app/backup.go:244 cli/app/secret.go:555 cli/app/secret.go:595 -#: cli/recipe/fetch.go:115 cli/server/prune.go:91 cli/updater/updater.go:556 +#: cli/app/backup.go:249 cli/app/secret.go:560 cli/app/secret.go:600 +#: cli/recipe/fetch.go:116 cli/server/prune.go:92 cli/updater/updater.go:559 msgid "all" msgstr "" @@ -1668,11 +1726,11 @@ msgstr "" msgid "all tasks reached terminal state" msgstr "" -#: cli/app/restart.go:162 +#: cli/app/restart.go:163 msgid "all-services" msgstr "" -#: cli/recipe/upgrade.go:378 +#: cli/recipe/upgrade.go:379 msgid "all-tags" msgstr "" @@ -1684,7 +1742,7 @@ msgstr "" msgid "ambiguous service list received, prompting for input" msgstr "" -#: cli/run.go:29 +#: cli/run.go:30 msgid "app" msgstr "plataforma" @@ -1698,11 +1756,11 @@ msgstr "plataforma [cmd] [args] [flags]" msgid "app domain %s (%s) does not appear to resolve to app server %s (%s)?" msgstr "" -#: cli/recipe/release.go:221 +#: cli/recipe/release.go:222 msgid "app service is missing image tag?" msgstr "" -#: cli/app/remove.go:54 +#: cli/app/remove.go:55 msgid "are you sure?" msgstr "" @@ -1711,7 +1769,7 @@ msgstr "" msgid "attempting to checkout '%s' as chaos commit" msgstr "" -#: cli/server/add.go:77 cli/server/add.go:104 +#: cli/server/add.go:78 cli/server/add.go:105 #, c-format msgid "attempting to create client for %s" msgstr "" @@ -1721,27 +1779,27 @@ msgstr "" msgid "attempting to generate and store %s on %s" msgstr "" -#: cli/upgrade.go:38 pkg/secret/pass.go:23 pkg/secret/pass.go:45 +#: cli/upgrade.go:39 pkg/secret/pass.go:23 pkg/secret/pass.go:45 #, c-format msgid "attempting to run %s" msgstr "" -#: cli/app/deploy.go:230 cli/app/upgrade.go:268 +#: cli/app/deploy.go:231 cli/app/upgrade.go:269 #, c-format msgid "attempting to run post deploy commands, saw: %s" msgstr "" -#: cli/app/restart.go:109 +#: cli/app/restart.go:110 #, c-format msgid "attempting to scale %s to 0" msgstr "" -#: cli/app/restart.go:134 +#: cli/app/restart.go:135 #, c-format msgid "attempting to scale %s to 1" msgstr "" -#: cli/run.go:30 +#: cli/run.go:31 msgid "autocomplete" msgstr "" @@ -1750,9 +1808,9 @@ msgstr "" msgid "autocomplete [bash|zsh|fish|powershell]" msgstr "autocompletar [bash|zsh|fish|powershell]" -#: cli/app/deploy.go:60 cli/app/logs.go:33 cli/app/rollback.go:59 -#: cli/app/secret.go:44 cli/app/secret.go:181 cli/app/secret.go:345 -#: cli/app/upgrade.go:59 pkg/autocomplete/autocomplete.go:18 +#: cli/app/deploy.go:61 cli/app/logs.go:34 cli/app/rollback.go:60 +#: cli/app/secret.go:45 cli/app/secret.go:183 cli/app/secret.go:348 +#: cli/app/upgrade.go:60 pkg/autocomplete/autocomplete.go:18 #: pkg/autocomplete/autocomplete.go:33 pkg/autocomplete/autocomplete.go:44 #: pkg/autocomplete/autocomplete.go:50 pkg/autocomplete/autocomplete.go:70 #: pkg/autocomplete/autocomplete.go:88 pkg/autocomplete/autocomplete.go:104 @@ -1761,29 +1819,29 @@ msgstr "autocompletar [bash|zsh|fish|powershell]" msgid "autocomplete failed: %s" msgstr "" -#: cli/app/new.go:361 +#: cli/app/new.go:362 msgid "automatically generate secrets" msgstr "" -#: cli/recipe/fetch.go:126 +#: cli/recipe/fetch.go:127 msgid "automatically set ssh remote" msgstr "" -#: cli/updater/updater.go:301 +#: cli/updater/updater.go:303 #, c-format msgid "available updates for %s: %s" msgstr "" -#: cli/app/backup.go:219 +#: cli/app/backup.go:223 msgid "b" msgstr "" #. translators: `app backup` command group -#: cli/app/backup.go:218 +#: cli/app/backup.go:222 msgid "backup [cmd] [args] [flags]" msgstr "respaldar [cmd] [args] [flags]" -#: cli/recipe/list.go:42 +#: cli/recipe/list.go:43 msgid "backups" msgstr "" @@ -1800,7 +1858,7 @@ msgstr "" msgid "bind options are incompatible with type volume" msgstr "" -#: cli/updater/updater.go:178 +#: cli/updater/updater.go:180 #, c-format msgid "boolean label %s could not be found for %s, set default to false." msgstr "" @@ -1810,12 +1868,12 @@ msgstr "" msgid "broken symlink in your abra config folders: %s" msgstr "" -#: cli/app/backup.go:138 cli/app/cp.go:31 cli/app/deploy.go:350 -#: cli/app/rollback.go:339 cli/app/upgrade.go:450 +#: cli/app/backup.go:140 cli/app/cp.go:31 cli/app/deploy.go:351 +#: cli/app/rollback.go:340 cli/app/upgrade.go:451 msgid "c" msgstr "" -#: cli/app/secret.go:270 +#: cli/app/secret.go:272 msgid "can not insert from file and read from stdin" msgstr "" @@ -1824,12 +1882,12 @@ msgstr "" msgid "can not redeploy chaos version (%s) without --chaos" msgstr "" -#: cli/recipe/upgrade.go:319 +#: cli/recipe/upgrade.go:320 #, c-format msgid "can upgrade service: %s, image: %s, tag: %s ::" msgstr "" -#: cli/app/cp.go:273 +#: cli/app/cp.go:274 msgid "can't copy dir to file" msgstr "" @@ -1838,7 +1896,7 @@ msgstr "" msgid "can't read local recipes: %s" msgstr "" -#: cli/updater/updater.go:199 +#: cli/updater/updater.go:201 #, c-format msgid "can't separate key from value: %s (this variable is probably unset)" msgstr "" @@ -1848,7 +1906,7 @@ msgstr "" msgid "cannot ensure %s is up-to-date, no git remotes configured" msgstr "" -#: cli/app/config.go:37 pkg/app/app.go:52 +#: cli/app/config.go:38 pkg/app/app.go:52 #, c-format msgid "cannot find app with name %s" msgstr "" @@ -1858,7 +1916,7 @@ msgstr "" msgid "cannot get label %s for %s" msgstr "" -#: cli/recipe/release.go:98 +#: cli/recipe/release.go:99 #, c-format msgid "cannot parse %s, invalid tag specified?" msgstr "" @@ -1868,44 +1926,44 @@ msgstr "" msgid "cannot resolve ipv4 for %s?" msgstr "" -#: cli/recipe/release.go:103 +#: cli/recipe/release.go:104 msgid "cannot specify tag and bump type at the same time" msgstr "" -#: cli/app/secret.go:63 +#: cli/app/secret.go:64 msgid "cannot use '[secret] [version]' and '--all' together" msgstr "" -#: cli/app/cmd.go:102 +#: cli/app/cmd.go:103 msgid "cannot use --local & --user together" msgstr "" -#: cli/recipe/fetch.go:49 +#: cli/recipe/fetch.go:50 msgid "cannot use [recipe] and --all/-a together" msgstr "" -#: cli/app/secret.go:372 +#: cli/app/secret.go:375 msgid "cannot use [secret] and --all/-a together" msgstr "" -#: cli/server/add.go:54 +#: cli/server/add.go:55 msgid "cannot use [server] and --local together" msgstr "" -#: cli/app/restart.go:69 +#: cli/app/restart.go:70 msgid "cannot use [service] and --all-services/-a together" msgstr "" -#: cli/app/deploy.go:261 cli/app/new.go:70 +#: cli/app/deploy.go:262 cli/app/new.go:71 msgid "cannot use [version] and --chaos together" msgstr "" -#: cli/run.go:31 +#: cli/run.go:32 msgid "catalogue" msgstr "" #. translators: `catalogue` command group -#: cli/catalogue/catalogue.go:268 +#: cli/catalogue/catalogue.go:270 msgid "catalogue [cmd] [args] [flags]" msgstr "catalogo [cmd] [args] [flags]" @@ -1913,11 +1971,11 @@ msgstr "catalogo [cmd] [args] [flags]" msgid "catalogue is missing, retrieving now" msgstr "" -#: cli/catalogue/catalogue.go:39 +#: cli/catalogue/catalogue.go:40 msgid "catalogue successfully synced" msgstr "" -#: cli/recipe/list.go:39 +#: cli/recipe/list.go:40 msgid "category" msgstr "" @@ -1925,13 +1983,13 @@ msgstr "" msgid "cfg" msgstr "" -#: cli/app/backup.go:292 cli/app/backup.go:308 cli/app/check.go:88 -#: cli/app/cmd.go:274 cli/app/cp.go:379 cli/app/deploy.go:325 -#: cli/app/labels.go:136 cli/app/new.go:366 cli/app/ps.go:207 -#: cli/app/restart.go:155 cli/app/restore.go:132 cli/app/secret.go:547 -#: cli/app/secret.go:587 cli/app/secret.go:611 cli/app/secret.go:619 -#: cli/catalogue/catalogue.go:305 cli/recipe/lint.go:129 -#: cli/updater/updater.go:540 +#: cli/app/backup.go:297 cli/app/backup.go:313 cli/app/check.go:89 +#: cli/app/cmd.go:276 cli/app/cp.go:380 cli/app/deploy.go:326 +#: cli/app/labels.go:137 cli/app/new.go:367 cli/app/ps.go:208 +#: cli/app/restart.go:156 cli/app/restore.go:133 cli/app/secret.go:552 +#: cli/app/secret.go:592 cli/app/secret.go:616 cli/app/secret.go:624 +#: cli/catalogue/catalogue.go:308 cli/recipe/lint.go:130 +#: cli/updater/updater.go:543 msgid "chaos" msgstr "" @@ -1940,11 +1998,11 @@ msgstr "" msgid "check [flags]" msgstr "verificar [flags]" -#: cli/updater/updater.go:551 +#: cli/updater/updater.go:554 msgid "check for major updates" msgstr "" -#: cli/app/deploy.go:89 cli/app/undeploy.go:52 cli/app/upgrade.go:414 +#: cli/app/deploy.go:90 cli/app/undeploy.go:53 cli/app/upgrade.go:415 #, c-format msgid "checking whether %s is already deployed" msgstr "" @@ -1958,27 +2016,27 @@ msgstr "" msgid "choosing %s as latest version of %s" msgstr "" -#: cli/recipe/sync.go:229 +#: cli/recipe/sync.go:230 #, c-format msgid "choosing %s as new version for %s" msgstr "" -#: cli/app/rollback.go:146 +#: cli/app/rollback.go:147 #, c-format msgid "choosing %s as version to rollback" msgstr "" -#: cli/app/upgrade.go:153 +#: cli/app/upgrade.go:154 #, c-format msgid "choosing %s as version to upgrade" msgstr "" -#: cli/recipe/release.go:285 +#: cli/recipe/release.go:286 #, c-format msgid "chore: publish %s release" msgstr "" -#: cli/catalogue/catalogue.go:224 +#: cli/catalogue/catalogue.go:226 msgid "chore: publish new catalogue release changes" msgstr "" @@ -1991,7 +2049,7 @@ msgstr "" msgid "collected %s for %s" msgstr "" -#: cli/catalogue/catalogue.go:122 +#: cli/catalogue/catalogue.go:124 msgid "collecting catalogue metadata" msgstr "" @@ -2097,7 +2155,7 @@ msgstr "" msgid "considering %s config(s) for tag update" msgstr "" -#: cli/app/undeploy.go:127 cli/server/prune.go:46 +#: cli/app/undeploy.go:128 cli/server/prune.go:47 #, c-format msgid "containers pruned: %d; space reclaimed: %s" msgstr "" @@ -2106,7 +2164,7 @@ msgstr "" msgid "context 'default' cannot be removed" msgstr "" -#: cli/server/add.go:164 +#: cli/server/add.go:165 #, c-format msgid "context for %s already exists" msgstr "" @@ -2115,7 +2173,7 @@ msgstr "" msgid "context lacks Docker endpoint" msgstr "" -#: cli/recipe/sync.go:238 pkg/recipe/compose.go:229 +#: cli/recipe/sync.go:239 pkg/recipe/compose.go:229 #, c-format msgid "coop-cloud.${STACK_NAME}.version=%s" msgstr "" @@ -2125,12 +2183,12 @@ msgstr "" msgid "copied & templated %s to %s" msgstr "" -#: cli/app/cp.go:165 +#: cli/app/cp.go:166 #, c-format msgid "copy %s from local to %s on container" msgstr "" -#: cli/app/cp.go:246 +#: cli/app/cp.go:247 #, c-format msgid "copy: %s" msgstr "" @@ -2156,7 +2214,7 @@ msgid "cp [flags]" msgstr "copiar [flags]" #. translators: `app backup create` command -#: cli/app/backup.go:137 +#: cli/app/backup.go:139 msgid "create [flags]" msgstr "crear [flags]" @@ -2164,7 +2222,7 @@ msgstr "crear [flags]" msgid "create an example .env.sample" msgstr "" -#: cli/app/cp.go:146 cli/app/cp.go:185 +#: cli/app/cp.go:147 cli/app/cp.go:186 #, c-format msgid "create remote directory: %s" msgstr "" @@ -2174,7 +2232,7 @@ msgstr "" msgid "created client for %s" msgstr "" -#: cli/recipe/release.go:423 +#: cli/recipe/release.go:424 #, c-format msgid "created tag %s at %s" msgstr "" @@ -2189,7 +2247,7 @@ msgstr "" msgid "creating %s" msgstr "" -#: cli/server/add.go:169 +#: cli/server/add.go:170 #, c-format msgid "creating context with domain %s" msgstr "" @@ -2208,36 +2266,36 @@ msgstr "" msgid "critical" msgstr "" -#: cli/recipe/lint.go:116 +#: cli/recipe/lint.go:117 #, c-format msgid "critical errors present in %s config" msgstr "" -#: cli/app/rollback.go:269 +#: cli/app/rollback.go:270 #, c-format msgid "current deployment '%s' is not a known version for %s" msgstr "" -#: cli/recipe/release.go:527 +#: cli/recipe/release.go:528 #, c-format msgid "current: %s, new: %s, correct?" msgstr "" -#: cli/app/backup.go:68 cli/app/deploy.go:30 cli/recipe/diff.go:15 -#: cli/updater/updater.go:494 +#: cli/app/backup.go:69 cli/app/deploy.go:30 cli/recipe/diff.go:15 +#: cli/updater/updater.go:497 msgid "d" msgstr "" -#: cli/updater/updater.go:493 +#: cli/updater/updater.go:496 msgid "debug" msgstr "" -#: cli/app/secret.go:316 +#: cli/app/secret.go:318 #, c-format msgid "deleted %s successfully from local pass store" msgstr "" -#: cli/app/secret.go:309 +#: cli/app/secret.go:311 #, c-format msgid "deleted %s successfully from server" msgstr "" @@ -2275,7 +2333,7 @@ msgstr "" msgid "deployment timed out 🟠" msgstr "" -#: cli/app/cp.go:274 +#: cli/app/cp.go:275 msgid "destination directory does not exist" msgstr "" @@ -2288,12 +2346,12 @@ msgstr "" msgid "detected ABRA_CI=1" msgstr "" -#: cli/recipe/upgrade.go:200 +#: cli/recipe/upgrade.go:201 #, c-format msgid "detected compatible upgradable tags %s for %s" msgstr "" -#: cli/recipe/upgrade.go:173 +#: cli/recipe/upgrade.go:174 #, c-format msgid "detected potential upgradable tags %s for %s" msgstr "" @@ -2303,11 +2361,11 @@ msgstr "" msgid "detected versions %s for %s" msgstr "" -#: cli/app/cmd.go:132 cli/app/cmd.go:177 +#: cli/app/cmd.go:133 cli/app/cmd.go:178 msgid "did not detect any command arguments" msgstr "" -#: cli/recipe/upgrade.go:120 +#: cli/recipe/upgrade.go:121 #, c-format msgid "did not find versions file for %s" msgstr "" @@ -2332,24 +2390,24 @@ msgstr "" msgid "dirty: %v, " msgstr "" -#: cli/app/deploy.go:352 cli/app/rollback.go:341 cli/app/upgrade.go:452 +#: cli/app/deploy.go:353 cli/app/rollback.go:342 cli/app/upgrade.go:453 msgid "disable converge logic checks" msgstr "" -#: cli/app/deploy.go:344 cli/app/rollback.go:333 cli/app/upgrade.go:444 +#: cli/app/deploy.go:345 cli/app/rollback.go:334 cli/app/upgrade.go:445 msgid "disable public DNS checks" msgstr "" -#: cli/app/cmd.go:269 +#: cli/app/cmd.go:271 msgid "disable remote TTY" msgstr "" -#: cli/recipe/release.go:610 +#: cli/recipe/release.go:611 #, c-format msgid "discovered %s as currently synced recipe label" msgstr "" -#: cli/app/run.go:106 +#: cli/app/run.go:107 msgid "do not request a TTY" msgstr "" @@ -2357,42 +2415,42 @@ msgstr "" msgid "docker: is the daemon running / your user has docker permissions?" msgstr "" -#: cli/app/new.go:342 +#: cli/app/new.go:343 msgid "domain" msgstr "" -#: cli/app/new.go:345 +#: cli/app/new.go:346 msgid "domain name for app" msgstr "" -#: cli/run.go:110 +#: cli/run.go:112 msgid "don't forget to run 'sudo mandb'" msgstr "" -#: cli/updater/updater.go:388 +#: cli/updater/updater.go:390 #, c-format msgid "don't update %s due to chaos deployment" msgstr "" -#: cli/updater/updater.go:398 +#: cli/updater/updater.go:400 #, c-format msgid "" "don't update %s due to disabled auto updates or missing ENABLE_AUTO_UPDATE " "env" msgstr "" -#: cli/updater/updater.go:378 +#: cli/updater/updater.go:380 #, c-format msgid "don't update %s due to missing recipe name" msgstr "" -#: cli/updater/updater.go:408 +#: cli/updater/updater.go:410 #, c-format msgid "don't update %s due to no new version" msgstr "" #. translators: `app backup download` command -#: cli/app/backup.go:67 +#: cli/app/backup.go:68 msgid "download [flags]" msgstr "descargar [flags]" @@ -2401,7 +2459,7 @@ msgstr "descargar [flags]" msgid "dry run: adding %s" msgstr "" -#: cli/recipe/release.go:313 +#: cli/recipe/release.go:314 #, c-format msgid "dry run: move release note from 'next' to %s" msgstr "" @@ -2410,11 +2468,11 @@ msgstr "" msgid "dry run: no changes commited" msgstr "" -#: cli/recipe/release.go:378 +#: cli/recipe/release.go:379 msgid "dry run: no changes committed" msgstr "" -#: cli/catalogue/catalogue.go:260 cli/recipe/release.go:430 +#: cli/catalogue/catalogue.go:262 cli/recipe/release.go:431 msgid "dry run: no changes published" msgstr "" @@ -2423,12 +2481,12 @@ msgstr "" msgid "dry run: no git changes pushed in %s" msgstr "" -#: cli/recipe/release.go:403 +#: cli/recipe/release.go:404 #, c-format msgid "dry run: no git tag created (%s)" msgstr "" -#: cli/recipe/sync.go:244 +#: cli/recipe/sync.go:245 #, c-format msgid "dry run: not syncing label %s for recipe %s" msgstr "" @@ -2438,8 +2496,8 @@ msgstr "" msgid "dry run: remote %s (%s) not created" msgstr "" -#: cli/catalogue/catalogue.go:289 cli/recipe/release.go:634 -#: cli/recipe/sync.go:263 +#: cli/catalogue/catalogue.go:292 cli/recipe/release.go:635 +#: cli/recipe/sync.go:264 msgid "dry-run" msgstr "" @@ -2453,15 +2511,15 @@ msgstr "" msgid "duplicate secret target for %s not allowed" msgstr "" -#: cli/app/env.go:17 cli/recipe/lint.go:138 cli/recipe/new.go:125 +#: cli/app/env.go:17 cli/recipe/lint.go:139 cli/recipe/new.go:125 msgid "e" msgstr "" -#: cli/recipe/list.go:43 +#: cli/recipe/list.go:44 msgid "email" msgstr "" -#: cli/app/restore.go:127 +#: cli/app/restore.go:128 msgid "enable pre/post-hook command execution" msgstr "" @@ -2478,7 +2536,7 @@ msgstr "" msgid "ensure \"image: ...\" set on all services" msgstr "" -#: cli/app/deploy.go:108 +#: cli/app/deploy.go:109 #, c-format msgid "ensure recipe: %s" msgstr "" @@ -2488,7 +2546,7 @@ msgstr "" msgid "ensuring env version %s" msgstr "" -#: cli/recipe/upgrade.go:281 +#: cli/recipe/upgrade.go:282 msgid "" "enter / return to confirm, choose 'skip' to not upgrade this tag, vim mode " "is enabled" @@ -2514,7 +2572,7 @@ msgstr "" msgid "err: %v, " msgstr "" -#: cli/recipe/lint.go:75 cli/recipe/lint.go:137 pkg/lint/recipe.go:132 +#: cli/recipe/lint.go:76 cli/recipe/lint.go:138 pkg/lint/recipe.go:132 #: pkg/lint/recipe.go:139 pkg/lint/recipe.go:146 pkg/lint/recipe.go:153 #: pkg/lint/recipe.go:161 pkg/lint/recipe.go:168 pkg/lint/recipe.go:175 msgid "error" @@ -2549,7 +2607,7 @@ msgstr "" msgid "exec ID empty" msgstr "" -#: cli/recipe/release.go:536 +#: cli/recipe/release.go:537 msgid "exiting as requested" msgstr "" @@ -2563,13 +2621,13 @@ msgstr "" msgid "expected 1 service but found %v: %s" msgstr "" -#: cli/app/deploy.go:334 cli/app/remove.go:157 cli/app/rollback.go:323 -#: cli/app/secret.go:572 cli/app/upgrade.go:434 cli/app/volume.go:202 -#: cli/recipe/fetch.go:20 cli/recipe/fetch.go:132 +#: cli/app/deploy.go:335 cli/app/remove.go:158 cli/app/rollback.go:324 +#: cli/app/secret.go:577 cli/app/upgrade.go:435 cli/app/volume.go:204 +#: cli/recipe/fetch.go:20 cli/recipe/fetch.go:133 msgid "f" msgstr "" -#: cli/recipe/release.go:256 cli/recipe/release.go:541 +#: cli/recipe/release.go:257 cli/recipe/release.go:542 #, c-format msgid "failed to add release notes: %s" msgstr "" @@ -2584,7 +2642,7 @@ msgstr "" msgid "failed to check out %s in %s" msgstr "" -#: cli/recipe/release.go:260 cli/recipe/release.go:545 +#: cli/recipe/release.go:261 cli/recipe/release.go:546 #, c-format msgid "failed to commit changes: %s" msgstr "" @@ -2609,7 +2667,7 @@ msgstr "" msgid "failed to create secret %s" msgstr "" -#: cli/updater/updater.go:253 +#: cli/updater/updater.go:255 #, c-format msgid "failed to determine deployed version of %s" msgstr "" @@ -2642,7 +2700,7 @@ msgstr "" msgid "failed to parse image %s, saw: %s" msgstr "" -#: cli/recipe/release.go:268 cli/recipe/release.go:553 +#: cli/recipe/release.go:269 cli/recipe/release.go:554 #, c-format msgid "failed to publish new release: %s" msgstr "" @@ -2676,7 +2734,7 @@ msgstr "" msgid "failed to resize tty, using default size" msgstr "" -#: cli/app/new.go:118 +#: cli/app/new.go:119 #, c-format msgid "failed to retrieve latest commit for %s: %s" msgstr "" @@ -2691,7 +2749,7 @@ msgstr "" msgid "failed to select default branch in %s" msgstr "" -#: cli/recipe/release.go:264 cli/recipe/release.go:549 +#: cli/recipe/release.go:265 cli/recipe/release.go:550 #, c-format msgid "failed to tag release: %s" msgstr "" @@ -2721,7 +2779,7 @@ msgstr "" msgid "fetch [recipe | --all] [flags]" msgstr "obtener [recipe | --all] [flags]" -#: cli/recipe/fetch.go:118 +#: cli/recipe/fetch.go:119 msgid "fetch all recipes" msgstr "" @@ -2730,7 +2788,7 @@ msgstr "" msgid "fetched latest git changes for %s" msgstr "" -#: cli/recipe/fetch.go:94 +#: cli/recipe/fetch.go:95 msgid "fetching latest recipes..." msgstr "" @@ -2739,11 +2797,11 @@ msgstr "" msgid "fetching repo metadata from %s" msgstr "" -#: cli/app/secret.go:571 +#: cli/app/secret.go:576 msgid "file" msgstr "" -#: cli/app/remove.go:149 +#: cli/app/remove.go:150 #, c-format msgid "file: %s removed" msgstr "" @@ -2752,31 +2810,31 @@ msgstr "" msgid "fill out all the metadata" msgstr "" -#: cli/recipe/list.go:109 +#: cli/recipe/list.go:110 msgid "filter by recipe" msgstr "" -#: cli/updater/updater.go:204 +#: cli/updater/updater.go:206 #, c-format msgid "for %s read env %s with value: %s from docker service" msgstr "" -#: cli/app/deploy.go:333 cli/app/remove.go:156 cli/app/rollback.go:322 -#: cli/app/upgrade.go:433 cli/app/volume.go:201 cli/recipe/fetch.go:131 +#: cli/app/deploy.go:334 cli/app/remove.go:157 cli/app/rollback.go:323 +#: cli/app/upgrade.go:434 cli/app/volume.go:203 cli/recipe/fetch.go:132 msgid "force" msgstr "" -#: cli/recipe/fetch.go:134 +#: cli/recipe/fetch.go:135 msgid "force re-fetch" msgstr "" -#: cli/recipe/upgrade.go:92 +#: cli/recipe/upgrade.go:93 #, c-format msgid "found versions file for %s" msgstr "" #: cli/app/secret.go:30 cli/catalogue/catalogue.go:27 -#: cli/catalogue/catalogue.go:46 +#: cli/catalogue/catalogue.go:47 msgid "g" msgstr "" @@ -2790,11 +2848,11 @@ msgid "generate [[secret] [version] | --all] [flags]" msgstr "generar [[secret] [version] | --all] [flags]" #. translators: `catalogue generate` command -#: cli/catalogue/catalogue.go:45 +#: cli/catalogue/catalogue.go:46 msgid "generate [recipe] [flags]" msgstr "regenerar [recipe] [flags]" -#: cli/app/secret.go:558 +#: cli/app/secret.go:563 msgid "generate all secrets" msgstr "" @@ -2808,17 +2866,17 @@ msgstr "" msgid "generated and stored %v on %s" msgstr "" -#: cli/catalogue/catalogue.go:208 +#: cli/catalogue/catalogue.go:210 #, c-format msgid "generated recipe catalogue: %s" msgstr "" -#: cli/app/secret.go:140 +#: cli/app/secret.go:141 #, c-format msgid "generated secrets %s shown again, please take note of them %s" msgstr "" -#: cli/app/deploy.go:102 +#: cli/app/deploy.go:103 #, c-format msgid "get deploy version: %s" msgstr "" @@ -2939,7 +2997,7 @@ msgstr "" msgid "has published catalogue version" msgstr "" -#: cli/recipe/list.go:41 +#: cli/recipe/list.go:42 msgid "healthcheck" msgstr "" @@ -2947,11 +3005,11 @@ msgstr "" msgid "healthcheck enabled for all services" msgstr "" -#: cli/app/restore.go:124 +#: cli/app/restore.go:125 msgid "hooks" msgstr "" -#: cli/app/secret.go:151 +#: cli/app/secret.go:152 msgid "i" msgstr "" @@ -2960,21 +3018,21 @@ msgstr "" msgid "id: %s, " msgstr "" -#: cli/run.go:143 +#: cli/run.go:145 msgid "ignore .env version checkout" msgstr "" -#: cli/app/backup.go:295 cli/app/backup.go:311 cli/app/check.go:91 -#: cli/app/cmd.go:277 cli/app/cp.go:382 cli/app/deploy.go:328 -#: cli/app/labels.go:139 cli/app/new.go:369 cli/app/ps.go:210 -#: cli/app/restart.go:158 cli/app/restore.go:135 cli/app/secret.go:550 -#: cli/app/secret.go:590 cli/app/secret.go:614 cli/app/secret.go:622 -#: cli/catalogue/catalogue.go:308 cli/recipe/lint.go:132 -#: cli/updater/updater.go:543 +#: cli/app/backup.go:300 cli/app/backup.go:316 cli/app/check.go:92 +#: cli/app/cmd.go:279 cli/app/cp.go:383 cli/app/deploy.go:329 +#: cli/app/labels.go:140 cli/app/new.go:370 cli/app/ps.go:211 +#: cli/app/restart.go:159 cli/app/restore.go:136 cli/app/secret.go:555 +#: cli/app/secret.go:595 cli/app/secret.go:619 cli/app/secret.go:627 +#: cli/catalogue/catalogue.go:311 cli/recipe/lint.go:133 +#: cli/updater/updater.go:546 msgid "ignore uncommitted recipes changes" msgstr "" -#: cli/app/undeploy.go:142 cli/server/prune.go:67 +#: cli/app/undeploy.go:143 cli/server/prune.go:68 #, c-format msgid "images pruned: %d; space reclaimed: %s" msgstr "" @@ -2987,87 +3045,87 @@ msgstr "" msgid "include \"traefik.enable=true\" deploy label" msgstr "" -#: cli/app/backup.go:279 +#: cli/app/backup.go:284 msgid "include secrets" msgstr "" -#: cli/app/backup.go:255 +#: cli/app/backup.go:260 msgid "include timestamps" msgstr "" -#: cli/app/backup.go:287 +#: cli/app/backup.go:292 msgid "include volumes" msgstr "" -#: cli/app/restore.go:75 +#: cli/app/restore.go:76 #, c-format msgid "including CONTAINER=%s in backupbot exec invocation" msgstr "" -#: cli/app/backup.go:109 +#: cli/app/backup.go:111 #, c-format msgid "including INCLUDE_PATH=%s in backupbot exec invocation" msgstr "" -#: cli/app/restore.go:63 +#: cli/app/restore.go:64 #, c-format msgid "including NONINTERACTIVE=%v in backupbot exec invocation" msgstr "" -#: cli/app/restore.go:80 +#: cli/app/restore.go:81 #, c-format msgid "including NO_COMMANDS=%v in backupbot exec invocation" msgstr "" -#: cli/app/backup.go:170 +#: cli/app/backup.go:173 #, c-format msgid "including RETRIES=%s in backupbot exec invocation" msgstr "" -#: cli/app/backup.go:114 +#: cli/app/backup.go:116 #, c-format msgid "including SECRETS=%v in backupbot exec invocation" msgstr "" -#: cli/app/backup.go:50 +#: cli/app/backup.go:51 #, c-format msgid "including SHOW_ALL=%v in backupbot exec invocation" msgstr "" -#: cli/app/backup.go:45 cli/app/backup.go:104 cli/app/restore.go:53 +#: cli/app/backup.go:46 cli/app/backup.go:106 cli/app/restore.go:54 #, c-format msgid "including SNAPSHOT=%s in backupbot exec invocation" msgstr "" -#: cli/app/restore.go:58 +#: cli/app/restore.go:59 #, c-format msgid "including TARGET=%s in backupbot exec invocation" msgstr "" -#: cli/app/backup.go:55 +#: cli/app/backup.go:56 #, c-format msgid "including TIMESTAMPS=%v in backupbot exec invocation" msgstr "" -#: cli/app/restore.go:69 +#: cli/app/restore.go:70 #, c-format msgid "including VOLUMES=%s in backupbot exec invocation" msgstr "" -#: cli/app/backup.go:119 +#: cli/app/backup.go:121 #, c-format msgid "including VOLUMES=%v in backupbot exec invocation" msgstr "" -#: cli/recipe/release.go:645 cli/recipe/sync.go:274 cli/recipe/upgrade.go:349 +#: cli/recipe/release.go:646 cli/recipe/sync.go:275 cli/recipe/upgrade.go:350 msgid "increase the major part of the version" msgstr "" -#: cli/recipe/release.go:653 cli/recipe/sync.go:282 cli/recipe/upgrade.go:357 +#: cli/recipe/release.go:654 cli/recipe/sync.go:283 cli/recipe/upgrade.go:358 msgid "increase the minor part of the version" msgstr "" -#: cli/recipe/release.go:661 cli/recipe/sync.go:290 cli/recipe/upgrade.go:365 +#: cli/recipe/release.go:662 cli/recipe/sync.go:291 cli/recipe/upgrade.go:366 msgid "increase the patch part of the version" msgstr "" @@ -3090,11 +3148,11 @@ msgid "initialising undeploy" msgstr "" #. translators: `app secret insert` command -#: cli/app/secret.go:150 +#: cli/app/secret.go:151 msgid "insert [] [flags]" msgstr "insertar [] [flags]" -#: cli/upgrade.go:56 +#: cli/upgrade.go:57 msgid "install release candidate (may contain bugs)" msgstr "" @@ -3146,23 +3204,23 @@ msgstr "" msgid "invalid tmpfs source, source must be empty" msgstr "" -#: cli/recipe/sync.go:234 +#: cli/recipe/sync.go:235 #, c-format msgid "invalid version %s specified" msgstr "" #. translators: `kadabra` binary name -#: cli/updater/updater.go:474 +#: cli/updater/updater.go:476 msgid "kadabra [cmd] [flags]" msgstr "" -#: cli/updater/updater.go:487 +#: cli/updater/updater.go:490 #, c-format msgid "kadabra version %s, commit %s" msgstr "" -#: cli/app/cmd.go:251 cli/app/logs.go:20 cli/recipe/lint.go:17 -#: cli/server/add.go:201 +#: cli/app/cmd.go:253 cli/app/logs.go:20 cli/recipe/lint.go:18 +#: cli/server/add.go:202 msgid "l" msgstr "" @@ -3171,11 +3229,11 @@ msgstr "" msgid "labels [flags]" msgstr "etiquetas [flags]" -#: cli/app/list.go:178 +#: cli/app/list.go:179 msgid "latest" msgstr "" -#: cli/recipe/release.go:522 +#: cli/recipe/release.go:523 #, c-format msgid "latest git tag (%s) and synced label (%s) are the same?" msgstr "" @@ -3205,14 +3263,14 @@ msgid "list" msgstr "listar" #. translators: `app secret list` command -#: cli/app/secret.go:438 +#: cli/app/secret.go:441 msgid "list " msgstr "listar " #. translators: `app backup list` command -#. translators: `app list` command +#. translators: `app cmd list` command #. translators: `app volume list` command -#: cli/app/backup.go:16 cli/app/cmd.go:198 cli/app/volume.go:20 +#: cli/app/backup.go:16 cli/app/cmd.go:199 cli/app/volume.go:20 msgid "list [flags]" msgstr "listar [flags]" @@ -3222,11 +3280,11 @@ msgstr "listar [flags]" msgid "list [flags]" msgstr "listar [flags]" -#: cli/recipe/upgrade.go:381 +#: cli/recipe/upgrade.go:382 msgid "list all tags, not just upgrades" msgstr "" -#: cli/app/backup.go:239 cli/app/backup.go:263 +#: cli/app/backup.go:244 cli/app/backup.go:268 msgid "list specific snapshot" msgstr "" @@ -3235,20 +3293,20 @@ msgstr "" msgid "loaded app %s: %s" msgstr "" -#: cli/app/cmd.go:250 cli/server/add.go:200 cli/server/list.go:70 +#: cli/app/cmd.go:252 cli/server/add.go:201 cli/server/list.go:71 msgid "local" msgstr "" -#: cli/app/cp.go:109 +#: cli/app/cp.go:110 #, c-format msgid "local %s " msgstr "" -#: cli/server/add.go:87 +#: cli/server/add.go:88 msgid "local server already exists" msgstr "" -#: cli/server/add.go:85 +#: cli/server/add.go:86 msgid "local server successfully added" msgstr "" @@ -3266,72 +3324,72 @@ msgstr "" msgid "long secret names" msgstr "" -#: cli/app/backup.go:17 cli/app/cmd.go:199 cli/app/list.go:45 -#: cli/app/secret.go:439 cli/app/volume.go:21 cli/recipe/list.go:21 +#: cli/app/backup.go:17 cli/app/cmd.go:200 cli/app/list.go:45 +#: cli/app/secret.go:442 cli/app/volume.go:21 cli/recipe/list.go:22 #: cli/server/list.go:20 msgid "ls" msgstr "" -#: cli/app/list.go:313 cli/app/ps.go:200 cli/app/secret.go:532 -#: cli/app/secret.go:628 cli/recipe/list.go:99 cli/recipe/upgrade.go:371 -#: cli/recipe/version.go:133 cli/server/list.go:101 cli/updater/updater.go:549 +#: cli/app/list.go:314 cli/app/ps.go:201 cli/app/secret.go:537 +#: cli/app/secret.go:633 cli/recipe/list.go:100 cli/recipe/upgrade.go:372 +#: cli/recipe/version.go:134 cli/server/list.go:102 cli/updater/updater.go:552 msgid "m" msgstr "" -#: cli/app/list.go:312 cli/app/ps.go:199 cli/app/secret.go:531 -#: cli/app/secret.go:627 cli/recipe/list.go:98 cli/recipe/upgrade.go:370 -#: cli/recipe/version.go:132 cli/server/list.go:100 +#: cli/app/list.go:313 cli/app/ps.go:200 cli/app/secret.go:536 +#: cli/app/secret.go:632 cli/recipe/list.go:99 cli/recipe/upgrade.go:371 +#: cli/recipe/version.go:133 cli/server/list.go:101 msgid "machine" msgstr "" -#: cli/recipe/release.go:88 +#: cli/recipe/release.go:89 #, c-format msgid "main app service version for %s is empty?" msgstr "" #: cli/internal/recipe.go:48 cli/internal/recipe.go:66 -#: cli/internal/recipe.go:80 cli/recipe/release.go:642 cli/recipe/sync.go:271 -#: cli/recipe/upgrade.go:346 cli/updater/updater.go:548 +#: cli/internal/recipe.go:80 cli/recipe/release.go:643 cli/recipe/sync.go:272 +#: cli/recipe/upgrade.go:347 cli/updater/updater.go:551 msgid "major" msgstr "" -#: cli/recipe/upgrade.go:102 +#: cli/recipe/upgrade.go:103 #, c-format msgid "malformed version pin specification: %s" msgstr "" -#: cli/run.go:32 +#: cli/run.go:33 msgid "man" msgstr "" #. translators: `man` command -#: cli/run.go:83 +#: cli/run.go:84 msgid "man [flags]" msgstr "manual [flags]" #: cli/internal/recipe.go:48 cli/internal/recipe.go:68 -#: cli/internal/recipe.go:82 cli/recipe/release.go:650 cli/recipe/sync.go:279 -#: cli/recipe/upgrade.go:354 +#: cli/internal/recipe.go:82 cli/recipe/release.go:651 cli/recipe/sync.go:280 +#: cli/recipe/upgrade.go:355 msgid "minor" msgstr "" -#: cli/recipe/fetch.go:45 +#: cli/recipe/fetch.go:46 msgid "missing [recipe] or --all/-a" msgstr "" -#: cli/app/restart.go:65 +#: cli/app/restart.go:66 msgid "missing [service]" msgstr "" -#: cli/server/add.go:58 +#: cli/server/add.go:59 msgid "missing argument or --local/-l flag" msgstr "" -#: cli/app/secret.go:59 +#: cli/app/secret.go:60 msgid "missing arguments [secret]/[version] or '--all'" msgstr "" -#: cli/updater/updater.go:105 +#: cli/updater/updater.go:107 msgid "missing arguments or --all/-a flag" msgstr "" @@ -3340,16 +3398,16 @@ msgstr "" msgid "missing version for secret? (%s)" msgstr "" -#: cli/app/secret.go:282 +#: cli/app/secret.go:284 msgid "must provide argument if --no-input is passed" msgstr "" #: cli/app/new.go:48 cli/recipe/new.go:36 cli/updater/updater.go:37 -#: cli/updater/updater.go:502 +#: cli/updater/updater.go:505 msgid "n" msgstr "" -#: cli/recipe/list.go:38 +#: cli/recipe/list.go:39 msgid "name" msgstr "" @@ -3362,7 +3420,7 @@ msgstr "" msgid "name: %s, " msgstr "" -#: cli/app/secret.go:260 +#: cli/app/secret.go:262 msgid "need 3 or 4 arguments" msgstr "" @@ -3381,7 +3439,7 @@ msgid "" "instead of \"swarm\"" msgstr "" -#: cli/app/undeploy.go:134 cli/server/prune.go:53 +#: cli/app/undeploy.go:135 cli/server/prune.go:54 #, c-format msgid "networks pruned: %d" msgstr "" @@ -3396,7 +3454,7 @@ msgstr "nueva [flags]" msgid "new [recipe] [version] [flags]" msgstr "nueva [recipe] [version] [flags]" -#: cli/catalogue/catalogue.go:256 +#: cli/catalogue/catalogue.go:258 #, c-format msgid "new changes published: %s" msgstr "" @@ -3406,7 +3464,7 @@ msgstr "" msgid "new recipe '%s' created: %s" msgstr "" -#: cli/recipe/release.go:454 +#: cli/recipe/release.go:455 #, c-format msgid "new release published: %s" msgstr "" @@ -3421,12 +3479,12 @@ msgstr "" msgid "no %s exists, skipping reading gitignore paths" msgstr "" -#: cli/updater/updater.go:157 pkg/app/compose.go:87 +#: cli/updater/updater.go:159 pkg/app/compose.go:87 #, c-format msgid "no %s label found for %s" msgstr "" -#: cli/recipe/release.go:456 +#: cli/recipe/release.go:457 msgid "no -p/--publish passed, not publishing" msgstr "" @@ -3444,15 +3502,15 @@ msgstr "" msgid "no app provided" msgstr "" -#: cli/app/rollback.go:121 +#: cli/app/rollback.go:122 msgid "no available downgrades" msgstr "" -#: cli/app/upgrade.go:128 +#: cli/app/upgrade.go:129 msgid "no available upgrades" msgstr "" -#: cli/updater/updater.go:226 +#: cli/updater/updater.go:228 #, c-format msgid "no available upgrades for %s" msgstr "" @@ -3461,7 +3519,7 @@ msgstr "" msgid "no backupbot discovered, is it deployed?" msgstr "" -#: cli/catalogue/catalogue.go:220 cli/recipe/release.go:389 +#: cli/catalogue/catalogue.go:222 cli/recipe/release.go:390 #, c-format msgid "no changes discovered in %s, nothing to publish?" msgstr "" @@ -3474,7 +3532,7 @@ msgstr "" msgid "no config file found" msgstr "" -#: cli/app/remove.go:95 +#: cli/app/remove.go:96 msgid "no configs to remove" msgstr "" @@ -3483,7 +3541,7 @@ msgstr "" msgid "no containers matching the %v filter found?" msgstr "" -#: cli/app/new.go:262 cli/internal/validate.go:129 +#: cli/app/new.go:263 cli/internal/validate.go:129 msgid "no domain provided" msgstr "" @@ -3491,19 +3549,19 @@ msgstr "" msgid "no existing label found, automagic insertion not supported yet" msgstr "" -#: cli/recipe/sync.go:75 +#: cli/recipe/sync.go:76 #, c-format msgid "no git tags found for %s" msgstr "" -#: cli/recipe/upgrade.go:178 +#: cli/recipe/upgrade.go:179 #, c-format msgid "" "no new versions available for %s, assuming %s is the latest (use -a/--all-" "tags to see all anyway)" msgstr "" -#: cli/updater/updater.go:275 +#: cli/updater/updater.go:277 #, fuzzy, c-format msgid "no published releases for %s in the recipe catalogue?" msgstr "TRANSLATE THIS FUCKING SHIT ALREADY" @@ -3517,37 +3575,37 @@ msgstr "" msgid "no recipe name provided" msgstr "" -#: cli/app/secret.go:224 +#: cli/app/secret.go:226 #, c-format msgid "no secret %s available for recipe %s?" msgstr "" -#: cli/app/secret.go:376 +#: cli/app/secret.go:379 msgid "no secret(s) specified?" msgstr "" -#: cli/app/secret.go:108 +#: cli/app/secret.go:109 msgid "no secrets generated" msgstr "" -#: cli/app/secret.go:508 +#: cli/app/secret.go:512 #, c-format msgid "no secrets stored for %s" msgstr "" -#: cli/app/remove.go:120 +#: cli/app/remove.go:121 msgid "no secrets to remove" msgstr "" -#: cli/app/secret.go:431 +#: cli/app/secret.go:434 msgid "no secrets to remove?" msgstr "" -#: cli/app/new.go:311 cli/internal/validate.go:167 +#: cli/app/new.go:312 cli/internal/validate.go:167 msgid "no server provided" msgstr "" -#: cli/app/cmd.go:169 +#: cli/app/cmd.go:170 #, c-format msgid "no service %s for %s?" msgstr "" @@ -3566,7 +3624,7 @@ msgstr "" msgid "no services matching the %v filter found?" msgstr "" -#: cli/recipe/release.go:166 +#: cli/recipe/release.go:167 #, c-format msgid "" "no tag specified and no previous tag available for %s, assuming initial " @@ -3581,32 +3639,32 @@ msgstr "" msgid "no version bump type specififed?" msgstr "" -#: cli/app/volume.go:72 +#: cli/app/volume.go:73 #, c-format msgid "no volumes created for %s" msgstr "" -#: cli/app/volume.go:186 +#: cli/app/volume.go:188 msgid "no volumes removed" msgstr "" -#: cli/app/remove.go:142 +#: cli/app/remove.go:143 msgid "no volumes to remove" msgstr "" -#: cli/app/deploy.go:349 cli/app/rollback.go:338 cli/app/upgrade.go:449 +#: cli/app/deploy.go:350 cli/app/rollback.go:339 cli/app/upgrade.go:450 msgid "no-converge-checks" msgstr "" -#: cli/app/deploy.go:341 cli/app/rollback.go:330 cli/app/upgrade.go:441 +#: cli/app/deploy.go:342 cli/app/rollback.go:331 cli/app/upgrade.go:442 msgid "no-domain-checks" msgstr "" -#: cli/updater/updater.go:501 +#: cli/updater/updater.go:504 msgid "no-input" msgstr "" -#: cli/app/run.go:103 +#: cli/app/run.go:104 msgid "no-tty" msgstr "" @@ -3623,12 +3681,12 @@ msgstr "" msgid "not requesting a remote TTY" msgstr "" -#: cli/recipe/upgrade.go:301 +#: cli/recipe/upgrade.go:302 #, c-format msgid "not upgrading %s, skipping as requested" msgstr "" -#: cli/recipe/upgrade.go:240 +#: cli/recipe/upgrade.go:241 #, c-format msgid "" "not upgrading from %s to %s for %s, because the upgrade type is more serious " @@ -3645,11 +3703,11 @@ msgstr "" msgid "notify [flags]" msgstr "notificar [flags]" -#: cli/app/backup.go:303 +#: cli/app/backup.go:308 msgid "number of retry attempts" msgstr "" -#: cli/app/cp.go:86 +#: cli/app/cp.go:87 msgid "one of / arguments must take $SERVICE:$PATH form" msgstr "" @@ -3661,26 +3719,26 @@ msgstr "" msgid "only annotated tags used for recipe version" msgstr "" -#: cli/recipe/lint.go:140 +#: cli/recipe/lint.go:141 msgid "only show errors" msgstr "" -#: cli/app/upgrade.go:460 +#: cli/app/upgrade.go:461 msgid "only show release notes" msgstr "" -#: cli/app/logs.go:97 +#: cli/app/logs.go:98 msgid "only tail stderr" msgstr "" -#: cli/app/backup.go:269 cli/app/new.go:351 cli/app/ps.go:30 -#: cli/app/secret.go:540 cli/app/secret.go:564 cli/app/secret.go:604 -#: cli/app/undeploy.go:155 cli/catalogue/catalogue.go:282 -#: cli/recipe/list.go:107 cli/recipe/release.go:667 cli/server/prune.go:17 +#: cli/app/backup.go:274 cli/app/new.go:352 cli/app/ps.go:30 +#: cli/app/secret.go:545 cli/app/secret.go:569 cli/app/secret.go:609 +#: cli/app/undeploy.go:156 cli/catalogue/catalogue.go:285 +#: cli/recipe/list.go:108 cli/recipe/release.go:668 cli/server/prune.go:17 msgid "p" msgstr "" -#: cli/recipe/upgrade.go:159 +#: cli/recipe/upgrade.go:160 #, c-format msgid "parsed %s for %s" msgstr "" @@ -3690,33 +3748,33 @@ msgstr "" msgid "parsed %s from %s" msgstr "" -#: cli/app/cmd.go:129 cli/app/cmd.go:175 +#: cli/app/cmd.go:130 cli/app/cmd.go:176 #, c-format msgid "parsed following command arguments: %s" msgstr "" -#: cli/app/upgrade.go:317 +#: cli/app/upgrade.go:318 #, c-format msgid "parsing chosen upgrade version failed: %s" msgstr "" -#: cli/app/upgrade.go:361 +#: cli/app/upgrade.go:362 #, c-format msgid "parsing deployed version failed: %s" msgstr "" -#: cli/app/upgrade.go:322 +#: cli/app/upgrade.go:323 #, c-format msgid "parsing deployment version failed: %s" msgstr "" -#: cli/app/upgrade.go:328 cli/app/upgrade.go:367 +#: cli/app/upgrade.go:329 cli/app/upgrade.go:368 #, c-format msgid "parsing recipe version failed: %s" msgstr "" -#: cli/app/new.go:350 cli/app/secret.go:539 cli/app/secret.go:563 -#: cli/app/secret.go:603 +#: cli/app/new.go:351 cli/app/secret.go:544 cli/app/secret.go:568 +#: cli/app/secret.go:608 msgid "pass" msgstr "" @@ -3725,45 +3783,45 @@ msgid "pass command not found on $PATH, is it installed?" msgstr "" #: cli/internal/recipe.go:48 cli/internal/recipe.go:70 -#: cli/internal/recipe.go:84 cli/recipe/release.go:658 cli/recipe/sync.go:287 -#: cli/recipe/upgrade.go:362 +#: cli/internal/recipe.go:84 cli/recipe/release.go:659 cli/recipe/sync.go:288 +#: cli/recipe/upgrade.go:363 msgid "patch" msgstr "" -#: cli/app/backup.go:268 +#: cli/app/backup.go:273 msgid "path" msgstr "" -#: cli/recipe/list.go:106 +#: cli/recipe/list.go:107 msgid "pattern" msgstr "" -#: cli/app/deploy.go:336 cli/app/remove.go:159 cli/app/rollback.go:325 -#: cli/app/upgrade.go:436 cli/app/volume.go:204 +#: cli/app/deploy.go:337 cli/app/remove.go:160 cli/app/rollback.go:326 +#: cli/app/upgrade.go:437 cli/app/volume.go:206 msgid "perform action without further prompt" msgstr "" -#: cli/recipe/release.go:620 +#: cli/recipe/release.go:621 #, c-format msgid "please fix your synced label for %s and re-run this command" msgstr "" -#: cli/app/rollback.go:237 +#: cli/app/rollback.go:238 #, c-format msgid "please select a downgrade (version: %s):" msgstr "" -#: cli/app/rollback.go:242 +#: cli/app/rollback.go:243 #, c-format msgid "please select a downgrade (version: %s, chaos: %s):" msgstr "" -#: cli/app/upgrade.go:284 +#: cli/app/upgrade.go:285 #, c-format msgid "please select an upgrade (version: %s):" msgstr "" -#: cli/app/upgrade.go:289 +#: cli/app/upgrade.go:290 #, c-format msgid "please select an upgrade (version: %s, chaos: %s):" msgstr "" @@ -3776,17 +3834,17 @@ msgstr "" msgid "polling undeploy status" msgstr "" -#: cli/run.go:135 +#: cli/run.go:137 msgid "prefer offline & filesystem access" msgstr "" -#: cli/recipe/release.go:154 +#: cli/recipe/release.go:155 msgid "previous git tags detected, assuming new semver release" msgstr "" -#: cli/app/list.go:315 cli/app/ps.go:202 cli/app/secret.go:534 -#: cli/app/secret.go:630 cli/recipe/list.go:101 cli/recipe/upgrade.go:373 -#: cli/recipe/version.go:135 cli/server/list.go:103 +#: cli/app/list.go:316 cli/app/ps.go:203 cli/app/secret.go:539 +#: cli/app/secret.go:635 cli/recipe/list.go:102 cli/recipe/upgrade.go:374 +#: cli/recipe/version.go:136 cli/server/list.go:104 msgid "print machine-readable output" msgstr "" @@ -3795,7 +3853,7 @@ msgstr "" msgid "processing %s for %s" msgstr "" -#: cli/app/undeploy.go:154 +#: cli/app/undeploy.go:155 msgid "prune" msgstr "" @@ -3804,7 +3862,7 @@ msgstr "" msgid "prune [flags]" msgstr "limpiar [flags]" -#: cli/app/undeploy.go:157 +#: cli/app/undeploy.go:158 msgid "prune unused containers, networks, and dangling images" msgstr "" @@ -3813,7 +3871,7 @@ msgstr "" msgid "ps [flags]" msgstr "procesos [flags]" -#: cli/catalogue/catalogue.go:281 cli/recipe/release.go:666 +#: cli/catalogue/catalogue.go:284 cli/recipe/release.go:667 msgid "publish" msgstr "" @@ -3821,11 +3879,11 @@ msgstr "" msgid "publish a recipe version to the catalogue" msgstr "" -#: cli/catalogue/catalogue.go:284 cli/recipe/release.go:669 +#: cli/catalogue/catalogue.go:287 cli/recipe/release.go:670 msgid "publish changes to git.coopcloud.tech" msgstr "" -#: cli/recipe/release.go:436 +#: cli/recipe/release.go:437 msgid "publish new release?" msgstr "" @@ -3833,9 +3891,9 @@ msgstr "" msgid "querying remote servers..." msgstr "" -#: cli/app/backup.go:301 cli/app/list.go:298 cli/app/run.go:23 -#: cli/app/upgrade.go:458 cli/catalogue/catalogue.go:290 -#: cli/recipe/recipe.go:12 cli/recipe/release.go:635 cli/recipe/sync.go:264 +#: cli/app/backup.go:306 cli/app/list.go:299 cli/app/run.go:23 +#: cli/app/upgrade.go:459 cli/catalogue/catalogue.go:293 +#: cli/recipe/recipe.go:12 cli/recipe/release.go:636 cli/recipe/sync.go:265 msgid "r" msgstr "" @@ -3887,16 +3945,16 @@ msgstr "" msgid "reader: %v, " msgstr "" -#: cli/app/secret.go:276 +#: cli/app/secret.go:278 #, c-format msgid "reading data from stdin: %s" msgstr "" -#: cli/app/secret.go:273 +#: cli/app/secret.go:275 msgid "reading secret data from stdin" msgstr "" -#: cli/app/secret.go:230 +#: cli/app/secret.go:232 #, c-format msgid "reading secret from file: %s" msgstr "" @@ -3906,7 +3964,7 @@ msgstr "" msgid "readme: %s, " msgstr "" -#: cli/app/list.go:297 cli/app/list.go:304 cli/run.go:33 +#: cli/app/list.go:298 cli/app/list.go:305 cli/run.go:34 msgid "recipe" msgstr "" @@ -3936,7 +3994,7 @@ msgstr "" msgid "reduce length of secret names to 12 chars" msgstr "" -#: cli/recipe/lint.go:33 +#: cli/recipe/lint.go:34 msgid "ref" msgstr "" @@ -3945,22 +4003,22 @@ msgstr "" msgid "release [version] [flags]" msgstr "publicar [version] [flags]" -#: cli/app/upgrade.go:457 +#: cli/app/upgrade.go:458 msgid "releasenotes" msgstr "" -#: cli/app/cp.go:118 cli/app/cp.go:200 cli/app/cp.go:211 +#: cli/app/cp.go:119 cli/app/cp.go:201 cli/app/cp.go:212 #, c-format msgid "remote path: %s" msgstr "" -#: cli/app/cp.go:198 +#: cli/app/cp.go:199 #, c-format msgid "remote: %s does not exist" msgstr "" #. translators: `app secret remove` command -#: cli/app/secret.go:324 +#: cli/app/secret.go:326 msgid "remove [[secret] | --all] [flags]" msgstr "borrar [[secret] | --all] [flags]" @@ -3970,7 +4028,7 @@ msgid "remove [flags]" msgstr "borrar [flags]" #. translators: `app volume remove` command -#: cli/app/volume.go:78 +#: cli/app/volume.go:79 msgid "remove [volume] [flags]" msgstr "borrar [volume] [flags]" @@ -3979,19 +4037,19 @@ msgstr "borrar [volume] [flags]" msgid "remove [flags]" msgstr "borrar [flags]" -#: cli/app/secret.go:598 +#: cli/app/secret.go:603 msgid "remove all secrets" msgstr "" -#: cli/server/prune.go:94 +#: cli/server/prune.go:95 msgid "remove all unused images" msgstr "" -#: cli/app/secret.go:606 +#: cli/app/secret.go:611 msgid "remove generated secrets from a local pass store" msgstr "" -#: cli/server/prune.go:102 +#: cli/server/prune.go:103 msgid "remove volumes" msgstr "" @@ -4005,16 +4063,16 @@ msgstr "" msgid "removed dirty suffix from .env version: %s -> %s" msgstr "" -#: cli/recipe/release.go:577 +#: cli/recipe/release.go:578 msgid "removed freshly created commit" msgstr "" -#: cli/recipe/release.go:595 +#: cli/recipe/release.go:596 #, c-format msgid "removed freshly created tag %s" msgstr "" -#: cli/server/prune.go:57 +#: cli/server/prune.go:58 msgid "removing all images, not only dangling ones" msgstr "" @@ -4023,7 +4081,7 @@ msgstr "" msgid "removing config %s" msgstr "" -#: cli/app/remove.go:90 +#: cli/app/remove.go:91 #, c-format msgid "removing configs failed: %s" msgstr "" @@ -4043,12 +4101,12 @@ msgstr "" msgid "removing service %s" msgstr "" -#: cli/app/volume.go:152 +#: cli/app/volume.go:154 #, c-format msgid "removing volume %s failed: %s" msgstr "" -#: cli/app/remove.go:137 cli/app/volume.go:181 +#: cli/app/remove.go:138 cli/app/volume.go:183 #, c-format msgid "removing volumes failed: %s" msgstr "" @@ -4071,20 +4129,20 @@ msgstr "" msgid "repo set config: %s" msgstr "" -#: cli/catalogue/catalogue.go:292 cli/recipe/release.go:637 -#: cli/recipe/sync.go:266 +#: cli/catalogue/catalogue.go:295 cli/recipe/release.go:638 +#: cli/recipe/sync.go:267 msgid "report changes that would be made" msgstr "" -#: cli/app/cmd.go:261 +#: cli/app/cmd.go:263 msgid "request remote user" msgstr "" -#: cli/app/cmd.go:47 +#: cli/app/cmd.go:48 msgid "requires at least 2 arguments with --local/-l" msgstr "" -#: cli/app/cmd.go:68 +#: cli/app/cmd.go:69 msgid "requires at least 3 arguments" msgstr "" @@ -4093,7 +4151,7 @@ msgstr "" msgid "reset [flags]" msgstr "reestablecer [flags]" -#: cli/recipe/lint.go:38 +#: cli/recipe/lint.go:39 msgid "resolve" msgstr "" @@ -4102,7 +4160,7 @@ msgstr "" msgid "restart [[service] | --all-services] [flags]" msgstr "reiniciar [[service] | --all-services] [flags]" -#: cli/app/restart.go:165 +#: cli/app/restart.go:166 msgid "restart all services" msgstr "" @@ -4111,19 +4169,19 @@ msgstr "" msgid "restore [flags]" msgstr "restaurar [flags]" -#: cli/app/restore.go:111 +#: cli/app/restore.go:112 msgid "restore specific services" msgstr "" -#: cli/app/restore.go:119 +#: cli/app/restore.go:120 msgid "restore specific volumes" msgstr "" -#: cli/app/backup.go:300 +#: cli/app/backup.go:305 msgid "retries" msgstr "" -#: cli/updater/updater.go:241 +#: cli/updater/updater.go:243 #, c-format msgid "retrieve deployed version whether %s is already deployed" msgstr "" @@ -4133,7 +4191,7 @@ msgstr "" msgid "retrieved %s as backup enabled service" msgstr "" -#: cli/app/cp.go:73 cli/internal/command.go:39 +#: cli/app/cp.go:74 cli/internal/command.go:39 #, c-format msgid "retrieved %s as target container on %s" msgstr "" @@ -4148,7 +4206,7 @@ msgstr "" msgid "retrieved %s for %s" msgstr "" -#: cli/recipe/upgrade.go:140 +#: cli/recipe/upgrade.go:141 #, c-format msgid "retrieved %s from remote registry for %s" msgstr "" @@ -4163,7 +4221,7 @@ msgstr "" msgid "retrieved app statuses: %s" msgstr "" -#: cli/recipe/version.go:40 +#: cli/recipe/version.go:41 msgid "retrieved versions from local recipe repository" msgstr "" @@ -4180,7 +4238,7 @@ msgstr "" msgid "rl" msgstr "" -#: cli/app/remove.go:21 cli/app/secret.go:325 cli/app/volume.go:95 +#: cli/app/remove.go:21 cli/app/secret.go:327 cli/app/volume.go:97 #: cli/server/remove.go:19 msgid "rm" msgstr "" @@ -4198,7 +4256,7 @@ msgstr "" msgid "rs" msgstr "" -#: cli/recipe/lint.go:34 +#: cli/recipe/lint.go:35 msgid "rule" msgstr "" @@ -4207,15 +4265,15 @@ msgstr "" msgid "run [[args] [flags] | [flags] -- [args]]" msgstr "lanzar [[args] [flags] | [flags] -- [args]]" -#: cli/app/run.go:114 +#: cli/app/run.go:115 msgid "run command as user" msgstr "" -#: cli/app/cmd.go:253 +#: cli/app/cmd.go:255 msgid "run command locally" msgstr "" -#: cli/app/deploy.go:228 cli/app/upgrade.go:265 +#: cli/app/deploy.go:229 cli/app/upgrade.go:266 #, c-format msgid "run the following post-deploy commands: %s" msgstr "" @@ -4230,7 +4288,7 @@ msgstr "" msgid "running command %s %s within the context of %s_%s" msgstr "" -#: cli/app/cmd.go:172 +#: cli/app/cmd.go:173 #, c-format msgid "running command %s within the context of %s_%s" msgstr "" @@ -4250,10 +4308,10 @@ msgstr "" msgid "running post-command '%s %s' in container %s" msgstr "" -#: cli/app/backup.go:183 cli/app/backup.go:237 cli/app/backup.go:261 -#: cli/app/list.go:321 cli/app/logs.go:95 cli/app/new.go:328 -#: cli/app/restore.go:109 cli/app/secret.go:515 cli/catalogue/catalogue.go:298 -#: cli/recipe/fetch.go:124 cli/recipe/sync.go:24 cli/server/server.go:12 +#: cli/app/backup.go:186 cli/app/backup.go:242 cli/app/backup.go:266 +#: cli/app/list.go:322 cli/app/logs.go:96 cli/app/new.go:329 +#: cli/app/restore.go:110 cli/app/secret.go:519 cli/catalogue/catalogue.go:301 +#: cli/recipe/fetch.go:125 cli/recipe/sync.go:24 cli/server/server.go:12 msgid "s" msgstr "" @@ -4262,7 +4320,7 @@ msgstr "" msgid "sample env: %s, " msgstr "" -#: cli/recipe/lint.go:36 +#: cli/recipe/lint.go:37 msgid "satisfied" msgstr "" @@ -4277,11 +4335,11 @@ msgid "secret %s is longer than 12 characters" msgstr "" #. translators: `app secret` command group -#: cli/app/secret.go:514 +#: cli/app/secret.go:518 msgid "secret [cmd] [args] [flags]" msgstr "secreto [cmd] [args] [flags]" -#: cli/app/secret.go:285 +#: cli/app/secret.go:287 msgid "secret data not provided on command-line or stdin, prompting" msgstr "" @@ -4290,27 +4348,27 @@ msgstr "" msgid "secret not found: %s" msgstr "" -#: cli/app/deploy.go:275 +#: cli/app/deploy.go:276 #, c-format msgid "secret not generated: %s" msgstr "" -#: cli/app/remove.go:117 +#: cli/app/remove.go:118 #, c-format msgid "secret: %s removed" msgstr "" -#: cli/app/backup.go:276 cli/app/new.go:358 +#: cli/app/backup.go:281 cli/app/new.go:359 msgid "secrets" msgstr "" -#: cli/app/new.go:198 +#: cli/app/new.go:199 #, c-format msgid "secrets are %s shown again, please save them %s" msgstr "" -#: cli/app/list.go:320 cli/app/list.go:327 cli/app/new.go:327 -#: cli/app/new.go:334 cli/run.go:34 +#: cli/app/list.go:321 cli/app/list.go:328 cli/app/new.go:328 +#: cli/app/new.go:335 cli/run.go:35 msgid "server" msgstr "" @@ -4324,7 +4382,7 @@ msgstr "" msgid "server [cmd] [args] [flags]" msgstr "servidor [cmd] [args] [flags]" -#: cli/server/add.go:185 +#: cli/server/add.go:186 #, c-format msgid "server dir for %s already created" msgstr "" @@ -4333,39 +4391,39 @@ msgstr "" msgid "server doesn't exist?" msgstr "" -#: cli/server/add.go:142 +#: cli/server/add.go:143 #, c-format msgid "serverAdd: cleanUp: %s is not empty, aborting cleanup" msgstr "" -#: cli/server/add.go:129 +#: cli/server/add.go:130 #, c-format msgid "serverAdd: cleanUp: cleaning up context for %s" msgstr "" -#: cli/server/add.go:147 +#: cli/server/add.go:148 #, c-format msgid "serverAdd: cleanUp: failed to remove %s: %s" msgstr "" -#: cli/server/add.go:138 +#: cli/server/add.go:139 #, c-format msgid "serverAdd: cleanUp: unable to list files in %s: %s" msgstr "" -#: cli/recipe/upgrade.go:223 +#: cli/recipe/upgrade.go:224 #, c-format msgid "" "service %s is at version %s, but pinned to %s, please correct your " "compose.yml file manually!" msgstr "" -#: cli/recipe/upgrade.go:219 +#: cli/recipe/upgrade.go:220 #, c-format msgid "service %s, image %s pinned to %s, no compatible upgrade found" msgstr "" -#: cli/app/restore.go:108 +#: cli/app/restore.go:109 msgid "services" msgstr "" @@ -4408,48 +4466,48 @@ msgstr "" msgid "set reference: %s" msgstr "" -#: cli/recipe/lint.go:35 +#: cli/recipe/lint.go:36 msgid "severity" msgstr "" -#: cli/app/backup.go:247 +#: cli/app/backup.go:252 msgid "show all paths" msgstr "" -#: cli/app/list.go:292 +#: cli/app/list.go:293 msgid "show app deployment status" msgstr "" -#: cli/app/list.go:300 +#: cli/app/list.go:301 msgid "show apps of a specific recipe" msgstr "" -#: cli/app/list.go:323 +#: cli/app/list.go:324 msgid "show apps of a specific server" msgstr "" -#: cli/run.go:119 cli/updater/updater.go:496 +#: cli/run.go:121 cli/updater/updater.go:499 msgid "show debug messages" msgstr "" -#: cli/app/logs.go:102 +#: cli/app/logs.go:103 msgid "since" msgstr "" -#: cli/app/new.go:296 +#: cli/app/new.go:297 #, c-format msgid "single server detected, choosing %s automatically" msgstr "" -#: cli/catalogue/catalogue.go:300 +#: cli/catalogue/catalogue.go:303 msgid "skip updating recipe repositories" msgstr "" -#: cli/catalogue/catalogue.go:297 +#: cli/catalogue/catalogue.go:300 msgid "skip-updates" msgstr "" -#: cli/recipe/lint.go:37 +#: cli/recipe/lint.go:38 msgid "skipped" msgstr "" @@ -4458,7 +4516,7 @@ msgstr "" msgid "skipping %s based on skip condition" msgstr "" -#: cli/recipe/lint.go:54 +#: cli/recipe/lint.go:55 #, c-format msgid "skipping %s, does not have level \"error\"" msgstr "" @@ -4471,11 +4529,11 @@ msgstr "" msgid "skipping converge logic checks" msgstr "" -#: cli/app/deploy.go:181 +#: cli/app/deploy.go:182 msgid "skipping domain checks" msgstr "" -#: cli/app/deploy.go:178 +#: cli/app/deploy.go:179 msgid "skipping domain checks, no DOMAIN=... configured" msgstr "" @@ -4494,24 +4552,24 @@ msgstr "" msgid "skipping writing version %s because dry run" msgstr "" -#: cli/app/backup.go:236 cli/app/backup.go:260 +#: cli/app/backup.go:241 cli/app/backup.go:265 msgid "snapshot" msgstr "" #. translators: `app backup snapshots` command -#: cli/app/backup.go:182 +#: cli/app/backup.go:185 msgid "snapshots [flags]" msgstr "capturas [flags]" -#: cli/app/secret.go:293 +#: cli/app/secret.go:295 msgid "specify secret file" msgstr "" -#: cli/app/secret.go:289 +#: cli/app/secret.go:291 msgid "specify secret value" msgstr "" -#: cli/app/new.go:330 +#: cli/app/new.go:331 msgid "specify server for new app" msgstr "" @@ -4519,11 +4577,11 @@ msgstr "" msgid "sr" msgstr "" -#: cli/recipe/fetch.go:123 +#: cli/recipe/fetch.go:124 msgid "ssh" msgstr "" -#: cli/server/add.go:108 +#: cli/server/add.go:109 #, c-format msgid "ssh %s error: %s" msgstr "" @@ -4542,17 +4600,17 @@ msgstr "" msgid "ssh url: %s, " msgstr "" -#: cli/recipe/release.go:446 +#: cli/recipe/release.go:447 msgid "ssh-agent not found. see \"abra recipe release --help\" and try again" msgstr "" -#: cli/catalogue/catalogue.go:87 +#: cli/catalogue/catalogue.go:89 msgid "" "ssh: SSH_AUTH_SOCK missing, --publish/-p will fail. see \"abra catalogue " "generate --help\"" msgstr "" -#: cli/app/list.go:289 cli/recipe/list.go:40 +#: cli/app/list.go:290 cli/recipe/list.go:41 msgid "status" msgstr "" @@ -4561,15 +4619,15 @@ msgstr "" msgid "status: %s}" msgstr "" -#: cli/app/logs.go:94 +#: cli/app/logs.go:95 msgid "stderr" msgstr "" -#: cli/app/secret.go:542 cli/app/secret.go:566 +#: cli/app/secret.go:547 cli/app/secret.go:571 msgid "store generated secrets in a local pass store" msgstr "" -#: cli/app/new.go:353 +#: cli/app/new.go:354 msgid "store secrets in a local pass store" msgstr "" @@ -4621,8 +4679,8 @@ msgstr "sincronizar [flags]" msgid "synced label %s to service %s" msgstr "" -#: cli/app/backup.go:253 cli/app/restore.go:101 cli/app/run.go:104 -#: cli/app/secret.go:580 +#: cli/app/backup.go:258 cli/app/restore.go:102 cli/app/run.go:105 +#: cli/app/secret.go:585 msgid "t" msgstr "" @@ -4630,12 +4688,12 @@ msgstr "" msgid "tag all images with stable tags" msgstr "" -#: cli/recipe/sync.go:170 +#: cli/recipe/sync.go:171 #, c-format msgid "tag at commit %s is unannotated or otherwise broken" msgstr "" -#: cli/recipe/upgrade.go:297 +#: cli/recipe/upgrade.go:298 #, c-format msgid "tag upgraded from %s to %s for %s" msgstr "" @@ -4644,7 +4702,7 @@ msgstr "" msgid "tags use semver-like format" msgstr "" -#: cli/app/logs.go:105 +#: cli/app/logs.go:106 msgid "tail logs since YYYY-MM-DDTHH:MM:SSZ" msgstr "" @@ -4653,11 +4711,11 @@ msgstr "" msgid "tailLogs: unable to copy buffer: %s" msgstr "" -#: cli/app/restore.go:100 +#: cli/app/restore.go:101 msgid "target" msgstr "" -#: cli/app/restore.go:103 +#: cli/app/restore.go:104 msgid "target path" msgstr "" @@ -4665,7 +4723,7 @@ msgstr "" msgid "test and disable can't be set at the same time" msgstr "" -#: cli/recipe/list.go:44 +#: cli/recipe/list.go:45 msgid "tests" msgstr "" @@ -4689,7 +4747,7 @@ msgstr "" msgid "timeout: waiting on undeploy tasks (timeout=%v secs)" msgstr "" -#: cli/app/backup.go:252 +#: cli/app/backup.go:257 msgid "timestamps" msgstr "" @@ -4705,7 +4763,7 @@ msgstr "" msgid "tmpfs options are incompatible with type volume" msgstr "" -#: cli/run.go:127 cli/updater/updater.go:504 +#: cli/run.go:129 cli/updater/updater.go:507 msgid "toggle non-interactive mode" msgstr "" @@ -4713,29 +4771,29 @@ msgstr "" msgid "traefik routing enabled" msgstr "" -#: cli/app/secret.go:574 +#: cli/app/secret.go:579 msgid "treat input as a file" msgstr "" -#: cli/app/secret.go:579 +#: cli/app/secret.go:584 msgid "trim" msgstr "" -#: cli/app/secret.go:582 +#: cli/app/secret.go:587 msgid "trim input" msgstr "" -#: cli/app/new.go:223 pkg/app/app.go:141 +#: cli/app/new.go:224 pkg/app/app.go:141 #, c-format msgid "trimming %s to %s to avoid runtime limits" msgstr "" -#: cli/app/cmd.go:266 +#: cli/app/cmd.go:268 msgid "tty" msgstr "" -#: cli/app/cmd.go:259 cli/app/run.go:112 cli/recipe/upgrade.go:43 -#: cli/updater/updater.go:77 +#: cli/app/cmd.go:261 cli/app/run.go:113 cli/recipe/upgrade.go:43 +#: cli/updater/updater.go:78 msgid "u" msgstr "" @@ -4758,7 +4816,7 @@ msgstr "" msgid "unable to clean up git clone of %s: %s" msgstr "" -#: cli/app/list.go:149 +#: cli/app/list.go:150 #, c-format msgid "unable to clone %s: %s" msgstr "" @@ -4768,7 +4826,7 @@ msgstr "" msgid "unable to connect to %s, please check your SSH config" msgstr "" -#: cli/recipe/sync.go:77 +#: cli/recipe/sync.go:78 msgid "unable to continue, input required for initial version" msgstr "" @@ -4777,27 +4835,27 @@ msgstr "" msgid "unable to convert timeout label %s to int: %s" msgstr "" -#: cli/app/ps.go:166 +#: cli/app/ps.go:167 #, c-format msgid "unable to convert to JSON: %s" msgstr "" -#: cli/run.go:50 +#: cli/run.go:51 #, c-format msgid "unable to create %s: %s" msgstr "" -#: cli/server/add.go:101 +#: cli/server/add.go:102 #, c-format msgid "unable to create local context: %s" msgstr "" -#: cli/recipe/release.go:591 +#: cli/recipe/release.go:592 #, c-format msgid "unable to delete tag %s: %s" msgstr "" -#: cli/recipe/upgrade.go:248 +#: cli/recipe/upgrade.go:249 #, c-format msgid "unable to determine versioning semantics of %s, listing all tags" msgstr "" @@ -4807,7 +4865,7 @@ msgstr "" msgid "unable to discover .env.sample for %s" msgstr "" -#: cli/recipe/fetch.go:65 +#: cli/recipe/fetch.go:66 #, c-format msgid "unable to discover SSH remote for %s" msgstr "" @@ -4831,7 +4889,7 @@ msgstr "" msgid "unable to locate git command, cannot output diff" msgstr "" -#: cli/recipe/fetch.go:71 pkg/git/read.go:26 pkg/lint/recipe.go:491 +#: cli/recipe/fetch.go:72 pkg/git/read.go:26 pkg/lint/recipe.go:491 #: pkg/recipe/git.go:236 #, c-format msgid "unable to open %s: %s" @@ -4842,12 +4900,12 @@ msgstr "" msgid "unable to open git work tree in %s: %s" msgstr "" -#: cli/recipe/release.go:564 cli/recipe/release.go:586 +#: cli/recipe/release.go:565 cli/recipe/release.go:587 #, c-format msgid "unable to open repo in %s: %s" msgstr "" -#: cli/recipe/release.go:569 +#: cli/recipe/release.go:570 #, c-format msgid "unable to open work tree in %s: %s" msgstr "" @@ -4857,7 +4915,7 @@ msgstr "" msgid "unable to open worktree of %s: %s" msgstr "" -#: cli/recipe/upgrade.go:155 +#: cli/recipe/upgrade.go:156 #, c-format msgid "unable to parse %s, error was: %s, skipping upgrade for %s" msgstr "" @@ -4872,7 +4930,7 @@ msgstr "" msgid "unable to parse '%s' value as bool: %s" msgstr "" -#: cli/run.go:102 +#: cli/run.go:104 #, c-format msgid "unable to proceed, %s does not exist?" msgstr "" @@ -4887,30 +4945,30 @@ msgstr "" msgid "unable to read remotes in %s: %s" msgstr "" -#: cli/recipe/upgrade.go:149 +#: cli/recipe/upgrade.go:150 #, c-format msgid "unable to read tag for image %s, is it missing? skipping upgrade for %s" msgstr "" -#: cli/recipe/release.go:607 +#: cli/recipe/release.go:608 #, c-format msgid "" "unable to read version for %s from synced label. Did you try running \"abra " "recipe sync %s\" already?" msgstr "" -#: cli/recipe/fetch.go:75 +#: cli/recipe/fetch.go:76 #, c-format msgid "unable to remove default remote in %s: %s" msgstr "" -#: cli/app/volume.go:147 +#: cli/app/volume.go:149 #, c-format msgid "unable to remove volume: no volume with name '%s'?" msgstr "" -#: cli/app/secret.go:130 cli/app/secret.go:495 cli/recipe/list.go:78 -#: cli/recipe/version.go:107 cli/server/list.go:83 +#: cli/app/secret.go:131 cli/app/secret.go:499 cli/recipe/list.go:79 +#: cli/recipe/version.go:108 cli/server/list.go:84 #, c-format msgid "unable to render to JSON: %s" msgstr "" @@ -4920,12 +4978,12 @@ msgstr "" msgid "unable to resolve '%s': %s" msgstr "" -#: cli/server/add.go:115 +#: cli/server/add.go:116 #, c-format msgid "unable to resolve IPv4 for %s" msgstr "" -#: cli/app/list.go:154 +#: cli/app/list.go:155 #, c-format msgid "unable to retrieve tags for %s: %s" msgstr "" @@ -4935,7 +4993,7 @@ msgstr "" msgid "unable to set IO streams as raw terminal: %s" msgstr "" -#: cli/recipe/fetch.go:82 +#: cli/recipe/fetch.go:83 #, c-format msgid "unable to set SSH remote in %s: %s" msgstr "" @@ -4945,7 +5003,7 @@ msgstr "" msgid "unable to setup input stream: %s" msgstr "" -#: cli/recipe/release.go:574 +#: cli/recipe/release.go:575 #, c-format msgid "unable to soft reset %s: %s" msgstr "" @@ -4980,7 +5038,7 @@ msgstr "" msgid "undeploy [flags]" msgstr "desarmar [flags]" -#: cli/app/undeploy.go:103 +#: cli/app/undeploy.go:104 msgid "undeploy succeeded 🟢" msgstr "" @@ -5004,19 +5062,19 @@ msgstr "" msgid "unimplemented call: SetWriteDeadline(%v)" msgstr "" -#: cli/app/labels.go:72 cli/app/list.go:112 cli/app/list.go:113 -#: cli/app/list.go:114 cli/app/list.go:115 cli/app/list.go:116 -#: cli/app/list.go:176 cli/app/ps.go:120 cli/app/ps.go:121 cli/app/ps.go:122 -#: cli/app/ps.go:123 cli/app/ps.go:124 cli/server/list.go:60 -#: cli/server/list.go:72 +#: cli/app/labels.go:73 cli/app/list.go:113 cli/app/list.go:114 +#: cli/app/list.go:115 cli/app/list.go:116 cli/app/list.go:117 +#: cli/app/list.go:177 cli/app/ps.go:121 cli/app/ps.go:122 cli/app/ps.go:123 +#: cli/app/ps.go:124 cli/app/ps.go:125 cli/server/list.go:61 +#: cli/server/list.go:73 msgid "unknown" msgstr "" -#: cli/app/rollback.go:143 +#: cli/app/rollback.go:144 msgid "unknown deployed version, unable to downgrade" msgstr "" -#: cli/app/upgrade.go:150 +#: cli/app/upgrade.go:151 msgid "unknown deployed version, unable to upgrade" msgstr "" @@ -5035,7 +5093,7 @@ msgstr "" msgid "unknown server, run \"abra server add %s\"?" msgstr "" -#: cli/app/cp.go:254 +#: cli/app/cp.go:255 #, c-format msgid "untar: %s" msgstr "" @@ -5044,7 +5102,7 @@ msgstr "" msgid "up" msgstr "" -#: cli/updater/updater.go:559 +#: cli/updater/updater.go:562 msgid "update all deployed apps" msgstr "" @@ -5058,11 +5116,11 @@ msgstr "" msgid "updating %s to %s in %s" msgstr "" -#: cli/run.go:35 +#: cli/run.go:36 msgid "upgrade" msgstr "" -#: cli/updater/updater.go:446 +#: cli/updater/updater.go:448 #, c-format msgid "upgrade %s (%s) to version %s" msgstr "" @@ -5078,7 +5136,7 @@ msgid "upgrade [flags]" msgstr "actualizar [flags]" #. translators: `app upgrade` command -#: cli/updater/updater.go:76 +#: cli/updater/updater.go:77 msgid "upgrade [[stack] [recipe] | --all] [flags]" msgstr "actualizar [[stack] [recipe] | --all] [flags]" @@ -5087,17 +5145,17 @@ msgstr "actualizar [[stack] [recipe] | --all] [flags]" msgid "upgrade [flags]" msgstr "actualizar [flags]" -#: cli/recipe/upgrade.go:244 +#: cli/recipe/upgrade.go:245 #, c-format msgid "upgrade to which tag? (service: %s, image: %s, tag: %s)" msgstr "" -#: cli/recipe/upgrade.go:250 +#: cli/recipe/upgrade.go:251 #, c-format msgid "upgrade to which tag? (service: %s, tag: %s)" msgstr "" -#: cli/recipe/upgrade.go:217 +#: cli/recipe/upgrade.go:218 #, c-format msgid "upgrading service %s from %s to %s (pinned tag: %s)" msgstr "" @@ -5106,7 +5164,7 @@ msgstr "" msgid "upload your recipe to git.coopcloud.tech/coop-cloud/..." msgstr "" -#: cli/recipe/release.go:614 +#: cli/recipe/release.go:615 #, c-format msgid "use %s as the new version?" msgstr "" @@ -5115,7 +5173,7 @@ msgstr "" msgid "use a tag for all images" msgstr "" -#: cli/server/add.go:203 +#: cli/server/add.go:204 msgid "use local server" msgstr "" @@ -5123,7 +5181,7 @@ msgstr "" msgid "use semver-like tags" msgstr "" -#: cli/app/cmd.go:258 cli/app/run.go:111 +#: cli/app/cmd.go:260 cli/app/run.go:112 msgid "user" msgstr "" @@ -5131,8 +5189,8 @@ msgstr "" msgid "using default abra dir" msgstr "" -#: cli/app/backup.go:285 cli/app/restore.go:117 cli/recipe/version.go:19 -#: cli/server/prune.go:100 +#: cli/app/backup.go:290 cli/app/restore.go:118 cli/recipe/version.go:19 +#: cli/server/prune.go:101 msgid "v" msgstr "" @@ -5180,32 +5238,32 @@ msgstr "" msgid "version wiped from %s.env" msgstr "" -#: cli/app/deploy.go:302 +#: cli/app/deploy.go:303 #, c-format msgid "version: can not redeploy chaos version %s" msgstr "" -#: cli/app/deploy.go:289 +#: cli/app/deploy.go:290 #, c-format msgid "version: taking chaos version: %s" msgstr "" -#: cli/app/deploy.go:310 +#: cli/app/deploy.go:311 #, c-format msgid "version: taking deployed version: %s" msgstr "" -#: cli/app/deploy.go:315 +#: cli/app/deploy.go:316 #, c-format msgid "version: taking new recipe version: %s" msgstr "" -#: cli/app/deploy.go:304 +#: cli/app/deploy.go:305 #, c-format msgid "version: taking version from .env file: %s" msgstr "" -#: cli/app/deploy.go:295 +#: cli/app/deploy.go:296 #, c-format msgid "version: taking version from cli arg: %s" msgstr "" @@ -5215,11 +5273,11 @@ msgstr "" msgid "versions [flags]" msgstr "versiones [flags]" -#: cli/app/volume.go:194 +#: cli/app/volume.go:196 msgid "vl" msgstr "" -#: cli/app/volume.go:155 +#: cli/app/volume.go:157 #, c-format msgid "volume %s removed successfully" msgstr "" @@ -5230,7 +5288,7 @@ msgid "volume %s: %s" msgstr "" #. translators: `app volume` command group -#: cli/app/volume.go:193 +#: cli/app/volume.go:195 msgid "volume [cmd] [args] [flags]" msgstr "volumen [cmd] [args] [flags]" @@ -5250,15 +5308,15 @@ msgstr "" msgid "volume type must be volume, bind, tmpfs or npipe" msgstr "" -#: cli/app/backup.go:284 cli/app/restore.go:116 cli/server/prune.go:99 +#: cli/app/backup.go:289 cli/app/restore.go:117 cli/server/prune.go:100 msgid "volumes" msgstr "" -#: cli/app/backup.go:271 +#: cli/app/backup.go:276 msgid "volumes path" msgstr "" -#: cli/server/prune.go:76 +#: cli/server/prune.go:77 #, c-format msgid "volumes pruned: %d; space reclaimed: %s" msgstr "" @@ -5304,7 +5362,7 @@ msgstr "" msgid "which container are you looking for?" msgstr "" -#: cli/app/config.go:43 +#: cli/app/config.go:44 msgid "which editor do you wish to use?" msgstr "" @@ -5312,11 +5370,11 @@ msgstr "" msgid "which service are you looking for?" msgstr "" -#: cli/recipe/sync.go:99 +#: cli/recipe/sync.go:100 msgid "which version do you want to begin with?" msgstr "" -#: cli/app/volume.go:163 +#: cli/app/volume.go:165 msgid "which volumes do you want to remove?" msgstr "" @@ -5329,33 +5387,33 @@ msgstr "" msgid "writer: %v, " msgstr "" -#: cli/app/deploy.go:235 cli/app/new.go:211 cli/app/rollback.go:226 -#: cli/app/undeploy.go:106 cli/app/upgrade.go:273 +#: cli/app/deploy.go:236 cli/app/new.go:212 cli/app/rollback.go:227 +#: cli/app/undeploy.go:107 cli/app/upgrade.go:274 #, c-format msgid "writing recipe version failed: %s" msgstr "" -#: cli/recipe/release.go:643 cli/recipe/sync.go:272 cli/recipe/upgrade.go:347 +#: cli/recipe/release.go:644 cli/recipe/sync.go:273 cli/recipe/upgrade.go:348 msgid "x" msgstr "" -#: cli/recipe/release.go:651 cli/recipe/sync.go:280 cli/recipe/upgrade.go:355 +#: cli/recipe/release.go:652 cli/recipe/sync.go:281 cli/recipe/upgrade.go:356 msgid "y" msgstr "" -#: cli/recipe/release.go:471 +#: cli/recipe/release.go:472 msgid "you can only use one of: --major, --minor, --patch" msgstr "" -#: cli/recipe/upgrade.go:76 +#: cli/recipe/upgrade.go:77 msgid "you can only use one of: --major, --minor, --patch." msgstr "" -#: cli/recipe/sync.go:195 +#: cli/recipe/sync.go:196 msgid "you can only use one version flag: --major, --minor or --patch" msgstr "" -#: cli/recipe/release.go:659 cli/recipe/sync.go:288 cli/recipe/upgrade.go:363 +#: cli/recipe/release.go:660 cli/recipe/sync.go:289 cli/recipe/upgrade.go:364 msgid "z" msgstr ""