blog/src/i18n/i18nKey.ts

33 lines
591 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',
2023-11-03 14:10:54 +08:00
author = 'author',
publishedAt = 'publishedAt',
license = 'license',
}
export default I18nKey