Merge pull request #2725 from cpradio/german-keyboard-support
FIX: Support J/K bindings on German Keyboards
This commit is contained in:
commit
202656a679
|
@ -48,11 +48,11 @@ Discourse.KeyboardShortcuts = Ember.Object.createWithMixins({
|
|||
'home': 'goToFirstPost',
|
||||
'#': 'toggleProgress',
|
||||
'end': 'goToLastPost',
|
||||
'shift+j': 'nextSection',
|
||||
'j': 'selectDown',
|
||||
'shift+k': 'prevSection',
|
||||
'k': 'selectUp',
|
||||
'u': 'goBack',
|
||||
'`': 'nextSection',
|
||||
'~': 'prevSection',
|
||||
'/': 'showSearch',
|
||||
'=': 'showSiteMap', // open site map menu
|
||||
'p': 'showCurrentUser', // open current user menu
|
||||
|
|
|
@ -2052,7 +2052,7 @@ en:
|
|||
back: '<b>u</b> Back'
|
||||
up_down: '<b>k</b>/<b>j</b> Move selection up/down'
|
||||
open: '<b>o</b> or <b>Enter</b> Open selected topic'
|
||||
next_prev: '<b>`</b>/<b>~</b> Next/previous section'
|
||||
next_prev: '<b>shift j</b>/<b>shift k</b> Next/previous section'
|
||||
application:
|
||||
title: 'Application'
|
||||
create: '<b>c</b> Create a new topic'
|
||||
|
|
Loading…
Reference in New Issue