author | zautrix <zautrix> | 2004-11-01 21:47:10 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-11-01 21:47:10 (UTC) |
commit | 2340aa4fcce77bf99308f2b2848680138124f837 (patch) (side-by-side diff) | |
tree | 0c1ec45b1c10c21a0534da31083d436973ab6d37 /kaddressbook | |
parent | c90466058fa940f2fe32402bdd71feaa9ebf3ea8 (diff) | |
download | kdepimpi-2340aa4fcce77bf99308f2b2848680138124f837.zip kdepimpi-2340aa4fcce77bf99308f2b2848680138124f837.tar.gz kdepimpi-2340aa4fcce77bf99308f2b2848680138124f837.tar.bz2 |
kapi translation fix
-rw-r--r-- | kaddressbook/kabcore.cpp | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/kaddressbook/kabcore.cpp b/kaddressbook/kabcore.cpp index 9505a23..4445310 100644 --- a/kaddressbook/kabcore.cpp +++ b/kaddressbook/kabcore.cpp @@ -1989,13 +1989,13 @@ void KABCore::addActionsManually() //US setup menubar. //Disable the following block if you do not want to have a menubar. - mb->insertItem( "&File", fileMenu ); - mb->insertItem( "&Edit", editMenu ); - mb->insertItem( "&View", viewMenu ); - mb->insertItem( "&Settings", settingsMenu ); + mb->insertItem( i18n("&File"), fileMenu ); + mb->insertItem( i18n("&Edit"), editMenu ); + mb->insertItem( i18n("&View"), viewMenu ); + mb->insertItem( i18n("&Settings"), settingsMenu ); mb->insertItem( i18n("Synchronize"), syncMenu ); - mb->insertItem( "&Change selected", changeMenu ); - mb->insertItem( "&Help", helpMenu ); + mb->insertItem( i18n("&Change selected"), changeMenu ); + mb->insertItem( i18n("&Help"), helpMenu ); mIncSearchWidget = new IncSearchWidget( tb ); // tb->insertWidget(-1, 0, mIncSearchWidget); #ifndef DESKTOP_VERSION @@ -2008,14 +2008,14 @@ void KABCore::addActionsManually() mIncSearchWidget = new IncSearchWidget( tb ); tb->enableMoving(false); - popupBarTB->insertItem( "&File", fileMenu ); - popupBarTB->insertItem( "&Edit", editMenu ); - popupBarTB->insertItem( "&View", viewMenu ); - popupBarTB->insertItem( "&Settings", settingsMenu ); + popupBarTB->insertItem( i18n("&File"), fileMenu ); + popupBarTB->insertItem( i18n("&Edit"), editMenu ); + popupBarTB->insertItem( i18n("&View"), viewMenu ); + popupBarTB->insertItem( i18n("&Settings"), settingsMenu ); popupBarTB->insertItem( i18n("Synchronize"), syncMenu ); mViewManager->getFilterAction()->plug ( popupBarTB); - popupBarTB->insertItem( "&Change selected", changeMenu ); - popupBarTB->insertItem( "&Help", helpMenu ); + popupBarTB->insertItem( i18n("&Change selected"), changeMenu ); + popupBarTB->insertItem( i18n("&Help"), helpMenu ); if (QApplication::desktop()->width() > 320 ) { // mViewManager->getFilterAction()->plug ( tb); } |