summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorFrédéric Guillot <fguillot@users.noreply.github.com>2014-04-08 21:21:36 -0400
committerFrédéric Guillot <fguillot@users.noreply.github.com>2014-04-08 21:21:36 -0400
commit3ebeddc1c79a1931182d071102979283a3f01d52 (patch)
tree5c5c4a67598cf67707ea1d9c2e16a09c5e59318d /templates
parent6551c9ce4c169100f55ec6912233f8e627a5cc05 (diff)
Fix a typo and minor visual improvement
Diffstat (limited to 'templates')
-rw-r--r--templates/board_index.php4
-rw-r--r--templates/board_public.php2
-rw-r--r--templates/project_tasks.php4
-rw-r--r--templates/task_show.php2
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&amp;action=assign&amp;task_id=<?= $task['id'] ?>" title="<?= t('Change assignee') ?>"><?= t('Assigned to %s', $task['username']) ?></a>
<?php else: ?>
- <a href="?controller=board&amp;action=assign&amp;task_id=<?= $task['id'] ?>" title="<?= t('Change assignee') ?>" class="task-nobody"><?= t('No body assigned') ?></a>
+ <a href="?controller=board&amp;action=assign&amp;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&amp;action=show&amp;task_id=<?= $task['id'] ?>" title="<?= t('Show this task') ?>"><?= Helper\escape($task['title']) ?></a>
+ <a href="?controller=task&amp;action=show&amp;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&amp;action=show&amp;task_id=<?= $task['id'] ?>" title="<?= t('Show this task') ?>"><?= Helper\escape($task['id']) ?></a>
+ <a href="?controller=task&amp;action=show&amp;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&amp;action=show&amp;task_id=<?= $task['id'] ?>" title="<?= t('Show this task') ?>"><?= Helper\escape($task['title']) ?></a>
+ <a href="?controller=task&amp;action=show&amp;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>