From 26f3bb26ba50ae6e635e0614661bc50a124728ca Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Tue, 7 Feb 2012 01:22:50 +0000 Subject: [PATCH] Remove some incorrect uses of ellipses Ellipses are used to indicate that a command will require additional input from the user, not that a dialog will be opened. Originally committed to SVN as r6451. --- aegisub/src/command/app.cpp | 4 ++-- aegisub/src/command/help.cpp | 10 +++++----- aegisub/src/command/video.cpp | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/aegisub/src/command/app.cpp b/aegisub/src/command/app.cpp index afe738d93..00821a1a9 100644 --- a/aegisub/src/command/app.cpp +++ b/aegisub/src/command/app.cpp @@ -67,7 +67,7 @@ namespace { /// Launch about dialogue. struct app_about : public Command { CMD_NAME("app/about") - STR_MENU("&About...") + STR_MENU("&About") STR_DISP("About") STR_HELP("About Aegisub") @@ -205,7 +205,7 @@ struct app_language : public Command { /// Event log. struct app_log : public Command { CMD_NAME("app/log") - STR_MENU("&Log window...") + STR_MENU("&Log window") STR_DISP("Log window") STR_HELP("View the event log") diff --git a/aegisub/src/command/help.cpp b/aegisub/src/command/help.cpp index 430a0f7a6..3a809f985 100644 --- a/aegisub/src/command/help.cpp +++ b/aegisub/src/command/help.cpp @@ -80,7 +80,7 @@ struct help_bugs : public Command { /// Help topics. struct help_contents : public Command { CMD_NAME("help/contents") - STR_MENU("&Contents...") + STR_MENU("&Contents") STR_DISP("Contents") STR_HELP("Help topics") @@ -109,7 +109,7 @@ struct help_files : public Command { /// Visit Aegisub's forums. struct help_forums : public Command { CMD_NAME("help/forums") - STR_MENU("&Forums...") + STR_MENU("&Forums") STR_DISP("Forums") STR_HELP("Visit Aegisub's forums") @@ -122,7 +122,7 @@ struct help_forums : public Command { /// Visit Aegisub's official IRC channel. struct help_irc : public Command { CMD_NAME("help/irc") - STR_MENU("&IRC Channel...") + STR_MENU("&IRC Channel") STR_DISP("IRC Channel") STR_HELP("Visit Aegisub's official IRC channel") @@ -134,7 +134,7 @@ struct help_irc : public Command { /// Open the manual page for Visual Typesetting. struct help_video : public Command { CMD_NAME("help/video") - STR_MENU("&Visual Typesetting...") + STR_MENU("&Visual Typesetting") STR_DISP("Visual Typesetting") STR_HELP("Open the manual page for Visual Typesetting") @@ -146,7 +146,7 @@ struct help_video : public Command { /// Visit Aegisub's official website. struct help_website : public Command { CMD_NAME("help/website") - STR_MENU("&Website...") + STR_MENU("&Website") STR_DISP("Website") STR_HELP("Visit Aegisub's official website") diff --git a/aegisub/src/command/video.cpp b/aegisub/src/command/video.cpp index 4908ede1a..7cf80508d 100644 --- a/aegisub/src/command/video.cpp +++ b/aegisub/src/command/video.cpp @@ -272,7 +272,7 @@ struct video_detach : public validator_video_loaded { /// Shows video details. struct video_details : public validator_video_loaded { CMD_NAME("video/details") - STR_MENU("Show &Video Details...") + STR_MENU("Show &Video Details") STR_DISP("Show Video Details") STR_HELP("Shows video details")