basically, my plugin have this structure:
`
<?php
/**
* Plugin pour gérer les traductions personnelles de mon site, indépendament des thèmes utilisés.
*
* @package plugins
* @subpackage seo
*/
$plugin_is_filter = 9|THEME_PLUGIN;
$plugin_description = gettext_pl('Plugin to manage personnal translations of my site.', 'translations');
$plugin_author = "Vincent Bourganel (vincent3569)";
$plugin_version = '1.0';
function translated_strings() {
$strings = array(
gettext_pl('Hello World!', 'translations'),
gettext_pl('Hello World, again!', 'translations')
);
}
?>
`
it's ok for you?
with that, I can access to translated string in my pages/news where needed?