From OpenSCADAWiki
Enter a message name below to show all available translations.
Found 3 translations.
Name | Current message text |
---|---|
h English (en) | === {{Anch|tmDate|Time: Date and time (tmDate)}} === ''Description:'' Full date and time in seconds, minutes, hours, etc., based on the absolute time in seconds from the epoch of 1.1.1970.<br/> ''Parameters:'' {| class="wikitable" |- ! Identifier !! Parameter !! Type !! Mode !! By defaults |- | fullsec || Full seconds || Integer || Input || 0 |- | sec || Seconds [0...59] || Integer || Output || 0 |- | min || Minutes [0...59] || Integer || Output || 0 |- | hour || Hours [0...23] || Integer || Output || 0 |- | mday || Day of the month [1...31] || Integer || Output || 0 |- | month || Month [0...11] || Integer || Output || 0 |- | year || Year, from 1900 || Integer || Output || 0 |- | wday || Day of the week [0...6] || Integer || Output || 0 |- | yday || Day of the year [0...365] || Integer || Output || 0 |- | isdst || Daylight saving time || Integer || Output || 0 |} ''Example:'' <syntaxhighlight lang="JS"> using Special.FLibSYS; curMin=curHour=curDay=curMonth=curYear=0; tmDate(tmTime(),0,curMin,curHour,curDay,curMonth,curYear); messPut("test",0,"Current minute: "+curMin); messPut("test",0,"Current hour: "+curHour); messPut("test",0,"Current day: "+curDay); messPut("test",0,"Current month: "+curMonth); messPut("test",0,"Current Year: "+curYear); </syntaxhighlight> |
h Russian (ru) | === {{Anch|tmDate|Time: Дата и время (tmDate)}} === ''Описание:'' Полная дата и время в секундах, минутах, часах и т.д., исходя из абсолютного времени в секундах от эпохи 1.1.1970.<br/> ''Параметры:'' {| class="wikitable" |- ! Идентификатор !! Параметр !! Тип !! Режим !! По умолчанию |- | fullsec || Полные секунды || Целый || Вход || 0 |- | sec || Секунды [0...59] || Целый || Выход || 0 |- | min || Минуты [0...59] || Целый || Выход || 0 |- | hour || Часы [0...23] || Целый || Выход || 0 |- | mday || День месяца [1...31] || Целый || Выход || 0 |- | month || Месяц [0...11] || Целый || Выход || 0 |- | year || Год, от 1900 || Целый || Выход || 0 |- | wday || День недели [0...6] || Целый || Выход || 0 |- | yday || День в году [0...365] || Целый || Выход || 0 |- | isdst || Летнее время || Целый || Выход || 0 |} ''Пример:'' <syntaxhighlight lang="JS"> using Special.FLibSYS; curMin=curHour=curDay=curMonth=curYear=0; tmDate(tmTime(),0,curMin,curHour,curDay,curMonth,curYear); messPut("test",0,"Текущая минута: "+curMin); messPut("test",0,"Текущий час : "+curHour); messPut("test",0,"Текущий день: "+curDay); messPut("test",0,"Текущий месяц: "+curMonth); messPut("test",0,"Текущий год: "+curYear); </syntaxhighlight> |
h Ukrainian (uk) | === {{Anch|tmDate|Time: Дата та час (tmDate)}} === ''Опис:'' Повна дата та час у секундах, хвилинах, годинах та інше, виходячи з абсолютного часу в секундах від епохи 1.1.1970.<br/> ''Параметри:'' {| class="wikitable" |- ! Ідентифікатор !! Параметр !! Тип !! Режим !! По замовченню |- | fullsec || Повні секунди || Цілий || Вхід || 0 |- | sec || Секунди [0...59] || Цілий || Вихід || 0 |- | min || Хвилини [0...59] || Цілий || Вихід || 0 |- | hour || Години [0...23] || Цілий || Вихід || 0 |- | mday || День місяця [1...31] || Цілий || Вихід || 0 |- | month || Місяць [0...11] || Цілий || Вихід || 0 |- | year || Рік, від 1900 || Цілий || Вихід || 0 |- | wday || День тижня [0...6] || Цілий || Вихід || 0 |- | yday || День у року [0...365] || Цілий || Вихід || 0 |- | isdst || Літній час || Цілий || Вихід || 0 |} ''Приклад:'' <syntaxhighlight lang="JS"> using Special.FLibSYS; curMin=curHour=curDay=curMonth=curYear=0; tmDate(tmTime(),0,curMin,curHour,curDay,curMonth,curYear); messPut("test",0,"Поточна хвилина: "+curMin); messPut("test",0,"Поточна година: "+curHour); messPut("test",0,"Поточний день: "+curDay); messPut("test",0,"Поточний місяць: "+curMonth); messPut("test",0,"Поточний рік: "+curYear); </syntaxhighlight> |