]> git.saurik.com Git - wxWidgets.git/commitdiff
Removed ellipsis from "About..." occurrences.
authorDimitri Schoolwerth <dimitri.schoolwerth@gmail.com>
Fri, 20 Jan 2012 16:51:09 +0000 (16:51 +0000)
committerDimitri Schoolwerth <dimitri.schoolwerth@gmail.com>
Fri, 20 Jan 2012 16:51:09 +0000 (16:51 +0000)
MS and Apple guidelines mention ellipses should generally be used when a command needs additional information from the user before the operation can execute. This is not the case for showing an about dialog so the ellipses have been removed.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70412 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

114 files changed:
build/bakefiles/wxpresets/sample/minimal.cpp
demos/forty/forty.cpp
distrib/autopackage/sample/minimal.cpp
docs/doxygen/mainpages/const_stockitems.h
locale/af.po
locale/ar.po
locale/ca.po
locale/ca@valencia.po
locale/cs.po
locale/da.po
locale/de.po
locale/el.po
locale/es.po
locale/eu.po
locale/fi.po
locale/fr.po
locale/gl_ES.po
locale/hi.po
locale/hu.po
locale/id.po
locale/it.po
locale/ja.po
locale/ko_KR.po
locale/lt.po
locale/lv.po
locale/ms.po
locale/nb.po
locale/nl.po
locale/pl.po
locale/pt.po
locale/pt_BR.po
locale/ro.po
locale/ru.po
locale/sk.po
locale/sl.po
locale/sq.po
locale/sv.po
locale/tr.po
locale/uk.po
locale/vi.po
locale/wxstd.pot
locale/zh_CN.po
locale/zh_TW.po
samples/access/accesstest.cpp
samples/artprov/arttest.cpp
samples/calendar/calendar.cpp
samples/caret/caret.cpp
samples/clipboard/clipboard.cpp
samples/combo/combo.cpp
samples/debugrpt/debugrpt.cpp
samples/dialogs/dialogs.cpp
samples/dialup/nettest.cpp
samples/display/display.cpp
samples/dragimag/dragimag.cpp
samples/drawing/drawing.cpp
samples/erase/erase.cpp
samples/event/event.cpp
samples/except/except.cpp
samples/exec/exec.cpp
samples/font/font.cpp
samples/fswatcher/fswatcher.cpp
samples/htlbox/htlbox.cpp
samples/image/image.cpp
samples/internat/ar/internat.mo
samples/internat/ar/internat.po
samples/internat/bg/internat.mo
samples/internat/bg/internat.po
samples/internat/cs/internat.mo
samples/internat/cs/internat.po
samples/internat/de/internat.mo
samples/internat/de/internat.po
samples/internat/fr/internat.mo
samples/internat/fr/internat.po
samples/internat/internat.cpp
samples/internat/it/internat.mo
samples/internat/it/internat.po
samples/internat/ja/internat.mo
samples/internat/ja/internat.po
samples/internat/ja_JP.EUC-JP/internat.mo
samples/internat/ja_JP.EUC-JP/internat.po
samples/internat/ka/internat.mo
samples/internat/ka/internat.po
samples/internat/pl/internat.mo
samples/internat/pl/internat.po
samples/internat/ru/internat.mo
samples/internat/ru/internat.po
samples/internat/sv/internat.mo
samples/internat/sv/internat.po
samples/keyboard/keyboard.cpp
samples/mediaplayer/mediaplayer.cpp
samples/minimal/minimal.cpp
samples/oleauto/oleauto.cpp
samples/opengl/penguin/penguin.cpp
samples/popup/popup.cpp
samples/propgrid/propgrid.cpp
samples/regtest/regtest.cpp
samples/richtext/richtext.cpp
samples/sockets/client.cpp
samples/sockets/server.cpp
samples/sound/sound.cpp
samples/splash/splash.cpp
samples/statbar/statbar.cpp
samples/thread/thread.cpp
samples/treectrl/treetest.cpp
samples/vscroll/vstest.cpp
samples/wizard/wizard.cpp
samples/xrc/rc/menu.xrc
samples/xrc/rc/resource.xrc
samples/xti/xti.cpp
src/common/stockitem.cpp
src/html/helpfrm.cpp
tests/intl/fr/internat.po
utils/emulator/src/emulator.cpp
utils/screenshotgen/src/guiframe.cpp

index 06917571e7b40825a1d69a4003ae8f90605a4173..7b68540229e12ad5b3cda7e52466f0abc84744c9 100644 (file)
@@ -143,7 +143,7 @@ MyFrame::MyFrame(const wxString& title)
 
     // the "About" item should be in the help menu
     wxMenu *helpMenu = new wxMenu;
-    helpMenu->Append(Minimal_About, wxT("&About...\tF1"), wxT("Show about dialog"));
+    helpMenu->Append(Minimal_About, wxT("&About\tF1"), wxT("Show about dialog"));
 
     menuFile->Append(Minimal_Quit, wxT("E&xit\tAlt-X"), wxT("Quit this program"));
 
index ef09eafd1ebed95b5d35e140ba043025cb6e7884..ef293297a8d918003cb7164d6c650f46865d4028 100644 (file)
@@ -177,7 +177,7 @@ FortyFrame::FortyFrame(wxFrame* frame, const wxString& title, const wxPoint& pos
 
     wxMenu* helpMenu = new wxMenu;
     helpMenu->Append(wxID_HELP_CONTENTS, wxT("&Help Contents"), wxT("Displays information about playing the game"));
-    helpMenu->Append(wxID_ABOUT, wxT("&About..."), wxT("About Forty Thieves"));
+    helpMenu->Append(wxID_ABOUT, wxT("&About"), wxT("About Forty Thieves"));
 
     m_menuBar = new wxMenuBar;
     m_menuBar->Append(gameMenu,    wxT("&Game"));
index 06917571e7b40825a1d69a4003ae8f90605a4173..7b68540229e12ad5b3cda7e52466f0abc84744c9 100644 (file)
@@ -143,7 +143,7 @@ MyFrame::MyFrame(const wxString& title)
 
     // the "About" item should be in the help menu
     wxMenu *helpMenu = new wxMenu;
-    helpMenu->Append(Minimal_About, wxT("&About...\tF1"), wxT("Show about dialog"));
+    helpMenu->Append(Minimal_About, wxT("&About\tF1"), wxT("Show about dialog"));
 
     menuFile->Append(Minimal_Quit, wxT("E&xit\tAlt-X"), wxT("Quit this program"));
 
index bfe2345ccfbf9b09f73f014d61071774383100e7..c4172a5f5b16cdd42530b607c463de21a5435e33 100644 (file)
@@ -19,7 +19,7 @@ Also note that you can retrieve stock bitmaps using wxArtProvider.
 
 @beginDefList
 @row3col{<b>Stock ID</b>, <b>GTK icon</b>, <b>Stock label</b>}
-@stock{wxID_ABOUT,about,&About...}
+@stock{wxID_ABOUT,about,&About}
 @stock{wxID_ADD,add,Add}
 @stock{wxID_APPLY,apply,&Apply}
 @stock{wxID_BACKWARD,go-back-ltr,&Back}
index 1b63989f32fee500aaf92bcc8a3405894c41abf7..3d8252fb602af2acea7c0142d5c93c7107e64375 100644 (file)
@@ -132,8 +132,8 @@ msgstr "%s lêers (%s)|%s"
 
 #: ../src/common/stockitem.cpp:140 ../src/html/helpfrm.cpp:143
 #: ../src/html/helpfrm.cpp:145
-msgid "&About..."
-msgstr "&Aangaande..."
+msgid "&About"
+msgstr "&Aangaande"
 
 #: ../src/common/stockitem.cpp:208
 msgid "&Actual Size"
@@ -1248,8 +1248,8 @@ msgstr "&Aangaande..."
 
 #: ../src/common/stockitem.cpp:140
 #, fuzzy
-msgid "About..."
-msgstr "&Aangaande..."
+msgid "About"
+msgstr "&Aangaande"
 
 #: ../src/common/stockitem.cpp:208
 msgid "Actual Size"
index d978b519b188d1995cef03498624c389108e357f..1be8bafb98c73e94a747afb642c2c53eb6a62b82 100644 (file)
@@ -138,8 +138,8 @@ msgstr ""
 
 #: ../src/common/stockitem.cpp:140 ../src/html/helpfrm.cpp:143
 #: ../src/html/helpfrm.cpp:145
-msgid "&About..."
-msgstr "&عن..."
+msgid "&About"
+msgstr "&عن"
 
 #: ../src/common/stockitem.cpp:208
 msgid "&Actual Size"
@@ -1193,8 +1193,8 @@ msgstr ""
 
 #: ../src/common/stockitem.cpp:140
 #, fuzzy
-msgid "About..."
-msgstr "&عن..."
+msgid "About"
+msgstr "&عن"
 
 #: ../src/common/stockitem.cpp:208
 #, fuzzy
index b638d4fd002530334c16675610024e0bac8c4840..8873317399138cecaed294e25d98649e9b93116e 100644 (file)
@@ -132,7 +132,7 @@ msgstr "Fitxers (%s)|%s"
 
 #: ../src/common/stockitem.cpp:140 ../src/html/helpfrm.cpp:143
 #: ../src/html/helpfrm.cpp:145
-msgid "&About..."
+msgid "&About"
 msgstr ""
 
 #: ../src/common/stockitem.cpp:208
@@ -1247,7 +1247,7 @@ msgid "About %s"
 msgstr ""
 
 #: ../src/common/stockitem.cpp:140
-msgid "About..."
+msgid "About"
 msgstr ""
 
 #: ../src/common/stockitem.cpp:208
index fdfd848a3802ab3121e0774ace09f66df21a10e9..f1ec994db0690ce7094aac3e5722b94d02b8349b 100644 (file)
@@ -132,7 +132,7 @@ msgstr "Fitxers (%s)|%s"
 
 #: ../src/common/stockitem.cpp:140 ../src/html/helpfrm.cpp:143
 #: ../src/html/helpfrm.cpp:145
-msgid "&About..."
+msgid "&About"
 msgstr ""
 
 #: ../src/common/stockitem.cpp:208
@@ -1247,7 +1247,7 @@ msgid "About %s"
 msgstr ""
 
 #: ../src/common/stockitem.cpp:140
-msgid "About..."
+msgid "About"
 msgstr ""
 
 #: ../src/common/stockitem.cpp:208
index d2b854232759afb995d2563961b82849dbea654a..25cc48b27df9fa19a25c6148f20148ed535dac1b 100644 (file)
@@ -141,8 +141,8 @@ msgstr "%s souborů (%s)|%s"
 #: ../src/common/stockitem.cpp:140
 #: ../src/html/helpfrm.cpp:143
 #: ../src/html/helpfrm.cpp:145
-msgid "&About..."
-msgstr "O &aplikaci..."
+msgid "&About"
+msgstr "O &aplikaci"
 
 #: ../src/common/stockitem.cpp:208
 msgid "&Actual Size"
@@ -1221,8 +1221,8 @@ msgid "About %s"
 msgstr "O %s"
 
 #: ../src/common/stockitem.cpp:140
-msgid "About..."
-msgstr "O..."
+msgid "About"
+msgstr "O"
 
 #: ../src/common/stockitem.cpp:208
 msgid "Actual Size"
index c87c244816879d900500a01e94aa41ea4ba93f90..b2e7d117512453a682c2d3ca0052ef5eb56790c9 100644 (file)
@@ -136,8 +136,8 @@ msgstr "%s filer (%s)|%s"
 
 #: ../src/common/stockitem.cpp:140 ../src/html/helpfrm.cpp:143
 #: ../src/html/helpfrm.cpp:145
-msgid "&About..."
-msgstr "&Om..."
+msgid "&About"
+msgstr "&Om"
 
 #: ../src/common/stockitem.cpp:208
 msgid "&Actual Size"
@@ -1236,8 +1236,8 @@ msgstr "&Om..."
 
 #: ../src/common/stockitem.cpp:140
 #, fuzzy
-msgid "About..."
-msgstr "&Om..."
+msgid "About"
+msgstr "&Om"
 
 #: ../src/common/stockitem.cpp:208
 #, fuzzy
index c6fe5e6e80b8e7f5efe4dd7062b26077407b2fee..4381a79df5105f49d836891fe47c5a3474b004e7 100644 (file)
@@ -136,8 +136,8 @@ msgstr "%s Dateien (%s)|%s"
 
 #: ../src/common/stockitem.cpp:140 ../src/html/helpfrm.cpp:143
 #: ../src/html/helpfrm.cpp:145
-msgid "&About..."
-msgstr "Übe&r..."
+msgid "&About"
+msgstr "Übe&r"
 
 #: ../src/common/stockitem.cpp:208
 msgid "&Actual Size"
@@ -1202,8 +1202,8 @@ msgstr "Über "
 
 #: ../src/common/stockitem.cpp:140
 #, fuzzy
-msgid "About..."
-msgstr "Übe&r..."
+msgid "About"
+msgstr "Übe&r"
 
 #: ../src/common/stockitem.cpp:208
 #, fuzzy
index 50601e347eecc141c09cd4c60e48fde3449678a2..3b0f799092a979c542b2790bad193e944b26a374 100644 (file)
@@ -133,8 +133,8 @@ msgstr "%s αρχεία (%s)|%s"
 
 #: ../src/common/stockitem.cpp:140 ../src/html/helpfrm.cpp:143
 #: ../src/html/helpfrm.cpp:145
-msgid "&About..."
-msgstr "&Περί..."
+msgid "&About"
+msgstr "&Περί"
 
 #: ../src/common/stockitem.cpp:208
 msgid "&Actual Size"
@@ -1233,8 +1233,8 @@ msgstr "&Περί..."
 
 #: ../src/common/stockitem.cpp:140
 #, fuzzy
-msgid "About..."
-msgstr "&Περί..."
+msgid "About"
+msgstr "&Περί"
 
 #: ../src/common/stockitem.cpp:208
 #, fuzzy
index 50041a3d6f365c514a44bd0d2d0a1f9d2e74b066..03bcc4e4057a836b97f4fa9ea3773e0ecbc86bdf 100644 (file)
@@ -134,8 +134,8 @@ msgstr "archivos %s (%s)|%s"
 
 #: ../src/common/stockitem.cpp:140 ../src/html/helpfrm.cpp:143
 #: ../src/html/helpfrm.cpp:145
-msgid "&About..."
-msgstr "&Acerca de..."
+msgid "&About"
+msgstr "&Acerca de"
 
 #: ../src/common/stockitem.cpp:208
 msgid "&Actual Size"
@@ -1206,8 +1206,8 @@ msgstr "Acerca de"
 
 #: ../src/common/stockitem.cpp:140
 #, fuzzy
-msgid "About..."
-msgstr "&Acerca de..."
+msgid "About"
+msgstr "&Acerca de"
 
 #: ../src/common/stockitem.cpp:208
 #, fuzzy
index d46a45ccec6e68f48d0a7a403130dbb5e004d48a..e3af8e781ca6ee38241f477d40e3dded282d75fa 100644 (file)
@@ -137,8 +137,8 @@ msgstr "%s agiri (%s)|%s"
 
 #: ../src/common/stockitem.cpp:140 ../src/html/helpfrm.cpp:143
 #: ../src/html/helpfrm.cpp:145
-msgid "&About..."
-msgstr "&Honi buruz..."
+msgid "&About"
+msgstr "&Honi buruz"
 
 #: ../src/common/stockitem.cpp:208
 msgid "&Actual Size"
@@ -1182,8 +1182,8 @@ msgstr "%s-ri buruz"
 
 #: ../src/common/stockitem.cpp:140
 #, fuzzy
-msgid "About..."
-msgstr "&Honi buruz..."
+msgid "About"
+msgstr "&Honi buruz"
 
 #: ../src/common/stockitem.cpp:208
 #, fuzzy
index 938a98854b2abd55cddfb1d1f9f178023b87e7de..3bd21f45e7eaacd010a44c584d3ad211899504a9 100644 (file)
@@ -140,8 +140,8 @@ msgstr "%s-tiedostot (%s)|%s"
 
 #: ../src/common/stockitem.cpp:140 ../src/html/helpfrm.cpp:143
 #: ../src/html/helpfrm.cpp:145
-msgid "&About..."
-msgstr "&Tietoja..."
+msgid "&About"
+msgstr "&Tietoja"
 
 #: ../src/common/stockitem.cpp:208
 msgid "&Actual Size"
@@ -1215,8 +1215,8 @@ msgstr "Tietoja %s"
 
 #: ../src/common/stockitem.cpp:140
 #, fuzzy
-msgid "About..."
-msgstr "&Tietoja..."
+msgid "About"
+msgstr "&Tietoja"
 
 #: ../src/common/stockitem.cpp:208
 #, fuzzy
index 5682313ed8b32f4ba242d6ae1f125cf064f723e2..e93aa5b52368045771a8dc612a632db747bfb38a 100644 (file)
@@ -134,8 +134,8 @@ msgstr "%s fichiers (%s)|%s"
 
 #: ../src/common/stockitem.cpp:140 ../src/html/helpfrm.cpp:143
 #: ../src/html/helpfrm.cpp:145
-msgid "&About..."
-msgstr "À &propos..."
+msgid "&About"
+msgstr "À &propos"
 
 #: ../src/common/stockitem.cpp:208
 msgid "&Actual Size"
@@ -1206,8 +1206,8 @@ msgstr "À propos"
 
 #: ../src/common/stockitem.cpp:140
 #, fuzzy
-msgid "About..."
-msgstr "À &propos..."
+msgid "About"
+msgstr "À &propos"
 
 #: ../src/common/stockitem.cpp:208
 #, fuzzy
index 18e2025088c1739d18469cfd8021b0293f4cc6f1..1260a290a5647521d0c221b624aa70abffa75226 100644 (file)
@@ -146,8 +146,8 @@ msgstr "%s ficheiros (%s)|%s"
 
 #: ../src/common/stockitem.cpp:140 ../src/html/helpfrm.cpp:143
 #: ../src/html/helpfrm.cpp:145
-msgid "&About..."
-msgstr "&Acerca de..."
+msgid "&About"
+msgstr "&Acerca de"
 
 #: ../src/common/stockitem.cpp:208
 msgid "&Actual Size"
@@ -1259,8 +1259,8 @@ msgstr "&Acerca de..."
 
 #: ../src/common/stockitem.cpp:140
 #, fuzzy
-msgid "About..."
-msgstr "&Acerca de..."
+msgid "About"
+msgstr "&Acerca de"
 
 #: ../src/common/stockitem.cpp:208
 #, fuzzy
index ba9dcfd6ff2e2358e68169edcc279193a43190c8..2b6710ddb2246cd30ca3e30178d08dec99734ee7 100644 (file)
@@ -140,8 +140,8 @@ msgstr "%s फ़ाइलें (%s)|%s"
 
 #: ../src/common/stockitem.cpp:140 ../src/html/helpfrm.cpp:143
 #: ../src/html/helpfrm.cpp:145
-msgid "&About..."
-msgstr "के बारे में (&A)..."
+msgid "&About"
+msgstr "के बारे में (&A)"
 
 #: ../src/common/stockitem.cpp:208
 msgid "&Actual Size"
@@ -1217,8 +1217,8 @@ msgstr "के बारे में"
 
 #: ../src/common/stockitem.cpp:140
 #, fuzzy
-msgid "About..."
-msgstr "के बारे में (&A)..."
+msgid "About"
+msgstr "के बारे में (&A)"
 
 #: ../src/common/stockitem.cpp:208
 #, fuzzy
index e5835527d649413d85842585cd9eccf8cef6da23..5b543ea3fef059120aa00cb04dd84a43e9c6f094 100644 (file)
@@ -134,8 +134,8 @@ msgstr "%s fájl (%s)|%s"
 
 #: ../src/common/stockitem.cpp:140 ../src/html/helpfrm.cpp:143
 #: ../src/html/helpfrm.cpp:145
-msgid "&About..."
-msgstr "&Névjegy..."
+msgid "&About"
+msgstr "&Névjegy"
 
 #: ../src/common/stockitem.cpp:208
 msgid "&Actual Size"
@@ -1219,8 +1219,8 @@ msgstr "&Névjegy..."
 
 #: ../src/common/stockitem.cpp:140
 #, fuzzy
-msgid "About..."
-msgstr "&Névjegy..."
+msgid "About"
+msgstr "&Névjegy"
 
 #: ../src/common/stockitem.cpp:208
 #, fuzzy
index c9ef6bc9611c085d31057169bc8b0c744bedfdd1..be9db6641a8cf7ccf267404c66c21c617d434d31 100644 (file)
@@ -137,8 +137,8 @@ msgstr "%s File-file (%s)|%s"
 
 #: ../src/common/stockitem.cpp:140 ../src/html/helpfrm.cpp:143
 #: ../src/html/helpfrm.cpp:145
-msgid "&About..."
-msgstr "&Tentang..."
+msgid "&About"
+msgstr "&Tentang"
 
 #: ../src/common/stockitem.cpp:208
 msgid "&Actual Size"
@@ -1237,8 +1237,8 @@ msgstr "&Tentang..."
 
 #: ../src/common/stockitem.cpp:140
 #, fuzzy
-msgid "About..."
-msgstr "&Tentang..."
+msgid "About"
+msgstr "&Tentang"
 
 #: ../src/common/stockitem.cpp:208
 #, fuzzy
index 87dcf4669aa2fcaf05dbcfac2e44430394a90d89..a92c857ca79c59824d31032ba9786835af3f1c96 100644 (file)
@@ -1,6 +1,6 @@
 msgid ""
 msgstr ""
-"Project-Id-Version: $Id: it.po 69691 2011-11-06 12:07:35Z VZ $\n"
+"Project-Id-Version: $Id$\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2011-11-06 12:55+0100\n"
 "PO-Revision-Date: 2011-11-23 15:23+0100\n"
@@ -139,8 +139,8 @@ msgstr "%s file (%s)|%s"
 #: ../src/common/stockitem.cpp:140
 #: ../src/html/helpfrm.cpp:143
 #: ../src/html/helpfrm.cpp:145
-msgid "&About..."
-msgstr "Inform&azioni su..."
+msgid "&About"
+msgstr "Inform&azioni su"
 
 #: ../src/common/stockitem.cpp:208
 msgid "&Actual Size"
@@ -1219,8 +1219,8 @@ msgid "About %s"
 msgstr "Informazioni su %s"
 
 #: ../src/common/stockitem.cpp:140
-msgid "About..."
-msgstr "Informazioni su..."
+msgid "About"
+msgstr "Informazioni su"
 
 #: ../src/common/stockitem.cpp:208
 msgid "Actual Size"
index 36d27a2fd2a184d2891d96d704fe86a472d495ea..5a5514a9d026252b4488834544314c8c0cfe338a 100644 (file)
@@ -133,8 +133,8 @@ msgstr "%s 形式 (%s)|%s"
 
 #: ../src/common/stockitem.cpp:140 ../src/html/helpfrm.cpp:143
 #: ../src/html/helpfrm.cpp:145
-msgid "&About..."
-msgstr "詳細 (&A) ..."
+msgid "&About"
+msgstr "詳細 (&A)"
 
 #: ../src/common/stockitem.cpp:208
 msgid "&Actual Size"
@@ -1178,8 +1178,8 @@ msgstr "%s について"
 
 #: ../src/common/stockitem.cpp:140
 #, fuzzy
-msgid "About..."
-msgstr "詳細 (&A) ..."
+msgid "About"
+msgstr "詳細 (&A)"
 
 #: ../src/common/stockitem.cpp:208
 #, fuzzy
index e4ef34d7661d843b0c0af93c25ae7cd3aa9b7b10..46bdcbeabb3e47530e3ef5ba5c883820328db50b 100644 (file)
@@ -134,8 +134,8 @@ msgstr "%s 파일 (%s)|%s"
 
 #: ../src/common/stockitem.cpp:140 ../src/html/helpfrm.cpp:143
 #: ../src/html/helpfrm.cpp:145
-msgid "&About..."
-msgstr "이 프로그램은...(&A)"
+msgid "&About"
+msgstr "이 프로그램은(&A)"
 
 #: ../src/common/stockitem.cpp:208
 msgid "&Actual Size"
@@ -1201,8 +1201,8 @@ msgstr "%s 정보"
 
 #: ../src/common/stockitem.cpp:140
 #, fuzzy
-msgid "About..."
-msgstr "이 프로그램은...(&A)"
+msgid "About"
+msgstr "이 프로그램은(&A)"
 
 #: ../src/common/stockitem.cpp:208
 #, fuzzy
index 658709ab43abed3e095f1d0b562c0350f71d7b26..3480ac6562f7dd06a8738095fea779a94a96da12 100644 (file)
@@ -139,8 +139,8 @@ msgstr "%s files (%s)|%s"
 #: ../src/common/stockitem.cpp:140
 #: ../src/html/helpfrm.cpp:143
 #: ../src/html/helpfrm.cpp:145
-msgid "&About..."
-msgstr "&About..."
+msgid "&About"
+msgstr "&About"
 
 #: ../src/common/stockitem.cpp:208
 msgid "&Actual Size"
@@ -270,8 +270,8 @@ msgid "&Copy URL"
 msgstr "&Copy URL"
 
 #: ../src/common/headerctrlcmn.cpp:314
-msgid "&Customize..."
-msgstr "&Pritaikyti..."
+msgid "&Customize"
+msgstr "&Pritaikyti"
 
 #: ../src/generic/dbgrptg.cpp:331
 msgid "&Debug report preview:"
@@ -1219,8 +1219,8 @@ msgid "About %s"
 msgstr "About %s"
 
 #: ../src/common/stockitem.cpp:140
-msgid "About..."
-msgstr "Apie..."
+msgid "About"
+msgstr "Apie"
 
 #: ../src/common/stockitem.cpp:208
 msgid "Actual Size"
index e799ccee8c6bf19039540ce4ee2a6d65a1461062..3d217b7862e75fe41b60c85e9ecd1390fdadd48a 100644 (file)
@@ -136,8 +136,8 @@ msgstr "%s failus (%s)|%s"
 
 #: ../src/common/stockitem.cpp:140 ../src/html/helpfrm.cpp:143
 #: ../src/html/helpfrm.cpp:145
-msgid "&About..."
-msgstr "P&ar..."
+msgid "&About"
+msgstr "P&ar"
 
 #: ../src/common/stockitem.cpp:208
 #, fuzzy
@@ -1222,8 +1222,8 @@ msgstr "P&ar..."
 
 #: ../src/common/stockitem.cpp:140
 #, fuzzy
-msgid "About..."
-msgstr "P&ar..."
+msgid "About"
+msgstr "P&ar"
 
 #: ../src/common/stockitem.cpp:208
 #, fuzzy
index ef7edd89e6c2e5c3d1fe639fa43f2a89547d3db9..be971c5d127b674573033278d818e2bf4ecd0ab9 100644 (file)
@@ -138,8 +138,8 @@ msgstr "fail %s (%s)|%s"
 
 #: ../src/common/stockitem.cpp:140 ../src/html/helpfrm.cpp:143
 #: ../src/html/helpfrm.cpp:145
-msgid "&About..."
-msgstr "Perih&al..."
+msgid "&About"
+msgstr "Perih&al"
 
 #: ../src/common/stockitem.cpp:208
 msgid "&Actual Size"
@@ -1210,8 +1210,8 @@ msgstr "Perihal"
 
 #: ../src/common/stockitem.cpp:140
 #, fuzzy
-msgid "About..."
-msgstr "Perih&al..."
+msgid "About"
+msgstr "Perih&al"
 
 #: ../src/common/stockitem.cpp:208
 #, fuzzy
index 420a80479a2f64cddb42a4100369a3b836438a64..f8296186751b8823175b6b897267c6d024f35eed 100644 (file)
@@ -138,7 +138,7 @@ msgstr "%s filer (%s)|%s"
 
 #: ../src/common/stockitem.cpp:140 ../src/html/helpfrm.cpp:143
 #: ../src/html/helpfrm.cpp:145
-msgid "&About..."
+msgid "&About"
 msgstr "%Om"
 
 #: ../src/common/stockitem.cpp:208
@@ -1238,7 +1238,7 @@ msgstr "%Om"
 
 #: ../src/common/stockitem.cpp:140
 #, fuzzy
-msgid "About..."
+msgid "About"
 msgstr "%Om"
 
 #: ../src/common/stockitem.cpp:208
index 72e5106f395b7828e6c7a00c8e70ee96b23ac851..588f2724005905f61fe6b8a4e5775d655178e66c 100644 (file)
@@ -135,8 +135,8 @@ msgstr "%s bestanden (%s)|%s"
 
 #: ../src/common/stockitem.cpp:140 ../src/html/helpfrm.cpp:143
 #: ../src/html/helpfrm.cpp:145
-msgid "&About..."
-msgstr "In&fo..."
+msgid "&About"
+msgstr "In&fo"
 
 #: ../src/common/stockitem.cpp:208
 msgid "&Actual Size"
@@ -1202,8 +1202,8 @@ msgstr "Over %s"
 
 #: ../src/common/stockitem.cpp:140
 #, fuzzy
-msgid "About..."
-msgstr "In&fo..."
+msgid "About"
+msgstr "In&fo"
 
 #: ../src/common/stockitem.cpp:208
 #, fuzzy
index 3422c46034640cc143a58a8d6dda22be42e02191..280fa14fa663e54b22f3c6cf8e0d64685ec2d5c6 100644 (file)
@@ -134,8 +134,8 @@ msgstr "%s pliki (%s)|%s"
 
 #: ../src/common/stockitem.cpp:140 ../src/html/helpfrm.cpp:143
 #: ../src/html/helpfrm.cpp:145
-msgid "&About..."
-msgstr "Inform&acje..."
+msgid "&About"
+msgstr "Inform&acje"
 
 #: ../src/common/stockitem.cpp:208
 msgid "&Actual Size"
@@ -1201,8 +1201,8 @@ msgstr "O %s"
 
 #: ../src/common/stockitem.cpp:140
 #, fuzzy
-msgid "About..."
-msgstr "Inform&acje..."
+msgid "About"
+msgstr "Inform&acje"
 
 #: ../src/common/stockitem.cpp:208
 #, fuzzy
index c917a6f58d23feeadb96e3b0c8ec8f579bf05fd2..22d4c36ac4c6e7693912cc98cab443e2b5bfc2d1 100644 (file)
@@ -140,8 +140,8 @@ msgstr "%s ficheiros (%s)|%s"
 
 #: ../src/common/stockitem.cpp:140 ../src/html/helpfrm.cpp:143
 #: ../src/html/helpfrm.cpp:145
-msgid "&About..."
-msgstr "&Sobre..."
+msgid "&About"
+msgstr "&Sobre"
 
 #: ../src/common/stockitem.cpp:208
 msgid "&Actual Size"
@@ -1211,8 +1211,8 @@ msgstr "Sobre "
 
 #: ../src/common/stockitem.cpp:140
 #, fuzzy
-msgid "About..."
-msgstr "&Sobre..."
+msgid "About"
+msgstr "&Sobre"
 
 #: ../src/common/stockitem.cpp:208
 #, fuzzy
index 859fc4acaaaea50a98970688c6a569b4ca91b078..339c309ae17377e220316fe4df5d4f89ac03789f 100644 (file)
@@ -144,8 +144,8 @@ msgstr "Arquivos %s (%s)|%s"
 #: ../src/common/stockitem.cpp:140
 #: ../src/html/helpfrm.cpp:143
 #: ../src/html/helpfrm.cpp:145
-msgid "&About..."
-msgstr "&Sobre..."
+msgid "&About"
+msgstr "&Sobre"
 
 #: ../src/common/stockitem.cpp:208
 msgid "&Actual Size"
@@ -1224,8 +1224,8 @@ msgid "About %s"
 msgstr "Sobre o %s"
 
 #: ../src/common/stockitem.cpp:140
-msgid "About..."
-msgstr "Sobre..."
+msgid "About"
+msgstr "Sobre"
 
 #: ../src/common/stockitem.cpp:208
 msgid "Actual Size"
index d02ad1ddc2222f473c1b42077f0d2d760c0964b9..7b0637bc394c311240cbfb4f2706e9777b0b1509 100644 (file)
@@ -140,8 +140,8 @@ msgstr "fișiere %s (%s)|%s"
 
 #: ../src/common/stockitem.cpp:140 ../src/html/helpfrm.cpp:143
 #: ../src/html/helpfrm.cpp:145
-msgid "&About..."
-msgstr "&Despre..."
+msgid "&About"
+msgstr "&Despre"
 
 #: ../src/common/stockitem.cpp:208
 msgid "&Actual Size"
@@ -1185,8 +1185,8 @@ msgstr "Despre %s"
 
 #: ../src/common/stockitem.cpp:140
 #, fuzzy
-msgid "About..."
-msgstr "&Despre..."
+msgid "About"
+msgstr "&Despre"
 
 #: ../src/common/stockitem.cpp:208
 #, fuzzy
index 3d88a34f507d05e75639ad3c5d99ece12751d418..5f5a0057ef11b7bb6d164535f24fd711a12c29f3 100644 (file)
@@ -136,7 +136,7 @@ msgstr "%s файлы (%s)|%s"
 
 #: ../src/common/stockitem.cpp:140 ../src/html/helpfrm.cpp:143
 #: ../src/html/helpfrm.cpp:145
-msgid "&About..."
+msgid "&About"
 msgstr "О &программе"
 
 #: ../src/common/stockitem.cpp:208
@@ -1236,7 +1236,7 @@ msgstr "О &программе"
 
 #: ../src/common/stockitem.cpp:140
 #, fuzzy
-msgid "About..."
+msgid "About"
 msgstr "О &программе"
 
 #: ../src/common/stockitem.cpp:208
index b65b3f3d5bae4dce1bc6dcea7fc23acf7a6777a2..89771ba3a5042aa04fee8c5e459f7e52a7560f7c 100644 (file)
@@ -136,8 +136,8 @@ msgstr "%s súborov (%s)|%s"
 
 #: ../src/common/stockitem.cpp:140 ../src/html/helpfrm.cpp:143
 #: ../src/html/helpfrm.cpp:145
-msgid "&About..."
-msgstr "&O aplikácii..."
+msgid "&About"
+msgstr "&O aplikácii"
 
 #: ../src/common/stockitem.cpp:208
 msgid "&Actual Size"
@@ -1207,8 +1207,8 @@ msgstr "O aplikácii"
 
 #: ../src/common/stockitem.cpp:140
 #, fuzzy
-msgid "About..."
-msgstr "&O aplikácii..."
+msgid "About"
+msgstr "&O aplikácii"
 
 #: ../src/common/stockitem.cpp:208
 #, fuzzy
index 60d20bc4d162a2c04b87841223af3b2e822ec626..42e945f6b2628596ac06573151781bf12a6e838e 100644 (file)
@@ -162,8 +162,8 @@ msgstr "datoteke %s (%s)|%s"
 
 #: ../src/common/stockitem.cpp:140 ../src/html/helpfrm.cpp:143
 #: ../src/html/helpfrm.cpp:145
-msgid "&About..."
-msgstr "&O programu ..."
+msgid "&About"
+msgstr "&O programu"
 
 #: ../src/common/stockitem.cpp:208
 msgid "&Actual Size"
@@ -1387,8 +1387,8 @@ msgstr "O programu %s ..."
 
 #: ../src/common/stockitem.cpp:140
 #, fuzzy
-msgid "About..."
-msgstr "&O programu ..."
+msgid "About"
+msgstr "&O programu"
 
 #: ../src/common/stockitem.cpp:208
 #, fuzzy
index 291f34ba05dea2f76a09de7deedeb480fce60918..ae1a1e5ccf3417742b2f82d31257fad44e62e726 100644 (file)
@@ -135,8 +135,8 @@ msgstr "%s kartela (%s)|%s"
 
 #: ../src/common/stockitem.cpp:140 ../src/html/helpfrm.cpp:143
 #: ../src/html/helpfrm.cpp:145
-msgid "&About..."
-msgstr "&Rreth..."
+msgid "&About"
+msgstr "&Rreth"
 
 #: ../src/common/stockitem.cpp:208
 msgid "&Actual Size"
@@ -1220,8 +1220,8 @@ msgstr "&Rreth..."
 
 #: ../src/common/stockitem.cpp:140
 #, fuzzy
-msgid "About..."
-msgstr "&Rreth..."
+msgid "About"
+msgstr "&Rreth"
 
 #: ../src/common/stockitem.cpp:208
 #, fuzzy
index 81a39ccfa743f52cc1c04194c3b347a2e2080ff8..1c0c3fd1ed4f50b95f6b95212b58e7ccd733400c 100644 (file)
@@ -132,8 +132,8 @@ msgstr "%s filer (%s)|%s"
 
 #: ../src/common/stockitem.cpp:140 ../src/html/helpfrm.cpp:143
 #: ../src/html/helpfrm.cpp:145
-msgid "&About..."
-msgstr "&Om..."
+msgid "&About"
+msgstr "&Om"
 
 #: ../src/common/stockitem.cpp:208
 msgid "&Actual Size"
@@ -1204,8 +1204,8 @@ msgstr "Om"
 
 #: ../src/common/stockitem.cpp:140
 #, fuzzy
-msgid "About..."
-msgstr "&Om..."
+msgid "About"
+msgstr "&Om"
 
 #: ../src/common/stockitem.cpp:208
 #, fuzzy
index 5506bd67e8b38ea39a67aea31851783534c87bb9..f7217c442e8177063b14f9fc3cd2e7a83db885c0 100644 (file)
@@ -133,8 +133,8 @@ msgstr "%s dosyaları (%s)|%s"
 
 #: ../src/common/stockitem.cpp:140 ../src/html/helpfrm.cpp:143
 #: ../src/html/helpfrm.cpp:145
-msgid "&About..."
-msgstr "&Hakkında..."
+msgid "&About"
+msgstr "&Hakkında"
 
 #: ../src/common/stockitem.cpp:208
 msgid "&Actual Size"
@@ -1200,8 +1200,8 @@ msgstr "%s Hakkında "
 
 #: ../src/common/stockitem.cpp:140
 #, fuzzy
-msgid "About..."
-msgstr "&Hakkında..."
+msgid "About"
+msgstr "&Hakkında"
 
 #: ../src/common/stockitem.cpp:208
 #, fuzzy
index da8a142c465f2d3d5c1da3b15c5b872837d6e76e..b6de809e1ce0675607348d28a46561591662f11c 100644 (file)
@@ -138,8 +138,8 @@ msgstr "%s файлів (%s)|%s"
 
 #: ../src/common/stockitem.cpp:140 ../src/html/helpfrm.cpp:143
 #: ../src/html/helpfrm.cpp:145
-msgid "&About..."
-msgstr "&Про програму"
+msgid "&About"
+msgstr "&Про програму"
 
 #: ../src/common/stockitem.cpp:208
 msgid "&Actual Size"
@@ -1166,8 +1166,8 @@ msgid "About %s"
 msgstr "Про %s"
 
 #: ../src/common/stockitem.cpp:140
-msgid "About..."
-msgstr "Про програму"
+msgid "About"
+msgstr "Про програму"
 
 #: ../src/common/stockitem.cpp:208
 msgid "Actual Size"
index 186a83173ae3834644bd2021e2765a2a8e8e2191..0e39023ad924171bbe3b3ea9bb4307228d9dcac9 100644 (file)
@@ -140,8 +140,8 @@ msgstr "%s tệp tin (%s)|%s"
 
 #: ../src/common/stockitem.cpp:140 ../src/html/helpfrm.cpp:143
 #: ../src/html/helpfrm.cpp:145
-msgid "&About..."
-msgstr "&Thông tin thêm..."
+msgid "&About"
+msgstr "&Thông tin thêm"
 
 #: ../src/common/stockitem.cpp:208
 msgid "&Actual Size"
@@ -1185,8 +1185,8 @@ msgstr "Giới thiệu %s"
 
 #: ../src/common/stockitem.cpp:140
 #, fuzzy
-msgid "About..."
-msgstr "&Thông tin thêm..."
+msgid "About"
+msgstr "&Thông tin thêm"
 
 #: ../src/common/stockitem.cpp:208
 #, fuzzy
index 123ab002606ab68e4b4507af40b698c03c0a8835..862f27c07f3da8757fd66b0c09432d35957084fa 100644 (file)
@@ -136,7 +136,7 @@ msgstr ""
 
 #: ../src/common/stockitem.cpp:140 ../src/html/helpfrm.cpp:143
 #: ../src/html/helpfrm.cpp:145
-msgid "&About..."
+msgid "&About"
 msgstr ""
 
 #: ../src/common/stockitem.cpp:208
@@ -1164,7 +1164,7 @@ msgid "About %s"
 msgstr ""
 
 #: ../src/common/stockitem.cpp:140
-msgid "About..."
+msgid "About"
 msgstr ""
 
 #: ../src/common/stockitem.cpp:208
index dc0a33a0b2b9ac05cce9b2addc25ed869ff5223f..de587c1ce35abb7946533362e8c5db5f4efbce38 100644 (file)
@@ -142,7 +142,7 @@ msgstr "%s 文件 (%s)|%s"
 #: ../src/common/stockitem.cpp:140
 #: ../src/html/helpfrm.cpp:143
 #: ../src/html/helpfrm.cpp:145
-msgid "&About..."
+msgid "&About"
 msgstr "关于(&A)"
 
 #: ../src/common/stockitem.cpp:208
@@ -1227,8 +1227,8 @@ msgid "About %s"
 msgstr "关于 %s"
 
 #: ../src/common/stockitem.cpp:140
-msgid "About..."
-msgstr "关于..."
+msgid "About"
+msgstr "关于"
 
 #: ../src/common/stockitem.cpp:208
 msgid "Actual Size"
index 299cc5c3577bb3131ae892198f86fde292db1739..6d1636aeef90b80ad620ee0f1aa053da4386d5a2 100644 (file)
@@ -140,8 +140,8 @@ msgstr "%s 檔 (%s)|%s"
 
 #: ../src/common/stockitem.cpp:140 ../src/html/helpfrm.cpp:143
 #: ../src/html/helpfrm.cpp:145
-msgid "&About..."
-msgstr "關於(&A)..."
+msgid "&About"
+msgstr "關於(&A)"
 
 #: ../src/common/stockitem.cpp:208
 msgid "&Actual Size"
@@ -1168,8 +1168,8 @@ msgid "About %s"
 msgstr "關於 %s"
 
 #: ../src/common/stockitem.cpp:140
-msgid "About..."
-msgstr "關於..."
+msgid "About"
+msgstr "關於"
 
 #: ../src/common/stockitem.cpp:208
 msgid "Actual Size"
index 894e7e77deb13fec19f7cddd3c6a7aa5f32d6718..cd47c0cc7ff4bb3c8ef9d1616e308164f34a535b 100644 (file)
@@ -337,7 +337,7 @@ MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size,
 
     // the "About" item should be in the help menu
     wxMenu *helpMenu = new wxMenu;
-    helpMenu->Append(AccessTest_About, wxT("&About..."), wxT("Show about dialog"));
+    helpMenu->Append(AccessTest_About, wxT("&About"), wxT("Show about dialog"));
 
     menuFile->Append(AccessTest_Query, wxT("Query"), wxT("Query the window hierarchy"));
     menuFile->AppendSeparator();
index ea083193f815ce7aea7f4ca46c3e28e425df73e3..ff541274c630718a196e5b99f033a9cf51690a52 100644 (file)
@@ -157,7 +157,7 @@ MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size,
 
     // the "About" item should be in the help menu
     wxMenu *helpMenu = new wxMenu;
-    helpMenu->Append(wxID_ABOUT, wxT("&About...\tF1"), wxT("Show about dialog"));
+    helpMenu->Append(wxID_ABOUT, wxT("&About\tF1"), wxT("Show about dialog"));
 
     menuFile->AppendCheckItem(ID_PlugProvider, wxT("&Plug-in art provider"), wxT("Enable custom art provider"));
     menuFile->AppendSeparator();
index 822e097994adce7d5c7d5bf9e0aaf80e6868f706..509af17c275e8e3198deb45d8314e32c1c655358 100644 (file)
@@ -386,7 +386,7 @@ MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size)
     wxMenuBar *menuBar = new wxMenuBar;
 
     wxMenu *menuFile = new wxMenu;
-    menuFile->Append(Calendar_File_About, wxT("&About...\tCtrl-A"), wxT("Show about dialog"));
+    menuFile->Append(Calendar_File_About, wxT("&About\tCtrl-A"), wxT("Show about dialog"));
     menuFile->AppendSeparator();
     menuFile->Append(Calendar_File_ClearLog, wxT("&Clear log\tCtrl-L"));
     menuFile->AppendSeparator();
index 483a9ba255f45ee40be5c22f64c65adf90015951..c1dc4d870a177f09893dc61ef34f78d45f4f2513 100644 (file)
@@ -216,7 +216,7 @@ MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size)
     menuFile->Append(Caret_SetFontSize, wxT("&Font size...\tCtrl-S"));
     menuFile->Append(Caret_Move, wxT("&Move caret\tCtrl-C"));
     menuFile->AppendSeparator();
-    menuFile->Append(Caret_About, wxT("&About...\tCtrl-A"), wxT("Show about dialog"));
+    menuFile->Append(Caret_About, wxT("&About\tCtrl-A"), wxT("Show about dialog"));
     menuFile->AppendSeparator();
     menuFile->Append(Caret_Quit, wxT("E&xit\tAlt-X"), wxT("Quit this program"));
 
index 6a46a8005fad20e53aeea3ea90ace090e0063ecb..ff139cfa23ce662a6386e40ecfcbf8eda8df23c1 100644 (file)
@@ -115,7 +115,7 @@ MyFrame::MyFrame(const wxString& title)
 
     // the "About" item should be in the help menu
     wxMenu *helpMenu = new wxMenu;
-    helpMenu->Append(ID_About, "&About...\tF1", "Show about dialog");
+    helpMenu->Append(ID_About, "&About\tF1", "Show about dialog");
 
     fileMenu->Append(ID_Quit, "E&xit\tAlt-X", "Quit this program");
 
index 28660519d0760fec48f53278bbd93b6921f9d480..2ed5167ad50667b194ec8e30aa207a5db6e846f5 100644 (file)
@@ -624,7 +624,7 @@ MyFrame::MyFrame(const wxString& title)
 
     // the "About" item should be in the help menu
     wxMenu *helpMenu = new wxMenu;
-    helpMenu->Append(ComboCtrl_About, wxT("&About...\tF1"), wxT("Show about dialog"));
+    helpMenu->Append(ComboCtrl_About, wxT("&About\tF1"), wxT("Show about dialog"));
 
     fileMenu->Append(ComboCtrl_Compare, wxT("&Compare against wxComboBox..."),
         wxT("Show some wxOwnerDrawnComboBoxes side-by-side with native wxComboBoxes."));
index e8b5ee9f3a7eaa6178a1616062ab4ee50bb2b21c..3107665b9194ca77b3a491da21301671804076b1 100644 (file)
@@ -251,7 +251,7 @@ MyFrame::MyFrame()
                        wxT("You need to configure a web server accepting debug report uploads to use this function"));
 
     wxMenu *menuHelp = new wxMenu;
-    menuHelp->Append(DebugRpt_About, wxT("&About...\tF1"));
+    menuHelp->Append(DebugRpt_About, wxT("&About\tF1"));
 
     wxMenuBar *mbar = new wxMenuBar();
     mbar->Append(menuFile, wxT("&File"));
index ce73b79e392b9656039aa0696d4187745719b6e3..d281082dd8ed1ce3033adcd9e20224fdd48f5f11 100644 (file)
@@ -670,7 +670,7 @@ MyFrame::MyFrame(const wxString& title)
         // satisfy this condition and need to define and connect a separate id.
         static const int DIALOGS_SYSTEM_ABOUT = 0x4010;
 
-        menu->Append(DIALOGS_SYSTEM_ABOUT, "&About...");
+        menu->Append(DIALOGS_SYSTEM_ABOUT, "&About");
         Connect(DIALOGS_SYSTEM_ABOUT, wxEVT_COMMAND_MENU_SELECTED,
                 wxCommandEventHandler(MyFrame::ShowSimpleAboutDialog));
     }
index e317e100aceed21c64b542e9f320fe5535442d0b..9906cdb59a50ed8eeef1ecfb1ec6b1cd4ec9d1c4 100644 (file)
@@ -234,7 +234,7 @@ MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size)
     menuFile->Append(NetTest_EnumISP, wxT("&Enumerate ISPs...\tCtrl-E"));
     menuFile->Append(NetTest_Check, wxT("&Check connection status...\tCtrl-C"));
     menuFile->AppendSeparator();
-    menuFile->Append(NetTest_About, wxT("&About...\tCtrl-A"), wxT("Show about dialog"));
+    menuFile->Append(NetTest_About, wxT("&About\tCtrl-A"), wxT("Show about dialog"));
     menuFile->AppendSeparator();
     menuFile->Append(NetTest_Quit, wxT("E&xit\tAlt-X"), wxT("Quit this program"));
 
index 1016c703922cec051d933b45de16d280078be09d..7f686a2e43c92f868c382c1f06c11f1ef53e42ea 100644 (file)
@@ -213,7 +213,7 @@ MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size,
 
     // the "About" item should be in the help menu
     wxMenu *helpMenu = new wxMenu;
-    helpMenu->Append(Display_About, _("&About...\tF1"), _("Show about dialog"));
+    helpMenu->Append(Display_About, _("&About\tF1"), _("Show about dialog"));
 
     // now append the freshly created menu to the menu bar...
     wxMenuBar *menuBar = new wxMenuBar();
index c3364c7a0a8c2496cf9b59936097ff427e3808ab..ddebcc591617c5153fcedaefc1883028f2d0fe3a 100644 (file)
@@ -318,7 +318,7 @@ MyFrame::MyFrame()
           wxPoint(20,20), wxSize(470,360) )
 {
     wxMenu *file_menu = new wxMenu();
-    file_menu->Append( wxID_ABOUT, wxT("&About..."));
+    file_menu->Append( wxID_ABOUT, wxT("&About"));
     file_menu->AppendCheckItem( TEST_USE_SCREEN, wxT("&Use whole screen for dragging"), wxT("Use whole screen"));
     file_menu->Append( wxID_EXIT, wxT("E&xit"));
 
index bf1a09c7ed393689986ce5a4ad9b1fd8091dd7e4..ac208afd8dc7e413fb54f043a8f9495afed9f3b8 100644 (file)
@@ -1772,7 +1772,7 @@ MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size)
 #endif
     menuFile->Append(File_Save, wxT("&Save...\tCtrl-S"), wxT("Save drawing to file"));
     menuFile->AppendSeparator();
-    menuFile->Append(File_About, wxT("&About...\tCtrl-A"), wxT("Show about dialog"));
+    menuFile->Append(File_About, wxT("&About\tCtrl-A"), wxT("Show about dialog"));
     menuFile->AppendSeparator();
     menuFile->Append(File_Quit, wxT("E&xit\tAlt-X"), wxT("Quit this program"));
 
index bb452f239aa9fc97ca00b195472f2c9455f0a942..6600a1125cce8b1f52e7922acc4e92999e1e0301 100644 (file)
@@ -249,7 +249,7 @@ MyFrame::MyFrame()
 
 
     wxMenu *helpMenu = new wxMenu;
-    helpMenu->Append(Erase_Menu_About, "&About...\tCtrl-A", "Show about dialog");
+    helpMenu->Append(Erase_Menu_About, "&About\tCtrl-A", "Show about dialog");
 
     wxMenuBar *menuBar = new wxMenuBar();
     menuBar->Append(menuFile, "&File");
index 1ddacb0430f95c1f73a107465a6fdfdcf74fd608..b71f094e91352c23f851fcb4b4d4047e15bba190 100644 (file)
@@ -365,7 +365,7 @@ MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size)
     // create a menu bar
     wxMenu *menuFile = new wxMenu;
 
-    menuFile->Append(Event_About, wxT("&About...\tCtrl-A"), wxT("Show about dialog"));
+    menuFile->Append(Event_About, wxT("&About\tCtrl-A"), wxT("Show about dialog"));
     menuFile->AppendSeparator();
     menuFile->Append(Event_Quit, wxT("E&xit\tAlt-X"), wxT("Quit this program"));
 
index e4019f5e60196087cdbf99dc1aa483657a45a0ba..24fa6808ade941ab40234ba4235cb8d09872ae0a 100644 (file)
@@ -367,7 +367,7 @@ MyFrame::MyFrame()
     menuFile->Append(Except_Quit, wxT("E&xit\tCtrl-Q"), wxT("Quit this program"));
 
     wxMenu *helpMenu = new wxMenu;
-    helpMenu->Append(Except_About, wxT("&About...\tF1"), wxT("Show about dialog"));
+    helpMenu->Append(Except_About, wxT("&About\tF1"), wxT("Show about dialog"));
 
     // now append the freshly created menu to the menu bar...
     wxMenuBar *menuBar = new wxMenuBar();
index 3e9d26e4a7bc6a16916b4158cafbf169b1e7896b..fd5de1003c6e35fd65df219e6d5620266d1d6f8d 100644 (file)
@@ -496,7 +496,7 @@ MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size)
 #endif
 
     wxMenu *helpMenu = new wxMenu(wxEmptyString, wxMENU_TEAROFF);
-    helpMenu->Append(Exec_About, wxT("&About...\tF1"), wxT("Show about dialog"));
+    helpMenu->Append(Exec_About, wxT("&About\tF1"), wxT("Show about dialog"));
 
     // now append the freshly created menu to the menu bar...
     wxMenuBar *menuBar = new wxMenuBar();
index fce11afd27c8e86d8bea7467e169ea62b4152281..14d26792314641cbde5e44764b1f9a1653210394 100644 (file)
@@ -311,7 +311,7 @@ MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size)
     menuFile->Append(Font_ViewMsg, wxT("&View...\tCtrl-V"),
                      wxT("View an email message file"));
     menuFile->AppendSeparator();
-    menuFile->Append(Font_About, wxT("&About...\tCtrl-A"), wxT("Show about dialog"));
+    menuFile->Append(Font_About, wxT("&About\tCtrl-A"), wxT("Show about dialog"));
     menuFile->AppendSeparator();
     menuFile->Append(Font_Quit, wxT("E&xit\tAlt-X"), wxT("Quit this program"));
 
index 96f724b0500662ff80dbc8b2ccb0a1ba3cbbaead..f8cd8976e5ce04826dae131ab4062d9fbb73a87d 100644 (file)
@@ -168,7 +168,7 @@ MyFrame::MyFrame(const wxString& title)
 
     // the "About" item should be in the help menu
     wxMenu *menuHelp = new wxMenu;
-    menuHelp->Append(wxID_ABOUT, "&About...\tF1", "Show about dialog");
+    menuHelp->Append(wxID_ABOUT, "&About\tF1", "Show about dialog");
 
     // now append the freshly created menu to the menu bar...
     wxMenuBar *menuBar = new wxMenuBar();
index 6ffdb33017ffd7c8cbfbeff10ade161164f13453..94a17e5112b2f32d8c0d81972b62c2ba8a0fd660 100644 (file)
@@ -281,7 +281,7 @@ MyFrame::MyFrame()
 
     // the "About" item should be in the help menu
     wxMenu *helpMenu = new wxMenu;
-    helpMenu->Append(HtmlLbox_About, wxT("&About...\tF1"), wxT("Show about dialog"));
+    helpMenu->Append(HtmlLbox_About, wxT("&About\tF1"), wxT("Show about dialog"));
 
     // now append the freshly created menu to the menu bar...
     wxMenuBar *menuBar = new wxMenuBar();
index 9002c5b84f1032e24260f1b59a45184260c9ab24..b403f4e45ff8fe299df20b2e11d7d192d2993e92 100644 (file)
@@ -668,7 +668,7 @@ MyFrame::MyFrame()
     menuImage->Append( ID_SHOWTHUMBNAIL, wxT("Test &thumbnail...\tCtrl-T"),
                         "Test scaling the image during load (try with JPEG)");
     menuImage->AppendSeparator();
-    menuImage->Append( ID_ABOUT, wxT("&About...\tF1"));
+    menuImage->Append( ID_ABOUT, wxT("&About\tF1"));
     menuImage->AppendSeparator();
     menuImage->Append( ID_QUIT, wxT("E&xit\tCtrl-Q"));
     menu_bar->Append(menuImage, wxT("&Image"));
index 1beced98cf89933fbef6a0fd83415ddccac68217..dd4e5f566e57f93a21db55a4eecb324ce333efe2 100755 (executable)
Binary files a/samples/internat/ar/internat.mo and b/samples/internat/ar/internat.mo differ
index 74a46466ec0e97a58ee1a6d4568ccfad6a99f935..3b324b577d2bb565ab6d3ca8a264f0c23f5e7a1f 100755 (executable)
@@ -17,8 +17,8 @@ msgstr ""
 "POT-Creation-Date: \n"
 
 #: ../internat.cpp:200
-msgid "&About..."
-msgstr "&عن البرنامج..."
+msgid "&About"
+msgstr "&عن البرنامج"
 
 #: ../internat.cpp:202
 msgid "E&xit"
index 1b349c2632c226148b01e8f34bf2f65d4ee4e9e1..3788520a51f50ce24c1a546b4ccde70515cc1340 100644 (file)
Binary files a/samples/internat/bg/internat.mo and b/samples/internat/bg/internat.mo differ
index 003e610f951f116805f4ed6efe6f87a3e6d8958b..b4d4f2218ec2aa387742a3388b9058c8cd573c27 100644 (file)
@@ -17,7 +17,7 @@ msgid "International wxWindows App"
 msgstr "Интернационализирано приложение на wxWindows"
 
 #: /home/harms.user1/rolinsky/wxGTK-2.2.0/samples/internat/internat.cpp:136
-msgid "&About..."
+msgid "&About"
 msgstr "&За програмата"
 
 #: /home/harms.user1/rolinsky/wxGTK-2.2.0/samples/internat/internat.cpp:138
index c674e63e8493c9d02cd08821cf2e062a3c3b7540..c9736627219555de4686eac2472ba326be9fac35 100644 (file)
Binary files a/samples/internat/cs/internat.mo and b/samples/internat/cs/internat.mo differ
index e8f4688308990ff4af0bbb2fc3e26c6851d5900d..3b0ad1e1f275af5e4569c8d83a730391305d1cb8 100644 (file)
@@ -18,8 +18,8 @@ msgstr ""
 "10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
 
 #: internat.cpp:198
-msgid "&About..."
-msgstr "&O programu..."
+msgid "&About"
+msgstr "&O programu"
 
 #: internat.cpp:200
 msgid "E&xit"
index 661760a96cf4f8ef24bdf1c8640f9c3cee3413ba..bcf72fab5fd27c2602354e055c0d0169ea48bb0d 100644 (file)
Binary files a/samples/internat/de/internat.mo and b/samples/internat/de/internat.mo differ
index 70cbfae1c07020c01efc9a5081b16dc8bd7d3587..b8a8d5fcc9ef5294d4cb5e3528cd78792bf3471a 100644 (file)
@@ -19,8 +19,8 @@ msgid "International wxWindows App"
 msgstr "Internationales wxWindows Programm"
 
 #: ../internat.cpp:128
-msgid "&About..."
-msgstr "Ü&ber..."
+msgid "&About"
+msgstr "Ü&ber"
 
 #: ../internat.cpp:130
 msgid "E&xit"
index 24d865aef8030af75ab7cc39646a5a33d97fc9e8..ec2d79a202471ce923e6a5e07da75b42f95b57db 100644 (file)
Binary files a/samples/internat/fr/internat.mo and b/samples/internat/fr/internat.mo differ
index 2097757b345a0873f359191e6ea6234c5a6d4130..734ab79fadd35820e04fc78716960e765384312a 100644 (file)
@@ -19,8 +19,8 @@ msgid "International wxWindows App"
 msgstr "Application wxWindows internationale"
 
 #: internat.cpp:105
-msgid "&About..."
-msgstr "&A propos..."
+msgid "&About"
+msgstr "&A propos"
 
 #: internat.cpp:107
 msgid "E&xit"
index 19818132f771d76a401d62115b959d6b84d8dfba..99e842254208cef0537bdfdaca17ff4a6df10404 100644 (file)
@@ -295,7 +295,7 @@ MyFrame::MyFrame(wxLocale& locale)
 
     // since wxID_ABOUT and wxID_EXIT are stock IDs they will automatically get
     // translated help strings; nice isn't it?
-    file_menu->Append(wxID_ABOUT, _("&About..."));
+    file_menu->Append(wxID_ABOUT, _("&About"));
     file_menu->AppendSeparator();
     file_menu->Append(wxID_EXIT, _("E&xit"));
 
index d5e990473ca01784eca6833763f388c57095a006..c6ea356a631889c1a307fad0962f95be5a02e792 100644 (file)
Binary files a/samples/internat/it/internat.mo and b/samples/internat/it/internat.mo differ
index 77b84b44ead454569eea8433c4352bd70488201c..2ece2a0f1c313f94cf70eb9e91cb793e629ca48c 100644 (file)
@@ -47,8 +47,8 @@ msgid "&Test locale availability...\tCtrl-T"
 msgstr "&Verifica la disponibilità del locale...\tCtrl-T"
 
 #: ../internat.cpp:261 ../internat.cpp:292
-msgid "&About..."
-msgstr "&Informazioni su..."
+msgid "&About"
+msgstr "&Informazioni su"
 
 #: ../internat.cpp:263 ../internat.cpp:294
 msgid "E&xit"
index e1bb7740e523dd02d78101188d2cd6c3e9080d1f..81568a1c1184ba76c0f270ef4c4f0681fc13fb68 100644 (file)
Binary files a/samples/internat/ja/internat.mo and b/samples/internat/ja/internat.mo differ
index f50282fbc209c1d3df4a41c70a8b34e40b5f67ac..f6e08ad87ed4716aef49c49be7b2fdd9657b0482 100644 (file)
@@ -15,8 +15,8 @@ msgstr ""
 "X-Poedit-SourceCharset: iso-8859-1\n"
 
 #: ../internat.cpp:214
-msgid "&About..."
-msgstr "このアプリケーションについて(&A)"
+msgid "&About"
+msgstr "このアプリケーションについて(&A)"
 
 #: ../internat.cpp:216
 msgid "E&xit"
index 7b56c6c74aed51a8ef8004714e60749bcf0a8a1c..e64f550e8ad9baa0b7333a37a891809cddec79c6 100644 (file)
Binary files a/samples/internat/ja_JP.EUC-JP/internat.mo and b/samples/internat/ja_JP.EUC-JP/internat.mo differ
index 8b4b3a3506503eee4a9d90f9bef581c9cf7dc156..e02c76f90f796a448272513eff934c6a2a53bcf3 100644 (file)
@@ -9,7 +9,7 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 
 #: ..\internat.cpp:180
-msgid "&About..."
+msgid "&About"
 msgstr "wxウィンドウズについて"
 
 #: ..\internat.cpp:182
index b669a5535554620cdb2762d9e1a1d67edd01da45..dd11c300e2314e93c9dde3c8515822c2bae4045e 100644 (file)
Binary files a/samples/internat/ka/internat.mo and b/samples/internat/ka/internat.mo differ
index c2d84f06469ffe229d8de1aeced882f50bc5bdd0..d91368f2eb0d0adf82c9d4e0b626b751896d0b5d 100644 (file)
@@ -18,8 +18,8 @@ msgid "International wxWindows App"
 msgstr "საერთაშორისო wxWindows პროგბრამა"
 
 #: ../internat.cpp:128
-msgid "&About..."
-msgstr "შეს&ახებ..."
+msgid "&About"
+msgstr "შეს&ახებ"
 
 #: ../internat.cpp:130
 msgid "E&xit"
index 7174918306e9d63b2a49829102ecbf807622d5d3..ed96bb911cd9bbb600a64dac8ae20e72de818310 100644 (file)
Binary files a/samples/internat/pl/internat.mo and b/samples/internat/pl/internat.mo differ
index 1dc991107e2db6c0e8bf365fa287952f03e4190d..a1dad180f2c3323a001a79a78d2cbd8bc31bc89c 100644 (file)
@@ -16,8 +16,8 @@ msgstr ""
 "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n>1 && n<5 ? 1 : 2;\n"
 
 #: ../internat.cpp:200
-msgid "&About..."
-msgstr "Inform&acje..."
+msgid "&About"
+msgstr "Inform&acje"
 
 #: ../internat.cpp:202
 msgid "E&xit"
index d935dd281aac0fc9f9b2d5dbc0a70bce9af3b78e..67ec0726e3a3ce3a57d3cd17ed4ea06161388274 100644 (file)
Binary files a/samples/internat/ru/internat.mo and b/samples/internat/ru/internat.mo differ
index daadb6beae08721a9cddd0ed9a8a6319ebb4ee38..461b3078b0bf0dd4eec8268636efa3fee18db1ed 100644 (file)
@@ -19,8 +19,8 @@ msgid "International wxWindows App"
 msgstr "Интернациональное приложение wxWindows"
 
 #: /home/harms.user1/rolinsky/wxGTK-2.2.0/samples/internat/internat.cpp:136
-msgid "&About..."
-msgstr "&О программе..."
+msgid "&About"
+msgstr "&О программе"
 
 #: /home/harms.user1/rolinsky/wxGTK-2.2.0/samples/internat/internat.cpp:138
 msgid "E&xit"
index 9b2fe705a18847dcba18ab6faa7b21dd1fdc3e95..a6ff456248734758907589791250a9f6b745642b 100644 (file)
Binary files a/samples/internat/sv/internat.mo and b/samples/internat/sv/internat.mo differ
index cfc8e4d90bb439270328cd3bb786b64a5563c555..dc7bc99fcef73672060ececc3e6bd42023d2e540 100644 (file)
@@ -15,8 +15,8 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 
 #: ../internat.cpp:210
-msgid "&About..."
-msgstr "&Om..."
+msgid "&About"
+msgstr "&Om"
 
 #: ../internat.cpp:212
 msgid "E&xit"
index c9e1ff9fccbe9e3e99a85677a4bb011af48cda0c..b2172bef0dbf1d77bb4fc35937be5153bf5c6bd5 100644 (file)
@@ -143,7 +143,7 @@ MyFrame::MyFrame(const wxString& title)
 
     // the "About" item should be in the help menu
     wxMenu *menuHelp = new wxMenu;
-    menuHelp->Append(wxID_ABOUT, "&About...\tF1", "Show about dialog");
+    menuHelp->Append(wxID_ABOUT, "&About\tF1", "Show about dialog");
 
     // now append the freshly created menu to the menu bar...
     wxMenuBar *menuBar = new wxMenuBar();
index 1d1698363e51394f6b486490f568844d86837860..91c3b575f52bb3f893743042e5ac331953dd86c1 100644 (file)
@@ -535,7 +535,7 @@ wxMediaPlayerFrame::wxMediaPlayerFrame(const wxString& title)
                      wxT("Select a backend manually"));
 
     helpMenu->Append(wxID_ABOUT,
-                     wxT("&About...\tF1"),
+                     wxT("&About\tF1"),
                      wxT("Show about dialog"));
 
 
index fb8f7212e3740b3f6ab01a57cf43889c175dc5ec..289e639e7ea7c49237ef73c6dd4054973826d1d4 100644 (file)
@@ -154,7 +154,7 @@ MyFrame::MyFrame(const wxString& title)
 
     // the "About" item should be in the help menu
     wxMenu *helpMenu = new wxMenu;
-    helpMenu->Append(Minimal_About, "&About...\tF1", "Show about dialog");
+    helpMenu->Append(Minimal_About, "&About\tF1", "Show about dialog");
 
     fileMenu->Append(Minimal_Quit, "E&xit\tAlt-X", "Quit this program");
 
index bf3b5ca1cfd60834b94db44d2bcba89b2015fab9..8c77063fbcdb0926181bc94195621fdfef05647c 100644 (file)
@@ -156,7 +156,7 @@ MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size)
     wxMenu *menuFile = new wxMenu;
 
     menuFile->Append(OleAuto_Test, wxT("&Test Excel Automation..."));
-    menuFile->Append(OleAuto_About, wxT("&About..."));
+    menuFile->Append(OleAuto_About, wxT("&About"));
     menuFile->AppendSeparator();
     menuFile->Append(OleAuto_Quit, wxT("E&xit"));
 
index c0c894069e7650a9d4e02aa436c94ff50c318172..b461b79df0f97359badee67f8f80f93b8b07d958 100644 (file)
@@ -87,7 +87,7 @@ MyFrame::MyFrame(wxFrame *frame, const wxString& title, const wxPoint& pos,
     fileMenu->Append(wxID_EXIT, wxT("E&xit\tALT-X"));
     // Make the "Help" menu
     wxMenu *helpMenu = new wxMenu;
-    helpMenu->Append(wxID_HELP, wxT("&About..."));
+    helpMenu->Append(wxID_HELP, wxT("&About"));
 
     wxMenuBar *menuBar = new wxMenuBar;
     menuBar->Append(fileMenu, wxT("&File"));
@@ -124,7 +124,7 @@ void MyFrame::OnMenuFileExit( wxCommandEvent& WXUNUSED(event) )
     Close(true);
 }
 
-// Help|About... command
+// Help|About command
 void MyFrame::OnMenuHelpAbout( wxCommandEvent& WXUNUSED(event) )
 {
     wxMessageBox(wxT("OpenGL Penguin Sample (c) Robert Roebling, Sandro Sigala et al"));
index d6f5aca84ad8682103eaefcf79080fb0f6bab288..6daf63fb311be410bcd5357c64c163bfb863c64d 100644 (file)
@@ -332,7 +332,7 @@ MyFrame::MyFrame(const wxString& title)
 
     // the "About" item should be in the help menu
     wxMenu *helpMenu = new wxMenu;
-    helpMenu->Append(Minimal_About, wxT("&About...\tF1"), wxT("Show about dialog"));
+    helpMenu->Append(Minimal_About, wxT("&About\tF1"), wxT("Show about dialog"));
 
     menuFile->Append(Minimal_TestDialog, wxT("&Test dialog\tAlt-T"), wxT("Test dialog"));
     menuFile->Append(Minimal_Quit, wxT("E&xit\tAlt-X"), wxT("Quit this program"));
index afd52d9cb7d4e9752cf4d81fd1af6484ef481323..d506684c8413d299669c16e76b085dd90f9e622b 100644 (file)
@@ -2024,7 +2024,7 @@ FormMain::FormMain(const wxString& title, const wxPoint& pos, const wxSize& size
     wxMenu *menuTools2 = new wxMenu;
     wxMenu *menuHelp = new wxMenu;
 
-    menuHelp->Append(ID_ABOUT, wxT("&About..."), wxT("Show about dialog") );
+    menuHelp->Append(ID_ABOUT, wxT("&About"), wxT("Show about dialog") );
 
     menuTools1->Append(ID_APPENDPROP, wxT("Append New Property") );
     menuTools1->Append(ID_APPENDCAT, wxT("Append New Category\tCtrl-S") );
index 2623dcc272bd8bab913abe24ed786c51d9db1494..cae2f058a95cdc74d73fd14800c56a5abfa2f479 100644 (file)
@@ -378,7 +378,7 @@ RegFrame::RegFrame(wxFrame *parent, const wxChar *title, int x, int y, int w, in
     wxMenu *pMenuFile = new wxMenu;
     pMenuFile->Append(Menu_Test, wxT("Te&st"), wxT("Test key creation"));
     pMenuFile->AppendSeparator();
-    pMenuFile->Append(Menu_About, wxT("&About..."), wxT("Show an extraordinarly beautiful dialog"));
+    pMenuFile->Append(Menu_About, wxT("&About"), wxT("Show an extraordinarly beautiful dialog"));
     pMenuFile->AppendSeparator();
     pMenuFile->Append(Menu_Quit,  wxT("E&xit"), wxT("Quit this program"));
 
index 9f5b6899a829475b0690eada6de0104458b6b220..860e15d022c067cf0e6b64f3361886951e2cd701 100644 (file)
@@ -597,7 +597,7 @@ MyFrame::MyFrame(const wxString& title, wxWindowID id, const wxPoint& pos,
 
     // the "About" item should be in the help menu
     wxMenu *helpMenu = new wxMenu;
-    helpMenu->Append(ID_About, wxT("&About...\tF1"), wxT("Show about dialog"));
+    helpMenu->Append(ID_About, wxT("&About\tF1"), wxT("Show about dialog"));
 
     fileMenu->Append(wxID_OPEN, wxT("&Open\tCtrl+O"), wxT("Open a file"));
     fileMenu->Append(wxID_SAVE, wxT("&Save\tCtrl+S"), wxT("Save a file"));
index 7b67c98dd8bae9f03698afb14834070a6e127dd9..342be4e3cfb9ba56efb419cd6a6ed05c50a664c0 100644 (file)
@@ -211,7 +211,7 @@ MyFrame::MyFrame() : wxFrame((wxFrame *)NULL, wxID_ANY,
 
   // Make menus
   m_menuFile = new wxMenu();
-  m_menuFile->Append(CLIENT_ABOUT, _("&About...\tCtrl-A"), _("Show about dialog"));
+  m_menuFile->Append(CLIENT_ABOUT, _("&About\tCtrl-A"), _("Show about dialog"));
   m_menuFile->AppendSeparator();
   m_menuFile->Append(CLIENT_QUIT, _("E&xit\tAlt-X"), _("Quit client"));
 
index 853fb4b278d9b022cfddbe416a544768147134e5..439ccc8afa30070e67117ac08a4a239da16b4d35 100644 (file)
@@ -187,7 +187,7 @@ MyFrame::MyFrame() : wxFrame((wxFrame *)NULL, wxID_ANY,
   m_menuFile->Append(SERVER_WAITFORACCEPT, "&Wait for connection\tCtrl-W");
   m_menuFile->Append(SERVER_UDPTEST, "&UDP test\tCtrl-U");
   m_menuFile->AppendSeparator();
-  m_menuFile->Append(SERVER_ABOUT, _("&About...\tCtrl-A"), _("Show about dialog"));
+  m_menuFile->Append(SERVER_ABOUT, _("&About\tCtrl-A"), _("Show about dialog"));
   m_menuFile->AppendSeparator();
   m_menuFile->Append(SERVER_QUIT, _("E&xit\tAlt-X"), _("Quit server"));
 
index e44158e9958991693b531b6f1e780735219d349f..1ec5f2b94287618d50f84198583d0ec8682d8a63 100644 (file)
@@ -213,7 +213,7 @@ MyFrame::MyFrame(const wxString& title)
     playMenu->Append(Sound_PlayBell, wxT("Play system bell"));
 
     wxMenu *helpMenu = new wxMenu;
-    helpMenu->Append(Sound_About, wxT("&About...\tF1"), wxT("Show about dialog"));
+    helpMenu->Append(Sound_About, wxT("&About\tF1"), wxT("Show about dialog"));
 
     // now append the freshly created menu to the menu bar...
     wxMenuBar *menuBar = new wxMenuBar();
index 93fbb7f7080e7b8f29d8a24a1538cde43d52b973..e02bf69c79f361ff712a78e3a4820798585d624c 100644 (file)
@@ -182,7 +182,7 @@ MyFrame::MyFrame(const wxString& title)
 
     // the "About" item should be in the help menu
     wxMenu *helpMenu = new wxMenu;
-    helpMenu->Append(wxID_ABOUT, wxT("&About...\tF1"), wxT("Show about frame"));
+    helpMenu->Append(wxID_ABOUT, wxT("&About\tF1"), wxT("Show about frame"));
 
     menuFile->Append(wxID_EXIT, wxT("E&xit\tAlt-X"), wxT("Quit this program"));
 
index 8afb461b09e52b2d2dd1e58bf0c5162717ce3b14..31a26ddfbbcbf921ded1e586ad5c9c19e2346688 100644 (file)
@@ -412,7 +412,7 @@ MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size)
                         wxT("Toggle status bar format"));
 
     wxMenu *helpMenu = new wxMenu;
-    helpMenu->Append(StatusBar_About, wxT("&About...\tCtrl-A"),
+    helpMenu->Append(StatusBar_About, wxT("&About\tCtrl-A"),
                      wxT("Show about dialog"));
 
     // now append the freshly created menu to the menu bar...
index 1e5c3ee9fb7317a41ee866d709d6ffc7c1c74c62..a8529189ed49b7fff3c602d8ed86606dcde7917e 100644 (file)
@@ -378,7 +378,7 @@ MyFrame::MyFrame(const wxString& title)
     wxMenu *menuHelp = new wxMenu;
     menuHelp->Append(THREAD_SHOWCPUS, wxT("&Show CPU count"));
     menuHelp->AppendSeparator();
-    menuHelp->Append(THREAD_ABOUT, wxT("&About..."));
+    menuHelp->Append(THREAD_ABOUT, wxT("&About"));
     menuBar->Append(menuHelp, wxT("&Help"));
 
     SetMenuBar(menuBar);
index 8bfb579636cb7394e4c94ec73129cce62d468112..94563cad03404547dbfa74b3a9fbdcf253cef80b 100644 (file)
@@ -228,7 +228,7 @@ MyFrame::MyFrame(const wxString& title, int x, int y, int w, int h)
 
     file_menu->Append(TreeTest_ClearLog, wxT("&Clear log\tCtrl-L"));
     file_menu->AppendSeparator();
-    file_menu->Append(TreeTest_About, wxT("&About..."));
+    file_menu->Append(TreeTest_About, wxT("&About"));
     file_menu->AppendSeparator();
     file_menu->Append(TreeTest_Quit, wxT("E&xit\tAlt-X"));
 
@@ -1606,7 +1606,7 @@ void MyTreeCtrl::ShowMenu(wxTreeItemId id, const wxPoint& pt)
 
 #if wxUSE_MENUS
     wxMenu menu(title);
-    menu.Append(TreeTest_About, wxT("&About..."));
+    menu.Append(TreeTest_About, wxT("&About"));
     menu.AppendSeparator();
     menu.Append(TreeTest_Highlight, wxT("&Highlight item"));
     menu.Append(TreeTest_Dump, wxT("&Dump"));
index 344fc0e85087b4d2f39f21f3c6552323de8ddb35..dbacf7830e5adf61667659168e8288907674ebcc 100644 (file)
@@ -513,7 +513,7 @@ VarScrollFrame::VarScrollFrame()
 
     // the "About" item should be in the help menu
     wxMenu *menuHelp = new wxMenu;
-    menuHelp->Append(VScroll_About, wxT("&About...\tF1"), wxT("Show about dialog"));
+    menuHelp->Append(VScroll_About, wxT("&About\tF1"), wxT("Show about dialog"));
 
 #ifdef wxHAS_RADIO_MENU_ITEMS
     menuMode->AppendRadioItem(VScroll_VScrollMode, wxT("&Vertical\tAlt-V"),
index 94c95c08201052f7f30b4ec8bd1e45ff70a6a63d..fcbcdb6b8ff8af36de9624b4f3f88f99cae5e271 100644 (file)
@@ -450,7 +450,7 @@ MyFrame::MyFrame(const wxString& title)
     menuOptions->AppendCheckItem(Wizard_ExpandBitmap, wxT("Si&ze Bitmap To Page"));
 
     wxMenu *helpMenu = new wxMenu;
-    helpMenu->Append(Wizard_About, wxT("&About...\tF1"), wxT("Show about dialog"));
+    helpMenu->Append(Wizard_About, wxT("&About\tF1"), wxT("Show about dialog"));
 
     // now append the freshly created menu to the menu bar...
     wxMenuBar *menuBar = new wxMenuBar();
index 309aaab9abfbc74a64e907fad76d4a049d9a2684..de48e52c7ed4b8f2ea1772d5f78edffed78c8def 100644 (file)
@@ -84,7 +84,7 @@
 
         <!-- we use wxID_ABOUT name here to get the default menu item stock icon -->
         <object class="wxMenuItem" name="wxID_ABOUT">
-            <label>_About...</label>
+            <label>_About</label>
             <help>About this application</help>
         </object>
     </object>
index 6673e0e8f2151a97c861d81b349aadf3ae626856..bb510a3555fb9fcdc3a27a6e96e64f08a045350e 100644 (file)
@@ -6,7 +6,7 @@
       <label>_File</label>
       <style>wxMENU_TEAROFF</style>
       <object class="wxMenuItem" name="menu_about">
-        <label>_About...</label>
+        <label>_About</label>
         <bitmap>filesave.gif</bitmap>
       </object>
       <object class="separator"/>
index 75e4a9a71bd55d13033b9d86898fd7ac396b29f5..2b61783ce4699cff08dbf99cab3bc8b0f4b2daab 100644 (file)
@@ -169,7 +169,7 @@ MyFrame::MyFrame(const wxString& title)
 
     // the "About" item should be in the help menu
     wxMenu *helpMenu = new wxMenu;
-    helpMenu->Append(Minimal_About, wxT("&About...\tF1"), wxT("Show about dialog"));
+    helpMenu->Append(Minimal_About, wxT("&About\tF1"), wxT("Show about dialog"));
 
     fileMenu->Append(Minimal_Persist, wxT("Persist a wxFrame to XML..."), 
                     wxT("Creates a wxFrame using wxXTI and saves its description as XML"));
index fc62ec4276450cce5d90c3724471d8963b50ef43..b1e21f62458d0aedbfd69ab3ab450bca3a6495c5 100644 (file)
@@ -137,7 +137,7 @@ wxString wxGetStockLabel(wxWindowID id, long flags)
 
     switch (id)
     {
-        STOCKITEM(wxID_ABOUT,               _("&About..."),           _("About..."));
+        STOCKITEM(wxID_ABOUT,               _("&About"),           _("About"));
         STOCKITEM(wxID_ADD,                 _("Add"),                 _("Add"));
         STOCKITEM(wxID_APPLY,               _("&Apply"),              _("Apply"));
         STOCKITEM(wxID_BACKWARD,            _("&Back"),               _("Back"));
index c726a936eb8c4b9514f7346582405e9be3dcb278..8673493025d21a81397cb408c3143eb2595b6193 100644 (file)
@@ -140,9 +140,9 @@ bool wxHtmlHelpFrame::Create(wxWindow* parent, wxWindowID id,
     fileMenu->Append(wxID_CLOSE, _("&Close"));
 
     wxMenu* helpMenu = new wxMenu;
-    helpMenu->Append(wxID_ABOUT, _("&About..."));
+    helpMenu->Append(wxID_ABOUT, _("&About"));
     // Ensures we don't get an empty help menu
-    helpMenu->Append(wxID_HELP_CONTENTS, _("&About..."));
+    helpMenu->Append(wxID_HELP_CONTENTS, _("&About"));
 
     menuBar->Append(fileMenu,_("&File"));
     menuBar->Append(helpMenu,_("&Help"));
index 2097757b345a0873f359191e6ea6234c5a6d4130..734ab79fadd35820e04fc78716960e765384312a 100644 (file)
@@ -19,8 +19,8 @@ msgid "International wxWindows App"
 msgstr "Application wxWindows internationale"
 
 #: internat.cpp:105
-msgid "&About..."
-msgstr "&A propos..."
+msgid "&About"
+msgstr "&A propos"
 
 #: internat.cpp:107
 msgid "E&xit"
index 5f027ac1b703702feda2118d30b3f6fd32482b6a..2547c6255904586f51df2c63d25a78dc87fcf88b 100644 (file)
@@ -274,7 +274,7 @@ wxEmulatorFrame::wxEmulatorFrame(const wxString& title,
 
     // the "About" item should be in the help menu
     wxMenu *helpMenu = new wxMenu;
-    helpMenu->Append(Emulator_About, wxT("&About...\tF1"), wxT("Show about dialog"));
+    helpMenu->Append(Emulator_About, wxT("&About\tF1"), wxT("Show about dialog"));
 
     menuFile->Append(Emulator_Quit, wxT("E&xit\tAlt-X"), wxT("Quit this program"));
 
index d2fe097f611fb9a60442e9bd8e483d0759bee883..70bd0d4af96e7365f7bbd20f1562ff00fe42e6d2 100644 (file)
@@ -93,7 +93,7 @@ void GUIFrame::AddMenuBar()
     //Help Menu
     helpMenu = new wxMenu();
     wxMenuItem* m_menuHelpAbout;
-    m_menuHelpAbout = new wxMenuItem( helpMenu, wxID_ABOUT, wxString( _("&About...") ) + wxT('\t') + wxT("F1"), _("Shows info about this application."), wxITEM_NORMAL );
+    m_menuHelpAbout = new wxMenuItem( helpMenu, wxID_ABOUT, wxString( _("&About") ) + wxT('\t') + wxT("F1"), _("Shows info about this application."), wxITEM_NORMAL );
     helpMenu->Append( m_menuHelpAbout );
 
     mbar->Append( helpMenu, _("&Help") );