Bug 130920 - ICC, profiles, metadata, abbreviations
Summary: ICC, profiles, metadata, abbreviations
Status: RESOLVED FIXED
Alias: None
Product: digikam
Classification: Applications
Component: ColorManagement-Profiles (show other bugs)
Version: unspecified
Platform: Ubuntu Linux
: NOR normal
Target Milestone: ---
Assignee: Digikam Developers
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-07-16 17:24 UTC by Alexandre Prokoudine
Modified: 2022-02-01 11:19 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In: 0.9.0


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Alexandre Prokoudine 2006-07-16 17:24:34 UTC
Version:           0.9.0SVN (using KDE KDE 3.5.2)
Installed from:    Ubuntu Packages
OS:                Linux

ICC-profile tab mentions "Iptc" several times, while the correct spelling would be "IPTC"
Comment 1 Alexandre Prokoudine 2006-07-16 17:26:33 UTC
IPTC tab, not ICC profile tab, sorry :(
Comment 2 caulier.gilles 2006-07-16 18:19:36 UTC
SVN commit 563081 by cgilles:

digikam from trunk : fix "Iptc" to "IPTC" i18n

BUG: 130920

 M  +3 -3      iptcwidget.cpp  


--- trunk/extragear/graphics/digikam/libs/widgets/metadata/iptcwidget.cpp #563080:563081
@@ -79,7 +79,7 @@
 
 QString IptcWidget::getMetadataTitle(void)
 {
-    return i18n("Iptc Records");
+    return i18n("IPTC Records");
 }
 
 bool IptcWidget::loadFromURL(const KURL& url)
@@ -211,8 +211,8 @@
 
 void IptcWidget::slotSaveMetadataToFile(void)
 {
-    KURL url = saveMetadataToFile(i18n("Iptc File to Save"),
-                                  QString("*.dat|"+i18n("Iptc binary Files (*.dat)")));
+    KURL url = saveMetadataToFile(i18n("IPTC File to Save"),
+                                  QString("*.dat|"+i18n("IPTC binary Files (*.dat)")));
     storeMetadataToFile(url);
 }