Changed: Only put a space if several conditions

--HG--
branch : develop
feature/pipeline-tools
kervala 8 years ago
parent a2a7dfa028
commit 542c63f03d

@ -416,7 +416,11 @@ bool readPhraseFileFromString(ucstring const& doc, const std::string &filename,
phrase.Clauses.size()+1);
return false;
}
clause.Conditions += "(" + cond + ") ";
// only prepend a space if required
if (!clause.Conditions.empty()) clause.Conditions += " ";
clause.Conditions += "(" + cond + ")";
CI18N::skipWhiteSpace(first, last, &clause.Comments);
}

Loading…
Cancel
Save