X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Fsupport.c;h=8cb4ecafd84a413b08c1a449e0e1809e7cedf649;hb=9b2d077c7f5dca6e4013f04318f7b83531fac387;hp=d292e846234a746e16ce90df31034b903dcba969;hpb=225e70a38b68cba219aeb7cb239f426ca739ed7d;p=ncmpc.git diff --git a/src/support.c b/src/support.c index d292e84..8cb4eca 100644 --- a/src/support.c +++ b/src/support.c @@ -23,18 +23,13 @@ #include #include "config.h" +#include "ncmpc.h" #include "support.h" #ifdef HAVE_LOCALE_H #include #endif -#ifdef DEBUG -#define D(x) x -#else -#define D(x) -#endif - #define BUFSIZE 1024 extern void screen_status_printf(char *format, ...); @@ -174,7 +169,7 @@ utf8_to_locale(char *utf8str) &error); if( error ) { - screen_status_printf("Error: Unable to convert characters to %s", + screen_status_printf(_("Error: Unable to convert characters to %s"), charset); D(g_printerr("utf8_to_locale(): %s\n", error->message)); g_error_free(error); @@ -203,7 +198,7 @@ locale_to_utf8(char *localestr) &error); if( error ) { - screen_status_printf("Error: Unable to convert characters to UTF-8"); + screen_status_printf(_("Error: Unable to convert characters to UTF-8")); D(g_printerr("locale_to_utf8: %s\n", error->message)); g_error_free(error); return g_strdup(localestr);