Skip to content

Commit

Permalink
Drop 'already' from the message in project close confirmation dialog
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
techee committed Feb 19, 2012
1 parent 8e2f7db commit ca9dca9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/project.c
Expand Up @@ -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;
Expand Down

0 comments on commit ca9dca9

Please sign in to comment.