-
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: update import paths for paraglide messages
Co-Authored-By: Martin DONADIEU <[email protected]>
- Loading branch information
1 parent
118f473
commit e727942
Showing
3 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
import Layout from '@/layouts/Layout.astro' | ||
import VueAppflowTransfer from '@/vue-pages/appflow-transfer.vue' | ||
import * as m from "../../paraglide/messages.js" | ||
const title = [Astro.locals.runtimeConfig.public.brand, m.migrate_from_appflow()].join(' | ') | ||
const description = m.appflow_transfer_description() | ||
const content = { title, description } | ||
--- | ||
|
||
<Layout content={content}><VueAppflowTransfer locale={Astro.locals.locale} client:load /></Layout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
import Layout from '@/layouts/Layout.astro' | ||
import VuePremiumSupport from '@/vue-pages/premium-support.vue' | ||
import * as m from "../../paraglide/messages.js" | ||
const title = [Astro.locals.runtimeConfig.public.brand, m.premium_support()].join(' | ') | ||
const description = m.premium_support_description() | ||
const content = { title, description } | ||
--- | ||
|
||
<Layout content={content}><VuePremiumSupport locale={Astro.locals.locale} client:load /></Layout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
--- | ||
import Layout from '@/layouts/Layout.astro' | ||
import VueServices from '@/vue-pages/services.vue' | ||
import * as m from "../../paraglide/messages.js" | ||
|
||
const title = [Astro.locals.runtimeConfig.public.brand, m.services()].join(' | ') | ||
const description = m.services_description() | ||
const content = { title, description } | ||
--- | ||
|
||
<Layout content={content}><VueServices locale={Astro.locals.locale} client:load /></Layout> |