]> source.dussan.org Git - tigervnc.git/commitdiff
Move copyright year out of string to avoid re-translation
authorPierre Ossman <ossman@cendio.se>
Mon, 22 Sep 2014 10:59:38 +0000 (12:59 +0200)
committerPierre Ossman <ossman@cendio.se>
Mon, 22 Sep 2014 11:14:11 +0000 (13:14 +0200)
vncviewer/vncviewer.cxx

index c818d335f2a993be015da5ff098761577f88062b..aa9ae7ff31238ba381decafb8fbdb313a377f774 100644 (file)
@@ -79,7 +79,7 @@ using namespace std;
 
 static const char _aboutText[] = N_("TigerVNC Viewer %d-bit v%s (%s)\n"
                                     "%s\n"
-                                    "Copyright (C) 1999-2013 TigerVNC Team and many others (see README.txt)\n"
+                                    "Copyright (C) 1999-%d TigerVNC Team and many others (see README.txt)\n"
                                     "See http://www.tigervnc.org for information on TigerVNC.");
 static char aboutText[1024];
 
@@ -364,7 +364,8 @@ int main(int argc, char** argv)
 
   // Generate the about string now that we get the proper translation
   snprintf(aboutText, sizeof(aboutText), _aboutText,
-           (int)sizeof(size_t)*8, PACKAGE_VERSION, __BUILD__, buildTime);
+           (int)sizeof(size_t)*8, PACKAGE_VERSION, __BUILD__,
+           buildTime, 2014);
 
   rfb::SecurityClient::setDefaults();