1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-19 04:20:27 +01:00

wmaker: minor improvements to labels in the info panel

The goal is to make them shorter/more correct
This commit is contained in:
David Maciejak
2014-05-08 20:16:06 +02:00
committed by Carlos R. Mafra
parent 2eaac2a5d7
commit 64e4019614

View File

@@ -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