From: David Maciejak <david.macie...@gmail.com> 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 541bd74..da126ae 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 -- 1.9.2 -- To unsubscribe, send mail to wmaker-dev-unsubscr...@lists.windowmaker.org.