]> git.lyx.org Git - features.git/commitdiff
* output_plaintext.C: cosmetics in comment: line length cannot be < 0
authorMichael Schmitt <michael.schmitt@teststep.org>
Sat, 20 Jan 2007 14:51:40 +0000 (14:51 +0000)
committerMichael Schmitt <michael.schmitt@teststep.org>
Sat, 20 Jan 2007 14:51:40 +0000 (14:51 +0000)
* frontends/qt4/ui/QPrefPlaintextUi.ui:
* lyxrc.C: align descriptions (saves a message in *.po)

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16777 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/qt4/ui/QPrefPlaintextUi.ui
src/lyxrc.C
src/output_plaintext.C

index 338f33e1676df53ee51a9c47929240c611ddce60..cc8d164a78722a40cc10dd9356a5e4cef77fd9d7 100644 (file)
@@ -51,7 +51,7 @@
        <item>
         <widget class="QSpinBox" name="plaintextLinelengthSB" >
          <property name="toolTip" >
-          <string>Max. line length of exported plain text/LaTeX/SGML files. If set to 0, paragraphs are output in a single line; if the line length is > 0, paragraphs are separated by a blank line.</string>
+          <string>The maximum line length of exported plain text/LaTeX/SGML files. If set to 0, paragraphs are output in a single line; if the line length is > 0, paragraphs are separated by a blank line.</string>
          </property>
          <property name="maximum" >
           <number>120</number>
index 90cc102362afcb8581432ceed15ee2de8b16ff1e..8208bb2103d240b3632203685e0692ac3c14e77b 100644 (file)
@@ -2178,7 +2178,7 @@ string const LyXRC::getDescription(LyXRCTags tag)
                break;
 
        case RC_PLAINTEXT_LINELEN:
-               str = _("This is the maximum line length of an exported text file (LaTeX, SGML or plain text). If set to 0, paragraphs are output in a single line; if the line length is != 0, paragraphs are separated by a blank line.");
+               str = _("The maximum line length of exported plain text/LaTeX/SGML files. If set to 0, paragraphs are output in a single line; if the line length is > 0, paragraphs are separated by a blank line.");
                break;
 
        case RC_AUTOREGIONDELETE:
index 0adf86779e51199e5628a6a8d14bc6a738fcb1ec..4ffc0c655382b1ba8f151e127caa41bd32149591 100644 (file)
@@ -127,7 +127,7 @@ void writePlaintextParagraph(Buffer const & buf,
 
        /* what about the alignment */
 
-       // runparams.linelen <= 0 is special and means we don't have paragraph breaks
+       // runparams.linelen == 0 is special and means we don't have paragraph breaks
 
        string::size_type currlinelen = 0;