Bring stop, lock, exit, and run icons into XDG compliance

r14.0.x
Timothy Pearson 10 years ago
parent 956e80a800
commit 6eb27faca0

@ -75,7 +75,7 @@ KAccountSelectDlg::KAccountSelectDlg(const KMyMoneyUtils::categoryTypeE accountT
m_qbuttonOk->setGuiItem(KStdGuiItem::ok()); m_qbuttonOk->setGuiItem(KStdGuiItem::ok());
KGuiItem abortButtenItem( i18n("&Abort" ), KGuiItem abortButtenItem( i18n("&Abort" ),
TQIconSet(il->loadIcon("stop", TDEIcon::Small, TDEIcon::SizeSmall)), TQIconSet(il->loadIcon("process-stop", TDEIcon::Small, TDEIcon::SizeSmall)),
i18n("Abort the import operation and dismiss all changes"), i18n("Abort the import operation and dismiss all changes"),
i18n("Use this to abort the import. Your financial data will be in the state before you started the QIF import.")); i18n("Use this to abort the import. Your financial data will be in the state before you started the QIF import."));
m_kButtonAbort->setGuiItem(abortButtenItem); m_kButtonAbort->setGuiItem(abortButtenItem);

@ -426,7 +426,7 @@ void KMyMoney2App::initActions(void)
new TDEAction(i18n("Delete transaction", "Delete"), "delete", 0, TQT_TQOBJECT(this), TQT_SLOT(slotTransactionsDelete()), actionCollection(), "transaction_delete"); new TDEAction(i18n("Delete transaction", "Delete"), "delete", 0, TQT_TQOBJECT(this), TQT_SLOT(slotTransactionsDelete()), actionCollection(), "transaction_delete");
new TDEAction(i18n("Duplicate transaction", "Duplicate"), "editcopy", 0, TQT_TQOBJECT(this), TQT_SLOT(slotTransactionDuplicate()), actionCollection(), "transaction_duplicate"); new TDEAction(i18n("Duplicate transaction", "Duplicate"), "editcopy", 0, TQT_TQOBJECT(this), TQT_SLOT(slotTransactionDuplicate()), actionCollection(), "transaction_duplicate");
new TDEAction(i18n("Button text for match transaction", "Match"), "stop", 0, TQT_TQOBJECT(this), TQT_SLOT(slotTransactionMatch()), actionCollection(), "transaction_match"); new TDEAction(i18n("Button text for match transaction", "Match"), "process-stop", 0, TQT_TQOBJECT(this), TQT_SLOT(slotTransactionMatch()), actionCollection(), "transaction_match");
new TDEAction(i18n("Accept 'imported' and 'matched' transaction", "Accept"), "apply", 0, TQT_TQOBJECT(this), TQT_SLOT(slotTransactionsAccept()), actionCollection(), "transaction_accept"); new TDEAction(i18n("Accept 'imported' and 'matched' transaction", "Accept"), "apply", 0, TQT_TQOBJECT(this), TQT_SLOT(slotTransactionsAccept()), actionCollection(), "transaction_accept");
new TDEAction(i18n("Toggle reconciliation flag", "Toggle"), 0, TDEShortcut("Ctrl+Space"), TQT_TQOBJECT(this), TQT_SLOT(slotToggleReconciliationFlag()), actionCollection(), "transaction_mark_toggle"); new TDEAction(i18n("Toggle reconciliation flag", "Toggle"), 0, TDEShortcut("Ctrl+Space"), TQT_TQOBJECT(this), TQT_SLOT(slotToggleReconciliationFlag()), actionCollection(), "transaction_mark_toggle");
@ -5338,7 +5338,7 @@ void KMyMoney2App::slotUpdateActions(void)
if(matchedCount != 0) { if(matchedCount != 0) {
action("transaction_match")->setEnabled(true); action("transaction_match")->setEnabled(true);
action("transaction_match")->setText(i18n("Button text for unmatch transaction", "Unmatch")); action("transaction_match")->setText(i18n("Button text for unmatch transaction", "Unmatch"));
action("transaction_match")->setIcon("stop"); action("transaction_match")->setIcon("process-stop");
} }
if(m_selectedTransactions.count() > 1) { if(m_selectedTransactions.count() > 1) {

@ -76,7 +76,7 @@ void RegisterSearchLine::init(Register *reg)
d->combo = new TQComboBox(parentWidget()); d->combo = new TQComboBox(parentWidget());
// don't change the order of the following lines unless updating // don't change the order of the following lines unless updating
// the case labels in RegisterSearchLine::itemMatches() at the same time // the case labels in RegisterSearchLine::itemMatches() at the same time
d->combo->insertItem(SmallIcon("run"), i18n("Any status")); d->combo->insertItem(SmallIcon("system-run"), i18n("Any status"));
d->combo->insertItem(SmallIcon("fileimport"), i18n("Imported")); d->combo->insertItem(SmallIcon("fileimport"), i18n("Imported"));
d->combo->insertItem(SmallIcon("connect_creating"), i18n("Matched")); d->combo->insertItem(SmallIcon("connect_creating"), i18n("Matched"));
d->combo->insertItem(SmallIcon("attention"), i18n("Erroneous")); d->combo->insertItem(SmallIcon("attention"), i18n("Erroneous"));

Loading…
Cancel
Save