| Summary: | Unclear text in digikam | ||
|---|---|---|---|
| Product: | [Applications] digikam | Reporter: | Freek de Kruijf <f.de.kruijf> |
| Component: | Usability-i18n | Assignee: | Digikam Developers <digikam-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | wishlist | CC: | caulier.gilles |
| Priority: | NOR | ||
| Version First Reported In: | 0.9.0 | ||
| Target Milestone: | --- | ||
| Platform: | unspecified | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | 7.5.0 | |
| Sentry Crash Report: | |||
|
Description
Freek de Kruijf
2007-02-13 15:38:13 UTC
SVN commit 633760 by cgilles:
digikam from trunk: fix i18n
BUG: 141635
M +4 -3 NEWS
M +1 -1 libs/imageproperties/imagedescedittab.cpp
M +2 -2 libs/widgets/imageplugins/imagewidget.cpp
--- trunk/extragear/graphics/digikam/NEWS #633759:633760
@@ -480,7 +480,7 @@
270 ==> 130237 : Typos in digiKam plugin files.
271 ==> 138925 : External modules config dialog lacks a select all button.
272 ==> 140038 : digiKam Image Editor crash on right click after changing toolbar.
-273 ==> 139766 : Crash when displaying EXIF metadata with Unicode comment
+273 ==> 139766 : Crash when displaying EXIF metadata with Unicode comment.
274 ==> 130017 : Wish: batch operation to save existing comments in the files.
275 ==> 140320 : View menu should better fit after Edit.
276 ==> 127617 : "Toggle Fullscreen" should be located in "View" menu instead
@@ -489,7 +489,7 @@
278 ==> 140417 : Crash digiKam when delete image.
279 ==> 110514 : Enhanced selection, refactored histogram.
280 ==> 140933 : Typo: Album Library Path.
-281 ==> 141190 : digikam crash when invalid ICM file at color profile directory
+281 ==> 141190 : digiKam crash when invalid ICM file at color profile directory
and you enter into PREFERENCES->COLOR SPACE PROFILES.
282 ==> 123649 : JPEG/PNG quality settings at the "save" dialog.
283 ==> 116518 : Use KIPI plugin for displaying slideshows.
@@ -503,6 +503,7 @@
289 ==> 141035 : Advanced Search gives error when trying to search by rating.
290 ==> 116609 : Allow slideshow to be recursive.
-291 ==>
+291 ==> 141635 : Unclear text in digiKam.
+292 ==>
----------------------------------------------------------------------------------------------------
--- trunk/extragear/graphics/digikam/libs/imageproperties/imagedescedittab.cpp #633759:633760
@@ -409,7 +409,7 @@
d->currInfos.count());
if (d->hub.commentChanged())
- text += i18n("<li>the comment</i>");
+ text += i18n("<li>the comment</li>");
if (d->hub.dateTimeChanged())
text += i18n("<li>the date</li>");
if (d->hub.ratingChanged())
--- trunk/extragear/graphics/digikam/libs/widgets/imageplugins/imagewidget.cpp #633759:633760
@@ -177,7 +177,7 @@
exposureButtons->insert(d->underExposureButton, UnderExposure);
d->underExposureButton->setPixmap(SmallIcon("underexposure"));
d->underExposureButton->setToggleButton(true);
- QWhatsThis::add(d->underExposureButton, i18n("<p>Set on this option to display pure black "
+ QWhatsThis::add(d->underExposureButton, i18n("<p>Set this option on to display pure black "
"over-colored on preview. This will help you to avoid "
"under-exposing the image." ) );
@@ -185,7 +185,7 @@
exposureButtons->insert(d->overExposureButton, OverExposure);
d->overExposureButton->setPixmap(SmallIcon("overexposure"));
d->overExposureButton->setToggleButton(true);
- QWhatsThis::add(d->overExposureButton, i18n("<p>Set on this option to display pure white "
+ QWhatsThis::add(d->overExposureButton, i18n("<p>Set this option on to display pure white "
"over-colored on preview. This will help you to avoid "
"over-exposing the image." ) );
Fixed with works from bug #438701 for next 7.5.0 release Gilles Caulier |