feat: change unpublish to delete

This commit is contained in:
DIYgod 2023-03-06 00:57:08 +00:00
parent 90d5082e24
commit 10b71cf644
No known key found for this signature in database
3 changed files with 1 additions and 3 deletions

View File

@ -58,7 +58,6 @@
"Preview": "プレビュー",
"Publish": "公開",
"Update": "更新",
"Unpublish": "非公開",
"Publish at": "公開日時",
"This post will be accessible from this time": "この記事は、この時間からアクセス可能になります",
"This page will be accessible from this time": "このページは、この時間からアクセス可能になります",

View File

@ -61,7 +61,6 @@
"Preview": "预览",
"Publish": "发布",
"Update": "更新",
"Unpublish": "取消发布",
"Publish at": "发布时间",
"This post will be accessible from this time": "此文章将从此时间开始可访问",
"This page will be accessible from this time": "此页面将从此时间开始可访问",

View File

@ -62,7 +62,7 @@ export const PublishButton: React.FC<{
className="flex w-full h-8 hover:bg-zinc-100 items-center px-5"
onClick={() => save(false)}
>
{t("Unpublish")}
{t("Delete")}
</button>
)}
</div>