diff options
author | Timo Sirainen <cras@irssi.org> | 2001-05-17 20:13:59 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2001-05-17 20:13:59 +0000 |
commit | c2b2d45bd62ce410ba7ca8ac920d340b9ed1a527 (patch) | |
tree | 0d8256390680d8b7c34b9e294d9749e69db195c8 /src/fe-common/core/printtext.c | |
parent | fe5c94b050650c8b8f20278ea413fb1cc8d093dc (diff) | |
download | irssi-c2b2d45bd62ce410ba7ca8ac920d340b9ed1a527.zip |
Getting rid of gettext, moved some _(..) texts to themes and left some error
messages hard coded.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1503 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/fe-common/core/printtext.c')
-rw-r--r-- | src/fe-common/core/printtext.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fe-common/core/printtext.c b/src/fe-common/core/printtext.c index ab1eafcd..38de158d 100644 --- a/src/fe-common/core/printtext.c +++ b/src/fe-common/core/printtext.c @@ -414,9 +414,9 @@ static void sig_gui_dialog(const char *type, const char *text) char *format; if (g_strcasecmp(type, "warning") == 0) - format = _("%_Warning:%_ %s"); + format = "%_Warning:%_ %s"; else if (g_strcasecmp(type, "error") == 0) - format = _("%_Error:%_ %s"); + format = "%_Error:%_ %s"; else format = "%s"; |