@jant/core 0.6.10 → 0.6.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (92) hide show
  1. package/bin/commands/import-site.js +45 -20
  2. package/dist/app-B5P1b4TF.js +6 -0
  3. package/dist/{app-CGHkOdme.js → app-D-zAhayc.js} +847 -244
  4. package/dist/client/.vite/manifest.json +3 -3
  5. package/dist/client/_assets/client-BUxR-E8O.css +2 -0
  6. package/dist/client/_assets/{client-DYrWuaIk.js → client-S1cdvulk.js} +1 -1
  7. package/dist/client/_assets/{client-auth-B5Re0uCd.js → client-auth-YW92ZH7u.js} +158 -97
  8. package/dist/{export-DY1v5Iqu.js → export-Ckwh4BiE.js} +96 -96
  9. package/dist/{github-sync-LefaslGJ.js → github-sync-BMmK3JZ0.js} +2 -2
  10. package/dist/{github-sync-2_T7nbOv.js → github-sync-Dl9wQMar.js} +1 -1
  11. package/dist/index.js +3 -3
  12. package/dist/node.js +4 -4
  13. package/package.json +1 -1
  14. package/src/__tests__/import-site-command.test.ts +75 -0
  15. package/src/__tests__/vite-dev-plugins.test.ts +34 -0
  16. package/src/client/__tests__/compose-launch.test.ts +50 -1
  17. package/src/client/__tests__/compose-shortcuts.test.ts +74 -18
  18. package/src/client/components/__tests__/jant-command-palette.test.ts +63 -0
  19. package/src/client/components/__tests__/jant-compose-dialog.test.ts +33 -0
  20. package/src/client/components/__tests__/jant-compose-editor-rehost-notice.test.ts +81 -0
  21. package/src/client/components/__tests__/jant-nav-manager.test.ts +77 -1
  22. package/src/client/components/__tests__/jant-settings-avatar.test.ts +6 -0
  23. package/src/client/components/__tests__/jant-settings-general.test.ts +71 -0
  24. package/src/client/components/compose-types.ts +4 -0
  25. package/src/client/components/jant-command-palette.ts +67 -2
  26. package/src/client/components/jant-compose-dialog.ts +8 -2
  27. package/src/client/components/jant-compose-editor.ts +111 -0
  28. package/src/client/components/jant-nav-manager.ts +142 -2
  29. package/src/client/components/jant-settings-general.ts +56 -0
  30. package/src/client/components/nav-manager-types.ts +14 -0
  31. package/src/client/components/settings-types.ts +30 -0
  32. package/src/client/compose-bridge.ts +25 -8
  33. package/src/client/compose-launch.ts +30 -0
  34. package/src/client/compose-shortcuts.ts +46 -3
  35. package/src/client/tiptap/__tests__/inline-image-upload.test.ts +143 -0
  36. package/src/client/tiptap/__tests__/paste-rehost-e2e.test.ts +65 -0
  37. package/src/client/tiptap/__tests__/rehost-images.test.ts +192 -0
  38. package/src/client/tiptap/create-editor.ts +3 -0
  39. package/src/client/tiptap/extensions.ts +4 -0
  40. package/src/client/tiptap/inline-image-upload.ts +174 -50
  41. package/src/client/tiptap/rehost-images.ts +108 -0
  42. package/src/i18n/__tests__/fallback.test.ts +24 -0
  43. package/src/i18n/locales/public/en.po +10 -0
  44. package/src/i18n/locales/public/en.ts +1 -1
  45. package/src/i18n/locales/public/zh-Hans.po +10 -0
  46. package/src/i18n/locales/public/zh-Hans.ts +1 -1
  47. package/src/i18n/locales/public/zh-Hant.po +10 -0
  48. package/src/i18n/locales/public/zh-Hant.ts +1 -1
  49. package/src/i18n/locales/settings/en.po +54 -0
  50. package/src/i18n/locales/settings/en.ts +1 -1
  51. package/src/i18n/locales/settings/zh-Hans.po +64 -10
  52. package/src/i18n/locales/settings/zh-Hans.ts +1 -1
  53. package/src/i18n/locales/settings/zh-Hant.po +56 -2
  54. package/src/i18n/locales/settings/zh-Hant.ts +1 -1
  55. package/src/lib/__tests__/feed.test.ts +96 -10
  56. package/src/lib/__tests__/upload-sideload.test.ts +78 -0
  57. package/src/lib/__tests__/url-fetch.test.ts +181 -0
  58. package/src/lib/feed.ts +63 -3
  59. package/src/lib/post-display.ts +14 -8
  60. package/src/lib/upload.ts +111 -0
  61. package/src/lib/url-fetch.ts +263 -0
  62. package/src/preset.css +60 -18
  63. package/src/routes/api/__tests__/uploads.test.ts +63 -1
  64. package/src/routes/api/uploads.ts +52 -0
  65. package/src/routes/dash/settings.tsx +41 -2
  66. package/src/routes/pages/__tests__/draft-about-edit.test.ts +65 -0
  67. package/src/routes/pages/page.tsx +44 -12
  68. package/src/services/__tests__/about-page.test.ts +116 -0
  69. package/src/services/__tests__/media.test.ts +168 -1
  70. package/src/services/__tests__/navigation.test.ts +190 -1
  71. package/src/services/__tests__/post-timeline.test.ts +119 -2
  72. package/src/services/about-page.ts +143 -0
  73. package/src/services/export-theme/layouts/_default/rss.xml +2 -1
  74. package/src/services/export-theme/layouts/partials/feed-post-content.xml +25 -1
  75. package/src/services/export-theme/styles/main.css +46 -14
  76. package/src/services/index.ts +27 -17
  77. package/src/services/media.ts +111 -0
  78. package/src/services/navigation.ts +155 -1
  79. package/src/services/post.ts +24 -7
  80. package/src/styles/components.css +20 -0
  81. package/src/styles/tokens.css +26 -8
  82. package/src/styles/ui.css +149 -7
  83. package/src/types/views.ts +13 -0
  84. package/src/ui/compose/ComposeDialog.tsx +16 -0
  85. package/src/ui/dash/appearance/NavigationContent.tsx +57 -0
  86. package/src/ui/dash/appearance/__tests__/NavigationContent.test.tsx +19 -0
  87. package/src/ui/dash/settings/GeneralContent.tsx +44 -0
  88. package/src/ui/dash/settings/__tests__/GeneralContent.test.tsx +8 -0
  89. package/src/ui/feed/__tests__/timeline-cards.test.ts +162 -1
  90. package/src/ui/layouts/BaseLayout.tsx +12 -0
  91. package/dist/app-D24n0DoH.js +0 -6
  92. package/dist/client/_assets/client-xWDl78yi.css +0 -2
@@ -1,7 +1,7 @@
1
1
  import { _ as toPublicPath, a as getSitePathPrefix, b as __exportAll, c as normalizePath, d as sanitizeUrl, f as slugify, g as toPublicHref, h as toAbsoluteSiteUrl, i as getSiteOrigin, m as toAbsoluteAssetUrl, n as extractDisplayDomain, o as isFullUrl, p as stripSitePathPrefix, r as extractDomain, s as isSafeInternalRedirect, t as buildSiteUrl, u as normalizeSiteUrl, v as toSameSitePath } from "./url-BMYO-Zlt.js";
2
- import { A as JANT_POSITIVE_LOGO_PNG_FILENAME, B as getJantLogoHref, C as formatYearMonth, D as HOME_BRANDING_LINK_LABEL, E as toISOString, F as getJantBundledAsset, G as base64ToUint8Array, H as JANT_LOGO_PATH_DATA, I as getJantIconFilename, L as getJantIconHref, M as getDefaultJantAppleTouchIconBytes, N as getDefaultJantFaviconIcoBytes, O as HOME_BRANDING_PREFIX, P as getJantBrandPackHref, R as getJantLogoFilename, S as formatTime, U as JANT_LOGO_VIEW_BOX, V as getJantPositiveLogoPngHref, W as arrayBufferToBase64, _ as getMediaUrl, b as formatRelativeAge, d as extractSummaryHtml, f as renderTiptapDocument, g as getImageUrl, h as escapeHtml, i as tiptapJsonToMarkdown, j as JANT_REPO_URL, k as JANT_BRAND_PACK_FILENAME, l as extractBodyText, m as trimTiptapBody, o as render, p as renderTiptapJson, s as toPlainText, t as createExportService, u as extractSummary, v as getPublicUrlForProvider, w as now, x as formatRelativeTime, y as formatDate, z as getJantLogoFills } from "./export-DY1v5Iqu.js";
2
+ import { A as JANT_POSITIVE_LOGO_PNG_FILENAME, B as getJantLogoHref, C as toISOString, D as HOME_BRANDING_LINK_LABEL, E as getPublicUrlForProvider, F as getJantBundledAsset, G as base64ToUint8Array, H as JANT_LOGO_PATH_DATA, I as getJantIconFilename, L as getJantIconHref, M as getDefaultJantAppleTouchIconBytes, N as getDefaultJantFaviconIcoBytes, O as HOME_BRANDING_PREFIX, P as getJantBrandPackHref, R as getJantLogoFilename, T as getMediaUrl, U as JANT_LOGO_VIEW_BOX, V as getJantPositiveLogoPngHref, W as arrayBufferToBase64, _ as formatRelativeAge, b as formatYearMonth, d as extractSummaryHtml, f as renderTiptapDocument, g as formatDate, h as escapeHtml, i as tiptapJsonToMarkdown, j as JANT_REPO_URL, k as JANT_BRAND_PACK_FILENAME, l as extractBodyText, m as trimTiptapBody, o as render, p as renderTiptapJson, s as toPlainText, t as createExportService, u as extractSummary, v as formatRelativeTime, w as getImageUrl, x as now, y as formatTime, z as getJantLogoFills } from "./export-Ckwh4BiE.js";
3
3
  import { S as getTelegramWebhookSecret, T as coalesceDisplayText, _ as getInternalAdminToken, a as getConfiguredSingleSiteUrl, b as getSiteResolutionMode, c as getDevApiToken, d as getHostedControlPlaneBaseUrl, f as getHostedControlPlaneDomainCheckSecret, g as getHostedControlPlaneSsoSecret, h as getHostedControlPlaneProviderLabel$1, i as getConfiguredSingleSitePathPrefix, l as getEnvString, m as getHostedControlPlaneInternalToken, n as getAuthSecret, o as getConfiguredStorageDriver, p as getHostedControlPlaneInternalBaseUrl, r as getConfiguredSingleSiteOrigin, s as getCorsOrigins, u as getGitHubAppConfig, v as getLocalStoragePath, w as shouldUseSecureCookies, x as getTelegramBotPool } from "./env-OHRKGcMj.js";
4
- import { l as markdownToTiptapJson, o as createGitHubSyncService } from "./github-sync-2_T7nbOv.js";
4
+ import { l as markdownToTiptapJson, o as createGitHubSyncService } from "./github-sync-Dl9wQMar.js";
5
5
  import { a as listInstallationReposPage, n as getInstallation, o as searchInstallationRepos, t as buildInstallUrl } from "./github-app-BbklkFmU.js";
6
6
  import { r as parseRepoSlug, t as createGitHubClient } from "./github-api-BgSiE71w.js";
7
7
  import { I18n } from "@lingui/core";
@@ -1913,16 +1913,16 @@ var Hono = class extends Hono$1 {
1913
1913
  }
1914
1914
  //#endregion
1915
1915
  //#region src/i18n/locales/public/en.ts
1916
- var messages$3 = JSON.parse("{\"+4u2g6\":[\"A ready-made 1:1 PNG for decks, mockups, directories, and other square placements.\"],\"+DPYOZ\":[\"Add a link to your main RSS feed. Change what /feed returns in General.\"],\"+G8qqW\":[\"Collection saved.\"],\"+IJm1Z\":[\"Muted\"],\"+Irvp3\":[\"Everything on this page is ready to use for articles, launch posts, directories, and product coverage.\"],\"+Qaboy\":[\"Favicon\"],\"+fWu2O\":[\"A calmer, warmer accent makes the default theme feel quieter and more intentional.\"],\"+nHhRH\":[\"Use \",[\"brandColorName\"]],\"+siMqD\":[\"Journal\"],\"/DFKdU\":[\"Type the quote...\"],\"/PfPLc\":[\"Label (optional)\"],\"/PoNoq\":[\"Edit link\"],\"/Ui2OV\":[\"Use the reverse logo on dark backgrounds.\"],\"/Ybds4\":[\"Primary Jant logo for websites, docs, press coverage, and editorial layouts.\"],\"/rTz0M\":[\"Audio\"],\"0EcUWz\":[\"Discard changes?\"],\"0Lj7or\":[\"Save text attachment?\"],\"0XDp7X\":[\"Links should read clearly without glowing against the page.\"],\"0ieXE7\":[\"Highest rated\"],\"11h9eK\":[\"Includes\"],\"15++NM\":[\"Inline emphasis\"],\"1DBGsz\":[\"Notes\"],\"1NeeWI\":[\"Square assets for avatars, apps, browsers, and shared links\"],\"1THMr2\":[\"Brand pack\"],\"1njn7W\":[\"Light\"],\"2B7HLH\":[\"New post\"],\"2C7mSG\":[\"Collection link\"],\"2ETv7R\":[\"Tune color in a real reading context\"],\"2HbvFp\":[\"Real post components\"],\"2MXb5X\":[\"Field notes on quiet design\"],\"2koDOQ\":[\"Thread accents\"],\"2lKpcz\":[\"Write your first post to get started.\"],\"2q/Q7x\":[\"Visibility\"],\"2sCqzD\":[\"Use this for websites, docs, articles, and other light or neutral surfaces.\"],\"33DClx\":[\"Link to your latest posts. If it comes before Featured, the homepage opens here.\"],\"3Cw1AI\":[\"Add Collection\"],\"3lJk5u\":[\"Keep the artwork unchanged.\"],\"3mdteM\":[\"before deciding whether the accent is carrying too much product energy.\"],\"3neqtf\":[\"Thread accent\"],\"3qkggm\":[\"Fullscreen\"],\"3vMdv3\":[\"This link is reserved. Choose something else.\"],\"3wKq0C\":[\"Couldn't save. Try again in a moment.\"],\"3xi01/\":[\"Look at the footer metadata last, to make sure the accent is not fighting the typography.\"],\"47iMgt\":[\"Editorial interfaces worth borrowing from\"],\"4D09NB\":[\"Link to your collections page\"],\"4HLTdq\":[\"without media\"],\"4J/OYU\":[\"Collection created.\"],\"4eiXo+\":[\"Leave blank to generate one automatically.\"],\"4pV0kE\":[\"Avatar-ready\"],\"51EYZX\":[\"without title\"],\"5dcjwM\":[\"Choose today or an earlier date, or leave it blank to publish now.\"],\"5pAjd8\":[\"Accent should feel present, not loud.\"],\"5sEkBi\":[\"Open raw asset\"],\"6UTABI\":[\"Collection order updated.\"],\"6WAK+2\":[\"Use current date\"],\"6Y4BBO\":[\"An abstract editorial layout in warm paper colors\"],\"6cjUDB\":[\"Brand assets\"],\"6lGV3K\":[\"Show less\"],\"6p0JeQ\":[\"to make sure both still feel like they belong to the same product.\"],\"6sVyMq\":[\"Add a URL before posting this link.\"],\"6yCv8j\":[\"Save these changes to the text attachment, discard them, or keep editing.\"],\"74kJNs\":[\"View earlier notes in this thread\"],\"7DvUqV\":[\"Read the page from top to bottom without looking at the swatches.\"],\"7aris6\":[\"March 15\"],\"7d1a0d\":[\"Public\"],\"7hYXO0\":[\"Use this on dark backgrounds, image-backed surfaces, and any placement where the green logo would lose contrast.\"],\"7kMW54\":[\"Open raw SVG\"],\"7nGhhM\":[\"What's on your mind?\"],\"7vhWI8\":[\"New Password\"],\"87a/t/\":[\"Label\"],\"8Btgys\":[\"Draft deleted.\"],\"8WX0J+\":[\"Your thoughts (optional)\"],\"8ZsakT\":[\"Password\"],\"8bpHix\":[\"Couldn't create your account. Check the details and try again.\"],\"8eC78s\":[\"A calmer accent makes\"],\"8tM8+a\":[\"Save as draft\"],\"90IRF2\":[\"This article is here to answer a specific question: does the default accent still feel calm once it has to carry a full reading experience?\"],\"9SHZas\":[\"Shows 'Settings' when logged in, 'Sign in' when logged out\"],\"9aloPG\":[\"References\"],\"9dr9Nh\":[\"Open external link\"],\"9qWoxS\":[\"Feed\"],\"A1D8Yt\":[\"What the accent should do\"],\"A1taO8\":[\"Search\"],\"A2Vg/u\":[\"Navigation and reading states\"],\"AjHkcv\":[\"Default preview image for social shares and link unfurls.\"],\"AyHO4m\":[\"What's this collection about?\"],\"B1FFMj\":[\"Download Brand Pack\"],\"B495Gs\":[\"Archive\"],\"BdjLtf\":[\"thread\"],\"Bmaby2\":[\"All formats\"],\"C+9df9\":[\"Quoted or highlighted passages should feel like annotations, not warnings.\"],\"C0/57J\":[\"This is the last part of the collection link.\"],\"C4TjpG\":[\"Read less\"],\"CAh1km\":[\"collections\"],\"CH3bgf\":[\"RSS feed for this view\"],\"CT7H2e\":[\"Link to your featured posts. If it comes before Latest, the homepage opens here.\"],\"CmBCXY\":[\"Link updated.\"],\"D4em/+\":[\"Logos\"],\"DHhJ7s\":[\"Previous\"],\"DJLY+/\":[\" and try again.\"],\"DOx286\":[\"Draft restored.\"],\"DPfwMq\":[\"Done\"],\"DSJXZM\":[\"Enter a valid date.\"],\"DYlMYF\":[\"Built-in background\"],\"DoJzLz\":[\"Collections\"],\"Du2B9f\":[\"The default accent should support reading first. Start by comparing it against the\"],\"DxwUcG\":[\"Read the palette as content first\"],\"E3NcGH\":[\"Square logo PNG\"],\"EEYbdt\":[\"Publish\"],\"EGwzOK\":[\"Complete Setup\"],\"EHWwm1\":[\"The default accent should feel written, not branded.\"],\"EO3I6h\":[\"Upload didn't go through. Try again in a moment.\"],\"EQNPYo\":[\"Featured on \",[\"date\"],\" at \",[\"time\"]],\"EQtz4D\":[\"Open a few links and check whether they still feel native to the page.\"],\"EU3tBD\":[\"Link removed.\"],\"EetoJL\":[\"Guide the eye without taking over the layout.\"],\"Eiv3bO\":[\"Buttons can stay steady, but links, thread markers, and subtle emphasis should feel closer to ink on paper than dashboard chrome.\"],\"ElTnWL\":[\"Published on\"],\"EmQw8O\":[\"If this article still feels like a page you want to keep reading, the palette is probably close.\"],\"EsJdRp\":[\"Save theme\"],\"FESYvt\":[\"Describe this for people with visual impairments...\"],\"FEr96N\":[\"Theme\"],\"FGySZL\":[\"The default accent works best when it reads like a fountain-pen underline. Compare it against the\"],\"FM+KeU\":[\"No drafts yet. Save a draft to find it here.\"],\"Fdv5k7\":[\"What to look for while tuning it\"],\"FkMol5\":[\"Featured\"],\"FqCHF/\":[\"Threads\"],\"Fxf4jq\":[\"Description (optional)\"],\"G2u/aQ\":[\"Download official Jant logos, icons, and preview assets.\"],\"GBJzTZ\":[\"Archive\"],\"GX2VMa\":[\"Create your admin account.\"],\"GY/1J4\":[\"Jant fallback canary string\"],\"GbIOhd\":[\"Reply quietly\"],\"GiRWtR\":[\"Why the default accent should feel written, not branded\"],\"GkpIs2\":[\"Remove this link from Collections? The destination won't change.\"],\"GorKul\":[\"Welcome to Jant\"],\"GxkJXS\":[\"Uploading...\"],\"H29JXm\":[\"+ ALT\"],\"H4lgRd\":[\"Authentication isn't set up. Check your server config.\"],\"HFPGej\":[\"No threads match these filters. Try adjusting your selection or clear all filters.\"],\"HG79RB\":[\"Post as Private\"],\"HNEHJP\":[\"Demo credentials are pre-filled — hit Sign In to continue.\"],\"HbAIQc\":[\"A reference link for checking whether the accent feels editorial instead of promotional.\"],\"HrC0ab\":[\"All posts\"],\"Ht1V3q\":[\"For the same reason, inline code should stay neutral. Something like theme.siteAccent = soften(green, 12%) should not suddenly become the loudest thing on the page.\"],\"I22eN0\":[\"Shared links\"],\"I6zLrz\":[\"Use these when you need a transparent square logo, a shaped tile with a built-in background, a browser icon, or a default preview image.\"],\"ICsA6P\":[\"You have unsaved changes\"],\"IUX7p+\":[\"White logo on the Jant green rounded tile for app icon mockups, touch icons, directory listings, and other square placements that should feel softer.\"],\"IagCbF\":[\"URL\"],\"IjnQHI\":[\"with title\"],\"ImOQa9\":[\"Reply\"],\"IsI3kE\":[\"Nothing here yet. Add posts to one of these collections to fill this view.\"],\"J+2Rls\":[\"Leave blank to publish now. Use an earlier date when importing older posts.\"],\"J4tAHl\":[\"Headings should keep their hierarchy even when the accent gets softer.\"],\"JYj5R2\":[\"Browse files\"],\"JcD7qf\":[\"More actions\"],\"JqJ5Xv\":[\"Latest\"],\"JuN5GC\":[\"No file selected. Choose a file to upload.\"],\"JwLPQ/\":[\"This sign-in link has expired. Return to \"],\"KOqvXP\":[\"Do not recolor, stretch, rotate, outline, or add effects to the logo.\"],\"KbS2K9\":[\"Reset Password\"],\"KdSsVl\":[\"Author (optional)\"],\"Khu3PV\":[\"Publish settings\"],\"KiJn9B\":[\"Note\"],\"KlZ+t+\":[\"%name% + %count% more\"],\"KsvRin\":[\"Hide from Latest\"],\"KzmC5L\":[\"Controls\"],\"L7svJg\":[\"Reading\"],\"Lbkbwy\":[\"A quote card for judging accent color against softer, citation-heavy content.\"],\"LcvzvX\":[\"Tap to retry\"],\"LkA8jz\":[\"Add alt text\"],\"LxRg6f\":[\"live theme controls\"],\"M4tzVU\":[\"Latest posts\"],\"M8kJqa\":[\"Drafts\"],\"MHrjPM\":[\"Title\"],\"MILa7n\":[\"Square tile\"],\"MSc/Yq\":[\"Do you want to publish your changes or discard them?\"],\"Mc7+6G\":[\"Enter a valid URL starting with http://, https://, or mailto:.\"],\"MdMyne\":[\"Source link (optional)\"],\"MiMY3Q\":[\"Apple touch icon\"],\"MiyoI7\":[\"default note sample\"],\"MqghUt\":[\"Search posts...\"],\"Myqkib\":[\"Create a collection to get started.\"],\"N8UzTV\":[\"Replies\"],\"NAFbuE\":[\"Search snippet\"],\"NH9Z1R\":[\"Start here\"],\"NqsRbb\":[\"Jant logo\"],\"NvXuWk\":[\"Won't move the thread to the top of latest.\"],\"O1367B\":[\"All collections\"],\"O3oNi5\":[\"Email\"],\"OEdMhi\":[\"The best default color is the one you notice only after reading for a while.\"],\"OEt/to\":[\"Guidelines\"],\"OJxdgi\":[\"Keep this link under 200 characters.\"],\"OaoJcz\":[\"Social preview\"],\"OmfDbR\":[\"Site accent\"],\"Ovks1h\":[\"A softer blue feels more like ink than product chrome.\"],\"P/sHNL\":[\"Use this page to judge buttons, links, cards, forms, thread accents, and quiet surfaces before changing a theme globally.\"],\"Q/uoSA\":[\"Quiet here for now.\"],\"Q2mGA7\":[\"Clear filter\"],\"QBqVyM\":[\"Home screen icon for iPhone and iPad shortcuts.\"],\"QebAts\":[\"Link added.\"],\"Qgbxdw\":[\"Designing a calmer default accent for Jant\"],\"Qn9Ao8\":[\"Circle tile\"],\"Qoq+GP\":[\"Read more\"],\"QyDt3L\":[\"File uploaded.\"],\"R5CMuK\":[\"Jant looks best when the accent feels editorial. Buttons can stay sturdy, but inline emphasis should feel like a pen mark, not a dashboard highlight.\"],\"R8AthW\":[\"Divider\"],\"R9Khdg\":[\"Auto\"],\"RAv3u7\":[\"Compare it against the theme controls\"],\"ROa4Ti\":[\"Interfaces for reading should guide the eye, not keep asking for attention.\"],\"RZOWDv\":[\"Add a custom shortcut to any page or site.\"],\"RdmNnl\":[\"Browser tab\"],\"RfGczC\":[\"Square logo\"],\"Rj01Fz\":[\"Links\"],\"S37om9\":[\"Included assets\"],\"S8NCfs\":[\"Save to drafts to edit and post at a later time.\"],\"SJGVAw\":[\"Feel editorial and slightly quieter.\"],\"SJmfuf\":[\"Site Name\"],\"SaNhJE\":[\"feel deliberate instead of washed out.\"],\"SpTWH3\":[\"Download SVG\"],\"SvRuJt\":[\"Field Notes on Interface Tone\"],\"T/R+Qz\":[\"Primary\"],\"TNZKpI\":[\"Danger\"],\"TvaTxw\":[\"Doesn't appear in Latest. Still appears in collections you add it to.\"],\"UIMXHD\":[\"Remove Divider\"],\"UaZwcz\":[\"More options are available after you create it.\"],\"Uc5y7o\":[\"Choose the standard logo for websites, docs, directories, and editorial layouts.\"],\"V18SVO\":[\"Use the logo on light backgrounds.\"],\"V4WsyL\":[\"Add Link\"],\"VCA6B2\":[\"These are actual feed components with real footers, summaries, and inline links. Use this section to judge whether the theme still feels calm once it is applied to realistic content.\"],\"VNqFYa\":[\"Loading post...\"],\"WCOanD\":[\"This reference is useful because it treats links and citations as part of the reading rhythm. Keep that in mind while tuning the\"],\"WbIbzR\":[\"Checking link...\"],\"WcWS//\":[\"Download file\"],\"WhsN3P\":[\"A good default accent in Jant should feel like editorial structure, not product branding. That means links, emphasis, and thread cues can be visible without turning the page into UI chrome.\"],\"Wn+/rH\":[\"Transparent square\"],\"XU7b+L\":[\"Primary logo files\"],\"XV1mAn\":[\"Only visible when signed in.\"],\"XrnWzN\":[\"Published!\"],\"YIix5Y\":[\"Search...\"],\"YUglt2\":[\"Generating a link...\"],\"YXiA6e\":[\"Primary button\"],\"Ygx3Yl\":[\"Small browser icon used in tabs and bookmarks.\"],\"Z6NwTi\":[\"Save as Draft\"],\"ZGs2so\":[\"Delete this collection permanently? Posts inside won't be removed.\"],\"ZV5ykW\":[\"Download PNG\"],\"ZhhOwV\":[\"Quote\"],\"ZmSeP+\":[\"Save to drafts?\"],\"ZxFuun\":[[\"count\",\"plural\",{\"one\":[\"Found \",\"#\",\" result\"],\"other\":[\"Found \",\"#\",\" results\"]}]],\"a5j82I\":[\"No collections match that search. Try a different name.\"],\"aHTB7P\":[\"Supplementary content attached to your post\"],\"aMEyv0\":[\"Stay sturdy and readable.\"],\"aN6wx0\":[\"Nothing in Featured yet. Mark a post as featured to show it here.\"],\"aYpXKS\":[\"and checking whether the accent is guiding attention or pulling too hard.\"],\"aaGV/9\":[\"New Link\"],\"af+9p6\":[\"Quiet metadata\"],\"an5hVd\":[\"Images\"],\"ao77hr\":[[\"count\",\"plural\",{\"one\":[\"#\",\" hidden post\"],\"other\":[\"#\",\" hidden posts\"]}]],\"auFlOr\":[\"Icons and previews\"],\"avuFKG\":[\"threads\"],\"bFpC86\":[\"Everything in one download\"],\"bGtMpA\":[\"Add a label and URL.\"],\"bHOiy1\":[\"Password changes are off in demo mode. Sign in with the shared demo credentials.\"],\"bbdNeX\":[\"Sign in\"],\"bfCbdi\":[\"Current post\"],\"bkBJmZ\":[\"This is useful as a color check because it puts the accent next to quotation styling, metadata, and a quieter explanatory paragraph. Compare it back to the\"],\"bzSI52\":[\"Discard\"],\"c2JRUS\":[\"Generate automatically\"],\"cIoW7X\":[\"Inline link\"],\"cTUByn\":[\"Newest first\"],\"cb7FR8\":[\"White logo on the Jant green square tile for platforms and layouts that expect a true edge-to-edge square.\"],\"cgmi4V\":[\"Delete Draft\"],\"cnGeoo\":[\"Delete\"],\"d+F4pf\":[\"The image should sit quietly inside the article instead of feeling like a card preview.\"],\"d/o/BH\":[\"Couldn't publish. Saved as draft.\"],\"dD7NPy\":[\"Outline\"],\"dEgA5A\":[\"Cancel\"],\"dHko2w\":[\"single posts\"],\"dUsGbd\":[\"The right accent should disappear into the writing until you need it.\"],\"dXoieq\":[\"Summary\"],\"dYKrp3\":[\"Hidden from Latest\"],\"dbUuAj\":[\"Appears in Latest.\"],\"df4a/r\":[\"Couldn't load this post. Try again.\"],\"ePK91l\":[\"Edit\"],\"eWLklq\":[\"Quotes\"],\"f4MAoA\":[\"Some uploads failed. Saved as draft.\"],\"f5s9EI\":[\"Press N to write\"],\"f6Hub0\":[\"Sort\"],\"f8fH8W\":[\"Design\"],\"fD+f7T\":[\"RSS feed\"],\"fKrDxS\":[\"Brand tile\"],\"fMPkxb\":[\"Show more\"],\"fqDzSu\":[\"Rate\"],\"fttd2R\":[\"My Collection\"],\"gCcxP/\":[\"Threads can include up to \",[\"count\"],\" posts.\"],\"gFdWl+\":[\"A long-form article sample for checking the default palette in a true reading context.\"],\"gNKz6Z\":[\"Collection deleted.\"],\"gXH9r/\":[\"Open raw PNG\"],\"gj52YE\":[\"This collection is empty. Add posts from the editor.\"],\"gpaPhA\":[\"Helps screen readers describe the image\"],\"h5RcXU\":[\"Post hidden\"],\"hLlWo5\":[\"A few simple rules.\"],\"hWpUeY\":[\"Auto link\"],\"hXzOVo\":[\"Next\"],\"heSQoS\":[\"Paste a URL...\"],\"hqeXKW\":[\"Single posts\"],\"hrkGms\":[\"Search\"],\"i0vDGK\":[\"Sort Order\"],\"i5+Y7d\":[\"Download the official Jant logo, icons, and preview files.\"],\"i6kro6\":[\"Edit custom link\"],\"i6nDCI\":[\"Choose a new password.\"],\"iG7KNr\":[\"Logo\"],\"iH8pgl\":[\"Back\"],\"ilSmIt\":[\"Hard edge\"],\"iu7tUI\":[\"Breadcrumb\"],\"jAXE5p\":[\"Reverse logo\"],\"jAqB/k\":[\"Post privately\"],\"jQflRT\":[\"This uses the real single-post detail rendering with a longer article, inline image, tables, lists, quotes, and code. The content column stays at the same width as the live site.\"],\"jd+8Mm\":[\"Social preview image\"],\"jdJOV1\":[\"Settings\"],\"ji7oVU\":[\"Edit post\"],\"jpctdh\":[\"View\"],\"jrsUoG\":[\"Type / for commands\"],\"jvyYZG\":[\"What's on your mind...\"],\"k3Iw35\":[\"Switch to the white logo when the standard green version would lose contrast.\"],\"kPMIr+\":[\"Give it a title...\"],\"kj6ppi\":[\"entry\"],\"kr39oD\":[\"No collections yet. Start one to organize posts by topic.\"],\"kzvWob\":[\"Link to the post archive\"],\"laT1IJ\":[\"iOS home screen\"],\"lb+Xwx\":[\"Custom link\"],\"m16xKo\":[\"Add\"],\"mKT7g0\":[\"Text attachment\"],\"mc/vLq\":[\"This link is already in use. Choose something else.\"],\"muKqfV\":[\"Featured\"],\"n1ekoW\":[\"Sign In\"],\"n3ReIn\":[\"Collections\"],\"n6QD94\":[\"Oldest first\"],\"nFukaP\":[\"Wrong email or password. Check your credentials and try again.\"],\"nV6twc\":[\"Organize\"],\"nd8Puv\":[\"White logo on the Jant green circle for profile images, badges, and other round placements where you want a ready-made asset.\"],\"ndrEYW\":[\"When the accent is slightly warmer and less literal, the whole page feels more like a writing space and less like product UI.\"],\"o21Y+P\":[\"entries\"],\"oO0hKx\":[[\"count\",\"plural\",{\"one\":[\"#\",\" more post\"],\"other\":[\"#\",\" more posts\"]}]],\"oTu7Wt\":[\"Combined Collections\"],\"ode0+L\":[\"Theme sample\"],\"ogssnn\":[\"with media\"],\"ovBPCi\":[\"Default\"],\"p1Z67P\":[\"When primary is too rigid, the whole page starts reading like product UI instead of writing space.\"],\"p2/GCq\":[\"Confirm Password\"],\"pB0OKE\":[\"New Divider\"],\"pBHx39\":[\"Dark backgrounds\"],\"pVrU5x\":[\"If this page feels too branded, the first place to soften is the default theme’s site accent, not the border or body text.\"],\"pvnfJD\":[\"Dark\"],\"q+hNag\":[\"Collection\"],\"q5YRzz\":[\"Color check\"],\"q8RviX\":[\"Titled\"],\"qcawwg\":[\"Publish now\"],\"qiN9NB\":[\"Surface\"],\"qt89I8\":[\"Draft saved.\"],\"quvfGs\":[\"instead of judging it as an isolated swatch.\"],\"r7kcaA\":[\"Drag collections, links, and dividers into the order you want.\"],\"rA2TFI\":[\"Switch the palette and mode without opening settings or changing the active site theme.\"],\"rV8ZnP\":[\"Edit publish date\"],\"rdUucN\":[\"Preview\"],\"s8G5Or\":[\"This upload would exceed your shared hosted media limit. Remove files or upgrade storage to continue.\"],\"s9gHf5\":[\"your-post-link\"],\"sER+bs\":[\"Files\"],\"sQpDn6\":[\"Exit fullscreen\"],\"sgr2wQ\":[\"collection\"],\"slujBW\":[\"Use lowercase letters, numbers, and hyphens only.\"],\"syiAKf\":[\"note treatment\"],\"t42hIC\":[\"Everything most people need is in one ZIP.\"],\"tCctex\":[\"The brand pack includes SVG logos, a transparent square PNG, rounded, square, and circle tiles, plus favicon, Apple touch icon, and the default social preview image.\"],\"tKlWWY\":[\"Emoji\"],\"tSWVu5\":[\"Published on \",[\"date\"],\" at \",[\"time\"]],\"tfDRzk\":[\"Save\"],\"tg5MRw\":[\"Sign in to start writing.\"],\"tgSBSE\":[\"Remove Link\"],\"uowbPn\":[\"Remove attachment\"],\"v3E8iS\":[\"A practical checklist\"],\"vSJd18\":[\"Video\"],\"vSYKYI\":[\"Main feed\"],\"vXCC6J\":[\"Something doesn't look right. Check the form and try again.\"],\"vcpc5o\":[\"Close menu\"],\"vdFnYM\":[\"Reset link\"],\"vdvpU5\":[\"/archive?format=quote or https://example.com\"],\"vgpfCi\":[\"Save draft\"],\"vpSPA1\":[\"Auth secret is missing. Check your environment variables.\"],\"vzU4k9\":[\"New Collection\"],\"w0Emel\":[\"Suggested link\"],\"w6mlns\":[\"Article detail page\"],\"wJ+GRy\":[\"All visibility\"],\"wL3cK8\":[\"Latest\"],\"wja8aL\":[\"Untitled\"],\"wlnK1t\":[\"A single ZIP with the main logo, reverse logo, square PNG, rounded, square, and circle tiles, plus favicon, Apple touch icon, and social preview image.\"],\"wm3Zlr\":[\"All years\"],\"xCWek4\":[\"File storage isn't set up. Check your server config.\"],\"xVrkxi\":[\"quiet design\"],\"xVvw1i\":[\"This reset link is no longer valid. Request a new one to continue.\"],\"xYilR2\":[\"Media\"],\"xeiujy\":[\"Text\"],\"xhTx3y\":[\"Choose the standard logo for most placements and the reverse logo when you need more contrast.\"],\"xjHB3/\":[\"Continue →\"],\"y28hnO\":[\"Post\"],\"y2o/Y0\":[\"This Link Has Expired\"],\"yGZVl1\":[\"More\"],\"yQ2kGp\":[\"Load more\"],\"yUtAh2\":[\"New Thread\"],\"ycM1Xg\":[\"No results. Try different keywords.\"],\"ynMAhG\":[\"Default logo\"],\"yzF66j\":[\"Link\"],\"zBFr9G\":[\"Paste a long article, AI response, or any text...\\n\\nMarkdown formatting will be preserved.\"],\"zJDAbh\":[\"Don't save\"],\"zcDmsG\":[\"Featured posts\"],\"zoK+eO\":[\"Add a title before posting this link.\"],\"zucql+\":[\"Menu\"],\"zwBp5t\":[\"Private\"]}");
1916
+ var messages$3 = JSON.parse("{\"+4u2g6\":[\"A ready-made 1:1 PNG for decks, mockups, directories, and other square placements.\"],\"+DPYOZ\":[\"Add a link to your main RSS feed. Change what /feed returns in General.\"],\"+G8qqW\":[\"Collection saved.\"],\"+IJm1Z\":[\"Muted\"],\"+Irvp3\":[\"Everything on this page is ready to use for articles, launch posts, directories, and product coverage.\"],\"+Qaboy\":[\"Favicon\"],\"+fWu2O\":[\"A calmer, warmer accent makes the default theme feel quieter and more intentional.\"],\"+nHhRH\":[\"Use \",[\"brandColorName\"]],\"+siMqD\":[\"Journal\"],\"/DFKdU\":[\"Type the quote...\"],\"/PfPLc\":[\"Label (optional)\"],\"/PoNoq\":[\"Edit link\"],\"/Ui2OV\":[\"Use the reverse logo on dark backgrounds.\"],\"/Ybds4\":[\"Primary Jant logo for websites, docs, press coverage, and editorial layouts.\"],\"/rTz0M\":[\"Audio\"],\"0EcUWz\":[\"Discard changes?\"],\"0Lj7or\":[\"Save text attachment?\"],\"0XDp7X\":[\"Links should read clearly without glowing against the page.\"],\"0ieXE7\":[\"Highest rated\"],\"11h9eK\":[\"Includes\"],\"15++NM\":[\"Inline emphasis\"],\"1DBGsz\":[\"Notes\"],\"1NeeWI\":[\"Square assets for avatars, apps, browsers, and shared links\"],\"1THMr2\":[\"Brand pack\"],\"1njn7W\":[\"Light\"],\"2B7HLH\":[\"New post\"],\"2C7mSG\":[\"Collection link\"],\"2ETv7R\":[\"Tune color in a real reading context\"],\"2HbvFp\":[\"Real post components\"],\"2MXb5X\":[\"Field notes on quiet design\"],\"2koDOQ\":[\"Thread accents\"],\"2lKpcz\":[\"Write your first post to get started.\"],\"2q/Q7x\":[\"Visibility\"],\"2sCqzD\":[\"Use this for websites, docs, articles, and other light or neutral surfaces.\"],\"33DClx\":[\"Link to your latest posts. If it comes before Featured, the homepage opens here.\"],\"3Cw1AI\":[\"Add Collection\"],\"3lJk5u\":[\"Keep the artwork unchanged.\"],\"3mdteM\":[\"before deciding whether the accent is carrying too much product energy.\"],\"3neqtf\":[\"Thread accent\"],\"3qkggm\":[\"Fullscreen\"],\"3vMdv3\":[\"This link is reserved. Choose something else.\"],\"3wKq0C\":[\"Couldn't save. Try again in a moment.\"],\"3xi01/\":[\"Look at the footer metadata last, to make sure the accent is not fighting the typography.\"],\"47iMgt\":[\"Editorial interfaces worth borrowing from\"],\"4D09NB\":[\"Link to your collections page\"],\"4HLTdq\":[\"without media\"],\"4J/OYU\":[\"Collection created.\"],\"4eiXo+\":[\"Leave blank to generate one automatically.\"],\"4pV0kE\":[\"Avatar-ready\"],\"51EYZX\":[\"without title\"],\"5dcjwM\":[\"Choose today or an earlier date, or leave it blank to publish now.\"],\"5pAjd8\":[\"Accent should feel present, not loud.\"],\"5sEkBi\":[\"Open raw asset\"],\"6UTABI\":[\"Collection order updated.\"],\"6WAK+2\":[\"Use current date\"],\"6Y4BBO\":[\"An abstract editorial layout in warm paper colors\"],\"6cjUDB\":[\"Brand assets\"],\"6lGV3K\":[\"Show less\"],\"6p0JeQ\":[\"to make sure both still feel like they belong to the same product.\"],\"6sVyMq\":[\"Add a URL before posting this link.\"],\"6yCv8j\":[\"Save these changes to the text attachment, discard them, or keep editing.\"],\"74kJNs\":[\"View earlier notes in this thread\"],\"7DvUqV\":[\"Read the page from top to bottom without looking at the swatches.\"],\"7aris6\":[\"March 15\"],\"7d1a0d\":[\"Public\"],\"7hYXO0\":[\"Use this on dark backgrounds, image-backed surfaces, and any placement where the green logo would lose contrast.\"],\"7kMW54\":[\"Open raw SVG\"],\"7nGhhM\":[\"What's on your mind?\"],\"7vhWI8\":[\"New Password\"],\"87a/t/\":[\"Label\"],\"8Btgys\":[\"Draft deleted.\"],\"8WX0J+\":[\"Your thoughts (optional)\"],\"8ZsakT\":[\"Password\"],\"8bpHix\":[\"Couldn't create your account. Check the details and try again.\"],\"8eC78s\":[\"A calmer accent makes\"],\"8tM8+a\":[\"Save as draft\"],\"90IRF2\":[\"This article is here to answer a specific question: does the default accent still feel calm once it has to carry a full reading experience?\"],\"9SHZas\":[\"Shows 'Settings' when logged in, 'Sign in' when logged out\"],\"9aloPG\":[\"References\"],\"9dr9Nh\":[\"Open external link\"],\"9qWoxS\":[\"Feed\"],\"A1D8Yt\":[\"What the accent should do\"],\"A1taO8\":[\"Search\"],\"A2Vg/u\":[\"Navigation and reading states\"],\"AjHkcv\":[\"Default preview image for social shares and link unfurls.\"],\"AyHO4m\":[\"What's this collection about?\"],\"B1FFMj\":[\"Download Brand Pack\"],\"B495Gs\":[\"Archive\"],\"BdjLtf\":[\"thread\"],\"Bmaby2\":[\"All formats\"],\"C+9df9\":[\"Quoted or highlighted passages should feel like annotations, not warnings.\"],\"C0/57J\":[\"This is the last part of the collection link.\"],\"C4TjpG\":[\"Read less\"],\"CAh1km\":[\"collections\"],\"CH3bgf\":[\"RSS feed for this view\"],\"CT7H2e\":[\"Link to your featured posts. If it comes before Latest, the homepage opens here.\"],\"CmBCXY\":[\"Link updated.\"],\"D4em/+\":[\"Logos\"],\"DHhJ7s\":[\"Previous\"],\"DJLY+/\":[\" and try again.\"],\"DOx286\":[\"Draft restored.\"],\"DPfwMq\":[\"Done\"],\"DSJXZM\":[\"Enter a valid date.\"],\"DYlMYF\":[\"Built-in background\"],\"DoJzLz\":[\"Collections\"],\"Du2B9f\":[\"The default accent should support reading first. Start by comparing it against the\"],\"DxwUcG\":[\"Read the palette as content first\"],\"E3NcGH\":[\"Square logo PNG\"],\"EEYbdt\":[\"Publish\"],\"EGwzOK\":[\"Complete Setup\"],\"EHWwm1\":[\"The default accent should feel written, not branded.\"],\"EO3I6h\":[\"Upload didn't go through. Try again in a moment.\"],\"EQNPYo\":[\"Featured on \",[\"date\"],\" at \",[\"time\"]],\"EQtz4D\":[\"Open a few links and check whether they still feel native to the page.\"],\"EU3tBD\":[\"Link removed.\"],\"EetoJL\":[\"Guide the eye without taking over the layout.\"],\"Eiv3bO\":[\"Buttons can stay steady, but links, thread markers, and subtle emphasis should feel closer to ink on paper than dashboard chrome.\"],\"ElTnWL\":[\"Published on\"],\"EmQw8O\":[\"If this article still feels like a page you want to keep reading, the palette is probably close.\"],\"EsJdRp\":[\"Save theme\"],\"FESYvt\":[\"Describe this for people with visual impairments...\"],\"FEr96N\":[\"Theme\"],\"FGySZL\":[\"The default accent works best when it reads like a fountain-pen underline. Compare it against the\"],\"FM+KeU\":[\"No drafts yet. Save a draft to find it here.\"],\"Fdv5k7\":[\"What to look for while tuning it\"],\"FkMol5\":[\"Featured\"],\"FqCHF/\":[\"Threads\"],\"Fxf4jq\":[\"Description (optional)\"],\"G2u/aQ\":[\"Download official Jant logos, icons, and preview assets.\"],\"GBJzTZ\":[\"Archive\"],\"GX2VMa\":[\"Create your admin account.\"],\"GY/1J4\":[\"Jant fallback canary string\"],\"GbIOhd\":[\"Reply quietly\"],\"GiRWtR\":[\"Why the default accent should feel written, not branded\"],\"GkpIs2\":[\"Remove this link from Collections? The destination won't change.\"],\"GorKul\":[\"Welcome to Jant\"],\"GxkJXS\":[\"Uploading...\"],\"H29JXm\":[\"+ ALT\"],\"H4lgRd\":[\"Authentication isn't set up. Check your server config.\"],\"HFPGej\":[\"No threads match these filters. Try adjusting your selection or clear all filters.\"],\"HG79RB\":[\"Post as Private\"],\"HNEHJP\":[\"Demo credentials are pre-filled — hit Sign In to continue.\"],\"HbAIQc\":[\"A reference link for checking whether the accent feels editorial instead of promotional.\"],\"HrC0ab\":[\"All posts\"],\"Ht1V3q\":[\"For the same reason, inline code should stay neutral. Something like theme.siteAccent = soften(green, 12%) should not suddenly become the loudest thing on the page.\"],\"I22eN0\":[\"Shared links\"],\"I6zLrz\":[\"Use these when you need a transparent square logo, a shaped tile with a built-in background, a browser icon, or a default preview image.\"],\"ICsA6P\":[\"You have unsaved changes\"],\"IUX7p+\":[\"White logo on the Jant green rounded tile for app icon mockups, touch icons, directory listings, and other square placements that should feel softer.\"],\"IagCbF\":[\"URL\"],\"IjnQHI\":[\"with title\"],\"ImOQa9\":[\"Reply\"],\"IsI3kE\":[\"Nothing here yet. Add posts to one of these collections to fill this view.\"],\"J+2Rls\":[\"Leave blank to publish now. Use an earlier date when importing older posts.\"],\"J4tAHl\":[\"Headings should keep their hierarchy even when the accent gets softer.\"],\"JYj5R2\":[\"Browse files\"],\"JcD7qf\":[\"More actions\"],\"JqJ5Xv\":[\"Latest\"],\"JuN5GC\":[\"No file selected. Choose a file to upload.\"],\"JwLPQ/\":[\"This sign-in link has expired. Return to \"],\"KOqvXP\":[\"Do not recolor, stretch, rotate, outline, or add effects to the logo.\"],\"KbS2K9\":[\"Reset Password\"],\"KdSsVl\":[\"Author (optional)\"],\"Khu3PV\":[\"Publish settings\"],\"KiJn9B\":[\"Note\"],\"KlZ+t+\":[\"%name% + %count% more\"],\"KsvRin\":[\"Hide from Latest\"],\"KzmC5L\":[\"Controls\"],\"L7svJg\":[\"Reading\"],\"Lbkbwy\":[\"A quote card for judging accent color against softer, citation-heavy content.\"],\"LcvzvX\":[\"Tap to retry\"],\"LkA8jz\":[\"Add alt text\"],\"LxRg6f\":[\"live theme controls\"],\"M4tzVU\":[\"Latest posts\"],\"M8kJqa\":[\"Drafts\"],\"MHrjPM\":[\"Title\"],\"MILa7n\":[\"Square tile\"],\"MSc/Yq\":[\"Do you want to publish your changes or discard them?\"],\"Mc7+6G\":[\"Enter a valid URL starting with http://, https://, or mailto:.\"],\"MdMyne\":[\"Source link (optional)\"],\"MiMY3Q\":[\"Apple touch icon\"],\"MiyoI7\":[\"default note sample\"],\"MqghUt\":[\"Search posts...\"],\"Myqkib\":[\"Create a collection to get started.\"],\"N8UzTV\":[\"Replies\"],\"NAFbuE\":[\"Search snippet\"],\"NH9Z1R\":[\"Start here\"],\"NqsRbb\":[\"Jant logo\"],\"NvXuWk\":[\"Won't move the thread to the top of latest.\"],\"O1367B\":[\"All collections\"],\"O3oNi5\":[\"Email\"],\"OEdMhi\":[\"The best default color is the one you notice only after reading for a while.\"],\"OEt/to\":[\"Guidelines\"],\"OJxdgi\":[\"Keep this link under 200 characters.\"],\"OaoJcz\":[\"Social preview\"],\"OmfDbR\":[\"Site accent\"],\"Ovks1h\":[\"A softer blue feels more like ink than product chrome.\"],\"P/sHNL\":[\"Use this page to judge buttons, links, cards, forms, thread accents, and quiet surfaces before changing a theme globally.\"],\"Q/uoSA\":[\"Quiet here for now.\"],\"Q2mGA7\":[\"Clear filter\"],\"QBqVyM\":[\"Home screen icon for iPhone and iPad shortcuts.\"],\"QebAts\":[\"Link added.\"],\"Qgbxdw\":[\"Designing a calmer default accent for Jant\"],\"Qn9Ao8\":[\"Circle tile\"],\"Qoq+GP\":[\"Read more\"],\"QyDt3L\":[\"File uploaded.\"],\"R5CMuK\":[\"Jant looks best when the accent feels editorial. Buttons can stay sturdy, but inline emphasis should feel like a pen mark, not a dashboard highlight.\"],\"R8AthW\":[\"Divider\"],\"R9Khdg\":[\"Auto\"],\"RAv3u7\":[\"Compare it against the theme controls\"],\"ROa4Ti\":[\"Interfaces for reading should guide the eye, not keep asking for attention.\"],\"RZOWDv\":[\"Add a custom shortcut to any page or site.\"],\"RdmNnl\":[\"Browser tab\"],\"RfGczC\":[\"Square logo\"],\"Rj01Fz\":[\"Links\"],\"S37om9\":[\"Included assets\"],\"S8NCfs\":[\"Save to drafts to edit and post at a later time.\"],\"SJGVAw\":[\"Feel editorial and slightly quieter.\"],\"SJmfuf\":[\"Site Name\"],\"SaNhJE\":[\"feel deliberate instead of washed out.\"],\"SpTWH3\":[\"Download SVG\"],\"SvRuJt\":[\"Field Notes on Interface Tone\"],\"T/R+Qz\":[\"Primary\"],\"TNZKpI\":[\"Danger\"],\"TvaTxw\":[\"Doesn't appear in Latest. Still appears in collections you add it to.\"],\"UIMXHD\":[\"Remove Divider\"],\"UaZwcz\":[\"More options are available after you create it.\"],\"Uc5y7o\":[\"Choose the standard logo for websites, docs, directories, and editorial layouts.\"],\"V18SVO\":[\"Use the logo on light backgrounds.\"],\"V4WsyL\":[\"Add Link\"],\"VCA6B2\":[\"These are actual feed components with real footers, summaries, and inline links. Use this section to judge whether the theme still feels calm once it is applied to realistic content.\"],\"VNqFYa\":[\"Loading post...\"],\"WCOanD\":[\"This reference is useful because it treats links and citations as part of the reading rhythm. Keep that in mind while tuning the\"],\"WbIbzR\":[\"Checking link...\"],\"WcWS//\":[\"Download file\"],\"WhsN3P\":[\"A good default accent in Jant should feel like editorial structure, not product branding. That means links, emphasis, and thread cues can be visible without turning the page into UI chrome.\"],\"Wn+/rH\":[\"Transparent square\"],\"XU7b+L\":[\"Primary logo files\"],\"XV1mAn\":[\"Only visible when signed in.\"],\"XrnWzN\":[\"Published!\"],\"Y7WAtz\":[\"An image couldn't be saved to your library — its original link was kept.\"],\"YIix5Y\":[\"Search...\"],\"YUglt2\":[\"Generating a link...\"],\"YXiA6e\":[\"Primary button\"],\"Ygx3Yl\":[\"Small browser icon used in tabs and bookmarks.\"],\"Z6NwTi\":[\"Save as Draft\"],\"ZGs2so\":[\"Delete this collection permanently? Posts inside won't be removed.\"],\"ZV5ykW\":[\"Download PNG\"],\"ZhhOwV\":[\"Quote\"],\"ZmSeP+\":[\"Save to drafts?\"],\"ZxFuun\":[[\"count\",\"plural\",{\"one\":[\"Found \",\"#\",\" result\"],\"other\":[\"Found \",\"#\",\" results\"]}]],\"a5j82I\":[\"No collections match that search. Try a different name.\"],\"aHTB7P\":[\"Supplementary content attached to your post\"],\"aMEyv0\":[\"Stay sturdy and readable.\"],\"aN6wx0\":[\"Nothing in Featured yet. Mark a post as featured to show it here.\"],\"aYpXKS\":[\"and checking whether the accent is guiding attention or pulling too hard.\"],\"aaGV/9\":[\"New Link\"],\"af+9p6\":[\"Quiet metadata\"],\"an5hVd\":[\"Images\"],\"ao77hr\":[[\"count\",\"plural\",{\"one\":[\"#\",\" hidden post\"],\"other\":[\"#\",\" hidden posts\"]}]],\"auFlOr\":[\"Icons and previews\"],\"avuFKG\":[\"threads\"],\"bFpC86\":[\"Everything in one download\"],\"bGtMpA\":[\"Add a label and URL.\"],\"bHOiy1\":[\"Password changes are off in demo mode. Sign in with the shared demo credentials.\"],\"bbdNeX\":[\"Sign in\"],\"bfCbdi\":[\"Current post\"],\"bkBJmZ\":[\"This is useful as a color check because it puts the accent next to quotation styling, metadata, and a quieter explanatory paragraph. Compare it back to the\"],\"bzSI52\":[\"Discard\"],\"c2JRUS\":[\"Generate automatically\"],\"cIoW7X\":[\"Inline link\"],\"cTUByn\":[\"Newest first\"],\"cb7FR8\":[\"White logo on the Jant green square tile for platforms and layouts that expect a true edge-to-edge square.\"],\"cgmi4V\":[\"Delete Draft\"],\"cnGeoo\":[\"Delete\"],\"d+F4pf\":[\"The image should sit quietly inside the article instead of feeling like a card preview.\"],\"d/o/BH\":[\"Couldn't publish. Saved as draft.\"],\"dD7NPy\":[\"Outline\"],\"dEgA5A\":[\"Cancel\"],\"dHko2w\":[\"single posts\"],\"dUsGbd\":[\"The right accent should disappear into the writing until you need it.\"],\"dXoieq\":[\"Summary\"],\"dYKrp3\":[\"Hidden from Latest\"],\"dbUuAj\":[\"Appears in Latest.\"],\"df4a/r\":[\"Couldn't load this post. Try again.\"],\"ePK91l\":[\"Edit\"],\"eWLklq\":[\"Quotes\"],\"f4MAoA\":[\"Some uploads failed. Saved as draft.\"],\"f5s9EI\":[\"Press N to write\"],\"f6Hub0\":[\"Sort\"],\"f8fH8W\":[\"Design\"],\"fD+f7T\":[\"RSS feed\"],\"fKrDxS\":[\"Brand tile\"],\"fMPkxb\":[\"Show more\"],\"fqDzSu\":[\"Rate\"],\"fttd2R\":[\"My Collection\"],\"gCcxP/\":[\"Threads can include up to \",[\"count\"],\" posts.\"],\"gFdWl+\":[\"A long-form article sample for checking the default palette in a true reading context.\"],\"gNKz6Z\":[\"Collection deleted.\"],\"gXH9r/\":[\"Open raw PNG\"],\"gj52YE\":[\"This collection is empty. Add posts from the editor.\"],\"gpaPhA\":[\"Helps screen readers describe the image\"],\"h5RcXU\":[\"Post hidden\"],\"hLlWo5\":[\"A few simple rules.\"],\"hWpUeY\":[\"Auto link\"],\"hXzOVo\":[\"Next\"],\"heSQoS\":[\"Paste a URL...\"],\"hqeXKW\":[\"Single posts\"],\"hrkGms\":[\"Search\"],\"i0vDGK\":[\"Sort Order\"],\"i5+Y7d\":[\"Download the official Jant logo, icons, and preview files.\"],\"i6kro6\":[\"Edit custom link\"],\"i6nDCI\":[\"Choose a new password.\"],\"iG7KNr\":[\"Logo\"],\"iH8pgl\":[\"Back\"],\"ilSmIt\":[\"Hard edge\"],\"iu7tUI\":[\"Breadcrumb\"],\"jAXE5p\":[\"Reverse logo\"],\"jAqB/k\":[\"Post privately\"],\"jQflRT\":[\"This uses the real single-post detail rendering with a longer article, inline image, tables, lists, quotes, and code. The content column stays at the same width as the live site.\"],\"jd+8Mm\":[\"Social preview image\"],\"jdJOV1\":[\"Settings\"],\"ji7oVU\":[\"Edit post\"],\"jpctdh\":[\"View\"],\"jrsUoG\":[\"Type / for commands\"],\"jvyYZG\":[\"What's on your mind...\"],\"k3Iw35\":[\"Switch to the white logo when the standard green version would lose contrast.\"],\"kPMIr+\":[\"Give it a title...\"],\"kj6ppi\":[\"entry\"],\"kr39oD\":[\"No collections yet. Start one to organize posts by topic.\"],\"kzvWob\":[\"Link to the post archive\"],\"laT1IJ\":[\"iOS home screen\"],\"lb+Xwx\":[\"Custom link\"],\"m16xKo\":[\"Add\"],\"mKT7g0\":[\"Text attachment\"],\"mc/vLq\":[\"This link is already in use. Choose something else.\"],\"muKqfV\":[\"Featured\"],\"n1ekoW\":[\"Sign In\"],\"n3ReIn\":[\"Collections\"],\"n6QD94\":[\"Oldest first\"],\"nFukaP\":[\"Wrong email or password. Check your credentials and try again.\"],\"nJ4U1U\":[[\"count\"],\" images couldn't be saved to your library — their original links were kept.\"],\"nV6twc\":[\"Organize\"],\"nd8Puv\":[\"White logo on the Jant green circle for profile images, badges, and other round placements where you want a ready-made asset.\"],\"ndrEYW\":[\"When the accent is slightly warmer and less literal, the whole page feels more like a writing space and less like product UI.\"],\"o21Y+P\":[\"entries\"],\"oO0hKx\":[[\"count\",\"plural\",{\"one\":[\"#\",\" more post\"],\"other\":[\"#\",\" more posts\"]}]],\"oTu7Wt\":[\"Combined Collections\"],\"ode0+L\":[\"Theme sample\"],\"ogssnn\":[\"with media\"],\"ovBPCi\":[\"Default\"],\"p1Z67P\":[\"When primary is too rigid, the whole page starts reading like product UI instead of writing space.\"],\"p2/GCq\":[\"Confirm Password\"],\"pB0OKE\":[\"New Divider\"],\"pBHx39\":[\"Dark backgrounds\"],\"pVrU5x\":[\"If this page feels too branded, the first place to soften is the default theme’s site accent, not the border or body text.\"],\"pvnfJD\":[\"Dark\"],\"q+hNag\":[\"Collection\"],\"q5YRzz\":[\"Color check\"],\"q8RviX\":[\"Titled\"],\"qcawwg\":[\"Publish now\"],\"qiN9NB\":[\"Surface\"],\"qt89I8\":[\"Draft saved.\"],\"quvfGs\":[\"instead of judging it as an isolated swatch.\"],\"r7kcaA\":[\"Drag collections, links, and dividers into the order you want.\"],\"rA2TFI\":[\"Switch the palette and mode without opening settings or changing the active site theme.\"],\"rV8ZnP\":[\"Edit publish date\"],\"rdUucN\":[\"Preview\"],\"s8G5Or\":[\"This upload would exceed your shared hosted media limit. Remove files or upgrade storage to continue.\"],\"s9gHf5\":[\"your-post-link\"],\"sER+bs\":[\"Files\"],\"sQpDn6\":[\"Exit fullscreen\"],\"sgr2wQ\":[\"collection\"],\"slujBW\":[\"Use lowercase letters, numbers, and hyphens only.\"],\"syiAKf\":[\"note treatment\"],\"t42hIC\":[\"Everything most people need is in one ZIP.\"],\"tCctex\":[\"The brand pack includes SVG logos, a transparent square PNG, rounded, square, and circle tiles, plus favicon, Apple touch icon, and the default social preview image.\"],\"tKlWWY\":[\"Emoji\"],\"tSWVu5\":[\"Published on \",[\"date\"],\" at \",[\"time\"]],\"tfDRzk\":[\"Save\"],\"tg5MRw\":[\"Sign in to start writing.\"],\"tgSBSE\":[\"Remove Link\"],\"uowbPn\":[\"Remove attachment\"],\"v3E8iS\":[\"A practical checklist\"],\"vSJd18\":[\"Video\"],\"vSYKYI\":[\"Main feed\"],\"vXCC6J\":[\"Something doesn't look right. Check the form and try again.\"],\"vcpc5o\":[\"Close menu\"],\"vdFnYM\":[\"Reset link\"],\"vdvpU5\":[\"/archive?format=quote or https://example.com\"],\"vgpfCi\":[\"Save draft\"],\"vpSPA1\":[\"Auth secret is missing. Check your environment variables.\"],\"vzU4k9\":[\"New Collection\"],\"w0Emel\":[\"Suggested link\"],\"w6mlns\":[\"Article detail page\"],\"wJ+GRy\":[\"All visibility\"],\"wL3cK8\":[\"Latest\"],\"wja8aL\":[\"Untitled\"],\"wlnK1t\":[\"A single ZIP with the main logo, reverse logo, square PNG, rounded, square, and circle tiles, plus favicon, Apple touch icon, and social preview image.\"],\"wm3Zlr\":[\"All years\"],\"xCWek4\":[\"File storage isn't set up. Check your server config.\"],\"xVrkxi\":[\"quiet design\"],\"xVvw1i\":[\"This reset link is no longer valid. Request a new one to continue.\"],\"xYilR2\":[\"Media\"],\"xeiujy\":[\"Text\"],\"xhTx3y\":[\"Choose the standard logo for most placements and the reverse logo when you need more contrast.\"],\"xjHB3/\":[\"Continue →\"],\"y28hnO\":[\"Post\"],\"y2o/Y0\":[\"This Link Has Expired\"],\"yGZVl1\":[\"More\"],\"yQ2kGp\":[\"Load more\"],\"yUtAh2\":[\"New Thread\"],\"ycM1Xg\":[\"No results. Try different keywords.\"],\"ynMAhG\":[\"Default logo\"],\"yzF66j\":[\"Link\"],\"zBFr9G\":[\"Paste a long article, AI response, or any text...\\n\\nMarkdown formatting will be preserved.\"],\"zJDAbh\":[\"Don't save\"],\"zcDmsG\":[\"Featured posts\"],\"zoK+eO\":[\"Add a title before posting this link.\"],\"zucql+\":[\"Menu\"],\"zwBp5t\":[\"Private\"]}");
1917
1917
  //#endregion
1918
1918
  //#region src/i18n/locales/settings/en.ts
1919
- var messages$2 = JSON.parse("{\"++YsxG\":[\"Readers and search engines see\"],\"+4Z6iP\":[\"Create the repository on GitHub first — it can be empty.\"],\"+9JI/F\":[\"Connecting will sync your site onto \",[\"repo\"],\"'s default branch on top of its existing history. Existing files outside Jant's managed paths are kept. This can't be undone.\"],\"+AXdXp\":[\"Label and URL are required\"],\"+K0AvT\":[\"Disconnect\"],\"+wgt7C\":[\"Muted red-brown background, earthy and warm.\"],\"+zy2Nq\":[\"Type\"],\"/3H2/s\":[\"This hosted site signs in through \",[\"providerLabel\"],\". Manage password and hosted access there.\"],\"/JnyjR\":[\"Toggle built-in navigation items. Their order controls what shows in the header and which feed the homepage opens first.\"],\"/PXXBT\":[\"Nearly white, with a touch of warmth.\"],\"/zOUxl\":[\"QR code linking to the Telegram bot\"],\"0OGSSc\":[\"Avatar display updated.\"],\"0UzCUX\":[\"Update the password you use to sign in\"],\"0bdA9b\":[\"Open Telegram to connect\"],\"0uIjy/\":[\"Light sage-green with a matching green accent.\"],\"10UtuM\":[\"CJK Font\"],\"1F6Mzc\":[\"No navigation items yet. Add links or enable system items below.\"],\"1H7gng\":[\"Dashboard language\"],\"1mbBbL\":[\"Connect manually\"],\"1njn7W\":[\"Light\"],\"1qGdnL\":[\"The default. Calm and easy for long reading.\"],\"2B7t+s\":[\"Sessions and password\"],\"2DoBvq\":[\"Feeds\"],\"2FYpfJ\":[\"More\"],\"2Ithfh\":[\"Message the bot any text and it's published as a note.\"],\"2PTjMB\":[\"I want to delete \",[\"siteName\"]],\"2cFU6q\":[\"Site Footer\"],\"2fPEPI\":[\"A calm, cool backdrop.\"],\"2lkk2l\":[\"Yellow-tinted paper with an olive-green accent.\"],\"2oWZo7\":[\"Last commit\"],\"2uuy4H\":[\"Connected via Personal Access Token\"],\"35x8eZ\":[\"Showing \",[\"shown\"],\" of \",[\"total\"]],\"39QGku\":[\"Open the bot and send the binding code, then anything you message it becomes a note.\"],\"3Cw1AI\":[\"Add Collection\"],\"3VrybB\":[\"Redirect\"],\"3Yvsaz\":[\"302 (Temporary)\"],\"3n0zbB\":[\"Session management is off in demo mode. Use the shared demo session instead.\"],\"3sYJi5\":[\"Download a Hugo-compatible archive — host it statically or move to another Jant.\"],\"3wKq0C\":[\"Couldn't save. Try again in a moment.\"],\"49Bsal\":[\"Feed settings updated.\"],\"4Jge8E\":[\"Active Sessions\"],\"4KIa+q\":[\"Export downloaded.\"],\"4cEClj\":[\"Sessions\"],\"4yyXWu\":[\"Pale bone-white with a muted green accent.\"],\"4zGJ5E\":[\"Delete Account Permanently\"],\"5QlUIt\":[\"Empty repository. Ready to connect.\"],\"5VQnR3\":[\"Use these when you want a feed URL that never changes.\"],\"5dpcN1\":[\"type to search all\"],\"5f1Wo9\":[\"Connected as \",[\"account\"]],\"5o8R81\":[\"Very light ivory with a faint tea-green accent.\"],\"6ArdBh\":[\"Uses featured posts for /feed.\"],\"6DjeBT\":[\"Demo sites always stay hidden from search engines.\"],\"6E3aK4\":[\"Manage Hosting\"],\"6FFB7q\":[\"Uses the latest public posts for /feed.\"],\"6K1Vef\":[\"Delete this blog permanently? This cannot be undone.\"],\"6NpNLc\":[\"This repository has existing content.\"],\"6V3Ea3\":[\"Copied\"],\"71WIgc\":[\"Get a new code\"],\"746NHh\":[\"this blog\"],\"7811AW\":[\"This repository is already backing up this site.\"],\"7FCZPo\":[\"Content language\"],\"7FaY4u\":[\"Usage\"],\"7G9YLi\":[\"Allow search engines to index my site\"],\"7GISOt\":[\"Save bot token\"],\"7MZxzw\":[\"Password changed.\"],\"7vhWI8\":[\"New Password\"],\"81nFIS\":[\"Passwords don't match. Make sure both fields are identical.\"],\"87a/t/\":[\"Label\"],\"89Upyo\":[\"That theme isn't available. Pick another one.\"],\"8BfEpW\":[\"Hosted account\"],\"8N/Mcp\":[\"Archive filter parameters (e.g. format=note&view=list)\"],\"8T46pB\":[\"Bot token\"],\"8U2Z7f\":[\"New Custom URL\"],\"8ZsakT\":[\"Password\"],\"8gEghq\":[\"Bright warm-white with a moss-green accent.\"],\"9+vGLh\":[\"Custom CSS\"],\"9As8Nu\":[\"Create one on GitHub\"],\"9EjI4j\":[\"Warm sand\"],\"9Lsvt5\":[\"Signed in \",[\"date\"]],\"9T7Cwm\":[\"Redirects, vanity paths, and URL control\"],\"9aUyym\":[\"See where you're signed in and revoke old sessions\"],\"A1taO8\":[\"Search\"],\"AeXO77\":[\"Account\"],\"AnY+O9\":[\"Show \\\"Build with Jant\\\" at the bottom of the home page\"],\"ApZDMk\":[\"This is used for your favicon and apple-touch-icon. For best results, upload a square PNG with a solid background at least 512x512 pixels.\"],\"B495Gs\":[\"Archive\"],\"B4ESok\":[\"API reference\"],\"BzEFor\":[\"or\"],\"CDAdlf\":[\"Remove bot\"],\"CTAEes\":[\"Select a repository\"],\"CjZZgz\":[\"This repository already has commits\"],\"D8k2s6\":[\"Connect Telegram\"],\"DCKkhU\":[\"Current Password\"],\"DKKKeF\":[\"Manage password and hosted access in \",[\"providerLabel\"]],\"DVFXa6\":[\"The cleanest, most neutral option.\"],\"EO3I6h\":[\"Upload didn't go through. Try again in a moment.\"],\"Eax/et\":[\"Accent\"],\"Enslfm\":[\"Destination\"],\"F53UDu\":[\"Cool white\"],\"F7FKwe\":[\"Anything you paste here has full access to your visitors' browsers. Only use code from sources you trust.\"],\"F8SNqr\":[\"Warm orange\"],\"Fk3SSD\":[\"Calm and natural, easy on the eyes.\"],\"FkMol5\":[\"Featured\"],\"G/1oP+\":[\"Remove the webhook and stop syncing. Your repository content will not be deleted.\"],\"G0qJsQ\":[\"Security token missing. Refresh the page and try again.\"],\"G39wnK\":[\"Back up and sync content with a GitHub repository\"],\"GMMWcy\":[\"Name, metadata, language, and search defaults\"],\"GXsAby\":[\"Revoke\"],\"GxkJXS\":[\"Uploading...\"],\"GzKzUa\":[\"Demo limits\"],\"H4x7Sk\":[\"The language this admin dashboard shows in. Available in English, 简体中文, and 繁體中文.\"],\"HCNlq3\":[\"Clean and high-contrast, close to white.\"],\"HHDyGw\":[\"Soft green\"],\"HKH+W+\":[\"Data\"],\"Hp1l6f\":[\"Current\"],\"HxlY7t\":[\"Changing this updates what subscribers get from /feed.\"],\"HxuOlm\":[\"Site Header\"],\"I4HRxU\":[\"Every published post, including ones hidden from Latest.\"],\"I6gXOa\":[\"Path\"],\"I76CzF\":[\"Neutral gray\"],\"ID38tA\":[\"Account deletion is off in demo mode. The shared demo resets separately.\"],\"IF9tPu\":[\"When to use site export, database backups, and recovery drills.\"],\"IW5PBo\":[\"Copy Token\"],\"IagCbF\":[\"URL\"],\"IfB3m6\":[\"The language your posts are written in. Announced to readers and search engines through HTML lang and your RSS feed. Any BCP 47 tag works.\"],\"IreQBq\":[\"Repository\"],\"J6bLeg\":[\"Add a custom link to any URL\"],\"JL7LF5\":[\"available CSS variables, data attributes, and examples.\"],\"JTviaO\":[\"Manage sign-in security, exports, and irreversible actions.\"],\"JcD7qf\":[\"More actions\"],\"JjX0OO\":[\"Copy your token now — it won't be shown again.\"],\"JrFTcr\":[\"Connecting…\"],\"JuN5GC\":[\"No file selected. Choose a file to upload.\"],\"KDw4GX\":[\"Try again\"],\"KSgo21\":[\"Pick a repository\"],\"KVVYBh\":[\"Add collection to navigation\"],\"KiJn9B\":[\"Note\"],\"KwOLJF\":[\"The original Jant palette, and a solid everyday pick.\"],\"L3DEwT\":[\"Remove this avatar? Your favicon and header icon will go back to the default.\"],\"L4t4/q\":[\"March 14\"],\"LdyooL\":[\"link\"],\"M/D8PK\":[\"+ Install on another account\"],\"M/haSd\":[\"Always show the light version of the theme.\"],\"M2kIWU\":[\"Font theme\"],\"M6CbAU\":[\"Toggle edit panel\"],\"MaYYE6\":[\"Post notes by messaging a Telegram bot\"],\"Me5t5H\":[\"Connect a GitHub repository to automatically back up your posts as Markdown files. Edits on GitHub sync back to your site.\"],\"Mr4QPw\":[\"Disconnect Telegram? You can reconnect any time with a new binding code.\"],\"MtENL9\":[\"Tune how your site looks, reads, and runs.\"],\"N/8NPV\":[\"Before deleting, download a site export. You won't be able to recover this account after deletion.\"],\"N7UNHY\":[\"Featured feed\"],\"NHnUHF\":[\"Favicon and the profile mark in your header\"],\"NU2Fqi\":[\"Save CSS\"],\"NVjhde\":[\"Warm parchment\"],\"Nldjdr\":[\"No custom URLs yet. Create one to add redirects or custom paths for posts.\"],\"O7rgs6\":[\"Header RSS points to your \",[\"feed\"],\" feed (/feed). Change what /feed returns in General.\"],\"OSJXFg\":[\"Applies to your entire site, including admin pages. Pick a palette, then choose whether it follows the system or stays fixed.\"],\"Ox3+3h\":[\"No matches.\"],\"PEUV5I\":[\"Code injection updated.\"],\"PHh52z\":[\"Warm and rich, with strong brown tones.\"],\"PXj9lw\":[\"Stop accepting posts from Telegram. Your existing notes stay published.\"],\"PZ7HJ8\":[\"Blog Avatar\"],\"Pwqkdw\":[\"Loading…\"],\"PxJ9W6\":[\"Generate Token\"],\"Q/6Y+2\":[\"Needs Contents (read/write) and Webhooks (read/write) on the target repository.\"],\"Q30z/l\":[\"Remove this collection from navigation? The collection itself won't be deleted.\"],\"Q99OtV\":[\"Pin a collection to your navigation bar. An asterisk (*) appears next to collections updated in the last 48 hours.\"],\"QCwsv1\":[\"Warm off-white\"],\"QKvrmL\":[\"Warm-neutral and easy for long reading.\"],\"QZmz0H\":[\"Built-in links\"],\"Qnrzvb\":[\"Active Tokens\"],\"R6Z4LE\":[\"Download failed. Please try again.\"],\"R9Khdg\":[\"Auto\"],\"RcdDOS\":[\"Create a bot by messaging @BotFather on Telegram, then paste the token it gives you.\"],\"RdVIcf\":[\"Cream and coffee brown\"],\"RxsRD6\":[\"Time Zone\"],\"SJmfuf\":[\"Site Name\"],\"SKZhW9\":[\"Token name\"],\"SVQQPe\":[\"Couldn't connect. Check the error and try again.\"],\"SchpMp\":[\"Telegram\"],\"SrGs4T\":[\"Light blue-gray background, cool and even.\"],\"TpF3v+\":[\"Injected before </head>. Use for analytics, custom meta tags, and styles that must load early.\"],\"Tz0i8g\":[\"Settings\"],\"UFK415\":[\"Site-wide HTML for analytics and widgets\"],\"UTvFQq\":[\"Open \",[\"linkOpen\"],\"@\",[\"botUsername\"],[\"linkClose\"],\" and send:\"],\"Uj/btJ\":[\"Display avatar in my site header\"],\"UsODUn\":[\"Select an account\"],\"UxKoFf\":[\"Navigation\"],\"V+bhUy\":[\"Install GitHub App\"],\"V4WsyL\":[\"Add Link\"],\"V5pZwT\":[\"Search settings updated.\"],\"VXUPla\":[\"Connect with GitHub App\"],\"VhMDMg\":[\"Change Password\"],\"Vn3jYy\":[\"Navigation items\"],\"VoZYGU\":[\"This will permanently delete all your data — posts, media, collections, settings, and your account. Your blog will be reset to its initial setup state. This cannot be undone.\"],\"WUnFK2\":[\"Pale cool-white with deep indigo text. High contrast.\"],\"Wa9q4P\":[\"Pure white\"],\"Weq9zb\":[\"General\"],\"Wi9i06\":[\"Follow each visitor's system preference.\"],\"Wx1M8N\":[\"Install the GitHub App to grant access without managing personal tokens. Permissions are scoped per repository and revocable from GitHub.\"],\"X+8FMk\":[\"Current password doesn't match. Try again.\"],\"X1G9eY\":[\"Navigation Preview\"],\"X2Cbc2\":[\"Archive feed\"],\"X9Hujr\":[\"Manual Push\"],\"XtBJV8\":[\"Checking repository…\"],\"Xtc16w\":[\"Refresh repository list\"],\"Y/F35r\":[\"Create a post with curl:\"],\"Y/N5N7\":[\"Soft cream background with a muted green accent.\"],\"YF6zHf\":[\"Site settings updated.\"],\"YdG2RF\":[\"Export Site\"],\"YkgZi7\":[\"Connect a Telegram bot, then anything you message it gets published as a note.\"],\"YwhjRx\":[\"Manage Account\"],\"Yxp859\":[\"Warm cream\"],\"ZDY7Fy\":[\"Syncing…\"],\"ZQKLI1\":[\"Danger Zone\"],\"ZS/CBL\":[\"Delete this navigation link? Visitors won't see it in your site header anymore.\"],\"ZgZX+d\":[\"Pure white with neutral grays. No color tint.\"],\"ZhhOwV\":[\"Quote\"],\"ZiooJI\":[\"API Tokens\"],\"Zm7Qb0\":[\"Backup & Restore Guide\"],\"ZmUkwN\":[\"Add custom link to navigation\"],\"a14mj8\":[\"Unknown device\"],\"a1iEgy\":[\"Warm cream background with deep coffee-brown accents.\"],\"a3LDKx\":[\"Security\"],\"aAIQg2\":[\"Appearance\"],\"aFkzVF\":[\"The slug of the target post or collection\"],\"alKG0+\":[\"Font Theme\"],\"anibOb\":[\"About this blog\"],\"any7NR\":[\"Theming guide\"],\"b+/jO6\":[\"301 (Permanent)\"],\"bHOiy1\":[\"Password changes are off in demo mode. Sign in with the shared demo credentials.\"],\"bHYIks\":[\"Sign Out\"],\"bV2vng\":[\"Warm terracotta\"],\"bbR5vW\":[\"This palette\"],\"bmrL08\":[\"Demo mode hides sessions, password changes, and account deletion. Export still works.\"],\"bviiKV\":[\"Headings, body text, and links in this theme.\"],\"c3MN2z\":[\"all available endpoints and request formats.\"],\"cS7/bk\":[\"Remove the saved bot token? Its webhook is deleted and any connected account is disconnected.\"],\"cSDy01\":[\"Custom CSS updated.\"],\"clzoNp\":[\"Always show the dark version of the theme.\"],\"cnGeoo\":[\"Delete\"],\"d3FRkY\":[\"Could not copy. Try again.\"],\"d5oGUo\":[\"Create a new repository on GitHub\"],\"dEgA5A\":[\"Cancel\"],\"dTXUY+\":[\"Confirm account deletion\"],\"dYKrp3\":[\"Hidden from Latest\"],\"dk7TCH\":[\"Permanently delete all data and reset the blog\"],\"drodVV\":[\"No collections yet. Create one first, then add it to your navigation.\"],\"dsWkIw\":[\"Disconnect from GitHub? The webhook will be removed. Your repository content will not be deleted.\"],\"e/tSI5\":[\"Navigation order updated.\"],\"eOL7vn\":[\"Minimal color, low distraction.\"],\"ePK91l\":[\"Edit\"],\"ebQKK7\":[\"Site\"],\"egK+Yy\":[\"Bearer tokens for scripts and automation\"],\"ehj/zN\":[\"Redirect Type\"],\"eneWvv\":[\"Draft\"],\"erTMh7\":[\"Last synced\"],\"f+m8jj\":[\"Feed URL copied.\"],\"f8fH8W\":[\"Design\"],\"fKRAwQ\":[\"Sandy background with a green accent.\"],\"fWYqkz\":[\"Code Injection\"],\"fYXQnC\":[\"Cozy and bold among the warm tones.\"],\"gOWiTY\":[\"Load a serif font optimized for Chinese, Japanese, or Korean content.\"],\"gZ5owP\":[\"Search repositories\"],\"gbqbh6\":[\"Safe to leave this page — syncing continues in the background.\"],\"gkFvVN\":[\"Injected before </body>. Use for chat widgets and scripts that should not block page load.\"],\"gtQsRO\":[\"Create Custom URL\"],\"hBO/y4\":[\"Security token expired. Refresh the page and try again.\"],\"hGmyDl\":[\"Tokens let you access the API from scripts, shortcuts, and other tools without signing in.\"],\"hIHkRy\":[\"Connected via GitHub App\"],\"hdSi1b\":[\"Type \",[\"repo\"],\" to confirm\"],\"he3ygx\":[\"Copy\"],\"i0qMbr\":[\"Home\"],\"iEUzMn\":[\"system\"],\"iSLIjg\":[\"Connect\"],\"iVOMRi\":[\"Home settings updated.\"],\"icB4Cv\":[\"Drag links here to show them under the More menu\"],\"id3vuh\":[\"Telegram is set up, but the bot couldn't be reached. Check the bot token and try again.\"],\"ihn4zD\":[\"Search…\"],\"iiDXZc\":[\"Displayed at the bottom of all posts and pages.\"],\"itS31B\":[\"A warmer look, like slightly aged paper.\"],\"iwQZvS\":[\"Cool blue-gray\"],\"j4VrG6\":[\"Download Export ZIP\"],\"j5nQL2\":[\"e.g. iOS Shortcuts\"],\"jUV7CU\":[\"Upload Avatar\"],\"jVUmOK\":[\"Markdown supported\"],\"jdVYS8\":[\"Pick the one that fits your writing.\"],\"jgBjXJ\":[\"Revoke this token? Any scripts using it will stop working.\"],\"jpctdh\":[\"View\"],\"k1ifdL\":[\"Processing...\"],\"kLw03Y\":[\"Bright paper white\"],\"kMXclu\":[\"Download a site export\"],\"kNiQp6\":[\"Pinned\"],\"kRhzWq\":[\"GitHub Sync\"],\"kVQs7s\":[\"Fine-grained styling overrides\"],\"ke1gWS\":[\"Custom URLs\"],\"kfcRb0\":[\"Avatar\"],\"kxDZ2i\":[\"This code runs on every page of your site.\"],\"l2Op2p\":[\"Query Parameters\"],\"lLW3vJ\":[\"Target Slug\"],\"lV04bQ\":[\"Warm and earthy, but still light.\"],\"lYHJih\":[\"Revoke this session? That device will need to sign in again.\"],\"mLOk1i\":[\"Push all posts to GitHub right now instead of waiting for the next automatic sync.\"],\"mSNmrX\":[\"List posts:\"],\"nG2qTk\":[\"Example link\"],\"nK07ni\":[\"Choose a typographic direction for your site. Each theme changes both the font pairing and the reading rhythm.\"],\"nbfdhU\":[\"Integrations\"],\"ntJYyh\":[\"Domains, plan, and billing in \",[\"providerLabel\"]],\"o/vNDE\":[\"lets you override any theme variable.\"],\"oGC9uP\":[\"owner/repo\"],\"oH2JHg\":[\"We'll prefill the name \",[\"name\"],\". The list refreshes on return.\"],\"oKOOsY\":[\"Color Theme\"],\"oL535e\":[\"Not synced yet\"],\"oNA4If\":[\"All collections are already in your navigation.\"],\"oUn9Z7\":[\"Near-neutral light gray with a steel-blue accent.\"],\"ofdy2l\":[\"Orange-tinted background. The warmest palette.\"],\"pZq3aX\":[\"Upload failed. Please try again.\"],\"pgTIrt\":[\"Choose the GitHub account and repository to sync with this site.\"],\"psoxDF\":[\"That font theme isn't available. Pick another one.\"],\"pvnfJD\":[\"Dark\"],\"q+hNag\":[\"Collection\"],\"qdcESc\":[\"Create a new repository\"],\"r5EW6f\":[\"This repository is already backing up another Jant site (\",[\"host\"],\"). Pick a different repository.\"],\"rEspiY\":[\"Navigation placement updated.\"],\"rFmBG3\":[\"Color theme\"],\"rlonmB\":[\"Couldn't delete. Try again in a moment.\"],\"satWc6\":[\"Main RSS feed\"],\"sgr2wQ\":[\"collection\"],\"soRdOu\":[\"Off-white paper with a deep forest-green accent.\"],\"sqxcaY\":[\"Created \",[\"date\"]],\"sxkWRg\":[\"Advanced\"],\"t/YqKh\":[\"Remove\"],\"t3hvHq\":[\"Sync Now\"],\"tJ4H0O\":[\"your Telegram account\"],\"tfDRzk\":[\"Save\"],\"tvgAq5\":[\"No accounts authorized yet\"],\"u1VTd3\":[\"Palette, surface tone, and overall mood\"],\"u3wRF+\":[\"Published\"],\"u6KOjV\":[\"Want more control?\"],\"udPwLB\":[\"Header\"],\"ui6aMF\":[\"These devices are currently signed in to your account. Revoke any session you don't recognize.\"],\"vBEKwo\":[\"Manage this site's active sessions here. Password and hosted access are managed through \",[\"providerLabel\"],\".\"],\"vRldcl\":[\"Typography choices and reading texture\"],\"vSYKYI\":[\"Main feed\"],\"vTuib7\":[\"This controls what /feed returns.\"],\"vmQmHx\":[\"Add custom CSS to override any styles. Use data attributes like [data-page], [data-post], [data-format] to target specific elements.\"],\"vzX5FB\":[\"Delete Account\"],\"w8Rv8T\":[\"Label is required\"],\"wL3cK8\":[\"Latest\"],\"wW6NCp\":[\"Last error\"],\"wc+17X\":[\"/* Your custom CSS here */\"],\"wuLtXn\":[\"No active sessions right now. Signed-in devices show up here.\"],\"xCWek4\":[\"File storage isn't set up. Check your server config.\"],\"xHt036\":[\"Personal Access Token\"],\"xKeZ0l\":[\"An earthier, warmer tone.\"],\"xYbozN\":[\"Soft ivory\"],\"xqViCq\":[\"Warm ivory\"],\"xxaahd\":[\"When you want a cooler, sharper look.\"],\"y28hnO\":[\"Post\"],\"y8Md/V\":[\"Language and time updated.\"],\"yNCqOt\":[\"Latest feed\"],\"yQ3kNF\":[\"Type the following phrase to confirm:\"],\"ydq1k2\":[\"Pick an account first\"],\"yjjCV8\":[\"Fixed feed URLs\"],\"yjkELF\":[\"Confirm New Password\"],\"yzF66j\":[\"Link\"],\"z6wakA\":[\"A short intro shown on your home page.\"],\"zEizrk\":[\"Last used \",[\"date\"]],\"zSURJW\":[\"No repositories match.\"],\"zXH2jX\":[\"Language & Time\"],\"zlcDd2\":[\"Delete this custom URL? Visitors using it won't be redirected anymore.\"],\"zwBp5t\":[\"Private\"],\"zxRN6H\":[\"Header links, home feed, and overflow menu\"]}");
1919
+ var messages$2 = JSON.parse("{\"++YsxG\":[\"Readers and search engines see\"],\"+4Z6iP\":[\"Create the repository on GitHub first — it can be empty.\"],\"+9JI/F\":[\"Connecting will sync your site onto \",[\"repo\"],\"'s default branch on top of its existing history. Existing files outside Jant's managed paths are kept. This can't be undone.\"],\"+AXdXp\":[\"Label and URL are required\"],\"+K0AvT\":[\"Disconnect\"],\"+wgt7C\":[\"Muted red-brown background, earthy and warm.\"],\"+zy2Nq\":[\"Type\"],\"/3H2/s\":[\"This hosted site signs in through \",[\"providerLabel\"],\". Manage password and hosted access there.\"],\"/JnyjR\":[\"Toggle built-in navigation items. Their order controls what shows in the header and which feed the homepage opens first.\"],\"/PXXBT\":[\"Nearly white, with a touch of warmth.\"],\"/zOUxl\":[\"QR code linking to the Telegram bot\"],\"0OGSSc\":[\"Avatar display updated.\"],\"0UzCUX\":[\"Update the password you use to sign in\"],\"0bdA9b\":[\"Open Telegram to connect\"],\"0gECZD\":[\"Want to write a fuller introduction?\"],\"0uIjy/\":[\"Light sage-green with a matching green accent.\"],\"10UtuM\":[\"CJK Font\"],\"1F6Mzc\":[\"No navigation items yet. Add links or enable system items below.\"],\"1H7gng\":[\"Dashboard language\"],\"1mbBbL\":[\"Connect manually\"],\"1njn7W\":[\"Light\"],\"1qGdnL\":[\"The default. Calm and easy for long reading.\"],\"2B7t+s\":[\"Sessions and password\"],\"2DoBvq\":[\"Feeds\"],\"2FYpfJ\":[\"More\"],\"2Ithfh\":[\"Message the bot any text and it's published as a note.\"],\"2PTjMB\":[\"I want to delete \",[\"siteName\"]],\"2cFU6q\":[\"Site Footer\"],\"2fPEPI\":[\"A calm, cool backdrop.\"],\"2lkk2l\":[\"Yellow-tinted paper with an olive-green accent.\"],\"2oWZo7\":[\"Last commit\"],\"2uuy4H\":[\"Connected via Personal Access Token\"],\"2wK4BX\":[\"Edit About page\"],\"35x8eZ\":[\"Showing \",[\"shown\"],\" of \",[\"total\"]],\"39QGku\":[\"Open the bot and send the binding code, then anything you message it becomes a note.\"],\"3Cw1AI\":[\"Add Collection\"],\"3VrybB\":[\"Redirect\"],\"3Yvsaz\":[\"302 (Temporary)\"],\"3n0zbB\":[\"Session management is off in demo mode. Use the shared demo session instead.\"],\"3sYJi5\":[\"Download a Hugo-compatible archive — host it statically or move to another Jant.\"],\"3wKq0C\":[\"Couldn't save. Try again in a moment.\"],\"49Bsal\":[\"Feed settings updated.\"],\"4Jge8E\":[\"Active Sessions\"],\"4KIa+q\":[\"Export downloaded.\"],\"4cEClj\":[\"Sessions\"],\"4yyXWu\":[\"Pale bone-white with a muted green accent.\"],\"4zGJ5E\":[\"Delete Account Permanently\"],\"5QlUIt\":[\"Empty repository. Ready to connect.\"],\"5VQnR3\":[\"Use these when you want a feed URL that never changes.\"],\"5dpcN1\":[\"type to search all\"],\"5f1Wo9\":[\"Connected as \",[\"account\"]],\"5o8R81\":[\"Very light ivory with a faint tea-green accent.\"],\"6ArdBh\":[\"Uses featured posts for /feed.\"],\"6DjeBT\":[\"Demo sites always stay hidden from search engines.\"],\"6E3aK4\":[\"Manage Hosting\"],\"6FFB7q\":[\"Uses the latest public posts for /feed.\"],\"6K1Vef\":[\"Delete this blog permanently? This cannot be undone.\"],\"6NpNLc\":[\"This repository has existing content.\"],\"6V3Ea3\":[\"Copied\"],\"6WdDG7\":[\"Page\"],\"71WIgc\":[\"Get a new code\"],\"746NHh\":[\"this blog\"],\"7811AW\":[\"This repository is already backing up this site.\"],\"7FCZPo\":[\"Content language\"],\"7FaY4u\":[\"Usage\"],\"7G9YLi\":[\"Allow search engines to index my site\"],\"7GISOt\":[\"Save bot token\"],\"7MZxzw\":[\"Password changed.\"],\"7vhWI8\":[\"New Password\"],\"81nFIS\":[\"Passwords don't match. Make sure both fields are identical.\"],\"87a/t/\":[\"Label\"],\"89Upyo\":[\"That theme isn't available. Pick another one.\"],\"8BfEpW\":[\"Hosted account\"],\"8N/Mcp\":[\"Archive filter parameters (e.g. format=note&view=list)\"],\"8T46pB\":[\"Bot token\"],\"8U2Z7f\":[\"New Custom URL\"],\"8ZsakT\":[\"Password\"],\"8gEghq\":[\"Bright warm-white with a moss-green accent.\"],\"9+vGLh\":[\"Custom CSS\"],\"9As8Nu\":[\"Create one on GitHub\"],\"9EjI4j\":[\"Warm sand\"],\"9J6wUO\":[\"Suggested links\"],\"9Lsvt5\":[\"Signed in \",[\"date\"]],\"9T7Cwm\":[\"Redirects, vanity paths, and URL control\"],\"9aUyym\":[\"See where you're signed in and revoke old sessions\"],\"A1taO8\":[\"Search\"],\"AeXO77\":[\"Account\"],\"AnY+O9\":[\"Show \\\"Build with Jant\\\" at the bottom of the home page\"],\"ApZDMk\":[\"This is used for your favicon and apple-touch-icon. For best results, upload a square PNG with a solid background at least 512x512 pixels.\"],\"B495Gs\":[\"Archive\"],\"B4ESok\":[\"API reference\"],\"BTYdze\":[\"Link added to navigation.\"],\"BzEFor\":[\"or\"],\"CDAdlf\":[\"Remove bot\"],\"CTAEes\":[\"Select a repository\"],\"CjZZgz\":[\"This repository already has commits\"],\"D8k2s6\":[\"Connect Telegram\"],\"DCKkhU\":[\"Current Password\"],\"DKKKeF\":[\"Manage password and hosted access in \",[\"providerLabel\"]],\"DVFXa6\":[\"The cleanest, most neutral option.\"],\"EO3I6h\":[\"Upload didn't go through. Try again in a moment.\"],\"Eax/et\":[\"Accent\"],\"Enslfm\":[\"Destination\"],\"F53UDu\":[\"Cool white\"],\"F7FKwe\":[\"Anything you paste here has full access to your visitors' browsers. Only use code from sources you trust.\"],\"F8SNqr\":[\"Warm orange\"],\"Fk3SSD\":[\"Calm and natural, easy on the eyes.\"],\"FkMol5\":[\"Featured\"],\"G/1oP+\":[\"Remove the webhook and stop syncing. Your repository content will not be deleted.\"],\"G0qJsQ\":[\"Security token missing. Refresh the page and try again.\"],\"G39wnK\":[\"Back up and sync content with a GitHub repository\"],\"GMMWcy\":[\"Name, metadata, language, and search defaults\"],\"GXsAby\":[\"Revoke\"],\"GxkJXS\":[\"Uploading...\"],\"GzKzUa\":[\"Demo limits\"],\"H4x7Sk\":[\"The language this admin dashboard shows in. Available in English, 简体中文, and 繁體中文.\"],\"HCNlq3\":[\"Clean and high-contrast, close to white.\"],\"HHDyGw\":[\"Soft green\"],\"HKH+W+\":[\"Data\"],\"Hp1l6f\":[\"Current\"],\"HxlY7t\":[\"Changing this updates what subscribers get from /feed.\"],\"HxuOlm\":[\"Site Header\"],\"I4HRxU\":[\"Every published post, including ones hidden from Latest.\"],\"I6gXOa\":[\"Path\"],\"I76CzF\":[\"Neutral gray\"],\"ID38tA\":[\"Account deletion is off in demo mode. The shared demo resets separately.\"],\"IF9tPu\":[\"When to use site export, database backups, and recovery drills.\"],\"IW5PBo\":[\"Copy Token\"],\"IagCbF\":[\"URL\"],\"IfB3m6\":[\"The language your posts are written in. Announced to readers and search engines through HTML lang and your RSS feed. Any BCP 47 tag works.\"],\"IreQBq\":[\"Repository\"],\"J6bLeg\":[\"Add a custom link to any URL\"],\"JL7LF5\":[\"available CSS variables, data attributes, and examples.\"],\"JTviaO\":[\"Manage sign-in security, exports, and irreversible actions.\"],\"JcD7qf\":[\"More actions\"],\"JjX0OO\":[\"Copy your token now — it won't be shown again.\"],\"JrFTcr\":[\"Connecting…\"],\"JuN5GC\":[\"No file selected. Choose a file to upload.\"],\"KDw4GX\":[\"Try again\"],\"KSgo21\":[\"Pick a repository\"],\"KVVYBh\":[\"Add collection to navigation\"],\"KiJn9B\":[\"Note\"],\"KwOLJF\":[\"The original Jant palette, and a solid everyday pick.\"],\"L3DEwT\":[\"Remove this avatar? Your favicon and header icon will go back to the default.\"],\"L4t4/q\":[\"March 14\"],\"LdyooL\":[\"link\"],\"M/D8PK\":[\"+ Install on another account\"],\"M/haSd\":[\"Always show the light version of the theme.\"],\"M2kIWU\":[\"Font theme\"],\"M6CbAU\":[\"Toggle edit panel\"],\"MaYYE6\":[\"Post notes by messaging a Telegram bot\"],\"Me5t5H\":[\"Connect a GitHub repository to automatically back up your posts as Markdown files. Edits on GitHub sync back to your site.\"],\"Mr4QPw\":[\"Disconnect Telegram? You can reconnect any time with a new binding code.\"],\"MtENL9\":[\"Tune how your site looks, reads, and runs.\"],\"N/8NPV\":[\"Before deleting, download a site export. You won't be able to recover this account after deletion.\"],\"N7UNHY\":[\"Featured feed\"],\"NHnUHF\":[\"Favicon and the profile mark in your header\"],\"NU2Fqi\":[\"Save CSS\"],\"NVjhde\":[\"Warm parchment\"],\"Nldjdr\":[\"No custom URLs yet. Create one to add redirects or custom paths for posts.\"],\"O7rgs6\":[\"Header RSS points to your \",[\"feed\"],\" feed (/feed). Change what /feed returns in General.\"],\"OSJXFg\":[\"Applies to your entire site, including admin pages. Pick a palette, then choose whether it follows the system or stays fixed.\"],\"Ox3+3h\":[\"No matches.\"],\"PEUV5I\":[\"Code injection updated.\"],\"PHh52z\":[\"Warm and rich, with strong brown tones.\"],\"PXj9lw\":[\"Stop accepting posts from Telegram. Your existing notes stay published.\"],\"PZ7HJ8\":[\"Blog Avatar\"],\"Pwqkdw\":[\"Loading…\"],\"PxJ9W6\":[\"Generate Token\"],\"Q/6Y+2\":[\"Needs Contents (read/write) and Webhooks (read/write) on the target repository.\"],\"Q30z/l\":[\"Remove this collection from navigation? The collection itself won't be deleted.\"],\"Q99OtV\":[\"Pin a collection to your navigation bar. An asterisk (*) appears next to collections updated in the last 48 hours.\"],\"QCwsv1\":[\"Warm off-white\"],\"QKvrmL\":[\"Warm-neutral and easy for long reading.\"],\"QZmz0H\":[\"Built-in links\"],\"Qnrzvb\":[\"Active Tokens\"],\"R6Z4LE\":[\"Download failed. Please try again.\"],\"R9Khdg\":[\"Auto\"],\"RcdDOS\":[\"Create a bot by messaging @BotFather on Telegram, then paste the token it gives you.\"],\"RdVIcf\":[\"Cream and coffee brown\"],\"RxsRD6\":[\"Time Zone\"],\"SJmfuf\":[\"Site Name\"],\"SKZhW9\":[\"Token name\"],\"SVQQPe\":[\"Couldn't connect. Check the error and try again.\"],\"SchpMp\":[\"Telegram\"],\"SrGs4T\":[\"Light blue-gray background, cool and even.\"],\"TpF3v+\":[\"Injected before </head>. Use for analytics, custom meta tags, and styles that must load early.\"],\"Tu6bMZ\":[\"Create About page\"],\"Tz0i8g\":[\"Settings\"],\"UFK415\":[\"Site-wide HTML for analytics and widgets\"],\"UTvFQq\":[\"Open \",[\"linkOpen\"],\"@\",[\"botUsername\"],[\"linkClose\"],\" and send:\"],\"Uj/btJ\":[\"Display avatar in my site header\"],\"UsODUn\":[\"Select an account\"],\"UxKoFf\":[\"Navigation\"],\"V+bhUy\":[\"Install GitHub App\"],\"V4WsyL\":[\"Add Link\"],\"V5pZwT\":[\"Search settings updated.\"],\"VXUPla\":[\"Connect with GitHub App\"],\"VhMDMg\":[\"Change Password\"],\"Vn3jYy\":[\"Navigation items\"],\"VoZYGU\":[\"This will permanently delete all your data — posts, media, collections, settings, and your account. Your blog will be reset to its initial setup state. This cannot be undone.\"],\"WUnFK2\":[\"Pale cool-white with deep indigo text. High contrast.\"],\"Wa9q4P\":[\"Pure white\"],\"Wb7EHo\":[\"About page\"],\"Weq9zb\":[\"General\"],\"Wi9i06\":[\"Follow each visitor's system preference.\"],\"Wx1M8N\":[\"Install the GitHub App to grant access without managing personal tokens. Permissions are scoped per repository and revocable from GitHub.\"],\"X+8FMk\":[\"Current password doesn't match. Try again.\"],\"X1G9eY\":[\"Navigation Preview\"],\"X2Cbc2\":[\"Archive feed\"],\"X9Hujr\":[\"Manual Push\"],\"XtBJV8\":[\"Checking repository…\"],\"Xtc16w\":[\"Refresh repository list\"],\"Y/F35r\":[\"Create a post with curl:\"],\"Y/N5N7\":[\"Soft cream background with a muted green accent.\"],\"YF6zHf\":[\"Site settings updated.\"],\"YdG2RF\":[\"Export Site\"],\"YkgZi7\":[\"Connect a Telegram bot, then anything you message it gets published as a note.\"],\"YwhjRx\":[\"Manage Account\"],\"Yxp859\":[\"Warm cream\"],\"ZDY7Fy\":[\"Syncing…\"],\"ZQKLI1\":[\"Danger Zone\"],\"ZS/CBL\":[\"Delete this navigation link? Visitors won't see it in your site header anymore.\"],\"ZgZX+d\":[\"Pure white with neutral grays. No color tint.\"],\"ZhhOwV\":[\"Quote\"],\"ZiooJI\":[\"API Tokens\"],\"Zm7Qb0\":[\"Backup & Restore Guide\"],\"ZmUkwN\":[\"Add custom link to navigation\"],\"a14mj8\":[\"Unknown device\"],\"a1iEgy\":[\"Warm cream background with deep coffee-brown accents.\"],\"a3LDKx\":[\"Security\"],\"aAIQg2\":[\"Appearance\"],\"aFkzVF\":[\"The slug of the target post or collection\"],\"alKG0+\":[\"Font Theme\"],\"anibOb\":[\"About this blog\"],\"any7NR\":[\"Theming guide\"],\"b+/jO6\":[\"301 (Permanent)\"],\"bHOiy1\":[\"Password changes are off in demo mode. Sign in with the shared demo credentials.\"],\"bHYIks\":[\"Sign Out\"],\"bV2vng\":[\"Warm terracotta\"],\"bbR5vW\":[\"This palette\"],\"bmrL08\":[\"Demo mode hides sessions, password changes, and account deletion. Export still works.\"],\"bviiKV\":[\"Headings, body text, and links in this theme.\"],\"c3MN2z\":[\"all available endpoints and request formats.\"],\"cS7/bk\":[\"Remove the saved bot token? Its webhook is deleted and any connected account is disconnected.\"],\"cSDy01\":[\"Custom CSS updated.\"],\"clzoNp\":[\"Always show the dark version of the theme.\"],\"cnGeoo\":[\"Delete\"],\"d3FRkY\":[\"Could not copy. Try again.\"],\"d5oGUo\":[\"Create a new repository on GitHub\"],\"dEgA5A\":[\"Cancel\"],\"dTXUY+\":[\"Confirm account deletion\"],\"dYKrp3\":[\"Hidden from Latest\"],\"dk7TCH\":[\"Permanently delete all data and reset the blog\"],\"drodVV\":[\"No collections yet. Create one first, then add it to your navigation.\"],\"dsWkIw\":[\"Disconnect from GitHub? The webhook will be removed. Your repository content will not be deleted.\"],\"e/tSI5\":[\"Navigation order updated.\"],\"eOL7vn\":[\"Minimal color, low distraction.\"],\"ePK91l\":[\"Edit\"],\"ebQKK7\":[\"Site\"],\"egK+Yy\":[\"Bearer tokens for scripts and automation\"],\"ehj/zN\":[\"Redirect Type\"],\"eneWvv\":[\"Draft\"],\"erTMh7\":[\"Last synced\"],\"f+m8jj\":[\"Feed URL copied.\"],\"f8fH8W\":[\"Design\"],\"fKRAwQ\":[\"Sandy background with a green accent.\"],\"fWYqkz\":[\"Code Injection\"],\"fYXQnC\":[\"Cozy and bold among the warm tones.\"],\"gOWiTY\":[\"Load a serif font optimized for Chinese, Japanese, or Korean content.\"],\"gZ5owP\":[\"Search repositories\"],\"gbqbh6\":[\"Safe to leave this page — syncing continues in the background.\"],\"gkFvVN\":[\"Injected before </body>. Use for chat widgets and scripts that should not block page load.\"],\"gtQsRO\":[\"Create Custom URL\"],\"hBO/y4\":[\"Security token expired. Refresh the page and try again.\"],\"hGmyDl\":[\"Tokens let you access the API from scripts, shortcuts, and other tools without signing in.\"],\"hIHkRy\":[\"Connected via GitHub App\"],\"hdSi1b\":[\"Type \",[\"repo\"],\" to confirm\"],\"he3ygx\":[\"Copy\"],\"i0qMbr\":[\"Home\"],\"iEUzMn\":[\"system\"],\"iSLIjg\":[\"Connect\"],\"iVOMRi\":[\"Home settings updated.\"],\"icB4Cv\":[\"Drag links here to show them under the More menu\"],\"id3vuh\":[\"Telegram is set up, but the bot couldn't be reached. Check the bot token and try again.\"],\"ihn4zD\":[\"Search…\"],\"iiDXZc\":[\"Displayed at the bottom of all posts and pages.\"],\"itS31B\":[\"A warmer look, like slightly aged paper.\"],\"iwQZvS\":[\"Cool blue-gray\"],\"j4VrG6\":[\"Download Export ZIP\"],\"j5nQL2\":[\"e.g. iOS Shortcuts\"],\"jUV7CU\":[\"Upload Avatar\"],\"jVUmOK\":[\"Markdown supported\"],\"jdVYS8\":[\"Pick the one that fits your writing.\"],\"jgBjXJ\":[\"Revoke this token? Any scripts using it will stop working.\"],\"jpctdh\":[\"View\"],\"k1ifdL\":[\"Processing...\"],\"kLw03Y\":[\"Bright paper white\"],\"kMXclu\":[\"Download a site export\"],\"kNiQp6\":[\"Pinned\"],\"kRhzWq\":[\"GitHub Sync\"],\"kVQs7s\":[\"Fine-grained styling overrides\"],\"ke1gWS\":[\"Custom URLs\"],\"kfcRb0\":[\"Avatar\"],\"kxDZ2i\":[\"This code runs on every page of your site.\"],\"l2Op2p\":[\"Query Parameters\"],\"lLW3vJ\":[\"Target Slug\"],\"lV04bQ\":[\"Warm and earthy, but still light.\"],\"lYHJih\":[\"Revoke this session? That device will need to sign in again.\"],\"m16xKo\":[\"Add\"],\"mLOk1i\":[\"Push all posts to GitHub right now instead of waiting for the next automatic sync.\"],\"mSNmrX\":[\"List posts:\"],\"n8+EXe\":[\"Add common destinations that already exist on your site.\"],\"nG2qTk\":[\"Example link\"],\"nK07ni\":[\"Choose a typographic direction for your site. Each theme changes both the font pairing and the reading rhythm.\"],\"nbfdhU\":[\"Integrations\"],\"ntJYyh\":[\"Domains, plan, and billing in \",[\"providerLabel\"]],\"o/vNDE\":[\"lets you override any theme variable.\"],\"oGC9uP\":[\"owner/repo\"],\"oH2JHg\":[\"We'll prefill the name \",[\"name\"],\". The list refreshes on return.\"],\"oKOOsY\":[\"Color Theme\"],\"oL535e\":[\"Not synced yet\"],\"oNA4If\":[\"All collections are already in your navigation.\"],\"oUn9Z7\":[\"Near-neutral light gray with a steel-blue accent.\"],\"ofdy2l\":[\"Orange-tinted background. The warmest palette.\"],\"pZq3aX\":[\"Upload failed. Please try again.\"],\"pgTIrt\":[\"Choose the GitHub account and repository to sync with this site.\"],\"psoxDF\":[\"That font theme isn't available. Pick another one.\"],\"pt4OhQ\":[\"/about is already used. Rename that item before creating an About page.\"],\"pvnfJD\":[\"Dark\"],\"q+hNag\":[\"Collection\"],\"qdcESc\":[\"Create a new repository\"],\"r5EW6f\":[\"This repository is already backing up another Jant site (\",[\"host\"],\"). Pick a different repository.\"],\"rEspiY\":[\"Navigation placement updated.\"],\"rFmBG3\":[\"Color theme\"],\"rlonmB\":[\"Couldn't delete. Try again in a moment.\"],\"satWc6\":[\"Main RSS feed\"],\"sgr2wQ\":[\"collection\"],\"soRdOu\":[\"Off-white paper with a deep forest-green accent.\"],\"sqxcaY\":[\"Created \",[\"date\"]],\"sxkWRg\":[\"Advanced\"],\"t/YqKh\":[\"Remove\"],\"t3hvHq\":[\"Sync Now\"],\"tJ4H0O\":[\"your Telegram account\"],\"tfDRzk\":[\"Save\"],\"tvgAq5\":[\"No accounts authorized yet\"],\"u1VTd3\":[\"Palette, surface tone, and overall mood\"],\"u3wRF+\":[\"Published\"],\"u6KOjV\":[\"Want more control?\"],\"udPwLB\":[\"Header\"],\"ui6aMF\":[\"These devices are currently signed in to your account. Revoke any session you don't recognize.\"],\"vBEKwo\":[\"Manage this site's active sessions here. Password and hosted access are managed through \",[\"providerLabel\"],\".\"],\"vRldcl\":[\"Typography choices and reading texture\"],\"vSYKYI\":[\"Main feed\"],\"vTuib7\":[\"This controls what /feed returns.\"],\"vmQmHx\":[\"Add custom CSS to override any styles. Use data attributes like [data-page], [data-post], [data-format] to target specific elements.\"],\"vzX5FB\":[\"Delete Account\"],\"w8Rv8T\":[\"Label is required\"],\"wL3cK8\":[\"Latest\"],\"wW6NCp\":[\"Last error\"],\"wc+17X\":[\"/* Your custom CSS here */\"],\"wuLtXn\":[\"No active sessions right now. Signed-in devices show up here.\"],\"xCWek4\":[\"File storage isn't set up. Check your server config.\"],\"xHt036\":[\"Personal Access Token\"],\"xKeZ0l\":[\"An earthier, warmer tone.\"],\"xYbozN\":[\"Soft ivory\"],\"xqViCq\":[\"Warm ivory\"],\"xxaahd\":[\"When you want a cooler, sharper look.\"],\"y28hnO\":[\"Post\"],\"y8Md/V\":[\"Language and time updated.\"],\"yNCqOt\":[\"Latest feed\"],\"yQ3kNF\":[\"Type the following phrase to confirm:\"],\"ydq1k2\":[\"Pick an account first\"],\"yjjCV8\":[\"Fixed feed URLs\"],\"yjkELF\":[\"Confirm New Password\"],\"yzF66j\":[\"Link\"],\"z6wakA\":[\"A short intro shown on your home page.\"],\"zEizrk\":[\"Last used \",[\"date\"]],\"zSURJW\":[\"No repositories match.\"],\"zXH2jX\":[\"Language & Time\"],\"zlcDd2\":[\"Delete this custom URL? Visitors using it won't be redirected anymore.\"],\"zwBp5t\":[\"Private\"],\"zxRN6H\":[\"Header links, home feed, and overflow menu\"]}");
1920
1920
  //#endregion
1921
1921
  //#region src/i18n/locales/settings/zh-Hans.ts
1922
- var messages$1 = JSON.parse("{\"++YsxG\":[\"读者和搜索引擎看到的是\"],\"+4Z6iP\":[\"请先在 GitHub 上创建仓库 — 可以为空。\"],\"+9JI/F\":[\"连接后会将你的网站同步到 \",[\"repo\"],\" 的默认分支,并追加到其现有历史之上。Jant 管理路径之外的现有文件会被保留。此操作无法撤销。\"],\"+AXdXp\":[\"标签和 URL 为必填项\"],\"+K0AvT\":[\"断开连接\"],\"+wgt7C\":[\"低饱和的红棕底,温暖、有泥土感。\"],\"+zy2Nq\":[\"类型\"],\"/3H2/s\":[\"此托管站点通过 \",[\"providerLabel\"],\" 登录。请在那里管理密码和托管访问权限。\"],\"/JnyjR\":[\"切换内置导航项。它们的顺序决定页眉显示的内容以及首页显示哪个视图。\"],\"/PXXBT\":[\"近乎纯白,带一点暖意。\"],\"/zOUxl\":[\"链接到 Telegram 机器人的二维码\"],\"0OGSSc\":[\"头像显示已更新.\"],\"0UzCUX\":[\"更新您用于登录的密码\"],\"0bdA9b\":[\"打开 Telegram 以连接\"],\"0uIjy/\":[\"浅鼠尾草绿底,配同色系的绿。\"],\"10UtuM\":[\"CJK 字体\"],\"1F6Mzc\":[\"当前还没有导航项目。添加链接或在下方启用系统项目。\"],\"1H7gng\":[\"后台语言\"],\"1mbBbL\":[\"手动绑定\"],\"1njn7W\":[\"浅色\"],\"1qGdnL\":[\"默认主题。沉静,适合长时间阅读。\"],\"2B7t+s\":[\"会话与密码\"],\"2DoBvq\":[\"订阅源\"],\"2FYpfJ\":[\"更多\"],\"2Ithfh\":[\"向机器人发送任意文本,它会作为笔记已发布。\"],\"2PTjMB\":[\"我想删除 \",[\"siteName\"]],\"2cFU6q\":[\"网站页脚\"],\"2fPEPI\":[\"沉静、偏冷的底色。\"],\"2lkk2l\":[\"微黄的纸底,配橄榄绿。\"],\"2oWZo7\":[\"最近一次提交\"],\"2uuy4H\":[\"通过个人访问令牌连接\"],\"35x8eZ\":[\"显示 \",[\"shown\"],\" 共 \",[\"total\"]],\"39QGku\":[\"打开机器人并发送绑定码, 然后你发送给它的任何消息都会变成一条笔记。\"],\"3Cw1AI\":[\"添加合集\"],\"3VrybB\":[\"重定向\"],\"3Yvsaz\":[\"302 (临时)\"],\"3n0zbB\":[\"会话管理在演示模式下已关闭。请使用共享的演示会话。\"],\"3sYJi5\":[\"下载一个与 Hugo 兼容的归档 — 将其静态托管或迁移到另一个 Jant。\"],\"3wKq0C\":[\"保存失败。请稍后再试。\"],\"49Bsal\":[\"订阅源设置已更新。\"],\"4Jge8E\":[\"活动会话\"],\"4KIa+q\":[\"导出文件已下载.\"],\"4cEClj\":[\"会话\"],\"4yyXWu\":[\"浅骨白底,配低饱和的绿。\"],\"4zGJ5E\":[\"永久删除账号\"],\"5QlUIt\":[\"仓库为空。准备连接。\"],\"5VQnR3\":[\"当你想要一个永远不变的订阅源 URL 时使用它们。\"],\"5dpcN1\":[\"输入以搜索全部\"],\"5f1Wo9\":[\"已连接为 \",[\"account\"]],\"5o8R81\":[\"极浅的象牙底,配淡淡的茶绿。\"],\"6ArdBh\":[\"将精选文章用于 /feed。\"],\"6DjeBT\":[\"演示站点始终对搜索引擎隐藏。\"],\"6E3aK4\":[\"管理托管\"],\"6FFB7q\":[\"为 /feed 使用最新的公开帖子。\"],\"6K1Vef\":[\"永久删除此博客?此操作不可撤销。\"],\"6NpNLc\":[\"此仓库已有内容。\"],\"6V3Ea3\":[\"已复制\"],\"71WIgc\":[\"获取新绑定码\"],\"746NHh\":[\"此博客\"],\"7811AW\":[\"此仓库已在备份此站点。\"],\"7FCZPo\":[\"内容语言\"],\"7FaY4u\":[\"用法\"],\"7G9YLi\":[\"允许搜索引擎索引我的网站\"],\"7GISOt\":[\"保存机器人令牌\"],\"7MZxzw\":[\"密码已更改.\"],\"7vhWI8\":[\"新密码\"],\"81nFIS\":[\"密码不匹配。请确保两个字段相同。\"],\"87a/t/\":[\"标签\"],\"89Upyo\":[\"该主题不可用。请选择其他主题。\"],\"8BfEpW\":[\"托管账户\"],\"8N/Mcp\":[\"归档 筛选参数 (例如 format=笔记&view=list)\"],\"8T46pB\":[\"机器人令牌\"],\"8U2Z7f\":[\"新建自定义 URL\"],\"8ZsakT\":[\"密码\"],\"8gEghq\":[\"明亮的暖白底,配苔绿点缀。\"],\"9+vGLh\":[\"自定义 CSS\"],\"9As8Nu\":[\"在 GitHub 上创建一个\"],\"9EjI4j\":[\"暖沙色\"],\"9Lsvt5\":[\"于 \",[\"date\"],\" 登录\"],\"9T7Cwm\":[\"重定向、个性化路径和 URL 控制\"],\"9aUyym\":[\"查看你的登录位置并撤销旧会话\"],\"A1taO8\":[\"搜索\"],\"AeXO77\":[\"账户\"],\"AnY+O9\":[\"在主页底部显示 \\\"Build with Jant\\\"\"],\"ApZDMk\":[\"此图用于您的 favicon 和 apple-touch-icon。为获得最佳效果,请上传至少 512×512 像素、纯色背景的方形 PNG。\"],\"B495Gs\":[\"归档\"],\"B4ESok\":[\"API 参考\"],\"BzEFor\":[\"或\"],\"CDAdlf\":[\"移除机器人\"],\"CTAEes\":[\"选择仓库\"],\"CjZZgz\":[\"该仓库已有提交\"],\"D8k2s6\":[\"连接 Telegram\"],\"DCKkhU\":[\"当前密码\"],\"DKKKeF\":[\"在 \",[\"providerLabel\"],\" 管理密码和托管访问\"],\"DVFXa6\":[\"最干净、最中性的一档。\"],\"EO3I6h\":[\"上传未成功。请稍后再试。\"],\"Eax/et\":[\"强调色\"],\"Enslfm\":[\"目标地址\"],\"F53UDu\":[\"冷白\"],\"F7FKwe\":[\"你在此处粘贴的任何内容都将完全访问访客的浏览器。仅使用来自你信任的来源的代码。\"],\"F8SNqr\":[\"暖橘\"],\"Fk3SSD\":[\"平静自然,看着舒服。\"],\"FkMol5\":[\"精选\"],\"G/1oP+\":[\"移除 webhook 并停止同步。您的仓库内容不会被删除。\"],\"G0qJsQ\":[\"缺少安全令牌。刷新页面后重试。\"],\"G39wnK\":[\"将内容备份并与 GitHub 仓库同步\"],\"GMMWcy\":[\"名称、元数据、语言和搜索默认设置\"],\"GXsAby\":[\"撤销\"],\"GxkJXS\":[\"正在上传...\"],\"GzKzUa\":[\"演示限制\"],\"H4x7Sk\":[\"后台界面显示的语言。可选 English、简体中文 和 繁體中文。\"],\"HCNlq3\":[\"干净、高对比,接近纯白。\"],\"HHDyGw\":[\"柔绿\"],\"HKH+W+\":[\"数据\"],\"Hp1l6f\":[\"当前\"],\"HxlY7t\":[\"更改此项会更新订阅者从 /feed 获取的内容。\"],\"HxuOlm\":[\"网站头部\"],\"I4HRxU\":[\"已发布的全部帖子,包括从 Latest 中隐藏的那些。\"],\"I6gXOa\":[\"路径\"],\"I76CzF\":[\"中性灰\"],\"ID38tA\":[\"演示模式下已禁用账号删除。共享演示会单独重置。\"],\"IF9tPu\":[\"何时使用站点导出、数据库备份和恢复演练。\"],\"IW5PBo\":[\"复制令牌\"],\"IagCbF\":[\"网址\"],\"IfB3m6\":[\"你撰写内容所用的语言。通过 HTML lang 和 RSS 向读者与搜索引擎声明。支持任意 BCP 47 标签。\"],\"IreQBq\":[\"仓库\"],\"J6bLeg\":[\"向任意 URL 添加自定义链接\"],\"JL7LF5\":[\"可用的 CSS 变量, 数据属性, 和 示例.\"],\"JTviaO\":[\"管理登录安全、导出和不可逆操作.\"],\"JcD7qf\":[\"更多操作\"],\"JjX0OO\":[\"现在复制您的令牌 — 它不会再次显示。\"],\"JrFTcr\":[\"连接中…\"],\"JuN5GC\":[\"未选择文件。请选择要上传的文件。\"],\"KDw4GX\":[\"重试\"],\"KSgo21\":[\"选择仓库\"],\"KVVYBh\":[\"向导航添加合集\"],\"KiJn9B\":[\"笔记\"],\"KwOLJF\":[\"Jant 最初的配色,日常稳妥之选。\"],\"L3DEwT\":[\"移除此头像?您的网站图标和页眉图标将恢复为默认设置。\"],\"L4t4/q\":[\"3月14日\"],\"LdyooL\":[\"链接\"],\"M/D8PK\":[\"+ 在其他帐户上安装\"],\"M/haSd\":[\"始终显示浅色主题。\"],\"M2kIWU\":[\"字体主题\"],\"M6CbAU\":[\"切换编辑面板\"],\"MaYYE6\":[\"通过向 Telegram 机器人发送消息来发布笔记\"],\"Me5t5H\":[\"将 GitHub 仓库连接以自动将您的文章备份为 Markdown 文件。您在 GitHub 上的编辑会同步回您的网站。\"],\"Mr4QPw\":[\"断开 Telegram?您可以随时使用新的绑定码重新连接。\"],\"MtENL9\":[\"调整你的网站的外观、阅读体验和运行方式。\"],\"N/8NPV\":[\"在删除之前,请下载站点导出。删除后将无法恢复此账户。\"],\"N7UNHY\":[\"精选订阅源\"],\"NHnUHF\":[\"Favicon 和页眉中的个人标识\"],\"NU2Fqi\":[\"保存 CSS\"],\"NVjhde\":[\"暖羊皮纸\"],\"Nldjdr\":[\"尚无自定义 URL。创建一个以便为文章添加重定向或自定义路径。\"],\"O7rgs6\":[\"页眉 RSS 指向你的 \",[\"feed\"],\" 源 (/feed)。在 常规 中更改 /feed 返回的内容。\"],\"OSJXFg\":[\"应用于整个站点,包括管理页面。选择一个调色板,然后选择它是随系统变化还是保持固定。\"],\"Ox3+3h\":[\"无匹配结果。\"],\"PEUV5I\":[\"代码注入已更新。\"],\"PHh52z\":[\"暖而厚重,棕调明显。\"],\"PXj9lw\":[\"停止接受来自 Telegram 的帖子。您的现有笔记将保持已发布。\"],\"PZ7HJ8\":[\"博客头像\"],\"Pwqkdw\":[\"正在加载…\"],\"PxJ9W6\":[\"生成令牌\"],\"Q/6Y+2\":[\"需要对目标仓库的 Contents(读/写)和 Webhooks(读/写)。\"],\"Q30z/l\":[\"要从导航中移除此合集吗?合集本身不会被删除。\"],\"Q99OtV\":[\"将合集固定到导航栏。在过去 48 小时内更新的合集旁会出现一个 * 号。\"],\"QCwsv1\":[\"暖白\"],\"QKvrmL\":[\"暖中性,适合长读。\"],\"QZmz0H\":[\"内置链接\"],\"Qnrzvb\":[\"活动令牌\"],\"R6Z4LE\":[\"下载失败。请重试。\"],\"R9Khdg\":[\"自动\"],\"RcdDOS\":[\"在 Telegram 上给 @BotFather 发送消息创建一个机器人,然后粘贴它提供的令牌。\"],\"RdVIcf\":[\"奶油配深咖\"],\"RxsRD6\":[\"时区\"],\"SJmfuf\":[\"站点名称\"],\"SKZhW9\":[\"令牌名称\"],\"SVQQPe\":[\"无法连接。检查错误并重试。\"],\"SchpMp\":[\"Telegram\"],\"SrGs4T\":[\"浅蓝灰底,冷静而均匀。\"],\"TpF3v+\":[\"注入到 </head> 之前。用于分析、自定义元标签以及必须尽早加载的样式。\"],\"Tz0i8g\":[\"设置\"],\"UFK415\":[\"用于分析和小部件的全站 HTML\"],\"UTvFQq\":[\"打开 \",[\"linkOpen\"],\"@\",[\"botUsername\"],[\"linkClose\"],\" 并发送:\"],\"Uj/btJ\":[\"在我的站点页眉显示头像\"],\"UsODUn\":[\"选择账户\"],\"UxKoFf\":[\"导航\"],\"V+bhUy\":[\"安装 GitHub App\"],\"V4WsyL\":[\"添加链接\"],\"V5pZwT\":[\"搜索设置已更新。\"],\"VXUPla\":[\"使用 GitHub 应用连接\"],\"VhMDMg\":[\"更改密码\"],\"Vn3jYy\":[\"导航项\"],\"VoZYGU\":[\"这将永久删除您所有的数据 — 帖子、媒体、合集、设置和您的账户。您的博客将重置为初始设置状态。此操作不可撤销。\"],\"WUnFK2\":[\"偏冷的浅白底,配深靛蓝文字。高对比。\"],\"Wa9q4P\":[\"纯白\"],\"Weq9zb\":[\"常规\"],\"Wi9i06\":[\"遵循每位访客的系统偏好。\"],\"Wx1M8N\":[\"安装 GitHub App 以在无需管理个人令牌的情况下授予访问权限。权限按仓库范围授予,可在 GitHub 上撤销。\"],\"X+8FMk\":[\"当前密码不正确。请重试。\"],\"X1G9eY\":[\"导航预览\"],\"X2Cbc2\":[\"归档订阅源\"],\"X9Hujr\":[\"手动推送\"],\"XtBJV8\":[\"正在检查仓库…\"],\"Xtc16w\":[\"刷新仓库列表\"],\"Y/F35r\":[\"使用 curl 创建帖子:\"],\"Y/N5N7\":[\"柔和的奶油底,配低饱和的绿。\"],\"YF6zHf\":[\"站点设置已更新.\"],\"YdG2RF\":[\"导出站点\"],\"YkgZi7\":[\"连接一个 Telegram 机器人,然后你发送给它的任何消息都会作为笔记已发布。\"],\"YwhjRx\":[\"管理账户\"],\"Yxp859\":[\"暖奶油色\"],\"ZDY7Fy\":[\"正在同步…\"],\"ZQKLI1\":[\"危险操作\"],\"ZS/CBL\":[\"删除此导航链接? 访客将不再在您网站的页眉中看到它。\"],\"ZgZX+d\":[\"纯白底配中性灰。不带任何色偏。\"],\"ZhhOwV\":[\"引用 (Jant 的帖子格式之一。)\"],\"ZiooJI\":[\"API 令牌\"],\"Zm7Qb0\":[\"备份与恢复指南\"],\"ZmUkwN\":[\"向导航添加自定义链接\"],\"a14mj8\":[\"未知设备\"],\"a1iEgy\":[\"暖奶油底,配深咖啡棕点缀。\"],\"a3LDKx\":[\"安全\"],\"aAIQg2\":[\"外观\"],\"aFkzVF\":[\"目标文章或合集的 slug\"],\"alKG0+\":[\"字体主题\"],\"anibOb\":[\"关于本博客\"],\"any7NR\":[\"主题指南\"],\"b+/jO6\":[\"301 (永久)\"],\"bHOiy1\":[\"演示模式下已禁用密码更改。请使用共享的演示凭证登录。\"],\"bHYIks\":[\"退出登录\"],\"bV2vng\":[\"暖陶土色\"],\"bbR5vW\":[\"这套配色\"],\"bmrL08\":[\"演示模式会隐藏会话、密码更改和账号删除。导出仍然可用.\"],\"bviiKV\":[\"这个主题下的标题、正文和链接。\"],\"c3MN2z\":[\"所有可用的端点和请求格式。\"],\"cS7/bk\":[\"删除保存的机器人令牌?其 webhook 会被删除,任何已连接的账号将被断开连接。\"],\"cSDy01\":[\"自定义 CSS 已更新.\"],\"clzoNp\":[\"始终显示暗色主题.\"],\"cnGeoo\":[\"删除\"],\"d3FRkY\":[\"无法复制。请再试一次。\"],\"d5oGUo\":[\"在 GitHub 上创建新仓库\"],\"dEgA5A\":[\"取消\"],\"dTXUY+\":[\"确认删除账户\"],\"dYKrp3\":[\"从最新中隐藏 (不出现在 Latest 中,但仍可通过固定链接和集合访问的状态。)\"],\"dk7TCH\":[\"永久删除所有数据并重置博客\"],\"drodVV\":[\"还没有合集。请先创建一个,然后将其添加到你的导航中。\"],\"dsWkIw\":[\"要与 GitHub 断开连接吗?该 webhook 将被移除。您的仓库内容不会被删除。\"],\"e/tSI5\":[\"导航顺序已更新。\"],\"eOL7vn\":[\"色彩极少,干扰最小。\"],\"ePK91l\":[\"编辑\"],\"ebQKK7\":[\"站点\"],\"egK+Yy\":[\"用于脚本和自动化的 Bearer 令牌\"],\"ehj/zN\":[\"重定向类型\"],\"eneWvv\":[\"草稿\"],\"erTMh7\":[\"上次同步\"],\"f+m8jj\":[\"订阅源 URL 已复制。\"],\"f8fH8W\":[\"设计\"],\"fKRAwQ\":[\"沙色底,配绿色点缀。\"],\"fWYqkz\":[\"代码注入\"],\"fYXQnC\":[\"暖色里最浓的一档,温馨。\"],\"gOWiTY\":[\"加载针对中文、日文或韩文内容优化的衬线字体。\"],\"gZ5owP\":[\"搜索仓库\"],\"gbqbh6\":[\"放心离开此页面 — 同步会在后台继续进行。\"],\"gkFvVN\":[\"注入到 </body> 之前。用于聊天小部件和不应阻塞页面加载的脚本。\"],\"gtQsRO\":[\"创建自定义 URL\"],\"hBO/y4\":[\"安全令牌已过期。刷新页面后重试。\"],\"hGmyDl\":[\"令牌让您无需登录即可从脚本、快捷方式和其他工具访问 API。\"],\"hIHkRy\":[\"已通过 GitHub App 连接\"],\"hdSi1b\":[\"输入 \",[\"repo\"],\" 以确认\"],\"he3ygx\":[\"复制\"],\"i0qMbr\":[\"首页\"],\"iEUzMn\":[\"系统\"],\"iSLIjg\":[\"连接\"],\"iVOMRi\":[\"主页设置已更新.\"],\"icB4Cv\":[\"将链接拖到此处以在更多菜单下显示它们\"],\"id3vuh\":[\"Telegram 已设置,但无法连接到机器人。请检查机器人令牌并重试。\"],\"ihn4zD\":[\"搜索…\"],\"iiDXZc\":[\"显示在所有文章和页面的底部。\"],\"itS31B\":[\"更暖一些,像略旧的纸。\"],\"iwQZvS\":[\"冷蓝灰\"],\"j4VrG6\":[\"下载导出 ZIP\"],\"j5nQL2\":[\"例如 iOS Shortcuts\"],\"jUV7CU\":[\"上传头像\"],\"jVUmOK\":[\"支持 Markdown\"],\"jdVYS8\":[\"选一个适合你文字的。\"],\"jgBjXJ\":[\"撤销此令牌?任何使用它的脚本将停止工作。\"],\"jpctdh\":[\"查看\"],\"k1ifdL\":[\"处理中...\"],\"kLw03Y\":[\"亮纸白\"],\"kMXclu\":[\"下载网站导出\"],\"kNiQp6\":[\"已置顶\"],\"kRhzWq\":[\"GitHub 同步\"],\"kVQs7s\":[\"细粒度样式覆盖\"],\"ke1gWS\":[\"自定义 URL\"],\"kfcRb0\":[\"头像\"],\"kxDZ2i\":[\"此代码将在您网站的每个页面上运行。\"],\"l2Op2p\":[\"查询参数\"],\"lLW3vJ\":[\"目标 slug\"],\"lV04bQ\":[\"温暖、有泥土感,但不显暗。\"],\"lYHJih\":[\"撤销此会话? 该设备需要重新登录.\"],\"mLOk1i\":[\"立即将所有文章推送到 GitHub,而不是等待下一次自动同步。\"],\"mSNmrX\":[\"列出帖子:\"],\"nG2qTk\":[\"示例链接\"],\"nK07ni\":[\"为您的网站选择一种排版方向。每个主题都会同时改变字体搭配和阅读节奏。\"],\"nbfdhU\":[\"集成\"],\"ntJYyh\":[\"在 \",[\"providerLabel\"],\" 管理域名、套餐和计费\"],\"o/vNDE\":[\"允许您覆盖任何主题变量.\"],\"oGC9uP\":[\"owner/repo\"],\"oH2JHg\":[\"我们会预先填充名称 \",[\"name\"],\"。返回时列表会刷新。\"],\"oKOOsY\":[\"颜色主题\"],\"oL535e\":[\"尚未同步\"],\"oNA4If\":[\"所有合集已在您的导航中。\"],\"oUn9Z7\":[\"近中性的浅灰,配钢蓝点缀。\"],\"ofdy2l\":[\"带橘调的底色。最暖的一套。\"],\"pZq3aX\":[\"上传失败。请重试。\"],\"pgTIrt\":[\"选择要与此站点同步的 GitHub 账户和仓库。\"],\"psoxDF\":[\"该字体主题不可用。请选择另一个。\"],\"pvnfJD\":[\"深色\"],\"q+hNag\":[\"合集\"],\"qdcESc\":[\"创建新仓库\"],\"r5EW6f\":[\"此仓库已在为另一个 Jant 站点 (\",[\"host\"],\") 进行备份。请选择其他仓库。\"],\"rEspiY\":[\"导航位置已更新.\"],\"rFmBG3\":[\"配色主题\"],\"rlonmB\":[\"删除失败。请稍后再试。\"],\"satWc6\":[\"主 RSS 源\"],\"sgr2wQ\":[\"合集\"],\"soRdOu\":[\"米白纸底,配深森绿。\"],\"sqxcaY\":[\"创建于 \",[\"date\"]],\"sxkWRg\":[\"高级\"],\"t/YqKh\":[\"移除\"],\"t3hvHq\":[\"立即同步\"],\"tJ4H0O\":[\"你的 Telegram 账号\"],\"tfDRzk\":[\"保存\"],\"tvgAq5\":[\"尚未授权任何账户\"],\"u1VTd3\":[\"调色板、表面色调与整体氛围\"],\"u3wRF+\":[\"已发布\"],\"u6KOjV\":[\"想要更多控制?\"],\"udPwLB\":[\"页眉\"],\"ui6aMF\":[\"以下设备当前已登录到您的帐户。撤销任何您不认识的会话。\"],\"vBEKwo\":[\"在此管理本站点的活动会话。密码和托管访问通过 \",[\"providerLabel\"],\" 管理。\"],\"vRldcl\":[\"排版选项与阅读质感\"],\"vSYKYI\":[\"主订阅源\"],\"vTuib7\":[\"这将控制 /feed 返回的内容。\"],\"vmQmHx\":[\"添加自定义 CSS 以覆盖任何样式. 使用数据属性如 [data-page], [data-post], [data-format] 来定位特定元素.\"],\"vzX5FB\":[\"删除账号\"],\"w8Rv8T\":[\"标签为必填项\"],\"wL3cK8\":[\"最新\"],\"wW6NCp\":[\"上次错误\"],\"wc+17X\":[\"/* 在此填写您的自定义 CSS */\"],\"wuLtXn\":[\"当前没有活动会话。 已登录的设备会显示在此处。\"],\"xCWek4\":[\"文件存储尚未设置。请检查服务器配置。\"],\"xHt036\":[\"个人访问令牌\"],\"xKeZ0l\":[\"更偏暖、偏土的色调。\"],\"xYbozN\":[\"柔象牙白\"],\"xqViCq\":[\"暖象牙白\"],\"xxaahd\":[\"想要更冷、更利落的观感时。\"],\"y28hnO\":[\"文章\"],\"y8Md/V\":[\"语言和时间已更新。\"],\"yNCqOt\":[\"最新订阅源\"],\"yQ3kNF\":[\"输入以下短语以确认:\"],\"ydq1k2\":[\"请先选择一个账号\"],\"yjjCV8\":[\"固定订阅源 URL\"],\"yjkELF\":[\"确认新密码\"],\"yzF66j\":[\"链接\"],\"z6wakA\":[\"在您的主页上显示的简短介绍.\"],\"zEizrk\":[\"上次使用 \",[\"date\"]],\"zSURJW\":[\"没有匹配的仓库。\"],\"zXH2jX\":[\"语言与时间\"],\"zlcDd2\":[\"要删除此自定义 URL 吗?使用它的访问者将不再被重定向。\"],\"zwBp5t\":[\"私有\"],\"zxRN6H\":[\"页眉链接、首页信息流和溢出菜单\"]}");
1922
+ var messages$1 = JSON.parse("{\"++YsxG\":[\"读者和搜索引擎看到的是\"],\"+4Z6iP\":[\"请先在 GitHub 上创建仓库 — 可以为空。\"],\"+9JI/F\":[\"连接后会将你的网站同步到 \",[\"repo\"],\" 的默认分支,并追加到其现有历史之上。Jant 管理路径之外的现有文件会被保留。此操作无法撤销。\"],\"+AXdXp\":[\"标签和 URL 为必填项\"],\"+K0AvT\":[\"断开连接\"],\"+wgt7C\":[\"低饱和的红棕底,温暖、有泥土感。\"],\"+zy2Nq\":[\"类型\"],\"/3H2/s\":[\"此托管站点通过 \",[\"providerLabel\"],\" 登录。请在那里管理密码和托管访问权限。\"],\"/JnyjR\":[\"切换内置导航项。它们的顺序决定导航栏显示的内容,以及首页先打开哪个视图。\"],\"/PXXBT\":[\"近乎纯白,带一点暖意。\"],\"/zOUxl\":[\"链接到 Telegram 机器人的二维码\"],\"0OGSSc\":[\"头像显示已更新.\"],\"0UzCUX\":[\"更新您用于登录的密码\"],\"0bdA9b\":[\"打开 Telegram 以连接\"],\"0gECZD\":[\"想写更完整的介绍?\"],\"0uIjy/\":[\"浅鼠尾草绿底,配同色系的绿。\"],\"10UtuM\":[\"CJK 字体\"],\"1F6Mzc\":[\"当前还没有导航项目。添加链接或在下方启用系统项目。\"],\"1H7gng\":[\"后台语言\"],\"1mbBbL\":[\"手动绑定\"],\"1njn7W\":[\"浅色\"],\"1qGdnL\":[\"默认主题。沉静,适合长时间阅读。\"],\"2B7t+s\":[\"会话与密码\"],\"2DoBvq\":[\"订阅源\"],\"2FYpfJ\":[\"更多\"],\"2Ithfh\":[\"向机器人发送任意文本,它会作为笔记已发布。\"],\"2PTjMB\":[\"我想删除 \",[\"siteName\"]],\"2cFU6q\":[\"网站页脚\"],\"2fPEPI\":[\"沉静、偏冷的底色。\"],\"2lkk2l\":[\"微黄的纸底,配橄榄绿。\"],\"2oWZo7\":[\"最近一次提交\"],\"2uuy4H\":[\"通过个人访问令牌连接\"],\"2wK4BX\":[\"编辑 About 页面\"],\"35x8eZ\":[\"显示 \",[\"shown\"],\" 共 \",[\"total\"]],\"39QGku\":[\"打开机器人并发送绑定码, 然后你发送给它的任何消息都会变成一条笔记。\"],\"3Cw1AI\":[\"添加合集\"],\"3VrybB\":[\"重定向\"],\"3Yvsaz\":[\"302 (临时)\"],\"3n0zbB\":[\"会话管理在演示模式下已关闭。请使用共享的演示会话。\"],\"3sYJi5\":[\"下载一个与 Hugo 兼容的归档 — 将其静态托管或迁移到另一个 Jant。\"],\"3wKq0C\":[\"保存失败。请稍后再试。\"],\"49Bsal\":[\"订阅源设置已更新。\"],\"4Jge8E\":[\"活动会话\"],\"4KIa+q\":[\"导出文件已下载.\"],\"4cEClj\":[\"会话\"],\"4yyXWu\":[\"浅骨白底,配低饱和的绿。\"],\"4zGJ5E\":[\"永久删除账号\"],\"5QlUIt\":[\"仓库为空。准备连接。\"],\"5VQnR3\":[\"当你想要一个永远不变的订阅源 URL 时使用它们。\"],\"5dpcN1\":[\"输入以搜索全部\"],\"5f1Wo9\":[\"已连接为 \",[\"account\"]],\"5o8R81\":[\"极浅的象牙底,配淡淡的茶绿。\"],\"6ArdBh\":[\"将精选文章用于 /feed。\"],\"6DjeBT\":[\"演示站点始终对搜索引擎隐藏。\"],\"6E3aK4\":[\"管理托管\"],\"6FFB7q\":[\"为 /feed 使用最新的公开帖子。\"],\"6K1Vef\":[\"永久删除此博客?此操作不可撤销。\"],\"6NpNLc\":[\"此仓库已有内容。\"],\"6V3Ea3\":[\"已复制\"],\"6WdDG7\":[\"页面\"],\"71WIgc\":[\"获取新绑定码\"],\"746NHh\":[\"此博客\"],\"7811AW\":[\"此仓库已在备份此站点。\"],\"7FCZPo\":[\"内容语言\"],\"7FaY4u\":[\"用法\"],\"7G9YLi\":[\"允许搜索引擎索引我的网站\"],\"7GISOt\":[\"保存机器人令牌\"],\"7MZxzw\":[\"密码已更改.\"],\"7vhWI8\":[\"新密码\"],\"81nFIS\":[\"密码不匹配。请确保两个字段相同。\"],\"87a/t/\":[\"标签\"],\"89Upyo\":[\"该主题不可用。请选择其他主题。\"],\"8BfEpW\":[\"托管账户\"],\"8N/Mcp\":[\"归档 筛选参数 (例如 format=笔记&view=list)\"],\"8T46pB\":[\"机器人令牌\"],\"8U2Z7f\":[\"新建自定义 URL\"],\"8ZsakT\":[\"密码\"],\"8gEghq\":[\"明亮的暖白底,配苔绿点缀。\"],\"9+vGLh\":[\"自定义 CSS\"],\"9As8Nu\":[\"在 GitHub 上创建一个\"],\"9EjI4j\":[\"暖沙色\"],\"9J6wUO\":[\"建议添加的链接\"],\"9Lsvt5\":[\"于 \",[\"date\"],\" 登录\"],\"9T7Cwm\":[\"重定向、个性化路径和 URL 控制\"],\"9aUyym\":[\"查看你的登录位置并撤销旧会话\"],\"A1taO8\":[\"搜索\"],\"AeXO77\":[\"账户\"],\"AnY+O9\":[\"在主页底部显示 \\\"Build with Jant\\\"\"],\"ApZDMk\":[\"此图用于您的 favicon 和 apple-touch-icon。为获得最佳效果,请上传至少 512×512 像素、纯色背景的方形 PNG。\"],\"B495Gs\":[\"归档\"],\"B4ESok\":[\"API 参考\"],\"BTYdze\":[\"链接已添加到导航。\"],\"BzEFor\":[\"或\"],\"CDAdlf\":[\"移除机器人\"],\"CTAEes\":[\"选择仓库\"],\"CjZZgz\":[\"该仓库已有提交\"],\"D8k2s6\":[\"连接 Telegram\"],\"DCKkhU\":[\"当前密码\"],\"DKKKeF\":[\"在 \",[\"providerLabel\"],\" 管理密码和托管访问\"],\"DVFXa6\":[\"最干净、最中性的一档。\"],\"EO3I6h\":[\"上传未成功。请稍后再试。\"],\"Eax/et\":[\"强调色\"],\"Enslfm\":[\"目标地址\"],\"F53UDu\":[\"冷白\"],\"F7FKwe\":[\"你在此处粘贴的任何内容都将完全访问访客的浏览器。仅使用来自你信任的来源的代码。\"],\"F8SNqr\":[\"暖橘\"],\"Fk3SSD\":[\"平静自然,看着舒服。\"],\"FkMol5\":[\"精选\"],\"G/1oP+\":[\"移除 webhook 并停止同步。您的仓库内容不会被删除。\"],\"G0qJsQ\":[\"缺少安全令牌。刷新页面后重试。\"],\"G39wnK\":[\"将内容备份并与 GitHub 仓库同步\"],\"GMMWcy\":[\"名称、元数据、语言和搜索默认设置\"],\"GXsAby\":[\"撤销\"],\"GxkJXS\":[\"正在上传...\"],\"GzKzUa\":[\"演示限制\"],\"H4x7Sk\":[\"后台界面显示的语言。可选 English、简体中文 和 繁體中文。\"],\"HCNlq3\":[\"干净、高对比,接近纯白。\"],\"HHDyGw\":[\"柔绿\"],\"HKH+W+\":[\"数据\"],\"Hp1l6f\":[\"当前\"],\"HxlY7t\":[\"更改此项会更新订阅者从 /feed 获取的内容。\"],\"HxuOlm\":[\"网站头部\"],\"I4HRxU\":[\"已发布的全部帖子,包括从 Latest 中隐藏的那些。\"],\"I6gXOa\":[\"路径\"],\"I76CzF\":[\"中性灰\"],\"ID38tA\":[\"演示模式下已禁用账号删除。共享演示会单独重置。\"],\"IF9tPu\":[\"何时使用站点导出、数据库备份和恢复演练。\"],\"IW5PBo\":[\"复制令牌\"],\"IagCbF\":[\"网址\"],\"IfB3m6\":[\"你撰写内容所用的语言。通过 HTML lang 和 RSS 向读者与搜索引擎声明。支持任意 BCP 47 标签。\"],\"IreQBq\":[\"仓库\"],\"J6bLeg\":[\"向任意 URL 添加自定义链接\"],\"JL7LF5\":[\"可用的 CSS 变量, 数据属性, 和 示例.\"],\"JTviaO\":[\"管理登录安全、导出和不可逆操作.\"],\"JcD7qf\":[\"更多操作\"],\"JjX0OO\":[\"现在复制您的令牌 — 它不会再次显示。\"],\"JrFTcr\":[\"连接中…\"],\"JuN5GC\":[\"未选择文件。请选择要上传的文件。\"],\"KDw4GX\":[\"重试\"],\"KSgo21\":[\"选择仓库\"],\"KVVYBh\":[\"向导航添加合集\"],\"KiJn9B\":[\"笔记\"],\"KwOLJF\":[\"Jant 最初的配色,日常稳妥之选。\"],\"L3DEwT\":[\"移除此头像?你的网站图标和站点顶部图标将恢复为默认设置。\"],\"L4t4/q\":[\"3月14日\"],\"LdyooL\":[\"链接\"],\"M/D8PK\":[\"+ 在其他帐户上安装\"],\"M/haSd\":[\"始终显示浅色主题。\"],\"M2kIWU\":[\"字体主题\"],\"M6CbAU\":[\"切换编辑面板\"],\"MaYYE6\":[\"通过向 Telegram 机器人发送消息来发布笔记\"],\"Me5t5H\":[\"将 GitHub 仓库连接以自动将您的文章备份为 Markdown 文件。您在 GitHub 上的编辑会同步回您的网站。\"],\"Mr4QPw\":[\"断开 Telegram?您可以随时使用新的绑定码重新连接。\"],\"MtENL9\":[\"调整你的网站的外观、阅读体验和运行方式。\"],\"N/8NPV\":[\"在删除之前,请下载站点导出。删除后将无法恢复此账户。\"],\"N7UNHY\":[\"精选订阅源\"],\"NHnUHF\":[\"Favicon 和站点顶部的个人标识\"],\"NU2Fqi\":[\"保存 CSS\"],\"NVjhde\":[\"暖羊皮纸\"],\"Nldjdr\":[\"尚无自定义 URL。创建一个以便为文章添加重定向或自定义路径。\"],\"O7rgs6\":[\"导航栏 RSS 指向你的 \",[\"feed\"],\" 订阅源 (/feed)。在“常规”中更改 /feed 返回的内容。\"],\"OSJXFg\":[\"应用于整个站点,包括管理页面。选择一个调色板,然后选择它是随系统变化还是保持固定。\"],\"Ox3+3h\":[\"无匹配结果。\"],\"PEUV5I\":[\"代码注入已更新。\"],\"PHh52z\":[\"暖而厚重,棕调明显。\"],\"PXj9lw\":[\"停止接受来自 Telegram 的帖子。您的现有笔记将保持已发布。\"],\"PZ7HJ8\":[\"博客头像\"],\"Pwqkdw\":[\"正在加载…\"],\"PxJ9W6\":[\"生成令牌\"],\"Q/6Y+2\":[\"需要对目标仓库的 Contents(读/写)和 Webhooks(读/写)。\"],\"Q30z/l\":[\"要从导航中移除此合集吗?合集本身不会被删除。\"],\"Q99OtV\":[\"将合集固定到导航栏。在过去 48 小时内更新的合集旁会出现一个 * 号。\"],\"QCwsv1\":[\"暖白\"],\"QKvrmL\":[\"暖中性,适合长读。\"],\"QZmz0H\":[\"内置链接\"],\"Qnrzvb\":[\"活动令牌\"],\"R6Z4LE\":[\"下载失败。请重试。\"],\"R9Khdg\":[\"自动\"],\"RcdDOS\":[\"在 Telegram 上给 @BotFather 发送消息创建一个机器人,然后粘贴它提供的令牌。\"],\"RdVIcf\":[\"奶油配深咖\"],\"RxsRD6\":[\"时区\"],\"SJmfuf\":[\"站点名称\"],\"SKZhW9\":[\"令牌名称\"],\"SVQQPe\":[\"无法连接。检查错误并重试。\"],\"SchpMp\":[\"Telegram\"],\"SrGs4T\":[\"浅蓝灰底,冷静而均匀。\"],\"TpF3v+\":[\"注入到 </head> 之前。用于分析、自定义元标签以及必须尽早加载的样式。\"],\"Tu6bMZ\":[\"创建 About 页面\"],\"Tz0i8g\":[\"设置\"],\"UFK415\":[\"用于分析和小部件的全站 HTML\"],\"UTvFQq\":[\"打开 \",[\"linkOpen\"],\"@\",[\"botUsername\"],[\"linkClose\"],\" 并发送:\"],\"Uj/btJ\":[\"在我的站点顶部显示头像\"],\"UsODUn\":[\"选择账户\"],\"UxKoFf\":[\"站点导航\"],\"V+bhUy\":[\"安装 GitHub App\"],\"V4WsyL\":[\"添加链接\"],\"V5pZwT\":[\"搜索设置已更新。\"],\"VXUPla\":[\"使用 GitHub 应用连接\"],\"VhMDMg\":[\"更改密码\"],\"Vn3jYy\":[\"导航项\"],\"VoZYGU\":[\"这将永久删除您所有的数据 — 帖子、媒体、合集、设置和您的账户。您的博客将重置为初始设置状态。此操作不可撤销。\"],\"WUnFK2\":[\"偏冷的浅白底,配深靛蓝文字。高对比。\"],\"Wa9q4P\":[\"纯白\"],\"Wb7EHo\":[\"About 页面\"],\"Weq9zb\":[\"常规\"],\"Wi9i06\":[\"遵循每位访客的系统偏好。\"],\"Wx1M8N\":[\"安装 GitHub App 以在无需管理个人令牌的情况下授予访问权限。权限按仓库范围授予,可在 GitHub 上撤销。\"],\"X+8FMk\":[\"当前密码不正确。请重试。\"],\"X1G9eY\":[\"导航预览\"],\"X2Cbc2\":[\"归档订阅源\"],\"X9Hujr\":[\"手动推送\"],\"XtBJV8\":[\"正在检查仓库…\"],\"Xtc16w\":[\"刷新仓库列表\"],\"Y/F35r\":[\"使用 curl 创建帖子:\"],\"Y/N5N7\":[\"柔和的奶油底,配低饱和的绿。\"],\"YF6zHf\":[\"站点设置已更新.\"],\"YdG2RF\":[\"导出站点\"],\"YkgZi7\":[\"连接一个 Telegram 机器人,然后你发送给它的任何消息都会作为笔记已发布。\"],\"YwhjRx\":[\"管理账户\"],\"Yxp859\":[\"暖奶油色\"],\"ZDY7Fy\":[\"正在同步…\"],\"ZQKLI1\":[\"危险操作\"],\"ZS/CBL\":[\"删除此导航链接?访客将不再在你的网站导航栏中看到它。\"],\"ZgZX+d\":[\"纯白底配中性灰。不带任何色偏。\"],\"ZhhOwV\":[\"引用\"],\"ZiooJI\":[\"API 令牌\"],\"Zm7Qb0\":[\"备份与恢复指南\"],\"ZmUkwN\":[\"向导航添加自定义链接\"],\"a14mj8\":[\"未知设备\"],\"a1iEgy\":[\"暖奶油底,配深咖啡棕点缀。\"],\"a3LDKx\":[\"安全\"],\"aAIQg2\":[\"外观\"],\"aFkzVF\":[\"目标文章或合集的 slug\"],\"alKG0+\":[\"字体主题\"],\"anibOb\":[\"关于本博客\"],\"any7NR\":[\"主题指南\"],\"b+/jO6\":[\"301 (永久)\"],\"bHOiy1\":[\"演示模式下已禁用密码更改。请使用共享的演示凭证登录。\"],\"bHYIks\":[\"退出登录\"],\"bV2vng\":[\"暖陶土色\"],\"bbR5vW\":[\"这套配色\"],\"bmrL08\":[\"演示模式会隐藏会话、密码更改和账号删除。导出仍然可用.\"],\"bviiKV\":[\"这个主题下的标题、正文和链接。\"],\"c3MN2z\":[\"所有可用的端点和请求格式。\"],\"cS7/bk\":[\"删除保存的机器人令牌?其 webhook 会被删除,任何已连接的账号将被断开连接。\"],\"cSDy01\":[\"自定义 CSS 已更新.\"],\"clzoNp\":[\"始终显示暗色主题.\"],\"cnGeoo\":[\"删除\"],\"d3FRkY\":[\"无法复制。请再试一次。\"],\"d5oGUo\":[\"在 GitHub 上创建新仓库\"],\"dEgA5A\":[\"取消\"],\"dTXUY+\":[\"确认删除账户\"],\"dYKrp3\":[\"从最新中隐藏 (不出现在 Latest 中,但仍可通过固定链接和集合访问的状态。)\"],\"dk7TCH\":[\"永久删除所有数据并重置博客\"],\"drodVV\":[\"还没有合集。请先创建一个,然后将其添加到你的导航中。\"],\"dsWkIw\":[\"要与 GitHub 断开连接吗?该 webhook 将被移除。您的仓库内容不会被删除。\"],\"e/tSI5\":[\"导航顺序已更新。\"],\"eOL7vn\":[\"色彩极少,干扰最小。\"],\"ePK91l\":[\"编辑\"],\"ebQKK7\":[\"站点\"],\"egK+Yy\":[\"用于脚本和自动化的 Bearer 令牌\"],\"ehj/zN\":[\"重定向类型\"],\"eneWvv\":[\"草稿\"],\"erTMh7\":[\"上次同步\"],\"f+m8jj\":[\"订阅源 URL 已复制。\"],\"f8fH8W\":[\"设计\"],\"fKRAwQ\":[\"沙色底,配绿色点缀。\"],\"fWYqkz\":[\"代码注入\"],\"fYXQnC\":[\"暖色里最浓的一档,温馨。\"],\"gOWiTY\":[\"加载针对中文、日文或韩文内容优化的衬线字体。\"],\"gZ5owP\":[\"搜索仓库\"],\"gbqbh6\":[\"放心离开此页面 — 同步会在后台继续进行。\"],\"gkFvVN\":[\"注入到 </body> 之前。用于聊天小部件和不应阻塞页面加载的脚本。\"],\"gtQsRO\":[\"创建自定义 URL\"],\"hBO/y4\":[\"安全令牌已过期。刷新页面后重试。\"],\"hGmyDl\":[\"令牌让您无需登录即可从脚本、快捷方式和其他工具访问 API。\"],\"hIHkRy\":[\"已通过 GitHub App 连接\"],\"hdSi1b\":[\"输入 \",[\"repo\"],\" 以确认\"],\"he3ygx\":[\"复制\"],\"i0qMbr\":[\"首页\"],\"iEUzMn\":[\"系统\"],\"iSLIjg\":[\"连接\"],\"iVOMRi\":[\"主页设置已更新.\"],\"icB4Cv\":[\"将链接拖到此处以在更多菜单下显示它们\"],\"id3vuh\":[\"Telegram 已设置,但无法连接到机器人。请检查机器人令牌并重试。\"],\"ihn4zD\":[\"搜索…\"],\"iiDXZc\":[\"显示在所有文章和页面的底部。\"],\"itS31B\":[\"更暖一些,像略旧的纸。\"],\"iwQZvS\":[\"冷蓝灰\"],\"j4VrG6\":[\"下载导出 ZIP\"],\"j5nQL2\":[\"例如 iOS Shortcuts\"],\"jUV7CU\":[\"上传头像\"],\"jVUmOK\":[\"支持 Markdown\"],\"jdVYS8\":[\"选一个适合你文字的。\"],\"jgBjXJ\":[\"撤销此令牌?任何使用它的脚本将停止工作。\"],\"jpctdh\":[\"查看\"],\"k1ifdL\":[\"处理中...\"],\"kLw03Y\":[\"亮纸白\"],\"kMXclu\":[\"下载网站导出\"],\"kNiQp6\":[\"已置顶\"],\"kRhzWq\":[\"GitHub 同步\"],\"kVQs7s\":[\"细粒度样式覆盖\"],\"ke1gWS\":[\"自定义 URL\"],\"kfcRb0\":[\"头像\"],\"kxDZ2i\":[\"此代码将在您网站的每个页面上运行。\"],\"l2Op2p\":[\"查询参数\"],\"lLW3vJ\":[\"目标 slug\"],\"lV04bQ\":[\"温暖、有泥土感,但不显暗。\"],\"lYHJih\":[\"撤销此会话? 该设备需要重新登录.\"],\"m16xKo\":[\"添加\"],\"mLOk1i\":[\"立即将所有文章推送到 GitHub,而不是等待下一次自动同步。\"],\"mSNmrX\":[\"列出帖子:\"],\"n8+EXe\":[\"添加站点中已经存在的常用入口。\"],\"nG2qTk\":[\"示例链接\"],\"nK07ni\":[\"为您的网站选择一种排版方向。每个主题都会同时改变字体搭配和阅读节奏。\"],\"nbfdhU\":[\"集成\"],\"ntJYyh\":[\"在 \",[\"providerLabel\"],\" 管理域名、套餐和计费\"],\"o/vNDE\":[\"允许您覆盖任何主题变量.\"],\"oGC9uP\":[\"owner/repo\"],\"oH2JHg\":[\"我们会预先填充名称 \",[\"name\"],\"。返回时列表会刷新。\"],\"oKOOsY\":[\"颜色主题\"],\"oL535e\":[\"尚未同步\"],\"oNA4If\":[\"所有合集已在您的导航中。\"],\"oUn9Z7\":[\"近中性的浅灰,配钢蓝点缀。\"],\"ofdy2l\":[\"带橘调的底色。最暖的一套。\"],\"pZq3aX\":[\"上传失败。请重试。\"],\"pgTIrt\":[\"选择要与此站点同步的 GitHub 账户和仓库。\"],\"psoxDF\":[\"该字体主题不可用。请选择另一个。\"],\"pt4OhQ\":[\"/about 已被占用。重命名该项目后再创建 About 页面。\"],\"pvnfJD\":[\"深色\"],\"q+hNag\":[\"合集\"],\"qdcESc\":[\"创建新仓库\"],\"r5EW6f\":[\"此仓库已在为另一个 Jant 站点 (\",[\"host\"],\") 进行备份。请选择其他仓库。\"],\"rEspiY\":[\"导航位置已更新.\"],\"rFmBG3\":[\"配色主题\"],\"rlonmB\":[\"删除失败。请稍后再试。\"],\"satWc6\":[\"主 RSS 源\"],\"sgr2wQ\":[\"合集\"],\"soRdOu\":[\"米白纸底,配深森绿。\"],\"sqxcaY\":[\"创建于 \",[\"date\"]],\"sxkWRg\":[\"高级\"],\"t/YqKh\":[\"移除\"],\"t3hvHq\":[\"立即同步\"],\"tJ4H0O\":[\"你的 Telegram 账号\"],\"tfDRzk\":[\"保存\"],\"tvgAq5\":[\"尚未授权任何账户\"],\"u1VTd3\":[\"调色板、表面色调与整体氛围\"],\"u3wRF+\":[\"已发布\"],\"u6KOjV\":[\"想要更多控制?\"],\"udPwLB\":[\"导航栏\"],\"ui6aMF\":[\"以下设备当前已登录到您的帐户。撤销任何您不认识的会话。\"],\"vBEKwo\":[\"在此管理本站点的活动会话。密码和托管访问通过 \",[\"providerLabel\"],\" 管理。\"],\"vRldcl\":[\"排版选项与阅读质感\"],\"vSYKYI\":[\"主订阅源\"],\"vTuib7\":[\"这将控制 /feed 返回的内容。\"],\"vmQmHx\":[\"添加自定义 CSS 以覆盖任何样式. 使用数据属性如 [data-page], [data-post], [data-format] 来定位特定元素.\"],\"vzX5FB\":[\"删除账号\"],\"w8Rv8T\":[\"标签为必填项\"],\"wL3cK8\":[\"最新\"],\"wW6NCp\":[\"上次错误\"],\"wc+17X\":[\"/* 在此填写您的自定义 CSS */\"],\"wuLtXn\":[\"当前没有活动会话。 已登录的设备会显示在此处。\"],\"xCWek4\":[\"文件存储尚未设置。请检查服务器配置。\"],\"xHt036\":[\"个人访问令牌\"],\"xKeZ0l\":[\"更偏暖、偏土的色调。\"],\"xYbozN\":[\"柔象牙白\"],\"xqViCq\":[\"暖象牙白\"],\"xxaahd\":[\"想要更冷、更利落的观感时。\"],\"y28hnO\":[\"文章\"],\"y8Md/V\":[\"语言和时间已更新。\"],\"yNCqOt\":[\"最新订阅源\"],\"yQ3kNF\":[\"输入以下短语以确认:\"],\"ydq1k2\":[\"请先选择一个账号\"],\"yjjCV8\":[\"固定订阅源 URL\"],\"yjkELF\":[\"确认新密码\"],\"yzF66j\":[\"链接\"],\"z6wakA\":[\"在您的主页上显示的简短介绍.\"],\"zEizrk\":[\"上次使用 \",[\"date\"]],\"zSURJW\":[\"没有匹配的仓库。\"],\"zXH2jX\":[\"语言与时间\"],\"zlcDd2\":[\"要删除此自定义 URL 吗?使用它的访问者将不再被重定向。\"],\"zwBp5t\":[\"私有\"],\"zxRN6H\":[\"导航链接、首页信息流和更多菜单\"]}");
1923
1923
  //#endregion
1924
1924
  //#region src/i18n/locales/settings/zh-Hant.ts
1925
- var messages = JSON.parse("{\"++YsxG\":[\"讀者和搜尋引擎看到的是\"],\"+4Z6iP\":[\"先在 GitHub 上建立儲存庫 — 可以是空的。\"],\"+9JI/F\":[\"連線後會將您的網站同步到 \",[\"repo\"],\" 的預設分支,並疊加在其現有歷史之上。Jant 管理路徑外的既有檔案會保留。此操作無法復原。\"],\"+AXdXp\":[\"標籤與 URL 為必填\"],\"+K0AvT\":[\"解除連線\"],\"+wgt7C\":[\"低飽和的紅棕底,溫暖、有泥土感。\"],\"+zy2Nq\":[\"類型\"],\"/3H2/s\":[\"此託管網站透過 \",[\"providerLabel\"],\" 登入。請在該處管理密碼與託管存取權限。\"],\"/JnyjR\":[\"切換內建導覽項目。它們的順序決定頁首顯示哪些項目,以及首頁會先開啟哪一個 feed。\"],\"/PXXBT\":[\"近乎純白,帶一點暖意。\"],\"/zOUxl\":[\"連結至 Telegram 機器人的 QR 碼\"],\"0OGSSc\":[\"頭像顯示已更新.\"],\"0UzCUX\":[\"更新您用來登入的密碼\"],\"0bdA9b\":[\"開啟 Telegram 以連線\"],\"0uIjy/\":[\"淺鼠尾草綠底,配同色系的綠。\"],\"10UtuM\":[\"CJK 字體\"],\"1F6Mzc\":[\"目前尚無導覽項目。請新增連結或在下方啟用系統項目。\"],\"1H7gng\":[\"後台語言\"],\"1mbBbL\":[\"手動連接\"],\"1njn7W\":[\"淺色\"],\"1qGdnL\":[\"預設主題。沉靜,適合長時間閱讀。\"],\"2B7t+s\":[\"工作階段與密碼\"],\"2DoBvq\":[\"訂閱來源\"],\"2FYpfJ\":[\"更多\"],\"2Ithfh\":[\"傳送任何文字給機器人,該文字會作為筆記已發佈。\"],\"2PTjMB\":[\"我想刪除 \",[\"siteName\"]],\"2cFU6q\":[\"網站頁尾\"],\"2fPEPI\":[\"沉靜、偏冷的底色。\"],\"2lkk2l\":[\"微黃的紙底,配橄欖綠。\"],\"2oWZo7\":[\"最近一次提交\"],\"2uuy4H\":[\"已透過個人存取權杖連線\"],\"35x8eZ\":[\"顯示 \",[\"shown\"],\" 共 \",[\"total\"]],\"39QGku\":[\"開啟機器人並傳送綁定碼,之後你傳給它的任何訊息都會成為筆記。\"],\"3Cw1AI\":[\"新增選集\"],\"3VrybB\":[\"重新導向\"],\"3Yvsaz\":[\"302 (暫時)\"],\"3n0zbB\":[\"在示範模式中已停用工作階段管理。請改用共用示範工作階段。\"],\"3sYJi5\":[\"下載與 Hugo 相容的封存 — 以靜態方式託管或移轉到另一個 Jant\"],\"3wKq0C\":[\"無法儲存。請稍後再試。\"],\"49Bsal\":[\"Feed 設定已更新。\"],\"4Jge8E\":[\"目前的工作階段\"],\"4KIa+q\":[\"已下載匯出檔案。\"],\"4cEClj\":[\"工作階段\"],\"4yyXWu\":[\"淺骨白底,配低飽和的綠。\"],\"4zGJ5E\":[\"永久刪除帳戶\"],\"5QlUIt\":[\"倉庫為空。準備連線。\"],\"5VQnR3\":[\"當你想要一個永遠不會改變的 feed URL 時,請使用這些。\"],\"5dpcN1\":[\"輸入以搜尋全部\"],\"5f1Wo9\":[\"已以 \",[\"account\"],\" 連線\"],\"5o8R81\":[\"極淺的象牙底,配淡淡的茶綠。\"],\"6ArdBh\":[\"將精選文章用於 /feed.\"],\"6DjeBT\":[\"示範網站會始終對搜尋引擎保持隱藏。\"],\"6E3aK4\":[\"管理託管\"],\"6FFB7q\":[\"使用最新的公開貼文作為 /feed。\"],\"6K1Vef\":[\"確定要永久刪除此部落格嗎?此動作無法復原。\"],\"6NpNLc\":[\"此儲存庫已有內容。\"],\"6V3Ea3\":[\"已複製\"],\"71WIgc\":[\"取得新代碼\"],\"746NHh\":[\"此部落格\"],\"7811AW\":[\"此儲存庫已在備份本網站。\"],\"7FCZPo\":[\"內容語言\"],\"7FaY4u\":[\"用法\"],\"7G9YLi\":[\"允許搜尋引擎收錄我的網站\"],\"7GISOt\":[\"儲存機器人權杖\"],\"7MZxzw\":[\"密碼已變更.\"],\"7vhWI8\":[\"新密碼\"],\"81nFIS\":[\"密碼不符。請確認兩個欄位相同。\"],\"87a/t/\":[\"標籤\"],\"89Upyo\":[\"該主題目前不可用。請選擇其他主題。\"],\"8BfEpW\":[\"託管帳號\"],\"8N/Mcp\":[\"封存篩選參數 (例如 format=note&view=list)\"],\"8T46pB\":[\"機器人權杖\"],\"8U2Z7f\":[\"新增自訂 URL\"],\"8ZsakT\":[\"密碼\"],\"8gEghq\":[\"明亮的暖白底,配苔綠點綴。\"],\"9+vGLh\":[\"自訂 CSS\"],\"9As8Nu\":[\"在 GitHub 上建立一個\"],\"9EjI4j\":[\"暖沙色\"],\"9Lsvt5\":[\"已於 \",[\"date\"],\" 登入\"],\"9T7Cwm\":[\"重新導向、自訂路徑與網址控制\"],\"9aUyym\":[\"查看您在哪裡已登入,並撤銷舊的工作階段\"],\"A1taO8\":[\"搜尋\"],\"AeXO77\":[\"帳戶\"],\"AnY+O9\":[\"在首頁底部顯示「Build with Jant」\"],\"ApZDMk\":[\"此圖會用於您的 favicon 和 apple-touch-icon。為達最佳效果,請上傳至少 512x512 像素、背景為純色的正方形 PNG。\"],\"B495Gs\":[\"封存\"],\"B4ESok\":[\"API 參考\"],\"BzEFor\":[\"或\"],\"CDAdlf\":[\"移除機器人\"],\"CTAEes\":[\"選擇儲存庫\"],\"CjZZgz\":[\"此儲存庫已有提交紀錄\"],\"D8k2s6\":[\"連接 Telegram\"],\"DCKkhU\":[\"目前密碼\"],\"DKKKeF\":[\"在 \",[\"providerLabel\"],\" 管理密碼與託管存取\"],\"DVFXa6\":[\"最乾淨、最中性的一檔。\"],\"EO3I6h\":[\"上傳未成功. 請稍後再試.\"],\"Eax/et\":[\"強調色\"],\"Enslfm\":[\"目標網址\"],\"F53UDu\":[\"冷白\"],\"F7FKwe\":[\"你在此處貼上的任何內容都能完全存取訪客的瀏覽器。僅使用來自你信任來源的程式碼。\"],\"F8SNqr\":[\"暖橘\"],\"Fk3SSD\":[\"平靜自然,看著舒服。\"],\"FkMol5\":[\"精選\"],\"G/1oP+\":[\"移除 webhook 並停止同步。您的儲存庫內容不會被刪除。\"],\"G0qJsQ\":[\"找不到安全權杖。請重新整理頁面後再試一次。\"],\"G39wnK\":[\"將內容備份並與 GitHub 儲存庫同步\"],\"GMMWcy\":[\"名稱, 中繼資料, 語言, 和 搜尋預設值\"],\"GXsAby\":[\"撤銷\"],\"GxkJXS\":[\"上傳中...\"],\"GzKzUa\":[\"試用限制\"],\"H4x7Sk\":[\"後台介面顯示的語言。可選 English、简体中文 和 繁體中文。\"],\"HCNlq3\":[\"乾淨、高對比,接近純白。\"],\"HHDyGw\":[\"柔綠\"],\"HKH+W+\":[\"資料\"],\"Hp1l6f\":[\"目前\"],\"HxlY7t\":[\"變更此設定會更新訂閱者從 /feed 取得的內容。\"],\"HxuOlm\":[\"網站頁首\"],\"I4HRxU\":[\"已發布的全部貼文,包括從 Latest 中隱藏的那些。\"],\"I6gXOa\":[\"路徑\"],\"I76CzF\":[\"中性灰\"],\"ID38tA\":[\"示範模式下帳號刪除已停用。共用示範會另行重置。\"],\"IF9tPu\":[\"何時使用網站匯出、資料庫備份與復原演練。\"],\"IW5PBo\":[\"複製權杖\"],\"IagCbF\":[\"URL\"],\"IfB3m6\":[\"你撰寫內容所用的語言。透過 HTML lang 和 RSS 向讀者與搜尋引擎宣告。支援任意 BCP 47 標籤。\"],\"IreQBq\":[\"儲存庫\"],\"J6bLeg\":[\"新增自訂連結到任何 URL\"],\"JL7LF5\":[\"可用的 CSS 變數、data 屬性與範例.\"],\"JTviaO\":[\"管理登入安全、匯出,以及不可逆的操作。\"],\"JcD7qf\":[\"更多操作\"],\"JjX0OO\":[\"請立即複製您的權杖 — 它不會再顯示。\"],\"JrFTcr\":[\"連線中…\"],\"JuN5GC\":[\"未選取檔案。請選擇要上傳的檔案。\"],\"KDw4GX\":[\"重試\"],\"KSgo21\":[\"選擇一個儲存庫\"],\"KVVYBh\":[\"新增選集到導覽\"],\"KiJn9B\":[\"筆記\"],\"KwOLJF\":[\"Jant 最初的配色,日常穩妥之選。\"],\"L3DEwT\":[\"移除這個頭像?您的 favicon 與頁首圖示會回復為預設。\"],\"L4t4/q\":[\"3月14日\"],\"LdyooL\":[\"連結\"],\"M/D8PK\":[\"+ 安裝到其他帳戶\"],\"M/haSd\":[\"永遠顯示主題的淺色版本。\"],\"M2kIWU\":[\"字型主題\"],\"M6CbAU\":[\"切換編輯面板\"],\"MaYYE6\":[\"透過向 Telegram 機器人傳送訊息來發佈筆記\"],\"Me5t5H\":[\"連接 GitHub 倉庫,自動將你的文章備份為 Markdown 檔案。GitHub 上的編輯會同步回你的網站。\"],\"Mr4QPw\":[\"要斷開 Telegram?您可以隨時使用新的綁定代碼重新連接。\"],\"MtENL9\":[\"調整您的網站外觀、可讀性與執行效能。\"],\"N/8NPV\":[\"在刪除前,請先下載網站匯出檔案。刪除後無法恢復此帳號。\"],\"N7UNHY\":[\"精選 RSS 來源\"],\"NHnUHF\":[\"頁首上的網站圖示與個人標記\"],\"NU2Fqi\":[\"儲存 CSS\"],\"NVjhde\":[\"暖羊皮紙\"],\"Nldjdr\":[\"尚未有自訂 URL。建立一個自訂 URL 以為文章新增重新導向或自訂路徑。\"],\"O7rgs6\":[\"頁首 RSS 指向你的 \",[\"feed\"],\" 訂閱 (/feed)。在「一般」中變更 /feed 回傳的內容。\"],\"OSJXFg\":[\"套用於整個網站, 包括管理頁面. 選擇一個調色盤, 然後決定它是跟隨系統還是維持固定.\"],\"Ox3+3h\":[\"無相符結果。\"],\"PEUV5I\":[\"程式碼注入已更新。\"],\"PHh52z\":[\"暖而厚重,棕調明顯。\"],\"PXj9lw\":[\"停止接受來自 Telegram 的貼文。您現有的筆記會保持已發佈。\"],\"PZ7HJ8\":[\"部落格大頭貼\"],\"Pwqkdw\":[\"載入中…\"],\"PxJ9W6\":[\"產生權杖\"],\"Q/6Y+2\":[\"需要在目標儲存庫上擁有 Contents(讀/寫)和 Webhooks(讀/寫)權限。\"],\"Q30z/l\":[\"要從導覽移除這個選集嗎?選集本身不會被刪除。\"],\"Q99OtV\":[\"將選集釘選到導覽列。最近 48 小時內更新的選集旁會顯示一個 * 號。\"],\"QCwsv1\":[\"暖白\"],\"QKvrmL\":[\"暖中性,適合長讀。\"],\"QZmz0H\":[\"內建連結\"],\"Qnrzvb\":[\"已啟用的權杖\"],\"R6Z4LE\":[\"下載失敗。請再試一次。\"],\"R9Khdg\":[\"自動\"],\"RcdDOS\":[\"在 Telegram 上向 @BotFather 發送訊息以建立機器人,然後貼上它提供給你的權杖\"],\"RdVIcf\":[\"奶油配深咖\"],\"RxsRD6\":[\"時區\"],\"SJmfuf\":[\"網站名稱\"],\"SKZhW9\":[\"權杖名稱 (API 權杖名稱欄位。)\"],\"SVQQPe\":[\"無法連線。請檢查錯誤並再試一次。\"],\"SchpMp\":[\"Telegram\"],\"SrGs4T\":[\"淺藍灰底,冷靜而均勻。\"],\"TpF3v+\":[\"在 </head> 之前注入。用於分析、自訂 meta 標籤,以及必須提前載入的樣式。\"],\"Tz0i8g\":[\"設定\"],\"UFK415\":[\"用於分析與小工具的網站全域 HTML\"],\"UTvFQq\":[\"開啟 \",[\"linkOpen\"],\"@\",[\"botUsername\"],[\"linkClose\"],\" 並傳送:\"],\"Uj/btJ\":[\"在我的網站頁首顯示大頭貼\"],\"UsODUn\":[\"選擇一個帳戶\"],\"UxKoFf\":[\"導覽\"],\"V+bhUy\":[\"安裝 GitHub App\"],\"V4WsyL\":[\"新增連結\"],\"V5pZwT\":[\"搜尋設定已更新。\"],\"VXUPla\":[\"使用 GitHub App 連線\"],\"VhMDMg\":[\"變更密碼\"],\"Vn3jYy\":[\"導覽項目\"],\"VoZYGU\":[\"這會永久刪除您所有的資料 — 文章、媒體、選集、設定,以及您的帳戶。您的部落格將被重設為初始設定狀態。此操作無法復原。\"],\"WUnFK2\":[\"偏冷的淺白底,配深靛藍文字。高對比。\"],\"Wa9q4P\":[\"純白\"],\"Weq9zb\":[\"一般\"],\"Wi9i06\":[\"依照每位訪客的系統偏好。\"],\"Wx1M8N\":[\"安裝 GitHub App,以授予存取權而無需管理個人權杖。權限以每個儲存庫為範圍,並可在 GitHub 上撤銷。\"],\"X+8FMk\":[\"目前的密碼不符。請再試一次。\"],\"X1G9eY\":[\"導覽預覽\"],\"X2Cbc2\":[\"封存 RSS 來源\"],\"X9Hujr\":[\"手動推送\"],\"XtBJV8\":[\"正在檢查儲存庫…\"],\"Xtc16w\":[\"重新整理儲存庫清單\"],\"Y/F35r\":[\"使用 curl 建立貼文:\"],\"Y/N5N7\":[\"柔和的奶油底,配低飽和的綠。\"],\"YF6zHf\":[\"網站設定已更新.\"],\"YdG2RF\":[\"匯出網站\"],\"YkgZi7\":[\"連接一個 Telegram 機器人,之後你傳給它的任何訊息都會以筆記形式已發佈。\"],\"YwhjRx\":[\"管理帳戶\"],\"Yxp859\":[\"暖奶油色\"],\"ZDY7Fy\":[\"同步中…\"],\"ZQKLI1\":[\"危險區域\"],\"ZS/CBL\":[\"刪除此導覽連結?訪客將不再在您的網站頁首看到它。\"],\"ZgZX+d\":[\"純白底配中性灰。不帶任何色偏。\"],\"ZhhOwV\":[\"引用 (Jant 的貼文格式之一。)\"],\"ZiooJI\":[\"API 權杖\"],\"Zm7Qb0\":[\"備份與還原指南\"],\"ZmUkwN\":[\"新增自訂連結到導覽\"],\"a14mj8\":[\"未知裝置\"],\"a1iEgy\":[\"暖奶油底,配深咖啡棕點綴。\"],\"a3LDKx\":[\"安全性\"],\"aAIQg2\":[\"外觀\"],\"aFkzVF\":[\"目標文章或選集的 slug\"],\"alKG0+\":[\"字型主題\"],\"anibOb\":[\"關於本部落格\"],\"any7NR\":[\"主題指南\"],\"b+/jO6\":[\"301 (永久)\"],\"bHOiy1\":[\"示範模式已停用變更密碼功能。請使用共用示範帳號登入。\"],\"bHYIks\":[\"登出\"],\"bV2vng\":[\"暖陶土色\"],\"bbR5vW\":[\"這套配色\"],\"bmrL08\":[\"示範模式會隱藏會話、密碼更改與帳號刪除。匯出功能仍可使用。\"],\"bviiKV\":[\"這個主題下的標題、正文和連結。\"],\"c3MN2z\":[\"所有可用的端點與請求格式。\"],\"cS7/bk\":[\"移除已儲存的機器人權杖?其 webhook 會被刪除,任何已連接的帳號將會被斷線。\"],\"cSDy01\":[\"自訂 CSS 已更新.\"],\"clzoNp\":[\"始終顯示深色主題。\"],\"cnGeoo\":[\"刪除\"],\"d3FRkY\":[\"無法複製. 請再試一次.\"],\"d5oGUo\":[\"在 GitHub 建立新儲存庫\"],\"dEgA5A\":[\"取消\"],\"dTXUY+\":[\"確認刪除帳號\"],\"dYKrp3\":[\"從最新中隱藏 (不出現在 Latest 中,但仍可透過固定連結和集合存取的狀態。)\"],\"dk7TCH\":[\"永久刪除所有資料並重設部落格\"],\"drodVV\":[\"目前還沒有選集。請先建立一個,然後將它加入您的導覽。\"],\"dsWkIw\":[\"要與 GitHub 斷開連線嗎? webhook 將會被移除。您的儲存庫內容不會被刪除。\"],\"e/tSI5\":[\"導覽順序已更新。\"],\"eOL7vn\":[\"色彩極少,干擾最小。\"],\"ePK91l\":[\"編輯\"],\"ebQKK7\":[\"網站\"],\"egK+Yy\":[\"供腳本與自動化使用的 Bearer 權杖\"],\"ehj/zN\":[\"重新導向類型\"],\"eneWvv\":[\"草稿\"],\"erTMh7\":[\"上次同步\"],\"f+m8jj\":[\"已複製訂閱網址。\"],\"f8fH8W\":[\"設計\"],\"fKRAwQ\":[\"沙色底,配綠色點綴。\"],\"fWYqkz\":[\"程式碼注入\"],\"fYXQnC\":[\"暖色裡最濃的一檔,溫馨。\"],\"gOWiTY\":[\"載入為中文、日文或韓文內容最佳化的襯線字型。\"],\"gZ5owP\":[\"搜尋儲存庫\"],\"gbqbh6\":[\"可以放心離開此頁面 — 同步會在背景繼續進行。\"],\"gkFvVN\":[\"在 </body> 之前注入。用於聊天小工具和不應阻塞頁面載入的腳本。\"],\"gtQsRO\":[\"建立自訂網址\"],\"hBO/y4\":[\"安全權杖已過期。請重新整理頁面並再試一次。\"],\"hGmyDl\":[\"權杖讓您從腳本, 捷徑和其他工具存取 API 無需登入\"],\"hIHkRy\":[\"已透過 GitHub 應用程式連線\"],\"hdSi1b\":[\"輸入 \",[\"repo\"],\" 以確認\"],\"he3ygx\":[\"複製\"],\"i0qMbr\":[\"首頁\"],\"iEUzMn\":[\"系統\"],\"iSLIjg\":[\"連接\"],\"iVOMRi\":[\"首頁設定已更新。\"],\"icB4Cv\":[\"將連結拖到此處以顯示於「更多」選單下方\"],\"id3vuh\":[\"已設定 Telegram,但無法連線到機器人。請檢查機器人權杖並再試一次。\"],\"ihn4zD\":[\"搜尋…\"],\"iiDXZc\":[\"顯示於所有文章與頁面的底部。\"],\"itS31B\":[\"更暖一些,像略舊的紙。\"],\"iwQZvS\":[\"冷藍灰\"],\"j4VrG6\":[\"下載匯出 ZIP\"],\"j5nQL2\":[\"例如 iOS 捷徑\"],\"jUV7CU\":[\"上傳大頭貼\"],\"jVUmOK\":[\"支援 Markdown\"],\"jdVYS8\":[\"選一個適合你文字的。\"],\"jgBjXJ\":[\"要撤銷這個權杖嗎?任何使用它的腳本都會停止運作。\"],\"jpctdh\":[\"檢視\"],\"k1ifdL\":[\"處理中...\"],\"kLw03Y\":[\"亮紙白\"],\"kMXclu\":[\"下載網站匯出檔案\"],\"kNiQp6\":[\"已釘選\"],\"kRhzWq\":[\"GitHub 同步\"],\"kVQs7s\":[\"細緻的樣式覆寫\"],\"ke1gWS\":[\"自訂 URL\"],\"kfcRb0\":[\"頭像\"],\"kxDZ2i\":[\"此程式碼會在您網站的每個頁面上執行。\"],\"l2Op2p\":[\"查詢參數\"],\"lLW3vJ\":[\"目標 slug\"],\"lV04bQ\":[\"溫暖、有泥土感,但不顯暗。\"],\"lYHJih\":[\"撤銷此工作階段?該裝置將需要重新登入。\"],\"mLOk1i\":[\"立即將所有文章推送到 GitHub,而不是等待下一次自動同步。\"],\"mSNmrX\":[\"列出貼文:\"],\"nG2qTk\":[\"示例連結\"],\"nK07ni\":[\"為您的網站選擇一種排版風格。每個主題會同時改變字體配對與閱讀節奏。\"],\"nbfdhU\":[\"第三方整合\"],\"ntJYyh\":[\"在 \",[\"providerLabel\"],\" 管理網域、方案和計費\"],\"o/vNDE\":[\"讓您覆寫任何主題變數。\"],\"oGC9uP\":[\"owner/repo\"],\"oH2JHg\":[\"我們會預先填入名稱 \",[\"name\"],\"。返回時清單會重新整理。\"],\"oKOOsY\":[\"色彩主題\"],\"oL535e\":[\"尚未同步\"],\"oNA4If\":[\"所有選集已經在您的導覽中。\"],\"oUn9Z7\":[\"近中性的淺灰,配鋼藍點綴。\"],\"ofdy2l\":[\"帶橘調的底色。最暖的一套。\"],\"pZq3aX\":[\"上傳失敗。請再試一次。\"],\"pgTIrt\":[\"選擇要與此網站同步的 GitHub 帳號和儲存庫.\"],\"psoxDF\":[\"該字型主題無法使用. 請選擇其他主題.\"],\"pvnfJD\":[\"深色\"],\"q+hNag\":[\"選集\"],\"qdcESc\":[\"建立新儲存庫\"],\"r5EW6f\":[\"此儲存庫已在備份另一個 Jant 網站 (\",[\"host\"],\"). 請選擇其他儲存庫.\"],\"rEspiY\":[\"導覽位置已更新。\"],\"rFmBG3\":[\"色彩主題\"],\"rlonmB\":[\"無法刪除。請稍後再試。\"],\"satWc6\":[\"主要 RSS 訂閱\"],\"sgr2wQ\":[\"選集\"],\"soRdOu\":[\"米白紙底,配深森綠。\"],\"sqxcaY\":[\"建立於 \",[\"date\"]],\"sxkWRg\":[\"進階\"],\"t/YqKh\":[\"移除\"],\"t3hvHq\":[\"立即同步\"],\"tJ4H0O\":[\"您的 Telegram 帳號\"],\"tfDRzk\":[\"儲存\"],\"tvgAq5\":[\"尚未授權任何帳戶\"],\"u1VTd3\":[\"調色盤、表面色調與整體氛圍\"],\"u3wRF+\":[\"已發佈\"],\"u6KOjV\":[\"想要更細緻的控制?\"],\"udPwLB\":[\"頁首\"],\"ui6aMF\":[\"這些裝置目前已登入您的帳號。撤銷任何您不認識的工作階段。\"],\"vBEKwo\":[\"在此管理本網站的活動工作階段。密碼與託管存取由 \",[\"providerLabel\"],\" 管理。\"],\"vRldcl\":[\"字體選擇與閱讀質感\"],\"vSYKYI\":[\"主要訂閱來源\"],\"vTuib7\":[\"這會控制 /feed 回傳的內容。\"],\"vmQmHx\":[\"新增自訂 CSS 以覆寫任何樣式。使用像 [data-page]、[data-post]、[data-format] 這類資料屬性來選取特定元素。\"],\"vzX5FB\":[\"刪除帳號\"],\"w8Rv8T\":[\"標籤為必填\"],\"wL3cK8\":[\"最新\"],\"wW6NCp\":[\"上次錯誤\"],\"wc+17X\":[\"/* 在此放入您的自訂 CSS */\"],\"wuLtXn\":[\"目前沒有任何活動中的工作階段。已登入的裝置會顯示在此處。\"],\"xCWek4\":[\"檔案儲存尚未設定。請檢查您的伺服器設定。\"],\"xHt036\":[\"個人存取權杖\"],\"xKeZ0l\":[\"更偏暖、偏土的色調。\"],\"xYbozN\":[\"柔象牙白\"],\"xqViCq\":[\"暖象牙白\"],\"xxaahd\":[\"想要更冷、更利落的觀感時。\"],\"y28hnO\":[\"文章\"],\"y8Md/V\":[\"語言與時間已更新。\"],\"yNCqOt\":[\"最新 RSS 來源\"],\"yQ3kNF\":[\"請輸入以下短語以確認:\"],\"ydq1k2\":[\"請先選擇一個帳戶\"],\"yjjCV8\":[\"固定的 RSS 檔案網址\"],\"yjkELF\":[\"確認新密碼\"],\"yzF66j\":[\"連結 (Jant 的貼文格式之一。)\"],\"z6wakA\":[\"顯示在您的主頁上的簡短介紹。\"],\"zEizrk\":[\"最後使用於 \",[\"date\"]],\"zSURJW\":[\"沒有符合的儲存庫.\"],\"zXH2jX\":[\"語言與時區\"],\"zlcDd2\":[\"刪除此自訂 URL?使用該 URL 的訪客將不會再被重新導向。\"],\"zwBp5t\":[\"私有\"],\"zxRN6H\":[\"頁首連結、首頁動態與更多選單\"]}");
1925
+ var messages = JSON.parse("{\"++YsxG\":[\"讀者和搜尋引擎看到的是\"],\"+4Z6iP\":[\"先在 GitHub 上建立儲存庫 — 可以是空的。\"],\"+9JI/F\":[\"連線後會將您的網站同步到 \",[\"repo\"],\" 的預設分支,並疊加在其現有歷史之上。Jant 管理路徑外的既有檔案會保留。此操作無法復原。\"],\"+AXdXp\":[\"標籤與 URL 為必填\"],\"+K0AvT\":[\"解除連線\"],\"+wgt7C\":[\"低飽和的紅棕底,溫暖、有泥土感。\"],\"+zy2Nq\":[\"類型\"],\"/3H2/s\":[\"此託管網站透過 \",[\"providerLabel\"],\" 登入。請在該處管理密碼與託管存取權限。\"],\"/JnyjR\":[\"切換內建導覽項目。它們的順序決定頁首顯示哪些項目,以及首頁會先開啟哪一個 feed。\"],\"/PXXBT\":[\"近乎純白,帶一點暖意。\"],\"/zOUxl\":[\"連結至 Telegram 機器人的 QR 碼\"],\"0OGSSc\":[\"頭像顯示已更新.\"],\"0UzCUX\":[\"更新您用來登入的密碼\"],\"0bdA9b\":[\"開啟 Telegram 以連線\"],\"0gECZD\":[\"想寫更完整的介紹?\"],\"0uIjy/\":[\"淺鼠尾草綠底,配同色系的綠。\"],\"10UtuM\":[\"CJK 字體\"],\"1F6Mzc\":[\"目前尚無導覽項目。請新增連結或在下方啟用系統項目。\"],\"1H7gng\":[\"後台語言\"],\"1mbBbL\":[\"手動連接\"],\"1njn7W\":[\"淺色\"],\"1qGdnL\":[\"預設主題。沉靜,適合長時間閱讀。\"],\"2B7t+s\":[\"工作階段與密碼\"],\"2DoBvq\":[\"訂閱來源\"],\"2FYpfJ\":[\"更多\"],\"2Ithfh\":[\"傳送任何文字給機器人,該文字會作為筆記已發佈。\"],\"2PTjMB\":[\"我想刪除 \",[\"siteName\"]],\"2cFU6q\":[\"網站頁尾\"],\"2fPEPI\":[\"沉靜、偏冷的底色。\"],\"2lkk2l\":[\"微黃的紙底,配橄欖綠。\"],\"2oWZo7\":[\"最近一次提交\"],\"2uuy4H\":[\"已透過個人存取權杖連線\"],\"2wK4BX\":[\"編輯 About 頁面\"],\"35x8eZ\":[\"顯示 \",[\"shown\"],\" 共 \",[\"total\"]],\"39QGku\":[\"開啟機器人並傳送綁定碼,之後你傳給它的任何訊息都會成為筆記。\"],\"3Cw1AI\":[\"新增選集\"],\"3VrybB\":[\"重新導向\"],\"3Yvsaz\":[\"302 (暫時)\"],\"3n0zbB\":[\"在示範模式中已停用工作階段管理。請改用共用示範工作階段。\"],\"3sYJi5\":[\"下載與 Hugo 相容的封存 — 以靜態方式託管或移轉到另一個 Jant\"],\"3wKq0C\":[\"無法儲存。請稍後再試。\"],\"49Bsal\":[\"Feed 設定已更新。\"],\"4Jge8E\":[\"目前的工作階段\"],\"4KIa+q\":[\"已下載匯出檔案。\"],\"4cEClj\":[\"工作階段\"],\"4yyXWu\":[\"淺骨白底,配低飽和的綠。\"],\"4zGJ5E\":[\"永久刪除帳戶\"],\"5QlUIt\":[\"倉庫為空。準備連線。\"],\"5VQnR3\":[\"當你想要一個永遠不會改變的 feed URL 時,請使用這些。\"],\"5dpcN1\":[\"輸入以搜尋全部\"],\"5f1Wo9\":[\"已以 \",[\"account\"],\" 連線\"],\"5o8R81\":[\"極淺的象牙底,配淡淡的茶綠。\"],\"6ArdBh\":[\"將精選文章用於 /feed.\"],\"6DjeBT\":[\"示範網站會始終對搜尋引擎保持隱藏。\"],\"6E3aK4\":[\"管理託管\"],\"6FFB7q\":[\"使用最新的公開貼文作為 /feed。\"],\"6K1Vef\":[\"確定要永久刪除此部落格嗎?此動作無法復原。\"],\"6NpNLc\":[\"此儲存庫已有內容。\"],\"6V3Ea3\":[\"已複製\"],\"6WdDG7\":[\"頁面\"],\"71WIgc\":[\"取得新代碼\"],\"746NHh\":[\"此部落格\"],\"7811AW\":[\"此儲存庫已在備份本網站。\"],\"7FCZPo\":[\"內容語言\"],\"7FaY4u\":[\"用法\"],\"7G9YLi\":[\"允許搜尋引擎收錄我的網站\"],\"7GISOt\":[\"儲存機器人權杖\"],\"7MZxzw\":[\"密碼已變更.\"],\"7vhWI8\":[\"新密碼\"],\"81nFIS\":[\"密碼不符。請確認兩個欄位相同。\"],\"87a/t/\":[\"標籤\"],\"89Upyo\":[\"該主題目前不可用。請選擇其他主題。\"],\"8BfEpW\":[\"託管帳號\"],\"8N/Mcp\":[\"封存篩選參數 (例如 format=note&view=list)\"],\"8T46pB\":[\"機器人權杖\"],\"8U2Z7f\":[\"新增自訂 URL\"],\"8ZsakT\":[\"密碼\"],\"8gEghq\":[\"明亮的暖白底,配苔綠點綴。\"],\"9+vGLh\":[\"自訂 CSS\"],\"9As8Nu\":[\"在 GitHub 上建立一個\"],\"9EjI4j\":[\"暖沙色\"],\"9J6wUO\":[\"建議新增的連結\"],\"9Lsvt5\":[\"已於 \",[\"date\"],\" 登入\"],\"9T7Cwm\":[\"重新導向、自訂路徑與網址控制\"],\"9aUyym\":[\"查看您在哪裡已登入,並撤銷舊的工作階段\"],\"A1taO8\":[\"搜尋\"],\"AeXO77\":[\"帳戶\"],\"AnY+O9\":[\"在首頁底部顯示「Build with Jant」\"],\"ApZDMk\":[\"此圖會用於您的 favicon 和 apple-touch-icon。為達最佳效果,請上傳至少 512x512 像素、背景為純色的正方形 PNG。\"],\"B495Gs\":[\"封存\"],\"B4ESok\":[\"API 參考\"],\"BTYdze\":[\"連結已新增到導覽。\"],\"BzEFor\":[\"或\"],\"CDAdlf\":[\"移除機器人\"],\"CTAEes\":[\"選擇儲存庫\"],\"CjZZgz\":[\"此儲存庫已有提交紀錄\"],\"D8k2s6\":[\"連接 Telegram\"],\"DCKkhU\":[\"目前密碼\"],\"DKKKeF\":[\"在 \",[\"providerLabel\"],\" 管理密碼與託管存取\"],\"DVFXa6\":[\"最乾淨、最中性的一檔。\"],\"EO3I6h\":[\"上傳未成功. 請稍後再試.\"],\"Eax/et\":[\"強調色\"],\"Enslfm\":[\"目標網址\"],\"F53UDu\":[\"冷白\"],\"F7FKwe\":[\"你在此處貼上的任何內容都能完全存取訪客的瀏覽器。僅使用來自你信任來源的程式碼。\"],\"F8SNqr\":[\"暖橘\"],\"Fk3SSD\":[\"平靜自然,看著舒服。\"],\"FkMol5\":[\"精選\"],\"G/1oP+\":[\"移除 webhook 並停止同步。您的儲存庫內容不會被刪除。\"],\"G0qJsQ\":[\"找不到安全權杖。請重新整理頁面後再試一次。\"],\"G39wnK\":[\"將內容備份並與 GitHub 儲存庫同步\"],\"GMMWcy\":[\"名稱, 中繼資料, 語言, 和 搜尋預設值\"],\"GXsAby\":[\"撤銷\"],\"GxkJXS\":[\"上傳中...\"],\"GzKzUa\":[\"試用限制\"],\"H4x7Sk\":[\"後台介面顯示的語言。可選 English、简体中文 和 繁體中文。\"],\"HCNlq3\":[\"乾淨、高對比,接近純白。\"],\"HHDyGw\":[\"柔綠\"],\"HKH+W+\":[\"資料\"],\"Hp1l6f\":[\"目前\"],\"HxlY7t\":[\"變更此設定會更新訂閱者從 /feed 取得的內容。\"],\"HxuOlm\":[\"網站頁首\"],\"I4HRxU\":[\"已發布的全部貼文,包括從 Latest 中隱藏的那些。\"],\"I6gXOa\":[\"路徑\"],\"I76CzF\":[\"中性灰\"],\"ID38tA\":[\"示範模式下帳號刪除已停用。共用示範會另行重置。\"],\"IF9tPu\":[\"何時使用網站匯出、資料庫備份與復原演練。\"],\"IW5PBo\":[\"複製權杖\"],\"IagCbF\":[\"URL\"],\"IfB3m6\":[\"你撰寫內容所用的語言。透過 HTML lang 和 RSS 向讀者與搜尋引擎宣告。支援任意 BCP 47 標籤。\"],\"IreQBq\":[\"儲存庫\"],\"J6bLeg\":[\"新增自訂連結到任何 URL\"],\"JL7LF5\":[\"可用的 CSS 變數、data 屬性與範例.\"],\"JTviaO\":[\"管理登入安全、匯出,以及不可逆的操作。\"],\"JcD7qf\":[\"更多操作\"],\"JjX0OO\":[\"請立即複製您的權杖 — 它不會再顯示。\"],\"JrFTcr\":[\"連線中…\"],\"JuN5GC\":[\"未選取檔案。請選擇要上傳的檔案。\"],\"KDw4GX\":[\"重試\"],\"KSgo21\":[\"選擇一個儲存庫\"],\"KVVYBh\":[\"新增選集到導覽\"],\"KiJn9B\":[\"筆記\"],\"KwOLJF\":[\"Jant 最初的配色,日常穩妥之選。\"],\"L3DEwT\":[\"移除這個頭像?您的 favicon 與頁首圖示會回復為預設。\"],\"L4t4/q\":[\"3月14日\"],\"LdyooL\":[\"連結\"],\"M/D8PK\":[\"+ 安裝到其他帳戶\"],\"M/haSd\":[\"永遠顯示主題的淺色版本。\"],\"M2kIWU\":[\"字型主題\"],\"M6CbAU\":[\"切換編輯面板\"],\"MaYYE6\":[\"透過向 Telegram 機器人傳送訊息來發佈筆記\"],\"Me5t5H\":[\"連接 GitHub 倉庫,自動將你的文章備份為 Markdown 檔案。GitHub 上的編輯會同步回你的網站。\"],\"Mr4QPw\":[\"要斷開 Telegram?您可以隨時使用新的綁定代碼重新連接。\"],\"MtENL9\":[\"調整您的網站外觀、可讀性與執行效能。\"],\"N/8NPV\":[\"在刪除前,請先下載網站匯出檔案。刪除後無法恢復此帳號。\"],\"N7UNHY\":[\"精選 RSS 來源\"],\"NHnUHF\":[\"頁首上的網站圖示與個人標記\"],\"NU2Fqi\":[\"儲存 CSS\"],\"NVjhde\":[\"暖羊皮紙\"],\"Nldjdr\":[\"尚未有自訂 URL。建立一個自訂 URL 以為文章新增重新導向或自訂路徑。\"],\"O7rgs6\":[\"頁首 RSS 指向你的 \",[\"feed\"],\" 訂閱 (/feed)。在「一般」中變更 /feed 回傳的內容。\"],\"OSJXFg\":[\"套用於整個網站, 包括管理頁面. 選擇一個調色盤, 然後決定它是跟隨系統還是維持固定.\"],\"Ox3+3h\":[\"無相符結果。\"],\"PEUV5I\":[\"程式碼注入已更新。\"],\"PHh52z\":[\"暖而厚重,棕調明顯。\"],\"PXj9lw\":[\"停止接受來自 Telegram 的貼文。您現有的筆記會保持已發佈。\"],\"PZ7HJ8\":[\"部落格大頭貼\"],\"Pwqkdw\":[\"載入中…\"],\"PxJ9W6\":[\"產生權杖\"],\"Q/6Y+2\":[\"需要在目標儲存庫上擁有 Contents(讀/寫)和 Webhooks(讀/寫)權限。\"],\"Q30z/l\":[\"要從導覽移除這個選集嗎?選集本身不會被刪除。\"],\"Q99OtV\":[\"將選集釘選到導覽列。最近 48 小時內更新的選集旁會顯示一個 * 號。\"],\"QCwsv1\":[\"暖白\"],\"QKvrmL\":[\"暖中性,適合長讀。\"],\"QZmz0H\":[\"內建連結\"],\"Qnrzvb\":[\"已啟用的權杖\"],\"R6Z4LE\":[\"下載失敗。請再試一次。\"],\"R9Khdg\":[\"自動\"],\"RcdDOS\":[\"在 Telegram 上向 @BotFather 發送訊息以建立機器人,然後貼上它提供給你的權杖\"],\"RdVIcf\":[\"奶油配深咖\"],\"RxsRD6\":[\"時區\"],\"SJmfuf\":[\"網站名稱\"],\"SKZhW9\":[\"權杖名稱 (API 權杖名稱欄位。)\"],\"SVQQPe\":[\"無法連線。請檢查錯誤並再試一次。\"],\"SchpMp\":[\"Telegram\"],\"SrGs4T\":[\"淺藍灰底,冷靜而均勻。\"],\"TpF3v+\":[\"在 </head> 之前注入。用於分析、自訂 meta 標籤,以及必須提前載入的樣式。\"],\"Tu6bMZ\":[\"建立 About 頁面\"],\"Tz0i8g\":[\"設定\"],\"UFK415\":[\"用於分析與小工具的網站全域 HTML\"],\"UTvFQq\":[\"開啟 \",[\"linkOpen\"],\"@\",[\"botUsername\"],[\"linkClose\"],\" 並傳送:\"],\"Uj/btJ\":[\"在我的網站頁首顯示大頭貼\"],\"UsODUn\":[\"選擇一個帳戶\"],\"UxKoFf\":[\"導覽\"],\"V+bhUy\":[\"安裝 GitHub App\"],\"V4WsyL\":[\"新增連結\"],\"V5pZwT\":[\"搜尋設定已更新。\"],\"VXUPla\":[\"使用 GitHub App 連線\"],\"VhMDMg\":[\"變更密碼\"],\"Vn3jYy\":[\"導覽項目\"],\"VoZYGU\":[\"這會永久刪除您所有的資料 — 文章、媒體、選集、設定,以及您的帳戶。您的部落格將被重設為初始設定狀態。此操作無法復原。\"],\"WUnFK2\":[\"偏冷的淺白底,配深靛藍文字。高對比。\"],\"Wa9q4P\":[\"純白\"],\"Wb7EHo\":[\"About 頁面\"],\"Weq9zb\":[\"一般\"],\"Wi9i06\":[\"依照每位訪客的系統偏好。\"],\"Wx1M8N\":[\"安裝 GitHub App,以授予存取權而無需管理個人權杖。權限以每個儲存庫為範圍,並可在 GitHub 上撤銷。\"],\"X+8FMk\":[\"目前的密碼不符。請再試一次。\"],\"X1G9eY\":[\"導覽預覽\"],\"X2Cbc2\":[\"封存 RSS 來源\"],\"X9Hujr\":[\"手動推送\"],\"XtBJV8\":[\"正在檢查儲存庫…\"],\"Xtc16w\":[\"重新整理儲存庫清單\"],\"Y/F35r\":[\"使用 curl 建立貼文:\"],\"Y/N5N7\":[\"柔和的奶油底,配低飽和的綠。\"],\"YF6zHf\":[\"網站設定已更新.\"],\"YdG2RF\":[\"匯出網站\"],\"YkgZi7\":[\"連接一個 Telegram 機器人,之後你傳給它的任何訊息都會以筆記形式已發佈。\"],\"YwhjRx\":[\"管理帳戶\"],\"Yxp859\":[\"暖奶油色\"],\"ZDY7Fy\":[\"同步中…\"],\"ZQKLI1\":[\"危險區域\"],\"ZS/CBL\":[\"刪除此導覽連結?訪客將不再在您的網站頁首看到它。\"],\"ZgZX+d\":[\"純白底配中性灰。不帶任何色偏。\"],\"ZhhOwV\":[\"引用\"],\"ZiooJI\":[\"API 權杖\"],\"Zm7Qb0\":[\"備份與還原指南\"],\"ZmUkwN\":[\"新增自訂連結到導覽\"],\"a14mj8\":[\"未知裝置\"],\"a1iEgy\":[\"暖奶油底,配深咖啡棕點綴。\"],\"a3LDKx\":[\"安全性\"],\"aAIQg2\":[\"外觀\"],\"aFkzVF\":[\"目標文章或選集的 slug\"],\"alKG0+\":[\"字型主題\"],\"anibOb\":[\"關於本部落格\"],\"any7NR\":[\"主題指南\"],\"b+/jO6\":[\"301 (永久)\"],\"bHOiy1\":[\"示範模式已停用變更密碼功能。請使用共用示範帳號登入。\"],\"bHYIks\":[\"登出\"],\"bV2vng\":[\"暖陶土色\"],\"bbR5vW\":[\"這套配色\"],\"bmrL08\":[\"示範模式會隱藏會話、密碼更改與帳號刪除。匯出功能仍可使用。\"],\"bviiKV\":[\"這個主題下的標題、正文和連結。\"],\"c3MN2z\":[\"所有可用的端點與請求格式。\"],\"cS7/bk\":[\"移除已儲存的機器人權杖?其 webhook 會被刪除,任何已連接的帳號將會被斷線。\"],\"cSDy01\":[\"自訂 CSS 已更新.\"],\"clzoNp\":[\"始終顯示深色主題。\"],\"cnGeoo\":[\"刪除\"],\"d3FRkY\":[\"無法複製. 請再試一次.\"],\"d5oGUo\":[\"在 GitHub 建立新儲存庫\"],\"dEgA5A\":[\"取消\"],\"dTXUY+\":[\"確認刪除帳號\"],\"dYKrp3\":[\"從最新中隱藏 (不出現在 Latest 中,但仍可透過固定連結和集合存取的狀態。)\"],\"dk7TCH\":[\"永久刪除所有資料並重設部落格\"],\"drodVV\":[\"目前還沒有選集。請先建立一個,然後將它加入您的導覽。\"],\"dsWkIw\":[\"要與 GitHub 斷開連線嗎? webhook 將會被移除。您的儲存庫內容不會被刪除。\"],\"e/tSI5\":[\"導覽順序已更新。\"],\"eOL7vn\":[\"色彩極少,干擾最小。\"],\"ePK91l\":[\"編輯\"],\"ebQKK7\":[\"網站\"],\"egK+Yy\":[\"供腳本與自動化使用的 Bearer 權杖\"],\"ehj/zN\":[\"重新導向類型\"],\"eneWvv\":[\"草稿\"],\"erTMh7\":[\"上次同步\"],\"f+m8jj\":[\"已複製訂閱網址。\"],\"f8fH8W\":[\"設計\"],\"fKRAwQ\":[\"沙色底,配綠色點綴。\"],\"fWYqkz\":[\"程式碼注入\"],\"fYXQnC\":[\"暖色裡最濃的一檔,溫馨。\"],\"gOWiTY\":[\"載入為中文、日文或韓文內容最佳化的襯線字型。\"],\"gZ5owP\":[\"搜尋儲存庫\"],\"gbqbh6\":[\"可以放心離開此頁面 — 同步會在背景繼續進行。\"],\"gkFvVN\":[\"在 </body> 之前注入。用於聊天小工具和不應阻塞頁面載入的腳本。\"],\"gtQsRO\":[\"建立自訂網址\"],\"hBO/y4\":[\"安全權杖已過期。請重新整理頁面並再試一次。\"],\"hGmyDl\":[\"權杖讓您從腳本, 捷徑和其他工具存取 API 無需登入\"],\"hIHkRy\":[\"已透過 GitHub 應用程式連線\"],\"hdSi1b\":[\"輸入 \",[\"repo\"],\" 以確認\"],\"he3ygx\":[\"複製\"],\"i0qMbr\":[\"首頁\"],\"iEUzMn\":[\"系統\"],\"iSLIjg\":[\"連接\"],\"iVOMRi\":[\"首頁設定已更新。\"],\"icB4Cv\":[\"將連結拖到此處以顯示於「更多」選單下方\"],\"id3vuh\":[\"已設定 Telegram,但無法連線到機器人。請檢查機器人權杖並再試一次。\"],\"ihn4zD\":[\"搜尋…\"],\"iiDXZc\":[\"顯示於所有文章與頁面的底部。\"],\"itS31B\":[\"更暖一些,像略舊的紙。\"],\"iwQZvS\":[\"冷藍灰\"],\"j4VrG6\":[\"下載匯出 ZIP\"],\"j5nQL2\":[\"例如 iOS 捷徑\"],\"jUV7CU\":[\"上傳大頭貼\"],\"jVUmOK\":[\"支援 Markdown\"],\"jdVYS8\":[\"選一個適合你文字的。\"],\"jgBjXJ\":[\"要撤銷這個權杖嗎?任何使用它的腳本都會停止運作。\"],\"jpctdh\":[\"檢視\"],\"k1ifdL\":[\"處理中...\"],\"kLw03Y\":[\"亮紙白\"],\"kMXclu\":[\"下載網站匯出檔案\"],\"kNiQp6\":[\"已釘選\"],\"kRhzWq\":[\"GitHub 同步\"],\"kVQs7s\":[\"細緻的樣式覆寫\"],\"ke1gWS\":[\"自訂 URL\"],\"kfcRb0\":[\"頭像\"],\"kxDZ2i\":[\"此程式碼會在您網站的每個頁面上執行。\"],\"l2Op2p\":[\"查詢參數\"],\"lLW3vJ\":[\"目標 slug\"],\"lV04bQ\":[\"溫暖、有泥土感,但不顯暗。\"],\"lYHJih\":[\"撤銷此工作階段?該裝置將需要重新登入。\"],\"m16xKo\":[\"新增\"],\"mLOk1i\":[\"立即將所有文章推送到 GitHub,而不是等待下一次自動同步。\"],\"mSNmrX\":[\"列出貼文:\"],\"n8+EXe\":[\"新增網站中已經存在的常用入口。\"],\"nG2qTk\":[\"示例連結\"],\"nK07ni\":[\"為您的網站選擇一種排版風格。每個主題會同時改變字體配對與閱讀節奏。\"],\"nbfdhU\":[\"第三方整合\"],\"ntJYyh\":[\"在 \",[\"providerLabel\"],\" 管理網域、方案和計費\"],\"o/vNDE\":[\"讓您覆寫任何主題變數。\"],\"oGC9uP\":[\"owner/repo\"],\"oH2JHg\":[\"我們會預先填入名稱 \",[\"name\"],\"。返回時清單會重新整理。\"],\"oKOOsY\":[\"色彩主題\"],\"oL535e\":[\"尚未同步\"],\"oNA4If\":[\"所有選集已經在您的導覽中。\"],\"oUn9Z7\":[\"近中性的淺灰,配鋼藍點綴。\"],\"ofdy2l\":[\"帶橘調的底色。最暖的一套。\"],\"pZq3aX\":[\"上傳失敗。請再試一次。\"],\"pgTIrt\":[\"選擇要與此網站同步的 GitHub 帳號和儲存庫.\"],\"psoxDF\":[\"該字型主題無法使用. 請選擇其他主題.\"],\"pt4OhQ\":[\"/about 已被佔用。重新命名該項目後再建立 About 頁面。\"],\"pvnfJD\":[\"深色\"],\"q+hNag\":[\"選集\"],\"qdcESc\":[\"建立新儲存庫\"],\"r5EW6f\":[\"此儲存庫已在備份另一個 Jant 網站 (\",[\"host\"],\"). 請選擇其他儲存庫.\"],\"rEspiY\":[\"導覽位置已更新。\"],\"rFmBG3\":[\"色彩主題\"],\"rlonmB\":[\"無法刪除。請稍後再試。\"],\"satWc6\":[\"主要 RSS 訂閱\"],\"sgr2wQ\":[\"選集\"],\"soRdOu\":[\"米白紙底,配深森綠。\"],\"sqxcaY\":[\"建立於 \",[\"date\"]],\"sxkWRg\":[\"進階\"],\"t/YqKh\":[\"移除\"],\"t3hvHq\":[\"立即同步\"],\"tJ4H0O\":[\"您的 Telegram 帳號\"],\"tfDRzk\":[\"儲存\"],\"tvgAq5\":[\"尚未授權任何帳戶\"],\"u1VTd3\":[\"調色盤、表面色調與整體氛圍\"],\"u3wRF+\":[\"已發佈\"],\"u6KOjV\":[\"想要更細緻的控制?\"],\"udPwLB\":[\"頁首\"],\"ui6aMF\":[\"這些裝置目前已登入您的帳號。撤銷任何您不認識的工作階段。\"],\"vBEKwo\":[\"在此管理本網站的活動工作階段。密碼與託管存取由 \",[\"providerLabel\"],\" 管理。\"],\"vRldcl\":[\"字體選擇與閱讀質感\"],\"vSYKYI\":[\"主要訂閱來源\"],\"vTuib7\":[\"這會控制 /feed 回傳的內容。\"],\"vmQmHx\":[\"新增自訂 CSS 以覆寫任何樣式。使用像 [data-page]、[data-post]、[data-format] 這類資料屬性來選取特定元素。\"],\"vzX5FB\":[\"刪除帳號\"],\"w8Rv8T\":[\"標籤為必填\"],\"wL3cK8\":[\"最新\"],\"wW6NCp\":[\"上次錯誤\"],\"wc+17X\":[\"/* 在此放入您的自訂 CSS */\"],\"wuLtXn\":[\"目前沒有任何活動中的工作階段。已登入的裝置會顯示在此處。\"],\"xCWek4\":[\"檔案儲存尚未設定。請檢查您的伺服器設定。\"],\"xHt036\":[\"個人存取權杖\"],\"xKeZ0l\":[\"更偏暖、偏土的色調。\"],\"xYbozN\":[\"柔象牙白\"],\"xqViCq\":[\"暖象牙白\"],\"xxaahd\":[\"想要更冷、更利落的觀感時。\"],\"y28hnO\":[\"文章\"],\"y8Md/V\":[\"語言與時間已更新。\"],\"yNCqOt\":[\"最新 RSS 來源\"],\"yQ3kNF\":[\"請輸入以下短語以確認:\"],\"ydq1k2\":[\"請先選擇一個帳戶\"],\"yjjCV8\":[\"固定的 RSS 檔案網址\"],\"yjkELF\":[\"確認新密碼\"],\"yzF66j\":[\"連結\"],\"z6wakA\":[\"顯示在您的主頁上的簡短介紹。\"],\"zEizrk\":[\"最後使用於 \",[\"date\"]],\"zSURJW\":[\"沒有符合的儲存庫.\"],\"zXH2jX\":[\"語言與時區\"],\"zlcDd2\":[\"刪除此自訂 URL?使用該 URL 的訪客將不會再被重新導向。\"],\"zwBp5t\":[\"私有\"],\"zxRN6H\":[\"頁首連結、首頁動態與更多選單\"]}");
1926
1926
  //#endregion
1927
1927
  //#region src/i18n/i18n.ts
1928
1928
  /**
@@ -3452,10 +3452,10 @@ function normalizeThemeColorForMeta(color) {
3452
3452
  * internal paths (e.g. `/_assets/client-HASH.js`) embedded by the Worker build
3453
3453
  * from the Vite client manifest. Used only in production (IS_VITE_DEV=false).
3454
3454
  */ var IS_VITE_DEV = typeof __JANT_DEV__ !== "undefined" && __JANT_DEV__ === true;
3455
- var CORE_VERSION = "0.6.10-c51915524ad49e56";
3456
- var CLIENT_JS_FILE = "/_assets/client-DYrWuaIk.js";
3457
- var CLIENT_AUTH_JS_FILE = "/_assets/client-auth-B5Re0uCd.js";
3458
- var CLIENT_CSS_FILE = "/_assets/client-xWDl78yi.css";
3455
+ var CORE_VERSION = "0.6.12-460e147d6cdd7bd1";
3456
+ var CLIENT_JS_FILE = "/_assets/client-S1cdvulk.js";
3457
+ var CLIENT_AUTH_JS_FILE = "/_assets/client-auth-YW92ZH7u.js";
3458
+ var CLIENT_CSS_FILE = "/_assets/client-BUxR-E8O.css";
3459
3459
  var CLIENT_CJK_CSS_FILE = "/_assets/client-cjk-B7Z0snDu.css";
3460
3460
  var CLIENT_CJK_TC_CSS_FILE = "/_assets/client-cjk-tc-BesJYrb2.css";
3461
3461
  var CLIENT_CJK_JP_CSS_FILE = "/_assets/client-cjk-jp-DZwrTzQC.css";
@@ -3753,6 +3753,7 @@ var IconSprite = () => {
3753
3753
  const resolvedNoindex = noindex ?? appConfig?.noindex;
3754
3754
  const sitePathPrefix = appConfig?.sitePathPrefix || "";
3755
3755
  const assetBasePath = IS_VITE_DEV ? "/" : appConfig?.assetBasePath || getPublicAssetBasePath(sitePathPrefix);
3756
+ const mediaBase = getPublicUrlForProvider(appConfig?.storageDriver ?? "", appConfig?.r2PublicUrl, appConfig?.s3PublicUrl, appConfig?.localPublicUrl) ?? "";
3756
3757
  const currentUrl = c ? c.get("publicRequestUrl") : void 0;
3757
3758
  const rawPath = c?.req?.path ?? "/";
3758
3759
  const manifestStartPath = sitePathPrefix ? rawPath.replace(new RegExp(`^${sitePathPrefix.replace(/[.*+?^${}()|[\]\\]/g, "\\$&")}`), "") || "/" : rawPath;
@@ -3773,7 +3774,7 @@ var IconSprite = () => {
3773
3774
  const cjkSerifFont = appConfig?.cjkSerifFont ?? "off";
3774
3775
  const cjkStylesheetPath = cjkSerifFont === "zh-Hans" ? IS_VITE_DEV ? assetPath("/src/style-cjk.css") : toPublicAssetPath(CLIENT_CJK_CSS_FILE, assetBasePath) : cjkSerifFont === "zh-Hant" ? IS_VITE_DEV ? assetPath("/src/style-cjk-tc.css") : toPublicAssetPath(CLIENT_CJK_TC_CSS_FILE, assetBasePath) : cjkSerifFont === "ja" ? IS_VITE_DEV ? assetPath("/src/style-cjk-jp.css") : toPublicAssetPath(CLIENT_CJK_JP_CSS_FILE, assetBasePath) : cjkSerifFont === "ko" ? IS_VITE_DEV ? assetPath("/src/style-cjk-kr.css") : toPublicAssetPath(CLIENT_CJK_KR_CSS_FILE, assetBasePath) : null;
3775
3776
  const clientScriptPath = IS_VITE_DEV ? resolvedClientBundle === "full" ? assetPath("/src/client-auth.ts") : assetPath("/src/client.ts") : toPublicAssetPath(resolvedClientBundle === "full" ? CLIENT_AUTH_JS_FILE : CLIENT_JS_FILE, assetBasePath);
3776
- const faviconAssetVersion = resolvedFaviconVersion || "0.6.10-c51915524ad49e56";
3777
+ const faviconAssetVersion = resolvedFaviconVersion || "0.6.12-460e147d6cdd7bd1";
3777
3778
  const resolvedFaviconHref = faviconHref ?? (faviconAssetVersion ? toPublicPath(`/favicon.ico?v=${faviconAssetVersion}`, sitePathPrefix) : toPublicPath("/favicon.ico", sitePathPrefix));
3778
3779
  const resolvedAppleTouchHref = appleTouchHref ?? (faviconAssetVersion ? toPublicPath(`/apple-touch-icon.png?v=${faviconAssetVersion}`, sitePathPrefix) : toPublicPath("/apple-touch-icon.png", sitePathPrefix));
3779
3780
  const socialImageHref = resolvedSocialImagePath ? toAbsoluteAssetUrl(resolvedSocialImagePath, appConfig?.siteUrl || "", sitePathPrefix) : "";
@@ -3801,6 +3802,7 @@ var IconSprite = () => {
3801
3802
  "data-theme-mode": themeMode,
3802
3803
  "data-site-path-prefix": sitePathPrefix,
3803
3804
  "data-asset-base-path": assetBasePath,
3805
+ "data-media-base": mediaBase,
3804
3806
  children: [/* @__PURE__ */ jsxDEV$1("head", { children: [
3805
3807
  /* @__PURE__ */ jsxDEV$1("meta", { charset: "UTF-8" }),
3806
3808
  /* @__PURE__ */ jsxDEV$1("meta", {
@@ -7268,6 +7270,8 @@ var getCollectionMutationLabels = (i18n) => ({
7268
7270
  const { i18n } = useLingui();
7269
7271
  const labels = JSON.stringify({
7270
7272
  cancel: i18n._({ id: "dEgA5A" }),
7273
+ imageNotRehosted: i18n._({ id: "Y7WAtz" }),
7274
+ imagesNotRehosted: i18n._({ id: "nJ4U1U" }),
7271
7275
  note: i18n._({ id: "KiJn9B" }),
7272
7276
  link: i18n._({ id: "yzF66j" }),
7273
7277
  quote: i18n._({ id: "ZhhOwV" }),
@@ -8674,6 +8678,72 @@ var INLINE_SIGNATURE_MIME_TYPES = new Set([
8674
8678
  */ function isImageMimeType(mimeType) {
8675
8679
  return mimeType.startsWith("image/");
8676
8680
  }
8681
+ /** Image MIME types accepted by the remote-image sideload path. */ var SIDELOAD_IMAGE_MIME_TYPES = new Set(IMAGE_MIME_TYPES);
8682
+ /** Map of sideload-accepted image MIME types to their file extensions. */ var IMAGE_MIME_EXTENSIONS = {
8683
+ "image/jpeg": "jpg",
8684
+ "image/png": "png",
8685
+ "image/gif": "gif",
8686
+ "image/webp": "webp",
8687
+ "image/svg+xml": "svg",
8688
+ "image/avif": "avif",
8689
+ "image/bmp": "bmp",
8690
+ "image/x-icon": "ico"
8691
+ };
8692
+ /**
8693
+ * Whether a MIME type may be rehosted via remote-image sideload.
8694
+ *
8695
+ * Unlike {@link getStoredUploadPolicy} (which only allows webp/png/jpeg because
8696
+ * the normal upload path re-encodes everything to WebP client-side), the
8697
+ * sideload path stores the original remote bytes, so it accepts the full set of
8698
+ * image formats Jant can display.
8699
+ *
8700
+ * @param contentType - The MIME type to check
8701
+ * @returns Whether the type is an accepted sideload image
8702
+ * @example
8703
+ * ```ts
8704
+ * isAllowedSideloadImageType("image/gif"); // true
8705
+ * isAllowedSideloadImageType("text/html"); // false
8706
+ * ```
8707
+ */ function isAllowedSideloadImageType(contentType) {
8708
+ return SIDELOAD_IMAGE_MIME_TYPES.has(contentType);
8709
+ }
8710
+ /**
8711
+ * Returns the file extension for a sideload-accepted image MIME type.
8712
+ *
8713
+ * @param contentType - The image MIME type
8714
+ * @returns Extension without a dot, or null if the type isn't sideloadable
8715
+ * @example
8716
+ * ```ts
8717
+ * imageExtensionForMimeType("image/jpeg"); // "jpg"
8718
+ * ```
8719
+ */ function imageExtensionForMimeType(contentType) {
8720
+ return IMAGE_MIME_EXTENSIONS[contentType] ?? null;
8721
+ }
8722
+ /**
8723
+ * Identify an image format from its leading bytes (magic numbers), so a remote
8724
+ * sideload can trust the actual content rather than the server's content-type
8725
+ * header. Recognizes every {@link isAllowedSideloadImageType} format.
8726
+ *
8727
+ * @param bytes - The leading bytes of the file (≥ ~256 bytes recommended)
8728
+ * @returns The detected image MIME type, or null if unrecognized
8729
+ * @example
8730
+ * ```ts
8731
+ * sniffImageMimeType(pngBytes); // "image/png"
8732
+ * ```
8733
+ */ function sniffImageMimeType(bytes) {
8734
+ if (bytes.length >= 3 && bytes[0] === 255 && bytes[1] === 216 && bytes[2] === 255) return "image/jpeg";
8735
+ if (bytes.length >= 8 && bytes[0] === 137 && readAscii(bytes, 1, 3) === "PNG") return "image/png";
8736
+ if (bytes.length >= 6 && /^GIF8[79]a$/.test(readAscii(bytes, 0, 6))) return "image/gif";
8737
+ if (bytes.length >= 12 && readAscii(bytes, 0, 4) === "RIFF" && readAscii(bytes, 8, 4) === "WEBP") return "image/webp";
8738
+ if (bytes.length >= 12 && readAscii(bytes, 4, 4) === "ftyp") {
8739
+ const brand = readAscii(bytes, 8, 4);
8740
+ if (brand === "avif" || brand === "avis") return "image/avif";
8741
+ }
8742
+ if (bytes.length >= 2 && bytes[0] === 66 && bytes[1] === 77) return "image/bmp";
8743
+ if (bytes.length >= 4 && bytes[0] === 0 && bytes[1] === 0 && bytes[2] === 1 && bytes[3] === 0) return "image/x-icon";
8744
+ if (new TextDecoder().decode(bytes.subarray(0, 1024)).toLowerCase().includes("<svg")) return "image/svg+xml";
8745
+ return null;
8746
+ }
8677
8747
  /**
8678
8748
  * Validates an uploaded file's type and size.
8679
8749
  *
@@ -10860,8 +10930,9 @@ function resolvePostSocialImage(postView, threadPostViews) {
10860
10930
  if (found) return found;
10861
10931
  }
10862
10932
  }
10863
- function canViewPost(post, isAuthenticated) {
10864
- if (post.status !== "published") return false;
10933
+ function canViewPost(post, options = {}) {
10934
+ const isAuthenticated = options.isAuthenticated ?? false;
10935
+ if (post.status !== "published") return Boolean(post.status === "draft" && isAuthenticated && options.allowDraft);
10865
10936
  if (post.visibility === "private" && !isAuthenticated) return false;
10866
10937
  return true;
10867
10938
  }
@@ -10874,8 +10945,7 @@ function canViewPost(post, isAuthenticated) {
10874
10945
  * @returns Render-ready post card view, or null when it should not be shown
10875
10946
  */ async function assemblePostCardView(c, postId, options) {
10876
10947
  const post = await c.var.services.posts.getById(postId);
10877
- const isAuthenticated = options?.isAuthenticated ?? false;
10878
- if (!post || !canViewPost(post, isAuthenticated)) return null;
10948
+ if (!post || !canViewPost(post, options)) return null;
10879
10949
  const mediaCtx = createMediaContext(c.var.appConfig);
10880
10950
  const [rawMediaMap, collectionsMap, lastPostMap, aliasesMap] = await Promise.all([
10881
10951
  c.var.services.media.getByPostIds([post.id]),
@@ -10898,8 +10968,7 @@ function canViewPost(post, isAuthenticated) {
10898
10968
  * @returns Render-ready permalink view data, or null when it should not be shown
10899
10969
  */ async function assemblePostPageDisplay(c, postOrId, options) {
10900
10970
  const post = typeof postOrId === "string" ? await c.var.services.posts.getById(postOrId) : postOrId;
10901
- const isAuthenticated = options?.isAuthenticated ?? false;
10902
- if (!post || !canViewPost(post, isAuthenticated)) return null;
10971
+ if (!post || !canViewPost(post, options)) return null;
10903
10972
  const mediaCtx = createMediaContext(c.var.appConfig);
10904
10973
  const threadPosts = (await c.var.services.posts.getThread(post.threadId)).filter((threadPost) => threadPost.status === "published");
10905
10974
  const allPostIds = threadPosts.length > 1 ? threadPosts.map((p) => p.id) : [post.id];
@@ -10930,6 +10999,90 @@ function canViewPost(post, isAuthenticated) {
10930
10999
  };
10931
11000
  }
10932
11001
  //#endregion
11002
+ //#region src/services/about-page.ts
11003
+ /**
11004
+ * About Page Service
11005
+ *
11006
+ * Treats `/about` as the standard site About page. The page itself remains a
11007
+ * normal post; this service reads that convention and can create the page when
11008
+ * the author follows the settings prompt.
11009
+ */ var ABOUT_PAGE_PATH = "/about";
11010
+ var ABOUT_PAGE_SLUG = "about";
11011
+ function createAboutPageService(deps) {
11012
+ async function readStatus() {
11013
+ const resolved = await deps.paths.resolve(ABOUT_PAGE_SLUG);
11014
+ const base = { path: ABOUT_PAGE_PATH };
11015
+ if (!resolved) return {
11016
+ ...base,
11017
+ state: "missing"
11018
+ };
11019
+ if (resolved.targetType === "post" && resolved.postId) {
11020
+ const post = await deps.posts.getById(resolved.postId);
11021
+ if (!post) return {
11022
+ ...base,
11023
+ state: "conflict",
11024
+ conflict: {
11025
+ targetType: "post",
11026
+ id: resolved.postId,
11027
+ title: null
11028
+ }
11029
+ };
11030
+ return {
11031
+ ...base,
11032
+ state: "ready",
11033
+ post: {
11034
+ id: post.id,
11035
+ title: post.title,
11036
+ status: post.status,
11037
+ visibility: post.visibility
11038
+ }
11039
+ };
11040
+ }
11041
+ if (resolved.targetType === "collection" && resolved.collectionId) {
11042
+ const collection = await deps.collections.getById(resolved.collectionId);
11043
+ return {
11044
+ ...base,
11045
+ state: "conflict",
11046
+ conflict: {
11047
+ targetType: "collection",
11048
+ id: resolved.collectionId,
11049
+ title: collection?.title ?? null
11050
+ }
11051
+ };
11052
+ }
11053
+ return {
11054
+ ...base,
11055
+ state: "conflict",
11056
+ conflict: {
11057
+ targetType: resolved.targetType,
11058
+ id: null,
11059
+ title: null
11060
+ }
11061
+ };
11062
+ }
11063
+ return {
11064
+ getStatus: readStatus,
11065
+ async ensurePage() {
11066
+ const status = await readStatus();
11067
+ if (status.state === "ready") return status.post;
11068
+ if (status.state === "conflict") throw new ValidationError("/about is already used. Rename that item before creating an About page.");
11069
+ const post = await deps.posts.create({
11070
+ format: "note",
11071
+ title: "About",
11072
+ slug: ABOUT_PAGE_SLUG,
11073
+ status: "published",
11074
+ visibility: "latest_hidden"
11075
+ });
11076
+ return {
11077
+ id: post.id,
11078
+ title: post.title,
11079
+ status: post.status,
11080
+ visibility: post.visibility
11081
+ };
11082
+ }
11083
+ };
11084
+ }
11085
+ //#endregion
10933
11086
  //#region src/db/schema.ts
10934
11087
  /**
10935
11088
  * Drizzle Schema
@@ -12658,6 +12811,369 @@ function createLocalDriver(config) {
12658
12811
  return createR2Driver(env.R2);
12659
12812
  }
12660
12813
  //#endregion
12814
+ //#region src/lib/image-dimensions.ts
12815
+ /**
12816
+ * Parse intrinsic pixel dimensions from a raw image header buffer.
12817
+ *
12818
+ * Used as a server-side fallback when an upload client does not provide
12819
+ * `width` / `height`. Only the file header is needed — typically the first
12820
+ * few hundred bytes for PNG/JPEG/GIF/WebP, and up to ~64 KB for AVIF where
12821
+ * the `ispe` property can be nested inside a larger `meta` box.
12822
+ *
12823
+ * Returns `null` when the bytes are too short, the format is unsupported,
12824
+ * or the header is malformed.
12825
+ *
12826
+ * @param mimeType MIME type the upload was declared as (e.g. `image/png`).
12827
+ * @param bytes Bytes from the start of the file. Pass at least
12828
+ * {@link IMAGE_DIMENSION_PEEK_BYTES} for AVIF reliability; smaller is fine
12829
+ * for other formats.
12830
+ */ function parseImageDimensions(mimeType, bytes) {
12831
+ const view = new DataView(bytes.buffer, bytes.byteOffset, bytes.byteLength);
12832
+ switch (mimeType) {
12833
+ case "image/png": return parsePng(view);
12834
+ case "image/jpeg":
12835
+ case "image/jpg": return parseJpeg(view);
12836
+ case "image/gif": return parseGif(view);
12837
+ case "image/webp": return parseWebp(view);
12838
+ case "image/avif": return parseIsoBmff(view, new Set(["avif", "avis"]));
12839
+ default: return null;
12840
+ }
12841
+ }
12842
+ /**
12843
+ * Recommended number of header bytes to feed into {@link parseImageDimensions}.
12844
+ *
12845
+ * Covers AVIF files with EXIF/ICC properties placed before the `ispe` box.
12846
+ * Smaller formats only inspect the first ~30 bytes.
12847
+ */ var IMAGE_DIMENSION_PEEK_BYTES = 64 * 1024;
12848
+ function readChars(view, offset, length) {
12849
+ let out = "";
12850
+ for (let i = 0; i < length; i += 1) out += String.fromCharCode(view.getUint8(offset + i));
12851
+ return out;
12852
+ }
12853
+ function parsePng(view) {
12854
+ if (view.byteLength < 24) return null;
12855
+ const signature = [
12856
+ 137,
12857
+ 80,
12858
+ 78,
12859
+ 71,
12860
+ 13,
12861
+ 10,
12862
+ 26,
12863
+ 10
12864
+ ];
12865
+ for (let i = 0; i < 8; i += 1) if (view.getUint8(i) !== signature[i]) return null;
12866
+ const width = view.getUint32(16, false);
12867
+ const height = view.getUint32(20, false);
12868
+ if (width === 0 || height === 0) return null;
12869
+ return {
12870
+ width,
12871
+ height
12872
+ };
12873
+ }
12874
+ function parseGif(view) {
12875
+ if (view.byteLength < 10) return null;
12876
+ if (view.getUint8(0) !== 71 || view.getUint8(1) !== 73 || view.getUint8(2) !== 70) return null;
12877
+ const width = view.getUint16(6, true);
12878
+ const height = view.getUint16(8, true);
12879
+ if (width === 0 || height === 0) return null;
12880
+ return {
12881
+ width,
12882
+ height
12883
+ };
12884
+ }
12885
+ function parseWebp(view) {
12886
+ if (view.byteLength < 16) return null;
12887
+ if (readChars(view, 0, 4) !== "RIFF") return null;
12888
+ if (readChars(view, 8, 4) !== "WEBP") return null;
12889
+ const chunk = readChars(view, 12, 4);
12890
+ if (chunk === "VP8 ") {
12891
+ if (view.byteLength < 30) return null;
12892
+ if (view.getUint8(23) !== 157 || view.getUint8(24) !== 1 || view.getUint8(25) !== 42) return null;
12893
+ const width = view.getUint16(26, true) & 16383;
12894
+ const height = view.getUint16(28, true) & 16383;
12895
+ if (width === 0 || height === 0) return null;
12896
+ return {
12897
+ width,
12898
+ height
12899
+ };
12900
+ }
12901
+ if (chunk === "VP8L") {
12902
+ if (view.byteLength < 25) return null;
12903
+ if (view.getUint8(20) !== 47) return null;
12904
+ const b0 = view.getUint8(21);
12905
+ const b1 = view.getUint8(22);
12906
+ const b2 = view.getUint8(23);
12907
+ const b3 = view.getUint8(24);
12908
+ return {
12909
+ width: 1 + ((b1 & 63) << 8 | b0),
12910
+ height: 1 + ((b3 & 15) << 10 | b2 << 2 | (b1 & 192) >> 6)
12911
+ };
12912
+ }
12913
+ if (chunk === "VP8X") {
12914
+ if (view.byteLength < 30) return null;
12915
+ return {
12916
+ width: 1 + (view.getUint8(24) | view.getUint8(25) << 8 | view.getUint8(26) << 16),
12917
+ height: 1 + (view.getUint8(27) | view.getUint8(28) << 8 | view.getUint8(29) << 16)
12918
+ };
12919
+ }
12920
+ return null;
12921
+ }
12922
+ function parseJpeg(view) {
12923
+ const length = view.byteLength;
12924
+ if (length < 4) return null;
12925
+ if (view.getUint8(0) !== 255 || view.getUint8(1) !== 216) return null;
12926
+ let i = 2;
12927
+ while (i < length) {
12928
+ while (i < length && view.getUint8(i) !== 255) i += 1;
12929
+ while (i < length && view.getUint8(i) === 255) i += 1;
12930
+ if (i >= length) return null;
12931
+ const marker = view.getUint8(i);
12932
+ i += 1;
12933
+ if (marker === 0 || marker === 1) continue;
12934
+ if (marker >= 208 && marker <= 217) continue;
12935
+ if (i + 2 > length) return null;
12936
+ const segLen = view.getUint16(i, false);
12937
+ if (segLen < 2) return null;
12938
+ if (marker >= 192 && marker <= 195 || marker >= 197 && marker <= 199 || marker >= 201 && marker <= 203 || marker >= 205 && marker <= 207) {
12939
+ if (i + 7 > length) return null;
12940
+ const height = view.getUint16(i + 3, false);
12941
+ const width = view.getUint16(i + 5, false);
12942
+ if (width === 0 || height === 0) return null;
12943
+ return {
12944
+ width,
12945
+ height
12946
+ };
12947
+ }
12948
+ i += segLen;
12949
+ }
12950
+ return null;
12951
+ }
12952
+ function readBox(view, pos) {
12953
+ if (pos + 8 > view.byteLength) return null;
12954
+ let size = view.getUint32(pos, false);
12955
+ const type = readChars(view, pos + 4, 4);
12956
+ if (size === 1) return null;
12957
+ if (size === 0) size = view.byteLength - pos;
12958
+ if (size < 8) return null;
12959
+ return {
12960
+ size,
12961
+ type,
12962
+ payloadOffset: pos + 8,
12963
+ end: pos + size
12964
+ };
12965
+ }
12966
+ function findChild(view, start, end, type) {
12967
+ let pos = start;
12968
+ while (pos < end) {
12969
+ const box = readBox(view, pos);
12970
+ if (!box) return null;
12971
+ if (box.type === type) return box;
12972
+ pos = box.end;
12973
+ }
12974
+ return null;
12975
+ }
12976
+ function parseIsoBmff(view, acceptedBrands) {
12977
+ const ftyp = readBox(view, 0);
12978
+ if (!ftyp || ftyp.type !== "ftyp") return null;
12979
+ let isAccepted = false;
12980
+ if (ftyp.payloadOffset + 4 <= ftyp.end) isAccepted = acceptedBrands.has(readChars(view, ftyp.payloadOffset, 4));
12981
+ for (let q = ftyp.payloadOffset + 8; !isAccepted && q + 4 <= ftyp.end; q += 4) if (acceptedBrands.has(readChars(view, q, 4))) isAccepted = true;
12982
+ if (!isAccepted) return null;
12983
+ const meta = findChild(view, ftyp.end, view.byteLength, "meta");
12984
+ if (!meta) return null;
12985
+ const iprp = findChild(view, meta.payloadOffset + 4, meta.end, "iprp");
12986
+ if (!iprp) return null;
12987
+ const ipco = findChild(view, iprp.payloadOffset, iprp.end, "ipco");
12988
+ if (!ipco) return null;
12989
+ const ispe = findChild(view, ipco.payloadOffset, ipco.end, "ispe");
12990
+ if (!ispe) return null;
12991
+ const widthOffset = ispe.payloadOffset + 4;
12992
+ if (widthOffset + 8 > view.byteLength) return null;
12993
+ const width = view.getUint32(widthOffset, false);
12994
+ const height = view.getUint32(widthOffset + 4, false);
12995
+ if (width === 0 || height === 0) return null;
12996
+ return {
12997
+ width,
12998
+ height
12999
+ };
13000
+ }
13001
+ //#endregion
13002
+ //#region src/lib/url-fetch.ts
13003
+ /**
13004
+ * Safe remote URL fetching for server-side image sideloading.
13005
+ *
13006
+ * When an author pastes an article from another site, its `<img>` tags point at
13007
+ * remote URLs. To rehost those images into the site's own storage the server
13008
+ * must fetch the bytes itself (a browser `fetch` of a third-party image is
13009
+ * blocked by CORS for most hosts). Because the URL comes from pasted HTML it is
13010
+ * attacker-influenced, so every fetch passes through an SSRF guard and a bounded
13011
+ * reader that caps size and time.
13012
+ *
13013
+ * Note: DNS is not resolvable from a Cloudflare Worker, so the IP-literal checks
13014
+ * here are defense-in-depth for self-hosted (Node) deployments and for URLs that
13015
+ * embed a literal address. They are not a substitute for network-level egress
13016
+ * controls.
13017
+ */
13018
+ /** A browser-like UA — many CDNs serving article images block unknown bots. */ var FETCH_USER_AGENT = "Mozilla/5.0 (compatible; Jant image sideloader) AppleWebKit/537.36";
13019
+ /**
13020
+ * Validate that a string is a public http(s) URL safe to fetch server-side.
13021
+ *
13022
+ * Throws {@link ValidationError} for non-http(s) protocols, embedded
13023
+ * credentials, localhost names, and private/loopback/link-local/ULA/CGNAT IP
13024
+ * literals (including the `169.254.169.254` cloud-metadata address).
13025
+ *
13026
+ * @param raw - The candidate URL string
13027
+ * @returns The parsed {@link URL}
13028
+ * @example
13029
+ * ```ts
13030
+ * const url = assertPublicHttpUrl("https://example.com/photo.jpg");
13031
+ * ```
13032
+ */ function assertPublicHttpUrl(raw) {
13033
+ let url;
13034
+ try {
13035
+ url = new URL(raw);
13036
+ } catch {
13037
+ throw new ValidationError("That doesn't look like a valid image URL.");
13038
+ }
13039
+ if (url.protocol !== "http:" && url.protocol !== "https:") throw new ValidationError("Only http and https image URLs can be fetched.");
13040
+ if (url.username || url.password) throw new ValidationError("Image URLs can't include credentials.");
13041
+ const host = url.hostname.toLowerCase();
13042
+ if (host === "localhost" || host.endsWith(".localhost") || host === "0.0.0.0" || isPrivateIpv4(host) || isPrivateIpv6(host)) throw new ValidationError("That image URL points to a private address.");
13043
+ return url;
13044
+ }
13045
+ /**
13046
+ * Fetch a remote image with an SSRF-checked redirect chain, a size cap, and a
13047
+ * timeout. Reads the body in chunks and aborts the moment it exceeds `maxBytes`
13048
+ * so an untrusted host can't exhaust memory.
13049
+ *
13050
+ * @param startUrl - A URL already validated by {@link assertPublicHttpUrl}
13051
+ * @param options - Size cap, timeout, and redirect budget
13052
+ * @returns The raw bytes and the response content-type
13053
+ * @example
13054
+ * ```ts
13055
+ * const { bytes, contentType } = await fetchImageBytes(url, {
13056
+ * maxBytes: 25 * 1024 * 1024,
13057
+ * timeoutMs: 15000,
13058
+ * });
13059
+ * ```
13060
+ */ async function fetchImageBytes(startUrl, options) {
13061
+ const maxRedirects = options.maxRedirects ?? 3;
13062
+ const controller = new AbortController();
13063
+ const timer = setTimeout(() => controller.abort(), options.timeoutMs);
13064
+ try {
13065
+ let url = startUrl;
13066
+ let response = null;
13067
+ for (let hop = 0; hop <= maxRedirects; hop++) {
13068
+ response = await fetch(url.toString(), {
13069
+ method: "GET",
13070
+ redirect: "manual",
13071
+ signal: controller.signal,
13072
+ headers: {
13073
+ Accept: "image/*,*/*;q=0.8",
13074
+ "User-Agent": FETCH_USER_AGENT,
13075
+ Referer: `${url.origin}/`
13076
+ }
13077
+ }).catch((error) => {
13078
+ if (controller.signal.aborted) throw new ValidationError("Timed out fetching the image.");
13079
+ throw new ValidationError(error instanceof Error ? `Couldn't fetch the image: ${error.message}` : "Couldn't fetch the image.");
13080
+ });
13081
+ if (response.status >= 300 && response.status < 400) {
13082
+ const location = response.headers.get("location");
13083
+ if (!location) break;
13084
+ if (hop === maxRedirects) throw new ValidationError("Too many redirects fetching the image.");
13085
+ url = assertPublicHttpUrl(new URL(location, url).toString());
13086
+ continue;
13087
+ }
13088
+ break;
13089
+ }
13090
+ if (!response) throw new ValidationError("Couldn't fetch the image.");
13091
+ if (!response.ok) throw new ValidationError(`Couldn't fetch the image (HTTP ${response.status}).`);
13092
+ const declared = Number(response.headers.get("content-length"));
13093
+ if (Number.isFinite(declared) && declared > options.maxBytes) throw new ValidationError("That image is too large.");
13094
+ const contentType = normalizeContentType(response.headers.get("content-type"));
13095
+ return {
13096
+ bytes: await readBounded(response, options.maxBytes),
13097
+ contentType
13098
+ };
13099
+ } finally {
13100
+ clearTimeout(timer);
13101
+ }
13102
+ }
13103
+ async function readBounded(response, maxBytes) {
13104
+ const body = response.body;
13105
+ if (!body) {
13106
+ const buffer = new Uint8Array(await response.arrayBuffer());
13107
+ if (buffer.byteLength > maxBytes) throw new ValidationError("That image is too large.");
13108
+ return buffer;
13109
+ }
13110
+ const reader = body.getReader();
13111
+ const chunks = [];
13112
+ let total = 0;
13113
+ for (;;) {
13114
+ const { done, value } = await reader.read();
13115
+ if (done) break;
13116
+ if (!value) continue;
13117
+ total += value.byteLength;
13118
+ if (total > maxBytes) {
13119
+ await reader.cancel().catch(() => {});
13120
+ throw new ValidationError("That image is too large.");
13121
+ }
13122
+ chunks.push(value);
13123
+ }
13124
+ const out = new Uint8Array(total);
13125
+ let offset = 0;
13126
+ for (const chunk of chunks) {
13127
+ out.set(chunk, offset);
13128
+ offset += chunk.byteLength;
13129
+ }
13130
+ return out;
13131
+ }
13132
+ function normalizeContentType(raw) {
13133
+ if (!raw) return null;
13134
+ return raw.split(";")[0]?.trim().toLowerCase() || null;
13135
+ }
13136
+ /**
13137
+ * True when a canonicalized IPv4 dotted-quad host is in a private, loopback,
13138
+ * link-local, CGNAT, or otherwise non-public range. The WHATWG URL parser
13139
+ * already normalizes decimal/octal/hex IPv4 forms to dotted-quad, so checking
13140
+ * `url.hostname` is sufficient.
13141
+ */ function isPrivateIpv4(host) {
13142
+ const match = host.match(/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/);
13143
+ if (!match) return false;
13144
+ const octets = match.slice(1, 5).map(Number);
13145
+ if (octets.some((part) => part > 255)) return true;
13146
+ const a = octets[0] ?? 0;
13147
+ const b = octets[1] ?? 0;
13148
+ if (a === 0) return true;
13149
+ if (a === 10) return true;
13150
+ if (a === 127) return true;
13151
+ if (a === 169 && b === 254) return true;
13152
+ if (a === 172 && b >= 16 && b <= 31) return true;
13153
+ if (a === 192 && b === 168) return true;
13154
+ if (a === 100 && b >= 64 && b <= 127) return true;
13155
+ if (a === 255 && b === 255) return true;
13156
+ return false;
13157
+ }
13158
+ /** True when an IPv6 host (bracketed or bare) is loopback/link-local/ULA/mapped-private. */ function isPrivateIpv6(host) {
13159
+ let inner = host;
13160
+ if (inner.startsWith("[") && inner.endsWith("]")) inner = inner.slice(1, -1);
13161
+ if (!inner.includes(":")) return false;
13162
+ const lower = inner.toLowerCase();
13163
+ if (lower === "::" || lower === "::1") return true;
13164
+ const dotted = lower.match(/^::ffff:(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})$/);
13165
+ if (dotted?.[1]) return isPrivateIpv4(dotted[1]);
13166
+ const hex = lower.match(/^::ffff:([0-9a-f]{1,4}):([0-9a-f]{1,4})$/);
13167
+ if (hex) {
13168
+ const hi = parseInt(hex[1] ?? "0", 16);
13169
+ const lo = parseInt(hex[2] ?? "0", 16);
13170
+ return isPrivateIpv4(`${hi >> 8 & 255}.${hi & 255}.${lo >> 8 & 255}.${lo & 255}`);
13171
+ }
13172
+ if (/^fe[89ab]/.test(lower)) return true;
13173
+ if (/^f[cd]/.test(lower)) return true;
13174
+ return false;
13175
+ }
13176
+ //#endregion
12661
13177
  //#region src/services/media.ts
12662
13178
  /**
12663
13179
  * Media Service
@@ -12665,6 +13181,24 @@ function createLocalDriver(config) {
12665
13181
  * Handles media upload and management with pluggable storage backends.
12666
13182
  */ var DEFAULT_MEDIA_POSITION = "a0";
12667
13183
  /**
13184
+ * Derive a display filename from a remote image URL, falling back to
13185
+ * `image.<ext>` when the path has no usable basename.
13186
+ *
13187
+ * @param url - The remote image URL
13188
+ * @param ext - Extension to use when the URL path lacks one
13189
+ * @returns A sanitized original filename
13190
+ */ function remoteImageName(url, ext) {
13191
+ let base;
13192
+ try {
13193
+ base = decodeURIComponent(url.pathname.split("/").pop() ?? "");
13194
+ } catch {
13195
+ base = url.pathname.split("/").pop() ?? "";
13196
+ }
13197
+ base = base.trim().replace(/[\r\n"\\]+/g, "");
13198
+ if (!base) return `image.${ext}`;
13199
+ return base.includes(".") ? base : `${base}.${ext}`;
13200
+ }
13201
+ /**
12668
13202
  * Recycle-window length for deleted media storage objects. On delete we
12669
13203
  * hard-remove the DB row but defer deleting the underlying storage object
12670
13204
  * until this long afterwards (recorded in `storage_purge`), so an accidental
@@ -12978,6 +13512,39 @@ function createMediaService(db, siteId, databaseSchema = sqliteSchemaBundle, dat
12978
13512
  updatedAt: timestamp
12979
13513
  }).returning())[0]);
12980
13514
  },
13515
+ async ingestFromUrl(input, deps) {
13516
+ const url = assertPublicHttpUrl(input.url);
13517
+ const { bytes } = await fetchImageBytes(url, {
13518
+ maxBytes: deps.maxFileSizeMB * 1024 * 1024,
13519
+ timeoutMs: 15e3
13520
+ });
13521
+ const sniffed = sniffImageMimeType(bytes);
13522
+ const mimeType = sniffed && isAllowedSideloadImageType(sniffed) ? sniffed : null;
13523
+ if (!mimeType) throw new ValidationError("That URL didn't return a supported image. Try a different image.");
13524
+ await assertCanWriteBytes(bytes.byteLength);
13525
+ const dimensions = parseImageDimensions(mimeType, bytes.subarray(0, IMAGE_DIMENSION_PEEK_BYTES));
13526
+ const ext = imageExtensionForMimeType(mimeType) ?? "bin";
13527
+ const { id, filename, storageKey } = generateStorageKey(siteId, `image.${ext}`);
13528
+ const originalName = remoteImageName(url, ext);
13529
+ await deps.storage.put(storageKey, bytes, {
13530
+ contentType: mimeType,
13531
+ contentDisposition: mimeType === "image/svg+xml" ? "attachment" : "inline",
13532
+ cacheControl: "public, max-age=31536000, immutable"
13533
+ });
13534
+ return this.create({
13535
+ id,
13536
+ filename,
13537
+ originalName,
13538
+ mimeType,
13539
+ size: bytes.byteLength,
13540
+ storageKey,
13541
+ provider: deps.storageDriver,
13542
+ mediaKind: "image",
13543
+ width: dimensions?.width,
13544
+ height: dimensions?.height,
13545
+ alt: input.alt?.trim() || void 0
13546
+ });
13547
+ },
12981
13548
  async createTextAttachment(data, deps) {
12982
13549
  if (!deps.storage) throw new ConfigurationError("File storage isn't set up. Check your server config.");
12983
13550
  if (data.contentFormat !== "markdown") throw new ValidationError("Unsupported text attachment format");
@@ -14005,6 +14572,23 @@ function getAtomTitle(post) {
14005
14572
  if (post.format === "quote") return "";
14006
14573
  return post.title || "";
14007
14574
  }
14575
+ function renderLinkedText(text, href) {
14576
+ const label = escapeXml(text);
14577
+ return href ? `<a href="${escapeXml(href)}">${label}</a>` : label;
14578
+ }
14579
+ function renderInlinePostHeader(post, permalinkUrl) {
14580
+ if (post.format === "quote") return [];
14581
+ const parts = [];
14582
+ if (post.format === "link") {
14583
+ const linkUrl = post.url || "";
14584
+ const domain = linkUrl ? extractDisplayDomain(linkUrl) || linkUrl : "";
14585
+ if (domain) parts.push(`<p>${renderLinkedText(domain, linkUrl)}</p>`);
14586
+ if (post.title) parts.push(`<h2>${renderLinkedText(post.title, linkUrl || permalinkUrl)}</h2>`);
14587
+ return parts;
14588
+ }
14589
+ if (post.title) parts.push(`<h2>${renderLinkedText(post.title, permalinkUrl)}</h2>`);
14590
+ return parts;
14591
+ }
14008
14592
  /**
14009
14593
  * Render a star rating as HTML for feed content.
14010
14594
  */ function renderRatingHtml(rating) {
@@ -14094,8 +14678,10 @@ function getMediaMeta(item) {
14094
14678
  *
14095
14679
  * @param post - Post view data
14096
14680
  * @param permalinkUrl - Absolute permalink URL back to the blog post
14097
- */ function buildSinglePostContent(post, permalinkUrl) {
14681
+ * @param options - Rendering options for top-level versus inline posts
14682
+ */ function buildSinglePostContent(post, permalinkUrl, options = {}) {
14098
14683
  const parts = [];
14684
+ if (options.inline) parts.push(...renderInlinePostHeader(post, permalinkUrl));
14099
14685
  if (post.format === "quote" && post.quoteText) {
14100
14686
  const sourceName = post.title || "";
14101
14687
  const sourceUrl = post.url || "";
@@ -14130,10 +14716,15 @@ function getMediaMeta(item) {
14130
14716
  const replyPermalink = new URL(reply.permalink, siteUrl).toString();
14131
14717
  parts.push("<hr/>");
14132
14718
  parts.push(`<p><small><time datetime="${escapeXml(reply.publishedAt)}">${escapeXml(reply.publishedAtFormatted)}</time></small></p>`);
14133
- parts.push(buildSinglePostContent(reply, replyPermalink));
14719
+ parts.push(buildSinglePostContent(reply, replyPermalink, { inline: true }));
14134
14720
  }
14135
14721
  return parts.join("\n");
14136
14722
  }
14723
+ function getEntryMedia(post) {
14724
+ const media = [...post.media];
14725
+ for (const reply of post.threadReplies ?? []) media.push(...reply.media);
14726
+ return media;
14727
+ }
14137
14728
  /**
14138
14729
  * Default Atom feed renderer.
14139
14730
  *
@@ -14152,7 +14743,7 @@ function getMediaMeta(item) {
14152
14743
  const publishedAt = post.feedPublishedAt ?? post.publishedAt;
14153
14744
  const updatedAt = post.feedUpdatedAt ?? post.updatedAt;
14154
14745
  const relatedLink = alternateUrl ? `\n <link href="${escapedPermalink}" rel="related"/>` : "";
14155
- const enclosureLinks = post.media.map((m) => {
14746
+ const enclosureLinks = getEntryMedia(post).map((m) => {
14156
14747
  const lengthAttr = m.size != null && m.size > 0 ? ` length="${m.size}"` : "";
14157
14748
  const titleAttr = m.originalName ? ` title="${escapeXml(m.originalName)}"` : "";
14158
14749
  return `\n <link rel="enclosure" type="${escapeXml(m.mimeType)}" href="${escapeXml(m.url)}"${lengthAttr}${titleAttr}/>`;
@@ -15389,9 +15980,15 @@ async function renderPostWithTextPreview(c, post, autoOpen) {
15389
15980
  ] })
15390
15981
  });
15391
15982
  }
15392
- async function renderPost(c, post) {
15983
+ function canRenderDraftAboutEditor(c, fullPath, post) {
15984
+ return post.status === "draft" && fullPath === "about" && c.req.query("edit") === "1" && c.var.isAuthenticated;
15985
+ }
15986
+ async function renderPost(c, post, options = {}) {
15393
15987
  const navDataPromise = getNavigationData(c);
15394
- const display = await assemblePostPageDisplay(c, post, { isAuthenticated: true });
15988
+ const display = await assemblePostPageDisplay(c, post, {
15989
+ isAuthenticated: true,
15990
+ allowDraft: options.allowDraft
15991
+ });
15395
15992
  if (!display) return c.notFound();
15396
15993
  const navData = await navDataPromise;
15397
15994
  const meta = buildPostMeta(post, navData.siteName);
@@ -15399,15 +15996,17 @@ async function renderPost(c, post) {
15399
15996
  return renderPublicPage(c, {
15400
15997
  title: buildPageTitle(meta.title, navData.siteName),
15401
15998
  description: meta.description,
15402
- canonicalHref,
15403
- socialImageUrl: display.socialImage?.url,
15404
- socialImageAlt: display.socialImage?.alt,
15405
- socialImageWidth: display.socialImage?.width,
15406
- socialImageHeight: display.socialImage?.height,
15407
- ogType: "article",
15408
- articlePublishedTime: display.articlePublishedTime,
15409
- articleModifiedTime: display.articleModifiedTime,
15410
- jsonLd: buildPostJsonLd(c, display, meta, canonicalHref, navData.siteName),
15999
+ ...post.status === "published" ? {
16000
+ canonicalHref,
16001
+ socialImageUrl: display.socialImage?.url,
16002
+ socialImageAlt: display.socialImage?.alt,
16003
+ socialImageWidth: display.socialImage?.width,
16004
+ socialImageHeight: display.socialImage?.height,
16005
+ ogType: "article",
16006
+ articlePublishedTime: display.articlePublishedTime,
16007
+ articleModifiedTime: display.articleModifiedTime,
16008
+ jsonLd: buildPostJsonLd(c, display, meta, canonicalHref, navData.siteName)
16009
+ } : {},
15411
16010
  navData,
15412
16011
  content: /* @__PURE__ */ jsxDEV$1(PostPage, {
15413
16012
  post: display.postView,
@@ -15470,7 +16069,9 @@ pageRoutes.get("/*", async (c) => {
15470
16069
  if (resolved.kind === "archive" && resolved.archiveQuery) return renderArchivePage(c, Object.fromEntries(new URLSearchParams(resolved.archiveQuery)));
15471
16070
  if (resolved.postId) {
15472
16071
  const post = await c.var.services.posts.getById(resolved.postId);
15473
- if (!post || post.status === "draft") return c.notFound();
16072
+ if (!post) return c.notFound();
16073
+ const allowDraft = canRenderDraftAboutEditor(c, fullPath, post);
16074
+ if (post.status === "draft" && !allowDraft) return c.notFound();
15474
16075
  if (post.visibility === "private") {
15475
16076
  if (!(await getNavigationData(c)).isAuthenticated) return c.notFound();
15476
16077
  }
@@ -15478,7 +16079,7 @@ pageRoutes.get("/*", async (c) => {
15478
16079
  const alias = await c.var.services.customUrls.getByTarget("post", post.id);
15479
16080
  if (alias) return c.redirect(toPublicPath(`/${alias.path}`, sitePathPrefix), 301);
15480
16081
  }
15481
- return renderPost(c, post);
16082
+ return renderPost(c, post, { allowDraft });
15482
16083
  }
15483
16084
  if (resolved.collectionId) {
15484
16085
  const collection = await c.var.services.collections.getById(resolved.collectionId);
@@ -19616,11 +20217,16 @@ function SettingsRootContent({ sitePathPrefix = "", demoMode = false, hostedCont
19616
20217
  * component for site name, description, footer, homepage branding, language,
19617
20218
  * timezone, and search settings.
19618
20219
  * The settings-bridge.ts script handles server communication.
19619
- */ function GeneralContent({ siteName, siteDescription, siteLanguage, dashboardLanguage, cjkSerifFont, siteNameFallback, siteDescriptionFallback, mainRssFeed, mainFeedUrl, latestFeedUrl, featuredFeedUrl, archiveFeedUrl, timeZone, siteFooter, showJantBrandingOnHome, noindex, demoMode, timezones }) {
20220
+ */ function GeneralContent({ siteName, siteDescription, siteLanguage, dashboardLanguage, cjkSerifFont, siteNameFallback, siteDescriptionFallback, mainRssFeed, mainFeedUrl, latestFeedUrl, featuredFeedUrl, archiveFeedUrl, timeZone, siteFooter, showJantBrandingOnHome, noindex, demoMode, timezones, aboutPage, aboutEditUrl, aboutCreateUrl }) {
19620
20221
  const { i18n } = useLingui();
19621
20222
  const labels = JSON.stringify({
19622
20223
  general: i18n._({ id: "Weq9zb" }),
19623
20224
  site: i18n._({ id: "ebQKK7" }),
20225
+ aboutPage: i18n._({ id: "Wb7EHo" }),
20226
+ aboutPagePrompt: i18n._({ id: "0gECZD" }),
20227
+ createAboutPage: i18n._({ id: "Tu6bMZ" }),
20228
+ editAboutPage: i18n._({ id: "2wK4BX" }),
20229
+ aboutPageConflict: i18n._({ id: "pt4OhQ" }),
19624
20230
  languageAndTime: i18n._({ id: "zXH2jX" }),
19625
20231
  home: i18n._({ id: "i0qMbr" }),
19626
20232
  search: i18n._({ id: "A1taO8" }),
@@ -19704,6 +20310,7 @@ function SettingsRootContent({ sitePathPrefix = "", demoMode = false, hostedCont
19704
20310
  label: "한국어 (Korean)"
19705
20311
  }
19706
20312
  ]).replace(/</g, "\\u003c");
20313
+ const aboutPageJson = JSON.stringify(aboutPage).replace(/</g, "\\u003c");
19707
20314
  const initialData = JSON.stringify({
19708
20315
  siteName,
19709
20316
  siteDescription,
@@ -19730,6 +20337,9 @@ function SettingsRootContent({ sitePathPrefix = "", demoMode = false, hostedCont
19730
20337
  "featured-feed-url": featuredFeedUrl,
19731
20338
  "archive-feed-url": archiveFeedUrl,
19732
20339
  "demo-mode": demoMode || void 0,
20340
+ "about-page": aboutPageJson,
20341
+ "about-edit-url": aboutEditUrl,
20342
+ "about-create-url": aboutCreateUrl,
19733
20343
  children: /* @__PURE__ */ jsxDEV$1("div", { children: [/* @__PURE__ */ jsxDEV$1("h2", { class: "skel-label" }), /* @__PURE__ */ jsxDEV$1("div", { class: "skel-section-lg" })] })
19734
20344
  })
19735
20345
  }), /* @__PURE__ */ jsxDEV$1("script", {
@@ -20114,12 +20724,17 @@ function SessionsContent({ sessions, sitePathPrefix = "" }) {
20114
20724
  //#region src/ui/dash/appearance/NavigationContent.tsx
20115
20725
  /**
20116
20726
  * Navigation management: Lit-powered reorderable nav items, add area, system toggles
20117
- */ function NavigationContent({ navItems, directoryData, mainRssFeed, siteName, sitePathPrefix = "" }) {
20727
+ */ function NavigationContent({ navItems, directoryData, suggestedLinks, mainRssFeed, siteName, sitePathPrefix = "" }) {
20118
20728
  const { i18n } = useLingui();
20119
20729
  const latestLabel = i18n._({ id: "wL3cK8" });
20120
20730
  const featuredLabel = i18n._({ id: "FkMol5" });
20121
20731
  const previewLabel = i18n._({ id: "X1G9eY" });
20122
20732
  const moreLabel = i18n._(NAV_MORE_LABEL);
20733
+ const suggestedTargetLabels = {
20734
+ page: i18n._({ id: "6WdDG7" }),
20735
+ collection: i18n._({ id: "q+hNag" }),
20736
+ archive: i18n._({ id: "B495Gs" })
20737
+ };
20123
20738
  const itemsData = navItems.map((item) => {
20124
20739
  const url = item.type === "system" && item.systemKey ? SYSTEM_NAV_KEYS$2[item.systemKey]?.url ?? item.url : item.url;
20125
20740
  return {
@@ -20153,6 +20768,10 @@ function SessionsContent({ sessions, sitePathPrefix = "" }) {
20153
20768
  });
20154
20769
  return result;
20155
20770
  })();
20771
+ const suggestedLinksData = suggestedLinks.map((link) => ({
20772
+ ...link,
20773
+ targetLabel: suggestedTargetLabels[link.targetType]
20774
+ }));
20156
20775
  const systemNavData = Object.keys(SYSTEM_NAV_KEYS$2).map((key) => ({
20157
20776
  key,
20158
20777
  label: getSystemNavDisplayLabel(key, i18n),
@@ -20187,6 +20806,10 @@ function SessionsContent({ sessions, sitePathPrefix = "" }) {
20187
20806
  placementSaved: i18n._({ id: "rEspiY" }),
20188
20807
  cancel: i18n._({ id: "dEgA5A" }),
20189
20808
  labelAndUrlRequired: i18n._({ id: "+AXdXp" }),
20809
+ suggestedLinks: i18n._({ id: "9J6wUO" }),
20810
+ suggestedLinksDescription: i18n._({ id: "n8+EXe" }),
20811
+ addSuggestedLink: i18n._({ id: "m16xKo" }),
20812
+ suggestedLinkAdded: i18n._({ id: "BTYdze" }),
20190
20813
  collection: i18n._({ id: "sgr2wQ" }),
20191
20814
  addCollection: i18n._({ id: "3Cw1AI" }),
20192
20815
  addCollectionToNavigation: i18n._({ id: "KVVYBh" }),
@@ -20203,6 +20826,7 @@ function SessionsContent({ sessions, sitePathPrefix = "" }) {
20203
20826
  labels: escapeJson(labels),
20204
20827
  "system-nav-items": escapeJson(systemNavData),
20205
20828
  collections: escapeJson(collectionsData),
20829
+ "suggested-links": escapeJson(suggestedLinksData),
20206
20830
  "site-name": siteName,
20207
20831
  children: (() => {
20208
20832
  const headerNavItems = navItems.filter((item) => item.placement !== "more");
@@ -22421,7 +23045,7 @@ async function syncHostedControlPlaneSiteAvatar(input) {
22421
23045
  return;
22422
23046
  }
22423
23047
  await markSyncPending(settings);
22424
- const { createGitHubSyncService } = await import("./github-sync-LefaslGJ.js");
23048
+ const { createGitHubSyncService } = await import("./github-sync-BMmK3JZ0.js");
22425
23049
  const { getGitHubAppConfig } = await import("./env-OHRKGcMj.js").then((n) => n.t);
22426
23050
  const run = runBackgroundSync(settings, createGitHubSyncService(c.var.services, c.var.currentSite.id, await buildSyncSiteConfig(c), {
22427
23051
  storage: c.var.storage,
@@ -22586,6 +23210,9 @@ var UpdateSearchSettingsSchema = z.object({ allowIndexing: z.boolean() });
22586
23210
  function publicPath(c, path) {
22587
23211
  return toPublicPath(path, c.var.appConfig.sitePathPrefix);
22588
23212
  }
23213
+ function aboutEditPath(c) {
23214
+ return `${publicPath(c, "/about")}?edit=1`;
23215
+ }
22589
23216
  /**
22590
23217
  * Breadcrumb labels for admin settings pages.
22591
23218
  *
@@ -22652,7 +23279,7 @@ settingsRoutes.get("/general", async (c) => {
22652
23279
  const dbSiteName = allSettings["SITE_NAME"] ?? "";
22653
23280
  const dbSiteDescription = allSettings["SITE_DESCRIPTION"] ?? "";
22654
23281
  const saved = c.req.query("saved") !== void 0;
22655
- const navData = await getNavigationData(c);
23282
+ const [navData, aboutPage] = await Promise.all([getNavigationData(c), c.var.services.aboutPage.getStatus()]);
22656
23283
  const siteUrlForDisplay = appConfig.siteUrl || new URL(publicPath(c, "/"), c.req.url).toString();
22657
23284
  return renderPublicPage(c, {
22658
23285
  title: buildPageTitle("General", navData.siteName),
@@ -22680,7 +23307,10 @@ settingsRoutes.get("/general", async (c) => {
22680
23307
  showJantBrandingOnHome: appConfig.showJantBrandingOnHome,
22681
23308
  noindex: appConfig.noindex,
22682
23309
  demoMode: appConfig.demoMode,
22683
- timezones: TIMEZONES
23310
+ timezones: TIMEZONES,
23311
+ aboutPage,
23312
+ aboutEditUrl: aboutEditPath(c),
23313
+ aboutCreateUrl: publicPath(c, "/settings/general/about-page")
22684
23314
  })] })
22685
23315
  });
22686
23316
  });
@@ -22775,6 +23405,26 @@ settingsRoutes.post("/general/search", async (c) => {
22775
23405
  });
22776
23406
  return dsToast(i18n._({ id: "V5pZwT" }));
22777
23407
  });
23408
+ settingsRoutes.post("/general/about-page", async (c) => {
23409
+ try {
23410
+ await c.var.services.aboutPage.ensurePage();
23411
+ await triggerGitHubSyncInline(c);
23412
+ } catch (error) {
23413
+ if (error instanceof ValidationError) {
23414
+ if (c.req.header("accept")?.includes("application/json")) return c.json({
23415
+ error: error.message,
23416
+ code: error.code
23417
+ }, 400);
23418
+ return c.text(error.message, 400);
23419
+ }
23420
+ throw error;
23421
+ }
23422
+ if (c.req.header("accept")?.includes("application/json")) return c.json({
23423
+ status: "redirect",
23424
+ url: aboutEditPath(c)
23425
+ });
23426
+ return c.redirect(aboutEditPath(c));
23427
+ });
22778
23428
  settingsRoutes.get("/avatar", async (c) => {
22779
23429
  const saved = c.req.query("saved") !== void 0;
22780
23430
  const navData = await getNavigationData(c);
@@ -22890,7 +23540,11 @@ settingsRoutes.post("/avatar/display", async (c) => {
22890
23540
  });
22891
23541
  });
22892
23542
  settingsRoutes.get("/navigation", async (c) => {
22893
- const [navItems, directoryData] = await Promise.all([c.var.services.navItems.list(), c.var.services.collections.listDirectoryData()]);
23543
+ const [navItems, directoryData, suggestedLinks] = await Promise.all([
23544
+ c.var.services.navItems.list(),
23545
+ c.var.services.collections.listDirectoryData(),
23546
+ c.var.services.navItems.listSuggestedLinks()
23547
+ ]);
22894
23548
  const navData = await getNavigationData(c);
22895
23549
  return renderPublicPage(c, {
22896
23550
  title: buildPageTitle("Navigation", navData.siteName),
@@ -22902,6 +23556,7 @@ settingsRoutes.get("/navigation", async (c) => {
22902
23556
  }), /* @__PURE__ */ jsxDEV$1(NavigationContent, {
22903
23557
  navItems,
22904
23558
  directoryData,
23559
+ suggestedLinks,
22905
23560
  mainRssFeed: c.var.appConfig.mainRssFeed,
22906
23561
  siteName: navData.siteName,
22907
23562
  sitePathPrefix: c.var.appConfig.sitePathPrefix
@@ -23219,7 +23874,7 @@ settingsRoutes.post("/github-sync/connect", async (c) => {
23219
23874
  await c.var.services.settings.set("GITHUB_SYNC_AUTH_MODE", "pat");
23220
23875
  await c.var.services.settings.set("GITHUB_SYNC_APP_INSTALLATION_ID", "");
23221
23876
  await c.var.services.settings.set("GITHUB_SYNC_ENABLED", "true");
23222
- const { createGitHubSyncService } = await import("./github-sync-LefaslGJ.js");
23877
+ const { createGitHubSyncService } = await import("./github-sync-BMmK3JZ0.js");
23223
23878
  const syncService = createGitHubSyncService(c.var.services, c.var.currentSite.id, await buildSyncSiteConfig(c), {
23224
23879
  storage: c.var.storage,
23225
23880
  githubApp: getGitHubAppConfig(c.env)
@@ -23238,7 +23893,7 @@ settingsRoutes.post("/github-sync/connect", async (c) => {
23238
23893
  return dsRedirect(publicPath(c, "/settings/github-sync"));
23239
23894
  });
23240
23895
  settingsRoutes.post("/github-sync/push", async (c) => {
23241
- const { createGitHubSyncService } = await import("./github-sync-LefaslGJ.js");
23896
+ const { createGitHubSyncService } = await import("./github-sync-BMmK3JZ0.js");
23242
23897
  const syncService = createGitHubSyncService(c.var.services, c.var.currentSite.id, await buildSyncSiteConfig(c), {
23243
23898
  storage: c.var.storage,
23244
23899
  githubApp: getGitHubAppConfig(c.env)
@@ -23258,7 +23913,7 @@ settingsRoutes.post("/github-sync/push", async (c) => {
23258
23913
  });
23259
23914
  });
23260
23915
  settingsRoutes.post("/github-sync/disconnect", async (c) => {
23261
- const { createGitHubSyncService } = await import("./github-sync-LefaslGJ.js");
23916
+ const { createGitHubSyncService } = await import("./github-sync-BMmK3JZ0.js");
23262
23917
  await createGitHubSyncService(c.var.services, c.var.currentSite.id, await buildSyncSiteConfig(c), { githubApp: getGitHubAppConfig(c.env) }).teardownWebhook();
23263
23918
  return dsRedirect(publicPath(c, "/settings/github-sync"));
23264
23919
  });
@@ -23449,7 +24104,7 @@ function buildRepoPickerLabels(c) {
23449
24104
  const { parseRepoSlug, createGitHubClient } = await import("./github-api-BgSiE71w.js").then((n) => n.n);
23450
24105
  const parsed = parseRepoSlug(repo);
23451
24106
  if (!parsed) return wantsJson ? c.json({ error: "Invalid repository format." }, 400) : c.text("Invalid repository format.", 400);
23452
- const { classifyRepoForSync } = await import("./github-sync-LefaslGJ.js");
24107
+ const { classifyRepoForSync } = await import("./github-sync-BMmK3JZ0.js");
23453
24108
  const ghClient = createGitHubClient(() => getInstallationTokenFromApp(app, installationId));
23454
24109
  let classification;
23455
24110
  try {
@@ -23479,7 +24134,7 @@ function buildRepoPickerLabels(c) {
23479
24134
  await c.var.services.settings.set("GITHUB_SYNC_REPO", repo);
23480
24135
  await c.var.services.settings.set("GITHUB_SYNC_TOKEN", "");
23481
24136
  await c.var.services.settings.set("GITHUB_SYNC_ENABLED", "true");
23482
- const { createGitHubSyncService } = await import("./github-sync-LefaslGJ.js");
24137
+ const { createGitHubSyncService } = await import("./github-sync-BMmK3JZ0.js");
23483
24138
  const syncService = createGitHubSyncService(c.var.services, c.var.currentSite.id, await buildSyncSiteConfig(c), {
23484
24139
  storage: c.var.storage,
23485
24140
  githubApp: app
@@ -23595,7 +24250,7 @@ function requireGitHubApp(c) {
23595
24250
  const { parseRepoSlug, createGitHubClient } = await import("./github-api-BgSiE71w.js").then((n) => n.n);
23596
24251
  const parsed = parseRepoSlug(repo);
23597
24252
  if (!parsed) return c.json({ error: "Invalid repository format." }, 400);
23598
- const { classifyRepoForSync } = await import("./github-sync-LefaslGJ.js");
24253
+ const { classifyRepoForSync } = await import("./github-sync-BMmK3JZ0.js");
23599
24254
  const client = createGitHubClient(() => getInstallationTokenFromApp(app, installationId));
23600
24255
  try {
23601
24256
  const classification = await classifyRepoForSync(client, parsed.owner, parsed.repo, c.var.currentSite.id);
@@ -24753,194 +25408,6 @@ settingsApiRoutes.delete("/avatar", requireAuthApi(), async (c) => {
24753
25408
  return c.json({ success: true });
24754
25409
  });
24755
25410
  //#endregion
24756
- //#region src/lib/image-dimensions.ts
24757
- /**
24758
- * Parse intrinsic pixel dimensions from a raw image header buffer.
24759
- *
24760
- * Used as a server-side fallback when an upload client does not provide
24761
- * `width` / `height`. Only the file header is needed — typically the first
24762
- * few hundred bytes for PNG/JPEG/GIF/WebP, and up to ~64 KB for AVIF where
24763
- * the `ispe` property can be nested inside a larger `meta` box.
24764
- *
24765
- * Returns `null` when the bytes are too short, the format is unsupported,
24766
- * or the header is malformed.
24767
- *
24768
- * @param mimeType MIME type the upload was declared as (e.g. `image/png`).
24769
- * @param bytes Bytes from the start of the file. Pass at least
24770
- * {@link IMAGE_DIMENSION_PEEK_BYTES} for AVIF reliability; smaller is fine
24771
- * for other formats.
24772
- */ function parseImageDimensions(mimeType, bytes) {
24773
- const view = new DataView(bytes.buffer, bytes.byteOffset, bytes.byteLength);
24774
- switch (mimeType) {
24775
- case "image/png": return parsePng(view);
24776
- case "image/jpeg":
24777
- case "image/jpg": return parseJpeg(view);
24778
- case "image/gif": return parseGif(view);
24779
- case "image/webp": return parseWebp(view);
24780
- case "image/avif": return parseIsoBmff(view, new Set(["avif", "avis"]));
24781
- default: return null;
24782
- }
24783
- }
24784
- /**
24785
- * Recommended number of header bytes to feed into {@link parseImageDimensions}.
24786
- *
24787
- * Covers AVIF files with EXIF/ICC properties placed before the `ispe` box.
24788
- * Smaller formats only inspect the first ~30 bytes.
24789
- */ var IMAGE_DIMENSION_PEEK_BYTES = 64 * 1024;
24790
- function readChars(view, offset, length) {
24791
- let out = "";
24792
- for (let i = 0; i < length; i += 1) out += String.fromCharCode(view.getUint8(offset + i));
24793
- return out;
24794
- }
24795
- function parsePng(view) {
24796
- if (view.byteLength < 24) return null;
24797
- const signature = [
24798
- 137,
24799
- 80,
24800
- 78,
24801
- 71,
24802
- 13,
24803
- 10,
24804
- 26,
24805
- 10
24806
- ];
24807
- for (let i = 0; i < 8; i += 1) if (view.getUint8(i) !== signature[i]) return null;
24808
- const width = view.getUint32(16, false);
24809
- const height = view.getUint32(20, false);
24810
- if (width === 0 || height === 0) return null;
24811
- return {
24812
- width,
24813
- height
24814
- };
24815
- }
24816
- function parseGif(view) {
24817
- if (view.byteLength < 10) return null;
24818
- if (view.getUint8(0) !== 71 || view.getUint8(1) !== 73 || view.getUint8(2) !== 70) return null;
24819
- const width = view.getUint16(6, true);
24820
- const height = view.getUint16(8, true);
24821
- if (width === 0 || height === 0) return null;
24822
- return {
24823
- width,
24824
- height
24825
- };
24826
- }
24827
- function parseWebp(view) {
24828
- if (view.byteLength < 16) return null;
24829
- if (readChars(view, 0, 4) !== "RIFF") return null;
24830
- if (readChars(view, 8, 4) !== "WEBP") return null;
24831
- const chunk = readChars(view, 12, 4);
24832
- if (chunk === "VP8 ") {
24833
- if (view.byteLength < 30) return null;
24834
- if (view.getUint8(23) !== 157 || view.getUint8(24) !== 1 || view.getUint8(25) !== 42) return null;
24835
- const width = view.getUint16(26, true) & 16383;
24836
- const height = view.getUint16(28, true) & 16383;
24837
- if (width === 0 || height === 0) return null;
24838
- return {
24839
- width,
24840
- height
24841
- };
24842
- }
24843
- if (chunk === "VP8L") {
24844
- if (view.byteLength < 25) return null;
24845
- if (view.getUint8(20) !== 47) return null;
24846
- const b0 = view.getUint8(21);
24847
- const b1 = view.getUint8(22);
24848
- const b2 = view.getUint8(23);
24849
- const b3 = view.getUint8(24);
24850
- return {
24851
- width: 1 + ((b1 & 63) << 8 | b0),
24852
- height: 1 + ((b3 & 15) << 10 | b2 << 2 | (b1 & 192) >> 6)
24853
- };
24854
- }
24855
- if (chunk === "VP8X") {
24856
- if (view.byteLength < 30) return null;
24857
- return {
24858
- width: 1 + (view.getUint8(24) | view.getUint8(25) << 8 | view.getUint8(26) << 16),
24859
- height: 1 + (view.getUint8(27) | view.getUint8(28) << 8 | view.getUint8(29) << 16)
24860
- };
24861
- }
24862
- return null;
24863
- }
24864
- function parseJpeg(view) {
24865
- const length = view.byteLength;
24866
- if (length < 4) return null;
24867
- if (view.getUint8(0) !== 255 || view.getUint8(1) !== 216) return null;
24868
- let i = 2;
24869
- while (i < length) {
24870
- while (i < length && view.getUint8(i) !== 255) i += 1;
24871
- while (i < length && view.getUint8(i) === 255) i += 1;
24872
- if (i >= length) return null;
24873
- const marker = view.getUint8(i);
24874
- i += 1;
24875
- if (marker === 0 || marker === 1) continue;
24876
- if (marker >= 208 && marker <= 217) continue;
24877
- if (i + 2 > length) return null;
24878
- const segLen = view.getUint16(i, false);
24879
- if (segLen < 2) return null;
24880
- if (marker >= 192 && marker <= 195 || marker >= 197 && marker <= 199 || marker >= 201 && marker <= 203 || marker >= 205 && marker <= 207) {
24881
- if (i + 7 > length) return null;
24882
- const height = view.getUint16(i + 3, false);
24883
- const width = view.getUint16(i + 5, false);
24884
- if (width === 0 || height === 0) return null;
24885
- return {
24886
- width,
24887
- height
24888
- };
24889
- }
24890
- i += segLen;
24891
- }
24892
- return null;
24893
- }
24894
- function readBox(view, pos) {
24895
- if (pos + 8 > view.byteLength) return null;
24896
- let size = view.getUint32(pos, false);
24897
- const type = readChars(view, pos + 4, 4);
24898
- if (size === 1) return null;
24899
- if (size === 0) size = view.byteLength - pos;
24900
- if (size < 8) return null;
24901
- return {
24902
- size,
24903
- type,
24904
- payloadOffset: pos + 8,
24905
- end: pos + size
24906
- };
24907
- }
24908
- function findChild(view, start, end, type) {
24909
- let pos = start;
24910
- while (pos < end) {
24911
- const box = readBox(view, pos);
24912
- if (!box) return null;
24913
- if (box.type === type) return box;
24914
- pos = box.end;
24915
- }
24916
- return null;
24917
- }
24918
- function parseIsoBmff(view, acceptedBrands) {
24919
- const ftyp = readBox(view, 0);
24920
- if (!ftyp || ftyp.type !== "ftyp") return null;
24921
- let isAccepted = false;
24922
- if (ftyp.payloadOffset + 4 <= ftyp.end) isAccepted = acceptedBrands.has(readChars(view, ftyp.payloadOffset, 4));
24923
- for (let q = ftyp.payloadOffset + 8; !isAccepted && q + 4 <= ftyp.end; q += 4) if (acceptedBrands.has(readChars(view, q, 4))) isAccepted = true;
24924
- if (!isAccepted) return null;
24925
- const meta = findChild(view, ftyp.end, view.byteLength, "meta");
24926
- if (!meta) return null;
24927
- const iprp = findChild(view, meta.payloadOffset + 4, meta.end, "iprp");
24928
- if (!iprp) return null;
24929
- const ipco = findChild(view, iprp.payloadOffset, iprp.end, "ipco");
24930
- if (!ipco) return null;
24931
- const ispe = findChild(view, ipco.payloadOffset, ipco.end, "ispe");
24932
- if (!ispe) return null;
24933
- const widthOffset = ispe.payloadOffset + 4;
24934
- if (widthOffset + 8 > view.byteLength) return null;
24935
- const width = view.getUint32(widthOffset, false);
24936
- const height = view.getUint32(widthOffset + 4, false);
24937
- if (width === 0 || height === 0) return null;
24938
- return {
24939
- width,
24940
- height
24941
- };
24942
- }
24943
- //#endregion
24944
25411
  //#region src/lib/api-media.ts
24945
25412
  function toApiMedia(media, appConfig) {
24946
25413
  const { posterKey: _posterKey, storageKey: _storageKey, ...rest } = media;
@@ -25220,8 +25687,39 @@ var CompleteUploadSchema = z.object({
25220
25687
  etag: z.string().min(1)
25221
25688
  })).optional()
25222
25689
  });
25690
+ var SideloadSchema = z.object({
25691
+ url: z.string().url(),
25692
+ alt: z.string().max(2e3).optional()
25693
+ });
25223
25694
  var uploadsApiRoutes = new Hono();
25224
25695
  uploadsApiRoutes.use("*", requireAuthApi());
25696
+ /**
25697
+ * Rehost a remote image into the site's own storage. Used when an author pastes
25698
+ * an article whose `<img>` tags point at external URLs — the server fetches the
25699
+ * bytes (bypassing browser CORS) and stores them. Returns the new media's
25700
+ * public URL so the editor can swap the node's `src`.
25701
+ */ uploadsApiRoutes.post("/sideload", async (c) => {
25702
+ const storage = c.var.storage;
25703
+ if (!storage) return c.json({ error: "File storage isn't set up. Check your server config." }, 500);
25704
+ const { url, alt } = parseValidated(SideloadSchema, await c.req.json());
25705
+ const media = await c.var.services.media.ingestFromUrl({
25706
+ url,
25707
+ alt
25708
+ }, {
25709
+ storage,
25710
+ storageDriver: c.var.appConfig.storageDriver,
25711
+ maxFileSizeMB: c.var.appConfig.uploadMaxFileSize
25712
+ });
25713
+ const mediaPublicUrl = getPublicUrlForProvider(c.var.appConfig.storageDriver, c.var.appConfig.r2PublicUrl, c.var.appConfig.s3PublicUrl, c.var.appConfig.localPublicUrl);
25714
+ return c.json({
25715
+ id: media.id,
25716
+ url: getMediaUrl(media.storageKey, mediaPublicUrl, c.var.appConfig.sitePathPrefix),
25717
+ width: media.width,
25718
+ height: media.height,
25719
+ mimeType: media.mimeType,
25720
+ size: media.size
25721
+ });
25722
+ });
25225
25723
  function scheduleExpiredUploadCleanup(c, limit) {
25226
25724
  const storage = c.var.storage;
25227
25725
  if (!storage) return;
@@ -30628,6 +31126,20 @@ function createPostService(db, config, siteId, paths, databaseSchema = sqliteSch
30628
31126
  if (options?.excludePrivate) conditions.push(sql`${effectiveVisibilityExpr} != 'private'`);
30629
31127
  return conditions;
30630
31128
  }
31129
+ function buildCollectionThreadActivityExpr(alias) {
31130
+ return sql`MAX(
31131
+ COALESCE(
31132
+ (
31133
+ SELECT root.last_activity_at
31134
+ FROM post AS root
31135
+ WHERE root.site_id = ${siteId}
31136
+ AND root.id = ${posts.threadId}
31137
+ ),
31138
+ ${posts.publishedAt},
31139
+ ${posts.updatedAt}
31140
+ )
31141
+ )`.as(alias);
31142
+ }
30631
31143
  function isMediaAttachmentInput(attachment) {
30632
31144
  return attachment.type === "media";
30633
31145
  }
@@ -31457,6 +31969,7 @@ function createPostService(db, config, siteId, paths, databaseSchema = sqliteSch
31457
31969
  const conditions = [...buildThreadRootPageConditions(options), buildCollectionMembershipCondition(collectionIds)];
31458
31970
  const sortOrder = options.sortOrder ?? "newest";
31459
31971
  const publishedAt = sortOrder === "oldest" ? sql`MIN(${posts.publishedAt})`.as("published_at") : sql`MAX(${posts.publishedAt})`.as("published_at");
31972
+ const threadActivityAt = buildCollectionThreadActivityExpr("thread_activity_at");
31460
31973
  const ratingPresence = sql`MAX(
31461
31974
  CASE
31462
31975
  WHEN ${posts.rating} IS NULL THEN 0
@@ -31468,11 +31981,12 @@ function createPostService(db, config, siteId, paths, databaseSchema = sqliteSch
31468
31981
  const baseQuery = db.select({
31469
31982
  threadId: posts.threadId,
31470
31983
  publishedAt,
31984
+ threadActivityAt,
31471
31985
  collectionPinnedAt,
31472
31986
  ratingPresence,
31473
31987
  ratingValue
31474
31988
  }).from(posts).innerJoin(postCollections, and(eq(postCollections.siteId, siteId), eq(postCollections.postId, posts.id))).where(and(...conditions)).groupBy(posts.threadId);
31475
- let query = sortOrder === "oldest" ? baseQuery.orderBy(desc(collectionPinnedAt), asc(publishedAt), asc(posts.threadId)) : sortOrder === "rating_desc" ? baseQuery.orderBy(desc(collectionPinnedAt), desc(ratingPresence), desc(ratingValue), desc(publishedAt), desc(posts.threadId)) : baseQuery.orderBy(desc(collectionPinnedAt), desc(publishedAt), desc(posts.threadId));
31989
+ let query = sortOrder === "oldest" ? baseQuery.orderBy(desc(collectionPinnedAt), asc(publishedAt), asc(posts.threadId)) : sortOrder === "rating_desc" ? baseQuery.orderBy(desc(collectionPinnedAt), desc(ratingPresence), desc(ratingValue), desc(threadActivityAt), desc(posts.threadId)) : baseQuery.orderBy(desc(collectionPinnedAt), desc(threadActivityAt), desc(posts.threadId));
31476
31990
  if (options.limit !== void 0) query = query.limit(options.limit);
31477
31991
  if (options.offset !== void 0) query = query.offset(options.offset);
31478
31992
  return (await query).map((row) => row.threadId);
@@ -31482,15 +31996,15 @@ function createPostService(db, config, siteId, paths, databaseSchema = sqliteSch
31482
31996
  },
31483
31997
  async listCollectionFeedEntriesForCollections(collectionIds, options = {}) {
31484
31998
  const conditions = [...buildThreadRootPageConditions(options), buildCollectionMembershipCondition(collectionIds)];
31485
- const publishedAt = sql`MAX(${posts.publishedAt})`.as("published_at");
31999
+ const threadActivityAt = buildCollectionThreadActivityExpr("thread_activity_at");
31486
32000
  const collectedAt = sql`MAX(${postCollections.createdAt})`.as("collected_at");
31487
32001
  const collectionPinnedAt = sql`MAX(coalesce(${postCollections.pinnedAt}, -1))`.as("collection_pinned_at");
31488
32002
  let query = db.select({
31489
32003
  threadId: posts.threadId,
31490
- publishedAt,
32004
+ threadActivityAt,
31491
32005
  collectedAt,
31492
32006
  collectionPinnedAt
31493
- }).from(posts).innerJoin(postCollections, and(eq(postCollections.siteId, siteId), eq(postCollections.postId, posts.id))).where(and(...conditions)).groupBy(posts.threadId).orderBy(desc(collectionPinnedAt), desc(publishedAt), desc(posts.threadId));
32007
+ }).from(posts).innerJoin(postCollections, and(eq(postCollections.siteId, siteId), eq(postCollections.postId, posts.id))).where(and(...conditions)).groupBy(posts.threadId).orderBy(desc(collectionPinnedAt), desc(threadActivityAt), desc(posts.threadId));
31494
32008
  if (options.limit !== void 0) query = query.limit(options.limit);
31495
32009
  if (options.offset !== void 0) query = query.offset(options.offset);
31496
32010
  const rows = await query;
@@ -32643,8 +33157,17 @@ function createSearchService(rawQuery, siteId, databaseDialect = "sqlite") {
32643
33157
  * Manages navigation items (external links and system links)
32644
33158
  * with fractional indexing for efficient reordering.
32645
33159
  */ var POSITION_RETRY_ATTEMPTS = 5;
33160
+ var SUGGESTED_NAV_LINK_CANDIDATES = [{
33161
+ key: "about",
33162
+ path: "/about",
33163
+ label: "About"
33164
+ }, {
33165
+ key: "now",
33166
+ path: "/now",
33167
+ label: "Now"
33168
+ }];
32646
33169
  function createNavItemService(db, siteId, databaseSchema = sqliteSchemaBundle) {
32647
- const { navItems, postCollections, posts } = databaseSchema;
33170
+ const { navItems, postCollections, posts, pathRegistry, collections } = databaseSchema;
32648
33171
  const defaultSystemOrder = [
32649
33172
  "latest",
32650
33173
  "featured",
@@ -32701,6 +33224,23 @@ function createNavItemService(db, siteId, databaseSchema = sqliteSchemaBundle) {
32701
33224
  position: data.position
32702
33225
  };
32703
33226
  }
33227
+ function withLeadingSlash(path) {
33228
+ const normalized = normalizePath(path);
33229
+ return normalized ? `/${normalized}` : "/";
33230
+ }
33231
+ function getComparableInternalPath(url) {
33232
+ if (url.startsWith("http://") || url.startsWith("https://") || url.startsWith("//") || url.startsWith("mailto:") || url.startsWith("tel:") || url.startsWith("#")) return null;
33233
+ try {
33234
+ const pathname = new URL(url, "https://jant.invalid").pathname;
33235
+ return withLeadingSlash(pathname);
33236
+ } catch {
33237
+ return null;
33238
+ }
33239
+ }
33240
+ function normalizeSuggestedLabel(label, fallback) {
33241
+ const trimmed = label?.trim();
33242
+ return trimmed && trimmed.length > 0 ? trimmed : fallback;
33243
+ }
32704
33244
  async function getLastPosition() {
32705
33245
  return (await db.select({ position: navItems.position }).from(navItems).where(eq(navItems.siteId, siteId)).orderBy(sql`${navItems.position} DESC`).limit(1))[0]?.position ?? null;
32706
33246
  }
@@ -32824,6 +33364,62 @@ function createNavItemService(db, siteId, databaseSchema = sqliteSchemaBundle) {
32824
33364
  }
32825
33365
  throw new Error("Failed to assign a unique nav item position");
32826
33366
  },
33367
+ async listSuggestedLinks() {
33368
+ const existingRows = await db.select({
33369
+ url: navItems.url,
33370
+ collectionId: navItems.collectionId
33371
+ }).from(navItems).where(eq(navItems.siteId, siteId));
33372
+ const existingPaths = new Set(existingRows.flatMap((item) => {
33373
+ const path = getComparableInternalPath(item.url);
33374
+ return path ? [path] : [];
33375
+ }));
33376
+ const existingCollectionIds = new Set(existingRows.flatMap((item) => item.collectionId ? [item.collectionId] : []));
33377
+ const suggestions = [];
33378
+ for (const candidate of SUGGESTED_NAV_LINK_CANDIDATES) {
33379
+ const path = withLeadingSlash(candidate.path);
33380
+ if (existingPaths.has(path)) continue;
33381
+ const record = (await db.select().from(pathRegistry).where(and(eq(pathRegistry.siteId, siteId), eq(pathRegistry.path, normalizePath(candidate.path)))).limit(1))[0];
33382
+ if (!record || record.kind === "redirect") continue;
33383
+ if (record.postId) {
33384
+ const post = (await db.select({
33385
+ title: posts.title,
33386
+ status: posts.status,
33387
+ visibility: posts.visibility
33388
+ }).from(posts).where(and(eq(posts.siteId, siteId), eq(posts.id, record.postId))).limit(1))[0];
33389
+ if (!post || post.status !== "published" || post.visibility === "private") continue;
33390
+ suggestions.push({
33391
+ key: candidate.key,
33392
+ label: normalizeSuggestedLabel(post.title, candidate.label),
33393
+ url: path,
33394
+ targetType: "page",
33395
+ navItemType: "link"
33396
+ });
33397
+ continue;
33398
+ }
33399
+ if (record.collectionId) {
33400
+ if (existingCollectionIds.has(record.collectionId)) continue;
33401
+ const collection = (await db.select({ title: collections.title }).from(collections).where(and(eq(collections.siteId, siteId), eq(collections.id, record.collectionId))).limit(1))[0];
33402
+ if (!collection) continue;
33403
+ suggestions.push({
33404
+ key: candidate.key,
33405
+ label: normalizeSuggestedLabel(collection.title, candidate.label),
33406
+ url: path,
33407
+ targetType: "collection",
33408
+ navItemType: record.kind === "slug" ? "collection" : "link",
33409
+ ...record.kind === "slug" && { collectionId: record.collectionId }
33410
+ });
33411
+ continue;
33412
+ }
33413
+ if (record.kind === "archive") suggestions.push({
33414
+ key: candidate.key,
33415
+ label: candidate.label,
33416
+ url: path,
33417
+ targetType: "archive",
33418
+ navItemType: "link"
33419
+ });
33420
+ }
33421
+ return suggestions;
33422
+ },
32827
33423
  async getCollectionFreshness(collectionIds) {
32828
33424
  if (collectionIds.length === 0) return /* @__PURE__ */ new Map();
32829
33425
  const threshold = now() - COLLECTION_FRESHNESS_WINDOW_SECONDS;
@@ -33326,7 +33922,7 @@ function createSiteAdminService(db, databaseSchema = sqliteSchemaBundle, databas
33326
33922
  const themeCss = buildThemeStyle(activeTheme, appConfig.themeMode, fontOverrides);
33327
33923
  const navItemList = await navItems.list();
33328
33924
  const appleTouchKey = allSettings[SETTINGS_KEYS.SITE_FAVICON_APPLE_TOUCH];
33329
- const { createExportService } = await import("./export-DY1v5Iqu.js").then((n) => n.n);
33925
+ const { createExportService } = await import("./export-Ckwh4BiE.js").then((n) => n.n);
33330
33926
  const exportService = createExportService({
33331
33927
  collections,
33332
33928
  media: mediaService,
@@ -34246,6 +34842,11 @@ function createTelegramService(db, siteId, databaseSchema = sqliteSchemaBundle)
34246
34842
  const settings = createSettingsService(db, siteId, databaseSchema, dialect);
34247
34843
  const paths = createPathService(db, siteId, databaseSchema);
34248
34844
  const navItems = createNavItemService(db, siteId, databaseSchema);
34845
+ const posts = createPostService(db, {
34846
+ slugIdLength: config?.slugIdLength ?? 5,
34847
+ databaseDialect: dialect
34848
+ }, siteId, paths, databaseSchema);
34849
+ const collections = createCollectionService(db, siteId, paths, databaseSchema, dialect);
34249
34850
  const media = createMediaService(db, siteId, databaseSchema, dialect, {
34250
34851
  enforceHostedQuota: config?.enforceHostedMediaQuota ?? false,
34251
34852
  hostedControlPlane: config?.hostedControlPlane ?? null
@@ -34254,14 +34855,11 @@ function createTelegramService(db, siteId, databaseSchema = sqliteSchemaBundle)
34254
34855
  settings,
34255
34856
  site,
34256
34857
  paths,
34257
- posts: createPostService(db, {
34258
- slugIdLength: config?.slugIdLength ?? 5,
34259
- databaseDialect: dialect
34260
- }, siteId, paths, databaseSchema),
34858
+ posts,
34261
34859
  customUrls: createCustomUrlService(db, siteId, paths, databaseSchema),
34262
34860
  media,
34263
34861
  uploads: createUploadSessionService(db, siteId, media, databaseSchema),
34264
- collections: createCollectionService(db, siteId, paths, databaseSchema, dialect),
34862
+ collections,
34265
34863
  search: createSearchService(rawQuery, siteId, dialect),
34266
34864
  navItems,
34267
34865
  auth: createAuthService(db, settings, { databaseDialect: dialect }, databaseSchema),
@@ -34279,6 +34877,11 @@ function createTelegramService(db, siteId, databaseSchema = sqliteSchemaBundle)
34279
34877
  process.stderr.write(`[Jant] Hosted control plane metadata sync failed: ${message}\n`);
34280
34878
  }
34281
34879
  }),
34880
+ aboutPage: createAboutPageService({
34881
+ paths,
34882
+ posts,
34883
+ collections
34884
+ }),
34282
34885
  githubAppInstallations: createGitHubAppInstallationsService(db, databaseSchema),
34283
34886
  telegram: createTelegramService(db, siteId, databaseSchema)
34284
34887
  };