mirror of
https://github.com/filebrowser/filebrowser.git
synced 2025-05-10 20:22:59 +00:00
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="button button--flat"
|
|
:aria-label="$t('buttons.ok')"
|
|
:title="$t('buttons.ok')">{{ $t('buttons.ok') }}</button>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default { name: 'help' }
|
|
</script>
|
|
|