fix28: полный production-фикс графиков, machine-auth, i18n и peer import/export
This commit is contained in:
@@ -6,8 +6,12 @@ export default {
|
||||
</script>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { useI18n } from "vue-i18n";
|
||||
|
||||
const { t } = useI18n();
|
||||
|
||||
function message() {
|
||||
return "The webmaster said that you can not enter this page...";
|
||||
return t("errorPage.notFoundHeadline");
|
||||
}
|
||||
</script>
|
||||
|
||||
@@ -37,13 +41,12 @@ function message() {
|
||||
/>
|
||||
</div>
|
||||
<div class="bullshit">
|
||||
<div class="bullshit__oops">OOPS!</div>
|
||||
<div class="bullshit__oops">{{ $t("errorPage.oops") }}</div>
|
||||
<div class="bullshit__headline">{{ message() }}</div>
|
||||
<div class="bullshit__info">
|
||||
Please check that the URL you entered is correct, or click the button
|
||||
below to return to the homepage.
|
||||
{{ $t("errorPage.notFoundInfo") }}
|
||||
</div>
|
||||
<a href="" class="bullshit__return-home">Back to home</a>
|
||||
<a href="/#/" class="bullshit__return-home">{{ $t("errorPage.notFoundBackHome") }}</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user