Summary: | [typo] ISO Slider label is incorrectly labeled as "sensibility", should be sensitivity | ||
---|---|---|---|
Product: | [Applications] digikam | Reporter: | Andrew Hunter <andy.e.hunter> |
Component: | Usability-i18n | Assignee: | Digikam Developers <digikam-bugs-null> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | unspecified | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | 0.9.0 | |
Sentry Crash Report: |
Description
Andrew Hunter
2006-10-23 05:01:25 UTC
SVN commit 598272 by cgilles: Fix i18n : "sensibility" ==> "sensitivity" BUG: 136162 M +1 -1 filmgrain/imageeffect_filmgrain.cpp M +1 -1 infrared/imageeffect_infrared.cpp --- trunk/extragear/graphics/digikamimageplugins/filmgrain/imageeffect_filmgrain.cpp #598271:598272 @@ -78,7 +78,7 @@ QWidget *gboxSettings = new QWidget(m_imagePreviewWidget); QGridLayout* gridSettings = new QGridLayout( gboxSettings, 1, 1, 0, spacingHint()); - QLabel *label1 = new QLabel(i18n("Sensibility (ISO):"), gboxSettings); + QLabel *label1 = new QLabel(i18n("Sensitivity (ISO):"), gboxSettings); m_sensibilitySlider = new QSlider(2, 30, 1, 12, Qt::Horizontal, gboxSettings); m_sensibilitySlider->setTracking ( false ); --- trunk/extragear/graphics/digikamimageplugins/infrared/imageeffect_infrared.cpp #598271:598272 @@ -79,7 +79,7 @@ QWidget *gboxSettings = new QWidget(m_imagePreviewWidget); QGridLayout* gridSettings = new QGridLayout( gboxSettings, 2, 1, 0, spacingHint()); - QLabel *label1 = new QLabel(i18n("Sensibility (ISO):"), gboxSettings); + QLabel *label1 = new QLabel(i18n("Sensitivity (ISO):"), gboxSettings); m_sensibilitySlider = new QSlider(1, 25, 1, 1, Qt::Horizontal, gboxSettings); m_sensibilitySlider->setTracking ( false ); |