From 031628dac5bfe95976e599735c2cd725e5ea095d Mon Sep 17 00:00:00 2001 From: Charles Dang Date: Wed, 24 Feb 2016 12:37:31 +1100 Subject: [PATCH] Small Editor quit confirmation message wording change --- src/editor/controller/editor_controller.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/editor/controller/editor_controller.cpp b/src/editor/controller/editor_controller.cpp index badcae6b3353..277a67602d3d 100644 --- a/src/editor/controller/editor_controller.cpp +++ b/src/editor/controller/editor_controller.cpp @@ -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;