blob: 9db175984c419d03128d69e5ee1b491197f38ec3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
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",
start: "Start",
stop: "Stop",
},
localeSwitcher: {
language: "Language"
}
};
export default en;
|