update translation string id to be more descriptive (#17002)
Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
Этот коммит содержится в:
коммит произвёл
GitHub
родитель
78532699d0
Коммит
157f9b5cae
@@ -3551,7 +3551,7 @@ func (s *ServiceSettings) isValid() *AppError {
|
||||
}
|
||||
|
||||
if *s.ConnectionSecurity == CONN_SECURITY_TLS && !*s.UseLetsEncrypt {
|
||||
appErr := NewAppError("Config.IsValid", "model.config.is_valid.tls_cert_file.app_error", nil, "", http.StatusBadRequest)
|
||||
appErr := NewAppError("Config.IsValid", "model.config.is_valid.tls_cert_file_missing.app_error", nil, "", http.StatusBadRequest)
|
||||
|
||||
if *s.TLSCertFile == "" {
|
||||
return appErr
|
||||
@@ -3559,7 +3559,7 @@ func (s *ServiceSettings) isValid() *AppError {
|
||||
return appErr
|
||||
}
|
||||
|
||||
appErr = NewAppError("Config.IsValid", "model.config.is_valid.tls_key_file.app_error", nil, "", http.StatusBadRequest)
|
||||
appErr = NewAppError("Config.IsValid", "model.config.is_valid.tls_key_file_missing.app_error", nil, "", http.StatusBadRequest)
|
||||
|
||||
if *s.TLSKeyFile == "" {
|
||||
return appErr
|
||||
|
||||
Ссылка в новой задаче
Block a user