diff options
Diffstat (limited to 'app/Template/user_view/profile.php')
-rw-r--r-- | app/Template/user_view/profile.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/Template/user_view/profile.php b/app/Template/user_view/profile.php index 117ab719..486ca428 100644 --- a/app/Template/user_view/profile.php +++ b/app/Template/user_view/profile.php @@ -3,9 +3,9 @@ <?= $this->avatar->render($user['id'], $user['username'], $user['name'], $user['email'], $user['avatar_path']) ?> <div class="panel"> <ul> - <li><?= t('Username:') ?> <strong><?= $this->text->e($user['username']) ?></strong></li> - <li><?= t('Name:') ?> <strong><?= $this->text->e($user['name']) ?: t('None') ?></strong></li> + <li><?= t('Login:') ?> <strong><?= $this->text->e($user['username']) ?></strong></li> + <li><?= t('Full Name:') ?> <strong><?= $this->text->e($user['name']) ?: t('None') ?></strong></li> <li><?= t('Email:') ?> <strong><?= $this->text->e($user['email']) ?: t('None') ?></strong></li> </ul> </div> -</section>
\ No newline at end of file +</section> |