summaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/pg_locale.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2021-05-12 07:20:10 +0200
committerPeter Eisentraut <peter@eisentraut.org>2021-05-12 07:42:51 +0200
commitec6e70c79fffe9292402ee602d3742a8c7d31bd2 (patch)
tree617199e1c58f036694df7423a1273f297df172c4 /src/backend/utils/adt/pg_locale.c
parenta363bc6da96b14d27e1cae1bae97242eb6ade5e6 (diff)
Refactor some error messages for easier translation
Diffstat (limited to 'src/backend/utils/adt/pg_locale.c')
-rw-r--r--src/backend/utils/adt/pg_locale.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/adt/pg_locale.c b/src/backend/utils/adt/pg_locale.c
index eab089f252f..caa09d6373e 100644
--- a/src/backend/utils/adt/pg_locale.c
+++ b/src/backend/utils/adt/pg_locale.c
@@ -1586,7 +1586,7 @@ pg_newlocale_from_collation(Oid collid)
ereport(ERROR,
(errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
errmsg("ICU is not supported in this build"), \
- errhint("You need to rebuild PostgreSQL using --with-icu.")));
+ errhint("You need to rebuild PostgreSQL using %s.", "--with-icu")));
#endif /* not USE_ICU */
}