mirror of
https://github.com/hpware/news-analyze.git
synced 2025-06-24 05:24:23 +00:00
EXTREMELY basic translating in the newsView page. & made the about
window i18n available & added GOALS_BEFORE_NEXT_DEVLOG.md file to track what goals should I hit before getting a another devlog.
This commit is contained in:
parent
d2099074a7
commit
3abfe46464
5 changed files with 89 additions and 22 deletions
|
@ -5,33 +5,37 @@ const emit = defineEmits(["windowopener", "error", "loadValue"]);
|
|||
const props = defineProps<{
|
||||
values?: string;
|
||||
}>();
|
||||
const { t } = useI18n();
|
||||
</script>
|
||||
<template>
|
||||
<div class="justify-center align-center text-center flex flex-col">
|
||||
<div class="flex flex-col">
|
||||
<span class="text-xl">為什麼要做網站?</span>
|
||||
<span class="text-xl">{{ t("about.why") }}</span>
|
||||
<span>{{ t("about.bulletpoints.1") }}</span>
|
||||
<span>{{ t("about.bulletpoints.2") }}</span>
|
||||
<span
|
||||
>1. 台灣媒體真的很爛,要嘛有超多偏見,或是比較偏小孩不能看的新聞 (aka
|
||||
擦邊通過的</span
|
||||
>3.
|
||||
<span class="line-through">{{
|
||||
t("about.bulletpoints.3half")
|
||||
}}</span></span
|
||||
>
|
||||
<span
|
||||
>2. 這個網站是為了讓大家可以更方便的比較新聞,可以分析新聞的偏見</span
|
||||
>
|
||||
<span>3. <span class="line-through">學 TailwindCSS</span></span>
|
||||
</div>
|
||||
<hr />
|
||||
<div class="flex flex-col">
|
||||
<span class="text-xl">關於開發者</span>
|
||||
<span class="text-center align-center justify-center">開發者:yh</span>
|
||||
<span class="text-xl">{{ t("about.aboutDev.title") }}</span>
|
||||
<span class="text-center align-center justify-center">{{
|
||||
t("about.aboutDev.dev")
|
||||
}}</span>
|
||||
<span class="text-center align-center justify-center"
|
||||
>聯絡信箱:<a href="mailto:public+newscompareauthor@yuanhau.com"
|
||||
>{{ t("about.aboutDev.contactEmailStarter")
|
||||
}}<a href="mailto:public+newscompareauthor@yuanhau.com"
|
||||
>public@yuanhau.com</a
|
||||
></span
|
||||
>
|
||||
</div>
|
||||
<hr />
|
||||
<div class="flex flex-col">
|
||||
<span class="text-xl">版權資訊</span>
|
||||
<span class="text-xl">{{ t("about.copyrigthtInfo") }}</span>
|
||||
<copyrightInfo class="justify-center align-center text-center" />
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue