mirror of
https://github.com/HangarMC/Hangar.git
synced 2025-02-17 15:01:42 +08:00
parent
fea4d2feb5
commit
8c5b338771
@ -904,6 +904,7 @@
|
||||
},
|
||||
"importer": {
|
||||
"title": "Import Projects",
|
||||
"notLoggedIn": "You need to be logged in to use the project importer.",
|
||||
"step1": {
|
||||
"title": "Intro",
|
||||
"text1": "This page allows you to import projects from other platforms.",
|
||||
|
@ -178,14 +178,17 @@ function createProject(project: NewProjectForm) {
|
||||
});
|
||||
}
|
||||
|
||||
const loggedIn = useAuthStore().user !== null;
|
||||
|
||||
useHead(useSeo(t("importer.title"), null, route, null));
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<PageTitle>{{ t("importer.title") }}</PageTitle>
|
||||
<p v-if="!loggedIn">{{ t("importer.notLoggedIn") }}</p>
|
||||
|
||||
<Steps v-model="selectedStep" :steps="steps" button-lang-key="importer.step">
|
||||
<Steps v-else v-model="selectedStep" :steps="steps" button-lang-key="importer.step">
|
||||
<template #intro>
|
||||
<p>{{ t("importer.step1.text1") }}</p>
|
||||
<p class="inline-flex items-center space-x-2">
|
||||
|
1
frontend/src/types/generated/icons.d.ts
vendored
1
frontend/src/types/generated/icons.d.ts
vendored
@ -14,7 +14,6 @@ declare module "@vue/runtime-core" {
|
||||
IconMdiAlertBox: typeof import("~icons/mdi/alert-box")["default"];
|
||||
IconMdiAlertDecagram: typeof import("~icons/mdi/alert-decagram")["default"];
|
||||
IconMdiAlertOutline: typeof import("~icons/mdi/alert-outline")["default"];
|
||||
IconMdiAlphaX: typeof import("~icons/mdi/alpha-x")["default"];
|
||||
IconMdiBell: typeof import("~icons/mdi/bell")["default"];
|
||||
IconMdiBellOutline: typeof import("~icons/mdi/bell-outline")["default"];
|
||||
IconMdiBookshelf: typeof import("~icons/mdi/bookshelf")["default"];
|
||||
|
Loading…
Reference in New Issue
Block a user