From 9ccfe889b41283538840fe406d090c831277daf4 Mon Sep 17 00:00:00 2001 From: QihanNX Date: Sat, 13 Jun 2026 16:47:59 +0800 Subject: [PATCH] Delete src/i18n/lang/en.ts --- src/i18n/lang/en.ts | 71 --------------------------------------------- 1 file changed, 71 deletions(-) delete mode 100644 src/i18n/lang/en.ts diff --git a/src/i18n/lang/en.ts b/src/i18n/lang/en.ts deleted file mode 100644 index 4d0a79c..0000000 --- a/src/i18n/lang/en.ts +++ /dev/null @@ -1,71 +0,0 @@ -import type { UIStrings } from "../types"; - -export default { - nav: { - home: "Home", - posts: "Posts", - tags: "Tags", - about: "About", - archives: "Archives", - search: "Search", - }, - post: { - publishedAt: "Published at", - updatedAt: "Updated", - sharePostIntro: "Share this post:", - sharePostOn: "Share this post on {{platform}}", - sharePostViaEmail: "Share this post via email", - tagLabel: "Tags", - backToTop: "Back to top", - goBack: "Go back", - editPage: "Edit page", - previousPost: "Previous Post", - nextPost: "Next Post", - }, - pagination: { - prev: "Prev", - next: "Next", - page: "Page", - }, - home: { - socialLinks: "Social Links", - featured: "Featured", - recentPosts: "Recent Posts", - allPosts: "All Posts", - }, - footer: { - copyright: "Copyright", - allRightsReserved: "All rights reserved.", - }, - pages: { - tagTitle: "Tag", - tagDesc: "All the articles with the tag", - - tagsTitle: "Tags", - tagsDesc: "All the tags used in posts.", - - postsTitle: "Posts", - postsDesc: "All the articles I've posted.", - - archivesTitle: "Archives", - archivesDesc: "All the articles I've archived.", - - searchTitle: "Search", - searchDesc: "Search any article ...", - }, - a11y: { - skipToContent: "Skip to content", - openMenu: "Open menu", - closeMenu: "Close menu", - toggleTheme: "Toggle theme", - searchPlaceholder: "Search posts...", - noResults: "No results found", - goToPreviousPage: "Go to previous page", - goToNextPage: "Go to next page", - }, - notFound: { - title: "404 Not Found", - message: "Page Not Found", - goHome: "Go back home", - }, -} satisfies UIStrings;