feat: allow collapsing widget content, add categories widget

(cherry picked from commit 9a4ca8f6163d5e1375aa7c612e1338cce5a8c0b5)
This commit is contained in:
saicaca
2023-10-11 22:29:23 +08:00
parent 83b765a398
commit f4dc88e982
16 changed files with 174 additions and 33 deletions

View File

@@ -21,6 +21,8 @@ enum I18nKey {
postsCount = "postsCount",
primaryColor = "primaryColor",
more = "more",
}
export default I18nKey;

View File

@@ -24,4 +24,6 @@ export const en: Translation = {
[Key.postsCount]: "posts",
[Key.primaryColor]: "Primary Color",
[Key.more]: "More",
};

View File

@@ -24,4 +24,6 @@ export const zh_CN: Translation = {
[Key.postsCount]: "篇文章",
[Key.primaryColor]: "主题色",
[Key.more]: "更多",
};

View File

@@ -24,4 +24,6 @@ export const zh_TW: Translation = {
[Key.postsCount]: "篇文章",
[Key.primaryColor]: "主題色",
[Key.more]: "更多",
};