mirror of
https://github.com/imputnet/cobalt.git
synced 2025-01-16 03:45:14 +00:00
65 lines
2.3 KiB
Markdown
65 lines
2.3 KiB
Markdown
|
<script lang="ts">
|
||
|
import { t } from "$lib/i18n/translations";
|
||
|
import SectionHeading from "$components/misc/SectionHeading.svelte";
|
||
|
</script>
|
||
|
|
||
|
<section id="general">
|
||
|
<SectionHeading
|
||
|
title={$t("about.heading.general")}
|
||
|
sectionId="general"
|
||
|
/>
|
||
|
|
||
|
تنطبق هذه الشروط فقط عند استخدام مثيل كوبالت الرسمي. في حالات أخرى، قد تحتاج إلى
|
||
|
التواصل بصاحب المضيف للحصول على معلومات دقيقة.
|
||
|
</section>
|
||
|
|
||
|
<section id="saving">
|
||
|
<SectionHeading
|
||
|
title={$t("about.heading.saving")}
|
||
|
sectionId="saving"
|
||
|
/>
|
||
|
|
||
|
تعمل وظيفة التحميل على تبسيط عملية تنزيل المحتوى من الإنترنت ولا تتحمل أي
|
||
|
مسؤولية عن المحتوى المحفوظ، حيث تعمل خواديم المعالجة مثل الوكلاء المتقدمة ولا
|
||
|
تكتب أي محتوى على القرص أبدًا. يُعالَج كل شيء في ذاكرة الوصول العشوائي ويُمسح
|
||
|
نهائيًا بمجرد الإنتهاء من النقل النفقي. ليس لدينا أي سجل تنزيل وليس بإمكاننا
|
||
|
معرفة هوية أي أحد.
|
||
|
|
||
|
[you can read more about how tunnels work in our privacy
|
||
|
policy.](/about/privacy)
|
||
|
</section>
|
||
|
|
||
|
<section id="responsibility">
|
||
|
<SectionHeading
|
||
|
title={$t("about.heading.responsibility")}
|
||
|
sectionId="responsibility"
|
||
|
/>
|
||
|
|
||
|
you (end user) are responsible for what you do with our tools, how you use and
|
||
|
distribute resulting content. please be mindful when using content of others and
|
||
|
always credit original creators. make sure you don't violate any terms or
|
||
|
licenses.
|
||
|
|
||
|
when used in educational purposes, always cite sources and credit original
|
||
|
creators.
|
||
|
|
||
|
fair use and credits benefit everyone.
|
||
|
</section>
|
||
|
|
||
|
<section id="abuse">
|
||
|
<SectionHeading
|
||
|
title={$t("about.heading.abuse")}
|
||
|
sectionId="abuse"
|
||
|
/>
|
||
|
|
||
|
we have no way of detecting abusive behavior automatically because cobalt is
|
||
|
100% anonymous. however, you can report such activities to us via email and
|
||
|
we'll do our best to comply manually: abuse[at]imput.net
|
||
|
|
||
|
**this email is not intended for user support, you will not get a response if
|
||
|
your concern is not related to abuse.**
|
||
|
|
||
|
if you're experiencing issues, contact us via any preferred method on [the
|
||
|
support page](/about/community).
|
||
|
</section>
|