[Digikam-devel] [Bug 91812] wishlist: viewer/editor for IPTC meta data
Gilles Caulier
caulier.gilles at free.fr
Wed Oct 18 08:39:27 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=91812
------- Additional Comments From caulier.gilles free fr 2006-10-18 09:39 -------
SVN commit 596690 by cgilles:
kipiplugins from trunk : MetadataEdit plugin: fix IPTC editor i18n following Mikolaj Machowski tips.
CCBUGS: 91812
M +1 -1 iptccategories.cpp
M +2 -2 iptcdatetime.cpp
M +1 -1 iptckeywords.cpp
M +2 -2 metadataeditdialog.cpp
--- trunk/extragear/libs/kipi-plugins/metadataedit/iptccategories.cpp #596689:596690
@ -103,7 +103,7 @
d->subCategoriesBox = new KListBox(parent);
d->subCategoriesBox->setVScrollBarMode(QScrollView::AlwaysOn);
- d->addSubCategoryButton = new QPushButton( i18n("&Add..."), parent);
+ d->addSubCategoryButton = new QPushButton( i18n("&Add"), parent);
d->delSubCategoryButton = new QPushButton( i18n("&Delete"), parent);
d->delSubCategoryButton->setEnabled(false);
--- trunk/extragear/libs/kipi-plugins/metadataedit/iptcdatetime.cpp #596689:596690
@ -97,8 +97,8 @
// --------------------------------------------------------
- d->dateCreatedCheck = new QCheckBox(i18n("Date created"), parent);
- d->timeCreatedCheck = new QCheckBox(i18n("Time created"), parent);
+ d->dateCreatedCheck = new QCheckBox(i18n("Creation date"), parent);
+ d->timeCreatedCheck = new QCheckBox(i18n("Creation time"), parent);
d->dateCreatedSel = new KDateWidget(parent);
d->timeCreatedSel = new KTimeWidget(parent);
d->dateCreatedSel->setDate(QDate::currentDate());
--- trunk/extragear/libs/kipi-plugins/metadataedit/iptckeywords.cpp #596689:596690
@ -92,7 +92,7 @
d->keywordsBox = new KListBox(parent);
d->keywordsBox->setVScrollBarMode(QScrollView::AlwaysOn);
- d->addKeywordButton = new QPushButton( i18n("&Add..."), parent);
+ d->addKeywordButton = new QPushButton( i18n("&Add"), parent);
d->delKeywordButton = new QPushButton( i18n("&Delete"), parent);
d->delKeywordButton->setEnabled(false);
--- trunk/extragear/libs/kipi-plugins/metadataedit/metadataeditdialog.cpp #596689:596690
@ -132,7 +132,7 @
QPushButton *editExifButton = new QPushButton(i18n("Edit..."), exifBox);
QPushButton *loadExifButton = new QPushButton(i18n("Load..."), exifBox);
- QPushButton *removeExifButton = new QPushButton(i18n("Remove..."), exifBox);
+ QPushButton *removeExifButton = new QPushButton(i18n("Remove"), exifBox);
QWhatsThis::add(editExifButton, i18n("<p>Edit EXIF data of selected pictures from the list."));
QWhatsThis::add(loadExifButton, i18n("<p>Load EXIF data from a picture and set it to selected "
@ -151,7 +151,7 @
QPushButton *editIptcButton = new QPushButton(i18n("Edit..."), iptcBox);
QPushButton *loadIptcButton = new QPushButton(i18n("Load..."), iptcBox);
- QPushButton *removeIptcButton = new QPushButton(i18n("Remove..."), iptcBox);
+ QPushButton *removeIptcButton = new QPushButton(i18n("Remove"), iptcBox);
QWhatsThis::add(editIptcButton, i18n("<p>Edit IPTC data of selected pictures from the list."));
QWhatsThis::add(loadIptcButton, i18n("<p>Load IPTC data from a picture and set it to selected "
More information about the Digikam-devel
mailing list