author | zecke <zecke> | 2004-09-10 11:39:07 (UTC) |
---|---|---|
committer | zecke <zecke> | 2004-09-10 11:39:07 (UTC) |
commit | 77ebc6898d1828b8c728838813c5ddd2bc25a424 (patch) (unidiff) | |
tree | 5bb26d9b0ca4a7ccd5854557b1d1572c0787675b | |
parent | eadf5111822801f02c71930e707ae5758a97712c (diff) | |
download | opie-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
-rw-r--r-- | noncore/settings/language/language.cpp | 5 |
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 | |||
@@ -87,26 +87,27 @@ LanguageSettings::LanguageSettings( QWidget* parent, const char* name, WFlags fl | |||
87 | dl = new QPEDialogListener(this); | 87 | dl = new QPEDialogListener(this); |
88 | reset(); | 88 | reset(); |
89 | } | 89 | } |
90 | 90 | ||
91 | LanguageSettings::~LanguageSettings() | 91 | LanguageSettings::~LanguageSettings() |
92 | {} | 92 | {} |
93 | 93 | ||
94 | void LanguageSettings::accept() | 94 | void LanguageSettings::accept() |
95 | { | 95 | { |
96 | Config c( "qpe" ); | 96 | Config c( "qpe" ); |
97 | c.setGroup( "Startup" ); | 97 | c.setGroup( "Startup" ); |
98 | if ( ( c.readNumEntry( "FirstUse", 42 ) == 0 ) && | 98 | if ( ( c.readNumEntry( "FirstUse", 42 ) == 0 ) && |
99 | ( QMessageBox::warning( this, "Language", "Attention, all windows will be closed\nby changing the language\n" | 99 | ( QMessageBox::warning( this, tr("Language"), tr("<qt>Attention, all windows will be closed by changing the language\n" |
100 | "without saving the Data.\n\nGo on?", "Ok", "Cancel", 0, 0, 1 ) ) ) | 100 | "without saving the Data.<br><br>Go on?</qt>"), 1, 2) ) |
101 | == QMessageBox::Cancel ) | ||
101 | return; | 102 | return; |
102 | applyLanguage(); | 103 | applyLanguage(); |
103 | QDialog::accept(); | 104 | QDialog::accept(); |
104 | } | 105 | } |
105 | 106 | ||
106 | void LanguageSettings::applyLanguage() | 107 | void LanguageSettings::applyLanguage() |
107 | { | 108 | { |
108 | setLanguage ( langAvail. at ( languages-> currentItem ( ))); | 109 | setLanguage ( langAvail. at ( languages-> currentItem ( ))); |
109 | } | 110 | } |
110 | 111 | ||
111 | 112 | ||
112 | void LanguageSettings::reject() | 113 | void LanguageSettings::reject() |