forked from qt-creator/qt-creator
tr()-Fixes.
- Capitalization - Fix lupdate warnings about tr() Usage in ZeroConf - Fix some messages. Change-Id: I95e4095ce54040e30d9a7968407bfc99b76643ff Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
This commit is contained in:
@@ -1008,7 +1008,7 @@ public:
|
||||
m_layout->addWidget(new QLabel(type), row, column++);
|
||||
for (int i = -1; i != typeFormats.size(); ++i) {
|
||||
QRadioButton *choice = new QRadioButton(this);
|
||||
choice->setText(i == -1 ? tr("Reset") : typeFormats.at(i));
|
||||
choice->setText(i == -1 ? TypeFormatsDialog::tr("Reset") : typeFormats.at(i));
|
||||
m_layout->addWidget(choice, row, column++);
|
||||
if (i == current)
|
||||
choice->setChecked(true);
|
||||
|
||||
Reference in New Issue
Block a user