Parses file in PO format
_addMessage( array $messages , array $item )
Saves a translation item to the messages.
$messages
$item
parse( string $resource )
Parses portable object (PO) format.
From http://www.gnu.org/software/gettext/manual/gettext.html#PO-Files we should be able to parse files having:
white-space
msgid untranslated-string msgstr translated-string
extra or different lines are:
msgctxt context
msgid untranslated-string-singular msgid_plural untranslated-string-plural msgstr[0] translated-string-case-0 ... msgstr[N] translated-string-case-n
The definition states: - white-space and comments are optional. - msgid "" that an empty singleline defines a header.
This parser sacrifices some features of the reference implementation the differences to that implementation are as follows. - No support for comments spanning multiple lines. - Translator and extracted comments are treated as being the same type. - Message IDs are allowed to have other encodings as just US-ASCII.
Items with an empty id are ignored.
$resource
© 2005–2017 The Cake Software Foundation, Inc.
Licensed under the MIT License.
CakePHP is a registered trademark of Cake Software Foundation, Inc.
We are not endorsed by or affiliated with CakePHP.
https://api.cakephp.org/3.4/class-Cake.I18n.Parser.PoFileParser.html