diff options
Diffstat (limited to 'src/backend/utils/adt/pg_locale.c')
-rw-r--r-- | src/backend/utils/adt/pg_locale.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/utils/adt/pg_locale.c b/src/backend/utils/adt/pg_locale.c index d5003da4179..1dee4622d6d 100644 --- a/src/backend/utils/adt/pg_locale.c +++ b/src/backend/utils/adt/pg_locale.c @@ -2875,7 +2875,7 @@ icu_validate_locale(const char *loc_str) ereport(elevel, (errmsg("could not get language from ICU locale \"%s\": %s", loc_str, u_errorName(status)), - errhint("To disable ICU locale validation, set the parameter \"%s\" to \"%s\".", + errhint("To disable ICU locale validation, set the parameter %s to \"%s\".", "icu_validation_level", "disabled"))); return; } @@ -2904,7 +2904,7 @@ icu_validate_locale(const char *loc_str) ereport(elevel, (errmsg("ICU locale \"%s\" has unknown language \"%s\"", loc_str, lang), - errhint("To disable ICU locale validation, set the parameter \"%s\" to \"%s\".", + errhint("To disable ICU locale validation, set the parameter %s to \"%s\".", "icu_validation_level", "disabled"))); /* check that it can be opened */ |