diff options
Diffstat (limited to 'app/Template')
-rw-r--r-- | app/Template/column/index.php | 4 | ||||
-rw-r--r-- | app/Template/project_overview/files.php | 2 | ||||
-rw-r--r-- | app/Template/subtask/table.php | 2 | ||||
-rw-r--r-- | app/Template/task_file/show.php | 2 |
4 files changed, 5 insertions, 5 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'])) ?>'> diff --git a/app/Template/project_overview/files.php b/app/Template/project_overview/files.php index 03835f6b..7eb8c762 100644 --- a/app/Template/project_overview/files.php +++ b/app/Template/project_overview/files.php @@ -67,7 +67,7 @@ <?php if ($this->file->getPreviewType($file['name']) !== null): ?> <li> <i class="fa fa-eye fa-fw"></i> - <?= $this->url->link(t('View'), 'FileViewer', 'show', array('project_id' => $project['id'], 'file_id' => $file['id']), false, 'popover') ?> + <?= $this->url->link(t('View file'), 'FileViewer', 'show', array('project_id' => $project['id'], 'file_id' => $file['id']), false, 'popover') ?> </li> <?php endif ?> <li> diff --git a/app/Template/subtask/table.php b/app/Template/subtask/table.php index 5db23245..13d2c7cc 100644 --- a/app/Template/subtask/table.php +++ b/app/Template/subtask/table.php @@ -18,7 +18,7 @@ <tr data-subtask-id="<?= $subtask['id'] ?>"> <td> <?php if ($editable): ?> - <i class="fa fa-arrows-alt draggable-row-handle" title="<?= t('Move subtask position') ?>"></i> + <i class="fa fa-arrows-alt draggable-row-handle" title="<?= t('Change subtask position') ?>"></i> <?= $this->subtask->toggleStatus($subtask, $task['project_id'], true) ?> <?php else: ?> <?= $this->subtask->getTitle($subtask) ?> diff --git a/app/Template/task_file/show.php b/app/Template/task_file/show.php index 8aa76520..c3f2bb98 100644 --- a/app/Template/task_file/show.php +++ b/app/Template/task_file/show.php @@ -57,7 +57,7 @@ <?php if ($this->file->getPreviewType($file['name']) !== null): ?> <li> <i class="fa fa-eye fa-fw"></i> - <?= $this->url->link(t('View'), 'FileViewer', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id'], 'file_id' => $file['id']), false, 'popover') ?> + <?= $this->url->link(t('View file'), 'FileViewer', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id'], 'file_id' => $file['id']), false, 'popover') ?> </li> <?php endif ?> <li> |