e clock settings: full is back to not full, and remove translatable from last setting.

Thanks GArik!


SVN revision: 81696
This commit is contained in:
Chidambar Zinnoury 2012-12-25 18:05:10 +00:00
parent d65a8c1e5f
commit 62950bd494
1 changed files with 2 additions and 2 deletions

View File

@ -98,11 +98,11 @@ _todaystr_eval(Instance *inst, char *buf, int bufsz)
if (tm)
{
if (inst->cfg->show_date == 1)
strftime(buf, bufsz, _("%A, %e %B, %Y"), (const struct tm *)tm);
strftime(buf, bufsz, _("%a, %e %b, %Y"), (const struct tm *)tm);
else if (inst->cfg->show_date == 2)
strftime(buf, bufsz, _("%a, %x"), (const struct tm *)tm);
else if (inst->cfg->show_date == 3)
strftime(buf, bufsz, _("%x"), (const struct tm *)tm);
strftime(buf, bufsz, "%x", (const struct tm *)tm);
}
else
buf[0] = 0;