(popup_message): Refer to files that contain commands as "syntax"
authorBen Pfaff <blp@gnu.org>
Tue, 25 Sep 2007 04:21:02 +0000 (04:21 +0000)
committerBen Pfaff <blp@gnu.org>
Tue, 25 Sep 2007 04:21:02 +0000 (04:21 +0000)
files, not "script" files, for better user familiarity.

src/ui/gui/ChangeLog
src/ui/gui/message-dialog.c

index 72d615b6156f076e5d3bce3cffe72b2fd0b744b5..c63f744b388cbb4d529fa8d66c4e9079ad7f2c9c 100644 (file)
@@ -1,3 +1,10 @@
+2007-09-24  Ben Pfaff  <blp@gnu.org>
+
+       * message-dialog.c (popup_message): Refer to files that contain
+       commands as "syntax" files, not "script" files, for better user
+       familiarity.
+       Patch #6210.  Reviewed by John Darrington.
+
 2007-09-19  John Darrington <john@darrington.wattle.id.au>
        
        * message-dialog.c: Changed the ouput message title to be 
index 969758e2fbb2ede00f5633fec16519fb52736c3c..708d397e066cd8332dd72cb00ef86c489fd1d5fb 100644 (file)
@@ -106,7 +106,7 @@ popup_message (const struct msg *m)
       switch (m->category)
        {
        case MSG_SYNTAX:
-         msg = _("Script Error");
+         msg = _("Syntax Error");
          break;
 
        case MSG_DATA:
@@ -124,7 +124,7 @@ popup_message (const struct msg *m)
       switch (m->category)
        {
        case MSG_SYNTAX:
-         msg = _("Script Warning");
+         msg = _("Syntax Warning");
       break;
 
        case MSG_DATA:
@@ -143,7 +143,7 @@ popup_message (const struct msg *m)
   switch (m->category)
     {
     case MSG_SYNTAX:
-         msg = _("Script Information");
+         msg = _("Syntax Information");
       break;
 
     case MSG_DATA: