Removed the N_() from module formats, the internationalization should be

done in theme files instead of in pot files..


git-svn-id: http://svn.irssi.org/repos/irssi/trunk@192 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2000-04-28 08:25:53 +00:00 committed by cras
commit 8cfcd1b40f
6 changed files with 219 additions and 219 deletions

View file

@ -23,11 +23,11 @@
FORMAT_REC fecommon_irc_flood_formats[] =
{
{ MODULE_NAME, N_("Flood"), 0 },
{ MODULE_NAME, "Flood", 0 },
/* ---- */
{ NULL, N_("Autoignore"), 0 },
{ NULL, "Autoignore", 0 },
{ "autoignore", N_("Flood detected from %_$0%_, autoignoring for %_$1%_ minutes"), 2, { 0, 1 } },
{ "autounignore", N_("Unignoring %_$0"), 1, { 0 } }
{ "autoignore", "Flood detected from %_$0%_, autoignoring for %_$1%_ minutes", 2, { 0, 1 } },
{ "autounignore", "Unignoring %_$0", 1, { 0 } }
};