summaryrefslogtreecommitdiffstats
path: root/include/colors.h
diff options
context:
space:
mode:
authorSebastian Rasmussen2017-05-27 22:50:57 +0200
committerSebastian Rasmussen2017-05-28 07:30:45 +0200
commit25c7b43ee2f354c87082d3b3789adf2579f8c69f (patch)
tree15fe0178d2625f76bf29d5396bb601bb108cbb30 /include/colors.h
parentlibblkid: (docs) add missing 'since' tags (diff)
downloadkernel-qcow2-util-linux-25c7b43ee2f354c87082d3b3789adf2579f8c69f.tar.gz
kernel-qcow2-util-linux-25c7b43ee2f354c87082d3b3789adf2579f8c69f.tar.xz
kernel-qcow2-util-linux-25c7b43ee2f354c87082d3b3789adf2579f8c69f.zip
lib/colors: Fix bug where help text was not being translated.
This affected cfdisk, fdisk, sfdisk, cal, dmesg and hexdump.
Diffstat (limited to 'include/colors.h')
-rw-r--r--include/colors.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/colors.h b/include/colors.h
index bd34a4fa2..3636beb55 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);