From ca9dca94f890ed53741b2ec0b7bbdccaaeb72d36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20Techet?= Date: Mon, 20 Feb 2012 00:06:24 +0100 Subject: [PATCH] Drop 'already' from the message in project close confirmation dialog Suppose you have project A open and want to open project B. Then the message saying "The 'A' project is already open" displays. This is slightly confusing and feels like if you were trying to re-open project A even though you are opening different project. The message without 'already' looks clearer in this context. --- src/project.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/project.c b/src/project.c index a7f5e225bf..f1693ee76d 100644 --- a/src/project.c +++ b/src/project.c @@ -594,7 +594,7 @@ gboolean project_ask_close(void) { if (dialogs_show_question_full(NULL, GTK_STOCK_CLOSE, GTK_STOCK_CANCEL, _("Do you want to close it before proceeding?"), - _("The '%s' project is already open."), app->project->name)) + _("The '%s' project is open."), app->project->name)) { project_close(FALSE); return TRUE;