From e5dbc0793137b413f616add8f39da3dd627eee10 Mon Sep 17 00:00:00 2001 From: Michael Schmitt Date: Sun, 21 Jan 2007 09:46:15 +0000 Subject: [PATCH] * 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 --- src/output_plaintext.C | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/output_plaintext.C b/src/output_plaintext.C index 38c979457e..ae70ac44d1 100644 --- a/src/output_plaintext.C +++ b/src/output_plaintext.C @@ -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(); } -- 2.39.5