Delete user Button + Som Czech Translation

This commit is contained in:
JonatanRek 2019-10-13 14:18:41 +02:00
parent c0759ff3a1
commit 55fa87cbce
2 changed files with 6 additions and 6 deletions

View File

@ -53,10 +53,10 @@ return $lang = [
'l_nameAt' => 'Název',
'l_lastSeen' => 'Naposledy připojeno',
'l_notificationStatus' => 'Notification status',
'l_userName' => 'Username',
'l_password' => 'Password',
'l_oldPassword' => 'Old Password',
'l_newPassword' => 'New Password',
'l_userName' => 'Uživatelské jméno',
'l_password' => 'Heslo',
'l_oldPassword' => 'Staré Heslo',
'l_newPassword' => 'Nové Heslo',
//Title
't_createScene' => 'Vytvořit scénu',

View File

@ -88,8 +88,8 @@
<tbody>
<?php foreach ($USERS as $key => $user) { ?>
<tr>
<th><?php echo $user['username']; ?></th>
<th><button name="remove" type="button" class="button is-danger fa" data-automation-id="54">&#xf1f8;</button></th>
<td><?php echo $user['username']; ?></td>
<td><button name="deleteUser" type="button" class="button is-danger fa">&#xf1f8;</button></td>
</tr>
<?php } ?>
</tbody>