From eb83424b82270c680393c1a846a303fe6a75be4d Mon Sep 17 00:00:00 2001 From: Ryo Nakano Date: Sun, 5 May 2024 22:55:46 +0900 Subject: [PATCH] l10n: Correct GETTEXT_PACKAGE --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 8689208c..154c250b 100644 --- a/meson.build +++ b/meson.build @@ -24,7 +24,7 @@ add_project_arguments( config_data = configuration_data() config_data.set_quoted('LOCALEDIR', join_paths(get_option('prefix'), get_option('localedir'))) -config_data.set_quoted('GETTEXT_PACKAGE', meson.project_name() + '-plug') +config_data.set_quoted('GETTEXT_PACKAGE', gettext_name) config_file = configure_file( input: 'src/Config.vala.in', output: '@BASENAME@',