summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--i18n/en.json14
-rw-r--r--model/service_terms.go4
2 files changed, 7 insertions, 11 deletions
diff --git a/i18n/en.json b/i18n/en.json
index b664a30f5..eaa6d1014 100644
--- a/i18n/en.json
+++ b/i18n/en.json
@@ -3219,10 +3219,6 @@
"translation": "System Console is set to read-only when High Availability is enabled unless ReadOnlyConfig is disabled in the configuration file."
},
{
- "id": "ent.cluster.save_config.update_custom_service_terms_no_user.error",
- "translation": "Custom service terms can only be changed if provided with exactly one user id"
- },
- {
"id": "ent.compliance.bad_export_type.appError",
"translation": "Unknown output format {{.ExportType}}"
},
@@ -4756,7 +4752,7 @@
},
{
"id": "model.service_terms.is_valid.text.app_error",
- "translation": "Invalid terms of service text."
+ "translation": "Custom terms of service text is too long. Maximum {{.MaxLength}} characters allowed."
},
{
"id": "oauth.gitlab.tos.error",
@@ -6388,19 +6384,19 @@
},
{
"id": "store.sql_service_terms_store.save.existing.app_error",
- "translation": "Must not call save for existing service terms"
+ "translation": "Must not call save for existing terms of service."
},
{
"id": "store.sql_service_terms.save.app_error",
- "translation": "Unable to save service terms"
+ "translation": "Unable to save terms of service."
},
{
"id": "store.sql_service_terms_store.get.app_error",
- "translation": "Unable to fetch service terms"
+ "translation": "Unable to fetch terms of service."
},
{
"id": "store.sql_service_terms_store.get.no_rows.app_error",
- "translation": "No service terms found"
+ "translation": "No terms of service found."
},
{
"id": "system.message.name",
diff --git a/model/service_terms.go b/model/service_terms.go
index 64ecabf31..84ee0d395 100644
--- a/model/service_terms.go
+++ b/model/service_terms.go
@@ -53,12 +53,12 @@ func ServiceTermsFromJson(data io.Reader) *ServiceTerms {
}
func InvalidServiceTermsError(fieldName string, serviceTermsId string) *AppError {
- id := fmt.Sprintf("model.term.is_valid.%s.app_error", fieldName)
+ id := fmt.Sprintf("model.service_terms.is_valid.%s.app_error", fieldName)
details := ""
if serviceTermsId != "" {
details = "service_terms_id=" + serviceTermsId
}
- return NewAppError("ServiceTerms.IsValid", id, nil, details, http.StatusBadRequest)
+ return NewAppError("ServiceTerms.IsValid", id, map[string]interface{}{"MaxLength": POST_MESSAGE_MAX_RUNES_V2}, details, http.StatusBadRequest)
}
func (t *ServiceTerms) PreSave() {