]> git.ipfire.org Git - thirdparty/git.git/commitdiff
gpg-interface: mark a string for translation
authorChristian Couder <christian.couder@gmail.com>
Thu, 30 Oct 2025 12:33:32 +0000 (13:33 +0100)
committerJunio C Hamano <gitster@pobox.com>
Thu, 30 Oct 2025 14:06:58 +0000 (07:06 -0700)
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>
gpg-interface.c

index 91d1b58cb48d1e3597ab6a452c463c2558ced872..6b895f83ed98e862c90ed92ddb971bb258551284 100644 (file)
@@ -876,7 +876,7 @@ static char *get_default_ssh_signing_key(void)
        n = split_cmdline(key_command, &argv);
 
        if (n < 0)
-               die("malformed build-time gpg.ssh.defaultKeyCommand: %s",
+               die(_("malformed build-time gpg.ssh.defaultKeyCommand: %s"),
                    split_cmdline_strerror(n));
 
        strvec_pushv(&ssh_default_key.args, argv);