diff options
author | Peter Åstrand <astrand@cendio.se> | 2011-08-15 12:33:06 +0000 |
---|---|---|
committer | Peter Åstrand <astrand@cendio.se> | 2011-08-15 12:33:06 +0000 |
commit | 4c44600b9b8c0ca5b5bf078470cdc4c1b4fc2c48 (patch) | |
tree | 79f1ff7be59175aee1b18b2e9023c736c106e80d /vncviewer/OptionsDialog.cxx | |
parent | b855b9706c20b6890224ed50778e1e4da53b154c (diff) | |
download | tigervnc-4c44600b9b8c0ca5b5bf078470cdc4c1b4fc2c48.tar.gz tigervnc-4c44600b9b8c0ca5b5bf078470cdc4c1b4fc2c48.zip |
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
Diffstat (limited to 'vncviewer/OptionsDialog.cxx')
-rw-r--r-- | vncviewer/OptionsDialog.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/vncviewer/OptionsDialog.cxx b/vncviewer/OptionsDialog.cxx index 191a311e..73ff551c 100644 --- a/vncviewer/OptionsDialog.cxx +++ b/vncviewer/OptionsDialog.cxx @@ -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; } |