Localize footer

pull/1/head
Made Baruna 2021-04-02 15:41:57 +08:00
parent e7f284693e
commit e8e74d39b2
3 changed files with 20 additions and 5 deletions

View File

@ -394,5 +394,12 @@
"download": "Download Both Data", "download": "Download Both Data",
"lastModified": "Last modified", "lastModified": "Last modified",
"or": "OR" "or": "OR"
},
"footer": {
"affliate": "Paimon.moe is not affiliated with miHoYo.",
"copyright": "Genshin Impact, game content and materials are trademarks and copyrights of miHoYo.",
"discord": "Join Our Discord",
"community": "Community Links",
"official": "Official Links"
} }
} }

View File

@ -394,5 +394,12 @@
"download": "Download Kedua Data", "download": "Download Kedua Data",
"lastModified": "Terakhir dimodifikasi", "lastModified": "Terakhir dimodifikasi",
"or": "ATAU" "or": "ATAU"
},
"footer": {
"affliate": "Paimon.moe tidak berafiliasi dengan miHoYo.",
"copyright": "Genshin Impact, konten game dan material adalah trademark dan copyright milik miHoYo.",
"discord": "Gabung ke Discord",
"community": "Link Komunitas",
"official": "Link Official"
} }
} }

View File

@ -3,6 +3,7 @@
import { fade } from 'svelte/transition'; import { fade } from 'svelte/transition';
import { derived } from 'svelte/store'; import { derived } from 'svelte/store';
import { stores } from '@sapper/app'; import { stores } from '@sapper/app';
import { t } from 'svelte-i18n';
import Modal from 'svelte-simple-modal'; import Modal from 'svelte-simple-modal';
@ -58,21 +59,21 @@
{/if} {/if}
<div class="lg:ml-64 px-4 md:px-8 py-8 flex flex-col"> <div class="lg:ml-64 px-4 md:px-8 py-8 flex flex-col">
<p class="text-gray-400"> <p class="text-gray-400">
Paimon.moe is not affiliated with miHoYo.<br /> {$t('footer.affliate')}<br />
Genshin Impact, game content and materials are trademarks and copyrights of miHoYo. {$t('footer.copyright')}
</p> </p>
<div class="flex mt-4 md:items-center flex-col md:flex-row"> <div class="flex mt-4 md:items-center flex-col md:flex-row">
<a class="text-gray-400 hover:text-primary" href="https://discord.gg/tPURAYgHV9" target="_blank"> <a class="text-gray-400 hover:text-primary" href="https://discord.gg/tPURAYgHV9" target="_blank">
<Icon path={mdiDiscord} size={1.5} /> Join Our Discord <Icon path={mdiDiscord} size={1.5} /> {$t('footer.discord')}
</a> </a>
<div class="text-gray-400 mt-4 md:mt-0 md:ml-4 flex flex-col md:pl-4 md:border-l border-gray-600"> <div class="text-gray-400 mt-4 md:mt-0 md:ml-4 flex flex-col md:pl-4 md:border-l border-gray-600">
<span class="text-gray-500">Community Links</span> <span class="text-gray-500">{$t('footer.community')}</span>
<a class="text-gray-400 hover:text-primary" href="https://t.me/GenshinImpact_ID" target="_blank"> <a class="text-gray-400 hover:text-primary" href="https://t.me/GenshinImpact_ID" target="_blank">
<Icon path={mdiTelegram} size={1} /> Telegram <Icon path={mdiTelegram} size={1} /> Telegram
</a> </a>
</div> </div>
<div class="text-gray-400 mt-4 md:mt-0 md:ml-4 flex flex-col md:pl-4 md:border-l border-gray-600"> <div class="text-gray-400 mt-4 md:mt-0 md:ml-4 flex flex-col md:pl-4 md:border-l border-gray-600">
<span class="text-gray-500">Official Links</span> <span class="text-gray-500">{$t('footer.official')}</span>
<div> <div>
<a <a
class="text-gray-400 hover:text-primary mr-1 whitespace-no-wrap" class="text-gray-400 hover:text-primary mr-1 whitespace-no-wrap"