Home
last modified time | relevance | path

Searched refs:lang (Results 776 – 800 of 808) sorted by relevance

1...<<313233

/dokuwiki/inc/
H A Dfetch.functions.php117 * @param string $lang language used.
119 * @return string in the format " name*=charset'lang'value" for values WITH special characters
121 function rfc2231_encode($name, $value, $charset = 'utf-8', $lang = 'en')
129 return ' ' . $name . '*=' . $charset . "'" . $lang . "'" . $internal;
114 rfc2231_encode($name, $value, $charset = 'utf-8', $lang = 'en') global() argument
H A Dhtml.php140 * @author Adrian Lang <lang@cosmocode.de>
178 global $lang;
181 . '<button class="button" onclick="window.scrollTo(0, 0)" title="' . $lang['btn_top'] . '">'
182 . $lang['btn_top']
205 global $lang;
208 $label = $lang['btn_' . $name];
719 global $lang;
771 echo $lang['encoding'];
834 global $lang;
838 $out .= $lang['to
[all...]
H A DDraft.php145 global $lang;
146 return $lang['draftdate'] . ' ' . dformat(filemtime($this->cname));
H A DAjax.php47 global $lang;
62 echo '<strong>' . $lang['quickhits'] . '</strong>';
351 global $lang;
419 echo $lang['nothingfound'];
434 $name = $lang['upperns'];
H A DMailer.class.php658 global $lang;
680 $lang['email_signature_text']
695 $signature = $lang['email_signature_text'];
696 if (!empty($lang['email_signature_html'])) {
697 $signature = $lang['email_signature_html'];
717 global $lang;
778 $emsg = $lang['email_fail'] . $subject;
H A Dcommon.php220 global $lang;
245 msg($lang['nosecedit'], 0);
1457 global $lang;
1461 return sprintf($lang['years'], round($ago / (24 * 60 * 60 * 30 * 12)));
1464 return sprintf($lang['months'], round($ago / (24 * 60 * 60 * 30)));
1467 return sprintf($lang['weeks'], round($ago / (24 * 60 * 60 * 7)));
1470 return sprintf($lang['days'], round($ago / (24 * 60 * 60)));
1473 return sprintf($lang['hours'], round($ago / (60 * 60)));
1476 return sprintf($lang['minutes'], round($ago / (60)));
1478 return sprintf($lang['second
[all...]
H A Dinit.php232 $local = $conf['lang'];
330 global $lang, $config_cascade;
331 $lang = [];
334 require(DOKU_INC . 'inc/lang/en/lang.php');
335 foreach ($config_cascade['lang']['core'] as $config_file) {
336 if (file_exists($config_file . 'en/lang.php')) {
337 include($config_file . 'en/lang.php');
342 if (file_exists(DOKU_INC . "inc/lang/$langCode/lang
[all...]
H A DDifferenceEngine.php1147 global $lang;
1148 $l1 = $lang['line'].' '.$xbeg;
1149 $l2 = $lang['line'].' '.$ybeg;
1261 global $lang;
1266 $r = '<tr><td colspan="'.$this->colspan.'" '.HTMLDiff::css('diff-blockheader').'>@@ '.$lang['line']." -$xbeg +$ybeg @@";
1267 $r .= ' <span '.HTMLDiff::css('diff-deletedline').'><del>'.$lang['deleted'].'</del></span>';
1268 $r .= ' <span '.HTMLDiff::css('diff-addedline').'>'.$lang['created'].'</span>';
/dokuwiki/inc/Subscriptions/
H A DSubscriptionSender.php48 * @param string $subject The lang id of the mail subject (without the
59 * @author Adrian Lang <lang@cosmocode.de>
64 global $lang;
68 $subject = $lang['mail_' . $subject] . ' ' . $context;
/dokuwiki/inc/Action/
H A DExport.php43 global $lang;
61 $pre .= '<html lang="' . $conf['lang'] . '" dir="' . $lang['direction'] . '">' . DOKU_LF;
/dokuwiki/inc/Ui/
H A DMediaRevisions.php52 global $lang;
108 $form->addButton('do[diff]', $lang['diff2'])->attr('type', 'submit');
H A DPageRevisions.php50 global $lang, $REV;
107 $form->addButton('do[diff]', $lang['diff2'])->attr('type', 'submit');
H A DMediaDiff.php236 global $lang;
306 echo '<dt>' . $lang[$tag['tag'][1]] . '</dt>';
/dokuwiki/inc/ChangeLog/
H A DChangeLog.php602 global $lang;
636 'sum' => $lang['deleted'] . ' - ' . $lang['external_edit'] . ' (' . $lang['unknowndate'] . ')',
654 $sum = $lang['created'] . ' - ' . $lang['external_edit'];
657 $sum = $lang['external_edit'];
665 $sum = $lang['external_edit'] . ' (' . $lang['unknowndate'] . ')';
/dokuwiki/lib/plugins/acl/
H A Dadmin.php235 global $lang;
254 'label' => '[' . $lang['mediaroot'] . ']'
411 global $lang;
423 echo '<button type="submit" name="cmd[save]">' . $lang['btn_save'] . '</button>';
425 echo '<button type="submit" name="cmd[save]">' . $lang['btn_update'] . '</button>';
426 echo '<button type="submit" name="cmd[del]">' . $lang['btn_delete'] . '</button>';
433 * Explain the currently set permissions in plain english/$lang
637 global $lang;
656 echo '<th>' . $lang['btn_delete'] . '</th>';
692 echo '<button type="submit" name="cmd[update]">' . $lang['btn_updat
[all...]
/dokuwiki/
H A Ddoku.php69 msg(sprintf($lang['unable_to_parse_date'], hsc($DATE_AT)));
88 $lang['page_nonexist_rev'],
H A Dfeed.php
/dokuwiki/inc/Menu/Item/
H A DAbstractItem.php45 /** @var string can be set to overwrite the default lookup in $lang.btn_* */
84 /** @var array $lang */
85 global $lang;
86 $label = $lang['btn_' . $this->type];
/dokuwiki/inc/parser/
H A Drenderer.php467 * @param string $lang programming language to use for syntax highlighting
470 public function file($text, $lang = null, $file = null)
478 * @param string $lang programming language to use for syntax highlighting
481 public function code($text, $lang = null, $file = null)
421 file($text, $lang = null, $file = null) global() argument
431 code($text, $lang = null, $file = null) global() argument
H A Dxhtml.php66 * @author Adrian Lang <lang@cosmocode.de>
97 * @author Adrian Lang <lang@cosmocode.de>
657 global $lang;
678 ) . '" title="' . $lang['download'] . '" class="' . $class . '">';
781 global $lang;
782 $this->doc .= $lang['singlequoteopening'];
790 global $lang;
791 $this->doc .= $lang['singlequoteclosing'];
799 global $lang;
800 $this->doc .= $lang['apostroph
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/
H A DEnclosure.php154 public $lang; variable in SimplePie\\Enclosure
230 public function __construct($link = null, $type = null, $length = null, $javascript = null, $bitrate = null, $captions = null, $categories = null, $channels = null, $copyright = null, $credits = null, $description = null, $duration = null, $expression = null, $framerate = null, $hashes = null, $height = null, $keywords = null, $lang = null, $medium = null, $player = null, $ratings = null, $restrictions = null, $samplingrate = null, $thumbnails = null, $title = null, $width = null) argument
245 $this->lang = $lang;
550 if ($this->lang !== null) {
551 return $this->lang;
H A DItem.php966 if (isset($caption['attribs']['']['lang'])) {
967 $caption_lang = $this->sanitize($caption['attribs']['']['lang'], \SimplePie\SimplePie::CONSTRUCT_TEXT);
990 if (isset($caption['attribs']['']['lang'])) {
991 $caption_lang = $this->sanitize($caption['attribs']['']['lang'], \SimplePie\SimplePie::CONSTRUCT_TEXT);
1397 $lang = null;
1433 $lang = null;
1476 if (isset($content['attribs']['']['lang'])) {
1477 $lang = $this->sanitize($content['attribs']['']['lang'], \SimplePie\SimplePie::CONSTRUCT_TEXT);
1509 if (isset($caption['attribs']['']['lang'])) {
[all...]
/dokuwiki/lib/plugins/extension/helper/
H A Dgui.php153 global $lang;
172 $form->addCheckbox('overwrite', $lang['js']['media_overwrt'])
/dokuwiki/lib/plugins/info/
H A Dsyntax.php130 global $lang;
152 $renderer->cdata(' ' . $lang['by'] . ' ');
/dokuwiki/inc/File/
H A DPageFile.php88 global $lang;
166 $data['summary'] = $lang['deleted'];

1...<<313233