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

« back to all changes in this revision

Viewing changes to digikam/utilities/setup/setupicc.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:
178
178
    behaviourOptions->setInsideMargin(0); 
179
179
 
180
180
    d->defaultApplyICC = new QRadioButton(behaviourOptions);
181
 
    d->defaultApplyICC->setText(i18n("Apply when opening an image in Image Editor"));
182
 
    QWhatsThis::add( d->defaultApplyICC, i18n("<p>If this option is selected, digiKam applies the "
183
 
                     "Workspace default color profile to an image without asking when this has no "
184
 
                     "embedded profile, or the embedded profile is not the same as the workspace profile.</p>"));
 
181
    d->defaultApplyICC->setText(i18n("Apply when opening an image in the Image Editor"));
 
182
    QWhatsThis::add( d->defaultApplyICC, i18n("<p>If this option is enabled, digiKam applies the "
 
183
                     "Workspace default color profile to an image, without prompting you about missing "
 
184
                     "embedded profiles or embedded profiles different from the workspace profile.</p>"));
185
185
    
186
186
    d->defaultAskICC = new QRadioButton(behaviourOptions);
187
 
    d->defaultAskICC->setText(i18n("Ask when opening an image in Image Editor"));
188
 
    QWhatsThis::add( d->defaultAskICC, i18n("<p>If this option is selected, digiKam asks to the user "
 
187
    d->defaultAskICC->setText(i18n("Ask when opening an image in the Image Editor"));
 
188
    QWhatsThis::add( d->defaultAskICC, i18n("<p>If this option is enabled, digiKam asks to user "
189
189
                     "before it applies the Workspace default color profile to an image which has no "
190
 
                     "embedded profile or, if the image has an embedded profile, this is not the same "
 
190
                     "embedded profile or, if the image has an embedded profile, when it's not the same "
191
191
                     "as the workspace profile.</p>"));
192
192
 
193
193
    QHBox *hbox   = new QHBox(d->behaviourGB);
196
196
    d->cmToolInRawLoading = new QCheckBox(hbox);
197
197
    d->cmToolInRawLoading->setText(i18n("Launch Color Management plugin with RAW files"));
198
198
    QWhatsThis::add( d->cmToolInRawLoading, i18n("Enable this option if you want to launch the color "
199
 
                     "management image plugin when a RAW file is loaded in editor."));
 
199
                     "management image plugin when a RAW file is loaded in the editor."));
200
200
 
201
201
    grid->addMultiCellWidget(d->enableColorManagement, 0, 0, 0, 0);
202
202
    grid->addMultiCellWidget(lcmsLogoLabel, 0, 0, 2, 2);
228
228
    d->managedView->setText(i18n("Use color managed view (warning: slow)"));
229
229
    QWhatsThis::add( d->managedView, i18n("<p>Turn on this option if " 
230
230
                     "you want to use your <b>Monitor Color Profile</b> to show your pictures in "
231
 
                     "Image Editor window with a color correction adapted to your monitor. "
 
231
                     "the Image Editor window with a color correction adapted to your monitor. "
232
232
                     "Warning: this option can take a while to render "
233
233
                     "pictures on the screen, especially with a slow computer.</p>"));
234
234
 
237
237
    d->monitorProfiles   = new QLabel(i18n("Monitor:"), d->profilesGB);
238
238
    d->monitorProfilesKC = new SqueezedComboBox(d->profilesGB);
239
239
    d->monitorProfiles->setBuddy(d->monitorProfilesKC);
240
 
    QWhatsThis::add( d->monitorProfilesKC, i18n("<p>Select here the color profile for your monitor. "
241
 
                     "You need to toggle on <b>Use color managed view</b> option to use this profile.</p>"));
 
240
    QWhatsThis::add( d->monitorProfilesKC, i18n("<p>Select the color profile for your monitor. "
 
241
                     "You need to enable the <b>Use color managed view</b> option to use this profile.</p>"));
242
242
    d->infoMonitorProfiles = new QPushButton(i18n("Info..."), d->profilesGB);
243
243
    QWhatsThis::add( d->infoMonitorProfiles, i18n("<p>You can use this button to get more detailed "
244
244
                     "information about the selected monitor profile.</p>"));
289
289
    proofProfiles->setBuddy(d->proofProfilesKC);
290
290
    QWhatsThis::add( d->proofProfilesKC, i18n("<p>You must select the profile for your output device "
291
291
                     "(usually, your printer). This profile will be used to do a soft proof, so you will "
292
 
                     "be able to preview how an image will be rendered in an output device.</p>"));
 
292
                     "be able to preview how an image will be rendered via an output device.</p>"));
293
293
    d->infoProofProfiles = new QPushButton(i18n("Info..."), d->profilesGB);
294
294
    QWhatsThis::add( d->infoProofProfiles, i18n("<p>You can use this button to get more detailed "
295
295
                     "information about the selected soft proof profile.</p>"));