From: Cedric Duval Date: Mon, 26 Sep 2005 16:41:41 +0000 (+0000) Subject: Fixed use of gettext() instead of sgettext(). X-Git-Tag: upstream/0.6.1~2^2~148 X-Git-Url: https://git.deb.at/?a=commitdiff_plain;h=05213a4b7e811d9e52f733436422519439da248d;p=pkg%2Fabook.git Fixed use of gettext() instead of sgettext(). --- diff --git a/abook.c b/abook.c index 9458cfd..1ad38ca 100644 --- a/abook.c +++ b/abook.c @@ -740,14 +740,14 @@ add_email_add_item(int quiet, char *name, char *email) name, email, datafile, - *_("keybinding for yes|y"), - *_("keybinding for no|n")); + *S_("keybinding for yes|y"), + *S_("keybinding for no|n")); c = tolower(getc(in)); - if(c == *_("keybinding for no|n")) { + if(c == *S_("keybinding for no|n")) { fclose(in); return 0; } - } while(c != *_("keybinding for yes|y")); + } while(c != *S_("keybinding for yes|y")); fclose(in); }