Home
last modified time | relevance | path

Searched +full:lang -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang) (Results 1 – 25 of 155) sorted by relevance

1234567

/dokuwiki/data/
H A Ddeleted.files130 inc/lang/.htaccess
131 inc/lang/az/wordblock.txt
132 inc/lang/gl/wordblock.txt
133 inc/lang/ru/wordblock.txt
140 lib/plugins/authmysql/lang/bg/lang.php
141 lib/plugins/authmysql/lang/bg/settings.php
142 lib/plugins/authmysql/lang/cs/lang.php
143 lib/plugins/authmysql/lang/cs/settings.php
144 lib/plugins/authmysql/lang/cy/lang.php
145 lib/plugins/authmysql/lang/cy/settings.php
[all …]
/dokuwiki/lib/exe/
H A Djs.php40 global $lang;
51 DOKU_INC . 'inc/lang/' . $conf['lang'] . '/jquery.ui.datepicker.js',
118 $lang['js']['plugins'] = js_pluginstrings();
121 $lang['js']['template'] = $templatestrings;
123 echo 'LANG = ' . json_encode($lang['js'], JSON_THROW_ON_ERROR) . ";\n";
231 * - $lang['js'] must be an array.
232 * - Nothing is returned for plugins without an entry for $lang['js']
244 $path = DOKU_PLUGIN . $p . '/lang/';
246 if (isset($lang)) unset($lang);
247 if (file_exists($path . "en/lang.php")) {
[all …]
/dokuwiki/
H A Dinstall.php31 require_once(DOKU_INC . 'inc/lang/en/lang.php');
37 require_once(DOKU_INC . 'inc/lang/' . $LC . '/lang.php');
47 <html lang="<?php echo $LC ?>" dir="<?php echo $lang['direction'] ?>">
50 <title><?php echo $lang['i_installer'] ?></title>
112 <?php echo $lang['i_installer'] ?>
121 if (file_exists(DOKU_INC . 'inc/lang/' . $LC . '/install.html')) {
122 include(DOKU_INC . 'inc/lang/' . $LC . '/install.html');
124 echo "<div lang=\"en\" dir=\"ltr\">\n";
125 include(DOKU_INC . 'inc/lang/en/install.html');
142 echo '<p>' . $lang['i_problems'] . '</p>';
[all …]
/dokuwiki/inc/
H A Dtoolbar.php21 global $lang;
31 'title' => $lang['qb_bold'],
40 'title' => $lang['qb_italic'],
49 'title' => $lang['qb_underl'],
58 'title' => $lang['qb_code'],
67 'title' => $lang['qb_strike'],
76 'title' => $lang['qb_hequal'],
79 'text' => $lang['qb_h'],
85 'title' => $lang['qb_hminus'],
88 'text' => $lang['qb_h'],
[all …]
/dokuwiki/inc/Ui/
H A DSubscribe.php18 * @author Adrian Lang <lang@cosmocode.de>
26 global $lang;
34 echo '<h2>' . $lang['subscr_m_current_header'] . '</h2>';
37 echo '<p>' . $lang['subscr_m_not_subscribed'] . '</p>';
47 $sstl = sprintf($lang['subscr_style_' . $sub['style']], $stime_days);
61 '" class="unsubscribe">' . $lang['subscr_m_unsubscribe'] .
69 echo '<h2>' . $lang['subscr_m_new_header'] . '</h2>';
77 'every' => $lang['subscr_style_every'],
78 'digest' => sprintf($lang['subscr_style_digest'], $stime_days),
79 'list' => sprintf($lang['subscr_style_list'], $stime_days),
[all …]
H A DUserProfile.php57 global $lang;
63 $input = $form->addPasswordInput('oldpass', $lang['oldpass'])->attrs($attr)
76 global $lang;
82 $form->addFieldsetOpen($lang['profile']);
87 $input = $form->addTextInput('login', $lang['user'])
96 $input = $form->addTextInput('fullname', $lang['fullname'])
105 $input = $form->addTextInput('email', $lang['email'])
114 … $input = $form->addPasswordInput('newpass', $lang['newpass'])->attrs($attr)->addClass('edit');
118 … $input = $form->addPasswordInput('passchk', $lang['passchk'])->attrs($attr)->addClass('edit');
125 $form->addButton('', $lang['btn_save'])->attr('type', 'submit');
[all …]
H A DUserResendPwd.php52 global $lang;
57 $form->addFieldsetOpen($lang['btn_resendpwd']);
61 … $input = $form->addPasswordInput('pass', $lang['pass'])->attr('size', '50')->addClass('edit');
64 …$input = $form->addPasswordInput('passchk', $lang['passchk'])->attr('size', '50')->addClass('edit'…
67 $form->addButton('', $lang['btn_resendpwd'])->attr('type', 'submit');
80 global $lang;
85 $form->addFieldsetOpen($lang['btn_resendpwd']);
90 $input = $form->addTextInput('login', $lang['user'])->addClass('edit');
94 $form->addButton('', $lang['btn_resendpwd'])->attr('type', 'submit');
H A DUserRegister.php23 global $lang;
37 $form->addFieldsetOpen($lang['btn_register']);
41 $input = $form->addTextInput('login', $lang['user'])->attrs($base_attrs)->addClass('edit')
47 … $input = $form->addPasswordInput('pass', $lang['pass'])->attrs($base_attrs)->addClass('edit');
50 …$input = $form->addPasswordInput('passchk', $lang['passchk'])->attrs($base_attrs)->addClass('edit'…
55 … $input = $form->addTextInput('fullname', $lang['fullname'])->attrs($base_attrs)->addClass('edit')
60 $input = $form->addTextInput('email', $lang['email'])->attrs($email_attrs)->addClass('edit')
65 $form->addButton('', $lang['btn_register'])->attr('type', 'submit');
H A DLogin.php37 global $lang;
49 $form->addFieldsetOpen($lang['btn_login']);
53 $input = $form->addTextInput('u', $lang['user'])->id('focus__this')->addClass('edit')
59 $input = $form->addPasswordInput('p', $lang['pass'])->addClass('block edit');
65 $form->addCheckbox('r', $lang['remember'])->id('remember__me')->val('1');
67 $form->addButton('', $lang['btn_login'])->attr('type', 'submit');
73 $form->addHTML('<p>' . $lang['reghere'] . ': ' . $registerLink . '</p>');
78 $form->addHTML('<p>' . $lang['pwdforget'] . ': ' . $resendPwLink . '</p>');
H A DRecent.php45 global $conf, $lang;
58 . sprintf($lang['recent_global'], getNS($ID), wl('', 'do=recent'))
183 global $conf, $lang;
191 . ' title="' . $lang['btn_newer'] . ' [N]" class="button show">'
192 . $lang['btn_newer']
199 . ' title="' . $lang['btn_older'] . ' [P]" class="button show">'
200 . $lang['btn_older']
216 global $lang;
220 'pages' => $lang['pages_changes'],
221 'mediafiles' => $lang['media_changes'],
[all …]
H A DSearch.php67 global $lang, $ID, $INPUT;
84 $searchForm->addButton('', $lang['btn_search'])->attr('type', 'submit');
100 global $INPUT, $lang;
104 'label' => $lang['search_sort_by_hits'],
108 'label' => $lang['search_sort_by_mtime'],
213 global $lang;
217 'label' => $lang['search_exact_match'],
222 'label' => $lang['search_starts_with'],
227 'label' => $lang['search_ends_with'],
232 'label' => $lang['search_contains'],
[all …]
/dokuwiki/_test/tests/inc/
H A Dsort_with_collator.test.php133 foreach ($pairs as $lang => $list) {
135 yield [$lang, $pair[0], $pair[1]];
206 foreach ($lists as $lang => $list) {
207 yield [$lang, $list];
214 * @param string $lang
218 public function testStrcmp($lang, $word1, $word2) argument
221 $conf['lang'] = $lang;
229 * @param string $lang
232 public function testSort($lang, $list) argument
235 $conf['lang'] = $lang;
[all …]
/dokuwiki/inc/Extension/
H A DPluginTrait.php13 …protected $lang = []; // array to hold language dependent strings, best accessed via ->g… variable
117 return ($this->lang[$id] ?? '');
135 $file = DOKU_CONF . 'plugin_lang/' . $plugin . '/' . $conf['lang'] . '/' . $id . '.' . $ext;
137 $file = DOKU_PLUGIN . $plugin . '/lang/' . $conf['lang'] . '/' . $id . '.' . $ext;
140 $file = DOKU_PLUGIN . $plugin . '/lang/en/' . $id . '.' . $ext;
153 global $conf, $config_cascade; // definitely don't invoke "global $lang"
154 $path = DOKU_PLUGIN . $this->getPluginName() . '/lang/';
156 $lang = [];
159 @include($path . 'en/lang.php');
160 foreach ($config_cascade['lang']['plugin'] as $config_file) {
[all …]
/dokuwiki/inc/Action/
H A DResendpwd.php69 global $lang;
76 msg($lang['resendna'], -1);
87 msg($lang['resendpwdbadauth'], -1);
93 msg($lang['resendpwdbadauth'], -1);
102 msg($lang['resendpwdnouser'], -1);
112 msg($lang['regbadpass'], -1);
118 msg($lang['proffail'], -1);
124 msg($lang['proffail'], -1);
129 msg($lang['resendpwdsuccess'], 1);
131 msg($lang['regmailfail'], -1);
[all …]
H A DSubscribe.php57 * @author Adrian Lang <lang@cosmocode.de>
63 global $lang;
96 $lang["subscr_{$action}_success"],
107 $lang["subscr_{$action}_error"],
120 * @author Adrian Lang <lang@cosmocode.de>
128 global $lang;
157 throw new Exception($lang['subscr_subscribe_noaddress']);
169 $lang['subscr_not_subscribed'],
H A DRevert.php36 global $lang;
41 $sum = $lang['deleted'];
45 $sum = sprintf($lang['restored'], dformat($REV));
50 msg($lang['wordblock'], -1);
/dokuwiki/lib/plugins/usermanager/
H A Dadmin.php51 $this->disabled = $this->lang['noauth'];
53 $this->disabled = $this->lang['nosupport'];
201 echo $this->lang['badauth'];
211 … $export_label = empty($this->filter) ? $this->lang['export_all'] : $this->lang['export_filtered'];
221 '<p>' . $this->lang['summary'] . '</p>',
233 printf('<p>%s</p>', sprintf($this->lang['nonefound'], $allUserTotal));
242 echo '<th>' . $this->lang["user_id"] . '</th>';
243 echo '<th>' . $this->lang["user_name"] . '</th>';
244 echo '<th>' . $this->lang["user_mail"] . '</th>';
245 echo '<th>' . $this->lang["user_groups"] . '</th>';
[all …]
/dokuwiki/lib/plugins/config/core/Setting/
H A DSettingDisableactions.php13 global $lang;
17 $plugin->addLang($this->key . '_revisions', $lang['btn_revs']);
19 …if (isset($lang['btn_' . $choice])) $plugin->addLang($this->key . '_' . $choice, $lang['btn_' . $c…
/dokuwiki/lib/plugins/config/_test/
H A DLoaderTest.php65 $lang = $loader->loadLangs();
66 $this->assertTrue(is_array($lang));
69 $this->assertArrayNotHasKey('title', $lang);
72 $this->assertArrayHasKey('plugin____testing____plugin_settings_name', $lang);
73 $this->assertEquals('Testing', $lang['plugin____testing____plugin_settings_name']);
74 $this->assertArrayHasKey('plugin____testing____schnibble', $lang);
77 $lang['plugin____testing____schnibble']
/dokuwiki/lib/tpl/dokuwiki/
H A Dmediamanager.php14 <html lang="<?php echo $conf['lang']?>" dir="<?php echo $lang['direction'] ?>" class="popup no-js">
18 <?php echo hsc($lang['mediaselect'])?>
31 <h1><?php echo hsc($lang['mediaselect'])?></h1>
/dokuwiki/lib/plugins/config/core/
H A DLoader.php128 $lang = [];
132 $lang = array_merge(
133 $lang,
143 $lang = array_merge(
144 $lang,
152 return $lang;
262 $ll = $conf['lang'];
266 $lang = [];
267 if (file_exists($dir . 'lang/en/settings.php')) {
268 include $dir . 'lang/en/settings.php';
[all …]
/dokuwiki/_test/tests/general/
H A Dgeneral_languagelint.test.php7 $this->checkFiles(glob(DOKU_INC.'inc/lang/*/*.php'));
11 $this->checkFiles(glob(DOKU_INC.'lib/plugins/*/lang/*/*.php'));
24 $this->assertTrue(is_array($lang), $file);
25 unset($lang);
/dokuwiki/lib/scripts/jquery/
H A Dupdate.sh31 for LNG in ../../../inc/lang/*
41 wget -nv "$JQUI_GIT/i18n/datepicker-de.js" -O ../../../inc/lang/de-informal/jquery.ui.datepicker.js
42 wget -nv "$JQUI_GIT/i18n/datepicker-pt-BR.js" -O ../../../inc/lang/pt-br/jquery.ui.datepicker.js
43 wget -nv "$JQUI_GIT/i18n/datepicker-zh-CN.js" -O ../../../inc/lang/zh/jquery.ui.datepicker.js
44 wget -nv "$JQUI_GIT/i18n/datepicker-zh-TW.js" -O ../../../inc/lang/zh-tw/jquery.ui.datepicker.js
45 wget -nv "$JQUI_GIT/i18n/datepicker-cy-GB.js" -O ../../../inc/lang/cy/jquery.ui.datepicker.js
/dokuwiki/inc/Ui/Media/
H A DDisplayRow.php15 global $lang;
32 … 'alt="' . $lang['mediaview'] . '" title="' . $lang['mediaview'] . '" class="btn" /></a>';
37 … 'alt="' . $lang['btn_media'] . '" title="' . $lang['btn_media'] . '" class="btn" /></a>';
44 … '<img src="' . DOKU_BASE . 'lib/images/trash.png" alt="' . $lang['btn_delete'] . '" ' .
45 'title="' . $lang['btn_delete'] . '" class="btn" /></a>';
49 echo $lang['mediausage'] . ' <code>{{:' . $id . '}}</code>';
/dokuwiki/vendor/simplepie/simplepie/src/
H A DCaption.php33 public $lang; variable in SimplePie\\Caption
67 ?string $lang = null, argument
73 $this->lang = $lang;
112 if ($this->lang !== null) {
113 return $this->lang;

1234567