2023-10-06 02:53:47 +08:00
|
|
|
enum I18nKey {
|
2024-01-21 12:54:41 +08:00
|
|
|
home = 'home',
|
|
|
|
about = 'about',
|
|
|
|
archive = 'archive',
|
2023-10-06 02:53:47 +08:00
|
|
|
|
2024-01-21 12:54:41 +08:00
|
|
|
tags = 'tags',
|
|
|
|
categories = 'categories',
|
|
|
|
recentPosts = 'recentPosts',
|
2023-10-06 02:53:47 +08:00
|
|
|
|
2024-01-21 12:54:41 +08:00
|
|
|
comments = 'comments',
|
2023-10-06 02:53:47 +08:00
|
|
|
|
2024-01-21 12:54:41 +08:00
|
|
|
untitled = 'untitled',
|
|
|
|
uncategorized = 'uncategorized',
|
|
|
|
noTags = 'noTags',
|
2023-10-06 02:53:47 +08:00
|
|
|
|
2024-01-21 12:54:41 +08:00
|
|
|
wordCount = 'wordCount',
|
|
|
|
wordsCount = 'wordsCount',
|
|
|
|
minuteCount = 'minuteCount',
|
|
|
|
minutesCount = 'minutesCount',
|
|
|
|
postCount = 'postCount',
|
|
|
|
postsCount = 'postsCount',
|
2023-10-06 02:53:47 +08:00
|
|
|
|
2024-01-21 12:54:41 +08:00
|
|
|
primaryColor = 'primaryColor',
|
2023-10-11 22:29:23 +08:00
|
|
|
|
2024-01-21 12:54:41 +08:00
|
|
|
more = 'more',
|
2023-11-03 14:10:54 +08:00
|
|
|
|
2024-01-21 12:54:41 +08:00
|
|
|
author = 'author',
|
|
|
|
publishedAt = 'publishedAt',
|
|
|
|
license = 'license',
|
2023-10-06 02:53:47 +08:00
|
|
|
}
|
|
|
|
|
2024-01-21 12:54:41 +08:00
|
|
|
export default I18nKey
|