From: Max Lapan Date: Mon, 15 Mar 2010 14:28:42 +0000 (+0300) Subject: Add tr () to dialog checkboxes X-Git-Tag: v0.1~35 X-Git-Url: https://vcs.maemo.org/git/?a=commitdiff_plain;h=35cde5cddd5e6cd82e8020e18ae46541495b149e;hp=4532dbdbf761173ac30ae7dede777b607df9dddd;p=yandex-traffic Add tr () to dialog checkboxes --- diff --git a/settingsDialog.cpp b/settingsDialog.cpp index 82c2dc2..3e48230 100644 --- a/settingsDialog.cpp +++ b/settingsDialog.cpp @@ -118,13 +118,13 @@ void DisplaySettingsDialog::initChecks (QBoxLayout *layout) { QGridLayout *grid = new QGridLayout; - _showLight = new QCheckBox ("Light", this); + _showLight = new QCheckBox (tr ("Light"), this); _showLight->setChecked (settings ()->check (Settings::C_Light)); - _showRank = new QCheckBox ("Rank", this); + _showRank = new QCheckBox (tr ("Rank"), this); _showRank->setChecked (settings ()->check (Settings::C_Rank)); - _showTime = new QCheckBox ("Time", this); + _showTime = new QCheckBox (tr ("Time"), this); _showTime->setChecked (settings ()->check (Settings::C_Time)); - _showHint = new QCheckBox ("Hint", this); + _showHint = new QCheckBox (tr ("Hint"), this); _showHint->setChecked (settings ()->check (Settings::C_Hint)); grid->addWidget (_showLight, 0, 0);