Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

enhance(frontend): 検索ページのホスト指定とユーザー指定を統合 #14780

Open
wants to merge 12 commits into
base: develop
Choose a base branch
from
Open
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
-

### Client
- Enhance: ノート検索ページのデザイン調整
(Cherry-picked from https://github.com/taiyme/misskey/pull/273)
- Fix: 画面サイズが変わった際にナビゲーションバーが自動で折りたたまれない問題を修正
- 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 @@ -10601,6 +10601,36 @@ export interface Locale extends ILocale {
*/
"sent": 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 @@ -2826,3 +2826,12 @@ _selfXssPrevention:
_followRequest:
recieved: "受け取った申請"
sent: "送った申請"

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