summaryrefslogtreecommitdiffstats
path: root/vncviewer/DesktopWindow.cxx
diff options
context:
space:
mode:
authorPierre Ossman <ossman@cendio.se>2014-09-22 12:54:26 +0200
committerPierre Ossman <ossman@cendio.se>2014-09-22 13:14:11 +0200
commit8ca4c1dec5c821c238c55563acc9fb9057329264 (patch)
tree64790ca926172492549d37ab58ca97c0177ed5a7 /vncviewer/DesktopWindow.cxx
parentf05f355ba5390f4d686aa3028a292daca7ad0352 (diff)
downloadtigervnc-8ca4c1dec5c821c238c55563acc9fb9057329264.tar.gz
tigervnc-8ca4c1dec5c821c238c55563acc9fb9057329264.zip
Make sure user visible strings are translated
Diffstat (limited to 'vncviewer/DesktopWindow.cxx')
-rw-r--r--vncviewer/DesktopWindow.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/vncviewer/DesktopWindow.cxx b/vncviewer/DesktopWindow.cxx
index d57d57ad..3579618e 100644
--- a/vncviewer/DesktopWindow.cxx
+++ b/vncviewer/DesktopWindow.cxx
@@ -103,7 +103,7 @@ DesktopWindow::DesktopWindow(int w, int h, const char *name,
break;
default:
geom_x = geom_y = 0;
- vlog.error("Invalid geometry specified!");
+ vlog.error(_("Invalid geometry specified!"));
}
}
}
@@ -324,7 +324,7 @@ void DesktopWindow::resize(int x, int y, int w, int h)
Fl::screen_xywh(sx, sy, sw, sh, i);
if ((sx == x) && (sy == y) && (sw == w) && (sh == h)) {
- vlog.info("Adjusting window size to avoid accidental full screen request");
+ vlog.info(_("Adjusting window size to avoid accidental full screen request"));
// Assume a panel of some form and adjust the height
y += 20;
h -= 40;
@@ -794,7 +794,7 @@ void DesktopWindow::remoteResize(int width, int height)
cc->cp.width, cc->cp.height, width, height, layout.num_screens());
if (!layout.validate(width, height)) {
- vlog.error("Invalid screen layout computed for resize request!");
+ vlog.error(_("Invalid screen layout computed for resize request!"));
return;
}