mirror of
https://github.com/ankitects/anki.git
synced 2025-12-21 19:02:57 -05:00
- This way, we can restrict the awkwardness of importing files outside the ts directory within lib
10 lines
355 B
TypeScript
10 lines
355 B
TypeScript
// Copyright: Ankitects Pty Ltd and contributors
|
|
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
import { tr } from "../lib/i18n";
|
|
|
|
export const reviewMixChoices = (): string[] => [
|
|
tr.deckConfigReviewMixMixWithReviews(),
|
|
tr.deckConfigReviewMixShowAfterReviews(),
|
|
tr.deckConfigReviewMixShowBeforeReviews(),
|
|
];
|