Home
last modified time | relevance | path

Searched +full:translations +(+path:plugin +path:translation) -(+path:plugin +path:translation +path:lang) (Results 1 – 6 of 6) sorted by relevance

/plugin/translation/
H A Dhelper.php14 public $translations = [];
46 if (in_array($dfl, $this->translations)) {
50 array_unshift($this->translations, '');
58 * Parse 'translations'-setting into $this->translations
63 $this->translations = strtolower(str_replace(',', ' ', $this->getConf('translations')));
64 $this->translations = array_unique(array_filter(explode(' ', $this->translations)));
65 sort($this->translations);
11 public $translations = []; global() variable in helper_plugin_translation
[all...]
H A Daction.php187 $translations = $this->helper->getAvailableTranslations($ID);
188 if ($translations) {
189 foreach ($translations as $lc => $translation) {
219 // look for existing translations
220 $translations = $this->helper->getAvailableTranslations($ID);
221 if ($translations) {
224 if (!$orig) $orig = array_key_first($translations);
227 $origfile = $translations[$orig];
235 // show user a choice of translations if any
236 if (count($translations) >
[all...]
H A Dadmin.php41 foreach ($helper->translations as $t) {
67 foreach ($helper->translations as $t) {
/plugin/translation/_test/
H A DBasicTest.php60 $conf['plugin']['translation']['translations'] = $translationsOption;
112 $conf['plugin']['translation']['translations'] = $translationsOption;
/plugin/translation/conf/
H A Ddefault.php9 $conf['translations'] = '';
H A Dmetadata.php9 $meta['translations'] = array('string','_pattern' => '/^(|[a-zA-Z\- ,]+)$/');