From 77ebc6898d1828b8c728838813c5ddd2bc25a424 Mon Sep 17 00:00:00 2001 From: zecke Date: Fri, 10 Sep 2004 11:39:07 +0000 Subject: The messagebox can be translated now, use QMessageBox::Ok and QMessageBox::Cancel so the translator only needs to translate the string once --- (limited to 'noncore/settings') diff --git a/noncore/settings/language/language.cpp b/noncore/settings/language/language.cpp index 7707452..81d6717 100644 --- a/noncore/settings/language/language.cpp +++ b/noncore/settings/language/language.cpp @@ -96,8 +96,9 @@ void LanguageSettings::accept() Config c( "qpe" ); c.setGroup( "Startup" ); if ( ( c.readNumEntry( "FirstUse", 42 ) == 0 ) && - ( QMessageBox::warning( this, "Language", "Attention, all windows will be closed\nby changing the language\n" - "without saving the Data.\n\nGo on?", "Ok", "Cancel", 0, 0, 1 ) ) ) + ( QMessageBox::warning( this, tr("Language"), tr("Attention, all windows will be closed by changing the language\n" + "without saving the Data.

Go on?
"), 1, 2) ) + == QMessageBox::Cancel ) return; applyLanguage(); QDialog::accept(); -- cgit v0.9.0.2