Skip to content

Commit

Permalink
Small Editor quit confirmation message wording change
Browse files Browse the repository at this point in the history
  • Loading branch information
Vultraz committed Feb 24, 2016
1 parent 03ed7ff commit 031628d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/editor/controller/editor_controller.cpp
Expand Up @@ -211,7 +211,7 @@ bool editor_controller::quit_confirm()
if (amount == 0) {
message = _("Do you really want to quit?");
} else if (amount == 1) {
message = _("Do you really want to quit? Changes in the map since the last save will be lost.");
message = _("Do you really want to quit? Changes to this map since the last save will be lost.");
} else {
message = _("Do you really want to quit? The following maps were modified and all changes since the last save will be lost:");
message += "\n" + modified;
Expand Down

0 comments on commit 031628d

Please sign in to comment.