mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
More i18n
This commit is contained in:
parent
5d536f2f8e
commit
8c0d1d1720
1 changed files with 3 additions and 3 deletions
|
@ -2,7 +2,7 @@
|
|||
import type { Writable } from "svelte/store";
|
||||
import AnswerButton from "./AnswerButton.svelte";
|
||||
import { bridgeCommand } from "@tslib/bridgecommand";
|
||||
import * as tr from "@generated/ftl"
|
||||
import * as tr from "@generated/ftl";
|
||||
|
||||
export let answerButtons: Writable<AnswerButtonInfo[]>
|
||||
$: console.log($answerButtons)
|
||||
|
@ -19,11 +19,11 @@
|
|||
<AnswerButton info={answerButton}></AnswerButton>
|
||||
{/each}
|
||||
{:else}
|
||||
<button on:click={()=>bridgeCommand("ans")}>Review Buttons</button>
|
||||
<button on:click={()=>bridgeCommand("ans")}>{tr.studyingShowAnswer()}</button>
|
||||
{/if}
|
||||
</div>
|
||||
<div>
|
||||
<button>More</button>
|
||||
<button title={tr.actionsShortcutKey({val: "M"})}>{tr.studyingMore()}↧</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue