~ubuntu-branches/ubuntu/precise/kdewebdev-kde4/precise

« back to all changes in this revision

Viewing changes to klinkstatus/src/actionmanager.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Thomas, Richard Birnie, Jonathan Thomas
  • Date: 2008-11-26 19:53:39 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20081126195339-ngaj5wb31dgthwjh
Tags: 4:4.1.80-0ubuntu1
[ Richard Birnie ]
* New upstream release:
  - Updated build-deps kdelibs5-dev, kdepimlibs5-dev, cmake

[ Jonathan Thomas ]
* Created debian/not-installed, added the kommander headers we don't install
  to it

Show diffs side-by-side

added added

removed removed

Lines of Context:
168
168
 
169
169
    //     this action must be in the tabwidget because the slot can't be connected to a particular sessionWidget
170
170
    KToggleAction *toggle_action  = new KToggleAction(KIcon("go-jump"), i18n("&Follow Last Link"), this);
171
 
    toggle_action->setToolTip("Follow last Link checked (slower)");
 
171
    toggle_action->setToolTip(i18n("Follow last Link checked (slower)"));
172
172
    actionCollection()->addAction("follow_last_link_checked", toggle_action );
173
173
    connect(toggle_action, SIGNAL(triggered(bool)), d->tabWidgetSession, SLOT(slotFollowLastLinkChecked()));
174
174
    toggle_action->setShortcut(KShortcut("Ctrl+f"));
190
190
    action->setShortcut(KShortcut("F5"));
191
191
 
192
192
    toggle_action  = new KToggleAction(KIcon("view-refresh"), i18n("&Disable Updates on Results Table"), this);
193
 
    toggle_action->setToolTip("Disable Updates on Results Table (faster)");
 
193
    toggle_action->setToolTip(i18n("Disable Updates on Results Table (faster)"));
194
194
    actionCollection()->addAction("disable_update_results_table", toggle_action);
195
195
    connect(toggle_action, SIGNAL(triggered(bool)), d->tabWidgetSession, SLOT(slotDisableUpdatesOnResultsTable(bool)));
196
196
    toggle_action->setShortcut(KShortcut("Ctrl+u"));
222
222
    actionCollection()->addAction("search_in_background", toggle_action );
223
223
//     connect(toggle_action, SIGNAL(triggered(bool)), d->tabWidgetSession, SLOT(slotPauseSearch()));
224
224
//     toggle_action->setShortcut(KShortcut("Ctrl+p"));
225
 
    toggle_action->setToolTip("Check Links in background and update results when finished (faster)");
 
225
    toggle_action->setToolTip(i18n("Check Links in background and update results when finished (faster)"));
226
226
    toggle_action->setEnabled(true);
227
227
        
228
228
    action  = new KAction(KIcon("view-refresh"), i18n("&Broken Links"), this);
291
291
 
292
292
    // *************** Toolbar *********************
293
293
      
294
 
    d->gotoViewAction = new KToolBarPopupAction(KIcon("view-choose"), "Change View", this);
 
294
    d->gotoViewAction = new KToolBarPopupAction(KIcon("view-choose"), i18n("Change View"), this);
295
295
    actionCollection()->addAction("next_view_list", d->gotoViewAction);
296
296
//     action->setShortcuts(KStandardShortcut::shortcut(KStandardShortcut::Back));
297
 
    d->gotoViewAction->setToolTip("Change View");
 
297
    d->gotoViewAction->setToolTip(i18n("Change View"));
298
298
 
299
299
    connect(d->gotoViewAction, SIGNAL(triggered()), d->tabWidgetSession, SLOT(slotNextView()));
300
300
    connect(d->gotoViewAction->menu(), SIGNAL(aboutToShow()), this, SLOT(slotFillGotoViewPopup()));
489
489
    }
490
490
    qDeleteAll(entries);
491
491
    
492
 
    kDebug(23100) << "Setting prefered stylesheet: " << lastInstalled;
 
492
    kDebug(23100) << "Setting preferred stylesheet: " << lastInstalled;
493
493
    
494
494
    KLSConfig::setPreferedStylesheet(lastInstalled);
495
495
    KLSConfig::setStylesheetFiles(installedItems);