Lines Matching refs:translations
14 public $translations = []; variable in helper_plugin_translation
46 if (in_array($dfl, $this->translations)) {
50 array_unshift($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);
89 $rx = '/^' . $this->translationNs . '(' . implode('|', $this->translations) . '):(.*)/';
103 $langs = $this->translations;
124 if ($lng && in_array($lng, $this->translations)) {
210 foreach ($this->translations as $t) {
249 foreach ($this->translations as $t) {
332 $rx = '/^' . $this->translationNs . '((' . implode('|', $this->translations) . '):)?/';