]> source.dussan.org Git - tigervnc.git/commitdiff
Add comments for translators where requested
authorPierre Ossman <ossman@cendio.se>
Wed, 3 Dec 2014 13:00:54 +0000 (14:00 +0100)
committerPierre Ossman <ossman@cendio.se>
Wed, 3 Dec 2014 13:00:54 +0000 (14:00 +0100)
po/CMakeLists.txt
vncviewer/CConn.cxx
vncviewer/X11PixelBuffer.cxx
vncviewer/vncviewer.cxx

index b4c69792dacf87280a3575e652aca106fb0a8be6..513cfcc8e7cdd2c3b35e463a925c2a44c47f905d 100644 (file)
@@ -27,6 +27,7 @@ if (GETTEXT_XGETTEXT_EXECUTABLE)
       --msgid-bugs-address=tigervnc-devel@googlegroups.com
       --sort-by-file
       --add-location
+      --add-comments
       ${po_source}
     COMMENT "Updating tigervnc.pot"
     VERBATIM
index 23f07b4dba677cabbf5fcefb958a7ff7fce2146e..a73284769efacb4a776931f8c22b37bbc588b1df 100644 (file)
@@ -183,12 +183,15 @@ const char *CConn::connectionInfo()
   strcat(infoText, scratch);
   strcat(infoText, "\n");
 
+  // TRANSLATORS: Will be filled in with a string describing the
+  // protocol pixel format in a fairly language neutral way
   cp.pf().print(pfStr, 100);
   snprintf(scratch, sizeof(scratch),
            _("Pixel format: %s"), pfStr);
   strcat(infoText, scratch);
   strcat(infoText, "\n");
 
+  // TRANSLATORS: Similar to the earlier "Pixel format" string
   serverPF.print(pfStr, 100);
   snprintf(scratch, sizeof(scratch),
            _("(server default %s)"), pfStr);
@@ -426,6 +429,7 @@ void CConn::dataRect(const Rect& r, int encoding)
     lastServerEncoding = encoding;
 
   if (!Decoder::supported(encoding)) {
+    // TRANSLATORS: Refers to a VNC protocol encoding type
     vlog.error(_("Unknown rect encoding %d"), encoding);
     throw Exception(_("Unknown rect encoding"));
   }
index a7794277b70af85b1728cb3d1893846d1eba1a65..29f0f9333be2e888ff5a25fe263b757590762872 100644 (file)
@@ -56,6 +56,8 @@ static PixelFormat display_pf()
     if (format[i].depth == fl_visual->depth) break;
 
   if (i == nformats)
+    // TRANSLATORS: "pixmap" is an X11 concept and may not be suitable
+    // to translate.
     throw rfb::Exception(_("Display lacks pixmap format for default depth"));
 
   switch (format[i].bits_per_pixel) {
@@ -65,6 +67,8 @@ static PixelFormat display_pf()
     bpp = format[i].bits_per_pixel;
     break;
   default:
+    // TRANSLATORS: "pixmap" is an X11 concept and may not be suitable
+    // to translate.
     throw rfb::Exception(_("Couldn't find suitable pixmap format"));
   }
 
index cf52de5bff67fd45697b954fb5e8a716684ee443..bf4bfb189934227208c4f5fa5b25e9ebfa61c53d 100644 (file)
@@ -460,6 +460,8 @@ int main(int argc, char** argv)
 #ifndef WIN32
   /* Specifying -via and -listen together is nonsense */
   if (listenMode && strlen(via.getValueStr()) > 0) {
+    // TRANSLATORS: "Parameters" are command line arguments, or settings
+    // from a file or the Windows registry.
     vlog.error(_("Parameters -listen and -via are incompatible"));
     fl_alert(_("Parameters -listen and -via are incompatible"));
     exit_vncviewer();