Rename 'Configure Profiles...' into 'Manage Profiles...'

The makes the action consistent with the opened ManageProfilesDialog.
wilder-portage
Jekyll Wu 15 years ago
parent f6d627903c
commit 0165f45402
  1. 4
      desktop/konsoleui.rc
  2. 4
      doc/manual/index.docbook
  3. 4
      src/MainWindow.cpp
  4. 2
      src/Part.cpp

@ -1,6 +1,6 @@
<!DOCTYPE kpartgui>
<kpartgui name="konsole" version="6">
<kpartgui name="konsole" version="7">
<MenuBar>
<Menu name="file"><text>File</text>
<Action name="new-window"/>
@ -33,7 +33,7 @@
<Menu name="settings"><text>Settings</text>
<DefineGroup name="session-settings"/>
<Action name="edit-current-profile"/>
<Action name="configure-profiles"/>
<Action name="manage-profiles"/>
<Action name="show-menubar"/>
<Separator/>
<Action name="view-full-screen"/>

@ -123,7 +123,7 @@ of common commands. Examples could include:
<para>
Procedure to create a new profile:
<orderedlist>
<listitem><para>Click on the menu entry <menuchoice><guimenu>Settings</guimenu><guimenuitem>Configure Profiles...</guimenuitem>
<listitem><para>Click on the menu entry <menuchoice><guimenu>Settings</guimenu><guimenuitem>Manage Profiles...</guimenuitem>
</menuchoice></para></listitem>
<listitem><para>Click on the button <guibutton>New Profile...</guibutton>.</para></listitem>
@ -648,7 +648,7 @@ Currently, &konsole; accepts the following:
<variablelist>
<varlistentry>
<term><menuchoice><guimenu>Settings</guimenu><guimenuitem>Configure
<term><menuchoice><guimenu>Settings</guimenu><guimenuitem>Manage
Profiles...</guimenuitem></menuchoice></term>
<listitem><para><action>Opens a editor for managing profiles</action>
</para>

@ -293,8 +293,8 @@ void MainWindow::setupActions()
KStandardAction::configureNotifications( this , SLOT(configureNotifications()) , collection );
KStandardAction::keyBindings( this , SLOT(showShortcutsDialog()) , collection );
action = collection->addAction("configure-profiles");
action->setText( i18n("Configure Profiles...") );
action = collection->addAction("manage-profiles");
action->setText( i18n("Manage Profiles...") );
action->setIcon( KIcon("configure") );
connect( action, SIGNAL(triggered()) , this , SLOT(showManageProfilesDialog()) );

@ -98,7 +98,7 @@ Part::~Part()
}
void Part::createGlobalActions()
{
_manageProfilesAction = new QAction(i18n("Configure Profiles..."),this);
_manageProfilesAction = new QAction(i18n("Manage Profiles..."),this);
connect(_manageProfilesAction,SIGNAL(triggered()),this,SLOT(showManageProfilesDialog()));
}
void Part::setupActionsForSession(SessionController* session)

Loading…
Cancel
Save