diff options
| author | かっこかり <67428053+kakkokari-gtyih@users.noreply.github.com> | 2025-02-27 11:56:17 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-27 02:56:17 +0000 |
| commit | da66079c297c18f5628d262bf5d26662e5c25011 (patch) | |
| tree | 95024635e7780791c736b571a6db150cd8e01ed2 /locales | |
| parent | fix(frontend): MkSelectの初期値が表示されない場合がある (#15559) (diff) | |
| download | sharkey-da66079c297c18f5628d262bf5d26662e5c25011.tar.gz sharkey-da66079c297c18f5628d262bf5d26662e5c25011.tar.bz2 sharkey-da66079c297c18f5628d262bf5d26662e5c25011.zip | |
enhance(frontend): ノート検索ページのデザイン調整 (#14780)
* enhance(frontend): 検索ページのホスト指定とユーザー指定を統合する (#273)
(cherry picked from commit c79392c88d6bf58ede39d8bba9ca2778c58521ef)
* fix
* :art:
* Update Changelog
* Update Changelog
* refactor
---------
Co-authored-by: taiy <53635909+taiyme@users.noreply.github.com>
Diffstat (limited to 'locales')
| -rw-r--r-- | locales/index.d.ts | 30 | ||||
| -rw-r--r-- | locales/ja-JP.yml | 9 |
2 files changed, 39 insertions, 0 deletions
diff --git a/locales/index.d.ts b/locales/index.d.ts index 0f71263c96..74e3cdeceb 100644 --- a/locales/index.d.ts +++ b/locales/index.d.ts @@ -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; diff --git a/locales/ja-JP.yml b/locales/ja-JP.yml index 8c803f1ebe..270b5fc265 100644 --- a/locales/ja-JP.yml +++ b/locales/ja-JP.yml @@ -2942,3 +2942,12 @@ _bootErrors: otherOption1: "クライアント設定とキャッシュを削除" otherOption2: "簡易クライアントを起動" otherOption3: "修復ツールを起動" + +_search: + searchScopeAll: "全て" + searchScopeLocal: "ローカル" + searchScopeServer: "サーバー指定" + searchScopeUser: "ユーザー指定" + pleaseEnterServerHost: "サーバーのホストを入力してください" + pleaseSelectUser: "ユーザーを選択してください" + serverHostPlaceholder: "例: misskey.example.com" |