-rw-r--r-- | core/applets/cardmon/cardmon.cpp | 84 | ||||
-rw-r--r-- | core/applets/cardmon/cardmon.h | 5 | ||||
-rw-r--r-- | core/applets/cardmon/cardmon.pro | 28 | ||||
-rw-r--r-- | i18n/de/libcardmonapplet.ts | 44 | ||||
-rw-r--r-- | i18n/en/libcardmonapplet.ts | 44 | ||||
-rw-r--r-- | i18n/es/libcardmonapplet.ts | 53 | ||||
-rw-r--r-- | i18n/fr/libcardmonapplet.ts | 44 | ||||
-rw-r--r-- | i18n/hu/libcardmonapplet.ts | 44 | ||||
-rw-r--r-- | i18n/ja/libcardmonapplet.ts | 44 | ||||
-rw-r--r-- | i18n/ko/libcardmonapplet.ts | 44 | ||||
-rw-r--r-- | i18n/no/libcardmonapplet.ts | 44 | ||||
-rw-r--r-- | i18n/pl/libcardmonapplet.ts | 44 | ||||
-rw-r--r-- | i18n/pt/libcardmonapplet.ts | 44 | ||||
-rw-r--r-- | i18n/pt_BR/libcardmonapplet.ts | 44 | ||||
-rw-r--r-- | i18n/sl/libcardmonapplet.ts | 44 | ||||
-rw-r--r-- | i18n/zh_CN/libcardmonapplet.ts | 44 | ||||
-rw-r--r-- | i18n/zh_TW/libcardmonapplet.ts | 44 |
17 files changed, 672 insertions, 70 deletions
diff --git a/core/applets/cardmon/cardmon.cpp b/core/applets/cardmon/cardmon.cpp index 9522b88..ac2aea2 100644 --- a/core/applets/cardmon/cardmon.cpp +++ b/core/applets/cardmon/cardmon.cpp @@ -49,12 +49,12 @@ CardMonitor::CardMonitor( QWidget *parent ) : QWidget( parent ), QCopChannel* sdChannel = new QCopChannel( "QPE/Card", this ); connect( sdChannel, SIGNAL(received(const QCString &, const QByteArray &)), this, SLOT(cardMessage( const QCString &, const QByteArray &)) ); - setFixedSize( pm.size() ); - hide(); - getStatusPcmcia(); + getStatusPcmcia(TRUE); + getStatusSd(TRUE); + repaint(FALSE); } CardMonitor::~CardMonitor() { } @@ -64,65 +64,71 @@ void CardMonitor::mousePressEvent( QMouseEvent * ) { QString cmd; int err=0; if ( cardInSd ) { - menu->insertItem( tr("Eject SD/ MMC card"), 0 ); + menu->insertItem( tr("Eject SD/MMC card"), 0 ); } if ( cardInPcmcia0 ) { - menu->insertItem( tr("Eject card (0) %1").arg(cardInPcmcia0Name), 1 ); + menu->insertItem( tr("Eject card 0: %1").arg(cardInPcmcia0Name), 1 ); } if ( cardInPcmcia1 ) { - menu->insertItem( tr("Eject card (1) %1").arg(cardInPcmcia1Name), 2 ); + menu->insertItem( tr("Eject card 1: %1").arg(cardInPcmcia1Name), 2 ); } - QPoint p = mapToGlobal( QPoint(1, -menu->sizeHint().height()-1) ); + QPoint p = mapToGlobal ( QPoint ( 0, 0 )); + QSize s = menu->sizeHint ( ); + int opt = menu->exec( QPoint ( + p. x ( ) + ( width ( ) / 2 ) - ( s. width ( ) / 2 ), + p. y ( ) - s. height ( ) ), 0); - if ( menu->exec( p, 1 ) == 1 ) { + if ( opt == 1 ) { cmd = "/sbin/cardctl eject 0"; err = system( (const char *) cmd ); if ( ( err == 127 ) || ( err < 0 ) ) { qDebug("Could not execute `/sbin/cardctl eject 0'! err=%d", err); QMessageBox::warning( this, tr("CardMonitor"), tr("CF/PCMCIA card eject failed!"), tr("&OK") ); - } - } else if ( menu->exec( p, 1 ) == 0 ) { + } + } else if ( opt == 0 ) { cmd = "/etc/sdcontrol compeject"; err = system( (const char *) cmd ); if ( ( err != 0 ) ) { qDebug("Could not execute `/etc/sdcontrol comeject'! err=%d", err); QMessageBox::warning( this, tr("CardMonitor"), tr("SD/MMC card eject failed!"), tr("&OK") ); - } - } else if ( menu->exec( p, 1 ) == 2 ) { + } + } else if ( opt == 2 ) { cmd = "/sbin/cardctl eject 1"; err = system( (const char *) cmd ); if ( ( err == 127 ) || ( err < 0 ) ) { qDebug("Could not execute `/sbin/cardctl eject 1'! err=%d", err); QMessageBox::warning( this, tr("CardMonitor"), tr("CF/PCMCIA card eject failed!"), tr("&OK") ); - } + } } delete menu; } void CardMonitor::cardMessage( const QCString &msg, const QByteArray & ) { if ( msg == "stabChanged()" ) { + // qDebug("Pcmcia: stabchanged"); if ( getStatusPcmcia() ) { repaint(FALSE); } } else if ( msg == "mtabChanged()" ) { + // qDebug("Pcmcia: mtabchanged"); if ( getStatusSd() ) { repaint(FALSE); } } } -bool CardMonitor::getStatusPcmcia( void ) { +bool CardMonitor::getStatusPcmcia( int showPopUp = FALSE ) { bool cardWas0 = cardInPcmcia0; // remember last state bool cardWas1 = cardInPcmcia1; @@ -146,24 +152,23 @@ bool CardMonitor::getStatusPcmcia( void ) { streamIn = stream.read(); list = QStringList::split("\n", streamIn); for(QStringList::Iterator line=list.begin(); line!=list.end(); line++) { if( (*line).startsWith("Socket 0:") ){ - // extendable, maybe read out card name if( (*line).startsWith("Socket 0: empty") && cardInPcmcia0 ){ cardInPcmcia0 = FALSE; - hide(); } else if ( !(*line).startsWith("Socket 0: empty") && !cardInPcmcia0 ){ cardInPcmcia0Name = (*line).mid(((*line).find(':')+1), (*line).length()-9 ); + cardInPcmcia0Name.stripWhiteSpace(); cardInPcmcia0 = TRUE; show(); } } if( (*line).startsWith("Socket 1:") ){ if( (*line).startsWith("Socket 1: empty") && cardInPcmcia1 ){ cardInPcmcia1 = FALSE; - hide(); } else if ( !(*line).startsWith("Socket 1: empty") && !cardInPcmcia1 ){ cardInPcmcia1Name = (*line).mid(((*line).find(':')+1), (*line).length()-9 ); + cardInPcmcia1Name.stripWhiteSpace(); cardInPcmcia1 = TRUE; show(); } } @@ -172,20 +177,42 @@ bool CardMonitor::getStatusPcmcia( void ) { // no file found qDebug("no file found"); cardInPcmcia0 = FALSE; cardInPcmcia1 = FALSE; - hide(); return FALSE; } + if(!cardInPcmcia0 && !cardInPcmcia1) { + qDebug("Pcmcia: no cards"); + } + + if( !showPopUp && (cardWas0 != cardInPcmcia0 || cardWas1 != cardInPcmcia1)) { + QString text = ""; + if(cardWas0 != cardInPcmcia0) { + if(cardInPcmcia0) { text += tr("New card: "); } + else { text += tr("Ejected: "); } + text += cardInPcmcia0Name; + } + if(cardWas0 != cardInPcmcia0 && cardWas1 != cardInPcmcia1) { + text += "\n"; + } + if(cardWas1 != cardInPcmcia1) { + if(cardInPcmcia1) { text += tr("New card: "); } + else { text += tr("Ejected: "); } + text += cardInPcmcia1Name; + } + QMessageBox::warning( this, tr("CardMonitor"), text, + tr("&OK") ); + } + f.close(); return ((cardWas0 == cardInPcmcia0 || cardWas1 == cardInPcmcia1) ? FALSE : TRUE); } -bool CardMonitor::getStatusSd( void ) { +bool CardMonitor::getStatusSd( int showPopUp = FALSE ) { bool cardWas=cardInSd; // remember last state cardInSd=false; @@ -200,18 +227,17 @@ bool CardMonitor::getStatusSd( void ) { cardInSd=true; } } endmntent( mntfp ); - if (cardInSd!=cardWas) { - if (cardInSd) { - show(); - } else { - hide(); - } - } - } else { - hide(); } + if(!showPopUp && cardWas != cardInSd) { + QString text = ""; + if(cardInSd) { text += "SD Inserted"; } + else { text += "SD Removed"; } + QMessageBox::warning( this, tr("CardMonitor"), text, + tr("&OK") ); + } + #else #error "Not on Linux" #endif return ((cardWas == cardInSd) ? FALSE : TRUE); @@ -221,10 +247,12 @@ void CardMonitor::paintEvent( QPaintEvent * ) { QPainter p( this ); if ( cardInPcmcia0 || cardInPcmcia1 || cardInSd ) { p.drawPixmap( 0, 0, pm ); + show(); } else { p.eraseRect( rect() ); + hide(); } } diff --git a/core/applets/cardmon/cardmon.h b/core/applets/cardmon/cardmon.h index 2a90c90..f9e3819 100644 --- a/core/applets/cardmon/cardmon.h +++ b/core/applets/cardmon/cardmon.h @@ -26,10 +26,10 @@ class CardMonitor : public QWidget { Q_OBJECT public: CardMonitor( QWidget *parent = 0 ); ~CardMonitor(); - bool getStatusPcmcia( void ); - bool getStatusSd( void ); + bool getStatusPcmcia( int showPopUp = FALSE ); + bool getStatusSd( int showPopUp = FALSE ); private slots: void cardMessage( const QCString &msg, const QByteArray & ); @@ -44,8 +44,9 @@ private: // pcmcia socket 1 bool cardInPcmcia1; QString cardInPcmcia1Name; bool cardInSd; + void iconShow(); }; #endif diff --git a/core/applets/cardmon/cardmon.pro b/core/applets/cardmon/cardmon.pro index ff3463c..e79e91a 100644 --- a/core/applets/cardmon/cardmon.pro +++ b/core/applets/cardmon/cardmon.pro @@ -8,18 +8,18 @@ INCLUDEPATH += $(OPIEDIR)/include DEPENDPATH += $(OPIEDIR)/include ../launcher LIBS += -lqpe VERSION = 1.0.0 -TRANSLATIONS = ../i18n/de/libcardmonapplet.ts -TRANSLATIONS += ../i18n/es/libcardmonapplet.ts -TRANSLATIONS += ../i18n/pt/libcardmonapplet.ts -TRANSLATIONS += ../i18n/pt_BR/libcardmonapplet.ts -TRANSLATIONS += ../i18n/en/libcardmonapplet.ts -TRANSLATIONS += ../i18n/hu/libcardmonapplet.ts -TRANSLATIONS += ../i18n/sl/libcardmonapplet.ts -TRANSLATIONS += ../i18n/pl/libcardmonapplet.ts -TRANSLATIONS += ../i18n/ja/libcardmonapplet.ts -TRANSLATIONS += ../i18n/fr/libcardmonapplet.ts -TRANSLATIONS += ../i18n/ko/libcardmonapplet.ts -TRANSLATIONS += ../i18n/no/libcardmonapplet.ts -TRANSLATIONS += ../i18n/zh_CN/libcardmonapplet.ts -TRANSLATIONS += ../i18n/zh_TW/libcardmonapplet.ts +TRANSLATIONS = ../../i18n/de/libcardmonapplet.ts +TRANSLATIONS += ../../i18n/es/libcardmonapplet.ts +TRANSLATIONS += ../../i18n/pt/libcardmonapplet.ts +TRANSLATIONS += ../../i18n/pt_BR/libcardmonapplet.ts +TRANSLATIONS += ../../i18n/en/libcardmonapplet.ts +TRANSLATIONS += ../../i18n/hu/libcardmonapplet.ts +TRANSLATIONS += ../../i18n/sl/libcardmonapplet.ts +TRANSLATIONS += ../../i18n/pl/libcardmonapplet.ts +TRANSLATIONS += ../../i18n/ja/libcardmonapplet.ts +TRANSLATIONS += ../../i18n/fr/libcardmonapplet.ts +TRANSLATIONS += ../../i18n/ko/libcardmonapplet.ts +TRANSLATIONS += ../../i18n/no/libcardmonapplet.ts +TRANSLATIONS += ../../i18n/zh_CN/libcardmonapplet.ts +TRANSLATIONS += ../../i18n/zh_TW/libcardmonapplet.ts diff --git a/i18n/de/libcardmonapplet.ts b/i18n/de/libcardmonapplet.ts index 67c09b9..687958e 100644 --- a/i18n/de/libcardmonapplet.ts +++ b/i18n/de/libcardmonapplet.ts @@ -2,20 +2,60 @@ <context> <name>CardMonitor</name> <message> <source>Eject card</source> - <translation type="unfinished"></translation> + <translation type="obsolete"></translation> </message> <message> <source>CardMonitor</source> <translation type="unfinished"></translation> </message> <message> <source>Card eject failed!</source> - <translation type="unfinished"></translation> + <translation type="obsolete"></translation> </message> <message> <source>&OK</source> <translation type="unfinished"></translation> </message> + <message> + <source>Eject SD/ MMC card</source> + <translation type="obsolete"></translation> + </message> + <message> + <source>Eject %1 (0)</source> + <translation type="obsolete"></translation> + </message> + <message> + <source>Eject %1 (1)</source> + <translation type="obsolete"></translation> + </message> + <message> + <source>CF/PCMCIA card eject failed!</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>SD/MMC card eject failed!</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>New card: </source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Ejected: </source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Eject SD/MMC card</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Eject card 0: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Eject card 1: %1</source> + <translation type="unfinished"></translation> + </message> </context> </TS> diff --git a/i18n/en/libcardmonapplet.ts b/i18n/en/libcardmonapplet.ts index 67c09b9..687958e 100644 --- a/i18n/en/libcardmonapplet.ts +++ b/i18n/en/libcardmonapplet.ts @@ -2,20 +2,60 @@ <context> <name>CardMonitor</name> <message> <source>Eject card</source> - <translation type="unfinished"></translation> + <translation type="obsolete"></translation> </message> <message> <source>CardMonitor</source> <translation type="unfinished"></translation> </message> <message> <source>Card eject failed!</source> - <translation type="unfinished"></translation> + <translation type="obsolete"></translation> </message> <message> <source>&OK</source> <translation type="unfinished"></translation> </message> + <message> + <source>Eject SD/ MMC card</source> + <translation type="obsolete"></translation> + </message> + <message> + <source>Eject %1 (0)</source> + <translation type="obsolete"></translation> + </message> + <message> + <source>Eject %1 (1)</source> + <translation type="obsolete"></translation> + </message> + <message> + <source>CF/PCMCIA card eject failed!</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>SD/MMC card eject failed!</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>New card: </source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Ejected: </source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Eject SD/MMC card</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Eject card 0: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Eject card 1: %1</source> + <translation type="unfinished"></translation> + </message> </context> </TS> diff --git a/i18n/es/libcardmonapplet.ts b/i18n/es/libcardmonapplet.ts new file mode 100644 index 0000000..4882e21 --- a/dev/null +++ b/i18n/es/libcardmonapplet.ts @@ -0,0 +1,53 @@ +<!DOCTYPE TS><TS> +<context> + <name>CardMonitor</name> + <message> + <source>Eject SD/ MMC card</source> + <translation type="obsolete"></translation> + </message> + <message> + <source>Eject %1 (0)</source> + <translation type="obsolete"></translation> + </message> + <message> + <source>Eject %1 (1)</source> + <translation type="obsolete"></translation> + </message> + <message> + <source>CardMonitor</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>CF/PCMCIA card eject failed!</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>&OK</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>SD/MMC card eject failed!</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>New card: </source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Ejected: </source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Eject SD/MMC card</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Eject card 0: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Eject card 1: %1</source> + <translation type="unfinished"></translation> + </message> +</context> +</TS> diff --git a/i18n/fr/libcardmonapplet.ts b/i18n/fr/libcardmonapplet.ts index 67c09b9..687958e 100644 --- a/i18n/fr/libcardmonapplet.ts +++ b/i18n/fr/libcardmonapplet.ts @@ -2,20 +2,60 @@ <context> <name>CardMonitor</name> <message> <source>Eject card</source> - <translation type="unfinished"></translation> + <translation type="obsolete"></translation> </message> <message> <source>CardMonitor</source> <translation type="unfinished"></translation> </message> <message> <source>Card eject failed!</source> - <translation type="unfinished"></translation> + <translation type="obsolete"></translation> </message> <message> <source>&OK</source> <translation type="unfinished"></translation> </message> + <message> + <source>Eject SD/ MMC card</source> + <translation type="obsolete"></translation> + </message> + <message> + <source>Eject %1 (0)</source> + <translation type="obsolete"></translation> + </message> + <message> + <source>Eject %1 (1)</source> + <translation type="obsolete"></translation> + </message> + <message> + <source>CF/PCMCIA card eject failed!</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>SD/MMC card eject failed!</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>New card: </source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Ejected: </source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Eject SD/MMC card</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Eject card 0: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Eject card 1: %1</source> + <translation type="unfinished"></translation> + </message> </context> </TS> diff --git a/i18n/hu/libcardmonapplet.ts b/i18n/hu/libcardmonapplet.ts index 67c09b9..687958e 100644 --- a/i18n/hu/libcardmonapplet.ts +++ b/i18n/hu/libcardmonapplet.ts @@ -2,20 +2,60 @@ <context> <name>CardMonitor</name> <message> <source>Eject card</source> - <translation type="unfinished"></translation> + <translation type="obsolete"></translation> </message> <message> <source>CardMonitor</source> <translation type="unfinished"></translation> </message> <message> <source>Card eject failed!</source> - <translation type="unfinished"></translation> + <translation type="obsolete"></translation> </message> <message> <source>&OK</source> <translation type="unfinished"></translation> </message> + <message> + <source>Eject SD/ MMC card</source> + <translation type="obsolete"></translation> + </message> + <message> + <source>Eject %1 (0)</source> + <translation type="obsolete"></translation> + </message> + <message> + <source>Eject %1 (1)</source> + <translation type="obsolete"></translation> + </message> + <message> + <source>CF/PCMCIA card eject failed!</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>SD/MMC card eject failed!</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>New card: </source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Ejected: </source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Eject SD/MMC card</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Eject card 0: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Eject card 1: %1</source> + <translation type="unfinished"></translation> + </message> </context> </TS> diff --git a/i18n/ja/libcardmonapplet.ts b/i18n/ja/libcardmonapplet.ts index 67c09b9..687958e 100644 --- a/i18n/ja/libcardmonapplet.ts +++ b/i18n/ja/libcardmonapplet.ts @@ -2,20 +2,60 @@ <context> <name>CardMonitor</name> <message> <source>Eject card</source> - <translation type="unfinished"></translation> + <translation type="obsolete"></translation> </message> <message> <source>CardMonitor</source> <translation type="unfinished"></translation> </message> <message> <source>Card eject failed!</source> - <translation type="unfinished"></translation> + <translation type="obsolete"></translation> </message> <message> <source>&OK</source> <translation type="unfinished"></translation> </message> + <message> + <source>Eject SD/ MMC card</source> + <translation type="obsolete"></translation> + </message> + <message> + <source>Eject %1 (0)</source> + <translation type="obsolete"></translation> + </message> + <message> + <source>Eject %1 (1)</source> + <translation type="obsolete"></translation> + </message> + <message> + <source>CF/PCMCIA card eject failed!</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>SD/MMC card eject failed!</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>New card: </source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Ejected: </source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Eject SD/MMC card</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Eject card 0: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Eject card 1: %1</source> + <translation type="unfinished"></translation> + </message> </context> </TS> diff --git a/i18n/ko/libcardmonapplet.ts b/i18n/ko/libcardmonapplet.ts index 67c09b9..687958e 100644 --- a/i18n/ko/libcardmonapplet.ts +++ b/i18n/ko/libcardmonapplet.ts @@ -2,20 +2,60 @@ <context> <name>CardMonitor</name> <message> <source>Eject card</source> - <translation type="unfinished"></translation> + <translation type="obsolete"></translation> </message> <message> <source>CardMonitor</source> <translation type="unfinished"></translation> </message> <message> <source>Card eject failed!</source> - <translation type="unfinished"></translation> + <translation type="obsolete"></translation> </message> <message> <source>&OK</source> <translation type="unfinished"></translation> </message> + <message> + <source>Eject SD/ MMC card</source> + <translation type="obsolete"></translation> + </message> + <message> + <source>Eject %1 (0)</source> + <translation type="obsolete"></translation> + </message> + <message> + <source>Eject %1 (1)</source> + <translation type="obsolete"></translation> + </message> + <message> + <source>CF/PCMCIA card eject failed!</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>SD/MMC card eject failed!</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>New card: </source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Ejected: </source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Eject SD/MMC card</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Eject card 0: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Eject card 1: %1</source> + <translation type="unfinished"></translation> + </message> </context> </TS> diff --git a/i18n/no/libcardmonapplet.ts b/i18n/no/libcardmonapplet.ts index 67c09b9..687958e 100644 --- a/i18n/no/libcardmonapplet.ts +++ b/i18n/no/libcardmonapplet.ts @@ -2,20 +2,60 @@ <context> <name>CardMonitor</name> <message> <source>Eject card</source> - <translation type="unfinished"></translation> + <translation type="obsolete"></translation> </message> <message> <source>CardMonitor</source> <translation type="unfinished"></translation> </message> <message> <source>Card eject failed!</source> - <translation type="unfinished"></translation> + <translation type="obsolete"></translation> </message> <message> <source>&OK</source> <translation type="unfinished"></translation> </message> + <message> + <source>Eject SD/ MMC card</source> + <translation type="obsolete"></translation> + </message> + <message> + <source>Eject %1 (0)</source> + <translation type="obsolete"></translation> + </message> + <message> + <source>Eject %1 (1)</source> + <translation type="obsolete"></translation> + </message> + <message> + <source>CF/PCMCIA card eject failed!</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>SD/MMC card eject failed!</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>New card: </source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Ejected: </source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Eject SD/MMC card</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Eject card 0: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Eject card 1: %1</source> + <translation type="unfinished"></translation> + </message> </context> </TS> diff --git a/i18n/pl/libcardmonapplet.ts b/i18n/pl/libcardmonapplet.ts index 89d8876..d3732e0 100644 --- a/i18n/pl/libcardmonapplet.ts +++ b/i18n/pl/libcardmonapplet.ts @@ -2,20 +2,60 @@ <context> <name>CardMonitor</name> <message> <source>Eject card</source> - <translation>Wyjmij karte</translation> + <translation type="obsolete">Wyjmij karte</translation> </message> <message> <source>CardMonitor</source> <translation>MonitorKart</translation> </message> <message> <source>Card eject failed!</source> - <translation>Wyjmowanie karty nie powiodlo sie!</translation> + <translation type="obsolete">Wyjmowanie karty nie powiodlo sie!</translation> </message> <message> <source>&OK</source> <translation type="unfinished"></translation> </message> + <message> + <source>Eject SD/ MMC card</source> + <translation type="obsolete"></translation> + </message> + <message> + <source>Eject %1 (0)</source> + <translation type="obsolete"></translation> + </message> + <message> + <source>Eject %1 (1)</source> + <translation type="obsolete"></translation> + </message> + <message> + <source>CF/PCMCIA card eject failed!</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>SD/MMC card eject failed!</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>New card: </source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Ejected: </source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Eject SD/MMC card</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Eject card 0: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Eject card 1: %1</source> + <translation type="unfinished"></translation> + </message> </context> </TS> diff --git a/i18n/pt/libcardmonapplet.ts b/i18n/pt/libcardmonapplet.ts index edc52e8..4ec1872 100644 --- a/i18n/pt/libcardmonapplet.ts +++ b/i18n/pt/libcardmonapplet.ts @@ -2,20 +2,60 @@ <context> <name>CardMonitor</name> <message> <source>Eject card</source> - <translation>Ejectar cartão</translation> + <translation type="obsolete">Ejectar cartão</translation> </message> <message> <source>CardMonitor</source> <translation>Monitor de cartões</translation> </message> <message> <source>Card eject failed!</source> - <translation>Falhou a ejeção do cartão!</translation> + <translation type="obsolete">Falhou a ejeção do cartão!</translation> </message> <message> <source>&OK</source> <translation>&Ok</translation> </message> + <message> + <source>Eject SD/ MMC card</source> + <translation type="obsolete">Ejectar SD/MMC</translation> + </message> + <message> + <source>Eject %1 (0)</source> + <translation type="obsolete">Ejectar %1 (0)</translation> + </message> + <message> + <source>Eject %1 (1)</source> + <translation type="obsolete">Ejectar %1 (1)</translation> + </message> + <message> + <source>CF/PCMCIA card eject failed!</source> + <translation>Ejecção do cartão CF/PCMCIA falhou!</translation> + </message> + <message> + <source>SD/MMC card eject failed!</source> + <translation>Ejecção do cartão SD/MMC falhou!</translation> + </message> + <message> + <source>New card: </source> + <translation>Novo cartão:</translation> + </message> + <message> + <source>Ejected: </source> + <translation>Removido:</translation> + </message> + <message> + <source>Eject SD/MMC card</source> + <translation>Ejectar SD/MMC</translation> + </message> + <message> + <source>Eject card 0: %1</source> + <translation>Ejectar cartão 0: %1</translation> + </message> + <message> + <source>Eject card 1: %1</source> + <translation>Ejectar cartão 1: %1</translation> + </message> </context> </TS> diff --git a/i18n/pt_BR/libcardmonapplet.ts b/i18n/pt_BR/libcardmonapplet.ts index f2aee65..38dd9b8 100644 --- a/i18n/pt_BR/libcardmonapplet.ts +++ b/i18n/pt_BR/libcardmonapplet.ts @@ -11,12 +11,52 @@ <translation>Monitor de Cartão</translation> </message> <message> <source>Eject card</source> - <translation>Desativar cartão</translation> + <translation type="obsolete">Desativar cartão</translation> </message> <message> <source>Card eject failed!</source> - <translation>Falhou ao desativar o cartão!</translation> + <translation type="obsolete">Falhou ao desativar o cartão!</translation> + </message> + <message> + <source>Eject SD/ MMC card</source> + <translation type="obsolete"></translation> + </message> + <message> + <source>Eject %1 (0)</source> + <translation type="obsolete"></translation> + </message> + <message> + <source>Eject %1 (1)</source> + <translation type="obsolete"></translation> + </message> + <message> + <source>CF/PCMCIA card eject failed!</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>SD/MMC card eject failed!</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>New card: </source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Ejected: </source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Eject SD/MMC card</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Eject card 0: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Eject card 1: %1</source> + <translation type="unfinished"></translation> </message> </context> </TS> diff --git a/i18n/sl/libcardmonapplet.ts b/i18n/sl/libcardmonapplet.ts index 1dd8995..5dd8592 100644 --- a/i18n/sl/libcardmonapplet.ts +++ b/i18n/sl/libcardmonapplet.ts @@ -2,20 +2,60 @@ <context> <name>CardMonitor</name> <message> <source>Eject card</source> - <translation>Vstavite kartico</translation> + <translation type="obsolete">Vstavite kartico</translation> </message> <message> <source>CardMonitor</source> <translation>NadzorKartic</translation> </message> <message> <source>Card eject failed!</source> - <translation>Vstavitev kartice je spodletela!</translation> + <translation type="obsolete">Vstavitev kartice je spodletela!</translation> </message> <message> <source>&OK</source> <translation>&Vredu</translation> </message> + <message> + <source>Eject SD/ MMC card</source> + <translation type="obsolete"></translation> + </message> + <message> + <source>Eject %1 (0)</source> + <translation type="obsolete"></translation> + </message> + <message> + <source>Eject %1 (1)</source> + <translation type="obsolete"></translation> + </message> + <message> + <source>CF/PCMCIA card eject failed!</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>SD/MMC card eject failed!</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>New card: </source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Ejected: </source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Eject SD/MMC card</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Eject card 0: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Eject card 1: %1</source> + <translation type="unfinished"></translation> + </message> </context> </TS> diff --git a/i18n/zh_CN/libcardmonapplet.ts b/i18n/zh_CN/libcardmonapplet.ts index 67c09b9..687958e 100644 --- a/i18n/zh_CN/libcardmonapplet.ts +++ b/i18n/zh_CN/libcardmonapplet.ts @@ -2,20 +2,60 @@ <context> <name>CardMonitor</name> <message> <source>Eject card</source> - <translation type="unfinished"></translation> + <translation type="obsolete"></translation> </message> <message> <source>CardMonitor</source> <translation type="unfinished"></translation> </message> <message> <source>Card eject failed!</source> - <translation type="unfinished"></translation> + <translation type="obsolete"></translation> </message> <message> <source>&OK</source> <translation type="unfinished"></translation> </message> + <message> + <source>Eject SD/ MMC card</source> + <translation type="obsolete"></translation> + </message> + <message> + <source>Eject %1 (0)</source> + <translation type="obsolete"></translation> + </message> + <message> + <source>Eject %1 (1)</source> + <translation type="obsolete"></translation> + </message> + <message> + <source>CF/PCMCIA card eject failed!</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>SD/MMC card eject failed!</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>New card: </source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Ejected: </source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Eject SD/MMC card</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Eject card 0: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Eject card 1: %1</source> + <translation type="unfinished"></translation> + </message> </context> </TS> diff --git a/i18n/zh_TW/libcardmonapplet.ts b/i18n/zh_TW/libcardmonapplet.ts index 67c09b9..687958e 100644 --- a/i18n/zh_TW/libcardmonapplet.ts +++ b/i18n/zh_TW/libcardmonapplet.ts @@ -2,20 +2,60 @@ <context> <name>CardMonitor</name> <message> <source>Eject card</source> - <translation type="unfinished"></translation> + <translation type="obsolete"></translation> </message> <message> <source>CardMonitor</source> <translation type="unfinished"></translation> </message> <message> <source>Card eject failed!</source> - <translation type="unfinished"></translation> + <translation type="obsolete"></translation> </message> <message> <source>&OK</source> <translation type="unfinished"></translation> </message> + <message> + <source>Eject SD/ MMC card</source> + <translation type="obsolete"></translation> + </message> + <message> + <source>Eject %1 (0)</source> + <translation type="obsolete"></translation> + </message> + <message> + <source>Eject %1 (1)</source> + <translation type="obsolete"></translation> + </message> + <message> + <source>CF/PCMCIA card eject failed!</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>SD/MMC card eject failed!</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>New card: </source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Ejected: </source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Eject SD/MMC card</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Eject card 0: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Eject card 1: %1</source> + <translation type="unfinished"></translation> + </message> </context> </TS> |