gpg-interface: mark a string for translation
Previous commits have marked a number of error or warning messages in "builtin/fast-export.c" and "builtin/fast-import.c" for translation. As "gpg-interface.c" code is used by the fast-export and fast-import code, we should make sure that error or warning messages are also all marked for translation in "gpg-interface.c". To ensure that, let's mark for translation an error message in a die() function. With this, all the error and warning messages emitted by fast-export and fast-import can be properly translated. Signed-off-by: Christian Couder <chriscool@tuxfamily.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Christian Couder committed
Oct 30, 2025 at 13:33 UTC
93cef5bda5f5d6f36b8442dd6bd871289bc48f10
1 file changed
+1
-1
gpg-interface.c
+1
-1
@@ -876,7 +876,7 @@ static char *get_default_ssh_signing_key(void)
876
n = split_cmdline(key_command, &argv);
877
878
if (n < 0)
879
- die("malformed build-time gpg.ssh.defaultKeyCommand: %s",
879
+ die(_("malformed build-time gpg.ssh.defaultKeyCommand: %s"),
880
split_cmdline_strerror(n));
881
882
strvec_pushv(&ssh_default_key.args, argv);