Language fixes for "Save Reference Image for Profiling" (issue 2180)
This commit is contained in:
@@ -1268,6 +1268,7 @@ TP_ICM_NOICM;No ICM: sRGB Output
|
|||||||
TP_ICM_OUTPUTDLGLABEL;Select Output ICC Profile...
|
TP_ICM_OUTPUTDLGLABEL;Select Output ICC Profile...
|
||||||
TP_ICM_OUTPUTPROFILE;Output Profile
|
TP_ICM_OUTPUTPROFILE;Output Profile
|
||||||
TP_ICM_SAVEREFERENCE;Save Reference Image for Profiling
|
TP_ICM_SAVEREFERENCE;Save Reference Image for Profiling
|
||||||
|
TP_ICM_SAVEREFERENCE_TOOLTIP;Save the linear TIFF image before the input profile is applied. Result can be used for calibration purposes, generation of a camera profile.
|
||||||
TP_ICM_TONECURVE;Use DCP's tone curve
|
TP_ICM_TONECURVE;Use DCP's tone curve
|
||||||
TP_ICM_TONECURVE_TOOLTIP;Employ the embedded DCP tone curve. The setting is only enabled if the selected DCP has a tone curve.
|
TP_ICM_TONECURVE_TOOLTIP;Employ the embedded DCP tone curve. The setting is only enabled if the selected DCP has a tone curve.
|
||||||
TP_ICM_WORKINGPROFILE;Working Profile
|
TP_ICM_WORKINGPROFILE;Working Profile
|
||||||
|
@@ -112,6 +112,7 @@ ICMPanel::ICMPanel () : Gtk::VBox(), FoldableToolPanel(this), iunchanged(NULL),
|
|||||||
|
|
||||||
saveRef = Gtk::manage (new Gtk::Button (M("TP_ICM_SAVEREFERENCE")));
|
saveRef = Gtk::manage (new Gtk::Button (M("TP_ICM_SAVEREFERENCE")));
|
||||||
saveRef->set_image (*Gtk::manage (new RTImage ("gtk-save-large.png")));
|
saveRef->set_image (*Gtk::manage (new RTImage ("gtk-save-large.png")));
|
||||||
|
saveRef->set_tooltip_markup (M("TP_ICM_SAVEREFERENCE_TOOLTIP"));
|
||||||
iVBox->pack_start (*saveRef, Gtk::PACK_SHRINK, 2);
|
iVBox->pack_start (*saveRef, Gtk::PACK_SHRINK, 2);
|
||||||
|
|
||||||
iFrame->add(*iVBox);
|
iFrame->add(*iVBox);
|
||||||
@@ -669,7 +670,7 @@ void ICMPanel::saveReferencePressed () {
|
|||||||
|
|
||||||
if (!icmplistener)
|
if (!icmplistener)
|
||||||
return;
|
return;
|
||||||
Gtk::FileChooserDialog dialog(M("TP_ICM_SAVEREFERENCEDLGLABEL"), Gtk::FILE_CHOOSER_ACTION_SAVE);
|
Gtk::FileChooserDialog dialog(M("TP_ICM_SAVEREFERENCE"), Gtk::FILE_CHOOSER_ACTION_SAVE);
|
||||||
FileChooserLastFolderPersister persister(&dialog, options.lastProfilingReferenceDir);
|
FileChooserLastFolderPersister persister(&dialog, options.lastProfilingReferenceDir);
|
||||||
dialog.set_current_name (lastRefFilename);
|
dialog.set_current_name (lastRefFilename);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user