This commit is contained in:
tangly1024
2021-09-27 09:33:21 +08:00
parent 22ca7f6d63
commit dfc0f645d4
76 changed files with 3650 additions and 2 deletions

21
lib/cjk.js Normal file
View File

@@ -0,0 +1,21 @@
const BLOG = require('../blog.config')
module.exports = function () {
switch (BLOG.lang.toLowerCase()) {
case 'zh-cn':
case 'zh-sg':
return 'SC'
case 'zh':
case 'zh-hk':
case 'zh-tw':
return 'TC'
case 'ja':
case 'ja-jp':
return 'JP'
case 'ko':
case 'ko-kr':
return 'KR'
default:
return null
}
}