mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 08:08:15 -05:00
28 lines
1.3 KiB
Text
28 lines
1.3 KiB
Text
.alert.alert-danger.loading-error-alert
|
|
span(data-i18n="loading_error.could_not_load") Error loading from server
|
|
span (
|
|
span(data-i18n="resources.#{name}")
|
|
span )
|
|
if !responseText
|
|
strong(data-i18n="loading_error.connection_failure") Connection failed.
|
|
else if status === 401
|
|
strong(data-i18n="loading_error.unauthorized") You need to be signed in. Do you have cookies disabled?
|
|
else if status === 403
|
|
strong(data-i18n="loading_error.forbidden") You do not have the permissions.
|
|
else if status === 404
|
|
strong(data-i18n="loading_error.not_found") Not found.
|
|
else if status === 405
|
|
strong(data-i18n="loading_error.not_allowed") Method not allowed.
|
|
else if status === 408
|
|
strong(data-i18n="loading_error.timeout") Server timeout.
|
|
else if status === 409
|
|
strong(data-i18n="loading_error.conflict") Resource conflict.
|
|
else if status === 422
|
|
strong(data-i18n="loading_error.bad_input") Bad input.
|
|
else if status >= 500
|
|
strong(data-i18n="loading_error.server_error") Server error.
|
|
else
|
|
strong(data-i18n="loading_error.unknown") Unknown error.
|
|
|
|
button.btn.btn-xs.retry-loading-resource(data-i18n="common.retry", data-resource-index=resourceIndex) Retry
|
|
button.btn.btn-xs.skip-loading-resource(data-i18n="common.skip", data-resource-index=resourceIndex) Skip
|