wip
This commit is contained in:
parent
d2faac80d8
commit
e129b09160
|
@ -12645,6 +12645,10 @@ export interface Locale extends ILocale {
|
||||||
* 下書き一覧
|
* 下書き一覧
|
||||||
*/
|
*/
|
||||||
"listDrafts": string;
|
"listDrafts": string;
|
||||||
|
/**
|
||||||
|
* 投稿予約
|
||||||
|
*/
|
||||||
|
"schedule": string;
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* 二次元コード
|
* 二次元コード
|
||||||
|
|
|
@ -3386,6 +3386,7 @@ _drafts:
|
||||||
restoreFromDraft: "下書きから復元"
|
restoreFromDraft: "下書きから復元"
|
||||||
restore: "復元"
|
restore: "復元"
|
||||||
listDrafts: "下書き一覧"
|
listDrafts: "下書き一覧"
|
||||||
|
schedule: "投稿予約"
|
||||||
|
|
||||||
qr: "二次元コード"
|
qr: "二次元コード"
|
||||||
_qr:
|
_qr:
|
||||||
|
|
|
@ -94,12 +94,21 @@ SPDX-License-Identifier: AGPL-3.0-only
|
||||||
<i class="ti ti-corner-up-left"></i>
|
<i class="ti ti-corner-up-left"></i>
|
||||||
{{ i18n.ts._drafts.restore }}
|
{{ i18n.ts._drafts.restore }}
|
||||||
</MkButton>
|
</MkButton>
|
||||||
|
<MkButton
|
||||||
|
:class="$style.itemButton"
|
||||||
|
small
|
||||||
|
@click="schedule(draft)"
|
||||||
|
>
|
||||||
|
<i class="ti ti-calendar-time"></i>
|
||||||
|
{{ i18n.ts._drafts.schedule }}
|
||||||
|
</MkButton>
|
||||||
<MkButton
|
<MkButton
|
||||||
v-tooltip="i18n.ts._drafts.delete"
|
v-tooltip="i18n.ts._drafts.delete"
|
||||||
danger
|
danger
|
||||||
small
|
small
|
||||||
:iconOnly="true"
|
:iconOnly="true"
|
||||||
:class="$style.itemButton"
|
:class="$style.itemButton"
|
||||||
|
style="margin-left: auto;"
|
||||||
@click="deleteDraft(draft)"
|
@click="deleteDraft(draft)"
|
||||||
>
|
>
|
||||||
<i class="ti ti-trash"></i>
|
<i class="ti ti-trash"></i>
|
||||||
|
|
Loading…
Reference in New Issue