A dead simple time tracker that keeps everything in local storage. Next.js, no accounts and no server.
handcodedlocalstoragenextjsreactself-hostedserverlesstime-trackingtimer
1import LocalizedStrings from "react-localization";
2
3const strings = new LocalizedStrings({
4 en: {
5 note: "Add a note with a #tag",
6 reset: "Reset",
7 add: "Add",
8 pause: "Pause",
9 resume: "Resume",
10 paused: "Paused",
11 },
12 jp: {
13 note: "#tagでメモを追加",
14 reset: "リセット",
15 add: "追加する",
16 pause: "一時停止",
17 resume: "再開",
18 paused: "一時停止中",
19 },
20 pl: {
21 note: "Dodaj wpis z #tagiem",
22 reset: "Zeruj",
23 add: "Dodaj",
24 pause: "Pauza",
25 resume: "Wznów",
26 paused: "Zatrzymany",
27 },
28});
29
30export default strings;