Skip to content
Snippets Groups Projects
Commit f7a3f3ad authored by Robert Goldmann's avatar Robert Goldmann
Browse files

#540 - added hotkey to hotkey overview

parent cb8a4288
Branches
Tags
No related merge requests found
......@@ -355,6 +355,9 @@ hotkeys.transactions.new.transfer=Neue Umbuchung anlegen
hotkeys.transactions.new.transfer.key=t
hotkeys.transactions.new.template=Neue Buchung aus Vorlage anlegen
hotkeys.transactions.new.template.key=v
hotkeys.transactions.save.modifier=Strg
hotkeys.transactions.save.key=Enter
hotkeys.transactions.save=Buchung speichern (Beim Anlegen/Editieren einer Buchung)
hotkeys.transactions.filter=Filtern
hotkeys.transactions.filter.key=f
hotkeys.search=Suchen
......
......@@ -355,6 +355,9 @@ hotkeys.transactions.new.transfer=Create a transfer
hotkeys.transactions.new.transfer.key=t
hotkeys.transactions.new.template=Create a transaction from template
hotkeys.transactions.new.template.key=v
hotkeys.transactions.save.modifier=Ctrl
hotkeys.transactions.save.key=Enter
hotkeys.transactions.save=Save transaction (When creating/editing a transaction)
hotkeys.transactions.filter=Filter
hotkeys.transactions.filter.key=f
hotkeys.search=Search
......
......@@ -7,3 +7,7 @@
display: inline-block;
margin-right: 2rem;
}
.modifier-key {
margin-right: 0;
}
\ No newline at end of file
......@@ -7,3 +7,7 @@
display: inline-block;
margin-right: 2rem;
}
.modifier-key {
margin-right: 0;
}
\ No newline at end of file
......@@ -34,6 +34,10 @@
<@cellKey locale.getString("hotkeys.transactions.new.template.key")/>
<div class="col s8 m5 l5">${locale.getString("hotkeys.transactions.new.template")}</div>
</div>
<div class="row">
<@cellKeyWithModifier locale.getString("hotkeys.transactions.save.modifier") locale.getString("hotkeys.transactions.save.key")/>
<div class="col s8 m5 l5">${locale.getString("hotkeys.transactions.save")}</div>
</div>
<div class="row">
<@cellKey locale.getString("hotkeys.transactions.filter.key")/>
<div class="col s8 m5 l5">${locale.getString("hotkeys.transactions.filter")}</div>
......@@ -56,3 +60,11 @@
<div class="keyboard-key">${key}</div>
</div>
</#macro>
<#macro cellKeyWithModifier modifier key>
<div class="col s4 m3 offset-m2 l2 offset-l3 right-align bold">
<div class="keyboard-key modifier-key">${modifier}</div>
<span class="bold">+</span>
<div class="keyboard-key">${key}</div>
</div>
</#macro>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment