Добавил еще ведущие нули к миллисекундам, если кому-то еще когда-то этот код понадобится
log = function (text, color, define){ var id, time, thread, logHtml, textLog; define = (typeof define == 'string') ? define.split(/[\s,.|:;]+/g) : define; if(typeof define === 'object' && define !== null){ if(Array.isArray(define)){ id = define.indexOf('id') > -1; time = define.indexOf('time') > -1; thread = define.indexOf('thread') > -1; } else{ id = define.id == true; time = define.time == true; thread = define.thread == true; } } else id = time = thread = true; id = id ? '<a href="action://action' + ScriptWorker.GetCurrentAction() + '" style="color:gray;">[' + ScriptWorker.GetCurrentAction() + ']</a>' : ''; time = time ? ' ' + getTime() : ''; thread = thread ? ' Поток №' + thread_number() : ''; logHtml = (id || time || thread) ? id + '<span style="color: white">' + time + thread + ' : </span>' : ''; logHtml += '<span style="color:' + (color ? color : 'white') + '">' + text + '</span>'; textLog = '[' + ScriptWorker.GetCurrentAction() + ']' + time + thread + ' : ' + text function getTime(){ var checkTime = function(i){ return (i < 10) ? "0" + i : i; }; var checkMilliSeconds = function(ms){ if (ms < 10) { return "00" + ms; } else if (ms < 100) { return "0" + ms; } else { return ms; } }; var d = new Date(); var hh = checkTime(d.getHours()); var mm = checkTime(d.getMinutes()); var ss = checkTime(d.getSeconds()); var ms = checkMilliSeconds(d.getMilliseconds()); return '[' + hh + ':' + mm + ':' + ss + '.' + ms + ']'; }; Logger.WriteHtml(logHtml, textLog); }Как реализовать динамичное значение ресурса "Список" в зависимости от языка в веб-интерфейсе?
-
Всем здравствуйте. Появилась такая проблема. Скрипт на 40% состоит из ресурсов типа "Список", значения которых на русском языке. Как сделать так, что если язык интерфейса английский, то и значения списка были на английском? В веб-интерфейсе.
Пример:
<div uk-alert="" data-resource-name="WORKING_MODE" data-resource-type="Select" data-is-visibility-factor="true" data-default-value="Регистрация аккаунтов" data-select-type="0" id="i3h0k"> <div id="imw0s" class="resource-label">Режим работы</div> <select id="io3ly" class="uk-select"> <option value="Регистрация аккаунтов" selected="selected" class="ui-internal">Регистрация аккаунтов</option> <option value="Чекер аккаунтов" class="ui-internal">Чекер аккаунтов</option> </select> </div>Заранее большое спасибо :)
-
Ап
-
@itsdebrincat said in Как реализовать динамичное значение ресурса "Список" в зависимости от языка в веб-интерфейсе?:
Ап
Я же вам вроде дал ответ в соседней теме
https://community.bablosoft.com/topic/19840/добавьте-en-ru-язык-к-созданию-ресурса-список-значения/5