| Summary: | ICC, profiles, metadata, abbreviations | ||
|---|---|---|---|
| Product: | [Applications] digikam | Reporter: | Alexandre Prokoudine <alexandre.prokoudine> |
| Component: | ColorManagement-Profiles | Assignee: | Digikam Developers <digikam-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Ubuntu | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | 0.9.0 | |
| Sentry Crash Report: | |||
|
Description
Alexandre Prokoudine
2006-07-16 17:24:34 UTC
IPTC tab, not ICC profile tab, sorry :( 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);
}
|