diff --git a/frontend/src/routes/study/cards-study/+page.svelte b/frontend/src/routes/study/cards-study/+page.svelte index 4ab46f2..978f301 100644 --- a/frontend/src/routes/study/cards-study/+page.svelte +++ b/frontend/src/routes/study/cards-study/+page.svelte @@ -29,7 +29,7 @@ if (stage === null || stage === undefined) return '안 나옴'; const ns = stage + 1; if (ns >= 4) return '졸업'; - return `+${REVIEW_INTERVAL_DAYS[ns]}일`; + return `${REVIEW_INTERVAL_DAYS[ns]}일 뒤`; } let mode = $state('landing'); // 'landing' | 'review' | 'cram' @@ -279,10 +279,10 @@ >
-

그냥 공부 (휙휙)

+

그냥 공부

- 덜 본 카드부터 빠르게 넘겨보며 봤다만 기록합니다. 간격반복(SR)과 무관 — 가볍게 훑을 때. + 아직 덜 본 카드부터 가볍게 넘겨보며 봤어요만 기록해요. 복습 일정과는 무관해요.

@@ -294,21 +294,21 @@
{#if mode === 'review'} -
오늘 카드 복습 완료
+
오늘 복습을 마쳤어요
{tally.correct}
{tally.unsure}
애매
{tally.wrong}
모름
-

애매·모름 카드는 내일 복습 큐에 다시 올라옵니다. 암 카드는 간격만큼 쉬어요.

+

애매하거나 몰랐던 카드는 내일 다시 만나요. 외운 카드는 간격만큼 쉬어요.

{:else}
훑어보기 완료
{seen}
-

'봤다'로 기록한 카드는 다음에 덜 본 순서에서 뒤로 갑니다.

+

'봤어요'로 표시한 카드는 다음엔 덜 본 순서 뒤로 가요.

{/if}
- +
@@ -359,7 +359,7 @@ type="button" onclick={flagCard} disabled={flagBusy || busy} - class="flex items-center gap-1 text-[11px] text-faint transition-colors hover:text-warning disabled:opacity-50" + class="flex items-center gap-1 rounded-full border border-default px-2.5 py-1 text-[11px] font-medium text-dim transition-colors hover:border-warning hover:bg-warning/10 hover:text-warning disabled:opacity-50" title="카드 내용이 이상하면 검수함으로 보냅니다" > 이 카드 이상해요 @@ -367,7 +367,7 @@
- 앞 — {current.format === 'qa' ? '질문' : '회상'} + 앞 — {current.format === 'qa' ? '질문' : '떠올리기'}
{@html renderMathMarkdownInline(frontText(current))}
@@ -389,7 +389,7 @@ onclick={() => (revealed = true)} class="mt-auto flex items-center justify-center gap-2 rounded-md border border-dashed border-accent-ring bg-surface-hover py-3 text-sm font-medium text-accent transition-colors hover:bg-accent/5" > - 탭하여 정답 보기 (Space) + 탭하면 정답이 보여요 {/if} @@ -402,12 +402,12 @@ onclick={() => rate('모름')} disabled={busy} class="flex flex-col items-center rounded-lg bg-error py-3.5 text-sm font-bold text-white transition-opacity hover:opacity-90 disabled:opacity-50" - >모름내일 + >모름내일 다시 + >애매내일 다시 + >봤어요 · 다음 {/if} {/if}