% _.each(d.shortcuts, function(shortcutGroup, groupName){ %>
<%=d.i18n(groupName)%>
<% _.each(shortcutGroup, function(shortcut, shortcutName){%>
- <%-d.i18n(shortcutName)%>
-
<% if(_.isString(shortcut)){ %>
<%= shortcut %>
<% } else if(_.isArray(shortcut)){ %>
<% _.each(shortcut, function(shortcutPart, index){ %>
<% if(index>0){ %> + <%}%> <%=shortcutPart%>
<% }); %>
<% } else if(_.isObject(shortcut)){ %>
<% _.each(shortcut.shortcuts, function(shortcutCombo, index){ %>
<% if(index>0){ %>
<%-d.i18n(shortcut.keyword)%>
<% } %>
<% _.each(shortcutCombo, function(shortcutPart, partIndex){%>
<% if(partIndex>0){ %> + <%}%> <%=shortcutPart%>
<% }); %>
<% }); %>
<% } %>
<% }); %>
<% }); %>