diff options
author | Lev Lazinskiy <lev@circleci.com> | 2016-06-06 11:47:38 -0700 |
---|---|---|
committer | Lev Lazinskiy <lev@circleci.com> | 2016-06-06 11:47:38 -0700 |
commit | 0ecba6495e2905ce367298880b901ec0cce6a894 (patch) | |
tree | b9ce7cb29a6968a3bd46f7784509a435a15acff8 /app | |
parent | 3e686f99b5f69e5c4ff2ba480a14bccf2c9e55a9 (diff) |
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!"
Diffstat (limited to 'app')
-rw-r--r-- | app/Template/column/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Template/column/index.php b/app/Template/column/index.php index 4f5f0a60..04760a16 100644 --- a/app/Template/column/index.php +++ b/app/Template/column/index.php @@ -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" |