| Summary: | typo in konqueror's behaviour.cpp | ||
|---|---|---|---|
| Product: | [Applications] konqueror | Reporter: | Rocco Stanzione <grasshopper> |
| Component: | general | Assignee: | Konqueror Bugs <konqueror-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Compiled Sources | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
| Attachments: | Patch to fix the typo | ||
|
Description
Rocco Stanzione
2006-09-02 18:16:14 UTC
Created attachment 17618 [details]
Patch to fix the typo
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)));
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)));
|