diff --git a/rtdata/languages/default b/rtdata/languages/default index b127a93af..852b58042 100644 --- a/rtdata/languages/default +++ b/rtdata/languages/default @@ -1268,6 +1268,7 @@ TP_ICM_NOICM;No ICM: sRGB Output TP_ICM_OUTPUTDLGLABEL;Select Output ICC Profile... TP_ICM_OUTPUTPROFILE;Output Profile 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_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 diff --git a/rtgui/icmpanel.cc b/rtgui/icmpanel.cc index 7b6cf7ee8..ae33732e9 100644 --- a/rtgui/icmpanel.cc +++ b/rtgui/icmpanel.cc @@ -112,6 +112,7 @@ ICMPanel::ICMPanel () : Gtk::VBox(), FoldableToolPanel(this), iunchanged(NULL), saveRef = Gtk::manage (new Gtk::Button (M("TP_ICM_SAVEREFERENCE"))); 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); iFrame->add(*iVBox); @@ -669,7 +670,7 @@ void ICMPanel::saveReferencePressed () { if (!icmplistener) 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); dialog.set_current_name (lastRefFilename);