diff options
author | Peter Eisentraut | 2024-06-06 19:21:58 +0000 |
---|---|---|
committer | Peter Eisentraut | 2024-06-06 19:21:58 +0000 |
commit | b0f2659c7d9bdf3ccfdd1548dfecf602b901f507 (patch) | |
tree | 379bf0eecef7b4ed10709cd8dd2507601331149e | |
parent | 7515982636902ad1e945b4606b02ee706dadb83e (diff) |
Add meson NLS support for pg_walsummary
-rw-r--r-- | src/bin/pg_walsummary/meson.build | 2 | ||||
-rw-r--r-- | src/bin/pg_walsummary/po/meson.build | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/src/bin/pg_walsummary/meson.build b/src/bin/pg_walsummary/meson.build index 30c108fa949..86b046e896d 100644 --- a/src/bin/pg_walsummary/meson.build +++ b/src/bin/pg_walsummary/meson.build @@ -28,3 +28,5 @@ tests += { ], } } + +subdir('po', if_found: libintl) diff --git a/src/bin/pg_walsummary/po/meson.build b/src/bin/pg_walsummary/po/meson.build new file mode 100644 index 00000000000..e8ce4a6a20c --- /dev/null +++ b/src/bin/pg_walsummary/po/meson.build @@ -0,0 +1,3 @@ +# Copyright (c) 2024, PostgreSQL Global Development Group + +nls_targets += [i18n.gettext('pg_walsummary-' + pg_version_major.to_string())] |