Fix a typo and minor visual improvement

This commit is contained in:
Frédéric Guillot 2014-04-08 21:21:36 -04:00
parent 6551c9ce4c
commit 3ebeddc1c7
8 changed files with 16 additions and 17 deletions

View File

@ -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 {

View File

@ -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',
@ -76,7 +76,7 @@ return array(
'Title' => 'Titre',
'Add Column' => 'Nouvelle colonne',
'Project "%s"' => 'Projet « %s »',
'No body assigned' => 'Personne assigné',
'Nobody assigned' => 'Personne assigné',
'Assigned to %s' => 'Assigné à %s',
'Remove a column' => 'Supprimer une colonne',
'Remove a column from a board' => 'Supprimer une colonne d\'un tableau',
@ -107,7 +107,7 @@ return array(
'Do you really want to open this task: "%s"?' => 'Voulez-vous vraiment ouvrir cette tâche : « %s » ?',
'Back to the board' => 'Retour au tableau',
'Created on %B %e, %G at %k:%M %p' => 'Créé le %d/%m/%Y à %H:%M',
'There is no body assigned' => 'Il n\'y a personne d\'assigné à cette tâche',
'There is nobody assigned' => 'Il n\'y a personne d\'assigné à cette tâche',
'Column on the board:' => 'Colonne sur le tableau : ',
'Status is open' => 'État ouvert',
'Status is closed' => 'État fermé',
@ -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',

View File

@ -76,7 +76,7 @@ return array(
'Title' => 'Tytuł',
'Add Column' => 'Dodaj kolumnę',
'Project "%s"' => 'Projekt "%s"',
'No body assigned' => 'Nikt nie przypisany',
'Nobody assigned' => 'Nikt nie przypisany',
'Assigned to %s' => 'Przypisane do %s',
'Remove a column' => 'Usuń kolumnę',
'Remove a column from a board' => 'Usuń kolumnę z tablicy',
@ -107,7 +107,7 @@ return array(
'Do you really want to open this task: "%s"?' => 'Na pewno chcesz otworzyć zadanie: "%s"?',
'Back to the board' => 'Powrót do tablicy',
'Created on %B %e, %G at %k:%M %p' => 'Utworzono dnia %e %B %G o %k:%M',
'There is no body assigned' => 'Nikt nie jest przypisany',
'There is nobody assigned' => 'Nikt nie jest przypisany',
'Column on the board:' => 'Kolumna na tablicy:',
'Status is open' => 'Status otwarty',
'Status is closed' => 'Status zamknięty',
@ -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',

View File

@ -76,7 +76,7 @@ return array(
'Title' => 'Título',
'Add Column' => 'Adicionar coluna',
'Project "%s"' => 'Projeto "%s"',
'No body assigned' => 'Ninguém designado',
'Nobody assigned' => 'Ninguém designado',
'Assigned to %s' => 'Designado para %s',
'Remove a column' => 'Remover uma coluna',
'Remove a column from a board' => 'Remover uma coluna do quadro',
@ -107,7 +107,7 @@ return array(
'Do you really want to open this task: "%s"?' => 'Quer realmente abrir esta tarefa: "%s"?',
'Back to the board' => 'Voltar ao quadro',
'Created on %B %e, %G at %k:%M %p' => 'Criado em %d %B %G às %H:%M',
'There is no body assigned' => 'Não há ninguém designado',
'There is nobody assigned' => 'Não há ninguém designado',
'Column on the board:' => 'Coluna no quadro:',
'Status is open' => 'Status está aberto',
'Status is closed' => 'Status está fechado',
@ -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',

View File

@ -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">

View File

@ -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>

View File

@ -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']) ?>

View File

@ -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>