|
|
@@ -183,7 +183,7 @@ class BookingAgendaHelper
|
|
|
foreach ($eventsArray as $event) {
|
|
|
print '<tr class="trheight">
|
|
|
<td class="firstcolumn"></td>
|
|
|
- <td class="center">Foglalás</td>';
|
|
|
+ <td class="center">' . $langs->trans('Reserved') . '</td>';
|
|
|
$rowcolorCounter = 0;
|
|
|
print '<br>';
|
|
|
for ($i = $dailyStartTime; $i < $dailyEndTime; $i++) {
|
|
|
@@ -198,7 +198,7 @@ class BookingAgendaHelper
|
|
|
print '</tr>';
|
|
|
print '<tr class="trheight foglaltsag">
|
|
|
<td class="location firstcolumn">' . $locationArray[$this->getLocationLabel($event)] . '</td>
|
|
|
- <td class="center">Foglalt</td>';
|
|
|
+ <td class="center">' . $langs->trans('InUse') . '</td>';
|
|
|
$rowcolorCounter = 0;
|
|
|
for ($i = $dailyStartTime; $i < $dailyEndTime; $i++) {
|
|
|
$backgroundColor = $this->getBGColor($rowcolorCounter);
|
|
|
@@ -212,7 +212,7 @@ class BookingAgendaHelper
|
|
|
print '</tr>';
|
|
|
print '<tr class="trheight">
|
|
|
<td class="firstcolumn"></td>
|
|
|
- <td class="center">Szervíz</td>';
|
|
|
+ <td class="center">' . $langs->trans('InService') . '</td>';
|
|
|
$rowcolorCounter = 0;
|
|
|
for ($i = $dailyStartTime; $i < $dailyEndTime; $i++) {
|
|
|
$backgroundColor = $this->getBGColor($rowcolorCounter);
|