📝 Add before you start section
This commit is contained in:
parent
e9e182ea48
commit
1f2c4f33cb
@ -87,5 +87,17 @@
|
||||
"upload": "Upload",
|
||||
"cancel": "Cancel",
|
||||
"seeMore": "See more",
|
||||
"solarNetworkDescription": "A open, free, and friendly social network."
|
||||
"solarNetworkDescription": "A open, free, and friendly social network.",
|
||||
"solarNetworkBeforeYouStart": "Before you start",
|
||||
"solarNetworkBeforeYouStartDescription": "Learn some culture and basics of Solar Network",
|
||||
"solarNetworkFreedomOfSpeech": "Freedom of Speech",
|
||||
"solarNetworkFreedomOfSpeechDescription": "While Solar Network protects your freedom of speech and does not manually delete posts, this does not mean you are not responsible for your words. Additionally, when the 'flag the post' feature is activated, your posts will be hidden from other users. We still encourage users to prioritize harmony and minimize conflicts.",
|
||||
"solarNetworkConfirmAccount": "Confirm Account",
|
||||
"solarNetworkConfirmAccountDescription": "After registering, please check your bound email for the account confirmation email. Otherwise, your account will be reclaimed within 24 hours, and during this period, no permissions will be assigned, affecting most functionalities.",
|
||||
"solarNetworkNoImpersonation": "No Impersonation",
|
||||
"solarNetworkNoImpersonationDescription": "Do not impersonate individuals either within or outside the platform, especially those with a certain level of recognition. Regardless of intent, if it causes misunderstanding among users, we reserve the right to take action on the relevant account and content.",
|
||||
"solarNetworkReadDialog": "Read Error Messages",
|
||||
"solarNetworkReadDialogDescription": "When encountering an error message, do not immediately take a screenshot and complain. Try to understand why the issue occurred. Then, seek help in the development channel or on GitHub instead of making complaint posts.",
|
||||
"solarNetworkToS": "And, if you continue registering, means you accept our Terms & Conditions",
|
||||
"solarNetworkToSCheck": "Check them out"
|
||||
}
|
||||
|
@ -87,5 +87,17 @@
|
||||
"upload": "上传",
|
||||
"cancel": "取消",
|
||||
"seeMore": "查看更多",
|
||||
"solarNetworkDescription": "开放、包容、和谐"
|
||||
"solarNetworkDescription": "开放、包容、和谐",
|
||||
"solarNetworkBeforeYouStart": "桥豆麻袋",
|
||||
"solarNetworkBeforeYouStartDescription": "在你开始之前,了解一些关于 Solar Network 文化和常识",
|
||||
"solarNetworkFreedomOfSpeech": "言论自由",
|
||||
"solarNetworkFreedomOfSpeechDescription": "尽管 Solar Network 保护你的言论自由,不会手动对帖子进行删除。但是这不代表你可以对你的言论不负责。同时 Solar Network 上的「吹哨」功能生效时会对其他用户隐藏你的帖子。我们还是希望用户能以和为贵,少发生争吵。",
|
||||
"solarNetworkConfirmAccount": "确认账户",
|
||||
"solarNetworkConfirmAccountDescription": "在注册之后记得前往您绑定的邮件获取确认帐号的邮件,否则您的帐号会在 24 小时内被回收,并且期间不会分配权限,影响绝大部分功能使用。",
|
||||
"solarNetworkNoImpersonation": "不要冒充他人",
|
||||
"solarNetworkNoImpersonationDescription": "不要冒充在站内 / 站外的人物,对方有一定知名度的甚是。无论出发点如何,对用户造成了误解时我们保留权利处理相关帐号和内容。",
|
||||
"solarNetworkReadDialog": "阅读错误提示",
|
||||
"solarNetworkReadDialogDescription": "遇到报错提示不要第一时间截图抱怨,尝试理解为什么这件事情发生。其次在开发频道或 GitHub 寻求帮助,不要发帖抱怨。",
|
||||
"solarNetworkToS": "还有,如果你继续注册 Solarpass 帐号,这意味着你同意我们的各项条款",
|
||||
"solarNetworkToSCheck": "阅读这些条款"
|
||||
}
|
||||
|
@ -27,6 +27,42 @@
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="content-section flex flex-col items-center justify-center text-center px-4" id="reminders">
|
||||
<h1 class="text-3xl font-bold">{{ t("solarNetworkBeforeYouStart") }}</h1>
|
||||
<p class="text-lg">{{ t("solarNetworkBeforeYouStartDescription") }}</p>
|
||||
|
||||
<div class="max-h-[500px] w-full mt-4 text-left">
|
||||
<v-row dense>
|
||||
<v-col cols="12" md="4">
|
||||
<v-card :title="t('solarNetworkFreedomOfSpeech')" prepend-icon="mdi-account-voice" density="comfortable">
|
||||
<v-card-text>{{ t("solarNetworkFreedomOfSpeechDescription") }}</v-card-text>
|
||||
</v-card>
|
||||
</v-col>
|
||||
<v-col cols="12" md="4">
|
||||
<v-card :title="t('solarNetworkConfirmAccount')" prepend-icon="mdi-account-check" density="comfortable">
|
||||
<v-card-text>{{ t("solarNetworkConfirmAccountDescription") }}</v-card-text>
|
||||
</v-card>
|
||||
<v-card
|
||||
:title="t('solarNetworkNoImpersonation')"
|
||||
prepend-icon="mdi-account-cancel"
|
||||
density="comfortable"
|
||||
class="mt-2"
|
||||
>
|
||||
<v-card-text>{{ t("solarNetworkNoImpersonationDescription") }}</v-card-text>
|
||||
</v-card>
|
||||
</v-col>
|
||||
<v-col cols="12" md="4">
|
||||
<v-card :title="t('solarNetworkReadDialog')" prepend-icon="mdi-alert-circle" density="comfortable">
|
||||
<v-card-text>{{ t("solarNetworkReadDialogDescription") }}</v-card-text>
|
||||
</v-card>
|
||||
</v-col>
|
||||
</v-row>
|
||||
</div>
|
||||
|
||||
<p class="text-sm mt-4">{{ t("solarNetworkToS") }}</p>
|
||||
<nuxt-link class="underline text-sm" to="/terms">{{ t("solarNetworkToSCheck") }}</nuxt-link>
|
||||
</section>
|
||||
|
||||
<section class="content-section flex flex-col items-center justify-center text-center px-4" id="downloads">
|
||||
<h1 class="text-3xl font-bold">{{ t("download") }}</h1>
|
||||
<p class="text-lg">
|
||||
@ -86,7 +122,7 @@
|
||||
<v-progress-circular class="px-5 my-3" indeterminate />
|
||||
</div>
|
||||
<v-card-text>
|
||||
<p class="text-sm opacity-50 mb-2">{{ t('downloadForApple') }}</p>
|
||||
<p class="text-sm opacity-50 mb-2">{{ t("downloadForApple") }}</p>
|
||||
<div class="flex align-center gap-2.5">
|
||||
<nuxt-link
|
||||
to="https://apps.apple.com/us/app/solian/id6499032345?itscg=30200&itsct=apps_box_link&mttnsubad=6499032345"
|
||||
@ -96,21 +132,19 @@
|
||||
</nuxt-link>
|
||||
<div>
|
||||
<nuxt-link to="https://testflight.apple.com/join/YJ0lmN6O" target="_blank" class="underline">
|
||||
{{ t('downloadTestFlight') }}
|
||||
{{ t("downloadTestFlight") }}
|
||||
</nuxt-link>
|
||||
<p class="text-xs opacity-40">{{ t('downloadTestFlightDescription') }}</p>
|
||||
<p class="text-xs opacity-40">{{ t("downloadTestFlightDescription") }}</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<p class="text-sm opacity-50 mt-4">{{ t('downloadForDesktop') }}</p>
|
||||
<p class="text-sm">{{ t('downloadForDesktopDescription') }}</p>
|
||||
<p class="text-sm opacity-50 mt-4">{{ t("downloadForDesktop") }}</p>
|
||||
<p class="text-sm">{{ t("downloadForDesktopDescription") }}</p>
|
||||
|
||||
<p class="text-sm opacity-50 mt-4">{{ t('downloadWithoutDownload') }}</p>
|
||||
<p class="text-sm opacity-50 mt-4">{{ t("downloadWithoutDownload") }}</p>
|
||||
<div class="text-sm flex gap-2 underline">
|
||||
<nuxt-link to="https://sn.solsynth.dev" target="_blank">{{ t('downloadWeb') }}</nuxt-link>
|
||||
<nuxt-link to="https://sn.solsynth.dev?cdn=cn" target="_blank"
|
||||
>{{ t('downloadWebChina') }}</nuxt-link
|
||||
>
|
||||
<nuxt-link to="https://sn.solsynth.dev" target="_blank">{{ t("downloadWeb") }}</nuxt-link>
|
||||
<nuxt-link to="https://sn.solsynth.dev?cdn=cn" target="_blank">{{ t("downloadWebChina") }}</nuxt-link>
|
||||
</div>
|
||||
</v-card-text>
|
||||
</v-card>
|
||||
|
Loading…
x
Reference in New Issue
Block a user