-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
web/i18n/zh_Hant: add translation web/i18n/zh_Hant: add translation Co-authored-by: Languages add-on <[email protected]> Co-authored-by: Mark Li <[email protected]> Co-authored-by: imput project translators <[email protected]>
- Loading branch information
1 parent
8174ffb
commit 352bc2d
Showing
3 changed files
with
71 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 @@ | ||
{} |
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 @@ | ||
{} |
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,69 @@ | ||
<script lang="ts"> | ||
import { contacts, docs } from "$lib/env"; | ||
import { t } from "$lib/i18n/translations"; | ||
|
||
import SectionHeading from "$components/misc/SectionHeading.svelte"; | ||
import BetaTesters from "$components/misc/BetaTesters.svelte"; | ||
</script> | ||
|
||
<section id="imput"> | ||
<SectionHeading | ||
title="imput" | ||
sectionId="imput" | ||
/> | ||
|
||
cobalt is made with love and care by the [imput](https://imput.net/) research | ||
and development team. | ||
|
||
you can support us on the [donate page](/donate)! | ||
</section> | ||
|
||
<section id="testers"> | ||
<SectionHeading | ||
title={$t("about.heading.testers")} | ||
sectionId="testers" | ||
/> | ||
|
||
huge shoutout to our thing breakers for testing updates early and making sure | ||
they're stable. they also helped us ship cobalt 10! <BetaTesters /> | ||
|
||
all links are external and lead to their personal websites or social media. | ||
</section> | ||
|
||
<section id="meowbalt"> | ||
<SectionHeading | ||
title={$t("general.meowbalt")} | ||
sectionId="meowbalt" | ||
/> | ||
|
||
meowbalt is cobalt's speedy mascot. he is an extremely expressive cat that loves | ||
fast internet. | ||
|
||
all amazing drawings of meowbalt that you see in cobalt were made by | ||
[GlitchyPSI](https://glitchypsi.xyz/). he is also the original designer of the | ||
character. | ||
|
||
you cannot use or modify GlitchyPSI's artworks of meowbalt without his explicit | ||
permission. | ||
|
||
you cannot use or modify the meowbalt character design commercially or in any | ||
form that isn't fan art. | ||
</section> | ||
|
||
<section id="licenses"> | ||
<SectionHeading | ||
title={$t("about.heading.licenses")} | ||
sectionId="licenses" | ||
/> | ||
|
||
cobalt processing server is open source and licensed under | ||
[AGPL-3.0]({docs.apiLicense}). | ||
|
||
cobalt frontend is [source first](https://sourcefirst.com/) and licensed under | ||
[CC-BY-NC-SA 4.0]({docs.webLicense}). we decided to use this license to stop | ||
grifters from profiting off our work & from creating malicious clones that | ||
deceive people and hurt our public identity. | ||
|
||
we rely on many open source libraries, create & distribute our own. you can see | ||
the full list of dependencies on [github]({contacts.github}). | ||
</section> |