From: Ben Pfaff Date: Tue, 25 Sep 2007 04:21:02 +0000 (+0000) Subject: (popup_message): Refer to files that contain commands as "syntax" X-Git-Tag: v0.6.0~247 X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c806348911641248369536c11e48ed59757865da;p=pspp-builds.git (popup_message): Refer to files that contain commands as "syntax" files, not "script" files, for better user familiarity. --- diff --git a/src/ui/gui/ChangeLog b/src/ui/gui/ChangeLog index 72d615b6..c63f744b 100644 --- a/src/ui/gui/ChangeLog +++ b/src/ui/gui/ChangeLog @@ -1,3 +1,10 @@ +2007-09-24 Ben Pfaff + + * 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 * message-dialog.c: Changed the ouput message title to be diff --git a/src/ui/gui/message-dialog.c b/src/ui/gui/message-dialog.c index 969758e2..708d397e 100644 --- a/src/ui/gui/message-dialog.c +++ b/src/ui/gui/message-dialog.c @@ -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: