Removed unofficial from app

This commit is contained in:
Igor Zhukov 2014-11-14 14:07:58 +03:00
parent ecc1bd4207
commit c40e5d08c6
2 changed files with 2 additions and 7 deletions

View File

@ -43,11 +43,6 @@
<h3 class="welcome_header"><strong>Telegram</strong> Web</h3> <h3 class="welcome_header"><strong>Telegram</strong> Web</h3>
<!-- <div class="welcome_text">
<p>This is an unofficial web-client for the <strong>Telegram Messenger</strong>.</p>
<p>It's still an <strong>alpha-version</strong> and may not be 200% reliable</p>
</div> -->
<div class="bad_browser_wrap"> <div class="bad_browser_wrap">
<h2>Your browser is outdated!</h2> <h2>Your browser is outdated!</h2>

View File

@ -55,11 +55,11 @@ Here again see the [angular docs](https://docs.angularjs.org/guide/i18n).
Such strings will have the word _pluralize_ in their key. Such strings will have the word _pluralize_ in their key.
And finally: strings which keys have a `_md` suffix get parsed by a simple markdown parser that places everything between `**`s in `<strong/>` tags and replaces newlines with `<br/>` e.g.: And finally: strings which keys have a `_md` suffix get parsed by a simple markdown parser that places everything between `**`s in `<strong/>` tags and replaces newlines with `<br/>` e.g.:
> "welcome_text_1_md": "This is an unofficial web-client for the **Telegram Messenger**.", > "welcome_text_1_md": "This is a web-client for the **Telegram Messenger**.",
becomes becomes
```html ```html
This is an unofficial web-client for the <strong>Telegram Messenger</strong>. This is a web-client for the <strong>Telegram Messenger</strong>.
``` ```
Including html markup in the messages directly isn't supported and any contained markup will be escaped before inserting. Including html markup in the messages directly isn't supported and any contained markup will be escaped before inserting.