┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/urlnavigator.cpp
diff options
context:
space:
mode:
authorLaurent Montel <[email protected]>2006-11-23 13:10:00 +0000
committerLaurent Montel <[email protected]>2006-11-23 13:10:00 +0000
commit7fbae445277374fb2bacfcd7c04e8d7fbb2c3f05 (patch)
tree61345a66d7ce53305102454387617a20e6578d13 /src/urlnavigator.cpp
parent9d26e139f8098fdbf44c5ff183738a15e4388dfa (diff)
Fix i18n
svn path=/trunk/playground/utils/dolphin/; revision=607156
Diffstat (limited to 'src/urlnavigator.cpp')
-rw-r--r--src/urlnavigator.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/urlnavigator.cpp b/src/urlnavigator.cpp
index f81a20218..1f9295cb5 100644
--- a/src/urlnavigator.cpp
+++ b/src/urlnavigator.cpp
@@ -478,14 +478,14 @@ void UrlNavigator::updateContent()
delete m_protocolSeparator; m_protocolSeparator = 0;
delete m_host; m_host = 0;
- QToolTip::add(m_toggleButton, i18n("Browse (%1, Escape)").arg(shortcut));
+ QToolTip::add(m_toggleButton, i18n("Browse (%1, Escape)",shortcut));
setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Fixed);
m_pathBox->show();
m_pathBox->setUrl(url());
}
else {
- QToolTip::add(m_toggleButton, i18n("Edit location (%1)").arg(shortcut));
+ QToolTip::add(m_toggleButton, i18n("Edit location (%1)",shortcut));
setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
m_pathBox->hide();