Change RecentNotes link text to Chinese

Updated the link text for RecentNotes component to Chinese.
This commit is contained in:
enneaa 2025-12-09 21:44:59 +08:00 committed by GitHub
parent 4e988e98f7
commit 0d4af831e0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -38,13 +38,13 @@ export const defaultContentPageLayout: PageLayout = {   
{ Component: Component.ReaderMode() }, { Component: Component.ReaderMode() },
], ],
}), }),
Component.DesktopOnly(Component.Explorer()),
Component.DesktopOnly(Component.RecentNotes({ Component.DesktopOnly(Component.RecentNotes({
title: "最近更新", title: "最近更新",
showTags: false, showTags: false,
limit: 5, limit: 5,
linkToMore: "pages", linkToMore: "页面",
})), })),
// Component.Explorer(),
], ],
right: [ right: [
Component.DesktopOnly(Component.TagList()),  Component.DesktopOnly(Component.TagList()), 
@ -71,11 +71,12 @@ export const defaultContentPageLayout: PageLayout = {   
inputPosition: "bottom", inputPosition: "bottom",
} }
}), }),
Component.MobileOnly(Component.Explorer()),
Component.MobileOnly(Component.RecentNotes({  Component.MobileOnly(Component.RecentNotes({ 
title: "最近更新", title: "最近更新",
showTags: false, showTags: false,
limit: 5, limit: 5,
linkToMore: "pages", linkToMore: "页面",
})), })),
], ],
} }