repos
/ timelite-nextjs master

timelite-nextjs

mirror archived upstream

A dead simple time tracker that keeps everything in local storage. Next.js, no accounts and no server.

handcodedlocalstoragenextjsreactself-hostedserverlesstime-trackingtimer

506 B · 28 lines · JavaScript Raw History
 1import LocalizedStrings from "react-localization";
 2
 3const strings = new LocalizedStrings({
 4  en: {
 5    name: "Timelite",
 6    timer: "Timer",
 7    log: "Log",
 8    about: "About",
 9    summary: "Summary",
10  },
11  jp: {
12    name: "タイムライト",
13    timer: "タイマー",
14    log: "ログ",
15    about: "について",
16    summary: "概要",
17  },
18  pl: {
19    name: "Timelite",
20    timer: "Zegar",
21    log: "Dziennik",
22    about: "O Timelite",
23    summary: "Streszczenie",
24  },
25});
26
27export default strings;