1 2 3 4 5 6 7 8 9 10 11 12 13
import type {BaseTranslation} from "../i18n-types"; const en: BaseTranslation = { stopwatch: { roundUp: "Round up", roundDown: "Round down", createEntry: "Create entry", whatsYourFocus: "What's your focus?", reset: "Reset" } }; export default en;