Bug 133448

Summary: typo in konqueror's behaviour.cpp
Product: [Applications] konqueror Reporter: Rocco Stanzione <grasshopper>
Component: generalAssignee: Konqueror Developers <konq-bugs>
Status: RESOLVED FIXED    
Severity: normal    
Priority: NOR    
Version: unspecified   
Target Milestone: ---   
Platform: Compiled Sources   
OS: Linux   
Latest Commit: Version Fixed In:
Attachments: Patch to fix the typo

Description Rocco Stanzione 2006-09-02 18:16:14 UTC
Version:            (using KDE Devel)
Installed from:    Compiled sources

"If this option is checked, Konqueror will open a new window when you open a folder, rather than showing that folders's contents in the current window."
s/folders/folder/
Comment 1 Rocco Stanzione 2006-09-02 18:18:04 UTC
Created attachment 17618 [details]
Patch to fix the typo
Comment 2 Andreas Kling 2006-09-02 18:47:14 UTC
SVN commit 580105 by kling:

Fixed typo ("folders's" -> "folder's")

BUG: 133448


 M  +1 -1      behaviour.cpp  


--- branches/KDE/3.5/kdebase/kcontrol/konq/behaviour.cpp #580104:580105
@@ -65,7 +65,7 @@
 
     cbNewWin = new QCheckBox(i18n("Open folders in separate &windows"), vbox);
     QWhatsThis::add( cbNewWin, i18n("If this option is checked, Konqueror will open a new window when "
-                                    "you open a folder, rather than showing that folders's contents in the current window."));
+                                    "you open a folder, rather than showing that folder's contents in the current window."));
     connect(cbNewWin, SIGNAL(clicked()), this, SLOT(changed()));
     connect(cbNewWin, SIGNAL(toggled(bool)), SLOT(updateWinPixmap(bool)));
 
Comment 3 Andreas Kling 2006-09-02 18:48:15 UTC
SVN commit 580106 by kling:

Fixed typo ("folders's" -> "folder's")

CCBUG: 133448


 M  +1 -1      behaviour.cpp  


--- trunk/KDE/kdebase/konqueror/settings/konq/behaviour.cpp #580105:580106
@@ -77,7 +77,7 @@
 
     cbNewWin = new QCheckBox(i18n("Open folders in separate &windows"), vbox);
     cbNewWin->setWhatsThis( i18n("If this option is checked, Konqueror will open a new window when "
-                                    "you open a folder, rather than showing that folders's contents in the current window."));
+                                    "you open a folder, rather than showing that folder's contents in the current window."));
     connect(cbNewWin, SIGNAL(clicked()), this, SLOT(changed()));
     connect(cbNewWin, SIGNAL(toggled(bool)), SLOT(updateWinPixmap(bool)));