SVN commit 789923 by reitelbach: Fix Typo in % argument. i18n-list: I didn't ask for permission to change this during string freeze because KDat is not even built by default (commented out in the CMakefile). CCMAIL:kde-i18n-doc@kde.org M +1 -1 Tape.cpp --- branches/KDE/4.0/kdeadmin/kdat/Tape.cpp #789922:789923 @@ -399,7 +399,7 @@ { clearerr( _fptr ); #ifdef DEBUG - QString msg = i18n("Error while accessing string #2 in archive: \"%1\": %1").arg( getID() ).arg( i18n(strerror( errno )) ); + QString msg = i18n("Error while accessing string #2 in archive: \"%1\": %2").arg( getID() ).arg( i18n(strerror( errno )) ); printf("%s\n", msg.toLatin1()); KMessageBox::error(NULL, msg, i18n("File Access Error")); #endif /* DEBUG */