Все переводы

Введите имя сообщения для показа всех доступных переводов.

Сообщение

Найдено 2 перевода.

СообщениеТекущий текст
 ист. английский (en)defineRule("roller_shutter_down_on" + suffix, {
   asSoonAs: function() {
     return dev[relay_down_device][relay_down_control];
   },
   then: function () {
     if (relay_down_timer_id) {
       relay_down_timer_id = clearTimeout(relay_down_timer_id); 
     };
      
     relay_down_timer_id = setTimeout(function() {
       dev["relay_down_device/relay_down_control"] = 0;
     }, timeout_s * 1000);
   }
  });
 ист. русский (ru)defineRule("roller_shutter_down_on" + suffix, {
   asSoonAs: function() {
     return dev["relay_down_device/relay_down_control"];
   },
   then: function () {
     if (relay_down_timer_id) {
       relay_down_timer_id = clearTimeout(relay_down_timer_id); 
     };
      
     relay_down_timer_id = setTimeout(function() {
       dev["relay_down_device/relay_down_control"] = 0;
     }, timeout_s * 1000);
   }
  });