blog/src/i18n/i18nKey.ts

28 lines
551 B
TypeScript
Raw Normal View History

enum I18nKey {
home = "home",
about = "about",
archive = "archive",
tags = "tags",
categories = "categories",
recentPosts = "recentPosts",
comments = "comments",
untitled = "untitled",
uncategorized = "uncategorized",
noTags = "noTags",
wordCount = "wordCount",
wordsCount = "wordsCount",
minuteCount = "minuteCount",
minutesCount = "minutesCount",
postCount = "postCount",
postsCount = "postsCount",
primaryColor = "primaryColor",
more = "more",
}
export default I18nKey;