fix28: полный production-фикс графиков, machine-auth, i18n и peer import/export

This commit is contained in:
2026-05-09 02:14:59 +05:00
parent 3c569061fe
commit 1139c428b6
11 changed files with 230 additions and 28 deletions
+8 -5
View File
@@ -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>