From 62950bd49433cf896b276843d52c6550856cba1a Mon Sep 17 00:00:00 2001 From: Chidambar Zinnoury Date: Tue, 25 Dec 2012 18:05:10 +0000 Subject: [PATCH] e clock settings: full is back to not full, and remove translatable from last setting. Thanks GArik! SVN revision: 81696 --- src/modules/clock/e_mod_main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/clock/e_mod_main.c b/src/modules/clock/e_mod_main.c index 833f57a29..20d451648 100644 --- a/src/modules/clock/e_mod_main.c +++ b/src/modules/clock/e_mod_main.c @@ -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;