39 lines
829 B
TypeScript
39 lines
829 B
TypeScript
import Key from "../i18nKey";
|
|
import type { Translation } from "../translation";
|
|
|
|
export const en: Translation = {
|
|
[Key.home]: "Home",
|
|
[Key.about]: "About",
|
|
[Key.archive]: "Archive",
|
|
[Key.search]: "Search",
|
|
|
|
[Key.tags]: "Tags",
|
|
[Key.categories]: "Categories",
|
|
[Key.recentPosts]: "Recent Posts",
|
|
|
|
[Key.comments]: "Comments",
|
|
|
|
[Key.untitled]: "Untitled",
|
|
[Key.uncategorized]: "Uncategorized",
|
|
[Key.noTags]: "No Tags",
|
|
|
|
[Key.wordCount]: "word",
|
|
[Key.wordsCount]: "words",
|
|
[Key.minuteCount]: "minute",
|
|
[Key.minutesCount]: "minutes",
|
|
[Key.postCount]: "post",
|
|
[Key.postsCount]: "posts",
|
|
|
|
[Key.themeColor]: "Theme Color",
|
|
|
|
[Key.lightMode]: "Light",
|
|
[Key.darkMode]: "Dark",
|
|
[Key.systemMode]: "System",
|
|
|
|
[Key.more]: "More",
|
|
|
|
[Key.author]: "Author",
|
|
[Key.publishedAt]: "Published at",
|
|
[Key.license]: "License",
|
|
};
|