🌐 Added Japanese user guide (#11591)

This commit is contained in:
mpcjazz 2024-05-31 11:05:57 +09:00 committed by GitHub
parent d677573576
commit e8053d1b1f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
96 changed files with 61332 additions and 2 deletions

View file

@ -260,6 +260,7 @@ func Mount(boxID string) (alreadyMount bool, err error) {
"20210808180117-czj9bvb": "20200812220555-lj3enxa",
"20211226090932-5lcq56f": "20211226115423-d5z1joq",
"20210808180117-6v0mkxr": "20200923234011-ieuun1p",
"20240530133126-axarxgx": "20240530101000-4qitucx",
}
startID = guideStartID[boxID]
if nil != treenode.GetBlockTree(startID) {
@ -279,5 +280,5 @@ func Mount(boxID string) (alreadyMount bool, err error) {
}
func IsUserGuide(boxID string) bool {
return "20210808180117-czj9bvb" == boxID || "20210808180117-6v0mkxr" == boxID || "20211226090932-5lcq56f" == boxID
return "20210808180117-czj9bvb" == boxID || "20210808180117-6v0mkxr" == boxID || "20211226090932-5lcq56f" == boxID || "20240530133126-axarxgx" == boxID
}