PHP code example of gettext / twig-scanner
1. Go to this page and download the library: Download gettext/twig-scanner library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
gettext / twig-scanner example snippets
use Gettext\Scanner\TwigScanner;
use Gettext\Generator\PoGenerator;
use Gettext\Translations;
//Create a new scanner, adding a translation for each domain we want to get:
$twigScanner = new TwigScanner(
Translations::create('domain1'),
Translations::create('domain2'),
Translations::create('domain3')
);
//Set a default domain, so any translations with no domain specified, will be added to that domain
$twigScanner->setDefaultDomain('domain1');
//Extract all comments starting with 'notes:'
$twigScanner->extractCommentsStartingWith('notes:');
//Scan files
foreach (glob('*.twig') as $file) {
$twigScanner->scanFile($file);
}
//Save the translations in .po files
$generator = new PoGenerator();
foreach ($twigScanner->getTranslations() as $domain => $translations) {
$generator->generateFile($translations, "locales/{$domain}.po");
}