From 1bf56ad49abdef0db17f5884121e754f20b62fd6 Mon Sep 17 00:00:00 2001 From: Enrico Ros Date: Mon, 13 Jun 2005 17:54:20 +0000 Subject: [PATCH] merged patch_090 svn path=/branches/kpdf/annotations/kdegraphics/kpdf/; revision=425043 --- part.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/part.cpp b/part.cpp index 05184a78f..5d23b5b4c 100644 --- a/part.cpp +++ b/part.cpp @@ -232,13 +232,13 @@ Part::Part(QWidget *parentWidget, const char *widgetName, m_saveAs = KStdAction::saveAs( this, SLOT( slotSaveFileAs() ), ac, "save" ); m_saveAs->setEnabled( false ); KAction * prefs = KStdAction::preferences( this, SLOT( slotPreferences() ), ac, "preferences" ); - prefs->setText( i18n( "Configure PDF Viewer..." ) ); + prefs->setText( i18n( "Configure KPDF..." ) ); // TODO: use "Configure PDF Viewer..." when used as part (like in konq m_printPreview = KStdAction::printPreview( this, SLOT( slotPrintPreview() ), ac ); m_printPreview->setEnabled( false ); - m_showLeftPanel = new KToggleAction( i18n( "Show &left panel"), "show_side_panel", 0, this, SLOT( slotShowLeftPanel() ), ac, "show_leftpanel" ); + m_showLeftPanel = new KToggleAction( i18n( "Show &Navigation panel"), "show_side_panel", 0, this, SLOT( slotShowLeftPanel() ), ac, "show_leftpanel" ); m_showLeftPanel->setShortcut( "CTRL+L" ); - m_showLeftPanel->setCheckedState( i18n("Hide &left panel") ); + m_showLeftPanel->setCheckedState( i18n( "Hide &Navigation Panel" ) ); m_showLeftPanel->setChecked( Settings::showLeftPanel() ); slotShowLeftPanel(); -- GitLab