+2008-03-19 Benno Schulenberg <bensberg@justemail.net>
+ * help.c, nano.c: Fix toggle help not being translated, fix allocation
+ issue.
+
2008-03-19 Chris Allegretta <chrisa@asty.org>
* gloabl.c: Fix bracket matching sequence to be M-] not M-[, as reported
Nick Warne <nick@ukfsn.org>.
for (s = sclist; s != NULL; s = s->next)
if (s->scfunc == (void *) do_toggle)
- allocsize += strlen(flagtostr(s->toggle)) + endis_len + 9;
+ allocsize += strlen(_(flagtostr(s->toggle))) + endis_len + 9;
}
#endif
)
enabled = !enabled;
- desc = flagtostr(flag);
+ desc = _(flagtostr(flag));
statusbar("%s %s", desc, enabled ? _("enabled") :
_("disabled"));
}