mirror of
https://github.com/MarshalX/telegram-crawler.git
synced 2024-12-29 15:59:13 +01:00
Update content of files
This commit is contained in:
parent
c8ce93a240
commit
7c95f369c3
7 changed files with 56 additions and 56 deletions
|
@ -83,11 +83,11 @@
|
|||
|
||||
<h4><a class="anchor" name="keyboard-button-web-apps" href="#keyboard-button-web-apps"><i class="anchor-icon"></i></a>Keyboard Button Web Apps</h4>
|
||||
<blockquote>
|
||||
<p><strong>TL;DR:</strong> Web Apps launched from a <strong>web_app</strong> type <a href="/bots/api#keyboardbutton">keyboard button</a> can send data back to the bot in a <em>service message</em> using <a href="/bots/api#">Telegram.WebApp.sendData</a>. This makes it possible for the bot to produce a response without communicating with any external servers.</p>
|
||||
<p><strong>TL;DR:</strong> Web Apps launched from a <strong>web_app</strong> type <a href="/bots/api#keyboardbutton">keyboard button</a> can send data back to the bot in a <em>service message</em> using <a href="#initializing-web-apps">Telegram.WebApp.sendData</a>. This makes it possible for the bot to produce a response without communicating with any external servers.</p>
|
||||
</blockquote>
|
||||
<p>Users can interact with bots using <a href="https://core.telegram.org/bots#keyboards">custom keyboards</a>, <a href="https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating">buttons under bot messages</a>, as well as by sending freeform <strong>text messages</strong> or any of the <strong>attachment types</strong> supported by Telegram: photos and videos, files, locations, contacts and polls. For even more flexibility, bots can utilize the full power of <strong>HTML5</strong> to create user-friendly input interfaces.</p>
|
||||
<p>You can send a <strong>web_app</strong> type <a href="/bots/api#keyboardbutton">KeyboardButton</a> that opens a Web App from the specified URL.</p>
|
||||
<p>To transmit data from the user back to the bot, the Web App can call the <a href="/bots/api#">Telegram.WebApp.sendData</a> method. Data will be transmitted to the bot as a String in a service message. The bot can continue communicating with the user after receiving it.</p>
|
||||
<p>To transmit data from the user back to the bot, the Web App can call the <a href="#initializing-web-apps">Telegram.WebApp.sendData</a> method. Data will be transmitted to the bot as a String in a service message. The bot can continue communicating with the user after receiving it.</p>
|
||||
<p><strong>Good for:</strong></p>
|
||||
<ul>
|
||||
<li><strong>Сustom data input interfaces</strong> (a personalized calendar for selecting dates; selecting data from a list with advanced search options; a randomizer that lets the user “spin a wheel” and chooses one of the available options, etc.)</li>
|
||||
|
@ -98,7 +98,7 @@
|
|||
<p><strong>TL;DR:</strong> For more interactive Web Apps like <a href="https://t.me/durgerkingbot">@DurgerKingBot</a>, use a <strong>web_app</strong> type <a href="/bots/api#inlinekeyboardbutton">Inline KeyboardButton</a>, which gets basic user information and can be used to send a message on behalf of the user to the chat with the bot.</p>
|
||||
</blockquote>
|
||||
<p>If receiving text data alone is insufficient or you need a more advanced and personalized interface, you can open a Web App using a <strong>web_app</strong> type <a href="/bots/api#inlinekeyboardbutton">Inline KeyboardButton</a>.</p>
|
||||
<p>From the button, a Web App will open with the URL specified in the button. In addition to the user's <a href="#color-scheme">theme settings</a>, it will receive basic user information (<code>ID</code>, <code>name</code>, <code>username</code>, <code>language_code</code>) and a unique identifier for the session, <strong>query_id</strong>, which allows messages on behalf of the user to be sent back to the bot.</p>
|
||||
<p>From the button, a Web App will open with the URL specified in the button. In addition to the user's <a href="#color-schemes">theme settings</a>, it will receive basic user information (<code>ID</code>, <code>name</code>, <code>username</code>, <code>language_code</code>) and a unique identifier for the session, <strong>query_id</strong>, which allows messages on behalf of the user to be sent back to the bot.</p>
|
||||
<p>The bot can call the Bot API method <a href="/bots/api#answerwebappquery">answerWebAppQuery</a> to send an inline message from the user back to the bot and close the Web App. After receiving the message, the bot can continue communicating with the user.</p>
|
||||
<p><strong>Good for:</strong></p>
|
||||
<ul>
|
||||
|
@ -131,9 +131,9 @@
|
|||
<p><strong>TL;DR:</strong> Web App Bots can request to be added directly to a user's attachment menu, allowing them to be quickly launched from any private chat. To try this mode, open this <a href="https://t.me/durgerkingbot?startattach">attachment menu link</a> for <em>@DurgerKingBot</em>, then use the <img class="icon" src="/file/464001085/2/E4hNXSNQimQ.2503/bf6ffcab3cb3afd43d" alt="Attach"> menu in any <strong>private chat</strong>.</p>
|
||||
</blockquote>
|
||||
<p>Web App Bots can request to be added directly to a user's attachment menu, allowing them to be quickly launched from <strong>any private chat</strong> (with either a <em>user</em> or <em>another bot</em>).</p>
|
||||
<p>Attachment menu integration is currently only available for major advertisers on the <a href="https://promote.telegram.org/basics">Telegram Ad Platform</a>. However, <strong>all bots</strong> can use it in the <a href="#adding-bots-to-the-attachment-menu">test server environment</a>.</p>
|
||||
<p>Attachment menu integration is currently only available for major advertisers on the <a href="https://promote.telegram.org/basics">Telegram Ad Platform</a>. However, <strong>all bots</strong> can use it in the <a href="#using-bots-in-the-test-environment">test server environment</a>.</p>
|
||||
<p>To enable this feature for your bot, open <a href="https://t.me/botfather">@BotFather</a> <a href="#using-bots-in-the-test-environment">from an account on the test server</a> and send the <code>/setattach</code> command – or go to <em>Bot Settings > Configure Attachment Menu</em>. Then specify the URL that will be opened to launch the bot's Web App via its icon in the attachment menu.</p>
|
||||
<p>In addition to the user's <a href="#color-scheme">theme settings</a>, the bot will receive basic user information (<code>ID</code>, <code>name</code>, <code>username</code>, <code>language_code</code>, <code>photo</code>), as well as public info about the chat partner (<code>ID</code>, <code>name</code>, <code>username</code>, <code>photo</code>) and a unique identifier for the web view session <strong>query_id</strong>, which allows messages of any type to be sent to the chat on behalf of the user that opened the bot.</p>
|
||||
<p>In addition to the user's <a href="#color-schemes">theme settings</a>, the bot will receive basic user information (<code>ID</code>, <code>name</code>, <code>username</code>, <code>language_code</code>, <code>photo</code>), as well as public info about the chat partner (<code>ID</code>, <code>name</code>, <code>username</code>, <code>photo</code>) and a unique identifier for the web view session <strong>query_id</strong>, which allows messages of any type to be sent to the chat on behalf of the user that opened the bot.</p>
|
||||
<p>The bot can call the Bot API method <a href="/bots/api#answerwebappquery">answerWebAppQuery</a>, which sends an inline message from the user via the bot to the private chat where it was launched and closes the Web App.</p>
|
||||
<blockquote>
|
||||
<p>You can read more about adding bots to the attachment menu <a href="#adding-bots-to-the-attachment-menu">here</a>.</p>
|
||||
|
@ -215,7 +215,7 @@
|
|||
<tr>
|
||||
<td>expand()</td>
|
||||
<td>Function</td>
|
||||
<td>A method that expands the Web App to the maximum available height. To find out if the Web App is expanded to the maximum height, refer to the value of the Telegram.WebApp.isExpanded. parameter</td>
|
||||
<td>A method that expands the Web App to the maximum available height. To find out if the Web App is expanded to the maximum height, refer to the value of the <em>Telegram.WebApp.isExpanded</em> parameter</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>close()</td>
|
||||
|
@ -502,8 +502,8 @@ if (hex(HMAC_SHA256(data_check_string, secret_key)) == hash) {
|
|||
<p>To log in to the test environment, use either of the following:</p>
|
||||
<ul>
|
||||
<li><strong>iOS:</strong> tap 10 times on the Settings icon > Accounts > Login to another account > Test.</li>
|
||||
<li><strong>Telegram Desktop (Windows):</strong> open ☰ Settings > Shift + Alt + Click ‘Add Account’ and select ‘Test Server’.</li>
|
||||
<li><strong>MacOS:</strong> click the Settings icon 10 times to open the Debug Menu, ⌘ + click ‘Add Account’ and log in via phone number.</li>
|
||||
<li><strong>Telegram Desktop:</strong> open ☰ Settings > Shift + Alt + Click ‘Add Account’ and select ‘Test Server’.</li>
|
||||
<li><strong>macOS:</strong> click the Settings icon 10 times to open the Debug Menu, ⌘ + click ‘Add Account’ and log in via phone number.</li>
|
||||
</ul>
|
||||
<p>The test environment is completely separate from the main environment, so you will need to create a <strong>new user account</strong> and a <strong>new bot</strong> with @BotFather.</p>
|
||||
<p>After receiving your bot token, you can send requests to the Bot API in this format: </p>
|
||||
|
|
|
@ -1432,7 +1432,7 @@
|
|||
<div class="tr-key-row" data-href="/en/ios/bots_and_payments/Bot.AddToChat.Title" data-langpack="ios" data-section="bots_and_payments" data-key="Bot.AddToChat.Title">
|
||||
<div class="tr-value-media"><a class="tr-value-photo bg-image key-layer" style="background-image:url('https://telegra.ph/file/p/f4580777231/c26ff2e22034a9c05c62e17.jpg?c=117,78,364,364,280,280');" href="/screenshots/10903/phrase/Bot.AddToChat.Title" data-layer><div class="screenshot-key" style="padding:12px 10px 110px 10px;"><div class="key-box"></div></div></a></div>
|
||||
<div class="tr-value-body">
|
||||
|
||||
<span class="has-binding binding"></span>
|
||||
<div class="tr-value-default"><a class="tr-value-link" href="/en/ios/bots_and_payments/Bot.AddToChat.Title"><span class="p-value"><span class="value">Add to Group or Channel</span></span></a></div>
|
||||
<div class="tr-value-key">Bot.AddToChat.Title</div>
|
||||
<div class="tr-value-suggestions">
|
||||
|
@ -1445,7 +1445,7 @@
|
|||
<div class="tr-key-row" data-href="/en/ios/bots_and_payments/Bot.AddToChat.Add.Title" data-langpack="ios" data-section="bots_and_payments" data-key="Bot.AddToChat.Add.Title">
|
||||
<div class="tr-value-media"><a class="tr-value-photo bg-image key-layer" style="background-image:url('https://telegra.ph/file/p/e5d7cef43e6/beb19ccc45b349074271717.jpg?c=160,86,280,280,280,280');" href="/screenshots/10906/phrase/Bot.AddToChat.Add.Title" data-layer><div class="screenshot-key" style="padding:12px 43px 108px 42px;"><div class="key-box"></div></div></a></div>
|
||||
<div class="tr-value-body">
|
||||
|
||||
<span class="has-binding binding"></span>
|
||||
<div class="tr-value-default"><a class="tr-value-link" href="/en/ios/bots_and_payments/Bot.AddToChat.Add.Title"><span class="p-value"><span class="value">Add Bot</span></span></a></div>
|
||||
<div class="tr-value-key">Bot.AddToChat.Add.Title</div>
|
||||
<div class="tr-value-suggestions">
|
||||
|
@ -1458,7 +1458,7 @@
|
|||
<div class="tr-key-row" data-href="/en/ios/bots_and_payments/Bot.AddToChat.Add.AdminRights" data-langpack="ios" data-section="bots_and_payments" data-key="Bot.AddToChat.Add.AdminRights">
|
||||
<div class="tr-value-media"><a class="tr-value-photo bg-image key-layer" style="background-image:url('https://telegra.ph/file/p/e5d7cef43e6/beb19ccc45b349074271717.jpg?c=29,298,280,280,280,280');" href="/screenshots/10906/phrase/Bot.AddToChat.Add.AdminRights" data-layer><div class="screenshot-key" style="padding:35px 49px 82px 7px;"><div class="key-box"></div></div></a></div>
|
||||
<div class="tr-value-body">
|
||||
|
||||
<span class="has-binding binding"></span>
|
||||
<div class="tr-value-default"><a class="tr-value-link" href="/en/ios/bots_and_payments/Bot.AddToChat.Add.AdminRights"><span class="p-value"><span class="value">Admin Rights</span></span></a></div>
|
||||
<div class="tr-value-key">Bot.AddToChat.Add.AdminRights</div>
|
||||
<div class="tr-value-suggestions">
|
||||
|
@ -1471,7 +1471,7 @@
|
|||
<div class="tr-key-row" data-href="/en/ios/bots_and_payments/Bot.AddToChat.Add.AdminAlertTitle" data-langpack="ios" data-section="bots_and_payments" data-key="Bot.AddToChat.Add.AdminAlertTitle">
|
||||
<div class="tr-value-media"><a class="tr-value-photo bg-image key-layer" style="background-image:url('https://telegra.ph/file/p/e5d7cef43e6/beb19ccc45b349074271717.jpg?c=159,437,280,280,280,280');" href="/screenshots/10906/phrase/Bot.AddToChat.Add.AdminAlertTitle" data-layer><div class="screenshot-key" style="padding:52px 11px 68px 10px;"><div class="key-box"></div></div></a></div>
|
||||
<div class="tr-value-body">
|
||||
|
||||
<span class="has-binding binding"></span>
|
||||
<div class="tr-value-default"><a class="tr-value-link" href="/en/ios/bots_and_payments/Bot.AddToChat.Add.AdminAlertTitle"><span class="p-value"><span class="value">Add Bot as Admin?</span></span></a></div>
|
||||
<div class="tr-value-key">Bot.AddToChat.Add.AdminAlertTitle</div>
|
||||
<div class="tr-value-suggestions">
|
||||
|
@ -1562,7 +1562,7 @@
|
|||
<div class="tr-key-row" data-href="/en/ios/bots_and_payments/Bot.AddToChatInfo" data-langpack="ios" data-section="bots_and_payments" data-key="Bot.AddToChatInfo">
|
||||
<div class="tr-value-media"><a class="tr-value-photo bg-image key-layer" style="background-image:url('https://telegra.ph/file/p/73347360d50/596fa0753d25f75083c1517.jpg?c=19,458,516,516,280,280');" href="/screenshots/10928/phrase/Bot.AddToChatInfo" data-layer><div class="screenshot-key" style="padding:75px 14px 54px 6px;"><div class="key-box"></div></div></a></div>
|
||||
<div class="tr-value-body">
|
||||
|
||||
<span class="has-binding binding"></span>
|
||||
<div class="tr-value-default"><a class="tr-value-link" href="/en/ios/bots_and_payments/Bot.AddToChatInfo"><span class="p-value"><span class="value">This bot is able to manage a group or channel.</span></span></a></div>
|
||||
<div class="tr-value-key">Bot.AddToChatInfo</div>
|
||||
<div class="tr-value-suggestions">
|
||||
|
@ -1588,7 +1588,7 @@
|
|||
<div class="tr-key-row" data-href="/en/ios/bots_and_payments/WebApp.OpenWebViewAlertTitle" data-langpack="ios" data-section="bots_and_payments" data-key="WebApp.OpenWebViewAlertTitle">
|
||||
<div class="tr-value-media"><a class="tr-value-photo bg-image key-layer" style="background-image:url('https://telegra.ph/file/p/ed72986330c/1214dd854cf43211524f317.jpg?c=159,439,280,280,280,280');" href="/screenshots/10938/phrase/WebApp.OpenWebViewAlertTitle" data-layer><div class="screenshot-key" style="padding:51px 21px 67px 21px;"><div class="key-box"></div></div></a></div>
|
||||
<div class="tr-value-body">
|
||||
|
||||
<span class="has-binding binding"></span>
|
||||
<div class="tr-value-default"><a class="tr-value-link" href="/en/ios/bots_and_payments/WebApp.OpenWebViewAlertTitle"><span class="p-value"><span class="value">Open Web App</span></span></a></div>
|
||||
<div class="tr-value-key">WebApp.OpenWebViewAlertTitle</div>
|
||||
<div class="tr-value-suggestions">
|
||||
|
|
|
@ -15087,7 +15087,7 @@
|
|||
<div class="tr-key-row" data-href="/en/ios/groups_and_channels/Bot.AddToChat.Add.AdminAlertTitle" data-langpack="ios" data-section="groups_and_channels" data-key="Bot.AddToChat.Add.AdminAlertTitle">
|
||||
<div class="tr-value-media"><a class="tr-value-photo bg-image key-layer" style="background-image:url('https://telegra.ph/file/p/75cfba36de8/1a650706d459f50d8e80717.jpg?c=159,437,280,280,280,280');" href="/screenshots/10943/phrase/Bot.AddToChat.Add.AdminAlertTitle" data-layer><div class="screenshot-key" style="padding:52px 11px 68px 10px;"><div class="key-box"></div></div></a></div>
|
||||
<div class="tr-value-body">
|
||||
|
||||
<span class="has-binding binding"></span>
|
||||
<div class="tr-value-default"><a class="tr-value-link" href="/en/ios/groups_and_channels/Bot.AddToChat.Add.AdminAlertTitle"><span class="p-value"><span class="value">Add Bot as Admin?</span></span></a></div>
|
||||
<div class="tr-value-key">Bot.AddToChat.Add.AdminAlertTitle</div>
|
||||
<div class="tr-value-suggestions">
|
||||
|
|
|
@ -223,7 +223,7 @@
|
|||
<div class="tr-key-row" data-href="/en/ios/unsorted/Bot.AddToChat.Add.MemberAlertTitle" data-langpack="ios" data-section="unsorted" data-key="Bot.AddToChat.Add.MemberAlertTitle">
|
||||
<div class="tr-value-media"><div class="tr-value-photo"></div></div>
|
||||
<div class="tr-value-body">
|
||||
|
||||
<span class="has-binding binding"></span>
|
||||
<div class="tr-value-default"><a class="tr-value-link" href="/en/ios/unsorted/Bot.AddToChat.Add.MemberAlertTitle"><span class="p-value"><span class="value">Add Bot as Member?</span></span></a></div>
|
||||
<div class="tr-value-key">Bot.AddToChat.Add.MemberAlertTitle</div>
|
||||
<div class="tr-value-suggestions">
|
||||
|
|
|
@ -1,4 +1,30 @@
|
|||
<div class="tr-key-row-wrap">
|
||||
<div class="tr-key-row" data-href="/en/macos/unsorted/WebApp.Attach.Success" data-langpack="macos" data-section="unsorted" data-key="WebApp.Attach.Success">
|
||||
<div class="tr-value-media"><div class="tr-value-photo"></div></div>
|
||||
<div class="tr-value-body">
|
||||
|
||||
<div class="tr-value-default"><a class="tr-value-link" href="/en/macos/unsorted/WebApp.Attach.Success"><span class="p-value"><span class="value">You successfully added "<mark class="token">%@</mark>" to attach menu.</span></span></a></div>
|
||||
<div class="tr-value-key">WebApp.Attach.Success</div>
|
||||
<div class="tr-value-suggestions">
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div><div class="tr-key-row-wrap">
|
||||
<div class="tr-key-row" data-href="/en/macos/unsorted/WebApp.AttachRemove.Success" data-langpack="macos" data-section="unsorted" data-key="WebApp.AttachRemove.Success">
|
||||
<div class="tr-value-media"><div class="tr-value-photo"></div></div>
|
||||
<div class="tr-value-body">
|
||||
|
||||
<div class="tr-value-default"><a class="tr-value-link" href="/en/macos/unsorted/WebApp.AttachRemove.Success"><span class="p-value"><span class="value">You successfully removed "<mark class="token">%@</mark>" from attach menu.</span></span></a></div>
|
||||
<div class="tr-value-key">WebApp.AttachRemove.Success</div>
|
||||
<div class="tr-value-suggestions">
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div><div class="tr-key-row-wrap">
|
||||
<div class="tr-key-row" data-href="/en/macos/unsorted/NotificationSound.Tones.Upload" data-langpack="macos" data-section="unsorted" data-key="NotificationSound.Tones.Upload">
|
||||
<div class="tr-value-media"><div class="tr-value-photo"></div></div>
|
||||
<div class="tr-value-body">
|
||||
|
@ -28,7 +54,7 @@
|
|||
<div class="tr-key-row" data-href="/en/macos/unsorted/NotificationSound.Tones.Title" data-langpack="macos" data-section="unsorted" data-key="NotificationSound.Tones.Title">
|
||||
<div class="tr-value-media"><div class="tr-value-photo"></div></div>
|
||||
<div class="tr-value-body">
|
||||
|
||||
<span class="has-binding binding"></span>
|
||||
<div class="tr-value-default"><a class="tr-value-link" href="/en/macos/unsorted/NotificationSound.Tones.Title"><span class="p-value"><span class="value">TELEGRAM TONES</span></span></a></div>
|
||||
<div class="tr-value-key">NotificationSound.Tones.Title</div>
|
||||
<div class="tr-value-suggestions">
|
||||
|
@ -67,7 +93,7 @@
|
|||
<div class="tr-key-row" data-href="/en/macos/unsorted/WebApp.FirstOpen.Title" data-langpack="macos" data-section="unsorted" data-key="WebApp.FirstOpen.Title">
|
||||
<div class="tr-value-media"><div class="tr-value-photo"></div></div>
|
||||
<div class="tr-value-body">
|
||||
|
||||
<span class="has-binding binding"></span>
|
||||
<div class="tr-value-default"><a class="tr-value-link" href="/en/macos/unsorted/WebApp.FirstOpen.Title"><span class="p-value"><span class="value">Open Web App</span></span></a></div>
|
||||
<div class="tr-value-key">WebApp.FirstOpen.Title</div>
|
||||
<div class="tr-value-suggestions">
|
||||
|
@ -151,32 +177,6 @@
|
|||
<div class="tr-value-suggestions">
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div><div class="tr-key-row-wrap">
|
||||
<div class="tr-key-row" data-href="/en/macos/unsorted/WebApp.AttachRemove.Success" data-langpack="macos" data-section="unsorted" data-key="WebApp.AttachRemove.Success">
|
||||
<div class="tr-value-media"><div class="tr-value-photo"></div></div>
|
||||
<div class="tr-value-body">
|
||||
|
||||
<div class="tr-value-default"><a class="tr-value-link" href="/en/macos/unsorted/WebApp.AttachRemove.Success"><span class="p-value"><span class="value">You sucessfully removed "<mark class="token">%@</mark>" from attach menu.</span></span></a></div>
|
||||
<div class="tr-value-key">WebApp.AttachRemove.Success</div>
|
||||
<div class="tr-value-suggestions">
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div><div class="tr-key-row-wrap">
|
||||
<div class="tr-key-row" data-href="/en/macos/unsorted/WebApp.Attach.Success" data-langpack="macos" data-section="unsorted" data-key="WebApp.Attach.Success">
|
||||
<div class="tr-value-media"><div class="tr-value-photo"></div></div>
|
||||
<div class="tr-value-body">
|
||||
|
||||
<div class="tr-value-default"><a class="tr-value-link" href="/en/macos/unsorted/WebApp.Attach.Success"><span class="p-value"><span class="value">You sucessfully added "<mark class="token">%@</mark>" to attach menu.</span></span></a></div>
|
||||
<div class="tr-value-key">WebApp.Attach.Success</div>
|
||||
<div class="tr-value-suggestions">
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -223,7 +223,7 @@
|
|||
<div class="tr-key-row" data-href="/en/macos/unsorted/Channel.AddBot.AdminRights" data-langpack="macos" data-section="unsorted" data-key="Channel.AddBot.AdminRights">
|
||||
<div class="tr-value-media"><div class="tr-value-photo"></div></div>
|
||||
<div class="tr-value-body">
|
||||
|
||||
<span class="has-binding binding"></span>
|
||||
<div class="tr-value-default"><a class="tr-value-link" href="/en/macos/unsorted/Channel.AddBot.AdminRights"><span class="p-value"><span class="value">Admin Rights</span></span></a></div>
|
||||
<div class="tr-value-key">Channel.AddBot.AdminRights</div>
|
||||
<div class="tr-value-suggestions">
|
||||
|
@ -327,7 +327,7 @@
|
|||
<div class="tr-key-row" data-href="/en/macos/unsorted/Channel.AddBot.Confirm.Title.Member" data-langpack="macos" data-section="unsorted" data-key="Channel.AddBot.Confirm.Title.Member">
|
||||
<div class="tr-value-media"><div class="tr-value-photo"></div></div>
|
||||
<div class="tr-value-body">
|
||||
|
||||
<span class="has-binding binding"></span>
|
||||
<div class="tr-value-default"><a class="tr-value-link" href="/en/macos/unsorted/Channel.AddBot.Confirm.Title.Member"><span class="p-value"><span class="value">Add Bot as Member?</span></span></a></div>
|
||||
<div class="tr-value-key">Channel.AddBot.Confirm.Title.Member</div>
|
||||
<div class="tr-value-suggestions">
|
||||
|
@ -340,7 +340,7 @@
|
|||
<div class="tr-key-row" data-href="/en/macos/unsorted/Channel.AddBot.Confirm.Title.Admin" data-langpack="macos" data-section="unsorted" data-key="Channel.AddBot.Confirm.Title.Admin">
|
||||
<div class="tr-value-media"><div class="tr-value-photo"></div></div>
|
||||
<div class="tr-value-body">
|
||||
|
||||
<span class="has-binding binding"></span>
|
||||
<div class="tr-value-default"><a class="tr-value-link" href="/en/macos/unsorted/Channel.AddBot.Confirm.Title.Admin"><span class="p-value"><span class="value">Add Bot as Admin?</span></span></a></div>
|
||||
<div class="tr-value-key">Channel.AddBot.Confirm.Title.Admin</div>
|
||||
<div class="tr-value-suggestions">
|
||||
|
@ -353,7 +353,7 @@
|
|||
<div class="tr-key-row" data-href="/en/macos/unsorted/Channel.AddBot.Button.Member" data-langpack="macos" data-section="unsorted" data-key="Channel.AddBot.Button.Member">
|
||||
<div class="tr-value-media"><div class="tr-value-photo"></div></div>
|
||||
<div class="tr-value-body">
|
||||
|
||||
<span class="has-binding binding"></span>
|
||||
<div class="tr-value-default"><a class="tr-value-link" href="/en/macos/unsorted/Channel.AddBot.Button.Member"><span class="p-value"><span class="value">Add Bot as Member</span></span></a></div>
|
||||
<div class="tr-value-key">Channel.AddBot.Button.Member</div>
|
||||
<div class="tr-value-suggestions">
|
||||
|
@ -379,7 +379,7 @@
|
|||
<div class="tr-key-row" data-href="/en/macos/unsorted/Channel.AddBot.Title" data-langpack="macos" data-section="unsorted" data-key="Channel.AddBot.Title">
|
||||
<div class="tr-value-media"><div class="tr-value-photo"></div></div>
|
||||
<div class="tr-value-body">
|
||||
|
||||
<span class="has-binding binding"></span>
|
||||
<div class="tr-value-default"><a class="tr-value-link" href="/en/macos/unsorted/Channel.AddBot.Title"><span class="p-value"><span class="value">Add Bot</span></span></a></div>
|
||||
<div class="tr-value-key">Channel.AddBot.Title</div>
|
||||
<div class="tr-value-suggestions">
|
||||
|
@ -392,7 +392,7 @@
|
|||
<div class="tr-key-row" data-href="/en/macos/unsorted/SelectPeers.Title.SelectGroupOrChannel" data-langpack="macos" data-section="unsorted" data-key="SelectPeers.Title.SelectGroupOrChannel">
|
||||
<div class="tr-value-media"><div class="tr-value-photo"></div></div>
|
||||
<div class="tr-value-body">
|
||||
|
||||
<span class="has-binding binding"></span>
|
||||
<div class="tr-value-default"><a class="tr-value-link" href="/en/macos/unsorted/SelectPeers.Title.SelectGroupOrChannel"><span class="p-value"><span class="value">Add to Group or Channel</span></span></a></div>
|
||||
<div class="tr-value-key">SelectPeers.Title.SelectGroupOrChannel</div>
|
||||
<div class="tr-value-suggestions">
|
||||
|
@ -405,7 +405,7 @@
|
|||
<div class="tr-key-row" data-href="/en/macos/unsorted/PeerInfo.BotAddTo" data-langpack="macos" data-section="unsorted" data-key="PeerInfo.BotAddTo">
|
||||
<div class="tr-value-media"><div class="tr-value-photo"></div></div>
|
||||
<div class="tr-value-body">
|
||||
|
||||
<span class="has-binding binding"></span>
|
||||
<div class="tr-value-default"><a class="tr-value-link" href="/en/macos/unsorted/PeerInfo.BotAddTo"><span class="p-value"><span class="value">Add To Group or Channel</span></span></a></div>
|
||||
<div class="tr-value-key">PeerInfo.BotAddTo</div>
|
||||
<div class="tr-value-suggestions">
|
||||
|
@ -418,7 +418,7 @@
|
|||
<div class="tr-key-row" data-href="/en/macos/unsorted/PeerInfo.BotAddTo.Info" data-langpack="macos" data-section="unsorted" data-key="PeerInfo.BotAddTo.Info">
|
||||
<div class="tr-value-media"><div class="tr-value-photo"></div></div>
|
||||
<div class="tr-value-body">
|
||||
|
||||
<span class="has-binding binding"></span>
|
||||
<div class="tr-value-default"><a class="tr-value-link" href="/en/macos/unsorted/PeerInfo.BotAddTo.Info"><span class="p-value"><span class="value">This bot is able to manage group or channel</span></span></a></div>
|
||||
<div class="tr-value-key">PeerInfo.BotAddTo.Info</div>
|
||||
<div class="tr-value-suggestions">
|
||||
|
@ -444,7 +444,7 @@
|
|||
<div class="tr-key-row" data-href="/en/macos/unsorted/PhoneNumber.Code.Title" data-langpack="macos" data-section="unsorted" data-key="PhoneNumber.Code.Title">
|
||||
<div class="tr-value-media"><div class="tr-value-photo"></div></div>
|
||||
<div class="tr-value-body">
|
||||
|
||||
<span class="has-binding binding"></span>
|
||||
<div class="tr-value-default"><a class="tr-value-link" href="/en/macos/unsorted/PhoneNumber.Code.Title"><span class="p-value"><span class="value">Enter Code</span></span></a></div>
|
||||
<div class="tr-value-key">PhoneNumber.Code.Title</div>
|
||||
<div class="tr-value-suggestions">
|
||||
|
@ -10549,7 +10549,7 @@
|
|||
<div class="tr-key-row" data-href="/en/macos/unsorted/TwoStepAuth.EnterEmailCode" data-langpack="macos" data-section="unsorted" data-key="TwoStepAuth.EnterEmailCode">
|
||||
<div class="tr-value-media"><div class="tr-value-photo"></div></div>
|
||||
<div class="tr-value-body">
|
||||
<span class="has-binding binding"></span>
|
||||
|
||||
<div class="tr-value-default"><a class="tr-value-link" href="/en/macos/unsorted/TwoStepAuth.EnterEmailCode"><span class="p-value"><span class="value">Enter Code</span></span></a></div>
|
||||
<div class="tr-value-key">TwoStepAuth.EnterEmailCode</div>
|
||||
<div class="tr-value-suggestions">
|
||||
|
|
|
@ -9275,7 +9275,7 @@
|
|||
<div class="tr-value-media"><a class="tr-value-photo bg-image key-layer" style="background-image:url('https://telegra.ph/file/p/396b5806e5a/f587cc3fba6295d4a4ad516.jpg?c=9,149,280,280,280,280');" href="/screenshots/10995/phrase/lng_ringtones_box_about" data-layer><div class="screenshot-key" style="padding:95px 16px 24px 14px;"><div class="key-box"></div></div></a></div>
|
||||
<div class="tr-value-body">
|
||||
|
||||
<div class="tr-value-default"><a class="tr-value-link" href="/en/tdesktop/settings/lng_ringtones_box_about"><span class="p-value"><span class="value">Click on any short voice note or mp3 file in chat and select "Save for Notifications". It will appear here.</span></span></a></div>
|
||||
<div class="tr-value-default"><a class="tr-value-link" href="/en/tdesktop/settings/lng_ringtones_box_about"><span class="p-value"><span class="value">Right click on any short voice note or mp3 file in chat and select "Save for Notifications". It will appear here.</span></span></a></div>
|
||||
<div class="tr-value-key">lng_ringtones_box_about</div>
|
||||
<div class="tr-value-suggestions">
|
||||
|
||||
|
|
|
@ -327,7 +327,7 @@
|
|||
<div class="tr-key-row" data-href="/en/tdesktop/unsorted/lng_bot_add_title" data-langpack="tdesktop" data-section="unsorted" data-key="lng_bot_add_title">
|
||||
<div class="tr-value-media"><div class="tr-value-photo"></div></div>
|
||||
<div class="tr-value-body">
|
||||
|
||||
<span class="has-binding binding"></span>
|
||||
<div class="tr-value-default"><a class="tr-value-link" href="/en/tdesktop/unsorted/lng_bot_add_title"><span class="p-value"><span class="value">Add Bot</span></span></a></div>
|
||||
<div class="tr-value-key">lng_bot_add_title</div>
|
||||
<div class="tr-value-suggestions">
|
||||
|
|
Loading…
Reference in a new issue