forked from toolshed/abra
		
	refactor!: remove autoupdate (kadabra)
This commit is contained in:
		
							
								
								
									
										3
									
								
								Makefile
									
									
									
									
									
								
							
							
						
						
									
										3
									
								
								Makefile
									
									
									
									
									
								
							@ -12,8 +12,7 @@ LINGUAS      := $(basename $(POFILES))
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
export GOPRIVATE=coopcloud.tech
 | 
					export GOPRIVATE=coopcloud.tech
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# NOTE(d1): default `make` optimised for Abra hacking
 | 
					all: format check build
 | 
				
			||||||
all: format check build-abra test
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
run:
 | 
					run:
 | 
				
			||||||
	@go run -gcflags=$(GCFLAGS) -ldflags=$(LDFLAGS) $(ABRA)
 | 
						@go run -gcflags=$(GCFLAGS) -ldflags=$(LDFLAGS) $(ABRA)
 | 
				
			||||||
 | 
				
			|||||||
@ -158,7 +158,6 @@ checkout as-is. Recipe commit hashes are also supported as values for
 | 
				
			|||||||
		if internal.Chaos {
 | 
							if internal.Chaos {
 | 
				
			||||||
			appPkg.SetChaosVersionLabel(compose, stackName, toDeployVersion)
 | 
								appPkg.SetChaosVersionLabel(compose, stackName, toDeployVersion)
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
		appPkg.SetUpdateLabel(compose, stackName, app.Env)
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
		versionLabel := toDeployVersion
 | 
							versionLabel := toDeployVersion
 | 
				
			||||||
		if internal.Chaos {
 | 
							if internal.Chaos {
 | 
				
			||||||
 | 
				
			|||||||
@ -25,7 +25,6 @@ type appStatus struct {
 | 
				
			|||||||
	Status       string `json:"status"`
 | 
						Status       string `json:"status"`
 | 
				
			||||||
	Chaos        string `json:"chaos"`
 | 
						Chaos        string `json:"chaos"`
 | 
				
			||||||
	ChaosVersion string `json:"chaosVersion"`
 | 
						ChaosVersion string `json:"chaosVersion"`
 | 
				
			||||||
	AutoUpdate   string `json:"autoUpdate"`
 | 
					 | 
				
			||||||
	Version      string `json:"version"`
 | 
						Version      string `json:"version"`
 | 
				
			||||||
	Upgrade      string `json:"upgrade"`
 | 
						Upgrade      string `json:"upgrade"`
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
@ -118,7 +117,6 @@ Use "--status/-S" flag to query all servers for the live deployment status.`),
 | 
				
			|||||||
					version := i18n.G("unknown")
 | 
										version := i18n.G("unknown")
 | 
				
			||||||
					chaos := i18n.G("unknown")
 | 
										chaos := i18n.G("unknown")
 | 
				
			||||||
					chaosVersion := i18n.G("unknown")
 | 
										chaosVersion := i18n.G("unknown")
 | 
				
			||||||
					autoUpdate := i18n.G("unknown")
 | 
					 | 
				
			||||||
					if statusMeta, ok := statuses[app.StackName()]; ok {
 | 
										if statusMeta, ok := statuses[app.StackName()]; ok {
 | 
				
			||||||
						if currentVersion, exists := statusMeta["version"]; exists {
 | 
											if currentVersion, exists := statusMeta["version"]; exists {
 | 
				
			||||||
							if currentVersion != "" {
 | 
												if currentVersion != "" {
 | 
				
			||||||
@ -131,9 +129,6 @@ Use "--status/-S" flag to query all servers for the live deployment status.`),
 | 
				
			|||||||
						if chaosDeployVersion, exists := statusMeta["chaosVersion"]; exists {
 | 
											if chaosDeployVersion, exists := statusMeta["chaosVersion"]; exists {
 | 
				
			||||||
							chaosVersion = chaosDeployVersion
 | 
												chaosVersion = chaosDeployVersion
 | 
				
			||||||
						}
 | 
											}
 | 
				
			||||||
						if autoUpdateState, exists := statusMeta["autoUpdate"]; exists {
 | 
					 | 
				
			||||||
							autoUpdate = autoUpdateState
 | 
					 | 
				
			||||||
						}
 | 
					 | 
				
			||||||
						if statusMeta["status"] != "" {
 | 
											if statusMeta["status"] != "" {
 | 
				
			||||||
							status = statusMeta["status"]
 | 
												status = statusMeta["status"]
 | 
				
			||||||
						}
 | 
											}
 | 
				
			||||||
@ -146,7 +141,6 @@ Use "--status/-S" flag to query all servers for the live deployment status.`),
 | 
				
			|||||||
					appStats.Chaos = chaos
 | 
										appStats.Chaos = chaos
 | 
				
			||||||
					appStats.ChaosVersion = chaosVersion
 | 
										appStats.ChaosVersion = chaosVersion
 | 
				
			||||||
					appStats.Version = version
 | 
										appStats.Version = version
 | 
				
			||||||
					appStats.AutoUpdate = autoUpdate
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
					var newUpdates []string
 | 
										var newUpdates []string
 | 
				
			||||||
					if version != "unknown" && chaos == "false" {
 | 
										if version != "unknown" && chaos == "false" {
 | 
				
			||||||
@ -231,7 +225,6 @@ Use "--status/-S" flag to query all servers for the live deployment status.`),
 | 
				
			|||||||
					i18n.G("CHAOS"),
 | 
										i18n.G("CHAOS"),
 | 
				
			||||||
					i18n.G("VERSION"),
 | 
										i18n.G("VERSION"),
 | 
				
			||||||
					i18n.G("UPGRADE"),
 | 
										i18n.G("UPGRADE"),
 | 
				
			||||||
					i18n.G("AUTOUPDATE"),
 | 
					 | 
				
			||||||
				}...,
 | 
									}...,
 | 
				
			||||||
				)
 | 
									)
 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
@ -262,8 +255,7 @@ Use "--status/-S" flag to query all servers for the live deployment status.`),
 | 
				
			|||||||
						appStat.Status,
 | 
											appStat.Status,
 | 
				
			||||||
						chaosStatus,
 | 
											chaosStatus,
 | 
				
			||||||
						appStat.Version,
 | 
											appStat.Version,
 | 
				
			||||||
						appStat.Upgrade,
 | 
											appStat.Upgrade}...,
 | 
				
			||||||
						appStat.AutoUpdate}...,
 | 
					 | 
				
			||||||
					)
 | 
										)
 | 
				
			||||||
				}
 | 
									}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
@ -183,7 +183,6 @@ beforehand. See "abra app backup" for more.`),
 | 
				
			|||||||
		if internal.Chaos {
 | 
							if internal.Chaos {
 | 
				
			||||||
			appPkg.SetChaosVersionLabel(compose, stackName, chosenDowngrade)
 | 
								appPkg.SetChaosVersionLabel(compose, stackName, chosenDowngrade)
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
		appPkg.SetUpdateLabel(compose, stackName, app.Env)
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
		// Gather secrets
 | 
							// Gather secrets
 | 
				
			||||||
		secretInfo, err := deploy.GatherSecretsForDeploy(cl, app, internal.ShowUnchanged)
 | 
							secretInfo, err := deploy.GatherSecretsForDeploy(cl, app, internal.ShowUnchanged)
 | 
				
			||||||
 | 
				
			|||||||
@ -196,7 +196,6 @@ beforehand. See "abra app backup" for more.`),
 | 
				
			|||||||
		if internal.Chaos {
 | 
							if internal.Chaos {
 | 
				
			||||||
			appPkg.SetChaosVersionLabel(compose, stackName, chosenUpgrade)
 | 
								appPkg.SetChaosVersionLabel(compose, stackName, chosenUpgrade)
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
		appPkg.SetUpdateLabel(compose, stackName, app.Env)
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
		envVars, err := appPkg.CheckEnv(app)
 | 
							envVars, err := appPkg.CheckEnv(app)
 | 
				
			||||||
		if err != nil {
 | 
							if err != nil {
 | 
				
			||||||
 | 
				
			|||||||
@ -471,13 +471,6 @@ func GetAppStatuses(apps []App, MachineReadable bool) (map[string]map[string]str
 | 
				
			|||||||
				result["chaosVersion"] = chaosVersion
 | 
									result["chaosVersion"] = chaosVersion
 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
			labelKey = fmt.Sprintf("coop-cloud.%s.autoupdate", name)
 | 
					 | 
				
			||||||
			if autoUpdate, ok := service.Spec.Labels[labelKey]; ok {
 | 
					 | 
				
			||||||
				result["autoUpdate"] = autoUpdate
 | 
					 | 
				
			||||||
			} else {
 | 
					 | 
				
			||||||
				result["autoUpdate"] = "false"
 | 
					 | 
				
			||||||
			}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			labelKey = fmt.Sprintf("coop-cloud.%s.version", name)
 | 
								labelKey = fmt.Sprintf("coop-cloud.%s.version", name)
 | 
				
			||||||
			if version, ok := service.Spec.Labels[labelKey]; ok {
 | 
								if version, ok := service.Spec.Labels[labelKey]; ok {
 | 
				
			||||||
				result["version"] = version
 | 
									result["version"] = version
 | 
				
			||||||
 | 
				
			|||||||
@ -5,7 +5,6 @@ import (
 | 
				
			|||||||
	"fmt"
 | 
						"fmt"
 | 
				
			||||||
	"strconv"
 | 
						"strconv"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	"coopcloud.tech/abra/pkg/envfile"
 | 
					 | 
				
			||||||
	"coopcloud.tech/abra/pkg/i18n"
 | 
						"coopcloud.tech/abra/pkg/i18n"
 | 
				
			||||||
	"coopcloud.tech/abra/pkg/log"
 | 
						"coopcloud.tech/abra/pkg/log"
 | 
				
			||||||
	composetypes "github.com/docker/cli/cli/compose/types"
 | 
						composetypes "github.com/docker/cli/cli/compose/types"
 | 
				
			||||||
@ -56,23 +55,6 @@ func SetVersionLabel(compose *composetypes.Config, stackName string, version str
 | 
				
			|||||||
	}
 | 
						}
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// SetUpdateLabel adds env ENABLE_AUTO_UPDATE as label to enable/disable the
 | 
					 | 
				
			||||||
// auto update process for this app. The default if this variable is not set is to disable
 | 
					 | 
				
			||||||
// the auto update process.
 | 
					 | 
				
			||||||
func SetUpdateLabel(compose *composetypes.Config, stackName string, appEnv envfile.AppEnv) {
 | 
					 | 
				
			||||||
	for _, service := range compose.Services {
 | 
					 | 
				
			||||||
		if service.Name == "app" {
 | 
					 | 
				
			||||||
			enable_auto_update, exists := appEnv["ENABLE_AUTO_UPDATE"]
 | 
					 | 
				
			||||||
			if !exists {
 | 
					 | 
				
			||||||
				enable_auto_update = "false"
 | 
					 | 
				
			||||||
			}
 | 
					 | 
				
			||||||
			log.Debug(i18n.G("set label 'coop-cloud.%s.autoupdate' to %s for %s", stackName, enable_auto_update, stackName))
 | 
					 | 
				
			||||||
			labelKey := fmt.Sprintf("coop-cloud.%s.autoupdate", stackName)
 | 
					 | 
				
			||||||
			service.Deploy.Labels[labelKey] = enable_auto_update
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
// GetLabel reads docker labels in the format of "coop-cloud.${STACK_NAME}.${LABEL}" from the local compose files
 | 
					// GetLabel reads docker labels in the format of "coop-cloud.${STACK_NAME}.${LABEL}" from the local compose files
 | 
				
			||||||
func GetLabel(compose *composetypes.Config, stackName string, label string) string {
 | 
					func GetLabel(compose *composetypes.Config, stackName string, label string) string {
 | 
				
			||||||
	for _, service := range compose.Services {
 | 
						for _, service := range compose.Services {
 | 
				
			||||||
 | 
				
			|||||||
@ -7,7 +7,7 @@
 | 
				
			|||||||
msgid   ""
 | 
					msgid   ""
 | 
				
			||||||
msgstr  "Project-Id-Version: \n"
 | 
					msgstr  "Project-Id-Version: \n"
 | 
				
			||||||
        "Report-Msgid-Bugs-To: EMAIL\n"
 | 
					        "Report-Msgid-Bugs-To: EMAIL\n"
 | 
				
			||||||
        "POT-Creation-Date: 2025-10-19 15:32+0200\n"
 | 
					        "POT-Creation-Date: 2025-10-19 15:46+0200\n"
 | 
				
			||||||
        "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 | 
					        "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 | 
				
			||||||
        "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 | 
					        "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 | 
				
			||||||
        "Language-Team: LANGUAGE <LL@li.org>\n"
 | 
					        "Language-Team: LANGUAGE <LL@li.org>\n"
 | 
				
			||||||
@ -65,7 +65,7 @@ msgid   "  # insert regular secret\n"
 | 
				
			|||||||
        "  echo \"mmySuperSecret\" | abra app secret insert 1312.net my_secret v1"
 | 
					        "  echo \"mmySuperSecret\" | abra app secret insert 1312.net my_secret v1"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/list.go:55
 | 
					#: ./cli/app/list.go:54
 | 
				
			||||||
msgid   "  # list apps of all servers without live status\n"
 | 
					msgid   "  # list apps of all servers without live status\n"
 | 
				
			||||||
        "  abra app ls\n"
 | 
					        "  abra app ls\n"
 | 
				
			||||||
        "\n"
 | 
					        "\n"
 | 
				
			||||||
@ -331,17 +331,17 @@ msgstr  ""
 | 
				
			|||||||
msgid   "%s is missing the TYPE env var?"
 | 
					msgid   "%s is missing the TYPE env var?"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/rollback.go:306 ./cli/app/rollback.go:310
 | 
					#: ./cli/app/rollback.go:305 ./cli/app/rollback.go:309
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid   "%s is not a downgrade for %s?"
 | 
					msgid   "%s is not a downgrade for %s?"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/upgrade.go:427 ./cli/app/upgrade.go:431
 | 
					#: ./cli/app/upgrade.go:426 ./cli/app/upgrade.go:430
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid   "%s is not an upgrade for %s?"
 | 
					msgid   "%s is not an upgrade for %s?"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/logs.go:65 ./cli/app/ps.go:62 ./cli/app/restart.go:100 ./cli/app/services.go:55 ./cli/app/undeploy.go:65 ./cli/app/upgrade.go:448
 | 
					#: ./cli/app/logs.go:65 ./cli/app/ps.go:62 ./cli/app/restart.go:100 ./cli/app/services.go:55 ./cli/app/undeploy.go:65 ./cli/app/upgrade.go:447
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid   "%s is not deployed?"
 | 
					msgid   "%s is not deployed?"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
@ -356,7 +356,7 @@ msgstr  ""
 | 
				
			|||||||
msgid   "%s is still deployed. Run \"abra app undeploy %s\""
 | 
					msgid   "%s is still deployed. Run \"abra app undeploy %s\""
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/deploy.go:183 ./cli/app/upgrade.go:209
 | 
					#: ./cli/app/deploy.go:182 ./cli/app/upgrade.go:208
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid   "%s missing from %s.env"
 | 
					msgid   "%s missing from %s.env"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
@ -466,7 +466,7 @@ msgstr  ""
 | 
				
			|||||||
msgid   "%s: %s → %s"
 | 
					msgid   "%s: %s → %s"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./pkg/app/app.go:521
 | 
					#: ./pkg/app/app.go:514
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid   "%s: %s: %s"
 | 
					msgid   "%s: %s: %s"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
@ -531,12 +531,12 @@ msgstr  ""
 | 
				
			|||||||
msgid   "%s: waiting %d seconds before next retry"
 | 
					msgid   "%s: waiting %d seconds before next retry"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/upgrade.go:422
 | 
					#: ./cli/app/upgrade.go:421
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid   "'%s' is not a known version"
 | 
					msgid   "'%s' is not a known version"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/rollback.go:301 ./cli/app/upgrade.go:417
 | 
					#: ./cli/app/rollback.go:300 ./cli/app/upgrade.go:416
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid   "'%s' is not a known version for %s"
 | 
					msgid   "'%s' is not a known version for %s"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
@ -575,10 +575,6 @@ msgstr  ""
 | 
				
			|||||||
msgid   "ALERTA ALERTA: deleting %s data and config (local/remote)"
 | 
					msgid   "ALERTA ALERTA: deleting %s data and config (local/remote)"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/list.go:234
 | 
					 | 
				
			||||||
msgid   "AUTOUPDATE"
 | 
					 | 
				
			||||||
msgstr  ""
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#. translators: Short description for `server add` command
 | 
					#. translators: Short description for `server add` command
 | 
				
			||||||
#: ./cli/server/add.go:30
 | 
					#: ./cli/server/add.go:30
 | 
				
			||||||
msgid   "Add a new server"
 | 
					msgid   "Add a new server"
 | 
				
			||||||
@ -607,11 +603,11 @@ msgstr  ""
 | 
				
			|||||||
msgid   "Both local recipe and live deployment labels are shown."
 | 
					msgid   "Both local recipe and live deployment labels are shown."
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/backup.go:319 ./cli/app/backup.go:335 ./cli/app/check.go:95 ./cli/app/cmd.go:285 ./cli/app/cp.go:385 ./cli/app/deploy.go:394 ./cli/app/labels.go:143 ./cli/app/new.go:397 ./cli/app/ps.go:213 ./cli/app/restart.go:162 ./cli/app/restore.go:138 ./cli/app/secret.go:569 ./cli/app/secret.go:609 ./cli/app/secret.go:633 ./cli/app/secret.go:641 ./cli/catalogue/catalogue.go:318 ./cli/recipe/lint.go:137
 | 
					#: ./cli/app/backup.go:319 ./cli/app/backup.go:335 ./cli/app/check.go:95 ./cli/app/cmd.go:285 ./cli/app/cp.go:385 ./cli/app/deploy.go:393 ./cli/app/labels.go:143 ./cli/app/new.go:397 ./cli/app/ps.go:213 ./cli/app/restart.go:162 ./cli/app/restore.go:138 ./cli/app/secret.go:569 ./cli/app/secret.go:609 ./cli/app/secret.go:633 ./cli/app/secret.go:641 ./cli/catalogue/catalogue.go:318 ./cli/recipe/lint.go:137
 | 
				
			||||||
msgid   "C"
 | 
					msgid   "C"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/list.go:231 ./cli/app/ps.go:189
 | 
					#: ./cli/app/list.go:225 ./cli/app/ps.go:189
 | 
				
			||||||
msgid   "CHAOS"
 | 
					msgid   "CHAOS"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -748,7 +744,7 @@ msgid   "Creates a new app from a default recipe.\n"
 | 
				
			|||||||
        "on your $PATH."
 | 
					        "on your $PATH."
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/deploy.go:410 ./cli/app/new.go:373 ./cli/app/rollback.go:358 ./cli/app/upgrade.go:468
 | 
					#: ./cli/app/deploy.go:409 ./cli/app/new.go:373 ./cli/app/rollback.go:357 ./cli/app/upgrade.go:467
 | 
				
			||||||
msgid   "D"
 | 
					msgid   "D"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -760,7 +756,7 @@ msgstr  ""
 | 
				
			|||||||
msgid   "DEPLOYED LABELS"
 | 
					msgid   "DEPLOYED LABELS"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/list.go:227 ./cli/internal/deploy.go:78 ./cli/internal/deploy.go:208
 | 
					#: ./cli/app/list.go:221 ./cli/internal/deploy.go:78 ./cli/internal/deploy.go:208
 | 
				
			||||||
msgid   "DOMAIN"
 | 
					msgid   "DOMAIN"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -853,7 +849,7 @@ msgid   "Generate a new copy of the recipe catalogue.\n"
 | 
				
			|||||||
        "    ssh-add ~/.ssh/<my-ssh-private-key-for-git-coopcloud-tech>"
 | 
					        "    ssh-add ~/.ssh/<my-ssh-private-key-for-git-coopcloud-tech>"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/list.go:52
 | 
					#: ./cli/app/list.go:51
 | 
				
			||||||
msgid   "Generate a report of all managed apps.\n"
 | 
					msgid   "Generate a report of all managed apps.\n"
 | 
				
			||||||
        "\n"
 | 
					        "\n"
 | 
				
			||||||
        "Use \"--status/-S\" flag to query all servers for the live deployment status."
 | 
					        "Use \"--status/-S\" flag to query all servers for the live deployment status."
 | 
				
			||||||
@ -949,7 +945,7 @@ msgid   "List all available commands"
 | 
				
			|||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#. translators: Short description for `app list` command
 | 
					#. translators: Short description for `app list` command
 | 
				
			||||||
#: ./cli/app/list.go:51
 | 
					#: ./cli/app/list.go:50
 | 
				
			||||||
msgid   "List all managed apps"
 | 
					msgid   "List all managed apps"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -1107,7 +1103,7 @@ msgstr  ""
 | 
				
			|||||||
msgid   "README.md metadata filled in"
 | 
					msgid   "README.md metadata filled in"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/list.go:227 ./cli/internal/deploy.go:79 ./cli/internal/deploy.go:209
 | 
					#: ./cli/app/list.go:221 ./cli/internal/deploy.go:79 ./cli/internal/deploy.go:209
 | 
				
			||||||
msgid   "RECIPE"
 | 
					msgid   "RECIPE"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -1223,7 +1219,7 @@ msgstr  ""
 | 
				
			|||||||
msgid   "Run app commands"
 | 
					msgid   "Run app commands"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/backup.go:303 ./cli/app/list.go:300 ./cli/app/logs.go:109 ./cli/app/new.go:389
 | 
					#: ./cli/app/backup.go:303 ./cli/app/list.go:292 ./cli/app/logs.go:109 ./cli/app/new.go:389
 | 
				
			||||||
msgid   "S"
 | 
					msgid   "S"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -1235,7 +1231,7 @@ msgstr  ""
 | 
				
			|||||||
msgid   "SECRETS OVERVIEW"
 | 
					msgid   "SECRETS OVERVIEW"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/list.go:227 ./cli/internal/deploy.go:80
 | 
					#: ./cli/app/list.go:221 ./cli/internal/deploy.go:80
 | 
				
			||||||
msgid   "SERVER"
 | 
					msgid   "SERVER"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -1260,7 +1256,7 @@ msgstr  ""
 | 
				
			|||||||
msgid   "SSO"
 | 
					msgid   "SSO"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/list.go:230 ./cli/app/ps.go:186
 | 
					#: ./cli/app/list.go:224 ./cli/app/ps.go:186
 | 
				
			||||||
msgid   "STATUS"
 | 
					msgid   "STATUS"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -1438,7 +1434,7 @@ msgid   "To load completions:\n"
 | 
				
			|||||||
        "  # and source this file from your PowerShell profile."
 | 
					        "  # and source this file from your PowerShell profile."
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/deploy.go:434 ./cli/app/rollback.go:374 ./cli/app/upgrade.go:492
 | 
					#: ./cli/app/deploy.go:433 ./cli/app/rollback.go:373 ./cli/app/upgrade.go:491
 | 
				
			||||||
msgid   "U"
 | 
					msgid   "U"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -1450,7 +1446,7 @@ msgstr  ""
 | 
				
			|||||||
msgid   "UNDEPLOY"
 | 
					msgid   "UNDEPLOY"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/list.go:233 ./cli/internal/deploy.go:174
 | 
					#: ./cli/app/list.go:227 ./cli/internal/deploy.go:174
 | 
				
			||||||
msgid   "UPGRADE"
 | 
					msgid   "UPGRADE"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -1548,7 +1544,7 @@ msgstr  ""
 | 
				
			|||||||
msgid   "VALUE"
 | 
					msgid   "VALUE"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/list.go:232 ./cli/app/ps.go:188 ./cli/app/secret.go:481 ./cli/recipe/version.go:69 ./cli/recipe/version.go:110
 | 
					#: ./cli/app/list.go:226 ./cli/app/ps.go:188 ./cli/app/secret.go:481 ./cli/recipe/version.go:69 ./cli/recipe/version.go:110
 | 
				
			||||||
msgid   "VERSION"
 | 
					msgid   "VERSION"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -1725,7 +1721,7 @@ msgstr  ""
 | 
				
			|||||||
msgid   "add release note? (leave empty to skip)"
 | 
					msgid   "add release note? (leave empty to skip)"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./pkg/app/app.go:515
 | 
					#: ./pkg/app/app.go:508
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid   "adding env vars to %s service config"
 | 
					msgid   "adding env vars to %s service config"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
@ -1809,7 +1805,7 @@ msgstr  ""
 | 
				
			|||||||
msgid   "attempting to run %s"
 | 
					msgid   "attempting to run %s"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/deploy.go:271 ./cli/app/upgrade.go:294
 | 
					#: ./cli/app/deploy.go:270 ./cli/app/upgrade.go:293
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid   "attempting to run post deploy commands, saw: %s"
 | 
					msgid   "attempting to run post deploy commands, saw: %s"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
@ -1889,7 +1885,7 @@ msgstr  ""
 | 
				
			|||||||
#. no spaces in between
 | 
					#. no spaces in between
 | 
				
			||||||
#. translators: `abra app cp` aliases. use a comma separated list of aliases with
 | 
					#. translators: `abra app cp` aliases. use a comma separated list of aliases with
 | 
				
			||||||
#. no spaces in between
 | 
					#. no spaces in between
 | 
				
			||||||
#: ./cli/app/backup.go:148 ./cli/app/cp.go:30 ./cli/app/deploy.go:418 ./cli/app/rollback.go:366 ./cli/app/upgrade.go:476
 | 
					#: ./cli/app/backup.go:148 ./cli/app/cp.go:30 ./cli/app/deploy.go:417 ./cli/app/rollback.go:365 ./cli/app/upgrade.go:475
 | 
				
			||||||
msgid   "c"
 | 
					msgid   "c"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -1945,7 +1941,7 @@ msgstr  ""
 | 
				
			|||||||
msgid   "cannot redeploy previous chaos version (%s), did you mean to use \"--chaos\"?"
 | 
					msgid   "cannot redeploy previous chaos version (%s), did you mean to use \"--chaos\"?"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/deploy.go:368
 | 
					#: ./cli/app/deploy.go:367
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid   "cannot redeploy previous chaos version (%s), did you mean to use \"--chaos\"?\n"
 | 
					msgid   "cannot redeploy previous chaos version (%s), did you mean to use \"--chaos\"?\n"
 | 
				
			||||||
        "     to return to a regular release, specify a release tag, commit SHA or use \"--latest\""
 | 
					        "     to return to a regular release, specify a release tag, commit SHA or use \"--latest\""
 | 
				
			||||||
@ -1964,7 +1960,7 @@ msgstr  ""
 | 
				
			|||||||
msgid   "cannot use '[secret] [version]' and '--all' together"
 | 
					msgid   "cannot use '[secret] [version]' and '--all' together"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/deploy.go:310
 | 
					#: ./cli/app/deploy.go:309
 | 
				
			||||||
msgid   "cannot use --chaos and --latest together"
 | 
					msgid   "cannot use --chaos and --latest together"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -1988,11 +1984,11 @@ msgstr  ""
 | 
				
			|||||||
msgid   "cannot use [service] and --all-services/-a together"
 | 
					msgid   "cannot use [service] and --all-services/-a together"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/deploy.go:302 ./cli/app/new.go:76
 | 
					#: ./cli/app/deploy.go:301 ./cli/app/new.go:76
 | 
				
			||||||
msgid   "cannot use [version] and --chaos together"
 | 
					msgid   "cannot use [version] and --chaos together"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/deploy.go:306
 | 
					#: ./cli/app/deploy.go:305
 | 
				
			||||||
msgid   "cannot use [version] and --latest together"
 | 
					msgid   "cannot use [version] and --latest together"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -2024,7 +2020,7 @@ msgstr  ""
 | 
				
			|||||||
msgid   "cfg"
 | 
					msgid   "cfg"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/backup.go:318 ./cli/app/backup.go:334 ./cli/app/check.go:94 ./cli/app/cmd.go:284 ./cli/app/cp.go:384 ./cli/app/deploy.go:393 ./cli/app/labels.go:142 ./cli/app/new.go:396 ./cli/app/ps.go:212 ./cli/app/restart.go:161 ./cli/app/restore.go:137 ./cli/app/secret.go:568 ./cli/app/secret.go:608 ./cli/app/secret.go:632 ./cli/app/secret.go:640 ./cli/catalogue/catalogue.go:317 ./cli/recipe/lint.go:136
 | 
					#: ./cli/app/backup.go:318 ./cli/app/backup.go:334 ./cli/app/check.go:94 ./cli/app/cmd.go:284 ./cli/app/cp.go:384 ./cli/app/deploy.go:392 ./cli/app/labels.go:142 ./cli/app/new.go:396 ./cli/app/ps.go:212 ./cli/app/restart.go:161 ./cli/app/restore.go:137 ./cli/app/secret.go:568 ./cli/app/secret.go:608 ./cli/app/secret.go:632 ./cli/app/secret.go:640 ./cli/catalogue/catalogue.go:317 ./cli/recipe/lint.go:136
 | 
				
			||||||
msgid   "chaos"
 | 
					msgid   "chaos"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -2033,7 +2029,7 @@ msgstr  ""
 | 
				
			|||||||
msgid   "check <domain> [flags]"
 | 
					msgid   "check <domain> [flags]"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/deploy.go:94 ./cli/app/undeploy.go:57 ./cli/app/upgrade.go:440
 | 
					#: ./cli/app/deploy.go:94 ./cli/app/undeploy.go:57 ./cli/app/upgrade.go:439
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid   "checking whether %s is already deployed"
 | 
					msgid   "checking whether %s is already deployed"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
@ -2315,7 +2311,7 @@ msgstr  ""
 | 
				
			|||||||
msgid   "critical errors present in %s config"
 | 
					msgid   "critical errors present in %s config"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/rollback.go:296
 | 
					#: ./cli/app/rollback.go:295
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid   "current deployment '%s' is not a known version for %s"
 | 
					msgid   "current deployment '%s' is not a known version for %s"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
@ -2367,7 +2363,7 @@ msgstr  ""
 | 
				
			|||||||
msgid   "deploy labels stanza present"
 | 
					msgid   "deploy labels stanza present"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/deploy.go:428
 | 
					#: ./cli/app/deploy.go:427
 | 
				
			||||||
msgid   "deploy latest recipe version"
 | 
					msgid   "deploy latest recipe version"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -2469,11 +2465,11 @@ msgstr  ""
 | 
				
			|||||||
msgid   "dirty: %v, "
 | 
					msgid   "dirty: %v, "
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/deploy.go:420 ./cli/app/rollback.go:368 ./cli/app/upgrade.go:478
 | 
					#: ./cli/app/deploy.go:419 ./cli/app/rollback.go:367 ./cli/app/upgrade.go:477
 | 
				
			||||||
msgid   "disable converge logic checks"
 | 
					msgid   "disable converge logic checks"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/deploy.go:412 ./cli/app/rollback.go:360 ./cli/app/upgrade.go:470
 | 
					#: ./cli/app/deploy.go:411 ./cli/app/rollback.go:359 ./cli/app/upgrade.go:469
 | 
				
			||||||
msgid   "disable public DNS checks"
 | 
					msgid   "disable public DNS checks"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -2691,7 +2687,7 @@ msgstr  ""
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#. translators: `abra recipe fetch` aliases. use a comma separated list of aliases
 | 
					#. translators: `abra recipe fetch` aliases. use a comma separated list of aliases
 | 
				
			||||||
#. with no spaces in between
 | 
					#. with no spaces in between
 | 
				
			||||||
#: ./cli/app/deploy.go:402 ./cli/app/remove.go:163 ./cli/app/rollback.go:350 ./cli/app/secret.go:593 ./cli/app/upgrade.go:460 ./cli/app/volume.go:217 ./cli/recipe/fetch.go:20 ./cli/recipe/fetch.go:138
 | 
					#: ./cli/app/deploy.go:401 ./cli/app/remove.go:163 ./cli/app/rollback.go:349 ./cli/app/secret.go:593 ./cli/app/upgrade.go:459 ./cli/app/volume.go:217 ./cli/recipe/fetch.go:20 ./cli/recipe/fetch.go:138
 | 
				
			||||||
msgid   "f"
 | 
					msgid   "f"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -2917,7 +2913,7 @@ msgstr  ""
 | 
				
			|||||||
msgid   "filter by recipe"
 | 
					msgid   "filter by recipe"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/deploy.go:401 ./cli/app/remove.go:162 ./cli/app/rollback.go:349 ./cli/app/upgrade.go:459 ./cli/app/volume.go:216 ./cli/recipe/fetch.go:137
 | 
					#: ./cli/app/deploy.go:400 ./cli/app/remove.go:162 ./cli/app/rollback.go:348 ./cli/app/upgrade.go:458 ./cli/app/volume.go:216 ./cli/recipe/fetch.go:137
 | 
				
			||||||
msgid   "force"
 | 
					msgid   "force"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -2976,7 +2972,7 @@ msgstr  ""
 | 
				
			|||||||
msgid   "generated secrets %s shown again, please take note of them %s"
 | 
					msgid   "generated secrets %s shown again, please take note of them %s"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./pkg/app/compose.go:81
 | 
					#: ./pkg/app/compose.go:63
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid   "get label '%s'"
 | 
					msgid   "get label '%s'"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
@ -3131,7 +3127,7 @@ msgstr  ""
 | 
				
			|||||||
msgid   "id: %s, "
 | 
					msgid   "id: %s, "
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/backup.go:321 ./cli/app/backup.go:337 ./cli/app/check.go:97 ./cli/app/cmd.go:287 ./cli/app/cp.go:387 ./cli/app/deploy.go:396 ./cli/app/labels.go:145 ./cli/app/new.go:399 ./cli/app/ps.go:215 ./cli/app/restart.go:164 ./cli/app/restore.go:140 ./cli/app/secret.go:571 ./cli/app/secret.go:611 ./cli/app/secret.go:635 ./cli/app/secret.go:643 ./cli/catalogue/catalogue.go:320 ./cli/recipe/lint.go:139
 | 
					#: ./cli/app/backup.go:321 ./cli/app/backup.go:337 ./cli/app/check.go:97 ./cli/app/cmd.go:287 ./cli/app/cp.go:387 ./cli/app/deploy.go:395 ./cli/app/labels.go:145 ./cli/app/new.go:399 ./cli/app/ps.go:215 ./cli/app/restart.go:164 ./cli/app/restore.go:140 ./cli/app/secret.go:571 ./cli/app/secret.go:611 ./cli/app/secret.go:635 ./cli/app/secret.go:643 ./cli/catalogue/catalogue.go:320 ./cli/recipe/lint.go:139
 | 
				
			||||||
msgid   "ignore uncommitted recipes changes"
 | 
					msgid   "ignore uncommitted recipes changes"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -3314,7 +3310,7 @@ msgstr  ""
 | 
				
			|||||||
#. no spaces in between
 | 
					#. no spaces in between
 | 
				
			||||||
#. translators: `abra recipe lint` aliases. use a comma separated list of
 | 
					#. translators: `abra recipe lint` aliases. use a comma separated list of
 | 
				
			||||||
#. aliases with no spaces in between
 | 
					#. aliases with no spaces in between
 | 
				
			||||||
#: ./cli/app/cmd.go:261 ./cli/app/deploy.go:426 ./cli/app/logs.go:20 ./cli/recipe/lint.go:17 ./cli/server/add.go:207
 | 
					#: ./cli/app/cmd.go:261 ./cli/app/deploy.go:425 ./cli/app/logs.go:20 ./cli/recipe/lint.go:17 ./cli/server/add.go:207
 | 
				
			||||||
msgid   "l"
 | 
					msgid   "l"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -3323,7 +3319,7 @@ msgstr  ""
 | 
				
			|||||||
msgid   "labels <domain> [flags]"
 | 
					msgid   "labels <domain> [flags]"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/deploy.go:425 ./cli/app/list.go:188
 | 
					#: ./cli/app/deploy.go:424 ./cli/app/list.go:182
 | 
				
			||||||
msgid   "latest"
 | 
					msgid   "latest"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -3372,7 +3368,7 @@ msgstr  ""
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#. translators: `app list` command
 | 
					#. translators: `app list` command
 | 
				
			||||||
#. translators: `server list` command
 | 
					#. translators: `server list` command
 | 
				
			||||||
#: ./cli/app/list.go:48 ./cli/server/list.go:23
 | 
					#: ./cli/app/list.go:47 ./cli/server/list.go:23
 | 
				
			||||||
msgid   "list [flags]"
 | 
					msgid   "list [flags]"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -3438,7 +3434,7 @@ msgstr  ""
 | 
				
			|||||||
#. aliases with no spaces in between
 | 
					#. aliases with no spaces in between
 | 
				
			||||||
#. translators: `abra server list` aliases. use a comma separated list of
 | 
					#. translators: `abra server list` aliases. use a comma separated list of
 | 
				
			||||||
#. aliases with no spaces in between
 | 
					#. aliases with no spaces in between
 | 
				
			||||||
#: ./cli/app/backup.go:17 ./cli/app/cmd.go:203 ./cli/app/list.go:44 ./cli/app/secret.go:453 ./cli/app/volume.go:21 ./cli/recipe/list.go:19 ./cli/server/list.go:19
 | 
					#: ./cli/app/backup.go:17 ./cli/app/cmd.go:203 ./cli/app/list.go:43 ./cli/app/secret.go:453 ./cli/app/volume.go:21 ./cli/recipe/list.go:19 ./cli/server/list.go:19
 | 
				
			||||||
msgid   "ls"
 | 
					msgid   "ls"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -3446,11 +3442,11 @@ msgstr  ""
 | 
				
			|||||||
#. with no spaces in between
 | 
					#. with no spaces in between
 | 
				
			||||||
#. translators: `abra man` aliases. use a comma separated list of aliases
 | 
					#. translators: `abra man` aliases. use a comma separated list of aliases
 | 
				
			||||||
#. with no spaces in between
 | 
					#. with no spaces in between
 | 
				
			||||||
#: ./cli/app/list.go:323 ./cli/app/move.go:34 ./cli/app/ps.go:205 ./cli/app/secret.go:553 ./cli/app/secret.go:649 ./cli/recipe/list.go:104 ./cli/recipe/upgrade.go:376 ./cli/recipe/version.go:139 ./cli/run.go:152 ./cli/server/list.go:106
 | 
					#: ./cli/app/list.go:315 ./cli/app/move.go:34 ./cli/app/ps.go:205 ./cli/app/secret.go:553 ./cli/app/secret.go:649 ./cli/recipe/list.go:104 ./cli/recipe/upgrade.go:376 ./cli/recipe/version.go:139 ./cli/run.go:152 ./cli/server/list.go:106
 | 
				
			||||||
msgid   "m"
 | 
					msgid   "m"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/list.go:322 ./cli/app/ps.go:204 ./cli/app/secret.go:552 ./cli/app/secret.go:648 ./cli/recipe/list.go:103 ./cli/recipe/upgrade.go:375 ./cli/recipe/version.go:138 ./cli/server/list.go:105
 | 
					#: ./cli/app/list.go:314 ./cli/app/ps.go:204 ./cli/app/secret.go:552 ./cli/app/secret.go:648 ./cli/recipe/list.go:103 ./cli/recipe/upgrade.go:375 ./cli/recipe/version.go:138 ./cli/server/list.go:105
 | 
				
			||||||
msgid   "machine"
 | 
					msgid   "machine"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -3602,7 +3598,7 @@ msgstr  ""
 | 
				
			|||||||
msgid   "no %s exists, skipping reading gitignore paths"
 | 
					msgid   "no %s exists, skipping reading gitignore paths"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./pkg/app/compose.go:87
 | 
					#: ./pkg/app/compose.go:69
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid   "no %s label found for %s"
 | 
					msgid   "no %s label found for %s"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
@ -3770,11 +3766,11 @@ msgstr  ""
 | 
				
			|||||||
msgid   "no volumes to remove"
 | 
					msgid   "no volumes to remove"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/deploy.go:417 ./cli/app/rollback.go:365 ./cli/app/upgrade.go:475
 | 
					#: ./cli/app/deploy.go:416 ./cli/app/rollback.go:364 ./cli/app/upgrade.go:474
 | 
				
			||||||
msgid   "no-converge-checks"
 | 
					msgid   "no-converge-checks"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/deploy.go:409 ./cli/app/rollback.go:357 ./cli/app/upgrade.go:467
 | 
					#: ./cli/app/deploy.go:408 ./cli/app/rollback.go:356 ./cli/app/upgrade.go:466
 | 
				
			||||||
msgid   "no-domain-checks"
 | 
					msgid   "no-domain-checks"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -3830,7 +3826,7 @@ msgstr  ""
 | 
				
			|||||||
msgid   "only show errors"
 | 
					msgid   "only show errors"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/upgrade.go:486
 | 
					#: ./cli/app/upgrade.go:485
 | 
				
			||||||
msgid   "only show release notes"
 | 
					msgid   "only show release notes"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -3861,22 +3857,22 @@ msgstr  ""
 | 
				
			|||||||
msgid   "parsed following command arguments: %s"
 | 
					msgid   "parsed following command arguments: %s"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/upgrade.go:343
 | 
					#: ./cli/app/upgrade.go:342
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid   "parsing chosen upgrade version failed: %s"
 | 
					msgid   "parsing chosen upgrade version failed: %s"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/upgrade.go:387
 | 
					#: ./cli/app/upgrade.go:386
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid   "parsing deployed version failed: %s"
 | 
					msgid   "parsing deployed version failed: %s"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/upgrade.go:348
 | 
					#: ./cli/app/upgrade.go:347
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid   "parsing deployment version failed: %s"
 | 
					msgid   "parsing deployment version failed: %s"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/upgrade.go:354 ./cli/app/upgrade.go:393
 | 
					#: ./cli/app/upgrade.go:353 ./cli/app/upgrade.go:392
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid   "parsing recipe version failed: %s"
 | 
					msgid   "parsing recipe version failed: %s"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
@ -3901,7 +3897,7 @@ msgstr  ""
 | 
				
			|||||||
msgid   "pattern"
 | 
					msgid   "pattern"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/deploy.go:404 ./cli/app/remove.go:165 ./cli/app/rollback.go:352 ./cli/app/upgrade.go:462 ./cli/app/volume.go:219
 | 
					#: ./cli/app/deploy.go:403 ./cli/app/remove.go:165 ./cli/app/rollback.go:351 ./cli/app/upgrade.go:461 ./cli/app/volume.go:219
 | 
				
			||||||
msgid   "perform action without further prompt"
 | 
					msgid   "perform action without further prompt"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -3910,22 +3906,22 @@ msgstr  ""
 | 
				
			|||||||
msgid   "please fix your synced label for %s and re-run this command"
 | 
					msgid   "please fix your synced label for %s and re-run this command"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/rollback.go:264
 | 
					#: ./cli/app/rollback.go:263
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid   "please select a downgrade (version: %s):"
 | 
					msgid   "please select a downgrade (version: %s):"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/rollback.go:269
 | 
					#: ./cli/app/rollback.go:268
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid   "please select a downgrade (version: %s, chaos: %s):"
 | 
					msgid   "please select a downgrade (version: %s, chaos: %s):"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/upgrade.go:310
 | 
					#: ./cli/app/upgrade.go:309
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid   "please select an upgrade (version: %s):"
 | 
					msgid   "please select an upgrade (version: %s):"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/upgrade.go:315
 | 
					#: ./cli/app/upgrade.go:314
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid   "please select an upgrade (version: %s, chaos: %s):"
 | 
					msgid   "please select an upgrade (version: %s, chaos: %s):"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
@ -3946,7 +3942,7 @@ msgstr  ""
 | 
				
			|||||||
msgid   "previous git tags detected, assuming new semver release"
 | 
					msgid   "previous git tags detected, assuming new semver release"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/list.go:325 ./cli/app/ps.go:207 ./cli/app/secret.go:555 ./cli/app/secret.go:651 ./cli/recipe/list.go:106 ./cli/recipe/upgrade.go:378 ./cli/recipe/version.go:141 ./cli/server/list.go:108
 | 
					#: ./cli/app/list.go:317 ./cli/app/ps.go:207 ./cli/app/secret.go:555 ./cli/app/secret.go:651 ./cli/recipe/list.go:106 ./cli/recipe/upgrade.go:378 ./cli/recipe/version.go:141 ./cli/server/list.go:108
 | 
				
			||||||
msgid   "print machine-readable output"
 | 
					msgid   "print machine-readable output"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -4006,7 +4002,7 @@ msgstr  ""
 | 
				
			|||||||
#. with no spaces in between
 | 
					#. with no spaces in between
 | 
				
			||||||
#. translators: `abra recipe` aliases. use a comma separated list of aliases
 | 
					#. translators: `abra recipe` aliases. use a comma separated list of aliases
 | 
				
			||||||
#. with no spaces in between
 | 
					#. with no spaces in between
 | 
				
			||||||
#: ./cli/app/backup.go:327 ./cli/app/list.go:308 ./cli/app/move.go:346 ./cli/app/run.go:23 ./cli/app/upgrade.go:484 ./cli/catalogue/catalogue.go:302 ./cli/recipe/recipe.go:12 ./cli/recipe/release.go:649 ./cli/recipe/sync.go:272
 | 
					#: ./cli/app/backup.go:327 ./cli/app/list.go:300 ./cli/app/move.go:346 ./cli/app/run.go:23 ./cli/app/upgrade.go:483 ./cli/catalogue/catalogue.go:302 ./cli/recipe/recipe.go:12 ./cli/recipe/release.go:649 ./cli/recipe/sync.go:272
 | 
				
			||||||
msgid   "r"
 | 
					msgid   "r"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -4021,12 +4017,12 @@ msgstr  ""
 | 
				
			|||||||
msgid   "read %s as tags for recipe %s"
 | 
					msgid   "read %s as tags for recipe %s"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./pkg/app/app.go:582 ./pkg/config/env.go:50 ./pkg/envfile/envfile.go:42 ./pkg/envfile/envfile.go:80
 | 
					#: ./pkg/app/app.go:575 ./pkg/config/env.go:50 ./pkg/envfile/envfile.go:42 ./pkg/envfile/envfile.go:80
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid   "read %s from %s"
 | 
					msgid   "read %s from %s"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./pkg/app/app.go:584
 | 
					#: ./pkg/app/app.go:577
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid   "read 0 command names from %s"
 | 
					msgid   "read 0 command names from %s"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
@ -4084,7 +4080,7 @@ msgid   "readme: %s, "
 | 
				
			|||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#. translators: `abra recipe` command for autocompletion
 | 
					#. translators: `abra recipe` command for autocompletion
 | 
				
			||||||
#: ./cli/app/list.go:307 ./cli/app/list.go:314 ./cli/run.go:99
 | 
					#: ./cli/app/list.go:299 ./cli/app/list.go:306 ./cli/run.go:99
 | 
				
			||||||
msgid   "recipe"
 | 
					msgid   "recipe"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -4122,7 +4118,7 @@ msgstr  ""
 | 
				
			|||||||
msgid   "release <recipe> [version] [flags]"
 | 
					msgid   "release <recipe> [version] [flags]"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/upgrade.go:483
 | 
					#: ./cli/app/upgrade.go:482
 | 
				
			||||||
msgid   "releasenotes"
 | 
					msgid   "releasenotes"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -4324,7 +4320,7 @@ msgstr  ""
 | 
				
			|||||||
msgid   "retrieved %s configs for %s"
 | 
					msgid   "retrieved %s configs for %s"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./pkg/app/app.go:506
 | 
					#: ./pkg/app/app.go:499
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid   "retrieved %s for %s"
 | 
					msgid   "retrieved %s for %s"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
@ -4339,7 +4335,7 @@ msgstr  ""
 | 
				
			|||||||
msgid   "retrieved %v servers: %s"
 | 
					msgid   "retrieved %v servers: %s"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./pkg/app/app.go:492
 | 
					#: ./pkg/app/app.go:485
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid   "retrieved app statuses: %s"
 | 
					msgid   "retrieved app statuses: %s"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
@ -4421,7 +4417,7 @@ msgstr  ""
 | 
				
			|||||||
msgid   "run command locally"
 | 
					msgid   "run command locally"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/deploy.go:269 ./cli/app/upgrade.go:291
 | 
					#: ./cli/app/deploy.go:268 ./cli/app/upgrade.go:290
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid   "run the following post-deploy commands: %s"
 | 
					msgid   "run the following post-deploy commands: %s"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
@ -4464,7 +4460,7 @@ msgstr  ""
 | 
				
			|||||||
#. aliases with no spaces in between
 | 
					#. aliases with no spaces in between
 | 
				
			||||||
#. translators: `abra server` aliases. use a comma separated list of aliases
 | 
					#. translators: `abra server` aliases. use a comma separated list of aliases
 | 
				
			||||||
#. with no spaces in between
 | 
					#. with no spaces in between
 | 
				
			||||||
#: ./cli/app/backup.go:198 ./cli/app/backup.go:263 ./cli/app/backup.go:287 ./cli/app/list.go:331 ./cli/app/logs.go:101 ./cli/app/new.go:358 ./cli/app/restore.go:114 ./cli/app/secret.go:535 ./cli/catalogue/catalogue.go:27 ./cli/catalogue/catalogue.go:310 ./cli/recipe/fetch.go:130 ./cli/recipe/sync.go:24 ./cli/server/server.go:12
 | 
					#: ./cli/app/backup.go:198 ./cli/app/backup.go:263 ./cli/app/backup.go:287 ./cli/app/list.go:323 ./cli/app/logs.go:101 ./cli/app/new.go:358 ./cli/app/restore.go:114 ./cli/app/secret.go:535 ./cli/catalogue/catalogue.go:27 ./cli/catalogue/catalogue.go:310 ./cli/recipe/fetch.go:130 ./cli/recipe/sync.go:24 ./cli/server/server.go:12
 | 
				
			||||||
msgid   "s"
 | 
					msgid   "s"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -4506,12 +4502,12 @@ msgstr  ""
 | 
				
			|||||||
msgid   "secret not found: %s"
 | 
					msgid   "secret not found: %s"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/deploy.go:338
 | 
					#: ./cli/app/deploy.go:337
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid   "secret not generated: %s"
 | 
					msgid   "secret not generated: %s"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/deploy.go:336
 | 
					#: ./cli/app/deploy.go:335
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid   "secret not inserted (#generate=false): %s"
 | 
					msgid   "secret not inserted (#generate=false): %s"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
@ -4531,7 +4527,7 @@ msgid   "secrets are %s shown again, please save them %s"
 | 
				
			|||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#. translators: `abra server` command for autocompletion
 | 
					#. translators: `abra server` command for autocompletion
 | 
				
			||||||
#: ./cli/app/list.go:330 ./cli/app/list.go:337 ./cli/app/new.go:357 ./cli/app/new.go:364 ./cli/run.go:101
 | 
					#: ./cli/app/list.go:322 ./cli/app/list.go:329 ./cli/app/new.go:357 ./cli/app/new.go:364 ./cli/run.go:101
 | 
				
			||||||
msgid   "server"
 | 
					msgid   "server"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -4602,27 +4598,22 @@ msgstr  ""
 | 
				
			|||||||
msgid   "set 'main' as the default branch"
 | 
					msgid   "set 'main' as the default branch"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./pkg/app/compose.go:69
 | 
					#: ./pkg/app/compose.go:30
 | 
				
			||||||
#, c-format
 | 
					 | 
				
			||||||
msgid   "set label 'coop-cloud.%s.autoupdate' to %s for %s"
 | 
					 | 
				
			||||||
msgstr  ""
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#: ./pkg/app/compose.go:31
 | 
					 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid   "set label 'coop-cloud.%s.chaos' to %v for %s"
 | 
					msgid   "set label 'coop-cloud.%s.chaos' to %v for %s"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./pkg/app/compose.go:42
 | 
					#: ./pkg/app/compose.go:41
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid   "set label 'coop-cloud.%s.chaos-version' to %v for %s"
 | 
					msgid   "set label 'coop-cloud.%s.chaos-version' to %v for %s"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./pkg/app/compose.go:52
 | 
					#: ./pkg/app/compose.go:51
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid   "set label 'coop-cloud.%s.version' to %v for %s"
 | 
					msgid   "set label 'coop-cloud.%s.version' to %v for %s"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./pkg/app/compose.go:19
 | 
					#: ./pkg/app/compose.go:18
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid   "set recipe label 'coop-cloud.%s.recipe' to %s for %s"
 | 
					msgid   "set recipe label 'coop-cloud.%s.recipe' to %s for %s"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
@ -4636,7 +4627,7 @@ msgstr  ""
 | 
				
			|||||||
msgid   "severity"
 | 
					msgid   "severity"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/deploy.go:436 ./cli/app/rollback.go:376 ./cli/app/upgrade.go:494
 | 
					#: ./cli/app/deploy.go:435 ./cli/app/rollback.go:375 ./cli/app/upgrade.go:493
 | 
				
			||||||
msgid   "show all configs & images, including unchanged ones"
 | 
					msgid   "show all configs & images, including unchanged ones"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -4644,15 +4635,15 @@ msgstr  ""
 | 
				
			|||||||
msgid   "show all paths"
 | 
					msgid   "show all paths"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/list.go:302
 | 
					#: ./cli/app/list.go:294
 | 
				
			||||||
msgid   "show app deployment status"
 | 
					msgid   "show app deployment status"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/list.go:310
 | 
					#: ./cli/app/list.go:302
 | 
				
			||||||
msgid   "show apps of a specific recipe"
 | 
					msgid   "show apps of a specific recipe"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/list.go:333
 | 
					#: ./cli/app/list.go:325
 | 
				
			||||||
msgid   "show apps of a specific server"
 | 
					msgid   "show apps of a specific server"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -4660,7 +4651,7 @@ msgstr  ""
 | 
				
			|||||||
msgid   "show debug messages"
 | 
					msgid   "show debug messages"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/deploy.go:433 ./cli/app/rollback.go:373 ./cli/app/upgrade.go:491
 | 
					#: ./cli/app/deploy.go:432 ./cli/app/rollback.go:372 ./cli/app/upgrade.go:490
 | 
				
			||||||
msgid   "show-unchanged"
 | 
					msgid   "show-unchanged"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -4708,11 +4699,11 @@ msgstr  ""
 | 
				
			|||||||
msgid   "skipping converge logic checks"
 | 
					msgid   "skipping converge logic checks"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/deploy.go:197
 | 
					#: ./cli/app/deploy.go:196
 | 
				
			||||||
msgid   "skipping domain checks"
 | 
					msgid   "skipping domain checks"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/deploy.go:194
 | 
					#: ./cli/app/deploy.go:193
 | 
				
			||||||
msgid   "skipping domain checks, no DOMAIN=... configured"
 | 
					msgid   "skipping domain checks, no DOMAIN=... configured"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -4721,12 +4712,12 @@ msgstr  ""
 | 
				
			|||||||
msgid   "skipping generation of %s (generate=false)"
 | 
					msgid   "skipping generation of %s (generate=false)"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./pkg/app/app.go:690
 | 
					#: ./pkg/app/app.go:683
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid   "skipping version %s write as already exists in %s.env"
 | 
					msgid   "skipping version %s write as already exists in %s.env"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./pkg/app/app.go:684
 | 
					#: ./pkg/app/app.go:677
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid   "skipping writing version %s because dry run"
 | 
					msgid   "skipping writing version %s because dry run"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
@ -4789,7 +4780,7 @@ msgstr  ""
 | 
				
			|||||||
msgid   "ssh: SSH_AUTH_SOCK missing, --publish/-p will fail. see \"abra catalogue generate --help\""
 | 
					msgid   "ssh: SSH_AUTH_SOCK missing, --publish/-p will fail. see \"abra catalogue generate --help\""
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/list.go:299 ./cli/recipe/list.go:45
 | 
					#: ./cli/app/list.go:291 ./cli/recipe/list.go:45
 | 
				
			||||||
msgid   "status"
 | 
					msgid   "status"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -4910,7 +4901,7 @@ msgstr  ""
 | 
				
			|||||||
msgid   "timed out on undeploy (timeout=%v sec)"
 | 
					msgid   "timed out on undeploy (timeout=%v sec)"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./pkg/app/compose.go:98
 | 
					#: ./pkg/app/compose.go:80
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid   "timeout label: %s"
 | 
					msgid   "timeout label: %s"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
@ -4999,7 +4990,7 @@ msgstr  ""
 | 
				
			|||||||
msgid   "unable to clean up git clone of %s: %s"
 | 
					msgid   "unable to clean up git clone of %s: %s"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/list.go:154
 | 
					#: ./cli/app/list.go:148
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid   "unable to clone %s: %s"
 | 
					msgid   "unable to clone %s: %s"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
@ -5013,7 +5004,7 @@ msgstr  ""
 | 
				
			|||||||
msgid   "unable to continue, input required for initial version"
 | 
					msgid   "unable to continue, input required for initial version"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./pkg/app/compose.go:103
 | 
					#: ./pkg/app/compose.go:85
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid   "unable to convert timeout label %s to int: %s"
 | 
					msgid   "unable to convert timeout label %s to int: %s"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
@ -5112,7 +5103,7 @@ msgstr  ""
 | 
				
			|||||||
msgid   "unable to parse %s, skipping"
 | 
					msgid   "unable to parse %s, skipping"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/list.go:169
 | 
					#: ./cli/app/list.go:163
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid   "unable to parse %s, skipping as upgrade option"
 | 
					msgid   "unable to parse %s, skipping as upgrade option"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
@ -5182,7 +5173,7 @@ msgstr  ""
 | 
				
			|||||||
msgid   "unable to retrieve %s resources on %s: %s"
 | 
					msgid   "unable to retrieve %s resources on %s: %s"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/list.go:159
 | 
					#: ./cli/app/list.go:153
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid   "unable to retrieve tags for %s: %s"
 | 
					msgid   "unable to retrieve tags for %s: %s"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
@ -5266,7 +5257,7 @@ msgstr  ""
 | 
				
			|||||||
msgid   "unimplemented call: SetWriteDeadline(%v)"
 | 
					msgid   "unimplemented call: SetWriteDeadline(%v)"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/labels.go:78 ./cli/app/list.go:117 ./cli/app/list.go:118 ./cli/app/list.go:119 ./cli/app/list.go:120 ./cli/app/list.go:121 ./cli/app/list.go:186 ./cli/app/ps.go:125 ./cli/app/ps.go:126 ./cli/app/ps.go:127 ./cli/app/ps.go:128 ./cli/app/ps.go:129 ./cli/server/list.go:65 ./cli/server/list.go:77
 | 
					#: ./cli/app/labels.go:78 ./cli/app/list.go:116 ./cli/app/list.go:117 ./cli/app/list.go:118 ./cli/app/list.go:119 ./cli/app/list.go:180 ./cli/app/ps.go:125 ./cli/app/ps.go:126 ./cli/app/ps.go:127 ./cli/app/ps.go:128 ./cli/app/ps.go:129 ./cli/server/list.go:65 ./cli/server/list.go:77
 | 
				
			||||||
msgid   "unknown"
 | 
					msgid   "unknown"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -5421,7 +5412,7 @@ msgstr  ""
 | 
				
			|||||||
msgid   "version"
 | 
					msgid   "version"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./pkg/app/app.go:688
 | 
					#: ./pkg/app/app.go:681
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid   "version %s saved to %s.env"
 | 
					msgid   "version %s saved to %s.env"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
@ -5445,32 +5436,32 @@ msgstr  ""
 | 
				
			|||||||
msgid   "version seems invalid: %s"
 | 
					msgid   "version seems invalid: %s"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./pkg/app/app.go:627
 | 
					#: ./pkg/app/app.go:620
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid   "version wiped from %s.env"
 | 
					msgid   "version wiped from %s.env"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/deploy.go:352
 | 
					#: ./cli/app/deploy.go:351
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid   "version: taking chaos version: %s"
 | 
					msgid   "version: taking chaos version: %s"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/deploy.go:378
 | 
					#: ./cli/app/deploy.go:377
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid   "version: taking deployed version: %s"
 | 
					msgid   "version: taking deployed version: %s"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/deploy.go:383
 | 
					#: ./cli/app/deploy.go:382
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid   "version: taking new recipe version: %s"
 | 
					msgid   "version: taking new recipe version: %s"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/deploy.go:372
 | 
					#: ./cli/app/deploy.go:371
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid   "version: taking version from .env file: %s"
 | 
					msgid   "version: taking version from .env file: %s"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/deploy.go:358
 | 
					#: ./cli/app/deploy.go:357
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid   "version: taking version from cli arg: %s"
 | 
					msgid   "version: taking version from cli arg: %s"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
@ -5593,7 +5584,7 @@ msgstr  ""
 | 
				
			|||||||
msgid   "writer: %v, "
 | 
					msgid   "writer: %v, "
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: ./cli/app/deploy.go:276 ./cli/app/new.go:241 ./cli/app/rollback.go:253 ./cli/app/undeploy.go:119 ./cli/app/upgrade.go:299
 | 
					#: ./cli/app/deploy.go:275 ./cli/app/new.go:241 ./cli/app/rollback.go:252 ./cli/app/undeploy.go:119 ./cli/app/upgrade.go:298
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid   "writing recipe version failed: %s"
 | 
					msgid   "writing recipe version failed: %s"
 | 
				
			||||||
msgstr  ""
 | 
					msgstr  ""
 | 
				
			||||||
 | 
				
			|||||||
@ -2,7 +2,7 @@ msgid ""
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
"Project-Id-Version: \n"
 | 
					"Project-Id-Version: \n"
 | 
				
			||||||
"Report-Msgid-Bugs-To: EMAIL\n"
 | 
					"Report-Msgid-Bugs-To: EMAIL\n"
 | 
				
			||||||
"POT-Creation-Date: 2025-10-19 15:32+0200\n"
 | 
					"POT-Creation-Date: 2025-10-19 15:46+0200\n"
 | 
				
			||||||
"PO-Revision-Date: 2025-09-04 08:14+0000\n"
 | 
					"PO-Revision-Date: 2025-09-04 08:14+0000\n"
 | 
				
			||||||
"Last-Translator: chasqui <chasqui@cryptolab.net>\n"
 | 
					"Last-Translator: chasqui <chasqui@cryptolab.net>\n"
 | 
				
			||||||
"Language-Team: Spanish <https://translate.coopcloud.tech/projects/co-op-"
 | 
					"Language-Team: Spanish <https://translate.coopcloud.tech/projects/co-op-"
 | 
				
			||||||
@ -68,7 +68,7 @@ msgid ""
 | 
				
			|||||||
"  echo \"mmySuperSecret\" | abra app secret insert 1312.net my_secret v1"
 | 
					"  echo \"mmySuperSecret\" | abra app secret insert 1312.net my_secret v1"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/list.go:55
 | 
					#: cli/app/list.go:54
 | 
				
			||||||
msgid ""
 | 
					msgid ""
 | 
				
			||||||
"  # list apps of all servers without live status\n"
 | 
					"  # list apps of all servers without live status\n"
 | 
				
			||||||
"  abra app ls\n"
 | 
					"  abra app ls\n"
 | 
				
			||||||
@ -344,18 +344,18 @@ msgstr ""
 | 
				
			|||||||
msgid "%s is missing the TYPE env var?"
 | 
					msgid "%s is missing the TYPE env var?"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/rollback.go:306 cli/app/rollback.go:310
 | 
					#: cli/app/rollback.go:305 cli/app/rollback.go:309
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid "%s is not a downgrade for %s?"
 | 
					msgid "%s is not a downgrade for %s?"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/upgrade.go:427 cli/app/upgrade.go:431
 | 
					#: cli/app/upgrade.go:426 cli/app/upgrade.go:430
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid "%s is not an upgrade for %s?"
 | 
					msgid "%s is not an upgrade for %s?"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/logs.go:65 cli/app/ps.go:62 cli/app/restart.go:100
 | 
					#: cli/app/logs.go:65 cli/app/ps.go:62 cli/app/restart.go:100
 | 
				
			||||||
#: cli/app/services.go:55 cli/app/undeploy.go:65 cli/app/upgrade.go:448
 | 
					#: cli/app/services.go:55 cli/app/undeploy.go:65 cli/app/upgrade.go:447
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid "%s is not deployed?"
 | 
					msgid "%s is not deployed?"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@ -370,7 +370,7 @@ msgstr ""
 | 
				
			|||||||
msgid "%s is still deployed. Run \"abra app undeploy %s\""
 | 
					msgid "%s is still deployed. Run \"abra app undeploy %s\""
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/deploy.go:183 cli/app/upgrade.go:209
 | 
					#: cli/app/deploy.go:182 cli/app/upgrade.go:208
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid "%s missing from %s.env"
 | 
					msgid "%s missing from %s.env"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@ -482,7 +482,7 @@ msgstr ""
 | 
				
			|||||||
msgid "%s: %s → %s"
 | 
					msgid "%s: %s → %s"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: pkg/app/app.go:521
 | 
					#: pkg/app/app.go:514
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid "%s: %s: %s"
 | 
					msgid "%s: %s: %s"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@ -547,12 +547,12 @@ msgstr ""
 | 
				
			|||||||
msgid "%s: waiting %d seconds before next retry"
 | 
					msgid "%s: waiting %d seconds before next retry"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/upgrade.go:422
 | 
					#: cli/app/upgrade.go:421
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid "'%s' is not a known version"
 | 
					msgid "'%s' is not a known version"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/rollback.go:301 cli/app/upgrade.go:417
 | 
					#: cli/app/rollback.go:300 cli/app/upgrade.go:416
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid "'%s' is not a known version for %s"
 | 
					msgid "'%s' is not a known version for %s"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@ -597,10 +597,6 @@ msgstr ""
 | 
				
			|||||||
msgid "ALERTA ALERTA: deleting %s data and config (local/remote)"
 | 
					msgid "ALERTA ALERTA: deleting %s data and config (local/remote)"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/list.go:234
 | 
					 | 
				
			||||||
msgid "AUTOUPDATE"
 | 
					 | 
				
			||||||
msgstr ""
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#. translators: Short description for `server add` command
 | 
					#. translators: Short description for `server add` command
 | 
				
			||||||
#: cli/server/add.go:30
 | 
					#: cli/server/add.go:30
 | 
				
			||||||
msgid "Add a new server"
 | 
					msgid "Add a new server"
 | 
				
			||||||
@ -634,7 +630,7 @@ msgid "Both local recipe and live deployment labels are shown."
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/backup.go:319 cli/app/backup.go:335 cli/app/check.go:95
 | 
					#: cli/app/backup.go:319 cli/app/backup.go:335 cli/app/check.go:95
 | 
				
			||||||
#: cli/app/cmd.go:285 cli/app/cp.go:385 cli/app/deploy.go:394
 | 
					#: cli/app/cmd.go:285 cli/app/cp.go:385 cli/app/deploy.go:393
 | 
				
			||||||
#: cli/app/labels.go:143 cli/app/new.go:397 cli/app/ps.go:213
 | 
					#: cli/app/labels.go:143 cli/app/new.go:397 cli/app/ps.go:213
 | 
				
			||||||
#: cli/app/restart.go:162 cli/app/restore.go:138 cli/app/secret.go:569
 | 
					#: cli/app/restart.go:162 cli/app/restore.go:138 cli/app/secret.go:569
 | 
				
			||||||
#: cli/app/secret.go:609 cli/app/secret.go:633 cli/app/secret.go:641
 | 
					#: cli/app/secret.go:609 cli/app/secret.go:633 cli/app/secret.go:641
 | 
				
			||||||
@ -642,7 +638,7 @@ msgstr ""
 | 
				
			|||||||
msgid "C"
 | 
					msgid "C"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/list.go:231 cli/app/ps.go:189
 | 
					#: cli/app/list.go:225 cli/app/ps.go:189
 | 
				
			||||||
msgid "CHAOS"
 | 
					msgid "CHAOS"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -799,8 +795,8 @@ msgid ""
 | 
				
			|||||||
"on your $PATH."
 | 
					"on your $PATH."
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/deploy.go:410 cli/app/new.go:373 cli/app/rollback.go:358
 | 
					#: cli/app/deploy.go:409 cli/app/new.go:373 cli/app/rollback.go:357
 | 
				
			||||||
#: cli/app/upgrade.go:468
 | 
					#: cli/app/upgrade.go:467
 | 
				
			||||||
msgid "D"
 | 
					msgid "D"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -812,7 +808,7 @@ msgstr ""
 | 
				
			|||||||
msgid "DEPLOYED LABELS"
 | 
					msgid "DEPLOYED LABELS"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/list.go:227 cli/internal/deploy.go:78 cli/internal/deploy.go:208
 | 
					#: cli/app/list.go:221 cli/internal/deploy.go:78 cli/internal/deploy.go:208
 | 
				
			||||||
msgid "DOMAIN"
 | 
					msgid "DOMAIN"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -918,7 +914,7 @@ msgid ""
 | 
				
			|||||||
"    ssh-add ~/.ssh/<my-ssh-private-key-for-git-coopcloud-tech>"
 | 
					"    ssh-add ~/.ssh/<my-ssh-private-key-for-git-coopcloud-tech>"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/list.go:52
 | 
					#: cli/app/list.go:51
 | 
				
			||||||
msgid ""
 | 
					msgid ""
 | 
				
			||||||
"Generate a report of all managed apps.\n"
 | 
					"Generate a report of all managed apps.\n"
 | 
				
			||||||
"\n"
 | 
					"\n"
 | 
				
			||||||
@ -1017,7 +1013,7 @@ msgid "List all available commands"
 | 
				
			|||||||
msgstr "📋 Listar todos los comandos disponibles"
 | 
					msgstr "📋 Listar todos los comandos disponibles"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#. translators: Short description for `app list` command
 | 
					#. translators: Short description for `app list` command
 | 
				
			||||||
#: cli/app/list.go:51
 | 
					#: cli/app/list.go:50
 | 
				
			||||||
msgid "List all managed apps"
 | 
					msgid "List all managed apps"
 | 
				
			||||||
msgstr "📋 Listar todas plataformas 🚀 administradas"
 | 
					msgstr "📋 Listar todas plataformas 🚀 administradas"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -1184,7 +1180,7 @@ msgstr ""
 | 
				
			|||||||
msgid "README.md metadata filled in"
 | 
					msgid "README.md metadata filled in"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/list.go:227 cli/internal/deploy.go:79 cli/internal/deploy.go:209
 | 
					#: cli/app/list.go:221 cli/internal/deploy.go:79 cli/internal/deploy.go:209
 | 
				
			||||||
msgid "RECIPE"
 | 
					msgid "RECIPE"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -1319,7 +1315,7 @@ msgstr ""
 | 
				
			|||||||
msgid "Run app commands"
 | 
					msgid "Run app commands"
 | 
				
			||||||
msgstr "💻 Ejecutar comandos en una plataforma 🚀"
 | 
					msgstr "💻 Ejecutar comandos en una plataforma 🚀"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/backup.go:303 cli/app/list.go:300 cli/app/logs.go:109
 | 
					#: cli/app/backup.go:303 cli/app/list.go:292 cli/app/logs.go:109
 | 
				
			||||||
#: cli/app/new.go:389
 | 
					#: cli/app/new.go:389
 | 
				
			||||||
msgid "S"
 | 
					msgid "S"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@ -1332,7 +1328,7 @@ msgstr ""
 | 
				
			|||||||
msgid "SECRETS OVERVIEW"
 | 
					msgid "SECRETS OVERVIEW"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/list.go:227 cli/internal/deploy.go:80
 | 
					#: cli/app/list.go:221 cli/internal/deploy.go:80
 | 
				
			||||||
msgid "SERVER"
 | 
					msgid "SERVER"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -1358,7 +1354,7 @@ msgstr ""
 | 
				
			|||||||
msgid "SSO"
 | 
					msgid "SSO"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/list.go:230 cli/app/ps.go:186
 | 
					#: cli/app/list.go:224 cli/app/ps.go:186
 | 
				
			||||||
msgid "STATUS"
 | 
					msgid "STATUS"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -1554,7 +1550,7 @@ msgid ""
 | 
				
			|||||||
"  # and source this file from your PowerShell profile."
 | 
					"  # and source this file from your PowerShell profile."
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/deploy.go:434 cli/app/rollback.go:374 cli/app/upgrade.go:492
 | 
					#: cli/app/deploy.go:433 cli/app/rollback.go:373 cli/app/upgrade.go:491
 | 
				
			||||||
msgid "U"
 | 
					msgid "U"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -1566,7 +1562,7 @@ msgstr ""
 | 
				
			|||||||
msgid "UNDEPLOY"
 | 
					msgid "UNDEPLOY"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/list.go:233 cli/internal/deploy.go:174
 | 
					#: cli/app/list.go:227 cli/internal/deploy.go:174
 | 
				
			||||||
msgid "UPGRADE"
 | 
					msgid "UPGRADE"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -1655,19 +1651,19 @@ msgid ""
 | 
				
			|||||||
"\n"
 | 
					"\n"
 | 
				
			||||||
"Available Commands:{{range .Commands}}{{if (or .IsAvailableCommand (eq .Name "
 | 
					"Available Commands:{{range .Commands}}{{if (or .IsAvailableCommand (eq .Name "
 | 
				
			||||||
"\"help\"))}}\n"
 | 
					"\"help\"))}}\n"
 | 
				
			||||||
"  {{rpad .Name .NamePadding }} {{.Short}}{{end}}{{end}}{{end}}"
 | 
					"  {{rpad .Name .NamePadding }} {{.Short}}{{end}}{{end}}{{end}}{{if ."
 | 
				
			||||||
"{{if .HasAvailableLocalFlags}}\n"
 | 
					"HasAvailableLocalFlags}}\n"
 | 
				
			||||||
"\n"
 | 
					"\n"
 | 
				
			||||||
"Flags:\n"
 | 
					"Flags:\n"
 | 
				
			||||||
"{{.LocalFlags.FlagUsages | trimTrailingWhitespaces}}{{end}}"
 | 
					"{{.LocalFlags.FlagUsages | trimTrailingWhitespaces}}{{end}}{{if ."
 | 
				
			||||||
"{{if .HasAvailableInheritedFlags}}\n"
 | 
					"HasAvailableInheritedFlags}}\n"
 | 
				
			||||||
"\n"
 | 
					"\n"
 | 
				
			||||||
"Global Flags:\n"
 | 
					"Global Flags:\n"
 | 
				
			||||||
"{{.InheritedFlags.FlagUsages | trimTrailingWhitespaces}}{{end}}"
 | 
					"{{.InheritedFlags.FlagUsages | trimTrailingWhitespaces}}{{end}}{{if ."
 | 
				
			||||||
"{{if .HasHelpSubCommands}}\n"
 | 
					"HasHelpSubCommands}}\n"
 | 
				
			||||||
"\n"
 | 
					"\n"
 | 
				
			||||||
"Additional help topics:{{range .Commands}}"
 | 
					"Additional help topics:{{range .Commands}}{{if ."
 | 
				
			||||||
"{{if .IsAdditionalHelpTopicCommand}}\n"
 | 
					"IsAdditionalHelpTopicCommand}}\n"
 | 
				
			||||||
"  {{rpad .CommandPath .CommandPathPadding}} {{.Short}}{{end}}{{end}}{{end}}"
 | 
					"  {{rpad .CommandPath .CommandPathPadding}} {{.Short}}{{end}}{{end}}{{end}}"
 | 
				
			||||||
"{{if .HasAvailableSubCommands}}\n"
 | 
					"{{if .HasAvailableSubCommands}}\n"
 | 
				
			||||||
"\n"
 | 
					"\n"
 | 
				
			||||||
@ -1685,7 +1681,7 @@ msgstr ""
 | 
				
			|||||||
msgid "VALUE"
 | 
					msgid "VALUE"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/list.go:232 cli/app/ps.go:188 cli/app/secret.go:481
 | 
					#: cli/app/list.go:226 cli/app/ps.go:188 cli/app/secret.go:481
 | 
				
			||||||
#: cli/recipe/version.go:69 cli/recipe/version.go:110
 | 
					#: cli/recipe/version.go:69 cli/recipe/version.go:110
 | 
				
			||||||
msgid "VERSION"
 | 
					msgid "VERSION"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@ -1879,7 +1875,7 @@ msgstr "agregar [[server] | --local] [flags]"
 | 
				
			|||||||
msgid "add release note? (leave empty to skip)"
 | 
					msgid "add release note? (leave empty to skip)"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: pkg/app/app.go:515
 | 
					#: pkg/app/app.go:508
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid "adding env vars to %s service config"
 | 
					msgid "adding env vars to %s service config"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@ -1964,7 +1960,7 @@ msgstr ""
 | 
				
			|||||||
msgid "attempting to run %s"
 | 
					msgid "attempting to run %s"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/deploy.go:271 cli/app/upgrade.go:294
 | 
					#: cli/app/deploy.go:270 cli/app/upgrade.go:293
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid "attempting to run post deploy commands, saw: %s"
 | 
					msgid "attempting to run post deploy commands, saw: %s"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@ -2050,8 +2046,8 @@ msgstr ""
 | 
				
			|||||||
#. no spaces in between
 | 
					#. no spaces in between
 | 
				
			||||||
#. translators: `abra app cp` aliases. use a comma separated list of aliases with
 | 
					#. translators: `abra app cp` aliases. use a comma separated list of aliases with
 | 
				
			||||||
#. no spaces in between
 | 
					#. no spaces in between
 | 
				
			||||||
#: cli/app/backup.go:148 cli/app/cp.go:30 cli/app/deploy.go:418
 | 
					#: cli/app/backup.go:148 cli/app/cp.go:30 cli/app/deploy.go:417
 | 
				
			||||||
#: cli/app/rollback.go:366 cli/app/upgrade.go:476
 | 
					#: cli/app/rollback.go:365 cli/app/upgrade.go:475
 | 
				
			||||||
msgid "c"
 | 
					msgid "c"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -2108,7 +2104,7 @@ msgid ""
 | 
				
			|||||||
"cannot redeploy previous chaos version (%s), did you mean to use \"--chaos\"?"
 | 
					"cannot redeploy previous chaos version (%s), did you mean to use \"--chaos\"?"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/deploy.go:368
 | 
					#: cli/app/deploy.go:367
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid ""
 | 
					msgid ""
 | 
				
			||||||
"cannot redeploy previous chaos version (%s), did you mean to use \"--"
 | 
					"cannot redeploy previous chaos version (%s), did you mean to use \"--"
 | 
				
			||||||
@ -2130,7 +2126,7 @@ msgstr ""
 | 
				
			|||||||
msgid "cannot use '[secret] [version]' and '--all' together"
 | 
					msgid "cannot use '[secret] [version]' and '--all' together"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/deploy.go:310
 | 
					#: cli/app/deploy.go:309
 | 
				
			||||||
msgid "cannot use --chaos and --latest together"
 | 
					msgid "cannot use --chaos and --latest together"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -2154,11 +2150,11 @@ msgstr ""
 | 
				
			|||||||
msgid "cannot use [service] and --all-services/-a together"
 | 
					msgid "cannot use [service] and --all-services/-a together"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/deploy.go:302 cli/app/new.go:76
 | 
					#: cli/app/deploy.go:301 cli/app/new.go:76
 | 
				
			||||||
msgid "cannot use [version] and --chaos together"
 | 
					msgid "cannot use [version] and --chaos together"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/deploy.go:306
 | 
					#: cli/app/deploy.go:305
 | 
				
			||||||
msgid "cannot use [version] and --latest together"
 | 
					msgid "cannot use [version] and --latest together"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -2191,7 +2187,7 @@ msgid "cfg"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/backup.go:318 cli/app/backup.go:334 cli/app/check.go:94
 | 
					#: cli/app/backup.go:318 cli/app/backup.go:334 cli/app/check.go:94
 | 
				
			||||||
#: cli/app/cmd.go:284 cli/app/cp.go:384 cli/app/deploy.go:393
 | 
					#: cli/app/cmd.go:284 cli/app/cp.go:384 cli/app/deploy.go:392
 | 
				
			||||||
#: cli/app/labels.go:142 cli/app/new.go:396 cli/app/ps.go:212
 | 
					#: cli/app/labels.go:142 cli/app/new.go:396 cli/app/ps.go:212
 | 
				
			||||||
#: cli/app/restart.go:161 cli/app/restore.go:137 cli/app/secret.go:568
 | 
					#: cli/app/restart.go:161 cli/app/restore.go:137 cli/app/secret.go:568
 | 
				
			||||||
#: cli/app/secret.go:608 cli/app/secret.go:632 cli/app/secret.go:640
 | 
					#: cli/app/secret.go:608 cli/app/secret.go:632 cli/app/secret.go:640
 | 
				
			||||||
@ -2204,7 +2200,7 @@ msgstr ""
 | 
				
			|||||||
msgid "check <domain> [flags]"
 | 
					msgid "check <domain> [flags]"
 | 
				
			||||||
msgstr "verificar <domain> [flags]"
 | 
					msgstr "verificar <domain> [flags]"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/deploy.go:94 cli/app/undeploy.go:57 cli/app/upgrade.go:440
 | 
					#: cli/app/deploy.go:94 cli/app/undeploy.go:57 cli/app/upgrade.go:439
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid "checking whether %s is already deployed"
 | 
					msgid "checking whether %s is already deployed"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@ -2492,7 +2488,7 @@ msgstr ""
 | 
				
			|||||||
msgid "critical errors present in %s config"
 | 
					msgid "critical errors present in %s config"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/rollback.go:296
 | 
					#: cli/app/rollback.go:295
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid "current deployment '%s' is not a known version for %s"
 | 
					msgid "current deployment '%s' is not a known version for %s"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@ -2544,7 +2540,7 @@ msgstr ""
 | 
				
			|||||||
msgid "deploy labels stanza present"
 | 
					msgid "deploy labels stanza present"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/deploy.go:428
 | 
					#: cli/app/deploy.go:427
 | 
				
			||||||
#, fuzzy
 | 
					#, fuzzy
 | 
				
			||||||
msgid "deploy latest recipe version"
 | 
					msgid "deploy latest recipe version"
 | 
				
			||||||
msgstr "Publicar una nueva versión de una receta"
 | 
					msgstr "Publicar una nueva versión de una receta"
 | 
				
			||||||
@ -2647,11 +2643,11 @@ msgstr ""
 | 
				
			|||||||
msgid "dirty: %v, "
 | 
					msgid "dirty: %v, "
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/deploy.go:420 cli/app/rollback.go:368 cli/app/upgrade.go:478
 | 
					#: cli/app/deploy.go:419 cli/app/rollback.go:367 cli/app/upgrade.go:477
 | 
				
			||||||
msgid "disable converge logic checks"
 | 
					msgid "disable converge logic checks"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/deploy.go:412 cli/app/rollback.go:360 cli/app/upgrade.go:470
 | 
					#: cli/app/deploy.go:411 cli/app/rollback.go:359 cli/app/upgrade.go:469
 | 
				
			||||||
msgid "disable public DNS checks"
 | 
					msgid "disable public DNS checks"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -2874,8 +2870,8 @@ msgstr ""
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#. translators: `abra recipe fetch` aliases. use a comma separated list of aliases
 | 
					#. translators: `abra recipe fetch` aliases. use a comma separated list of aliases
 | 
				
			||||||
#. with no spaces in between
 | 
					#. with no spaces in between
 | 
				
			||||||
#: cli/app/deploy.go:402 cli/app/remove.go:163 cli/app/rollback.go:350
 | 
					#: cli/app/deploy.go:401 cli/app/remove.go:163 cli/app/rollback.go:349
 | 
				
			||||||
#: cli/app/secret.go:593 cli/app/upgrade.go:460 cli/app/volume.go:217
 | 
					#: cli/app/secret.go:593 cli/app/upgrade.go:459 cli/app/volume.go:217
 | 
				
			||||||
#: cli/recipe/fetch.go:20 cli/recipe/fetch.go:138
 | 
					#: cli/recipe/fetch.go:20 cli/recipe/fetch.go:138
 | 
				
			||||||
msgid "f"
 | 
					msgid "f"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@ -3102,8 +3098,8 @@ msgstr ""
 | 
				
			|||||||
msgid "filter by recipe"
 | 
					msgid "filter by recipe"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/deploy.go:401 cli/app/remove.go:162 cli/app/rollback.go:349
 | 
					#: cli/app/deploy.go:400 cli/app/remove.go:162 cli/app/rollback.go:348
 | 
				
			||||||
#: cli/app/upgrade.go:459 cli/app/volume.go:216 cli/recipe/fetch.go:137
 | 
					#: cli/app/upgrade.go:458 cli/app/volume.go:216 cli/recipe/fetch.go:137
 | 
				
			||||||
msgid "force"
 | 
					msgid "force"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -3162,7 +3158,7 @@ msgstr ""
 | 
				
			|||||||
msgid "generated secrets %s shown again, please take note of them %s"
 | 
					msgid "generated secrets %s shown again, please take note of them %s"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: pkg/app/compose.go:81
 | 
					#: pkg/app/compose.go:63
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid "get label '%s'"
 | 
					msgid "get label '%s'"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@ -3319,7 +3315,7 @@ msgid "id: %s, "
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/backup.go:321 cli/app/backup.go:337 cli/app/check.go:97
 | 
					#: cli/app/backup.go:321 cli/app/backup.go:337 cli/app/check.go:97
 | 
				
			||||||
#: cli/app/cmd.go:287 cli/app/cp.go:387 cli/app/deploy.go:396
 | 
					#: cli/app/cmd.go:287 cli/app/cp.go:387 cli/app/deploy.go:395
 | 
				
			||||||
#: cli/app/labels.go:145 cli/app/new.go:399 cli/app/ps.go:215
 | 
					#: cli/app/labels.go:145 cli/app/new.go:399 cli/app/ps.go:215
 | 
				
			||||||
#: cli/app/restart.go:164 cli/app/restore.go:140 cli/app/secret.go:571
 | 
					#: cli/app/restart.go:164 cli/app/restore.go:140 cli/app/secret.go:571
 | 
				
			||||||
#: cli/app/secret.go:611 cli/app/secret.go:635 cli/app/secret.go:643
 | 
					#: cli/app/secret.go:611 cli/app/secret.go:635 cli/app/secret.go:643
 | 
				
			||||||
@ -3508,7 +3504,7 @@ msgstr ""
 | 
				
			|||||||
#. no spaces in between
 | 
					#. no spaces in between
 | 
				
			||||||
#. translators: `abra recipe lint` aliases. use a comma separated list of
 | 
					#. translators: `abra recipe lint` aliases. use a comma separated list of
 | 
				
			||||||
#. aliases with no spaces in between
 | 
					#. aliases with no spaces in between
 | 
				
			||||||
#: cli/app/cmd.go:261 cli/app/deploy.go:426 cli/app/logs.go:20
 | 
					#: cli/app/cmd.go:261 cli/app/deploy.go:425 cli/app/logs.go:20
 | 
				
			||||||
#: cli/recipe/lint.go:17 cli/server/add.go:207
 | 
					#: cli/recipe/lint.go:17 cli/server/add.go:207
 | 
				
			||||||
msgid "l"
 | 
					msgid "l"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@ -3518,7 +3514,7 @@ msgstr ""
 | 
				
			|||||||
msgid "labels <domain> [flags]"
 | 
					msgid "labels <domain> [flags]"
 | 
				
			||||||
msgstr "etiquetas <domain> [flags]"
 | 
					msgstr "etiquetas <domain> [flags]"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/deploy.go:425 cli/app/list.go:188
 | 
					#: cli/app/deploy.go:424 cli/app/list.go:182
 | 
				
			||||||
msgid "latest"
 | 
					msgid "latest"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -3567,7 +3563,7 @@ msgstr "listar <domain> [flags]"
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#. translators: `app list` command
 | 
					#. translators: `app list` command
 | 
				
			||||||
#. translators: `server list` command
 | 
					#. translators: `server list` command
 | 
				
			||||||
#: cli/app/list.go:48 cli/server/list.go:23
 | 
					#: cli/app/list.go:47 cli/server/list.go:23
 | 
				
			||||||
msgid "list [flags]"
 | 
					msgid "list [flags]"
 | 
				
			||||||
msgstr "listar [flags]"
 | 
					msgstr "listar [flags]"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -3633,7 +3629,7 @@ msgstr ""
 | 
				
			|||||||
#. aliases with no spaces in between
 | 
					#. aliases with no spaces in between
 | 
				
			||||||
#. translators: `abra server list` aliases. use a comma separated list of
 | 
					#. translators: `abra server list` aliases. use a comma separated list of
 | 
				
			||||||
#. aliases with no spaces in between
 | 
					#. aliases with no spaces in between
 | 
				
			||||||
#: cli/app/backup.go:17 cli/app/cmd.go:203 cli/app/list.go:44
 | 
					#: cli/app/backup.go:17 cli/app/cmd.go:203 cli/app/list.go:43
 | 
				
			||||||
#: cli/app/secret.go:453 cli/app/volume.go:21 cli/recipe/list.go:19
 | 
					#: cli/app/secret.go:453 cli/app/volume.go:21 cli/recipe/list.go:19
 | 
				
			||||||
#: cli/server/list.go:19
 | 
					#: cli/server/list.go:19
 | 
				
			||||||
msgid "ls"
 | 
					msgid "ls"
 | 
				
			||||||
@ -3643,14 +3639,14 @@ msgstr "plataformas"
 | 
				
			|||||||
#. with no spaces in between
 | 
					#. with no spaces in between
 | 
				
			||||||
#. translators: `abra man` aliases. use a comma separated list of aliases
 | 
					#. translators: `abra man` aliases. use a comma separated list of aliases
 | 
				
			||||||
#. with no spaces in between
 | 
					#. with no spaces in between
 | 
				
			||||||
#: cli/app/list.go:323 cli/app/move.go:34 cli/app/ps.go:205
 | 
					#: cli/app/list.go:315 cli/app/move.go:34 cli/app/ps.go:205
 | 
				
			||||||
#: cli/app/secret.go:553 cli/app/secret.go:649 cli/recipe/list.go:104
 | 
					#: cli/app/secret.go:553 cli/app/secret.go:649 cli/recipe/list.go:104
 | 
				
			||||||
#: cli/recipe/upgrade.go:376 cli/recipe/version.go:139 cli/run.go:152
 | 
					#: cli/recipe/upgrade.go:376 cli/recipe/version.go:139 cli/run.go:152
 | 
				
			||||||
#: cli/server/list.go:106
 | 
					#: cli/server/list.go:106
 | 
				
			||||||
msgid "m"
 | 
					msgid "m"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/list.go:322 cli/app/ps.go:204 cli/app/secret.go:552
 | 
					#: cli/app/list.go:314 cli/app/ps.go:204 cli/app/secret.go:552
 | 
				
			||||||
#: cli/app/secret.go:648 cli/recipe/list.go:103 cli/recipe/upgrade.go:375
 | 
					#: cli/app/secret.go:648 cli/recipe/list.go:103 cli/recipe/upgrade.go:375
 | 
				
			||||||
#: cli/recipe/version.go:138 cli/server/list.go:105
 | 
					#: cli/recipe/version.go:138 cli/server/list.go:105
 | 
				
			||||||
msgid "machine"
 | 
					msgid "machine"
 | 
				
			||||||
@ -3813,7 +3809,7 @@ msgstr ""
 | 
				
			|||||||
msgid "no %s exists, skipping reading gitignore paths"
 | 
					msgid "no %s exists, skipping reading gitignore paths"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: pkg/app/compose.go:87
 | 
					#: pkg/app/compose.go:69
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid "no %s label found for %s"
 | 
					msgid "no %s label found for %s"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@ -3985,11 +3981,11 @@ msgstr ""
 | 
				
			|||||||
msgid "no volumes to remove"
 | 
					msgid "no volumes to remove"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/deploy.go:417 cli/app/rollback.go:365 cli/app/upgrade.go:475
 | 
					#: cli/app/deploy.go:416 cli/app/rollback.go:364 cli/app/upgrade.go:474
 | 
				
			||||||
msgid "no-converge-checks"
 | 
					msgid "no-converge-checks"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/deploy.go:409 cli/app/rollback.go:357 cli/app/upgrade.go:467
 | 
					#: cli/app/deploy.go:408 cli/app/rollback.go:356 cli/app/upgrade.go:466
 | 
				
			||||||
msgid "no-domain-checks"
 | 
					msgid "no-domain-checks"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -4047,7 +4043,7 @@ msgstr ""
 | 
				
			|||||||
msgid "only show errors"
 | 
					msgid "only show errors"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/upgrade.go:486
 | 
					#: cli/app/upgrade.go:485
 | 
				
			||||||
msgid "only show release notes"
 | 
					msgid "only show release notes"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -4081,22 +4077,22 @@ msgstr ""
 | 
				
			|||||||
msgid "parsed following command arguments: %s"
 | 
					msgid "parsed following command arguments: %s"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/upgrade.go:343
 | 
					#: cli/app/upgrade.go:342
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid "parsing chosen upgrade version failed: %s"
 | 
					msgid "parsing chosen upgrade version failed: %s"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/upgrade.go:387
 | 
					#: cli/app/upgrade.go:386
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid "parsing deployed version failed: %s"
 | 
					msgid "parsing deployed version failed: %s"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/upgrade.go:348
 | 
					#: cli/app/upgrade.go:347
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid "parsing deployment version failed: %s"
 | 
					msgid "parsing deployment version failed: %s"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/upgrade.go:354 cli/app/upgrade.go:393
 | 
					#: cli/app/upgrade.go:353 cli/app/upgrade.go:392
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid "parsing recipe version failed: %s"
 | 
					msgid "parsing recipe version failed: %s"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@ -4124,8 +4120,8 @@ msgstr ""
 | 
				
			|||||||
msgid "pattern"
 | 
					msgid "pattern"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/deploy.go:404 cli/app/remove.go:165 cli/app/rollback.go:352
 | 
					#: cli/app/deploy.go:403 cli/app/remove.go:165 cli/app/rollback.go:351
 | 
				
			||||||
#: cli/app/upgrade.go:462 cli/app/volume.go:219
 | 
					#: cli/app/upgrade.go:461 cli/app/volume.go:219
 | 
				
			||||||
msgid "perform action without further prompt"
 | 
					msgid "perform action without further prompt"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -4134,22 +4130,22 @@ msgstr ""
 | 
				
			|||||||
msgid "please fix your synced label for %s and re-run this command"
 | 
					msgid "please fix your synced label for %s and re-run this command"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/rollback.go:264
 | 
					#: cli/app/rollback.go:263
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid "please select a downgrade (version: %s):"
 | 
					msgid "please select a downgrade (version: %s):"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/rollback.go:269
 | 
					#: cli/app/rollback.go:268
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid "please select a downgrade (version: %s, chaos: %s):"
 | 
					msgid "please select a downgrade (version: %s, chaos: %s):"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/upgrade.go:310
 | 
					#: cli/app/upgrade.go:309
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid "please select an upgrade (version: %s):"
 | 
					msgid "please select an upgrade (version: %s):"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/upgrade.go:315
 | 
					#: cli/app/upgrade.go:314
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid "please select an upgrade (version: %s, chaos: %s):"
 | 
					msgid "please select an upgrade (version: %s, chaos: %s):"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@ -4171,7 +4167,7 @@ msgstr ""
 | 
				
			|||||||
msgid "previous git tags detected, assuming new semver release"
 | 
					msgid "previous git tags detected, assuming new semver release"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/list.go:325 cli/app/ps.go:207 cli/app/secret.go:555
 | 
					#: cli/app/list.go:317 cli/app/ps.go:207 cli/app/secret.go:555
 | 
				
			||||||
#: cli/app/secret.go:651 cli/recipe/list.go:106 cli/recipe/upgrade.go:378
 | 
					#: cli/app/secret.go:651 cli/recipe/list.go:106 cli/recipe/upgrade.go:378
 | 
				
			||||||
#: cli/recipe/version.go:141 cli/server/list.go:108
 | 
					#: cli/recipe/version.go:141 cli/server/list.go:108
 | 
				
			||||||
msgid "print machine-readable output"
 | 
					msgid "print machine-readable output"
 | 
				
			||||||
@ -4233,8 +4229,8 @@ msgstr ""
 | 
				
			|||||||
#. with no spaces in between
 | 
					#. with no spaces in between
 | 
				
			||||||
#. translators: `abra recipe` aliases. use a comma separated list of aliases
 | 
					#. translators: `abra recipe` aliases. use a comma separated list of aliases
 | 
				
			||||||
#. with no spaces in between
 | 
					#. with no spaces in between
 | 
				
			||||||
#: cli/app/backup.go:327 cli/app/list.go:308 cli/app/move.go:346
 | 
					#: cli/app/backup.go:327 cli/app/list.go:300 cli/app/move.go:346
 | 
				
			||||||
#: cli/app/run.go:23 cli/app/upgrade.go:484 cli/catalogue/catalogue.go:302
 | 
					#: cli/app/run.go:23 cli/app/upgrade.go:483 cli/catalogue/catalogue.go:302
 | 
				
			||||||
#: cli/recipe/recipe.go:12 cli/recipe/release.go:649 cli/recipe/sync.go:272
 | 
					#: cli/recipe/recipe.go:12 cli/recipe/release.go:649 cli/recipe/sync.go:272
 | 
				
			||||||
msgid "r"
 | 
					msgid "r"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@ -4250,13 +4246,13 @@ msgstr ""
 | 
				
			|||||||
msgid "read %s as tags for recipe %s"
 | 
					msgid "read %s as tags for recipe %s"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: pkg/app/app.go:582 pkg/config/env.go:50 pkg/envfile/envfile.go:42
 | 
					#: pkg/app/app.go:575 pkg/config/env.go:50 pkg/envfile/envfile.go:42
 | 
				
			||||||
#: pkg/envfile/envfile.go:80
 | 
					#: pkg/envfile/envfile.go:80
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid "read %s from %s"
 | 
					msgid "read %s from %s"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: pkg/app/app.go:584
 | 
					#: pkg/app/app.go:577
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid "read 0 command names from %s"
 | 
					msgid "read 0 command names from %s"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@ -4314,7 +4310,7 @@ msgid "readme: %s, "
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#. translators: `abra recipe` command for autocompletion
 | 
					#. translators: `abra recipe` command for autocompletion
 | 
				
			||||||
#: cli/app/list.go:307 cli/app/list.go:314 cli/run.go:99
 | 
					#: cli/app/list.go:299 cli/app/list.go:306 cli/run.go:99
 | 
				
			||||||
msgid "recipe"
 | 
					msgid "recipe"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -4353,7 +4349,7 @@ msgstr ""
 | 
				
			|||||||
msgid "release <recipe> [version] [flags]"
 | 
					msgid "release <recipe> [version] [flags]"
 | 
				
			||||||
msgstr "publicar <recipe> [version] [flags]"
 | 
					msgstr "publicar <recipe> [version] [flags]"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/upgrade.go:483
 | 
					#: cli/app/upgrade.go:482
 | 
				
			||||||
msgid "releasenotes"
 | 
					msgid "releasenotes"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -4556,7 +4552,7 @@ msgstr ""
 | 
				
			|||||||
msgid "retrieved %s configs for %s"
 | 
					msgid "retrieved %s configs for %s"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: pkg/app/app.go:506
 | 
					#: pkg/app/app.go:499
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid "retrieved %s for %s"
 | 
					msgid "retrieved %s for %s"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@ -4571,7 +4567,7 @@ msgstr ""
 | 
				
			|||||||
msgid "retrieved %v servers: %s"
 | 
					msgid "retrieved %v servers: %s"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: pkg/app/app.go:492
 | 
					#: pkg/app/app.go:485
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid "retrieved app statuses: %s"
 | 
					msgid "retrieved app statuses: %s"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@ -4654,7 +4650,7 @@ msgstr ""
 | 
				
			|||||||
msgid "run command locally"
 | 
					msgid "run command locally"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/deploy.go:269 cli/app/upgrade.go:291
 | 
					#: cli/app/deploy.go:268 cli/app/upgrade.go:290
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid "run the following post-deploy commands: %s"
 | 
					msgid "run the following post-deploy commands: %s"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@ -4698,7 +4694,7 @@ msgstr ""
 | 
				
			|||||||
#. translators: `abra server` aliases. use a comma separated list of aliases
 | 
					#. translators: `abra server` aliases. use a comma separated list of aliases
 | 
				
			||||||
#. with no spaces in between
 | 
					#. with no spaces in between
 | 
				
			||||||
#: cli/app/backup.go:198 cli/app/backup.go:263 cli/app/backup.go:287
 | 
					#: cli/app/backup.go:198 cli/app/backup.go:263 cli/app/backup.go:287
 | 
				
			||||||
#: cli/app/list.go:331 cli/app/logs.go:101 cli/app/new.go:358
 | 
					#: cli/app/list.go:323 cli/app/logs.go:101 cli/app/new.go:358
 | 
				
			||||||
#: cli/app/restore.go:114 cli/app/secret.go:535 cli/catalogue/catalogue.go:27
 | 
					#: cli/app/restore.go:114 cli/app/secret.go:535 cli/catalogue/catalogue.go:27
 | 
				
			||||||
#: cli/catalogue/catalogue.go:310 cli/recipe/fetch.go:130 cli/recipe/sync.go:24
 | 
					#: cli/catalogue/catalogue.go:310 cli/recipe/fetch.go:130 cli/recipe/sync.go:24
 | 
				
			||||||
#: cli/server/server.go:12
 | 
					#: cli/server/server.go:12
 | 
				
			||||||
@ -4743,12 +4739,12 @@ msgstr ""
 | 
				
			|||||||
msgid "secret not found: %s"
 | 
					msgid "secret not found: %s"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/deploy.go:338
 | 
					#: cli/app/deploy.go:337
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid "secret not generated: %s"
 | 
					msgid "secret not generated: %s"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/deploy.go:336
 | 
					#: cli/app/deploy.go:335
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid "secret not inserted (#generate=false): %s"
 | 
					msgid "secret not inserted (#generate=false): %s"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@ -4768,7 +4764,7 @@ msgid "secrets are %s shown again, please save them %s"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#. translators: `abra server` command for autocompletion
 | 
					#. translators: `abra server` command for autocompletion
 | 
				
			||||||
#: cli/app/list.go:330 cli/app/list.go:337 cli/app/new.go:357
 | 
					#: cli/app/list.go:322 cli/app/list.go:329 cli/app/new.go:357
 | 
				
			||||||
#: cli/app/new.go:364 cli/run.go:101
 | 
					#: cli/app/new.go:364 cli/run.go:101
 | 
				
			||||||
msgid "server"
 | 
					msgid "server"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@ -4820,8 +4816,8 @@ msgstr ""
 | 
				
			|||||||
#: cli/recipe/upgrade.go:228
 | 
					#: cli/recipe/upgrade.go:228
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid ""
 | 
					msgid ""
 | 
				
			||||||
"service %s is at version %s, but pinned to %s, please correct your "
 | 
					"service %s is at version %s, but pinned to %s, please correct your compose."
 | 
				
			||||||
"compose.yml file manually!"
 | 
					"yml file manually!"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/recipe/upgrade.go:224
 | 
					#: cli/recipe/upgrade.go:224
 | 
				
			||||||
@ -4842,27 +4838,22 @@ msgstr "servicios <domain> [flags]"
 | 
				
			|||||||
msgid "set 'main' as the default branch"
 | 
					msgid "set 'main' as the default branch"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: pkg/app/compose.go:69
 | 
					#: pkg/app/compose.go:30
 | 
				
			||||||
#, c-format
 | 
					 | 
				
			||||||
msgid "set label 'coop-cloud.%s.autoupdate' to %s for %s"
 | 
					 | 
				
			||||||
msgstr ""
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#: pkg/app/compose.go:31
 | 
					 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid "set label 'coop-cloud.%s.chaos' to %v for %s"
 | 
					msgid "set label 'coop-cloud.%s.chaos' to %v for %s"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: pkg/app/compose.go:42
 | 
					#: pkg/app/compose.go:41
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid "set label 'coop-cloud.%s.chaos-version' to %v for %s"
 | 
					msgid "set label 'coop-cloud.%s.chaos-version' to %v for %s"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: pkg/app/compose.go:52
 | 
					#: pkg/app/compose.go:51
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid "set label 'coop-cloud.%s.version' to %v for %s"
 | 
					msgid "set label 'coop-cloud.%s.version' to %v for %s"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: pkg/app/compose.go:19
 | 
					#: pkg/app/compose.go:18
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid "set recipe label 'coop-cloud.%s.recipe' to %s for %s"
 | 
					msgid "set recipe label 'coop-cloud.%s.recipe' to %s for %s"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@ -4876,7 +4867,7 @@ msgstr ""
 | 
				
			|||||||
msgid "severity"
 | 
					msgid "severity"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/deploy.go:436 cli/app/rollback.go:376 cli/app/upgrade.go:494
 | 
					#: cli/app/deploy.go:435 cli/app/rollback.go:375 cli/app/upgrade.go:493
 | 
				
			||||||
msgid "show all configs & images, including unchanged ones"
 | 
					msgid "show all configs & images, including unchanged ones"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -4884,15 +4875,15 @@ msgstr ""
 | 
				
			|||||||
msgid "show all paths"
 | 
					msgid "show all paths"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/list.go:302
 | 
					#: cli/app/list.go:294
 | 
				
			||||||
msgid "show app deployment status"
 | 
					msgid "show app deployment status"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/list.go:310
 | 
					#: cli/app/list.go:302
 | 
				
			||||||
msgid "show apps of a specific recipe"
 | 
					msgid "show apps of a specific recipe"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/list.go:333
 | 
					#: cli/app/list.go:325
 | 
				
			||||||
msgid "show apps of a specific server"
 | 
					msgid "show apps of a specific server"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -4900,7 +4891,7 @@ msgstr ""
 | 
				
			|||||||
msgid "show debug messages"
 | 
					msgid "show debug messages"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/deploy.go:433 cli/app/rollback.go:373 cli/app/upgrade.go:491
 | 
					#: cli/app/deploy.go:432 cli/app/rollback.go:372 cli/app/upgrade.go:490
 | 
				
			||||||
msgid "show-unchanged"
 | 
					msgid "show-unchanged"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -4948,11 +4939,11 @@ msgstr ""
 | 
				
			|||||||
msgid "skipping converge logic checks"
 | 
					msgid "skipping converge logic checks"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/deploy.go:197
 | 
					#: cli/app/deploy.go:196
 | 
				
			||||||
msgid "skipping domain checks"
 | 
					msgid "skipping domain checks"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/deploy.go:194
 | 
					#: cli/app/deploy.go:193
 | 
				
			||||||
msgid "skipping domain checks, no DOMAIN=... configured"
 | 
					msgid "skipping domain checks, no DOMAIN=... configured"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -4961,12 +4952,12 @@ msgstr ""
 | 
				
			|||||||
msgid "skipping generation of %s (generate=false)"
 | 
					msgid "skipping generation of %s (generate=false)"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: pkg/app/app.go:690
 | 
					#: pkg/app/app.go:683
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid "skipping version %s write as already exists in %s.env"
 | 
					msgid "skipping version %s write as already exists in %s.env"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: pkg/app/app.go:684
 | 
					#: pkg/app/app.go:677
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid "skipping writing version %s because dry run"
 | 
					msgid "skipping writing version %s because dry run"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@ -5031,7 +5022,7 @@ msgid ""
 | 
				
			|||||||
"generate --help\""
 | 
					"generate --help\""
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/list.go:299 cli/recipe/list.go:45
 | 
					#: cli/app/list.go:291 cli/recipe/list.go:45
 | 
				
			||||||
msgid "status"
 | 
					msgid "status"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -5153,7 +5144,7 @@ msgstr ""
 | 
				
			|||||||
msgid "timed out on undeploy (timeout=%v sec)"
 | 
					msgid "timed out on undeploy (timeout=%v sec)"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: pkg/app/compose.go:98
 | 
					#: pkg/app/compose.go:80
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid "timeout label: %s"
 | 
					msgid "timeout label: %s"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@ -5243,7 +5234,7 @@ msgstr ""
 | 
				
			|||||||
msgid "unable to clean up git clone of %s: %s"
 | 
					msgid "unable to clean up git clone of %s: %s"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/list.go:154
 | 
					#: cli/app/list.go:148
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid "unable to clone %s: %s"
 | 
					msgid "unable to clone %s: %s"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@ -5257,7 +5248,7 @@ msgstr ""
 | 
				
			|||||||
msgid "unable to continue, input required for initial version"
 | 
					msgid "unable to continue, input required for initial version"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: pkg/app/compose.go:103
 | 
					#: pkg/app/compose.go:85
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid "unable to convert timeout label %s to int: %s"
 | 
					msgid "unable to convert timeout label %s to int: %s"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@ -5357,7 +5348,7 @@ msgstr ""
 | 
				
			|||||||
msgid "unable to parse %s, skipping"
 | 
					msgid "unable to parse %s, skipping"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/list.go:169
 | 
					#: cli/app/list.go:163
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid "unable to parse %s, skipping as upgrade option"
 | 
					msgid "unable to parse %s, skipping as upgrade option"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@ -5430,7 +5421,7 @@ msgstr ""
 | 
				
			|||||||
msgid "unable to retrieve %s resources on %s: %s"
 | 
					msgid "unable to retrieve %s resources on %s: %s"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/list.go:159
 | 
					#: cli/app/list.go:153
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid "unable to retrieve tags for %s: %s"
 | 
					msgid "unable to retrieve tags for %s: %s"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@ -5514,11 +5505,10 @@ msgstr ""
 | 
				
			|||||||
msgid "unimplemented call: SetWriteDeadline(%v)"
 | 
					msgid "unimplemented call: SetWriteDeadline(%v)"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/labels.go:78 cli/app/list.go:117 cli/app/list.go:118
 | 
					#: cli/app/labels.go:78 cli/app/list.go:116 cli/app/list.go:117
 | 
				
			||||||
#: cli/app/list.go:119 cli/app/list.go:120 cli/app/list.go:121
 | 
					#: cli/app/list.go:118 cli/app/list.go:119 cli/app/list.go:180
 | 
				
			||||||
#: cli/app/list.go:186 cli/app/ps.go:125 cli/app/ps.go:126 cli/app/ps.go:127
 | 
					#: cli/app/ps.go:125 cli/app/ps.go:126 cli/app/ps.go:127 cli/app/ps.go:128
 | 
				
			||||||
#: cli/app/ps.go:128 cli/app/ps.go:129 cli/server/list.go:65
 | 
					#: cli/app/ps.go:129 cli/server/list.go:65 cli/server/list.go:77
 | 
				
			||||||
#: cli/server/list.go:77
 | 
					 | 
				
			||||||
msgid "unknown"
 | 
					msgid "unknown"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -5674,7 +5664,7 @@ msgstr ""
 | 
				
			|||||||
msgid "version"
 | 
					msgid "version"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: pkg/app/app.go:688
 | 
					#: pkg/app/app.go:681
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid "version %s saved to %s.env"
 | 
					msgid "version %s saved to %s.env"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@ -5699,32 +5689,32 @@ msgstr ""
 | 
				
			|||||||
msgid "version seems invalid: %s"
 | 
					msgid "version seems invalid: %s"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: pkg/app/app.go:627
 | 
					#: pkg/app/app.go:620
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid "version wiped from %s.env"
 | 
					msgid "version wiped from %s.env"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/deploy.go:352
 | 
					#: cli/app/deploy.go:351
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid "version: taking chaos version: %s"
 | 
					msgid "version: taking chaos version: %s"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/deploy.go:378
 | 
					#: cli/app/deploy.go:377
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid "version: taking deployed version: %s"
 | 
					msgid "version: taking deployed version: %s"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/deploy.go:383
 | 
					#: cli/app/deploy.go:382
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid "version: taking new recipe version: %s"
 | 
					msgid "version: taking new recipe version: %s"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/deploy.go:372
 | 
					#: cli/app/deploy.go:371
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid "version: taking version from .env file: %s"
 | 
					msgid "version: taking version from .env file: %s"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/deploy.go:358
 | 
					#: cli/app/deploy.go:357
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid "version: taking version from cli arg: %s"
 | 
					msgid "version: taking version from cli arg: %s"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@ -5850,8 +5840,8 @@ msgstr ""
 | 
				
			|||||||
msgid "writer: %v, "
 | 
					msgid "writer: %v, "
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: cli/app/deploy.go:276 cli/app/new.go:241 cli/app/rollback.go:253
 | 
					#: cli/app/deploy.go:275 cli/app/new.go:241 cli/app/rollback.go:252
 | 
				
			||||||
#: cli/app/undeploy.go:119 cli/app/upgrade.go:299
 | 
					#: cli/app/undeploy.go:119 cli/app/upgrade.go:298
 | 
				
			||||||
#, c-format
 | 
					#, c-format
 | 
				
			||||||
msgid "writing recipe version failed: %s"
 | 
					msgid "writing recipe version failed: %s"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user