Skip to content

Commit

Permalink
chore: add i18n for makeNoteHome
Browse files Browse the repository at this point in the history
  • Loading branch information
Sayamame-beans committed Dec 24, 2023
1 parent 69b5b3c commit 2f832f6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions locales/ja-JP.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ copyLinkRenote: "リノートのリンクをコピー"
delete: "削除"
deleteAndEdit: "削除して編集"
deleteAndEditConfirm: "このノートを削除してもう一度編集しますか?このノートへのリアクション、リノート、返信も全て削除されます。"
makeNoteHome: "ホーム投稿にする"
addToList: "リストに追加"
addToAntenna: "アンテナに追加"
sendMessage: "メッセージを送信"
Expand Down Expand Up @@ -229,6 +230,7 @@ blockedUsers: "ブロックしたユーザー"
noUsers: "ユーザーはいません"
editProfile: "プロフィールを編集"
noteDeleteConfirm: "このノートを削除しますか?"
makeNoteHomeConfirm: "本当にホーム投稿にしますか?"
pinLimitExceeded: "これ以上ピン留めできません"
intro: "Misskeyのインストールが完了しました!管理者アカウントを作成しましょう。"
done: "完了"
Expand Down
4 changes: 2 additions & 2 deletions packages/frontend/src/scripts/get-note-menu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ export function getNoteMenu(props: {
function makeHome(): void {
os.confirm({
type: 'warning',
text: '本当にホーム投稿にしますか?',
text: i18n.ts.makeNoteHomeConfirm,
}).then(({ canceled }) => {
if (canceled) return;

Expand Down Expand Up @@ -378,7 +378,7 @@ export function getNoteMenu(props: {
},
$i.isModerator || $i.isAdmin ? {
icon: 'ti ti-home',
text: 'ホーム投稿にする', // めんどうなのでとりあえずハードコード
text: i18n.ts.makeNoteHome,
danger: true,
action: makeHome,
} : undefined]
Expand Down

0 comments on commit 2f832f6

Please sign in to comment.