Всем привет,
Не могу понять как своими руками русифицировать компонент - com_jxtcappbook, думал найти в каком-нибудь из файлов по средствам поиска например слово Book и его уже заменить на русское - Запись, но поиск ничего не находит. Почему?
Просматриваю код запушенной страницы(приведен ниже), вижу надписи в частности - title="Enter your full name to register an appointment.", но поиск в папке компонента не находит данные словосочетания или слова.
Как можно русифицировать?
<div class="joomla">
<div class="itemHeader">
<h2 class="itemTitle">Запись</h2>
</div>
<div id="appBook">
<form action="index.php" method="post" name="adminForm">
<div id="appointmentForm">
<div id="pickerArea">
<div id="ajaxCalendar"></div>
<div id="calendarLegend">
<table align="center" width="100%">
<tr>
<td align="center" valign="middle"><div class="demoBox"><div class="selected demo"></div></div></td>
<td class="demoText"> = Selected day</td>
<td> </td>
<td align="center" valign="middle"><div class="demoBox"><div class="free demo"></div></div></td>
<td class="demoText"> = Available day</td>
</tr>
<tr>
<td align="center" valign="middle"><div class="demoBox"><div class="busy demo"></div></div></td>
<td class="demoText"> = Partially booked</td>
<td> </td>
<td align="center" valign="middle"><div class="demoBox"><div class="full demo"></div></div></td>
<td class="demoText"> = Bookings are full</td>
</tr>
</table>
</div>
</div>
<div id="inputArea">
<div class="appPersonalIntro">
Personal Information
</div>
<div class="appLabel">Your name:</div>
<div class="appInput">
<input class="inputbox hasTip" title="Enter your full name to register an appointment." type="text" name="title" id="title" value="" "/>
</div>
<div class="appLabel">Your email:</div>
<div class="appInput">
<input class="inputbox hasTip" title="Enter your preferred email address for appointment change notifications." type="text" name="email" id="email" value="" "/>
</div>
<div class="appServiceIntro">
Service Request
</div>
<div class="appTextLabel appLabel">Комментарий:</div><div class="appTextInput appInput sInput-1"><input class="inputbox" type="text" name="field1" id="field1" value="" /></div> <div class="formBtnBar">
<div class="formBtn" onclick="cancel();">
<span class="formBtnTxt">
Cancel </span>
</div>
<div class="formBtn" onclick="submitbutton();">
<span class="formBtnTxt">
Book Appointment </span>
</div>
</div>
</div>
<input type="hidden" name="option" value="com_jxtcappbook" />
<input type="hidden" name="view" value="book" />
<input type="hidden" name="task" value="save" />
<input type="hidden" name="id" value="0" />
<input type="hidden" name="cid[]" value="0" />
<input type="hidden" name="ordering" value="0" />
<input type="hidden" name="parent_id" value="1" />
<input type="hidden" name="published" value="1" />
<input type="hidden" name="date" id="date" value="2011-12-25" />
<input type="hidden" name="duration" value="0" />
<input type="hidden" name="start" id="start" value="0" />
<input type="hidden" name="end" id="end" value="0" />
<input type="hidden" name="pop" id="pop" value="0" />
<input type="hidden" name="118d01d950b8034d420eed19886fbbd3" value="1" /> </div>
</form>
<div style="clear:both"></div>
</div>
</div>