Rename "private" projects to "personal"

This commit is contained in:
Frédéric Guillot
2020-02-29 17:52:45 -08:00
parent c12bbb1613
commit b39f857dc4
45 changed files with 216 additions and 284 deletions

View File

@@ -38,8 +38,8 @@
<?php if ($this->app->config('disable_private_project') != 1): ?>
<?php if ($this->user->hasProjectAccess('ProjectCreationController', 'create', $project['id'])): ?>
<?= $this->form->checkbox('is_private', t('Private project'), 1, $project['is_private'] == 1) ?>
<p class="form-help"><?= t('Private projects do not have users and groups management.') ?></p>
<?= $this->form->checkbox('is_private', t('Personal project'), 1, $project['is_private'] == 1) ?>
<p class="form-help"><?= t('Personal projects do not have users and groups management.') ?></p>
<?php endif ?>
<?php endif ?>