Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drupal 9 support #19

Open
wants to merge 3 commits into
base: 8.x-1.x
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 24 additions & 2 deletions potx.inc
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,10 @@ spl_autoload_register(function($c){
});

use Drupal\Component\Gettext\PoItem;
use Drupal\Core\Template\Loader\FilesystemLoader;
use Symfony\Component\Yaml\Yaml;
use Symfony\Component\Yaml\Exception\ParseException;
use Twig\Source;

/**
* The current Drupal major API verion.
Expand Down Expand Up @@ -1798,10 +1800,30 @@ function _potx_parse_js_string($string) {
* Parse a Twig template for translatables. Drupal 8+.
*/
function _potx_parse_twig_file($code, $file, $save_callback) {
$twig_lexer = new Twig_Lexer(new Twig_Environment());
$is_twig_1 = TRUE;
$twig_lexer = NULL;
try {
$twig_lexer = new Twig_Lexer(new Twig_Environment());
}
catch (ArgumentCountError $e) {
// Probably means we need to use the syntax for twig 2.
$is_twig_1 = FALSE;
}
if (!$twig_lexer) {
$module_handler = \Drupal::moduleHandler();
$theme_handler = \Drupal::service('theme_handler');
$loader = new FilesystemLoader($file, $module_handler, $theme_handler);
$twig_lexer = new Twig_Lexer(new Twig_Environment($loader));
}

try {
$stream = $twig_lexer->tokenize($code, $file);
if ($is_twig_1) {
$stream = $twig_lexer->tokenize($code, $file);
}
else {
$source = new Source($code, $file);
$stream = $twig_lexer->tokenize($source);
}
} catch(Twig_Error_Syntax $e) {
potx_status('error', t("Twig parsing error on file @path: @error", array(
'@path' => $file,
Expand Down
2 changes: 1 addition & 1 deletion potx.info.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Translation template extractor
description: Provides a web interface and an API to extract translatable text from the sources of installed components.
core: 8.x
core_version_requirement: ^8 || ^9 || ^10
package: Multilingual
version: 8.x-1.x-dev
dependencies:
Expand Down