Skip to content

Commit e767bbf

Browse files
committed
Upgrade Astro to 6.3.0 and update scanToRead i18n labels
Update Astro from 6.2.1 to 6.3.0 with updated telemetry and tsconfig dependencies. Replace QR-code-related scanToRead text with source/origin labels across all languages.
1 parent 8bfe8f1 commit e767bbf

10 files changed

Lines changed: 42 additions & 49 deletions

File tree

README.ja.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
[![Node.js >= 22](https://img.shields.io/badge/node.js-%3E%3D22-brightgreen)](https://nodejs.org/)
77
[![pnpm >= 9](https://img.shields.io/badge/pnpm-%3E%3D9-blue)](https://pnpm.io/)
8-
[![Astro](https://img.shields.io/badge/Astro-6.1.2-orange)](https://astro.build/)
8+
[![Astro](https://img.shields.io/badge/Astro-6.3.0-orange)](https://astro.build/)
99
[![TypeScript](https://img.shields.io/badge/TypeScript-5.9.3-blue)](https://www.typescriptlang.org/)
1010
[![License: Apache-2.0](https://img.shields.io/badge/License-Apache%202.0-blue.svg?logo=apache)](https://opensource.org/licenses/Apache-2.0)
1111

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ A modern, feature-rich static blog template built with [Astro](https://astro.bui
55

66
[![Node.js >= 22](https://img.shields.io/badge/node.js-%3E%3D22-brightgreen)](https://nodejs.org/)
77
[![pnpm >= 9](https://img.shields.io/badge/pnpm-%3E%3D9-blue)](https://pnpm.io/)
8-
[![Astro](https://img.shields.io/badge/Astro-6.1.2-orange)](https://astro.build/)
8+
[![Astro](https://img.shields.io/badge/Astro-6.3.0-orange)](https://astro.build/)
99
[![TypeScript](https://img.shields.io/badge/TypeScript-5.9.3-blue)](https://www.typescriptlang.org/)
1010
[![License: Apache-2.0](https://img.shields.io/badge/License-Apache%202.0-blue.svg?logo=apache)](https://opensource.org/licenses/Apache-2.0)
1111

README.tw.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
[![Node.js >= 22](https://img.shields.io/badge/node.js-%3E%3D22-brightgreen)](https://nodejs.org/)
77
[![pnpm >= 9](https://img.shields.io/badge/pnpm-%3E%3D9-blue)](https://pnpm.io/)
8-
[![Astro](https://img.shields.io/badge/Astro-6.1.2-orange)](https://astro.build/)
8+
[![Astro](https://img.shields.io/badge/Astro-6.3.0-orange)](https://astro.build/)
99
[![TypeScript](https://img.shields.io/badge/TypeScript-5.9.3-blue)](https://www.typescriptlang.org/)
1010
[![License: Apache-2.0](https://img.shields.io/badge/License-Apache%202.0-blue.svg?logo=apache)](https://opensource.org/licenses/Apache-2.0)
1111

README.zh.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
[![Node.js >= 22](https://img.shields.io/badge/node.js-%3E%3D22-brightgreen)](https://nodejs.org/)
77
[![pnpm >= 9](https://img.shields.io/badge/pnpm-%3E%3D9-blue)](https://pnpm.io/)
8-
[![Astro](https://img.shields.io/badge/Astro-6.1.2-orange)](https://astro.build/)
8+
[![Astro](https://img.shields.io/badge/Astro-6.3.0-orange)](https://astro.build/)
99
[![TypeScript](https://img.shields.io/badge/TypeScript-5.9.3-blue)](https://www.typescriptlang.org/)
1010
[![License: Apache-2.0](https://img.shields.io/badge/License-Apache%202.0-blue.svg?logo=apache)](https://opensource.org/licenses/Apache-2.0)
1111

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"@swup/astro": "^1.8.0",
4141
"@tailwindcss/typography": "^0.5.19",
4242
"@tailwindcss/vite": "^4.2.4",
43-
"astro": "6.2.1",
43+
"astro": "6.3.0",
4444
"astro-expressive-code": "^0.41.7",
4545
"astro-icon": "^1.1.5",
4646
"axios": "^1.16.0",

pnpm-lock.yaml

Lines changed: 33 additions & 40 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/i18n/languages/en.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ export const en: Translation = {
339339
[Key.copied]: "Copied",
340340
[Key.copyLink]: "Copy Link",
341341
[Key.savePoster]: "Save Poster",
342-
[Key.scanToRead]: "Scan to Read",
342+
[Key.scanToRead]: "Source",
343343
[Key.shareOnSocial]: "Share",
344344
[Key.shareOnSocialDescription]:
345345
"If this article helped you, please share it with others!",

src/i18n/languages/ja.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ export const ja: Translation = {
342342
[Key.copied]: "コピーしました",
343343
[Key.copyLink]: "リンクをコピー",
344344
[Key.savePoster]: "ポスターを保存",
345-
[Key.scanToRead]: "スキャンで読み込む",
345+
[Key.scanToRead]: "出典元",
346346
[Key.shareOnSocial]: "共有",
347347
[Key.shareOnSocialDescription]:
348348
"この記事が役に立ったときは、ぜひ他の人に共有してください!",

src/i18n/languages/zh_CN.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ export const zh_CN: Translation = {
326326
[Key.copied]: "已复制",
327327
[Key.copyLink]: "复制链接",
328328
[Key.savePoster]: "保存海报",
329-
[Key.scanToRead]: "扫码阅读",
329+
[Key.scanToRead]: "来源网站",
330330
[Key.shareOnSocial]: "分享",
331331
[Key.shareOnSocialDescription]:
332332
"如果这篇文章对你有帮助,欢迎分享给更多人!",

src/i18n/languages/zh_TW.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ export const zh_TW: Translation = {
328328
[Key.copied]: "已複製",
329329
[Key.copyLink]: "複製連結",
330330
[Key.savePoster]: "儲存海報",
331-
[Key.scanToRead]: "掃碼閱讀",
331+
[Key.scanToRead]: "來源網站",
332332
[Key.shareOnSocial]: "分享",
333333
[Key.shareOnSocialDescription]:
334334
"如果這篇文章對你有幫助,歡迎分享給更多人!",

0 commit comments

Comments
 (0)