Behaviour of the history of the HL recovery tool has been normalized, French locale updated with the flat fiields strings, bug correction in the preference window (messages of the flat field and dark frame tools weren't handling special chars)
This commit is contained in:
@@ -1164,16 +1164,14 @@ void Preferences::updateDFinfos()
|
||||
{
|
||||
int t1,t2;
|
||||
rtengine::dfm.getStat(t1,t2);
|
||||
std::ostringstream s;
|
||||
s << M("PREFERENCES_DARKFRAMEFOUND")<<": "<< t1 << " "<<M("PREFERENCES_DARKFRAMESHOTS")<<", " << t2 << " "<<M("PREFERENCES_DARKFRAMETEMPLATES");
|
||||
dfLabel->set_text(s.str());
|
||||
Glib::ustring s = Glib::ustring::compose("%1: %2 %3, %4 %5", M("PREFERENCES_DARKFRAMEFOUND"), t1, M("PREFERENCES_DARKFRAMESHOTS"), t2, M("PREFERENCES_DARKFRAMETEMPLATES"));
|
||||
dfLabel->set_text(s);
|
||||
}
|
||||
|
||||
void Preferences::updateFFinfos()
|
||||
{
|
||||
int t1,t2;
|
||||
rtengine::ffm.getStat(t1,t2);
|
||||
std::ostringstream s;
|
||||
s << M("PREFERENCES_FLATFIELDFOUND")<<": "<< t1 << " "<<M("PREFERENCES_FLATFIELDSHOTS")<<", " << t2 << " "<<M("PREFERENCES_FLATFIELDTEMPLATES");
|
||||
ffLabel->set_text(s.str());
|
||||
}
|
||||
Glib::ustring s = Glib::ustring::compose("%1: %2 %3, %4 %5", M("PREFERENCES_FLATFIELDFOUND"), t1, M("PREFERENCES_FLATFIELDSHOTS"), t2, M("PREFERENCES_FLATFIELDTEMPLATES"));
|
||||
ffLabel->set_text(s);
|
||||
}
|
||||
|
Reference in New Issue
Block a user