Bug 133448 - typo in konqueror's behaviour.cpp
Summary: typo in konqueror's behaviour.cpp
Status: RESOLVED FIXED
Alias: None
Product: konqueror
Classification: Applications
Component: general (show other bugs)
Version: unspecified
Platform: Compiled Sources Linux
: NOR normal
Target Milestone: ---
Assignee: Konqueror Developers
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-09-02 18:16 UTC by Rocco Stanzione
Modified: 2006-09-02 18:48 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments
Patch to fix the typo (831 bytes, patch)
2006-09-02 18:18 UTC, Rocco Stanzione
Details

Note You need to log in before you can comment on or make changes to this bug.
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)));