Skip to content

Commit

Permalink
Merge pull request #101 from kaleido-io/missing-translation
Browse files Browse the repository at this point in the history
add translation missing from earlier PR
  • Loading branch information
peterbroadhurst authored Sep 25, 2023
2 parents 27e89cb + d279339 commit 6f614c3
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions pkg/i18n/en_base_config_descriptions.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,16 @@ var (
ConfigGlobalConnectionTimeout = ffc("config.global.connectionTimeout", "The maximum amount of time that a connection is allowed to remain with no data transmitted", TimeDurationType)
ConfigGlobalRequestTimeout = ffc("config.global.requestTimeout", "The maximum amount of time that a request is allowed to remain open", TimeDurationType)

ConfigGlobalRetryEnabled = ffc("config.global.retry.enabled", "Enables retries", BooleanType)
ConfigGlobalRetryFactor = ffc("config.global.retry.factor", "The retry backoff factor", FloatType)
ConfigGlobalRetryInitDelay = ffc("config.global.retry.initDelay", "The initial retry delay", TimeDurationType)
ConfigGlobalRetryInitialDelay = ffc("config.global.retry.initialDelay", "The initial retry delay", TimeDurationType)
ConfigGlobalRetryMaxDelay = ffc("config.global.retry.maxDelay", "The maximum retry delay", TimeDurationType)
ConfigGlobalRetryMaxAttempts = ffc("config.global.retry.maxAttempts", "The maximum number attempts", IntType)
ConfigGlobalRetryCount = ffc("config.global.retry.count", "The maximum number of times to retry", IntType)
ConfigGlobalInitWaitTime = ffc("config.global.retry.initWaitTime", "The initial retry delay", TimeDurationType)
ConfigGlobalMaxWaitTime = ffc("config.global.retry.maxWaitTime", "The maximum retry delay", TimeDurationType)
ConfigGlobalRetryEnabled = ffc("config.global.retry.enabled", "Enables retries", BooleanType)
ConfigGlobalRetryFactor = ffc("config.global.retry.factor", "The retry backoff factor", FloatType)
ConfigGlobalRetryInitDelay = ffc("config.global.retry.initDelay", "The initial retry delay", TimeDurationType)
ConfigGlobalRetryInitialDelay = ffc("config.global.retry.initialDelay", "The initial retry delay", TimeDurationType)
ConfigGlobalRetryMaxDelay = ffc("config.global.retry.maxDelay", "The maximum retry delay", TimeDurationType)
ConfigGlobalRetryMaxAttempts = ffc("config.global.retry.maxAttempts", "The maximum number attempts", IntType)
ConfigGlobalRetryCount = ffc("config.global.retry.count", "The maximum number of times to retry", IntType)
ConfigGlobalInitWaitTime = ffc("config.global.retry.initWaitTime", "The initial retry delay", TimeDurationType)
ConfigGlobalMaxWaitTime = ffc("config.global.retry.maxWaitTime", "The maximum retry delay", TimeDurationType)
ConfigGlobalErrorStatusCodeRegex = ffc("config.global.retry.errorStatusCodeRegex", "The regex that the error response status code must match to trigger retry", StringType)

ConfigGlobalUsername = ffc("config.global.auth.username", "Username", StringType)
ConfigGlobalPassword = ffc("config.global.auth.password", "Password", StringType)
Expand Down

0 comments on commit 6f614c3

Please sign in to comment.