aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web-shared/src/lib/i18n/en/index.ts
blob: 65fc0dfd116f006f67a65d7b5a14825c3951d09f (plain) (blame)
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;