Home
last modified time | relevance | path

Searched refs:input (Results 326 – 350 of 1436) sorted by last modified time

1...<<11121314151617181920>>...58

/plugin/tagfilter/script/select2/
H A Dselect2_locale_rs.js11 formatInputTooShort: function (input, min) { var n = min - input.length; return "Ukucajte bar još " + n + " simbol" + (n % 10 == 1 && n % 100 != 11 ? "" : "a"); }, argument
12 formatInputTooLong: function (input, max) { var n = input.length - max; return "Obrišite " + n + " simbol" + (n % 10 == 1 && n % 100 != 11 ? "" : "a"); }, argument
H A Dselect2_locale_ru.js11 formatInputTooShort: function (input, min) { return "Пожалуйста, введите еще" + character(min - input.length); }, argument
12 formatInputTooLong: function (input, max) { return "Пожалуйста, введите на" + character(input.length - max) + " меньше"; }, argument
H A Dselect2_locale_zh-CN.js8 formatInputTooShort: function (input, min) { var n = min - input.length; return "请再输入" + n + "个字符";}, argument
9 formatInputTooLong: function (input, max) { var n = input.length - max; return "请删掉" + n + "个字符";}, argument
H A Dselect2_locale_cs.js17 formatInputTooShort: function (input, min) { argument
18 var n = min - input.length;
27 formatInputTooLong: function (input, max) { argument
28 var n = input.length - max;
H A Dselect2_locale_da.js11 formatInputTooShort: function (input, min) { var n = min - input.length; return "Angiv venligst " + n + " tegn mere"; }, argument
12 formatInputTooLong: function (input, max) { var n = input.length - max; return "Angiv venligst " + n + " tegn mindre"; }, argument
H A Dselect2_locale_eu.js13 formatInputTooShort: function (input, min) { argument
14 var n = min - input.length;
21 formatInputTooLong: function (input, max) { argument
22 var n = input.length - max;
H A Dselect2_locale_fr.js9 formatInputTooShort: function (input, min) { var n = min - input.length; return "Merci de saisir " + n + " caractère" + (n == 1? "" : "s") + " de plus"; }, argument
10 formatInputTooLong: function (input, max) { var n = input.length - max; return "Merci de supprimer " + n + " caractère" + (n == 1? "" : "s"); }, argument
H A Dselect2_locale_he.js11 formatInputTooShort: function (input, min) { var n = min - input.length; return "נא להזין עוד " + n + " תווים נוספים"; }, argument
12 formatInputTooLong: function (input, max) { var n = input.length - max; return "נא להזין פחות " + n + " תווים"; }, argument
/plugin/html5video2/script/
H A Dvideo.min.js21 …spaceURI),r.push({prefix:g,namespace:y})),o||i&&!/^(?:meta|link|img|br|hr|input)$/i.test(u)){if(t.…
/plugin/discussion/
H A Dstyle.css34 div.dokuwiki #discussion__comment_form label input.edit {
89 div.dokuwiki div.comment_subscribe input {
101 div.dokuwiki input.comment_submit {
118 div.dokuwiki div.comment_buttons input.button {
132 div.dokuwiki div.toggle_button input.button {
148 div.dokuwiki #discussion__newthread_form input.edit {
/plugin/evesso/conf/
H A Dmetadata.php10 function update($input) { argument
22 $input = '<div>'.$value.'</div>';
23 return array($label, $input);
30 function update($input) { argument
42 $input = '<div>'.$value.'</div>';
43 return array($label, $input);
/plugin/sync/
H A Dstyle.css25 div.dokuwiki form.sync_profile input.edit,
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/Xml/Property/
H A DLastModifiedTest.php44 $input = <<<XML
50 $result = $this->parse($input, $elementMap);
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/Xml/
H A DXmlTest.php14 function write($input) { argument
21 $writer->write($input);
/plugin/davcal/vendor/sabre/vobject/lib/Recur/
H A DEventIterator.php87 * @param Component|array $input
92 public function __construct($input, $uid = null, DateTimeZone $timeZone = null) { argument
99 if (is_array($input)) {
100 $events = $input;
101 } elseif ($input instanceof VEvent) {
103 $events = array($input);
110 if (!isset($input->VEVENT)) {
113 $events = $input->getByUID($uid);
/plugin/davcal/fullcalendar-3.10.5/
H A Dfullcalendar.js451 function parseFieldSpecs(input) {
460 tokens = [input];
462 else if ($.isArray(input)) {
463 tokens = input;
637 function isNativeDate(input) {
638 return Object.prototype.toString.call(input) === '[object Date]' || input instanceof Date;
1376 var input = args[0];
1382 if (moment.isMoment(input) || util_1.isNativeDate(input) || input === undefined) {
1391 input += '-01';
12841 var input;
[all …]
/plugin/davcal/vendor/sabre/vobject/tests/VObject/Component/
H A DVAlarmTest.php154 $input = <<<BLA
172 $vobj = Reader::read($input);
H A DVCalendarTest.php43 $output = $input;
227 $input = <<<ICS
549 $input = <<<ICS
557 $input,
567 $input = <<<ICS
578 $input,
588 $input = <<<ICS
606 $input,
616 $input = <<<ICS
635 $input,
[all …]
H A DVCardTest.php12 function testValidate($input, $expectedWarnings, $expectedRepairedOutput) { argument
14 $vcard = VObject\Reader::read($input);
271 function assertValidateResult($input, $expectedLevel, $expectedMessage = null) { argument
274 foreach($input as $warning) {
279 …$this->assertEquals(0, count($input), 'No validation messages were expected. We got: ' . implode('…
281 …$this->assertEquals(1, count($input), 'We expected exactly 1 validation message, We got: ' . implo…
283 $this->assertEquals($expectedMessage, $input[0]['message']);
284 $this->assertEquals($expectedLevel, $input[0]['level']);
H A DVFreeBusyTest.php12 $input = <<<BLA
25 $obj = VObject\Reader::read($input);
43 $input = <<<HI
54 $obj = Reader::read($input);
H A DVTodoTest.php72 $input = <<<HI
83 $obj = Reader::read($input);
97 $input = <<<HI
106 $obj = Reader::read($input);
123 $input = <<<HI
136 $obj = Reader::read($input);
152 $input = <<<HI
165 $obj = Reader::read($input);
/plugin/davcal/vendor/sabre/vobject/tests/VObject/
H A DEmptyParameterTest.php9 $input = <<<VCF
19 $vcard = Reader::read($input);
H A DEmptyValueIssueTest.php14 $input = <<<ICS
23 $vobj = Reader::read($input);
H A DFreeBusyGeneratorTest.php336 function testGenerator($input, $expected, $timeZone = null) { argument
341 $input,
/plugin/davcal/vendor/sabre/http/tests/HTTP/
H A DFunctionsTest.php10 function testGetHeaderValues($input, $output) { argument
14 getHeaderValues($input)
49 function testPrefer($input, $output) { argument
53 parsePrefer($input)

1...<<11121314151617181920>>...58