506 B
raw
import LocalizedStrings from "react-localization";
const strings = new LocalizedStrings({
en: {
name: "Timelite",
timer: "Timer",
log: "Log",
about: "About",
summary: "Summary",
},
jp: {
name: "タイムライト",
timer: "タイマー",
log: "ログ",
about: "について",
summary: "概要",
},
pl: {
name: "Timelite",
timer: "Zegar",
log: "Dziennik",
about: "O Timelite",
summary: "Streszczenie",
},
});
export default strings;