<?php
function smarty_modifier_yes_no($value = 0)
{
if ($value === null)
return "íåèçâåñòíî";
if ($value)
return 'äà';
else
return 'íåò';
}
?>