~ubuntu-branches/ubuntu/intrepid/digikam/intrepid

« back to all changes in this revision

Viewing changes to digikam/imageplugins/coreplugin/imageeffect_autocorrection.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Mark Purcell
  • Date: 2008-07-17 20:25:39 UTC
  • mfrom: (1.2.15 upstream) (3.1.2 lenny)
  • Revision ID: james.westby@ubuntu.com-20080717202539-6n7dtirbkoo7qvhd
Tags: 2:0.9.4-1
* New upstream release
  - digiKam 0.9.4 Release Plan (KDE3) ~ 13 July 08 (Closes: #490144)
* DEB_CONFIGURE_EXTRA_FLAGS := --without-included-sqlite3
* Debhelper compatibility level V7
* Install pixmaps in debian/*.install
* Add debian/digikam.lintian-overrides

Show diffs side-by-side

added added

removed removed

Lines of Context:
100
100
    m_channelCB->insertItem( i18n("Red") );
101
101
    m_channelCB->insertItem( i18n("Green") );
102
102
    m_channelCB->insertItem( i18n("Blue") );
103
 
    QWhatsThis::add( m_channelCB, i18n("<p>Select here the histogram channel to display:<p>"
 
103
    QWhatsThis::add( m_channelCB, i18n("<p>Select the histogram channel to display here:<p>"
104
104
                                       "<b>Luminosity</b>: display the image's luminosity values.<p>"
105
105
                                       "<b>Red</b>: display the red image-channel values.<p>"
106
106
                                       "<b>Green</b>: display the green image-channel values.<p>"
110
110
    m_scaleBG->setExclusive(true);
111
111
    m_scaleBG->setFrameShape(QFrame::NoFrame);
112
112
    m_scaleBG->setInsideMargin( 0 );
113
 
    QWhatsThis::add( m_scaleBG, i18n("<p>Select here the histogram scale.<p>"
 
113
    QWhatsThis::add( m_scaleBG, i18n("<p>Select the histogram scale here.<p>"
114
114
                                     "If the image's maximal counts are small, you can use the linear scale.<p>"
115
115
                                     "Logarithmic scale can be used when the maximal counts are big; "
116
116
                                     "if it is used, all values (small and large) will be visible on the graph."));