add localization and move timezone selection to the right place

This commit is contained in:
coderkun 2014-01-19 23:03:55 +01:00
commit 379328434b
15 changed files with 141 additions and 13 deletions

View file

@ -1,9 +1,10 @@
<h1><?=_('Users')?></h1>
<ul>
<?php foreach($users as &$user) : ?>
<li>
<h2><a href="<?=$linker->link(array('user', $user['username']), 1)?>"><?=$user['username']?></a></h2>
<details>
<summary>registriert seit <?=date(\hhu\z\Utils::DATEFORMAT, strtotime($user['created']))?></summary>
<summary><?=_('registered on')?> <?=date(\hhu\z\Utils::DATEFORMAT, strtotime($user['created']))?></summary>
</details>
</li>
<?php endforeach ?>