This commit is contained in:
samunohito 2025-05-31 10:00:35 +09:00
parent d33b7b7d6e
commit 128203b28d
3 changed files with 16 additions and 2 deletions

8
locales/index.d.ts vendored
View File

@ -11783,6 +11783,14 @@ export interface Locale extends ILocale {
* : misskey.example.com * : misskey.example.com
*/ */
"serverHostPlaceholder": string; "serverHostPlaceholder": string;
/**
* 稿from
*/
"postFrom": string;
/**
* 稿to
*/
"postTo": string;
}; };
"_serverSetupWizard": { "_serverSetupWizard": {
/** /**

View File

@ -3150,6 +3150,8 @@ _search:
pleaseEnterServerHost: "サーバーのホストを入力してください" pleaseEnterServerHost: "サーバーのホストを入力してください"
pleaseSelectUser: "ユーザーを選択してください" pleaseSelectUser: "ユーザーを選択してください"
serverHostPlaceholder: "例: misskey.example.com" serverHostPlaceholder: "例: misskey.example.com"
postFrom: "投稿日時from"
postTo: "投稿日時to"
_serverSetupWizard: _serverSetupWizard:
installCompleted: "Misskeyのインストールが完了しました" installCompleted: "Misskeyのインストールが完了しました"

View File

@ -20,8 +20,12 @@ SPDX-License-Identifier: AGPL-3.0-only
<div class="_gaps_m"> <div class="_gaps_m">
<div style="display: flex; gap: 8px;"> <div style="display: flex; gap: 8px;">
<MkInput v-model="rangeStartAt" type="datetime-local"/> <MkInput v-model="rangeStartAt" type="datetime-local">
<MkInput v-model="rangeEndAt" type="datetime-local"/> <template #label>{{ i18n.ts._search.postFrom }}</template>
</MkInput>
<MkInput v-model="rangeEndAt" type="datetime-local">
<template #label>{{ i18n.ts._search.postTo }}</template>
</MkInput>
</div> </div>
<MkRadios v-model="searchScope"> <MkRadios v-model="searchScope">