Bug 136162 - [typo] ISO Slider label is incorrectly labeled as "sensibility", should be sensitivity
Summary: [typo] ISO Slider label is incorrectly labeled as "sensibility", should be se...
Status: RESOLVED FIXED
Alias: None
Product: digikam
Classification: Applications
Component: Usability-i18n (show other bugs)
Version: unspecified
Platform: unspecified Linux
: NOR normal
Target Milestone: ---
Assignee: Digikam Developers
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-10-23 05:01 UTC by Andrew Hunter
Modified: 2017-08-04 17:32 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 Andrew Hunter 2006-10-23 05:01:25 UTC
Version:           unknown (using KDE 3.5.5, Kubuntu (edgy) 4:3.5.5-0ubuntu2)
Compiler:          Target: i486-linux-gnu
OS:                Linux (i686) release 2.6.17-10-generic

ISO slider label is incorrectly labeled as "sensibility", should be "sensitivity". 

I am using the Canadian local, so this may be a localization issue.
Comment 1 caulier.gilles 2006-10-23 07:35:29 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 );