Localization fix

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

View File

@ -43,8 +43,8 @@ echo $this->getData('nav')->render(); ?>
<option value="<?= \Modules\ProjectManagement\Models\ProjectResponsibility::MANAGER ?>"><?= $this->getText('Manager'); ?>
<option value="<?= \Modules\ProjectManagement\Models\ProjectResponsibility::OTHER ?>"><?= $this->getText('Other'); ?>
</select>
<td><input type="text" id="iUser" name="user" placeholder=""><td><button><?= $this->getText('Add'); ?></button>
<tr><td colspan="3"><input type="submit" value="<?= $this->getText('Create'); ?>">
<td><input type="text" id="iUser" name="user" placeholder=""><td><button><?= $this->getText('Add', 0, 0); ?></button>
<tr><td colspan="3"><input type="submit" value="<?= $this->getText('Create', 0, 0); ?>">
</table>
</form>
</div>

View File

@ -31,7 +31,7 @@ echo $this->getData('nav')->render(); ?>
<caption><?= $this->getText('Projects'); ?></caption>
<thead>
<tr>
<td><?= $this->getText('ID'); ?>
<td><?= $this->getText('ID', 0, 0); ?>
<td><?= $this->getText('Status'); ?>
<td class="wf-100"><?= $this->getText('Name'); ?>
<td><?= $this->getText('Creator'); ?>
@ -49,7 +49,7 @@ echo $this->getData('nav')->render(); ?>
<?php endforeach; ?>
<?php if($c === 0) : ?>
<tr>
<td colspan="5" class="empty"><?= $this->getText('Empty'); ?>
<td colspan="5" class="empty"><?= $this->getText('Empty', 0, 0); ?>
<?php endif; ?>
</table>
</div>

View File

@ -43,8 +43,8 @@ echo $this->getData('nav')->render(); ?>
<option value="<?= \Modules\ProjectManagement\Models\ProjectResponsibility::MANAGER ?>"><?= $this->getText('Manager'); ?>
<option value="<?= \Modules\ProjectManagement\Models\ProjectResponsibility::OTHER ?>"><?= $this->getText('Other'); ?>
</select>
<td><input type="text" id="iUser" name="user" placeholder=""><td><button><?= $this->getText('Add'); ?></button>
<tr><td colspan="3"><input type="submit" value="<?= $this->getText('Create'); ?>">
<td><input type="text" id="iUser" name="user" placeholder=""><td><button><?= $this->getText('Add', 0, 0); ?></button>
<tr><td colspan="3"><input type="submit" value="<?= $this->getText('Create', 0, 0); ?>">
</table>
</form>
</div>

View File

@ -31,7 +31,7 @@ echo $this->getData('nav')->render(); ?>
<caption><?= $this->getText('Projects'); ?></caption>
<thead>
<tr>
<td><?= $this->getText('ID'); ?>
<td><?= $this->getText('ID', 0, 0); ?>
<td><?= $this->getText('Status'); ?>
<td class="wf-100"><?= $this->getText('Name'); ?>
<td><?= $this->getText('Creator'); ?>
@ -49,7 +49,7 @@ echo $this->getData('nav')->render(); ?>
<?php endforeach; ?>
<?php if($c === 0) : ?>
<tr>
<td colspan="5" class="empty"><?= $this->getText('Empty'); ?>
<td colspan="5" class="empty"><?= $this->getText('Empty', 0, 0); ?>
<?php endif; ?>
</table>
</div>