Skip to content

Commit d5eb0fb

Browse files
committed
Add entries to other languages
1 parent afcf300 commit d5eb0fb

8 files changed

Lines changed: 14 additions & 2 deletions

File tree

src/i18n/i18nKey.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
enum I18nKey {
22
home = "home",
33
about = "about",
4-
links = "links",
54
archive = "archive",
5+
links = "links",
66
friends = "friends",
77
search = "search",
88

src/i18n/languages/en.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import type { Translation } from "../translation";
44
export const en: Translation = {
55
[Key.home]: "Home",
66
[Key.about]: "About",
7-
[Key.links]: "Links",
87
[Key.archive]: "Archive",
8+
[Key.links]: "Links",
99
[Key.friends]: "Friends",
1010
[Key.search]: "Search",
1111

src/i18n/languages/es.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ export const es: Translation = {
55
[Key.home]: "Inicio",
66
[Key.about]: "Sobre mí",
77
[Key.archive]: "Archivo",
8+
[Key.links]: "Links",
9+
[Key.friends]: "Friends",
810
[Key.search]: "Buscar",
911

1012
[Key.tags]: "Etiquetas",

src/i18n/languages/ja.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ export const ja: Translation = {
55
[Key.home]: "Home",
66
[Key.about]: "About",
77
[Key.archive]: "Archive",
8+
[Key.links]: "Links",
9+
[Key.friends]: "Friends",
810
[Key.search]: "検索",
911

1012
[Key.tags]: "タグ",

src/i18n/languages/ko.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ export const ko: Translation = {
55
[Key.home]: "홈",
66
[Key.about]: "소개",
77
[Key.archive]: "아카이브",
8+
[Key.links]: "Links",
9+
[Key.friends]: "Friends",
810
[Key.search]: "검색",
911

1012
[Key.tags]: "태그",

src/i18n/languages/th.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ export const th: Translation = {
55
[Key.home]: "หน้าแรก",
66
[Key.about]: "เกี่ยวกับ",
77
[Key.archive]: "คลัง",
8+
[Key.links]: "Links",
9+
[Key.friends]: "Friends",
810
[Key.search]: "ค้นหา",
911

1012
[Key.tags]: "ป้ายกำกับ",

src/i18n/languages/zh_CN.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ export const zh_CN: Translation = {
55
[Key.home]: "主页",
66
[Key.about]: "关于",
77
[Key.archive]: "归档",
8+
[Key.links]: "Links",
9+
[Key.friends]: "Friends",
810
[Key.search]: "搜索",
911

1012
[Key.tags]: "标签",

src/i18n/languages/zh_TW.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ export const zh_TW: Translation = {
55
[Key.home]: "首頁",
66
[Key.about]: "關於",
77
[Key.archive]: "存檔",
8+
[Key.links]: "連結",
9+
[Key.friends]: "友情連結",
810
[Key.search]: "搜尋",
911

1012
[Key.tags]: "標籤",

0 commit comments

Comments
 (0)