summaryrefslogtreecommitdiff
path: root/noncore/settings/language
authorzecke <zecke>2004-09-10 11:39:07 (UTC)
committer zecke <zecke>2004-09-10 11:39:07 (UTC)
commit77ebc6898d1828b8c728838813c5ddd2bc25a424 (patch) (side-by-side diff)
tree5bb26d9b0ca4a7ccd5854557b1d1572c0787675b /noncore/settings/language
parenteadf5111822801f02c71930e707ae5758a97712c (diff)
downloadopie-77ebc6898d1828b8c728838813c5ddd2bc25a424.zip
opie-77ebc6898d1828b8c728838813c5ddd2bc25a424.tar.gz
opie-77ebc6898d1828b8c728838813c5ddd2bc25a424.tar.bz2
The messagebox can be translated now, use QMessageBox::Ok and
QMessageBox::Cancel so the translator only needs to translate the string once
Diffstat (limited to 'noncore/settings/language') (more/less context) (show whitespace changes)
-rw-r--r--noncore/settings/language/language.cpp5
1 files changed, 3 insertions, 2 deletions
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
@@ -75,50 +75,51 @@ LanguageSettings::LanguageSettings( QWidget* parent, const char* name, WFlags fl
ownName = conf.readEntryDirect( "Name" );
if ( !ownName.isEmpty() && ownName != langName )
langName = langName + " [" + ownName + "]";
languages->insertItem( langName );
}
}
if ( langAvail. find ( "en" ) == -1 ) {
langAvail. prepend ( "" ); // no tr
languages-> insertItem ( QString ( "English [%1] (%2)" /* no tr (!) */ ). arg ( tr ( "English" )). arg ( tr( "default" )), 0 );
}
dl = new QPEDialogListener(this);
reset();
}
LanguageSettings::~LanguageSettings()
{}
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("<qt>Attention, all windows will be closed by changing the language\n"
+ "without saving the Data.<br><br>Go on?</qt>"), 1, 2) )
+ == QMessageBox::Cancel )
return;
applyLanguage();
QDialog::accept();
}
void LanguageSettings::applyLanguage()
{
setLanguage ( langAvail. at ( languages-> currentItem ( )));
}
void LanguageSettings::reject()
{
reset();
QDialog::reject();
}
void LanguageSettings::reset()
{
QString l = getenv("LANG");
Config config("locale");
config.setGroup("Language");
l = config.readEntry( "Language", l );
actualLanguage = l;