Skip to content

Commit

Permalink
Merge pull request #2362 from Joern-R/T
Browse files Browse the repository at this point in the history
Athlete Backup
  • Loading branch information
Joern-R committed Feb 26, 2017
2 parents 4e19a30 + 90a1325 commit fb71cd8
Show file tree
Hide file tree
Showing 2 changed files with 156 additions and 148 deletions.
4 changes: 2 additions & 2 deletions src/FileIO/AthleteBackup.cpp
Expand Up @@ -90,7 +90,7 @@ AthleteBackup::backupImmediate()
QMessageBox msgBox;
msgBox.setWindowTitle(tr("Athlete Backup"));
msgBox.setText( tr("Any unsaved data will not be included into the backup .zip file."));
msgBox.setInformativeText("Do you want to proceed?");
msgBox.setInformativeText(tr("Do you want to proceed?"));
msgBox.setStandardButtons(QMessageBox::Yes | QMessageBox::No);
msgBox.setDefaultButton(QMessageBox::Yes);
int ret = msgBox.exec();
Expand All @@ -103,7 +103,7 @@ AthleteBackup::backupImmediate()
break;
}
if (backup(tr("Abort Backup"))) {
QMessageBox::information(NULL, tr("Athlete Backup"), tr("Backup successfully stored in %1").arg(backupFolder));
QMessageBox::information(NULL, tr("Athlete Backup"), tr("Backup successfully stored in \n%1").arg(backupFolder));
}

}
Expand Down

0 comments on commit fb71cd8

Please sign in to comment.