SF.net SVN: geany-plugins:[783] trunk/geany-mini-script/src

prublot at users.sourceforge.net prublot at xxxxx
Fri Jun 26 19:57:30 UTC 2009


Revision: 783
          http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=783&view=rev
Author:   prublot
Date:     2009-06-26 19:57:29 +0000 (Fri, 26 Jun 2009)

Log Message:
-----------
 patch of Nick Treleaven
1. Minor Fix for grammar in the About dialog & source comment.
2. Changes the order of the buttons in the main dialog as GTK/Gnome
recommends (cancel on the left, like the file chooser dialog).
3. Changes 'Apply' button to 'Execute' button - IMO 'apply' doesn't
really fit. If you don't like this, perhaps use 'OK' instead.

Modified Paths:
--------------
    trunk/geany-mini-script/src/gms.c
    trunk/geany-mini-script/src/gms_gui.c

Modified: trunk/geany-mini-script/src/gms.c
===================================================================
--- trunk/geany-mini-script/src/gms.c	2009-06-25 17:36:33 UTC (rev 782)
+++ trunk/geany-mini-script/src/gms.c	2009-06-26 19:57:29 UTC (rev 783)
@@ -22,8 +22,8 @@
  */
 
 /**
- * gms is a tools to apply a script filter on a text selection, or on
- * the whole document, or all opened document.
+ * gms is a tool to apply a script filter on a text selection, or on
+ * the whole document, or all opened documents.
  *
  * note: the script filter could be : Unix shell, perl , python , sed ,awk ...
  *

Modified: trunk/geany-mini-script/src/gms_gui.c
===================================================================
--- trunk/geany-mini-script/src/gms_gui.c	2009-06-25 17:36:33 UTC (rev 782)
+++ trunk/geany-mini-script/src/gms_gui.c	2009-06-26 19:57:29 UTC (rev 783)
@@ -128,7 +128,7 @@
 
 ///< \brief It's the information message about geany mini script
 const char *geany_info = "<b>GMS : Geany Mini-Script filter Plugin</b>\n"
-"This plugin is a tools to apply a script filter on :\n"
+"This plugin is a tool to apply a script filter on :\n"
 "   o the text selection,\n"
 "   o the current document,\n"
 "   o all documents of the current session.\n"
@@ -419,8 +419,8 @@
                         _("Mini-Script Filter"),
                         GTK_WINDOW( mw ),
                         GTK_DIALOG_DESTROY_WITH_PARENT|GTK_DIALOG_MODAL,
-                        GTK_STOCK_APPLY,GTK_RESPONSE_APPLY,
                         GTK_STOCK_CANCEL,GTK_RESPONSE_CANCEL,
+                        GTK_STOCK_EXECUTE,GTK_RESPONSE_APPLY,
                         NULL
                          ) ;
         vb_dlg   = GTK_BOX (GTK_DIALOG(this->w.dlg)->vbox)  ;


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



More information about the Plugins-Commits mailing list