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