Localization fix

This commit is contained in:
Dennis Eichhorn 2016-07-27 22:20:30 +02:00
parent 721d5aab05
commit 055841d251
4 changed files with 8 additions and 8 deletions

View File

@ -30,7 +30,7 @@ $accounts = $this->getData('accounts');
<caption><?= $this->getText('Profiles'); ?></caption>
<thead>
<tr>
<td><?= $this->getText('ID'); ?>
<td><?= $this->getText('ID', 0, 0); ?>
<td class="wf-100"><?= $this->getText('Name'); ?>
<td><?= $this->getText('Activity'); ?>
<tfoot>
@ -45,7 +45,7 @@ $accounts = $this->getData('accounts');
<td><a href="<?= $url; ?>"><?= $account->getLastActive()->format('Y-m-d'); ?></a>
<?php endforeach; ?>
<?php if($count === 0) : ?>
<tr><td colspan="3" class="empty"><?= $this->getText('Empty'); ?>
<tr><td colspan="3" class="empty"><?= $this->getText('Empty', 0, 0); ?>
<?php endif; ?>
</table>
</div>

View File

@ -88,7 +88,7 @@ echo $this->getData('nav')->render();
<caption><?= $this->getText('Media'); ?></caption>
<thead>
<tr>
<td><?= $this->getText('ID'); ?>
<td><?= $this->getText('ID', 0, 0); ?>
<td class="wf-100"><?= $this->getText('Title'); ?>
<td><?= $this->getText('Type'); ?>
<td><?= $this->getText('Created'); ?>
@ -104,7 +104,7 @@ echo $this->getData('nav')->render();
<td><a href="<?= $url; ?>"><?= $value->getNewestStatus()->getStatus(); ?></a>
<?php endforeach; ?>
<?php if($c === 0) : ?>
<tr><td colspan="4" class="empty"><?= $this->getText('Empty'); ?>
<tr><td colspan="4" class="empty"><?= $this->getText('Empty', 0, 0); ?>
<?php endif; ?>
</table>
</div>

View File

@ -30,7 +30,7 @@ $accounts = $this->getData('accounts');
<caption><?= $this->getText('Profiles'); ?></caption>
<thead>
<tr>
<td><?= $this->getText('ID'); ?>
<td><?= $this->getText('ID', 0, 0); ?>
<td class="wf-100"><?= $this->getText('Name'); ?>
<td><?= $this->getText('Activity'); ?>
<tfoot>
@ -45,7 +45,7 @@ $accounts = $this->getData('accounts');
<td><a href="<?= $url; ?>"><?= $account->getLastActive()->format('Y-m-d'); ?></a>
<?php endforeach; ?>
<?php if($count === 0) : ?>
<tr><td colspan="3" class="empty"><?= $this->getText('Empty'); ?>
<tr><td colspan="3" class="empty"><?= $this->getText('Empty', 0, 0); ?>
<?php endif; ?>
</table>
</div>

View File

@ -88,7 +88,7 @@ echo $this->getData('nav')->render();
<caption><?= $this->getText('Media'); ?></caption>
<thead>
<tr>
<td><?= $this->getText('ID'); ?>
<td><?= $this->getText('ID', 0, 0); ?>
<td class="wf-100"><?= $this->getText('Title'); ?>
<td><?= $this->getText('Type'); ?>
<td><?= $this->getText('Created'); ?>
@ -104,7 +104,7 @@ echo $this->getData('nav')->render();
<td><a href="<?= $url; ?>"><?= $value->getNewestStatus()->getStatus(); ?></a>
<?php endforeach; ?>
<?php if($c === 0) : ?>
<tr><td colspan="4" class="empty"><?= $this->getText('Empty'); ?>
<tr><td colspan="4" class="empty"><?= $this->getText('Empty', 0, 0); ?>
<?php endif; ?>
</table>
</div>