Fix a typo and minor visual improvement
This commit is contained in:
@@ -465,8 +465,10 @@ nav .active a {
|
||||
font-size: 80%;
|
||||
}
|
||||
|
||||
.task-nobody {
|
||||
.task a.task-nobody {
|
||||
font-weight: normal;
|
||||
font-style: italic;
|
||||
color: #444;
|
||||
}
|
||||
|
||||
.task-date {
|
||||
|
||||
@@ -26,7 +26,7 @@ return array(
|
||||
'Login' => 'Connexion',
|
||||
'Official website:' => 'Site web officiel :',
|
||||
'Unassigned' => 'Non assigné',
|
||||
'View this task' => 'Visualiser cette tâche',
|
||||
'View this task' => 'Voir cette tâche',
|
||||
'Remove user' => 'Supprimer un utilisateur',
|
||||
'Do you really want to remove this user: "%s"?' => 'Voulez-vous vraiment supprimer cet utilisateur : « %s » ?',
|
||||
'New user' => 'Ajouter un utilisateur',
|
||||
@@ -173,7 +173,6 @@ return array(
|
||||
'Date created' => 'Date de création',
|
||||
'Date completed' => 'Date de clôture',
|
||||
'Id' => 'Identifiant',
|
||||
'Show this task' => 'Afficher cette tâche',
|
||||
'No task' => 'Aucune tâche',
|
||||
'completed tasks' => 'tâches terminées',
|
||||
'List of projects' => 'Liste des projets',
|
||||
|
||||
@@ -173,7 +173,6 @@ return array(
|
||||
'Date created' => 'Data utworzenia',
|
||||
'Date completed' => 'Data zakończenia',
|
||||
'Id' => 'Ident',
|
||||
'Show this task' => 'Pokaż to zadanie',
|
||||
'No task' => 'Brak zadań',
|
||||
'completed tasks' => 'ukończone zadania',
|
||||
'List of projects' => 'Lista projektów',
|
||||
|
||||
@@ -173,7 +173,6 @@ return array(
|
||||
'Date created' => 'Data de criação',
|
||||
'Date completed' => 'Data de encerramento',
|
||||
'Id' => 'Id',
|
||||
'Show this task' => 'Mostrar esta tarefa',
|
||||
'No task' => 'Nenhuma tarefa',
|
||||
'completed tasks' => 'tarefas completadas',
|
||||
'List of projects' => 'Lista de projetos',
|
||||
|
||||
@@ -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">
|
||||
|
||||
@@ -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']) ?>
|
||||
|
||||
Reference in New Issue
Block a user