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);