Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-app-operator-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lanbaoming
jiedao-app-operator-master
Commits
b996977a
Commit
b996977a
authored
Sep 11, 2023
by
dragondean@qq.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
完善国际化翻译
parent
a1ea1311
Changes
2
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
218 additions
and
50 deletions
+218
-50
collectI18nMessages.js
collectI18nMessages.js
+99
-25
en_US.json
src/i18n/languages/en_US.json
+119
-25
No files found.
collectI18nMessages.js
View file @
b996977a
const
fs
=
require
(
'
fs
'
);
const
root
=
"
./src
"
const
savePath
=
"
./src/i18n/languages/en_US.json
"
let
allFiles
=
[]
const
savePath
=
"
./src/i18n/languages/en_US.json
"
const
crypto
=
require
(
'
crypto
'
);
const
https
=
require
(
'
https
'
);
const
querystring
=
require
(
'
querystring
'
);
// 你的百度翻译API的App ID和密钥
const
appId
=
"
20230911001813245
"
const
appKey
=
"
lJlOnktUO0pn8G_MZ10O
"
const
translateText
=
(
text
,
fromLang
=
'
zh
'
,
toLang
=
'
en
'
)
=>
{
return
new
Promise
((
resolve
,
reject
)
=>
{
// 百度翻译API的接口地址
const
apiUrl
=
"
https://fanyi-api.baidu.com/api/trans/vip/translate
"
;
// 构建请求参数
const
params
=
{
q
:
text
,
from
:
fromLang
,
to
:
toLang
,
appid
:
appId
,
salt
:
Math
.
random
().
toString
().
slice
(
2
),
sign
:
''
};
// 生成签名
const
signStr
=
appId
+
text
+
params
.
salt
+
appKey
;
params
.
sign
=
require
(
'
crypto
'
).
createHash
(
'
md5
'
).
update
(
signStr
).
digest
(
'
hex
'
);
// 发送HTTP POST请求
const
options
=
{
hostname
:
'
fanyi-api.baidu.com
'
,
port
:
443
,
path
:
'
/api/trans/vip/translate
'
,
method
:
'
POST
'
,
headers
:
{
'
Content-Type
'
:
'
application/x-www-form-urlencoded
'
,
'
Content-Length
'
:
querystring
.
stringify
(
params
).
length
}
};
const
req
=
https
.
request
(
options
,
(
res
)
=>
{
let
data
=
''
;
res
.
on
(
'
data
'
,
(
chunk
)
=>
{
data
+=
chunk
;
});
res
.
on
(
'
end
'
,
()
=>
{
console
.
log
(
'
翻译结果:
'
,
data
);
resolve
(
JSON
.
parse
(
data
).
trans_result
[
0
].
dst
)
});
});
req
.
on
(
'
error
'
,
(
err
)
=>
{
console
.
error
(
err
);
});
req
.
write
(
querystring
.
stringify
(
params
));
req
.
end
();
})
};
function
getFiles
(
dir
){
let
files
=
fs
.
readdirSync
(
dir
)
...
...
@@ -14,11 +75,6 @@ function getFiles(dir){
}
getFiles
(
root
)
/* allFiles = [
'src/views/ecw/box/shippingSea/utils.js',
'src/components/bpmnProcessDesigner/package/designer/plugins/content-pad/contentPadProvider.js'
]
console.log(allFiles) */
let
messages
=
new
Set
()
allFiles
.
forEach
(
file
=>
{
let
data
=
fs
.
readFileSync
(
file
,
{
encoding
:
'
utf-8
'
})
...
...
@@ -30,11 +86,29 @@ allFiles.forEach(file => {
}
})
let
obj
=
require
(
savePath
)
Array
.
from
(
messages
).
forEach
(
word
=>
{
if
(
!
obj
[
word
])
obj
[
word
]
=
""
})
fs
.
writeFileSync
(
savePath
,
JSON
.
stringify
(
obj
,
null
,
4
))
console
.
log
(
messages
)
console
.
warn
(
`本次共提取
${
messages
.
size
}
个待翻译内容,保存于
${
savePath
}
`
)
\ No newline at end of file
let
autoTransCnt
=
0
async
function
translate
(
obj
){
// 对未翻译内容调用百度翻译进行翻译操作,有变量的不做处理
for
(
let
text
in
obj
){
if
(
obj
[
text
]
||
text
.
includes
(
'
{
'
))
continue
const
textEn
=
await
translateText
(
text
)
console
.
log
(
`
${
text
}
=>
${
textEn
}
\n`
)
obj
[
text
]
=
textEn
autoTransCnt
++
// 账号请求频率限制1ps
await
new
Promise
(
resolve
=>
setTimeout
(
resolve
,
1000
))
}
}
translate
(
obj
).
then
(
res
=>
{
fs
.
writeFileSync
(
savePath
,
JSON
.
stringify
(
obj
,
null
,
4
))
console
.
log
(
messages
)
console
.
warn
(
`本次共提取
${
messages
.
size
}
个待翻译内容,保存于
${
savePath
}
`
)
console
.
log
(
`已调用百度api自动翻译
${
autoTransCnt
}
个内容\n`
)
console
.
log
(
"
done!
"
)
})
src/i18n/languages/en_US.json
View file @
b996977a
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment