Fix plural form
When removing all columns from a board, an alert box is displayed that states "Your board doesn't have any column!", the correct plural form should be "Your board doesn't have any columns!"
This commit is contained in:
@@ -9,7 +9,7 @@
|
||||
</div>
|
||||
|
||||
<?php if (empty($columns)): ?>
|
||||
<p class="alert alert-error"><?= t('Your board doesn\'t have any column!') ?></p>
|
||||
<p class="alert alert-error"><?= t('Your board doesn\'t have any columns!') ?></p>
|
||||
<?php else: ?>
|
||||
<table
|
||||
class="columns-table table-stripped"
|
||||
|
||||
Reference in New Issue
Block a user