i18n interface style guide fixes

.oO( Why don't people notice those bugs when blogging? )

svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=782147
This commit is contained in:
Stephan Binner 2008-03-04 12:03:34 +00:00
parent ddc2f0e6e5
commit 7c3cf27433

View File

@ -332,12 +332,12 @@ void AppletBrowser::Private::init(AppletBrowser *q, Plasma::Containment *contain
KMenu *widgetsMenu = new KMenu(i18n("Get New Widgets"), q);
QAction *action = new QAction(KIcon("applications-internet"),
i18n("Download from the Internet"), q);
i18n("Download From Internet"), q);
connect(action, SIGNAL(triggered(bool)), widget, SLOT(downloadWidgets()));
widgetsMenu->addAction(action);
action = new QAction(KIcon("applications-internet"),
i18n("Install from file"), q);
i18n("Install From File..."), q);
connect(action, SIGNAL(triggered(bool)), widget, SLOT(openWidgetFile()));
widgetsMenu->addAction(action);
q->button(KDialog::User1)->setMenu(widgetsMenu);