Anki/ts/editor/PreviewButton.svelte
Henrik Giesel 8a839a844e Move lib/i18n/translate to lib/translate
* This restores tree shaking
2021-10-04 02:34:03 +02:00

22 lines
797 B
Svelte

<!--
Copyright: Ankitects Pty Ltd and contributors
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
-->
<script lang="typescript">
import { bridgeCommand } from "../lib/bridgecommand";
import * as tr from "../lib/translate";
import { withButton } from "../components/helpers";
import WithShortcut from "../components/WithShortcut.svelte";
import LabelButton from "../components/LabelButton.svelte";
</script>
<WithShortcut shortcut={"Control+Shift+P"} let:createShortcut let:shortcutLabel>
<LabelButton
tooltip={tr.browsingPreviewSelectedCard({ val: shortcutLabel })}
on:click={() => bridgeCommand("preview")}
on:mount={withButton(createShortcut)}
>
{tr.actionsPreview()}
</LabelButton>
</WithShortcut>