mirror of
https://github.com/mindoc-org/mindoc.git
synced 2026-02-27 17:03:57 +08:00
Lang (#989)
* [lang] fix tiny language * [lang] fix lang * [lang] update document lang --------- Co-authored-by: admin <you@example.com>
This commit is contained in:
@@ -214,8 +214,8 @@ func (c *DocumentController) Read() {
|
||||
}
|
||||
var PrevName, PrevPath, NextName, NextPath string
|
||||
if index == 0 {
|
||||
c.Data["PrevName"] = "没有了"
|
||||
PrevName = "没有了"
|
||||
c.Data["PrevName"] = ""
|
||||
PrevName = ""
|
||||
} else {
|
||||
c.Data["PrevPath"] = identify + "/" + flat[index-1].Identify
|
||||
c.Data["PrevName"] = flat[index-1].DocumentName
|
||||
@@ -223,8 +223,8 @@ func (c *DocumentController) Read() {
|
||||
PrevName = flat[index-1].DocumentName
|
||||
}
|
||||
if index == len(flat)-1 {
|
||||
c.Data["NextName"] = "没有了"
|
||||
NextName = "没有了"
|
||||
c.Data["NextName"] = ""
|
||||
NextName = ""
|
||||
} else {
|
||||
c.Data["NextPath"] = identify + "/" + flat[index+1].Identify
|
||||
c.Data["NextName"] = flat[index+1].DocumentName
|
||||
@@ -251,7 +251,7 @@ func (c *DocumentController) Read() {
|
||||
data.DocId = doc.DocumentId
|
||||
data.DocIdentify = doc.Identify
|
||||
data.DocTitle = doc.DocumentName
|
||||
data.Body = doc.Release + "<div class='wiki-bottom-left'>上一篇: <a href='/docs/" + PrevPath + "' rel='prev'>" + PrevName + "</a><br />下一篇: <a href='/docs/" + NextPath + "' rel='next'>" + NextName + "</a><br /></div>"
|
||||
data.Body = doc.Release + "<div class='wiki-bottom-left'>"+ i18n.Tr(c.Lang, "doc.prev") + ": <a href='/docs/" + PrevPath + "' rel='prev'>" + PrevName + "</a><br />" + i18n.Tr(c.Lang, "doc.next") + ": <a href='/docs/" + NextPath + "' rel='next'>" + NextName + "</a><br /></div>"
|
||||
data.Title = doc.DocumentName + " - Powered by MinDoc"
|
||||
data.Version = doc.Version
|
||||
data.ViewCount = doc.ViewCount
|
||||
@@ -283,7 +283,7 @@ func (c *DocumentController) Read() {
|
||||
c.Data["Model"] = bookResult
|
||||
c.Data["Result"] = template.HTML(tree)
|
||||
c.Data["Title"] = doc.DocumentName
|
||||
c.Data["Content"] = template.HTML(doc.Release + "<div class='wiki-bottom-left'>上一篇: <a href='/docs/" + PrevPath + "' rel='prev'>" + PrevName + "</a><br />下一篇: <a href='/docs/" + NextPath + "' rel='next'>" + NextName + "</a><br /></div>")
|
||||
c.Data["Content"] = template.HTML(doc.Release + "<div class='wiki-bottom-left'>"+ i18n.Tr(c.Lang, "doc.prev") + ": <a href='/docs/" + PrevPath + "' rel='prev'>" + PrevName + "</a><br />" + i18n.Tr(c.Lang, "doc.next") + ": <a href='/docs/" + NextPath + "' rel='next'>" + NextName + "</a><br /></div>")
|
||||
c.Data["ViewCount"] = doc.ViewCount
|
||||
c.Data["FoldSetting"] = "closed"
|
||||
if bookResult.Editor == EditorCherryMarkdown {
|
||||
|
||||
@@ -1017,15 +1017,14 @@ func (c *ManagerController) TeamChangeMemberRole() {
|
||||
if memberId <= 0 || roleId <= 0 || teamId <= 0 || roleId > int(conf.BookObserver) {
|
||||
c.JsonResult(5001, i18n.Tr(c.Lang, "message.param_error"))
|
||||
}
|
||||
|
||||
teamMember, err := models.NewTeamMember().ChangeRoleId(teamId, memberId, conf.BookRole(roleId))
|
||||
|
||||
if err != nil {
|
||||
c.JsonResult(5002, err.Error())
|
||||
} else {
|
||||
teamMember.SetLang(c.Lang).Include()
|
||||
c.JsonResult(0, "OK", teamMember)
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// 团队项目列表.
|
||||
|
||||
Reference in New Issue
Block a user