summaryrefslogtreecommitdiffstats
path: root/vncviewer_unix/AboutDialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'vncviewer_unix/AboutDialog.h')
-rw-r--r--vncviewer_unix/AboutDialog.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/vncviewer_unix/AboutDialog.h b/vncviewer_unix/AboutDialog.h
index 2f54f66b..f242753a 100644
--- a/vncviewer_unix/AboutDialog.h
+++ b/vncviewer_unix/AboutDialog.h
@@ -25,12 +25,17 @@
#include "TXMsgBox.h"
#include "parameters.h"
+#include <intl/gettext.h>
+#define _(String) gettext (String)
+#define gettext_noop(String) String
+#define N_(String) gettext_noop (String)
+
extern char buildtime[];
class AboutDialog : public TXMsgBox {
public:
AboutDialog(Display* dpy)
- : TXMsgBox(dpy, aboutText, MB_OK, "About VNC Viewer") {
+ : TXMsgBox(dpy, aboutText, MB_OK, _("About VNC Viewer")) {
}
};