diff options
Diffstat (limited to '')
-rw-r--r-- | util/logger.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/util/logger.c b/util/logger.c index aabeaec7d..60f59da8a 100644 --- a/util/logger.c +++ b/util/logger.c @@ -24,6 +24,7 @@ #include <stdarg.h> #include "util.h" +#include "i18n.h" static char pidstring[15]; static char *pgm_name; @@ -173,13 +174,13 @@ g10_log_bug( const char *fmt, ... ) void g10_log_bug0( const char *file, int line, const char *func ) { - log_bug("you found a bug ... (%s:%d:%s)\n", file, line, func ); + log_bug(_("Ohhhh jeeee ... this is a bug (%s:%d:%s)\n"), file, line, func ); } #else void g10_log_bug0( const char *file, int line ) { - log_bug("you found a bug ... (%s:%d)\n", file, line); + log_bug(_("you found a bug ... (%s:%d)\n"), file, line); } #endif |