-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
454fccc
commit 314356b
Showing
4 changed files
with
28 additions
and
2 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
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
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
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 |
---|---|---|
@@ -1,12 +1,31 @@ | ||
<i18n lang="json"> | ||
{ | ||
"en": { | ||
"no longer maintained": "Cotowali is no longer maintained.", | ||
"thank you for support": "Thank you for your support during development." | ||
}, | ||
"ja": { | ||
"no longer maintained": "Cotowali の開発は終了しました。", | ||
"thank you for support": "開発中のご支援に感謝します。ありがとうございました。" | ||
} | ||
} | ||
</i18n> | ||
<template> | ||
<div> | ||
<section class="w-hero mx-auto"> | ||
<LiHero /> | ||
</section> | ||
<section class="bg-dark-darken-1 py-8"> | ||
<Alert class="w-hero mx-auto"> | ||
<div>{{ t('no longer maintained') }}</div> | ||
<div>{{ t('thank you for support') }}</div> | ||
</Alert> | ||
<div class="w-hero mx-auto bg-dark-darken-1"> | ||
<LiSponsors /> | ||
</div> | ||
</section> | ||
</div> | ||
</template> | ||
<script setup lang="ts"> | ||
const { t } = useI18n({ useScope: 'local' }) | ||
</script> |