Change wording for project status (use "closed" instead of "inactive")

This commit is contained in:
Frederic Guillot
2017-02-08 20:35:51 -05:00
parent 647568cddd
commit 5c0b90bb29
32 changed files with 210 additions and 86 deletions

View File

@@ -2,7 +2,7 @@
<h2><?= t('Summary') ?></h2>
</div>
<ul class="panel">
<li><strong><?= $project['is_active'] ? t('Active') : t('Inactive') ?></strong></li>
<li><strong><?= $project['is_active'] ? t('This project is open') : t('This project is closed') ?></strong></li>
<?php if ($project['owner_id'] > 0): ?>
<li><?= t('Project owner: ') ?><strong><?= $this->text->e($project['owner_name'] ?: $project['owner_username']) ?></strong></li>