-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlang.php
29 lines (26 loc) · 1.09 KB
/
lang.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
/**
* Language File
*
* @author Naziks <mail4nazarko@gmail.com>
* @copyright 2019 - Naziks
* @version 1.1
* @link https://github.com/naziks/TGbot-template
*/
$_LANG = Array(
"start" => "<b>Hello, world!</b>" . "\n\n" .
"<pre>Structure of bot:</pre>" . "\n" .
"<b>Telegram bot</b>"."\n\n" .
"├── <b>classes</b>"."\n".
"│ ├── <b>tg.class.php</b> - <i>Telegram API class</i>"."\n".
"│ └── <b>db.class.php</b> - <i>Database class</i>"."\n".
"├── <b>query_type</b>"."\n".
"│ ├── <b>inline_button.php</b> - <i>Message type inline button</i>"."\n".
"│ ├── <b>inline_message.php</b> - <i>Message type inline query</i>"."\n".
"│ └── <b>simple_message.php</b> - <i>Message type simple message</i>"."\n".
"├── <b>lang.php</b> - <i>language file</i>"."\n".
"├── <b>bot.php</b> - <i>Main file, requested by WebHook</i>"."\n".
"├── <b>var.php</b> - <i>Main variables of bot</i>"."\n".
"├── <b>lang.php </b> - <i>language file</i>"."\n".
"└── <b>debug.php</b> - <i>extra debug file</i>"."\n"
);