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:
Lev Lazinskiy 2016-06-06 11:47:38 -07:00
parent 3e686f99b5
commit 0ecba6495e
1 changed files with 1 additions and 1 deletions

View File

@ -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"