[feature/frontend] create posts (wip)
This commit is contained in:
parent
e86d8c1576
commit
086c9761a9
10 changed files with 598 additions and 115 deletions
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"categories": {
|
||||
"man": "Man",
|
||||
"man": "Human",
|
||||
"machine": "Machine",
|
||||
"earth": "Earth",
|
||||
"space": "Space",
|
||||
|
@ -29,8 +29,6 @@
|
|||
"edit": "Edit",
|
||||
"delete": "Delete",
|
||||
"upload": "Upload",
|
||||
"save": "Save",
|
||||
"saving": "Saving...",
|
||||
"status": "Status",
|
||||
"actions": "Actions",
|
||||
"published": "Published",
|
||||
|
@ -48,12 +46,10 @@
|
|||
"joinDate": "Join Date",
|
||||
"username": "Username",
|
||||
"logout": "Logout",
|
||||
"language": "Language",
|
||||
"theme": {
|
||||
"light": "Light Mode",
|
||||
"dark": "Dark Mode",
|
||||
"system": "System"
|
||||
}
|
||||
"save": "Save",
|
||||
"saving": "Saving...",
|
||||
"noData": "No data available",
|
||||
"unsavedChanges": "You have unsaved changes. Are you sure you want to leave?"
|
||||
},
|
||||
"dashboard": {
|
||||
"totalPosts": "Total Posts",
|
||||
|
@ -61,13 +57,33 @@
|
|||
"totalUsers": "Total Users",
|
||||
"totalContributors": "Total Contributors"
|
||||
},
|
||||
"posts": {
|
||||
"title": "Title",
|
||||
"categories": "Categories",
|
||||
"createdAt": "Created At",
|
||||
"status": "Status",
|
||||
"noTitle": "No Title",
|
||||
"deleteConfirm": "Are you sure you want to delete this post?",
|
||||
"create": "Create Post",
|
||||
"edit": "Edit Post",
|
||||
"slug": "Slug",
|
||||
"content": "Content",
|
||||
"summary": "Summary",
|
||||
"metaKeywords": "Meta Keywords",
|
||||
"metaDescription": "Meta Description",
|
||||
"selectCategories": "Select Categories",
|
||||
"saving": "Saving...",
|
||||
"publishing": "Publishing...",
|
||||
"saveDraft": "Save Draft",
|
||||
"publish": "Publish"
|
||||
},
|
||||
"login": {
|
||||
"title": "Admin Login",
|
||||
"username": "Username",
|
||||
"password": "Password",
|
||||
"remember": "Remember me",
|
||||
"submit": "Sign in",
|
||||
"loading": "Signing in...",
|
||||
"submit": "Login",
|
||||
"loading": "Logging in...",
|
||||
"error": {
|
||||
"failed": "Login failed",
|
||||
"retry": "Login failed, please try again later"
|
||||
|
@ -76,7 +92,7 @@
|
|||
"nav": {
|
||||
"dashboard": "Dashboard",
|
||||
"posts": "Posts",
|
||||
"daily": "Daily Quotes",
|
||||
"daily": "Daily",
|
||||
"medias": "Media",
|
||||
"categories": "Categories",
|
||||
"users": "Users",
|
||||
|
|
|
@ -47,7 +47,9 @@
|
|||
"username": "用户名",
|
||||
"logout": "退出登录",
|
||||
"save": "保存",
|
||||
"saving": "保存中..."
|
||||
"saving": "保存中...",
|
||||
"noData": "暂无数据",
|
||||
"unsavedChanges": "你有未保存的更改,确定要离开吗?"
|
||||
},
|
||||
"dashboard": {
|
||||
"totalPosts": "文章总数",
|
||||
|
@ -55,6 +57,26 @@
|
|||
"totalUsers": "用户总数",
|
||||
"totalContributors": "贡献者总数"
|
||||
},
|
||||
"posts": {
|
||||
"title": "标题",
|
||||
"categories": "分类",
|
||||
"createdAt": "创建时间",
|
||||
"status": "状态",
|
||||
"noTitle": "无标题",
|
||||
"deleteConfirm": "确定要删除这篇文章吗?",
|
||||
"create": "创建文章",
|
||||
"edit": "编辑文章",
|
||||
"slug": "文章链接",
|
||||
"content": "内容",
|
||||
"summary": "摘要",
|
||||
"metaKeywords": "关键词",
|
||||
"metaDescription": "描述",
|
||||
"selectCategories": "选择分类",
|
||||
"saving": "保存中...",
|
||||
"publishing": "发布中...",
|
||||
"saveDraft": "保存草稿",
|
||||
"publish": "发布文章"
|
||||
},
|
||||
"login": {
|
||||
"title": "管理员登录",
|
||||
"username": "用户名",
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
"lastLogin": "最後登入",
|
||||
"joinDate": "加入時間",
|
||||
"username": "用戶名",
|
||||
"logout": "退出登錄",
|
||||
"logout": "退出登入",
|
||||
"language": "語言",
|
||||
"theme": {
|
||||
"light": "淺色模式",
|
||||
|
@ -53,7 +53,9 @@
|
|||
"system": "跟隨系統"
|
||||
},
|
||||
"save": "保存",
|
||||
"saving": "保存中..."
|
||||
"saving": "保存中...",
|
||||
"noData": "暫無數據",
|
||||
"unsavedChanges": "你有未保存的更改,確定要離開嗎?"
|
||||
},
|
||||
"nav": {
|
||||
"dashboard": "儀表板",
|
||||
|
@ -83,15 +85,15 @@
|
|||
"uploadDate": "上傳日期"
|
||||
},
|
||||
"login": {
|
||||
"title": "管理員登錄",
|
||||
"title": "管理員登入",
|
||||
"username": "用戶名",
|
||||
"password": "密碼",
|
||||
"remember": "記住我",
|
||||
"submit": "登錄",
|
||||
"loading": "登錄中...",
|
||||
"submit": "登入",
|
||||
"loading": "登入中...",
|
||||
"error": {
|
||||
"failed": "登錄失敗",
|
||||
"retry": "登錄失敗,請稍後重試"
|
||||
"failed": "登入失敗",
|
||||
"retry": "登入失敗,請稍後重試"
|
||||
}
|
||||
},
|
||||
"roles": {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue