From 5486c1a283180af6dc098078ff778d862853508a Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 26 Mar 2007 19:27:27 +0000 Subject: [PATCH] added ellipsis to a couple of stock labels git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45072 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/stockitem.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/common/stockitem.cpp b/src/common/stockitem.cpp index fdc1335b9a..aa9515f0e0 100644 --- a/src/common/stockitem.cpp +++ b/src/common/stockitem.cpp @@ -107,7 +107,7 @@ wxString wxGetStockLabel(wxWindowID id, long flags) switch (id) { - STOCKITEM(wxID_ABOUT, _("&About")) + STOCKITEM(wxID_ABOUT, _("&About...")) STOCKITEM(wxID_ADD, _("Add")) STOCKITEM(wxID_APPLY, _("&Apply")) STOCKITEM(wxID_BOLD, _("&Bold")) @@ -137,10 +137,10 @@ wxString wxGetStockLabel(wxWindowID id, long flags) STOCKITEM(wxID_NEW, _("&New")) STOCKITEM(wxID_NO, _("&No")) STOCKITEM(wxID_OK, _("&OK")) - STOCKITEM(wxID_OPEN, _("&Open")) + STOCKITEM(wxID_OPEN, _("&Open...")) STOCKITEM(wxID_PASTE, _("&Paste")) STOCKITEM(wxID_PREFERENCES, _("&Preferences")) - STOCKITEM(wxID_PRINT, _("&Print")) + STOCKITEM(wxID_PRINT, _("&Print...")) STOCKITEM(wxID_PREVIEW, _("Print previe&w")) STOCKITEM(wxID_PROPERTIES, _("&Properties")) STOCKITEM(wxID_EXIT, _("&Quit")) @@ -150,7 +150,7 @@ wxString wxGetStockLabel(wxWindowID id, long flags) STOCKITEM(wxID_REVERT_TO_SAVED, _("Revert to Saved")) STOCKITEM(wxID_SAVE, _("&Save")) STOCKITEM(wxID_SAVEAS, _("Save &As...")) - STOCKITEM(wxID_SELECTALL, _("Select all")) + STOCKITEM(wxID_SELECTALL, _("Select &All")) STOCKITEM(wxID_STOP, _("&Stop")) STOCKITEM(wxID_UNDELETE, _("Undelete")) STOCKITEM(wxID_UNDERLINE, _("&Underline")) -- 2.47.2