Kaydet (Commit) 6738d3bc authored tarafından Nick Treleaven's avatar Nick Treleaven

Use secondary text for 'file not found on disk' dialog.


git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5298 ea778897-0a13-0410-b9d1-a72fbfd435f5
üst 9e1ff830
......@@ -8,6 +8,8 @@
* src/keybindings.c, src/keybindings.h, doc/geany.txt, doc/geany.html:
Add 'Insert New Line Before/After Current' keybindings (based on
patch by Eugene Arshinov, thanks).
* src/document.c:
Use secondary text for 'file not found on disk' dialog.
2010-10-08 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
......
......@@ -2939,8 +2939,8 @@ static gboolean monitor_resave_missing_file(GeanyDocument *doc)
_("Close _without saving"), GTK_RESPONSE_CLOSE,
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
GTK_STOCK_SAVE, GTK_RESPONSE_ACCEPT,
NULL,
_("File \"%s\" was not found on disk! Try to resave the file?"),
_("Try to resave the file?"),
_("File \"%s\" was not found on disk!"),
doc->file_name);
if (ret == GTK_RESPONSE_ACCEPT)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment