author | zecke <zecke> | 2004-09-18 19:51:47 (UTC) |
---|---|---|
committer | zecke <zecke> | 2004-09-18 19:51:47 (UTC) |
commit | 2fbe0e4f36a826205cdd7aa70fae18a92b06d059 (patch) (unidiff) | |
tree | 86d4248a46ab07542a1417510906324430969837 | |
parent | af0d773a9991dec27d25c2ad6859ee2abe23c73a (diff) | |
download | opie-2fbe0e4f36a826205cdd7aa70fae18a92b06d059.zip opie-2fbe0e4f36a826205cdd7aa70fae18a92b06d059.tar.gz opie-2fbe0e4f36a826205cdd7aa70fae18a92b06d059.tar.bz2 |
Make MMC/SD inject/eject strings translatable
-rw-r--r-- | core/applets/cardmon/cardmon.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/applets/cardmon/cardmon.cpp b/core/applets/cardmon/cardmon.cpp index fb140fe..d6ac616 100644 --- a/core/applets/cardmon/cardmon.cpp +++ b/core/applets/cardmon/cardmon.cpp | |||
@@ -302,10 +302,10 @@ bool CardMonitor::getStatusSd( int showPopUp ) { | |||
302 | QString text = QString::null; | 302 | QString text = QString::null; |
303 | QString what = QString::null; | 303 | QString what = QString::null; |
304 | if ( cardInSd ) { | 304 | if ( cardInSd ) { |
305 | text += "New card: SD/MMC"; | 305 | text += tr("New card: SD/MMC"); |
306 | what = "on"; | 306 | what = "on"; |
307 | } else { | 307 | } else { |
308 | text += "Ejected: SD/MMC"; | 308 | text += tr("Ejected: SD/MMC"); |
309 | what = "off"; | 309 | what = "off"; |
310 | } | 310 | } |
311 | //odebug << "TEXT: " + text << oendl; | 311 | //odebug << "TEXT: " + text << oendl; |