diff options
author | Dzial Techniczny WMW Projekt s.c <techniczna@wmwprojekt.pl> | 2019-12-10 16:31:45 +0100 |
---|---|---|
committer | Dzial Techniczny WMW Projekt s.c <techniczna@wmwprojekt.pl> | 2019-12-10 16:31:45 +0100 |
commit | f5ff8e388e92f2b834adfcefca2744b9808b4eac (patch) | |
tree | f79be3775ea079e70b887da67479d2ad607a94e4 /plugins/Boardcustomizer/Template/user/settings.php | |
parent | f67ce1c32e8d4f3c9d2abc35dacea69ed35be16d (diff) |
Extending Boardcustomizer with additional options and Polish locale
Diffstat (limited to 'plugins/Boardcustomizer/Template/user/settings.php')
-rw-r--r-- | plugins/Boardcustomizer/Template/user/settings.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Boardcustomizer/Template/user/settings.php b/plugins/Boardcustomizer/Template/user/settings.php index 9a6e3124..4d2ba42f 100644 --- a/plugins/Boardcustomizer/Template/user/settings.php +++ b/plugins/Boardcustomizer/Template/user/settings.php @@ -18,12 +18,12 @@ </td>
<td>
<?php if ($this->user->userMetadataModel->exists($user['id'], $key)) : ?>
- <?= $this->url->icon('toggle-off', t('Disable'), 'SettingsController', 'disable', array('plugin' => 'boardcustomizer', 'key' => $key), true) ?>
+ <?= $this->url->icon('toggle-on', t('Toggle enabled'), 'SettingsController', 'disable', array('plugin' => 'boardcustomizer', 'key' => $key), true) ?>
<?php else : ?>
- <?= $this->url->icon('toggle-on', t('Enable'), 'SettingsController', 'enable', array('plugin' => 'boardcustomizer', 'key' => $key), true) ?>
+ <?= $this->url->icon('toggle-off', t('Toggle disabled'), 'SettingsController', 'enable', array('plugin' => 'boardcustomizer', 'key' => $key), true) ?>
<?php endif ?>
</td>
</tr>
<?php endforeach ?>
</table>
-<?php endif ?>
\ No newline at end of file +<?php endif ?>
|