From: Christophe CURIS <[email protected]>
---
src/dialog.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/src/dialog.c b/src/dialog.c
index 3ff0214..c761f15 100644
--- a/src/dialog.c
+++ b/src/dialog.c
@@ -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
--
1.7.10.4
--
To unsubscribe, send mail to [email protected].