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

InfoPanel: Minor fixes for what must be translated and what does not need to

This commit is contained in:
Christophe CURIS
2013-05-10 12:56:29 +02:00
committed by Carlos R. Mafra
parent aa5be46e94
commit 441145cfc0

View File

@@ -1257,7 +1257,8 @@ void wShowInfoPanel(WScreen * scr)
strbuf = wstrappend(strbuf, " ");
}
strbuf = wstrappend(strbuf, _("\nAdditional support for: WMSPEC"));
strbuf = wstrappend(strbuf, _("\nAdditional support for: "));
strbuf = wstrappend(strbuf, "WMSPEC");
#ifdef HAVE_XRANDR
strbuf = wstrappend(strbuf, ", XRandR ");
@@ -1279,7 +1280,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 heads found."), scr->xine_info.count);
strbuf = wstrappend(strbuf, tmp);
}
#endif