Browse Source

Do not translate the encoding names: These are just that:

names. Besides, these names are also a part of the command line
syntax.



git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4628 3789f03b-4d11-0410-bbf8-ca57d06f2519
tags/v1.1.90
Peter Åstrand 13 years ago
parent
commit
4c44600b9b
1 changed files with 4 additions and 4 deletions
  1. 4
    4
      vncviewer/OptionsDialog.cxx

+ 4
- 4
vncviewer/OptionsDialog.cxx View File

@@ -417,28 +417,28 @@ void OptionsDialog::createCompressionPage(int tx, int ty, int tw, int th)
tightButton = new Fl_Round_Button(LBLRIGHT(tx, ty,
RADIO_MIN_WIDTH,
RADIO_HEIGHT,
_("Tight")));
"Tight"));
tightButton->type(FL_RADIO_BUTTON);
ty += RADIO_HEIGHT + TIGHT_MARGIN;

zrleButton = new Fl_Round_Button(LBLRIGHT(tx, ty,
RADIO_MIN_WIDTH,
RADIO_HEIGHT,
_("ZRLE")));
"ZRLE"));
zrleButton->type(FL_RADIO_BUTTON);
ty += RADIO_HEIGHT + TIGHT_MARGIN;

hextileButton = new Fl_Round_Button(LBLRIGHT(tx, ty,
RADIO_MIN_WIDTH,
RADIO_HEIGHT,
_("Hextile")));
"Hextile"));
hextileButton->type(FL_RADIO_BUTTON);
ty += RADIO_HEIGHT + TIGHT_MARGIN;

rawButton = new Fl_Round_Button(LBLRIGHT(tx, ty,
RADIO_MIN_WIDTH,
RADIO_HEIGHT,
_("Raw")));
"Raw"));
rawButton->type(FL_RADIO_BUTTON);
ty += RADIO_HEIGHT + TIGHT_MARGIN;
}

Loading…
Cancel
Save