Add a section to display keyboard shorcuts

This commit is contained in:
Frederic Guillot
2015-02-14 23:09:53 -05:00
parent 627d8aaa8c
commit 998ef43e53
18 changed files with 96 additions and 12 deletions

View File

@@ -724,4 +724,9 @@ return array(
// '%b %e' => '',
// 'Expand tasks' => '',
// 'Collapse tasks' => '',
// 'Expand/collapse tasks' => '',
// 'Close dialog box' => '',
// 'Submit a form' => '',
// 'Board view' => '',
// 'Keyboard shortcuts' => '',
);

View File

@@ -724,4 +724,9 @@ return array(
// '%b %e' => '',
// 'Expand tasks' => '',
// 'Collapse tasks' => '',
// 'Expand/collapse tasks' => '',
// 'Close dialog box' => '',
// 'Submit a form' => '',
// 'Board view' => '',
// 'Keyboard shortcuts' => '',
);

View File

@@ -724,4 +724,9 @@ return array(
// '%b %e' => '',
// 'Expand tasks' => '',
// 'Collapse tasks' => '',
// 'Expand/collapse tasks' => '',
// 'Close dialog box' => '',
// 'Submit a form' => '',
// 'Board view' => '',
// 'Keyboard shortcuts' => '',
);

View File

@@ -724,4 +724,9 @@ return array(
// '%b %e' => '',
// 'Expand tasks' => '',
// 'Collapse tasks' => '',
// 'Expand/collapse tasks' => '',
// 'Close dialog box' => '',
// 'Submit a form' => '',
// 'Board view' => '',
// 'Keyboard shortcuts' => '',
);

View File

@@ -726,4 +726,9 @@ return array(
'%b %e' => '%e %b',
'Expand tasks' => 'Déplier les tâches',
'Collapse tasks' => 'Replier les tâches',
'Expand/collapse tasks' => 'Plier/déplier les tâches',
'Close dialog box' => 'Fermer une boite de dialogue',
'Submit a form' => 'Enregistrer un formulaire',
'Board view' => 'Page du tableau',
'Keyboard shortcuts' => 'Raccourcis clavier',
);

View File

@@ -724,4 +724,9 @@ return array(
// '%b %e' => '',
// 'Expand tasks' => '',
// 'Collapse tasks' => '',
// 'Expand/collapse tasks' => '',
// 'Close dialog box' => '',
// 'Submit a form' => '',
// 'Board view' => '',
// 'Keyboard shortcuts' => '',
);

View File

@@ -724,4 +724,9 @@ return array(
// '%b %e' => '',
// 'Expand tasks' => '',
// 'Collapse tasks' => '',
// 'Expand/collapse tasks' => '',
// 'Close dialog box' => '',
// 'Submit a form' => '',
// 'Board view' => '',
// 'Keyboard shortcuts' => '',
);

View File

@@ -724,4 +724,9 @@ return array(
// '%b %e' => '',
// 'Expand tasks' => '',
// 'Collapse tasks' => '',
// 'Expand/collapse tasks' => '',
// 'Close dialog box' => '',
// 'Submit a form' => '',
// 'Board view' => '',
// 'Keyboard shortcuts' => '',
);

View File

@@ -724,4 +724,9 @@ return array(
// '%b %e' => '',
// 'Expand tasks' => '',
// 'Collapse tasks' => '',
// 'Expand/collapse tasks' => '',
// 'Close dialog box' => '',
// 'Submit a form' => '',
// 'Board view' => '',
// 'Keyboard shortcuts' => '',
);

View File

@@ -724,4 +724,9 @@ return array(
// '%b %e' => '',
// 'Expand tasks' => '',
// 'Collapse tasks' => '',
// 'Expand/collapse tasks' => '',
// 'Close dialog box' => '',
// 'Submit a form' => '',
// 'Board view' => '',
// 'Keyboard shortcuts' => '',
);

View File

@@ -724,4 +724,9 @@ return array(
// '%b %e' => '',
// 'Expand tasks' => '',
// 'Collapse tasks' => '',
// 'Expand/collapse tasks' => '',
// 'Close dialog box' => '',
// 'Submit a form' => '',
// 'Board view' => '',
// 'Keyboard shortcuts' => '',
);

View File

@@ -724,4 +724,9 @@ return array(
// '%b %e' => '',
// 'Expand tasks' => '',
// 'Collapse tasks' => '',
// 'Expand/collapse tasks' => '',
// 'Close dialog box' => '',
// 'Submit a form' => '',
// 'Board view' => '',
// 'Keyboard shortcuts' => '',
);

View File

@@ -724,4 +724,9 @@ return array(
// '%b %e' => '',
// 'Expand tasks' => '',
// 'Collapse tasks' => '',
// 'Expand/collapse tasks' => '',
// 'Close dialog box' => '',
// 'Submit a form' => '',
// 'Board view' => '',
// 'Keyboard shortcuts' => '',
);

View File

@@ -724,4 +724,9 @@ return array(
// '%b %e' => '',
// 'Expand tasks' => '',
// 'Collapse tasks' => '',
// 'Expand/collapse tasks' => '',
// 'Close dialog box' => '',
// 'Submit a form' => '',
// 'Board view' => '',
// 'Keyboard shortcuts' => '',
);

View File

@@ -1,7 +1,7 @@
<div class="page-header">
<h2><?= t('About') ?></h2>
</div>
<section class="listing">
<div class="listing">
<ul>
<li>
<?= t('Official website:') ?>
@@ -12,12 +12,11 @@
<strong><?= APP_VERSION ?></strong>
</li>
</ul>
</section>
</div>
<div class="page-header">
<h2><?= t('Database') ?></h2>
</div>
<section class="listing">
<div class="listing">
<ul>
<li>
<?= t('Database driver:') ?>
@@ -38,4 +37,19 @@
</li>
<?php endif ?>
</ul>
</section>
</div>
<div class="page-header">
<h2><?= t('Keyboard shortcuts') ?></h2>
</div>
<div class="listing">
<h3><?= t('Board view') ?></h3>
<ul>
<li><?= t('New task') ?> = <strong>n</strong></li>
<li><?= t('Expand/collapse tasks') ?> = <strong>s</strong></li>
</ul>
<h3><?= t('Application') ?></h3>
<ul>
<li><?= t('Close dialog box') ?> = <strong>ESC</strong></li>
<li><?= t('Submit a form') ?> = <strong>CTRL+ENTER</strong> <?= t('or') ?> <strong>⌘+ENTER</strong></li>
</ul>
</div>