Commit 9d25985d authored by -f's avatar -f

internalization of the automatic saving messages

parent dabaca53
...@@ -398,13 +398,13 @@ void UBBoardController::saveData(SaveFlags fls) ...@@ -398,13 +398,13 @@ void UBBoardController::saveData(SaveFlags fls)
{ {
bool verbose = fls | sf_showProgress; bool verbose = fls | sf_showProgress;
if (verbose) { if (verbose) {
UBApplication::showMessage("Saving document..."); UBApplication::showMessage(tr("Saving document..."));
} }
if (mActiveScene && mActiveScene->isModified()) { if (mActiveScene && mActiveScene->isModified()) {
persistCurrentScene(true); persistCurrentScene(true);
} }
if (verbose) { if (verbose) {
UBApplication::showMessage("Document has just been saved..."); UBApplication::showMessage(tr("Document has just been saved..."));
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment