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:
parent
3e686f99b5
commit
0ecba6495e
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in New Issue