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.
87 lines
3.9 KiB
87 lines
3.9 KiB
11 years ago
|
<div class="error_modal_wrap" my-modal-position>
|
||
11 years ago
|
|
||
11 years ago
|
<a class="modal-close-button" ng-click="$close()"><i></i></a>
|
||
|
|
||
11 years ago
|
<div class="modal-body">
|
||
|
|
||
|
<h4 ng-if="error" class="modal_simple_header" ng-switch="error.type">
|
||
11 years ago
|
<span ng-switch-when="ACCOUNT_REQUIRED">No account</span>
|
||
|
<span ng-switch-default ng-switch="error.code">
|
||
|
<span ng-switch-when="400">Error</span>
|
||
|
<span ng-switch-when="401">Unauthorized</span>
|
||
|
<span ng-switch-when="403">Access denied</span>
|
||
|
<span ng-switch-when="404">Not found</span>
|
||
11 years ago
|
<span ng-switch-when="406">Network error</span>
|
||
11 years ago
|
<span ng-switch-when="420">Too fast</span>
|
||
|
<span ng-switch-default>Server error</span>
|
||
|
</span>
|
||
|
</h4>
|
||
11 years ago
|
<h4 ng-if="!error" class="modal_simple_header" ng-bind="title || 'Alert'"></h4>
|
||
11 years ago
|
|
||
11 years ago
|
<div ng-if="error" class="error_modal_description" ng-switch="error.type">
|
||
11 years ago
|
<span ng-switch-when="NETWORK_BAD_REQUEST">
|
||
|
Please check your internet connection.
|
||
|
</span>
|
||
|
<span ng-switch-when="NETWORK_BAD_RESPONSE">
|
||
|
Please check your internet connection.
|
||
|
</span>
|
||
11 years ago
|
<span ng-switch-when="FIRSTNAME_INVALID">
|
||
|
The first name you entered is invalid.
|
||
|
</span>
|
||
|
<span ng-switch-when="LASTNAME_INVALID">
|
||
|
The last name you entered is invalid.
|
||
|
</span>
|
||
|
<span ng-switch-when="PHONE_NUMBER_INVALID">
|
||
|
The phone number you entered is invalid.
|
||
|
</span>
|
||
|
<span ng-switch-when="USERS_TOO_MUCH">
|
||
|
You have selected too much users.
|
||
|
</span>
|
||
|
<span ng-switch-when="PHOTO_INVALID_DIMENSIONS">
|
||
|
The photo dimensions are invalid, please select another file.
|
||
10 years ago
|
</span>
|
||
|
<span ng-switch-when="VIDEO_EXT_INVALID">
|
||
|
The video file extension is invalid or unsupported, please select another file.
|
||
11 years ago
|
</span>
|
||
11 years ago
|
<span ng-switch-when="PHOTO_CROP_SIZE_SMALL">
|
||
|
The photo you provided is too small.
|
||
|
</span>
|
||
11 years ago
|
<span ng-switch-when="ACCOUNT_REQUIRED">
|
||
|
Sorry, there is no <strong>Telegram</strong> account for {{phone | phoneNumber}}<br/><br/>
|
||
|
Please <strong>sign up</strong> using our mobile apps for <a href="https://telegram.org/" target="_blank">iOS</a> or <a href="https://telegram.org/" target="_blank">Android</a>.
|
||
|
</span>
|
||
11 years ago
|
<span ng-switch-when="USER_NOT_USING_TELEGRAM">
|
||
|
Sorry, there is no <strong>Telegram</strong> account with the phone number you provided.
|
||
|
</span>
|
||
11 years ago
|
<span ng-switch-when="USERS_NOT_USING_TELEGRAM">
|
||
|
Sorry, there are no <strong>Telegram</strong> accounts with the phone numbers you provided.
|
||
|
</span>
|
||
10 years ago
|
<span ng-switch-when="PHONEBOOK_GET_CONTACTS_FAILED">
|
||
10 years ago
|
Telegram needs access to phonebook to import contacts.
|
||
10 years ago
|
</span>
|
||
11 years ago
|
|
||
|
<div ng-switch-default ng-switch="error.code">
|
||
|
<span ng-switch-when="400">One of the params is missing or invalid.</span>
|
||
11 years ago
|
<span ng-switch-when="401">This action requires authorization access. Please <a href="#/login">log in</a>.</span>
|
||
11 years ago
|
<span ng-switch-when="403">You are not allowed for this action.</span>
|
||
|
<span ng-switch-when="404">The page was not found.</span>
|
||
|
<span ng-switch-when="420">You are performing too many actions. Please try again later.</span>
|
||
|
<span ng-switch-default>Internal server error occured. Please try again later.</span>
|
||
11 years ago
|
</div>
|
||
11 years ago
|
|
||
11 years ago
|
</div>
|
||
11 years ago
|
|
||
11 years ago
|
<div ng-if="error" class="error_modal_details" ng-switch="error.detailsShown">
|
||
|
<textarea ng-switch-when="true" rows="3" onclick="this.select()">Method: {{error.input || 'N/A'}}
|
||
11 years ago
|
Result: {{error.originalError ? error.originalError : (error.stack ? (error.name || '') + ' ' + (error.description || error.message) : error)}}
|
||
11 years ago
|
Stack: {{error.stack}}</textarea>
|
||
|
<div ng-switch-default>
|
||
|
<a href="" ng-click="error.detailsShown = true">Technical details here</a>
|
||
11 years ago
|
</div>
|
||
11 years ago
|
</div>
|
||
|
|
||
11 years ago
|
<div ng-if="!error" class="error_modal_description" ng-bind="description"></div>
|
||
|
|
||
11 years ago
|
</div>
|
||
|
|
||
|
</div>
|