From kde-commits Thu Sep 09 19:32:43 2010 From: =?utf-8?q?Jaros=C5=82aw=20Staniek?= Date: Thu, 09 Sep 2010 19:32:43 +0000 To: kde-commits Subject: koffice/kexi Message-Id: <20100909193243.8DAB4AC884 () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=128406049431442 SVN commit 1173587 by staniek: rename "Command Button" term to shorter "Button" M +1 -1 formeditor/kexiactionselectiondialog.cpp M +2 -2 plugins/forms/kexidbfactory.cpp --- trunk/koffice/kexi/formeditor/kexiactionselectiondialog.cpp #1173586:1173587 @@ -395,7 +395,7 @@ { setModal(true); setObjectName("actionSelectorDialog"); - setWindowTitle(i18n("Assigning Action to Command Button")); + setWindowTitle(i18n("Assigning Action to Button")); setButtons(KDialog::Ok | KDialog::Cancel); d->actionWidgetName = actionWidgetName; setButtonGuiItem(KDialog::Ok, --- trunk/koffice/kexi/plugins/forms/kexidbfactory.cpp #1173586:1173587 @@ -299,11 +299,11 @@ // inherited KFormDesigner::WidgetInfo* wi = new KFormDesigner::WidgetInfo(this); wi->addAlternateClassName("KexiPushButton"); - wi->setName(i18n("Command Button")); + wi->setName(i18n("Button")); wi->setNamePrefix( i18nc("Widget name. This string will be used to name widgets of this class. " "It must _not_ contain white spaces and non latin1 characters.", "button")); - wi->setDescription(i18n("A command button to execute actions")); + wi->setDescription(i18n("A button for executing actions")); wi->setParentFactoryName("stdwidgets"); wi->setInheritedClassName("KPushButton"); addClass(wi);