mirror of
https://github.com/filebrowser/filebrowser.git
synced 2025-06-17 06:43:00 +00:00

Former-commit-id: 5624723eeb939734902eeaa6c2f132c4beffa911 [formerly a83456d3eda5175e2941b2deeb58b5da323ff678] [formerly a6b3ac7942dbf48d7d9b3f8db5e5041a93143f19 [formerly 4d6b54c63ee21bd01854188b2ad82115948ff7fe]] Former-commit-id: d03621c16b2c892701d678361b6c0a7d5dbec620 [formerly d818b6751e035f283e1c8390d7993a33a459a7dd] Former-commit-id: 3539ee68532135467daa2cc175482769b1efb592
35 lines
1.1 KiB
Vue
35 lines
1.1 KiB
Vue
<template>
|
|
<div class="card floating help">
|
|
<div class="card-title">
|
|
<h2>{{ $t('help.help') }}</h2>
|
|
</div>
|
|
|
|
<div class="card-content">
|
|
<ul>
|
|
<li><strong>F1</strong> - {{ $t('help.f1') }}</li>
|
|
<li><strong>F2</strong> - {{ $t('help.f2') }}</li>
|
|
<li><strong>DEL</strong> - {{ $t('help.del') }}</li>
|
|
<li><strong>ESC</strong> - {{ $t('help.esc') }}</li>
|
|
<li><strong>CTRL + S</strong> - {{ $t('help.ctrl.s') }}</li>
|
|
<li><strong>CTRL + F</strong> - {{ $t('help.ctrl.f') }}</li>
|
|
<li><strong>CTRL + Click</strong> - {{ $t('help.ctrl.click') }}</li>
|
|
<li><strong>Click</strong> - {{ $t('help.click') }}</li>
|
|
<li><strong>Double click</strong> - {{ $t('help.doubleClick') }}</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="card-action">
|
|
<button type="submit"
|
|
@click="$store.commit('closeHovers')"
|
|
class="flat"
|
|
:aria-label="$t('buttons.ok')"
|
|
:title="$t('buttons.ok')">{{ $t('buttons.ok') }}</button>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {name: 'help'}
|
|
</script>
|
|
|