diff options
Diffstat (limited to 'libk3b/projects/videocd/k3bvcddoc.cpp')
-rw-r--r-- | libk3b/projects/videocd/k3bvcddoc.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libk3b/projects/videocd/k3bvcddoc.cpp b/libk3b/projects/videocd/k3bvcddoc.cpp index 0c192df..82cca1b 100644 --- a/libk3b/projects/videocd/k3bvcddoc.cpp +++ b/libk3b/projects/videocd/k3bvcddoc.cpp @@ -207,7 +207,7 @@ K3bVcdTrack* K3bVcdDoc::createTrack( const KURL& url ) m_urlAddingTimer->stop(); setVcdType( vcdTypes( mpegVersion ) ); vcdOptions() ->setMpegVersion( mpegVersion ); - KMessageBox::information( kapp->mainWidget(), + KMessageBox::information( tdeApp->mainWidget(), i18n( "K3b will create a %1 image from the given MPEG " "files, but these files must already be in %2 " "format. K3b does not yet resample MPEG files." ) @@ -219,7 +219,7 @@ K3bVcdTrack* K3bVcdDoc::createTrack( const KURL& url ) m_urlAddingTimer->stop(); vcdOptions() ->setMpegVersion( mpegVersion ); bool force = false; - force = ( KMessageBox::questionYesNo( kapp->mainWidget(), + force = ( KMessageBox::questionYesNo( tdeApp->mainWidget(), i18n( "K3b will create a %1 image from the given MPEG " "files, but these files must already be in %2 " "format. K3b does not yet resample MPEG files." ) @@ -242,7 +242,7 @@ K3bVcdTrack* K3bVcdDoc::createTrack( const KURL& url ) if ( numOfTracks() > 0 && vcdOptions() ->mpegVersion() != mpegVersion ) { - KMessageBox::error( kapp->mainWidget(), "(" + url.path() + ")\n" + + KMessageBox::error( tdeApp->mainWidget(), "(" + url.path() + ")\n" + i18n( "You cannot mix MPEG1 and MPEG2 video files.\nPlease start a new Project for this filetype.\nResample not implemented in K3b yet." ), i18n( "Wrong File Type for This Project" ) ); @@ -254,7 +254,7 @@ K3bVcdTrack* K3bVcdDoc::createTrack( const KURL& url ) *( newTrack->mpeg_info ) = *( Mpeg->mpeg_info ); if ( newTrack->isSegment() && !vcdOptions()->PbcEnabled() ) { - KMessageBox::information( kapp->mainWidget(), + KMessageBox::information( tdeApp->mainWidget(), i18n( "PBC (Playback control) enabled.\n" "Videoplayers can not reach Segments (Mpeg Still Pictures) without Playback control ." ) , i18n( "Information" ) ); @@ -286,7 +286,7 @@ K3bVcdTrack* K3bVcdDoc::createTrack( const KURL& url ) } // error (unsupported files) - KMessageBox::error( kapp->mainWidget(), "(" + url.path() + ")\n" + + KMessageBox::error( tdeApp->mainWidget(), "(" + url.path() + ")\n" + i18n( "Only MPEG1 and MPEG2 video files are supported.\n" ) + error_string , i18n( "Wrong File Format" ) ); |