Skip to content

Commit

Permalink
enhance(frontend): ノート検索ページのデザイン調整 (misskey-dev#14780)
Browse files Browse the repository at this point in the history
* enhance(frontend): 検索ページのホスト指定とユーザー指定を統合する (misskey-dev#273)

(cherry picked from commit c79392c)

* fix

* 🎨

* Update Changelog

* Update Changelog

* refactor

---------

Co-authored-by: taiy <53635909+taiyme@users.noreply.github.com>
  • Loading branch information
kakkokari-gtyih and taiyme authored Feb 27, 2025
1 parent ec83815 commit da66079
Show file tree
Hide file tree
Showing 6 changed files with 263 additions and 139 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
- Enhance: リアクションする際に確認ダイアログを表示できるように
- Enhance: コントロールパネルのユーザ検索で入力された情報をページ遷移で損なわないように `#15437`
- Enhance: CWの注釈で入力済みの文字数を表示
- Enhance: ノート検索ページのデザイン調整
(Cherry-picked from https://github.com/taiyme/misskey/pull/273)
- Fix: ノートページで、クリップ一覧が表示されないことがある問題を修正
- Fix: コンディショナルロールを手動で割り当てできる導線を削除 `#13529`
- Fix: 埋め込みプレイヤーから外部ページに移動できない問題を修正
Expand Down
30 changes: 30 additions & 0 deletions locales/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11000,6 +11000,36 @@ export interface Locale extends ILocale {
*/
"otherOption3": string;
};
"_search": {
/**
* 全て
*/
"searchScopeAll": string;
/**
* ローカル
*/
"searchScopeLocal": string;
/**
* サーバー指定
*/
"searchScopeServer": string;
/**
* ユーザー指定
*/
"searchScopeUser": string;
/**
* サーバーのホストを入力してください
*/
"pleaseEnterServerHost": string;
/**
* ユーザーを選択してください
*/
"pleaseSelectUser": string;
/**
* 例: misskey.example.com
*/
"serverHostPlaceholder": string;
};
}
declare const locales: {
[lang: string]: Locale;
Expand Down
9 changes: 9 additions & 0 deletions locales/ja-JP.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2942,3 +2942,12 @@ _bootErrors:
otherOption1: "クライアント設定とキャッシュを削除"
otherOption2: "簡易クライアントを起動"
otherOption3: "修復ツールを起動"

_search:
searchScopeAll: "全て"
searchScopeLocal: "ローカル"
searchScopeServer: "サーバー指定"
searchScopeUser: "ユーザー指定"
pleaseEnterServerHost: "サーバーのホストを入力してください"
pleaseSelectUser: "ユーザーを選択してください"
serverHostPlaceholder: "例: misskey.example.com"
Loading

0 comments on commit da66079

Please sign in to comment.