diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2012-08-03 01:02:53 +0200 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2012-08-03 21:32:27 +0200 |
commit | 3610975bc10f93caa5f6fde517e5988756246cf9 (patch) | |
tree | cfe5a8f49cb4d3c830fab30f7d0a9cf1e9733679 /apps/contacts/templates/index.php | |
parent | e3de746bb617d81b84678015ee8fe7f41016b2fd (diff) | |
download | nextcloud-server-3610975bc10f93caa5f6fde517e5988756246cf9.tar.gz nextcloud-server-3610975bc10f93caa5f6fde517e5988756246cf9.zip |
Some fixes for keyboard shortcuts.
Diffstat (limited to 'apps/contacts/templates/index.php')
-rw-r--r-- | apps/contacts/templates/index.php | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/apps/contacts/templates/index.php b/apps/contacts/templates/index.php index 270d5c203cf..024b1d150f8 100644 --- a/apps/contacts/templates/index.php +++ b/apps/contacts/templates/index.php @@ -38,14 +38,16 @@ <div class="help-section"> <h3><?php echo $l->t('Navigation'); ?></h3> <dl> - <dt>j/Down/Space</dt> + <dt>j/Down</dt> <dd><?php echo $l->t('Next contact in list'); ?></dd> - <dt>k/Up/Shift-Space</dt> + <dt>k/Up</dt> <dd><?php echo $l->t('Previous contact in list'); ?></dd> - <dt>o/Enter</dt> + <dt>o</dt> <dd><?php echo $l->t('Expand/collapse current addressbook'); ?></dd> - <dt>n/p</dt> - <dd><?php echo $l->t('Next/previous addressbook'); ?></dd> + <dt>n/PageDown</dt> + <dd><?php echo $l->t('Next addressbook'); ?></dd> + <dt>p/PageUp</dt> + <dd><?php echo $l->t('Previous addressbook'); ?></dd> </dl> </div> <div class="help-section"> @@ -55,8 +57,8 @@ <dd><?php echo $l->t('Refresh contacts list'); ?></dd> <dt>a</dt> <dd><?php echo $l->t('Add new contact'); ?></dd> - <dt>Shift-a</dt> - <dd><?php echo $l->t('Add new addressbook'); ?></dd> + <!-- dt>Shift-a</dt> + <dd><?php echo $l->t('Add new addressbook'); ?></dd --> <dt>Shift-Delete</dt> <dd><?php echo $l->t('Delete current contact'); ?></dd> </dl> |