diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-10-05 12:32:44 -0400 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-10-05 12:32:44 -0400 |
commit | 7f5a871f84639a90eebd0ac1d0ee7f759e220cf6 (patch) | |
tree | f814b2fa2ae888d0b2e800f14c6c8d6b75e85428 /app/Templates | |
parent | bae57838c2dd789064b246308c7cb3a33bba5b8e (diff) |
Projects are not anymore visible to everybody by default
Diffstat (limited to 'app/Templates')
-rw-r--r-- | app/Templates/project_sidebar.php | 2 | ||||
-rw-r--r-- | app/Templates/project_users.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/Templates/project_sidebar.php b/app/Templates/project_sidebar.php index d711e347..41f1d447 100644 --- a/app/Templates/project_sidebar.php +++ b/app/Templates/project_sidebar.php @@ -23,7 +23,7 @@ <a href="?controller=category&action=index&project_id=<?= $project['id'] ?>"><?= t('Categories management') ?></a> </li> <li> - <a href="?controller=project&action=users&project_id=<?= $project['id'] ?>"><?= t('Users management') ?></a> + <a href="?controller=project&action=users&project_id=<?= $project['id'] ?>"><?= t('User management') ?></a> </li> <li> <a href="?controller=action&action=index&project_id=<?= $project['id'] ?>"><?= t('Automatic actions') ?></a> diff --git a/app/Templates/project_users.php b/app/Templates/project_users.php index dca3524f..8d75f39f 100644 --- a/app/Templates/project_users.php +++ b/app/Templates/project_users.php @@ -3,7 +3,7 @@ </div> <?php if (empty($users['allowed'])): ?> - <div class="alert alert-info"><?= t('Everybody have access to this project.') ?></div> + <div class="alert alert-info"><?= t('Nobody have access to this project.') ?></div> <?php else: ?> <div class="listing"> <p><?= t('Only those users have access to this project:') ?></p> |