Telegram Web, preconfigured for usage in I2P.
http://web.telegram.i2p/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.3 KiB
32 lines
1.3 KiB
10 years ago
|
<span ng-switch="::historyMessage.action._">
|
||
|
<span ng-switch-when="messageActionChatCreate">
|
||
|
created the group «<strong ng-bind-html="::historyMessage.action.rTitle"></strong>»
|
||
|
</span>
|
||
|
<span ng-switch-when="messageActionChatEditTitle">
|
||
|
changed group name to «<strong ng-bind-html="::historyMessage.action.rTitle"></strong>»
|
||
|
</span>
|
||
|
<span ng-switch-when="messageActionChatEditPhoto">
|
||
|
changed group photo
|
||
|
</span>
|
||
|
<span ng-switch-when="messageActionChatDeletePhoto">
|
||
|
removed group photo
|
||
|
</span>
|
||
|
<span ng-switch-when="messageActionChatAddUser" ng-switch="::historyMessage.from_id != historyMessage.action.user_id">
|
||
|
<span ng-switch-when="true">
|
||
10 years ago
|
invited <a my-user-link="historyMessage.action.user_id" color="true"></a>
|
||
10 years ago
|
</span>
|
||
|
<span ng-switch-default>
|
||
|
returned to group
|
||
|
</span>
|
||
|
</span>
|
||
|
<span ng-switch-when="messageActionChatDeleteUser" ng-switch="::historyMessage.from_id != historyMessage.action.user_id">
|
||
|
<span ng-switch-when="true">
|
||
10 years ago
|
kicked <a my-user-link="historyMessage.action.user_id" color="true"></a>
|
||
10 years ago
|
</span>
|
||
|
<span ng-switch-default>
|
||
|
left group
|
||
|
</span>
|
||
|
</span>
|
||
|
|
||
|
<span ng-switch-default ng-bind="'Unsupported action ' + historyMessage.action._"></span>
|
||
|
</span>
|