[geany/geany] ca9dca: Drop 'already' from the message in project close confirmation dialog

Jiří Techet git-noreply at xxxxx
Thu Jul 26 00:03:24 UTC 2012


Branch:      refs/heads/document-messages
Author:      Jiří Techet <techet at gmail.com>
Committer:   Jiří Techet <techet at gmail.com>
Date:        Sun, 19 Feb 2012 23:20:14
Commit:      ca9dca94f890ed53741b2ec0b7bbdccaaeb72d36
             https://github.com/geany/geany/commit/ca9dca94f890ed53741b2ec0b7bbdccaaeb72d36

Log Message:
-----------
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.


Modified Paths:
--------------
    src/project.c

Modified: src/project.c
2 files changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -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;


@@ Diff output truncated at 100000 characters. @@


--------------
This E-Mail was brought to you by github_commit_mail.py (Source: TBD).



More information about the Commits mailing list