From 7a478b1e0e2f1b83c18cca5b061d7ddd9b6e7ba5 Mon Sep 17 00:00:00 2001 From: Jordan Lee Date: Wed, 9 May 2012 17:37:14 +0000 Subject: [PATCH] sync the Qt pref dialog's terminology with the Gtk+ and Web UI's -- 'alternative speed limits' was listed as 'temporary speed limits' --- qt/prefs-dialog.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qt/prefs-dialog.cc b/qt/prefs-dialog.cc index 8c0828a25..244719b2e 100644 --- a/qt/prefs-dialog.cc +++ b/qt/prefs-dialog.cc @@ -235,7 +235,7 @@ PrefsDialog :: createSpeedTab( ) label->setPixmap( QPixmap( QString::fromAscii( ":/icons/alt-limit-off.png" ) ) ); label->setAlignment( Qt::AlignLeft|Qt::AlignVCenter ); h->addWidget( label ); - label = new QLabel( tr( "Temporary Speed Limits" ) ); + label = new QLabel( tr( "Alternative Speed Limits" ) ); label->setStyleSheet( QString::fromAscii( "font: bold" ) ); label->setAlignment( Qt::AlignLeft|Qt::AlignVCenter ); h->addWidget( label );