summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPanagiotis Papadopoulos <pano_90@gmx.net>2009-09-30 12:49:47 +0200
committerPanagiotis Papadopoulos <pano_90@gmx.net>2009-09-30 12:49:47 +0200
commit3780b838b881e769a73d98237e45861b66c4e162 (patch)
treee5afcc796cf145d131f8170ae3f79ea377283e96 /src
parentRemoved an unnecessary white space (diff)
downloadrekonq-3780b838b881e769a73d98237e45861b66c4e162.tar.xz
Modified the string a bit
Made it similar to the Konqueror one
Diffstat (limited to 'src')
-rw-r--r--src/mainview.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mainview.cpp b/src/mainview.cpp
index d02dd37d..f994aa25 100644
--- a/src/mainview.cpp
+++ b/src/mainview.cpp
@@ -409,9 +409,10 @@ void MainView::slotCloseTab(int index)
if (tab->isModified())
{
int risp = KMessageBox::questionYesNo(this,
- i18n("You have modified this page and when closing it you would lose the modifications.\n"
- "Do you really want to close this page?\n"),
- i18n("Closing tab confirmation"));
+ i18n("This tab contains changes that have not been submitted.\n"
+ "Closing the tab will discard these changes.\n"
+ "Do you really want to close this tab?\n"),
+ i18n("Closing Modified Tab"));
if (risp == KMessageBox::No)
return;
}