Skip to content

Commit

Permalink
Fix quotes issue (raises compilation error on OSX). Also fix button n…
Browse files Browse the repository at this point in the history
…ame for quit confirmation dialog.
  • Loading branch information
morevnaproject committed Jan 8, 2015
1 parent c8e9056 commit a17eb5c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions synfig-studio/src/gui/instance.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -861,7 +861,7 @@ Instance::safe_close()
if(get_action_count())
do
{
string message = strprintf(_("Save changes to document \%s\ before closing?"),
string message = strprintf(_("Save changes to document \"%s\" before closing?"),
basename(get_file_name()).c_str() );

string details = (_("If you don't save, changes from the last time you saved "
Expand All @@ -872,7 +872,7 @@ Instance::safe_close()
details,
_("Close without Saving"),
_("Cancel"),
_("Save As…"),
_("Save"),
synfigapp::UIInterface::RESPONSE_YES
);

Expand Down

0 comments on commit a17eb5c

Please sign in to comment.