Home
last modified time | relevance | path

Searched refs:trans (Results 1 – 25 of 73) sorted by relevance

123

/plugin/issuelinks/classes/
H A DIssueLinksException.php27 $trans = $plugin->getLang($this->trans_prefix . $message);
28 if (!$trans) {
29 $trans = $message;
35 $trans = vsprintf($trans, $args);
37 parent::__construct($trans);
/plugin/struct/meta/
H A DStructException.php26 $trans = $plugin->getLang($this->trans_prefix . $message);
27 if (!$trans) $trans = $message;
32 $trans = vsprintf($trans, $args);
33 $trans .= $this->getVersionPostfix();
35 parent::__construct($trans, -1, null);
H A DValueValidator.php39 $trans = $type->getTranslatedLabel();
56 return $this->validateField($type, $trans, $rawvalue);
/plugin/translation3/
H A Dhelper.php13 var $trans = array(); variable in helper_plugin_translation
27 $this->trans = array_unique(array_filter(explode(' ',$this->trans)));
28 sort($this->trans);
36 if(in_array($dfl,$this->trans)){
40 array_unshift($this->trans,'');
52 $rx = '/^'.$this->tns.'('.join('|',$this->trans).'):/';
120 $rx = '/^'.$this->tns.'(('.join('|',$this->trans).'):)?/';
141 foreach($this->trans as $t){
187 $rx = '/^'.$this->tns.'(('.join('|',$this->trans).'):)?/';
218 foreach($this->trans as $t){
[all …]
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/States/
H A DATNState.php108 public function addTransition(Transition $trans, int $index = -1) : void argument
111 $this->epsilonOnlyTransitions = $trans->isEpsilon();
112 } elseif ($this->epsilonOnlyTransitions !== $trans->isEpsilon()) {
117 $this->transitions[] = $trans;
119 \array_splice($this->transitions, $index, 1, [$trans]);
128 public function setTransition(Transition $trans, int $index) : void argument
130 $this->transitions[$index] = $trans;
/plugin/findologicxmlexport/vendor/twig/extensions/doc/
H A Di18n.rst8 ``trans``.
43 {% trans "Hello World!" %}
45 {% trans string_var %}
47 {% trans %}
55 {% trans %}
72 {% trans %}
80 {% trans %}
94 {% trans %}
110 {{ var|default(default_value|trans) }}
115 Translations can be done with both the ``trans`` tag and the ``trans`` filter.
[all …]
/plugin/multilingual/
H A Dhelper.php15 var $trans = array(); // List of enabled translations variable in helper_plugin_multilingual
25 $this->trans = strtolower(str_replace(',',' ',$this->getConf('enabled_langs')));
26 $this->trans = array_unique(array_filter(explode(' ',$this->trans)));
27 sort($this->trans);
/plugin/html2pdf/multilingual/
H A Dhelper.php15 var $trans = array(); // List of enabled translations variable in helper_plugin_multilingual
25 $this->trans = strtolower(str_replace(',',' ',$this->getConf('enabled_langs')));
26 $this->trans = array_unique(array_filter(explode(' ',$this->trans)));
27 sort($this->trans);
H A Dsyntax.php91 $rx = '/^'.$this->hlp->tns.'(('.join('|',$this->hlp->trans).'):)?/';
109 foreach($this->hlp->trans as $t){
/plugin/oauth/
H A Dhelper.php119 $trans = $this->getLang($msg);
120 if ($trans) {
123 $trans = sprintf($trans, ...$context);
125 $msg = $trans;
/plugin/bureaucracy-au/helper/
H A Daction.php56 $trans = plugin_load('helper', 'translation');
57 if (!$trans) return;
59 $this->values['__trans__'] = $trans->getLangPart($ID);
60 $this->values['__lang__'] = $trans->realLC('');
/plugin/bureaucracyau/helper/
H A Daction.php56 $trans = plugin_load('helper', 'translation');
57 if (!$trans) return;
59 $this->values['__trans__'] = $trans->getLangPart($ID);
60 $this->values['__lang__'] = $trans->realLC('');
/plugin/bureaucracy/helper/
H A Daction.php56 $trans = plugin_load('helper', 'translation');
57 if (!$trans) return;
59 $this->values['__trans__'] = $trans->getLangPart($ID);
60 $this->values['__lang__'] = $trans->realLC('');
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Error/Exceptions/
H A DFailedPredicateException.php44 $trans = $s->getTransition(0);
46 if ($trans instanceof PredicateTransition) {
47 $this->ruleIndex = $trans->ruleIndex;
48 $this->predicateIndex = $trans->predIndex;
/plugin/siteexport/
H A Dhelper.php152 $trans = array();
167 $trans = $translation->translations;
247 if (!is_array($trans)) {
248 $trans = array($trans);
251 $trans = array_unique(array_merge($trans, array($conf['lang'])));
252 …$form->addElement(form_makeListboxField('defaultLang', $trans, $conf['lang'], $this->getLang('defa…
/plugin/textinsert/
H A Dsyntax.php68 list($prefix,$trans) = explode('_',$match,2);
120 if($translation && isset($this->translations[$trans])){
121 $match = $this->translations[$trans];
184 list($prefix,$trans) = explode('_',$keys[$i],2);
185 $_insert = $this->translations[$trans];
/plugin/elasticsearch/helper/
H A Ddocparser.php189 /** @var helper_plugin_translation $trans */
190 $trans = plugin_load('helper', 'translation');
191 if ($trans === null) return $conf['lang'];
195 $langs = array_keys($ld->detect($body)->whitelist(...$trans->translations)->close());
/plugin/data-au/
H A Dhelper.php60 $trans = plugin_load('helper', 'translation');
61 if($trans) {
62 $value = $trans->getLangPart(getID());
536 $patterns[] = '%trans%';
/plugin/data/
H A Dhelper.php63 /** @var helper_plugin_translation $trans */
64 $trans = plugin_load('helper', 'translation');
65 if ($trans) {
66 $value = $trans->getLangPart(getID());
572 $patterns[] = '%trans%';
573 /** @var helper_plugin_translation $trans */
574 $trans = plugin_load('helper', 'translation');
575 if ($trans) {
576 $local = $trans->getLangPart($ID);
H A Dbureaucracy_field.php166 $trans = '';
171 $trans = $translationPlugin->getLangPart($ID);
176 return str_replace('@TRANS@', $trans, $string);
/plugin/data-au/helper/
H A Daliastextbox.php155 $trans = '';
160 $trans = $translationPlugin->getLangPart($ID);
165 return str_replace('@TRANS@', $trans, $string);
/plugin/data/helper/
H A Daliastextbox.php161 $trans = '';
166 $trans = $translationPlugin->getLangPart($ID);
171 return str_replace('@TRANS@', $trans, $string);
/plugin/feedback/
H A Daction.php225 $trans = plugin_load('helper', 'translation', defined('DOKU_UNITTEST'));
226 if ($trans) {
227 list(, $id) = $trans->getTransParts($id);
/plugin/abc2/abc-libraries/abc2svg/
H A Dchord-1.js8 abc2svg.chord=function(first,voice_tb,cfmt){var chnm,i,k,vch,s,gchon,C=abc2svg.C,trans=48+(cfmt.chord.trans?cfmt.chord.trans*12:0)
40 r+=trans
/plugin/abc/
H A Dsyntax.php54 $trans = "0 ".$data[1]; // "0" includes the original key
72 $transSrc = $this->_getTransSrc($trans);
218 function _getTransSrc($trans) { argument
219 $transSrc = explode(" ", $trans);
262 function _transpose($abcFile, $srcFile, $trans) { argument
263 passthru(fullpath($this->getConf('abc2abc'))." $srcFile -e -t $trans > $abcFile");

123