don't export empty strings
This commit is contained in:
@@ -302,7 +302,7 @@ void LanguagesDlg::OnBnClickedButtonExport()
|
|||||||
continue;
|
continue;
|
||||||
|
|
||||||
bool bAlreadyTranslated = !tl.sCurrentLanguage.empty();
|
bool bAlreadyTranslated = !tl.sCurrentLanguage.empty();
|
||||||
if( bAlreadyTranslated || bExportAlreadyTranslated )
|
if( !bAlreadyTranslated || bExportAlreadyTranslated )
|
||||||
{
|
{
|
||||||
vector<RString> vs;
|
vector<RString> vs;
|
||||||
vs.push_back( tl.sSection );
|
vs.push_back( tl.sSection );
|
||||||
|
|||||||
Reference in New Issue
Block a user