| Summary: | Typo: the word Toogle should be Toggle | ||
|---|---|---|---|
| Product: | [Applications] digikam | Reporter: | Freek de Kruijf <f.de.kruijf> |
| Component: | Usability-i18n | Assignee: | Digikam Developers <digikam-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | 0.8.1 | ||
| Target Milestone: | --- | ||
| Platform: | unspecified | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | 0.9.0 | |
| Sentry Crash Report: | |||
|
Description
Freek de Kruijf
2006-05-24 16:55:09 UTC
SVN commit 544430 by cgilles: digikam from trunk : "toogle" to "toggle" BUG: 127946 M +1 -1 imageplugins/pics/Makefile.am A imageplugins/pics/togglemouseover.png imageplugins/pics/tooglemouseover.png#544422 D imageplugins/pics/tooglemouseover.png M +1 -1 libs/imageproperties/imagepropertiescolorstab.cpp M +9 -9 libs/widgets/imageplugins/imageguidewidget.cpp M +1 -1 libs/widgets/imageplugins/imageguidewidget.h M +7 -7 libs/widgets/imageplugins/imagewidget.cpp M +1 -1 libs/widgets/metadata/metadatalistview.cpp M +1 -1 showfoto/showfoto.cpp M +1 -1 utilities/setup/setupiofiles.cpp M +6 -6 utilities/setup/setupmetadata.cpp M +1 -1 utilities/setup/setupslideshow.cpp I found a few more of these typo's via digikam.po. POT-Creation-Date: 2006-07-27 10:57+0200 In this file the following files are named: libs/widgets/metadata/metadatawidget.cpp:104 libs/widgets/metadata/metadatawidget.cpp:110 utilities/setup/setupicc.cpp:230 utilities/cameragui/renamecustomizer.cpp:103 utilities/cameragui/renamecustomizer.cpp:134 utilities/cameragui/cameraui.cpp:221 utilities/cameragui/cameraui.cpp:224 utilities/cameragui/cameraui.cpp:234 utilities/cameragui/cameraui.cpp:236 utilities/cameragui/cameraui.cpp:238 your digikam.po file is not updated. Please check again. Gilles 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"
|