* src/output_plaintext.C: partially revert r16780

to support RtL languages


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16791 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Michael Schmitt 2007-01-21 09:46:15 +00:00
parent 8dd721572f
commit e5dbc07931

View File

@ -152,7 +152,7 @@ void writePlaintextParagraph(Buffer const & buf,
os << _("Abstract") << "\n\n";
currlinelen = 0;
} else {
docstring const abst = _("Abstract") + from_ascii(": ");
docstring const abst = _("Abstract: ");
os << abst;
currlinelen += abst.length();
}
@ -164,7 +164,7 @@ void writePlaintextParagraph(Buffer const & buf,
os << _("References") << "\n\n";
currlinelen = 0;
} else {
docstring const refs = _("References") + from_ascii(": ");
docstring const refs = _("References: ");
os << refs;
currlinelen += refs.length();
}