$options
$options :
Class to get gettext strings from VueJS template files.
fromString(string $string, \Gettext\Translations $translations, array $options = array())
Parses a string and append the translations found in the Translations instance.
string | $string | |
\Gettext\Translations | $translations | |
array | $options |
fromFile(array|string $file, \Gettext\Translations $translations, array $options = array())
Extract the translations from a file.
array|string | $file | A path of a file or files |
\Gettext\Translations | $translations | The translations instance to append the new translations. |
array | $options |
getScriptTranslationsFromString(string $scriptContents, \Gettext\Translations $translations, array $options = array(), integer $lineOffset)
Extract translations from script part
string | $scriptContents | Only script tag contents, not the whole template |
\Gettext\Translations | $translations | |
array | $options | |
integer | $lineOffset | Number of lines the script is offset in the vue template file |
getTemplateTranslations(\DOMElement $dom, \Gettext\Translations $translations, array $options, integer $lineOffset)
Parse template to extract all translations (element content and dynamic element attributes)
\DOMElement | $dom | |
\Gettext\Translations | $translations | |
array | $options | |
integer | $lineOffset | Line number where the template part starts in the vue file |
getTemplateAttributeFakeJs(array $options, \DOMElement $dom) : string
Extract JS expressions from element attribute bindings (excluding text within elements) For example: <span :title="__('extract this')"> skip element content </span>
array | $options | |
\DOMElement | $dom |
JS code
getVueAttributeExpressions(array $attributePrefixes, \DOMElement $dom, array $expressionByLine = array()) : array
Loop DOM element recursively and parse out all dynamic vue attributes which are basically JS expressions
array | $attributePrefixes | List of attribute prefixes we parse as JS (may contain translations) |
\DOMElement | $dom | |
array | $expressionByLine | [lineNumber => [jsExpression, ..], ..] |
[lineNumber => [jsExpression, ..], ..]