- First commit to issue fork.
- @andypost opened merge request.
- π«π·France andypost
Used to run test for 11.x and cherry-picked commit from previous MR (thanks smustgrave for 9.5)
When using PoItem
to export translation strings, the linebreak output differs between translated and untranslated strings.
$untranslated = new PoItem();
$untranslated->setSource("");
// msgid ""
// msgstr ""
$untranslated->__toString():
$translated = new PoItem();
$translated->setSource("");
$translated->setTranslation("");
// msgid ""
// msgstr ""
//
$translated->__toString();
Append line break to singular untranslated string output for consistency with other cases.
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Used to run test for 11.x and cherry-picked commit from previous MR (thanks smustgrave for 9.5)