Skip to content

Commit

Permalink
Merge pull request #953 from sunfish-shogi/add-scorekeeper
Browse files Browse the repository at this point in the history
棋譜情報に「記録係」を追加
  • Loading branch information
sunfish-shogi authored Sep 6, 2024
2 parents 9ce3b34 + 6892f69 commit e7ac875
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/common/i18n/locales/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -388,6 +388,7 @@ export const en: Texts = {
note: "Note",
senteShortName: "Sente(short)",
goteShortName: "Gote(short)",
scorekeeper: "Scorekeeper",
opusNo: "Opus No.",
opusName: "Opus Name",
publishedBy: "Published By",
Expand Down
1 change: 1 addition & 0 deletions src/common/i18n/locales/ja.ts
Original file line number Diff line number Diff line change
Expand Up @@ -388,6 +388,7 @@ export const ja: Texts = {
note: "備考",
senteShortName: "先手省略名",
goteShortName: "後手省略名",
scorekeeper: "記録係",
opusNo: "作品番号",
opusName: "作品名",
publishedBy: "発表誌",
Expand Down
1 change: 1 addition & 0 deletions src/common/i18n/locales/vi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -388,6 +388,7 @@ export const vi: Texts = {
note: "Ghi chú",
senteShortName: "Tiên thủ (ngắn)",
goteShortName: "Hậu thủ (ngắn)",
scorekeeper: "記録係", // TODO: translate
opusNo: "Số hiệu",
opusName: "Tên tác phẩm",
publishedBy: "Xuất bản bởi",
Expand Down
1 change: 1 addition & 0 deletions src/common/i18n/locales/zh_tw.ts
Original file line number Diff line number Diff line change
Expand Up @@ -385,6 +385,7 @@ export const zh_tw: Texts = {
note: "備註",
senteShortName: "先手省略名",
goteShortName: "後手省略名",
scorekeeper: "記録係", // TODO: translate
opusNo: "作品編號",
opusName: "作品名",
publishedBy: "發表於",
Expand Down
2 changes: 2 additions & 0 deletions src/common/i18n/record.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ export function getRecordMetadataName(key: RecordMetadataKey): string {
return t.senteShortName;
case RecordMetadataKey.WHITE_SHORT_NAME:
return t.goteShortName;
case RecordMetadataKey.SCOREKEEPER:
return t.scorekeeper;
case RecordMetadataKey.OPUS_NO:
return t.opusNo;
case RecordMetadataKey.OPUS_NAME:
Expand Down
1 change: 1 addition & 0 deletions src/common/i18n/text_template.ts
Original file line number Diff line number Diff line change
Expand Up @@ -383,6 +383,7 @@ export type Texts = {
note: string;
senteShortName: string;
goteShortName: string;
scorekeeper: string;
opusNo: string;
opusName: string;
publishedBy: string;
Expand Down

0 comments on commit e7ac875

Please sign in to comment.