The communications platform that puts data protection first.
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.
 
 
 
 
 
Rocket.Chat/client/views/404/roomNotFound.html

26 lines
644 B

<template name="roomNotFound">
<section class="page-container page-list">
<head class="fixed-title">
{{> burger}}
<h2>
<span class="room-title">{{_ "Room_not_found"}}</span>
</h2>
</head>
<div class="content room-not-found">
<i class="icon-attention"></i>
<div>
{{#with data}}
{{#if $eq type 'c'}}
{{{_ 'No_channel_with_name_%s_was_found' name}}}
{{/if}}
{{#if $eq type 'p'}}
{{{_ 'No_group_with_name_%s_was_found' name}}}
{{/if}}
{{#if $eq type 'd'}}
{{{_ 'No_user_with_username_%s_was_found' name}}}
{{/if}}
{{/with}}
</div>
</div>
</section>
</template>