blob: a1d5f531ccf83830ab77b90593125de6bd2e02fc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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",
start: "Start",
stop: "Stopp",
}
};
export default nb;
|