Kornel Benko
2014-07-03 11:22:26 UTC
commit d333d7d6961590527a7ecb281a8bdd490c729a7a
Date: Thu Jul 3 11:30:56 2014 +0200
Add support for the pdfcomment package.
Fixes: #6975.
I am trying to translate the provided strings, but failing on oneDate: Thu Jul 3 11:30:56 2014 +0200
Add support for the pdfcomment package.
Fixes: #6975.
lib/layouts/pdfcomment.module:113 "Insert the tooltip text here"
The reason is, that it is converted to "text here" while processing with
# python2 .../po/lyx_pot.py ... -t layouts ...
Manipulating this text leads to unpredictable results. Only omitting the last words (text here)
helps.
E.g.
"Insert the tooltip" => "Insert the tooltip"
"Insert the tooltip a b c d e f g h" ==> "a b c d e f g h"
"Insert.the tooltip a b c d e f g h" ==> "a b c d e f g h"
"Insert the tooltip.a b c d e f g h" ==> "b c d e f g h"
I cannot make any sense here.
The created file is layouts_l10n.pot, search for '#: lib/layouts/pdfcomment.module:113'
Kornel