if(KMessageBox::questionYesNo(QApplication::activeWindow(),i18n("You have changed the project folder. Do you want to copy the cached data from %1 to the new folder %2?",m_projectFolder,url.path()))==KMessageBox::Yes)moveProjectData(url);
/*if (KMessageBox::questionYesNo(QApplication::activeWindow(), i18n("You have changed the project folder. Do you want to copy the cached data from %1 to the new folder %2?", m_projectFolder, url.path())) == KMessageBox::Yes) moveProjectData(url);*/
if(KMessageBox::warningContinueCancel(this,i18n("This will move all temporary files from <b>%1</b> to <b>%2</b>",project->projectFolder(),w->storageFolder().isEmpty()?QStandardPaths::writableLocation(QStandardPaths::CacheLocation):w->storageFolder()))==KMessageBox::Continue){
answer=KMessageBox::warningContinueCancel(this,i18n("The current project has not been saved. This will first save the project, then move all temporary files from <b>%1</b> to <b>%2</b>, and the project file will be reloaded",project->projectFolder(),newProjectFolder));
if(answer==KMessageBox::Continue){
pCore->projectManager()->saveFile();
}
}else{
answer=KMessageBox::warningContinueCancel(this,i18n("This will move all temporary files from <b>%1</b> to <b>%2</b>, the project file will then be reloaded",project->projectFolder(),newProjectFolder));