diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-02-20 11:34:16 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-02-20 11:34:16 -0500 |
commit | 83832522867d06241441c04d2b3237200db57224 (patch) | |
tree | 040601fdece9b49d5eefbe43b62d76785dc674b3 /app/Template/column/index.php | |
parent | c8c1242c26a11dc2abc7126829d76430612e7107 (diff) |
Sync locales
Diffstat (limited to 'app/Template/column/index.php')
-rw-r--r-- | app/Template/column/index.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Template/column/index.php b/app/Template/column/index.php index c6a6e85b..1aa44688 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 columns!') ?></p> + <p class="alert alert-error"><?= t('Your board doesn\'t have any column!') ?></p> <?php else: ?> <table class="columns-table table-stripped" @@ -25,7 +25,7 @@ <?php foreach ($columns as $column): ?> <tr data-column-id="<?= $column['id'] ?>"> <td> - <i class="fa fa-arrows-alt draggable-row-handle" title="<?= t('Move column position') ?>"></i> + <i class="fa fa-arrows-alt draggable-row-handle" title="<?= t('Change column position') ?>"></i> <?= $this->e($column['title']) ?> <?php if (! empty($column['description'])): ?> <span class="tooltip" title='<?= $this->e($this->text->markdown($column['description'])) ?>'> |