From: Sebastian Rasmussen Date: Sat, 27 May 2017 20:50:57 +0000 (+0800) Subject: lib/colors: Fix bug where help text was not being translated. X-Git-Tag: v2.30~39 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=25c7b43ee2f354c87082d3b3789adf2579f8c69f;p=thirdparty%2Futil-linux.git lib/colors: Fix bug where help text was not being translated. This affected cfdisk, fdisk, sfdisk, cal, dmesg and hexdump. --- diff --git a/include/colors.h b/include/colors.h index bd34a4fa2a..3636beb558 100644 --- a/include/colors.h +++ b/include/colors.h @@ -24,9 +24,9 @@ enum colortmode { }; #ifdef USE_COLORS_BY_DEFAULT -# define USAGE_COLORS_DEFAULT N_("colors are enabled by default") +# define USAGE_COLORS_DEFAULT _("colors are enabled by default") #else -# define USAGE_COLORS_DEFAULT N_("colors are disabled by default") +# define USAGE_COLORS_DEFAULT _("colors are disabled by default") #endif extern int colormode_from_string(const char *str);