update translation string id to be more descriptive (#17002)

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
Этот коммит содержится в:
Ibrahim Serdar Acikgoz
2021-03-15 20:22:25 +03:00
коммит произвёл GitHub
родитель 78532699d0
Коммит 157f9b5cae
19 изменённых файлов: 38 добавлений и 38 удалений

Просмотреть файл

@@ -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