diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/board_index.php | 4 | ||||
-rw-r--r-- | templates/board_public.php | 2 | ||||
-rw-r--r-- | templates/project_tasks.php | 4 | ||||
-rw-r--r-- | templates/task_show.php | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/templates/board_index.php b/templates/board_index.php index 6138ee50..db0c4fec 100644 --- a/templates/board_index.php +++ b/templates/board_index.php @@ -62,7 +62,7 @@ <?php if (! empty($task['owner_id'])): ?> <a href="?controller=board&action=assign&task_id=<?= $task['id'] ?>" title="<?= t('Change assignee') ?>"><?= t('Assigned to %s', $task['username']) ?></a> <?php else: ?> - <a href="?controller=board&action=assign&task_id=<?= $task['id'] ?>" title="<?= t('Change assignee') ?>" class="task-nobody"><?= t('No body assigned') ?></a> + <a href="?controller=board&action=assign&task_id=<?= $task['id'] ?>" title="<?= t('Change assignee') ?>" class="task-nobody"><?= t('Nobody assigned') ?></a> <?php endif ?> </span> @@ -71,7 +71,7 @@ <?php endif ?> <div class="task-title"> - <a href="?controller=task&action=show&task_id=<?= $task['id'] ?>" title="<?= t('Show this task') ?>"><?= Helper\escape($task['title']) ?></a> + <a href="?controller=task&action=show&task_id=<?= $task['id'] ?>" title="<?= t('View this task') ?>"><?= Helper\escape($task['title']) ?></a> </div> <div class="task-footer"> diff --git a/templates/board_public.php b/templates/board_public.php index 4c8f7c92..c3d69f35 100644 --- a/templates/board_public.php +++ b/templates/board_public.php @@ -28,7 +28,7 @@ <?php if (! empty($task['owner_id'])): ?> <?= t('Assigned to %s', $task['username']) ?> <?php else: ?> - <span class="task-nobody"><?= t('No body assigned') ?></span> + <span class="task-nobody"><?= t('Nobody assigned') ?></span> <?php endif ?> </span> diff --git a/templates/project_tasks.php b/templates/project_tasks.php index 5b3125f8..77b4db62 100644 --- a/templates/project_tasks.php +++ b/templates/project_tasks.php @@ -25,13 +25,13 @@ <?php foreach ($tasks as $task): ?> <tr> <td class="task task-<?= $task['color_id'] ?>"> - <a href="?controller=task&action=show&task_id=<?= $task['id'] ?>" title="<?= t('Show this task') ?>"><?= Helper\escape($task['id']) ?></a> + <a href="?controller=task&action=show&task_id=<?= $task['id'] ?>" title="<?= t('View this task') ?>"><?= Helper\escape($task['id']) ?></a> </td> <td> <?= Helper\escape($task['column_title']) ?> </td> <td> - <a href="?controller=task&action=show&task_id=<?= $task['id'] ?>" title="<?= t('Show this task') ?>"><?= Helper\escape($task['title']) ?></a> + <a href="?controller=task&action=show&task_id=<?= $task['id'] ?>" title="<?= t('View this task') ?>"><?= Helper\escape($task['title']) ?></a> </td> <td> <?= Helper\escape($task['username']) ?> diff --git a/templates/task_show.php b/templates/task_show.php index 409e5205..1ec9a22c 100644 --- a/templates/task_show.php +++ b/templates/task_show.php @@ -32,7 +32,7 @@ <?php if ($task['username']): ?> <?= t('Assigned to %s', $task['username']) ?> <?php else: ?> - <?= t('There is no body assigned') ?> + <?= t('There is nobody assigned') ?> <?php endif ?> </strong> </li> |