From: Stefan Csomor Date: Sun, 14 Aug 2011 15:41:10 +0000 (+0000) Subject: adding two missing strings (used in docview) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/73d1308b85df21aa1d69b74a37c4f88c53fe661f adding two missing strings (used in docview) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@68691 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/stockitem.cpp b/src/common/stockitem.cpp index 5a897d7f78..2df465503d 100644 --- a/src/common/stockitem.cpp +++ b/src/common/stockitem.cpp @@ -177,6 +177,7 @@ wxString wxGetStockLabel(wxWindowID id, long flags) STOCKITEM(wxID_OPEN, _("&Open..."), _("Open...")); STOCKITEM(wxID_PASTE, _("&Paste"), _("Paste")); STOCKITEM(wxID_PREFERENCES, _("&Preferences"), _("Preferences")); + STOCKITEM(wxID_PREVIEW, _("&Preview..."), _("Preview...")); STOCKITEM(wxID_PRINT, _("&Print..."), _("Print...")); STOCKITEM(wxID_PROPERTIES, _("&Properties"), _("Properties")); STOCKITEM(wxID_REDO, _("&Redo"), _("Redo")); @@ -184,6 +185,7 @@ wxString wxGetStockLabel(wxWindowID id, long flags) STOCKITEM(wxID_REMOVE, _("Remove"), _("Remove")); STOCKITEM(wxID_REPLACE, _("Rep&lace"), _("Replace")); STOCKITEM(wxID_SAVE, _("&Save"), _("Save")); + STOCKITEM(wxID_SAVEAS, _("&Save as"), _("Save as")); STOCKITEM(wxID_SELECT_COLOR, _("&Color"), _("Color")); STOCKITEM(wxID_SELECT_FONT, _("&Font"), _("Font")); STOCKITEM(wxID_SORT_ASCENDING, _("&Ascending"), _("Ascending"));