Toggle navigation
Toggle navigation
This project
Loading...
Sign in
kykint
/
TELEGRAMBOT
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
김건
2019-06-06 19:47:28 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
1a69dca8e503755e798b679152ec67e0ca0692f8
1a69dca8
1 parent
e2e95e19
change /t info, add /l info, image info
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
2 deletions
app.js
app.js
View file @
1a69dca
...
...
@@ -139,7 +139,26 @@ bot.onText(/^\/(t|translate)($| ((.|\n)+))/, (msg, match) => {
});
bot
.
onText
(
/^
\/(
h|help
)
/
,
(
msg
,
match
)
=>
{
const
chatId
=
msg
.
chat
.
id
;
const
helpText
=
"/t\nIt can Translate Korean into English or the language of other countries into Korean.\
\nusage: /t [msg] or reply /t"
const
helpText
=
"/t\n사용법:[msg] 또는 /t [msg] 또는 reply /t\n1. msg를 유저의 기본언어->\
영어, 외국어->유저의 기본언어로 번역합니다.\n2. /l 커맨드를 이용해 타겟 언어를 설정하면 유저의\
본언어가 타겟 언어로 번역됩니다.\n\n/l\n사용법: /l\n1. 언어를 번역할 타겟 언어를 설정할 수\
습니다.\n2. 언어 코드를 알고 싶다면 /lc 를 참고하세요.\n3. 가능한 번역을 알고싶다면 /pt 를 참고\
하세요.\n\n이미지 속 텍스트 번역\n사용법: 사진을 보내세요!\n1. 이미지 속 텍스트를 번역해줍니다.\
역 옵션은 t와 같습니다."
bot
.
sendMessage
(
chatId
,
helpText
);
});
bot
.
onText
(
/^
\/
pt/
,
(
msg
,
match
)
=>
{
const
chatId
=
msg
.
chat
.
id
;
const
helpText
=
"가능한 번역:\nko <-> en/ja/zh-CN/zh-TW/vi/id/th/de/ru/es/it/fr\nen <->\
a/zh-CN/zh-TW/fr\nja <-> zh-CN/zh-TW\nzh-CN <-> zh-TW"
bot
.
sendMessage
(
chatId
,
helpText
);
});
bot
.
onText
(
/^
\/
lc/
,
(
msg
,
match
)
=>
{
const
chatId
=
msg
.
chat
.
id
;
const
helpText
=
"언어 코드:\nko = korean\nen = english\nja = japanese\nzh-CN = Simplified\
hinese\nzh-TW = Traditional Chinese\nvi = Vietnamese\nid = Indonesian\nth = Thai\nde = German\nru\
Russian\nes = Espanyan(Spanish)\nit = Italian\nfr = French"
bot
.
sendMessage
(
chatId
,
helpText
);
});
\ No newline at end of file
...
...
Please
register
or
login
to post a comment