From 64e401961449cfeaa72e3c8c5a4489da5abbabfd Mon Sep 17 00:00:00 2001 From: David Maciejak Date: Thu, 8 May 2014 20:16:06 +0200 Subject: [PATCH] wmaker: minor improvements to labels in the info panel The goal is to make them shorter/more correct --- src/dialog.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dialog.c b/src/dialog.c index 541bd748..da126ae5 100644 --- a/src/dialog.c +++ b/src/dialog.c @@ -1280,7 +1280,7 @@ void wShowInfoPanel(WScreen *scr) } #endif - strbuf = wstrappend(strbuf, _("Supported image formats: ")); + strbuf = wstrappend(strbuf, _("Image formats: ")); strl = RSupportedFileFormats(); separator = NULL; for (i = 0; strl[i] != NULL; i++) { @@ -1309,7 +1309,7 @@ void wShowInfoPanel(WScreen *scr) strbuf = wstrappend(strbuf, _("Xinerama: ")); { char tmp[128]; - snprintf(tmp, sizeof(tmp) - 1, _("%d heads found."), scr->xine_info.count); + snprintf(tmp, sizeof(tmp) - 1, _("%d head(s) found."), scr->xine_info.count); strbuf = wstrappend(strbuf, tmp); } #endif