Files
sls/translator_gettext.php
2024-12-13 06:44:07 +01:00

20 lines
420 B
PHP

<?php
require('vendor/autoload.php');
// Load compatibility layer
PhpMyAdmin\MoTranslator\Loader::loadFunctions();
$langue = "fr_FR.utf8";
// Configure
_setlocale(LC_MESSAGES, $langue);
_textdomain('sentier');
_bindtextdomain('sentier', __DIR__ . '/Locale/');
_bind_textdomain_codeset('sentier', 'UTF-8');
// Use functions
echo _gettext('All photos');
echo __('Aperture Priority');
echo _gettext('motranslator');
?>