[Digikam-devel] [Bug 127946] Typo: the word Toogle should be Toggle

Gilles Caulier caulier.gilles at free.fr
Mon Sep 25 08:55:05 BST 2006


------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
         
http://bugs.kde.org/show_bug.cgi?id=127946         
caulier.gilles free fr changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|                            |FIXED



------- Additional Comments From caulier.gilles free fr  2006-09-25 09:55 -------
SVN commit 588163 by cgilles:

digikam from trunk : fix i18n 

BUG: 127946

 M  +11 -11    digikam/tagfilterview.cpp  
 M  +4 -3      libs/widgets/metadata/metadatawidget.cpp  
 M  +2 -2      utilities/cameragui/renamecustomizer.cpp  
 M  +3 -3      utilities/imageeditor/editor/imagewindow.cpp  
 M  +2 -2      utilities/setup/setupicc.cpp  


--- trunk/extragear/graphics/digikam/digikam/tagfilterview.cpp #588162:588163
 @ -40,6 +40,13  @
 #include <kcursor.h>
 #include <kmessagebox.h>
 
+// X11 includes.
+
+extern "C"
+{
+#include <X11/Xlib.h>
+}
+
 // Local includes.
 
 #include "albummanager.h"
 @ -50,17 +57,11  @
 #include "dragobjects.h"
 #include "folderitem.h"
 #include "imageattributeswatch.h"
+#include "albumthumbnailloader.h"
 #include "tagcreatedlg.h"
 #include "tagfilterview.h"
-#include "albumthumbnailloader.h"
+#include "tagfilterview.moc"
 
-// X11 includes.
-
-extern "C"
-{
-#include <X11/Xlib.h>
-}
-
 namespace Digikam
 {
 
 @ -618,13 +619,13  @
             {
                 TagFilterViewItem* item = (TagFilterViewItem*)it.current();
 
-                // Toogle all root tags filter.
+                // Toggle all root tags filter.
                 TAlbum *tag = item->m_tag;
                 if (tag)
                     if (tag->parent()->isRoot())
                         item->setOn(!item->isOn());
 
-                // Toogle "Not Tagged" item tag filter.
+                // Toggle "Not Tagged" item tag filter.
                 if (item->m_untagged)
                     item->setOn(!item->isOn());
 
 @ -780,4 +781,3  @
 
 }  // namespace Digikam
 
-#include "tagfilterview.moc"
--- trunk/extragear/graphics/digikam/libs/widgets/metadata/metadatawidget.cpp #588162:588163
 @ -54,6 +54,7  @
 #include "metadatalistview.h"
 #include "mdkeylistviewitem.h"
 #include "metadatawidget.h"
+#include "metadatawidget.moc"
 
 namespace Digikam
 {
 @ -101,13 +102,13  @
     QPushButton *simpleLevel = new QPushButton( d->levelButtons );
     simpleLevel->setPixmap( iconLoader->loadIcon( "ascii", (KIcon::Group)KIcon::Toolbar ) );
     simpleLevel->setToggleButton(true);
-    QWhatsThis::add( simpleLevel, i18n( "Toogle tags view to a simple human-readable list" ) );
+    QWhatsThis::add( simpleLevel, i18n( "Toggle tags view to a simple human-readable list" ) );
     d->levelButtons->insert(simpleLevel, SIMPLE);
 
     QPushButton *fullLevel = new QPushButton( d->levelButtons );
     fullLevel->setPixmap( iconLoader->loadIcon( "document", (KIcon::Group)KIcon::Toolbar ) );
     fullLevel->setToggleButton(true);
-    QWhatsThis::add( fullLevel, i18n( "Toogle tags view to a full list" ) );
+    QWhatsThis::add( fullLevel, i18n( "Toggle tags view to a full list" ) );
     d->levelButtons->insert(fullLevel, FULL);
 
     d->toolButtons = new QHButtonGroup(this);
 @ -414,6 +415,6  @
     vLayout->addStretch();
     d->mainLayout->addMultiCellLayout(vLayout, 2, 2, 0, 4);
 }
+
 }  // namespace Digikam
 
-#include "metadatawidget.moc"
--- trunk/extragear/graphics/digikam/utilities/cameragui/renamecustomizer.cpp #588162:588163
 @ -139,7 +139,7  @
     // ----------------------------------------------------------------
 
     d->renameDefault = new QRadioButton(i18n("Camera filenames"), this);
-    QWhatsThis::add( d->renameDefault, i18n("<p>Toogle on this option to use camera "
+    QWhatsThis::add( d->renameDefault, i18n("<p>Toggle on this option to use camera "
                                             "provided image filenames without modifications."));
     mainLayout->addMultiCellWidget(d->renameDefault, 0, 0, 0, 1);
 
 @ -170,7 +170,7  @
 
     d->renameCustom = new QRadioButton(i18n("Customize"), this);
     mainLayout->addMultiCellWidget(d->renameCustom, 2, 2, 0, 1);
-    QWhatsThis::add( d->renameCustom, i18n("<p>Toogle on this option to customize image filenames "
+    QWhatsThis::add( d->renameCustom, i18n("<p>Toggle on this option to customize image filenames "
                                            "during download."));
 
     d->renameCustomBox = new QGroupBox(this);
--- trunk/extragear/graphics/digikam/utilities/imageeditor/editor/imagewindow.cpp #588162:588163
 @ -86,9 +86,10  @
 #include "iofilesettingscontainer.h"
 #include "loadingcacheinterface.h"
 #include "savingcontextcontainer.h"
-#include "imagewindow.h"
 #include "imageattributeswatch.h"
 #include "deletedialog.h"
+#include "imagewindow.h"
+#include "imagewindow.moc"
 
 namespace Digikam
 {
 @ -240,7 +241,7  @
 {
     setupStandardConnections();
 
-    // To toogle properly keyboards shortcuts from comments & tags side bar tab.
+    // To toggle properly keyboards shortcuts from comments & tags side bar tab.
 
     connect(d->rightSidebar, SIGNAL(signalNextItem()),
             this, SLOT(slotForward()));
 @ -945,5 +946,4  @
 
 }  // namespace Digikam
 
-#include "imagewindow.moc"
 
--- trunk/extragear/graphics/digikam/utilities/setup/setupicc.cpp #588162:588163
 @ -70,6 +70,7  @
 #include "iccprofileinfodlg.h"
 #include "albumsettings.h"
 #include "setupicc.h"
+#include "setupicc.moc"
 
 namespace Digikam
 {
 @ -238,7 +239,7  @
     d->monitorProfilesKC    = new SqueezedComboBox(d->profilesGB);
     monitorProfiles->setBuddy(d->monitorProfilesKC);
     QWhatsThis::add( d->monitorProfilesKC, i18n("<p>You must select the profile for your monitor. "
-                     "You need to toogle on <b>Use color managed view</b> option from "
+                     "You need to toggle on <b>Use color managed view</b> option from "
                      "the Advanced Settings pannel to use this profile.</p>"));
     d->infoMonitorProfiles = new QPushButton(i18n("Info..."), d->profilesGB);
     QWhatsThis::add( d->infoMonitorProfiles, i18n("<p>You can use this button to get more detailled "
 @ -712,4 +713,3  @
             
 }  // namespace Digikam
 
-#include "setupicc.moc"



More information about the Digikam-devel mailing list