Updated translations

Corrected bug for displaying correct WB
Reintroduced progress bar
bugfix for correction of badpixel
This commit is contained in:
ffsup2
2010-10-07 23:46:16 +02:00
parent 0c6a7a3c06
commit 9b2767f154
8 changed files with 95 additions and 39 deletions

View File

@@ -225,13 +225,15 @@ void DFManager::init( Glib::ustring pathname )
i.pathNames.push_back( i.pathname );
i.pathname.clear();
}
if( !i.pathname.empty() )
printf( "%s: %s\n",i.key().c_str(),i.pathname.c_str());
else{
printf( "%s: MEAN of \n ",i.key().c_str());
for( std::list<Glib::ustring>::iterator iter = i.pathNames.begin(); iter != i.pathNames.end();iter++ )
printf( "%s, ", iter->c_str() );
printf("\n");
if( settings->verbose ){
if( !i.pathname.empty() )
printf( "%s: %s\n",i.key().c_str(),i.pathname.c_str());
else{
printf( "%s: MEAN of \n ",i.key().c_str());
for( std::list<Glib::ustring>::iterator iter = i.pathNames.begin(); iter != i.pathNames.end();iter++ )
printf( "%s, ", iter->c_str() );
printf("\n");
}
}
}
currentPath = pathname;