blob: d7f557de83e409080a41f430b9cd710447b8b361 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import type {Translation} from "../i18n-types";
const nb: Translation = {
stopwatch: {
roundUp: "Rund opp",
roundDown: "Rund ned",
createEntry: "Opprett tidsoppføring",
whatsYourFocus: "Hva skal du fokusere på?",
reset: "Tilbakestill"
}
};
export default nb;
|