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
kykint
2019-06-06 21:00:56 +0900
Browse Files
Options
Browse Files
Download
Plain Diff
Commit
60845136f36583d93152ad97bafbccb469061098
60845136
2 parents
8916d40c
1a69dca8
Merge remote-tracking branch 'origin/h_command' into dev
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
0 deletions
app.js
app.js
View file @
6084513
...
...
@@ -364,3 +364,29 @@ bot.on('callback_query', (query) => {
bot
.
answerCallbackQuery
(
queryId
,
options
);
})
});
bot
.
onText
(
/^
\/(
h|help
)
/
,
(
msg
,
match
)
=>
{
const
chatId
=
msg
.
chat
.
id
;
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
);
});
...
...
Please
register
or
login
to post a comment