mirror of
https://github.com/wukko/cobalt.git
synced 2025-02-06 18:56:32 +01:00
391c60dce2
web/i18n/ru: update translation web/i18n/ru: update translation web/i18n/ru: update translation web/i18n/ru: update translation web/i18n: update translations Updated by "Cleanup translation files" add-on in Weblate. web/i18n: update translations Updated by "Cleanup translation files" add-on in Weblate. web/i18n/ru: update translation web/i18n/ru: update translation web/i18n/ru: update translation web/i18n/ru: update translation web/i18n: update translations Updated by "Cleanup translation files" add-on in Weblate. web/i18n/ru: update translation web/i18n: update translations Updated by "Squash Git commits" add-on in Weblate. web/i18n: update translations Updated by "Squash Git commits" add-on in Weblate. Co-authored-by: Anonymous <anonymous@users.noreply.github.com> Co-authored-by: Damir Modyarov <otomir23@users.noreply.github.com> Co-authored-by: Ilya <wileyfoxyx@users.noreply.github.com> Co-authored-by: Kurt <kkhaustov@users.noreply.github.com> Co-authored-by: Philipp <FoxFil@users.noreply.github.com> Co-authored-by: aksephi <aksephi@users.noreply.github.com> Co-authored-by: imput project translators <i18n@imput.net> Co-authored-by: jj <log@riseup.net> Translate-URL: https://i18n.imput.net/projects/cobalt/a11ydialog/ru/ Translate-URL: https://i18n.imput.net/projects/cobalt/a11ysave/ru/ Translate-URL: https://i18n.imput.net/projects/cobalt/about/ru/ Translate-URL: https://i18n.imput.net/projects/cobalt/aboutgeneral/ru/ Translate-URL: https://i18n.imput.net/projects/cobalt/aboutprivacy/ Translate-URL: https://i18n.imput.net/projects/cobalt/aboutterms/ Translate-URL: https://i18n.imput.net/projects/cobalt/dialog/ru/ Translate-URL: https://i18n.imput.net/projects/cobalt/donate/ru/ Translate-URL: https://i18n.imput.net/projects/cobalt/general/ru/ Translate-URL: https://i18n.imput.net/projects/cobalt/remux/ Translate-URL: https://i18n.imput.net/projects/cobalt/settings/ru/ Translate-URL: https://i18n.imput.net/projects/cobalt/updates/ Translation: cobalt/a11y/dialog Translation: cobalt/a11y/save Translation: cobalt/about Translation: cobalt/about/general Translation: cobalt/about/privacy Translation: cobalt/about/terms Translation: cobalt/dialog Translation: cobalt/donate Translation: cobalt/general Translation: cobalt/remux Translation: cobalt/settings Translation: cobalt/updates
87 lines
3.1 KiB
Markdown
87 lines
3.1 KiB
Markdown
<script lang="ts">
|
||
import { t } from "$lib/i18n/translations";
|
||
import { partners, contacts, docs } from "$lib/env";
|
||
|
||
import SectionHeading from "$components/misc/SectionHeading.svelte";
|
||
</script>
|
||
|
||
<section id="summary">
|
||
<SectionHeading
|
||
title={$t("about.heading.summary")}
|
||
sectionId="summary"
|
||
/>
|
||
|
||
кобальт помогает сохранять всё с любимых сайтов: видео, аудио, фото или гифки.
|
||
просто вставь ссылку — и можно начинать!
|
||
|
||
no ads, trackers, paywalls, or other nonsense. just a convenient web app that
|
||
works anywhere, whenever you need it.
|
||
</section>
|
||
|
||
<section id="motivation">
|
||
<SectionHeading
|
||
title={$t("about.heading.motivation")}
|
||
sectionId="motivation"
|
||
/>
|
||
|
||
cobalt was created for public benefit, to protect people from ads and malware
|
||
pushed by its alternatives. we believe that the best software is safe, open, and
|
||
accessible.
|
||
|
||
it's possible to keep the main instances up thanks to our long-standing
|
||
infrastructure partner, [royalehosting.net]({partners.royalehosting})!
|
||
</section>
|
||
|
||
<section id="privacy">
|
||
<SectionHeading
|
||
title={$t("about.heading.privacy")}
|
||
sectionId="privacy"
|
||
/>
|
||
|
||
all requests to the backend are anonymous and all information about tunnels is
|
||
encrypted. we have a strict zero log policy and don't track *anything* about
|
||
individual people.
|
||
|
||
when a request needs additional processing, cobalt processes files on-the-fly.
|
||
it's done by tunneling processed parts directly to the client, without ever
|
||
saving anything to disk. for example, this method is used when the source
|
||
service provides video and audio channels as separate files.
|
||
|
||
additionally, you can [enable forced tunneling](/settings/privacy#tunnel) to
|
||
protect your privacy. when enabled, cobalt will tunnel all downloaded files. no
|
||
one will know where you download something from, even your network provider. all
|
||
they'll see is that you're using a cobalt instance.
|
||
</section>
|
||
|
||
<section id="community">
|
||
<SectionHeading
|
||
title={$t("about.heading.community")}
|
||
sectionId="community"
|
||
/>
|
||
|
||
cobalt is used by countless artists, educators, and content creators to do what
|
||
they love. we're always on the line with our community and work together to make
|
||
cobalt even more useful. feel free to [join the conversation](/about/community)!
|
||
|
||
we believe that the future of the internet is open, which is why cobalt is
|
||
[source first](https://sourcefirst.com/) and [easily
|
||
self-hostable]({docs.instanceHosting}).
|
||
|
||
if your friend hosts a processing instance, just ask them for a domain and [add
|
||
it in instance settings](/settings/instances#community).
|
||
|
||
you can check the source code and contribute [on github]({contacts.github}) at
|
||
any time. we welcome all contributions and suggestions!
|
||
</section>
|
||
|
||
<section id="local">
|
||
<SectionHeading
|
||
title={$t("about.heading.local")}
|
||
sectionId="local"
|
||
/>
|
||
|
||
newest features, such as [remuxing](/remux), work locally on your device.
|
||
on-device processing is efficient and never sends anything over the internet. it
|
||
perfectly aligns with our future goal of moving as much processing as possible
|
||
to the client.
|
||
</section>
|