diff --git a/.config/LICENSE b/.config/LICENSE index 342509dec..cb57aef95 100644 --- a/.config/LICENSE +++ b/.config/LICENSE @@ -1,4 +1,4 @@ -Copyright 2023 Calckey +Copyright 2023 Firefish Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/.config/ci.yml b/.config/ci.yml index 0f5be623b..fd35a7994 100644 --- a/.config/ci.yml +++ b/.config/ci.yml @@ -1,5 +1,5 @@ #━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ -# Calckey configuration +# Firefish configuration #━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ # ┌─────┐ diff --git a/.config/devenv.yml b/.config/devenv.yml index 6c60f338a..65b819b56 100644 --- a/.config/devenv.yml +++ b/.config/devenv.yml @@ -5,10 +5,10 @@ db: host: 127.0.0.1 port: 5432 - db: calckey + db: firefish - user: calckey - pass: calckey + user: firefish + pass: firefish redis: host: localhost diff --git a/.config/docker_example.env b/.config/docker_example.env index fdd7e3108..25314d7ed 100644 --- a/.config/docker_example.env +++ b/.config/docker_example.env @@ -1,4 +1,4 @@ # db settings -POSTGRES_PASSWORD=example-calckey-pass -POSTGRES_USER=example-calckey-user -POSTGRES_DB=calckey +POSTGRES_PASSWORD=example-firefish-pass +POSTGRES_USER=example-firefish-user +POSTGRES_DB=firefish diff --git a/.config/example.yml b/.config/example.yml index f73f4f1d7..ffc8a1d34 100644 --- a/.config/example.yml +++ b/.config/example.yml @@ -1,5 +1,5 @@ #━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ -# Calckey configuration +# Firefish configuration #━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ # After starting your server, please don't change the URL! Doing so will break federation. @@ -14,11 +14,11 @@ url: https://example.com/ #───┘ Port and TLS settings └─────────────────────────────────── # -# Calckey requires a reverse proxy to support HTTPS connections. +# Firefish requires a reverse proxy to support HTTPS connections. # # +----- https://example.com/ ------------+ # +------+ |+-------------+ +----------------+| -# | User | ---> || Proxy (443) | ---> | Calckey (3000) || +# | User | ---> || Proxy (443) | ---> | Firefish (3000) || # +------+ |+-------------+ +----------------+| # +---------------------------------------+ # @@ -26,7 +26,7 @@ url: https://example.com/ # An encrypted connection with HTTPS is highly recommended # because tokens may be transferred in GET requests. -# The port that your Calckey server should listen on. +# The port that your Firefish server should listen on. port: 3000 # ┌──────────────────────────┐ @@ -37,11 +37,11 @@ db: port: 5432 #ssl: false # Database name - db: calckey + db: firefish # Auth - user: example-calckey-user - pass: example-calckey-pass + user: example-firefish-user + pass: example-firefish-pass # Whether disable Caching queries #disableCache: true @@ -200,7 +200,7 @@ reservedUsernames: [ #━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ # Congrats, you've reached the end of the config file needed for most deployments! -# Enjoy your Calckey server! +# Enjoy your Firefish server! #━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ diff --git a/.config/helm_values_example.yml b/.config/helm_values_example.yml index b600eb8aa..5c86acca3 100644 --- a/.config/helm_values_example.yml +++ b/.config/helm_values_example.yml @@ -8,7 +8,7 @@ resources: cpu: 1 memory: 1Gi -calckey: +firefish: domain: example.tld smtp: from_address: noreply@example.tld diff --git a/.weblate b/.weblate index 18f45edbb..56430a1bb 100644 --- a/.weblate +++ b/.weblate @@ -1,3 +1,3 @@ [weblate] url = https://hosted.weblate.org/api/ -translation = calckey/locales +translation = firefish/locales diff --git a/.woodpecker/dockerHubRelease.yml b/.woodpecker/dockerHubRelease.yml index bcb6df490..77b1197dc 100644 --- a/.woodpecker/dockerHubRelease.yml +++ b/.woodpecker/dockerHubRelease.yml @@ -2,7 +2,7 @@ pipeline: publish-docker-latest: image: plugins/kaniko settings: - repo: thatonecalculator/calckey + repo: thatonecalculator/firefish tags: latest dockerfile: Dockerfile username: diff --git a/.woodpecker/dockerHubReleaseCandidate.yml b/.woodpecker/dockerHubReleaseCandidate.yml index 48bd39525..dd0d9354d 100644 --- a/.woodpecker/dockerHubReleaseCandidate.yml +++ b/.woodpecker/dockerHubReleaseCandidate.yml @@ -2,7 +2,7 @@ pipeline: publish-docker-latest: image: plugins/kaniko settings: - repo: thatonecalculator/calckey + repo: thatonecalculator/firefish tags: rc dockerfile: Dockerfile username: diff --git a/.woodpecker/dockerHubTag.yml b/.woodpecker/dockerHubTag.yml index 5543ae234..4ff3f0502 100644 --- a/.woodpecker/dockerHubTag.yml +++ b/.woodpecker/dockerHubTag.yml @@ -2,7 +2,7 @@ pipeline: publish-docker-tag: image: plugins/kaniko settings: - repo: thatonecalculator/calckey + repo: thatonecalculator/firefish # Uses the tag from git for the container tag tags: ${CI_COMMIT_TAG} dockerfile: Dockerfile diff --git a/.woodpecker/testDocker.yml b/.woodpecker/testDocker.yml index e3fdf0eb9..8c5e2cf9d 100644 --- a/.woodpecker/testDocker.yml +++ b/.woodpecker/testDocker.yml @@ -2,7 +2,7 @@ pipeline: docker-build: image: plugins/kaniko settings: - repo: thatonecalculator/calckey + repo: thatonecalculator/firefish tags: test dockerfile: Dockerfile no_push: true diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index 143c63d29..4f215e829 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -62,7 +62,7 @@ representative at an online or offline event. Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at @thatonecalculator on Codeberg, -`@kainoa@calckey.social` on the Fediverse, +`@kainoa@firefish.social` on the Fediverse, or kainoa@t1c.dev via email. All complaints will be reviewed and investigated promptly and fairly. diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index b75dc9f35..b85a9360d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,26 +1,26 @@ # Contribution guide -We're glad you're interested in contributing Calckey! In this document you will find the information you need to contribute to the project. +We're glad you're interested in contributing Firefish! In this document you will find the information you need to contribute to the project. ## Translation (i18n) -Calckey uses [Weblate](hhttps://hosted.weblate.org/engage/calckey/) for translation and internationalization management. +Firefish uses [Weblate](hhttps://hosted.weblate.org/engage/firefish/) for translation and internationalization management. If your language is not listed in Weblate, please open an issue. You can contribute without knowing how to code by helping translate here: -[![Translation status](https://hosted.weblate.org/widgets/calckey/-/287x66-grey.png)](https://hosted.weblate.org/engage/calckey/) +[![Translation status](https://hosted.weblate.org/widgets/firefish/-/287x66-grey.png)](https://hosted.weblate.org/engage/firefish/) -[![Translation bars](https://hosted.weblate.org/widgets/calckey/-/multi-auto.svg)](https://hosted.weblate.org/engage/calckey/) +[![Translation bars](https://hosted.weblate.org/widgets/firefish/-/multi-auto.svg)](https://hosted.weblate.org/engage/firefish/) ## Roadmap -See [CALCKEY.md](./CALCKEY.md) +See [FIREFISH.md](./FIREFISH.md) ## Issues Before creating an issue, please check the following: - To avoid duplication, please search for similar issues before creating a new issue. - Do not use Issues to ask questions or troubleshooting. - Issues should only be used to feature requests, suggestions, and bug tracking. - - Please ask questions or troubleshooting in the [Matrix room](https://matrix.to/#/#calckey:matrix.fedibird.com). + - Please ask questions or troubleshooting in the [Matrix room](https://matrix.to/#/#firefish:matrix.fedibird.com). > **Warning** > Do not close issues that are about to be resolved. It should remain open until a commit that actually resolves it is merged. diff --git a/COPYING b/COPYING index 387515b06..27aeb01ac 100644 --- a/COPYING +++ b/COPYING @@ -18,7 +18,7 @@ And are distributed under The Apache License, Version 2.0, you should have recei --- -Calckey includes several third-party open-source softwares and software libraries. +Firefish includes several third-party open-source softwares and software libraries. RsaSignature2017 implementation by Transmute Industries Inc License: MIT diff --git a/Dockerfile b/Dockerfile index 744dba211..ec07bb210 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ ## Install dev and compilation dependencies, build files FROM alpine:3.18 as build -WORKDIR /calckey +WORKDIR /firefish # Install compilation dependencies RUN apk add --no-cache --no-progress git alpine-sdk python3 nodejs-current npm rust cargo vips @@ -13,14 +13,14 @@ COPY packages/backend/native-utils/migration/Cargo.toml packages/backend/native- COPY packages/backend/native-utils/migration/src/lib.rs packages/backend/native-utils/migration/src/ # Install cargo dependencies -RUN cargo fetch --locked --manifest-path /calckey/packages/backend/native-utils/Cargo.toml +RUN cargo fetch --locked --manifest-path /firefish/packages/backend/native-utils/Cargo.toml # Copy only the dependency-related files first, to cache efficiently COPY package.json pnpm*.yaml ./ COPY packages/backend/package.json packages/backend/package.json COPY packages/client/package.json packages/client/package.json COPY packages/sw/package.json packages/sw/package.json -COPY packages/calckey-js/package.json packages/calckey-js/package.json +COPY packages/firefish-js/package.json packages/firefish-js/package.json COPY packages/megalodon/package.json packages/megalodon/package.json COPY packages/backend/native-utils/package.json packages/backend/native-utils/package.json COPY packages/backend/native-utils/npm/linux-x64-musl/package.json packages/backend/native-utils/npm/linux-x64-musl/package.json @@ -44,30 +44,30 @@ RUN pnpm i --prod --frozen-lockfile ## Runtime container FROM alpine:3.18 -WORKDIR /calckey +WORKDIR /firefish # Install runtime dependencies RUN apk add --no-cache --no-progress tini ffmpeg vips-dev zip unzip nodejs-current COPY . ./ -COPY --from=build /calckey/packages/megalodon /calckey/packages/megalodon +COPY --from=build /firefish/packages/megalodon /firefish/packages/megalodon # Copy node modules -COPY --from=build /calckey/node_modules /calckey/node_modules -COPY --from=build /calckey/packages/backend/node_modules /calckey/packages/backend/node_modules -COPY --from=build /calckey/packages/sw/node_modules /calckey/packages/sw/node_modules -COPY --from=build /calckey/packages/client/node_modules /calckey/packages/client/node_modules -COPY --from=build /calckey/packages/calckey-js/node_modules /calckey/packages/calckey-js/node_modules +COPY --from=build /firefish/node_modules /firefish/node_modules +COPY --from=build /firefish/packages/backend/node_modules /firefish/packages/backend/node_modules +COPY --from=build /firefish/packages/sw/node_modules /firefish/packages/sw/node_modules +COPY --from=build /firefish/packages/client/node_modules /firefish/packages/client/node_modules +COPY --from=build /firefish/packages/firefish-js/node_modules /firefish/packages/firefish-js/node_modules # Copy the finished compiled files -COPY --from=build /calckey/built /calckey/built -COPY --from=build /calckey/packages/backend/built /calckey/packages/backend/built -COPY --from=build /calckey/packages/backend/assets/instance.css /calckey/packages/backend/assets/instance.css -COPY --from=build /calckey/packages/backend/native-utils/built /calckey/packages/backend/native-utils/built +COPY --from=build /firefish/built /firefish/built +COPY --from=build /firefish/packages/backend/built /firefish/packages/backend/built +COPY --from=build /firefish/packages/backend/assets/instance.css /firefish/packages/backend/assets/instance.css +COPY --from=build /firefish/packages/backend/native-utils/built /firefish/packages/backend/native-utils/built RUN corepack enable && corepack prepare pnpm@latest --activate ENV NODE_ENV=production -VOLUME "/calckey/files" +VOLUME "/firefish/files" ENTRYPOINT [ "/sbin/tini", "--" ] CMD [ "pnpm", "run", "migrateandstart" ] diff --git a/CALCKEY.md b/FIREFISH.md similarity index 92% rename from CALCKEY.md rename to FIREFISH.md index 418ab27e9..92611af6b 100644 --- a/CALCKEY.md +++ b/FIREFISH.md @@ -1,7 +1,7 @@ -# All the changes to Calckey from stock Misskey +# All the changes to Firefish from stock Misskey > **Warning** -> This list is incomplete. Please check the [Releases](https://codeberg.org/calckey/calckey/releases) and [Changelog](https://codeberg.org/calckey/calckey/src/branch/develop/CHANGELOG.md) for a more complete list of changes. There have been [>4000 commits (laggy link)](https://codeberg.org/calckey/calckey/compare/700a7110f7e34f314b070987aa761c451ec34efc...develop) since we forked Misskey! +> This list is incomplete. Please check the [Releases](https://gitlab.prometheus.systems/firefish/firefish/releases) and [Changelog](https://gitlab.prometheus.systems/firefish/firefish/src/branch/develop/CHANGELOG.md) for a more complete list of changes. There have been [>4000 commits (laggy link)](https://gitlab.prometheus.systems/firefish/firefish/compare/700a7110f7e34f314b070987aa761c451ec34efc...develop) since we forked Misskey! ## Planned @@ -85,7 +85,7 @@ - Undo renote button inside original note - Custom locales - Obliteration of Ai-chan -- Switch to [Calckey.js](https://codeberg.org/calckey/calckey.js) +- Switch to [Firefish.js](https://gitlab.prometheus.systems/firefish/firefish.js) - Woozy mode 🥴 - Improve blocking servers - Release notes @@ -102,7 +102,7 @@ - Sonic search - Popular color schemes, including Nord, Gruvbox, and Catppuccin - Non-nyaify cat mode -- Post imports from other Calckey/Misskey/Mastodon/Pleroma/Akkoma servers +- Post imports from other Firefish/Misskey/Mastodon/Pleroma/Akkoma servers - Improve Classic mode - Proper Helm/Kubernetes config - Multiple boost visibilities diff --git a/README.md b/README.md index a2465cc09..d63e43f0a 100644 --- a/README.md +++ b/README.md @@ -1,30 +1,30 @@
- - Calckey logo + + Firefish logo -**🌎 **[Calckey](https://calckey.org/)** is an open source, decentralized social media platform that's free forever! 🚀** +**🌎 **[Firefish](https://firefish.org/)** is an open source, decentralized social media platform that's free forever! 🚀** [![no github badge](https://nogithub.codeberg.page/badge.svg)](https://nogithub.codeberg.page/) -[![status badge](https://ci.codeberg.org/api/badges/calckey/calckey/status.svg)](https://ci.codeberg.org/calckey/calckey) -[![opencollective badge](https://opencollective.com/calckey/tiers/badge.svg)](https://opencollective.com/Calckey) +[![status badge](https://ci.codeberg.org/api/badges/firefish/firefish/status.svg)](https://ci.codeberg.org/firefish/firefish) +[![opencollective badge](https://opencollective.com/firefish/tiers/badge.svg)](https://opencollective.com/Firefish) [![liberapay badge](https://img.shields.io/liberapay/receives/ThatOneCalculator?logo=liberapay)](https://liberapay.com/ThatOneCalculator) -[![translate-badge](https://hosted.weblate.org/widgets/calckey/-/svg-badge.svg)](https://hosted.weblate.org/engage/calckey/) -[![docker badge](https://img.shields.io/docker/pulls/thatonecalculator/calckey?logo=docker)](https://hub.docker.com/r/thatonecalculator/calckey) +[![translate-badge](https://hosted.weblate.org/widgets/firefish/-/svg-badge.svg)](https://hosted.weblate.org/engage/firefish/) +[![docker badge](https://img.shields.io/docker/pulls/thatonecalculator/firefish?logo=docker)](https://hub.docker.com/r/thatonecalculator/firefish) [![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-2.1-4baaaa.svg)](./CODE_OF_CONDUCT.md) -[![Codeberg badge](https://custom-icon-badges.demolab.com/badge/hosted%20on-codeberg-4793CC.svg?logo=codeberg&logoColor=white)](https://codeberg.org/calckey/calckey/) +[![Codeberg badge](https://custom-icon-badges.demolab.com/badge/hosted%20on-codeberg-4793CC.svg?logo=codeberg&logoColor=white)](https://gitlab.prometheus.systems/firefish/firefish/)
-Calc (the Calckey mascot) smoking a fat dart +Calc (the Firefish mascot) smoking a fat dart -# ✨ About Calckey +# ✨ About Firefish -- Calckey is based off of Misskey, a powerful microblogging server on ActivityPub with features such as emoji reactions, a customizable web UI, rich chatting, and much more! -- Calckey adds many quality of life changes and bug fixes for users and server admins alike. -- Read **[this document](./CALCKEY.md)** all for current and future differences. +- Firefish is based off of Misskey, a powerful microblogging server on ActivityPub with features such as emoji reactions, a customizable web UI, rich chatting, and much more! +- Firefish adds many quality of life changes and bug fixes for users and server admins alike. +- Read **[this document](./FIREFISH.md)** all for current and future differences. - Notable differences: - Improved UI/UX (especially on mobile) - Post editing @@ -41,7 +41,7 @@ - Backfill user information - Advanced search - Many more user and admin settings - - [So much more!](./CALCKEY.md) + - [So much more!](./FIREFISH.md)
@@ -51,30 +51,30 @@ ### Want to get involved? Great! -- If you have the means to, [donations](https://opencollective.com/Calckey) are a great way to keep us going. +- If you have the means to, [donations](https://opencollective.com/Firefish) are a great way to keep us going. - If you know how to program in TypeScript, Vue, or Rust, read the [contributing](./CONTRIBUTING.md) document. -- If you know a non-English language, translating Calckey on [Weblate](https://hosted.weblate.org/engage/calckey/) help bring Calckey to more people. No technical experience needed! -- Want to write/report about us, have any professional inquiries, or just have questions to ask? Contact us [here!](https://calckey.org/contact/) +- If you know a non-English language, translating Firefish on [Weblate](https://hosted.weblate.org/engage/firefish/) help bring Firefish to more people. No technical experience needed! +- Want to write/report about us, have any professional inquiries, or just have questions to ask? Contact us [here!](https://firefish.org/contact/) ### All links -- 🌐 Homepage: +- 🌐 Homepage: - 💸 Donations: - - OpenCollective: + - OpenCollective: - Liberapay: - Donate publicly to get your name on the Patron list! -- 🚢 Flagship server: -- 💁 Matrix support room: -- 📣 Official account: -- 📜 Server list: -- ✍️ Weblate: -- ️️📬 Contact: +- 🚢 Flagship server: +- 💁 Matrix support room: +- 📣 Official account: +- 📜 Server list: +- ✍️ Weblate: +- ️️📬 Contact: # 🌠 Getting started -Want to just join a Calckey server? View the list here, pick one, and join: +Want to just join a Firefish server? View the list here, pick one, and join: -### https://calckey.org/join +### https://firefish.org/join --- @@ -86,12 +86,12 @@ This guide will work for both **starting from scratch** and **migrating from Mis If you have access to a server that supports one of the sources below, I recommend you use it! Note that these methods *won't* allow you to migrate from Misskey without manual intervention. -[![Install on Ubuntu](https://pool.jortage.com/voringme/misskey/3b62a443-1b44-45cf-8f9e-f1c588f803ed.png)](https://codeberg.org/calckey/ubuntu-bash-install)  [![Install on the Arch User Repository](https://pool.jortage.com/voringme/misskey/ba2a5c07-f078-43f1-8483-2e01acca9c40.png)](https://aur.archlinux.org/packages/calckey)  [![Install Calckey with YunoHost](https://install-app.yunohost.org/install-with-yunohost.svg)](https://install-app.yunohost.org/?app=calckey) +[![Install on Ubuntu](https://pool.jortage.com/voringme/misskey/3b62a443-1b44-45cf-8f9e-f1c588f803ed.png)](https://codeberg.org/firefish/ubuntu-bash-install)  [![Install on the Arch User Repository](https://pool.jortage.com/voringme/misskey/ba2a5c07-f078-43f1-8483-2e01acca9c40.png)](https://aur.archlinux.org/packages/firefish)  [![Install Firefish with YunoHost](https://install-app.yunohost.org/install-with-yunohost.svg)](https://install-app.yunohost.org/?app=firefish) ## 🛳️ Containerization -- [🐳 How to run Calckey with Docker](https://codeberg.org/calckey/calckey/src/branch/develop/docs/docker.md) -- [🛞 How to run Calckey with Kubernetes/Helm](https://codeberg.org/calckey/calckey/src/branch/develop/docs/kubernetes.md) +- [🐳 How to run Firefish with Docker](https://gitlab.prometheus.systems/firefish/firefish/src/branch/develop/docs/docker.md) +- [🛞 How to run Firefish with Kubernetes/Helm](https://gitlab.prometheus.systems/firefish/firefish/src/branch/develop/docs/kubernetes.md) ## 🧑‍💻 Dependencies @@ -127,8 +127,8 @@ If you have access to a server that supports one of the sources below, I recomme ## 👀 Get folder ready ```sh -git clone https://codeberg.org/calckey/calckey.git -cd calckey/ +git clone https://gitlab.prometheus.systems/firefish/firefish.git +cd firefish/ ``` > **Note** @@ -154,23 +154,23 @@ pm2 install pm2-logrotate ``` > **Note** -> [`pm2-logrotate`](https://github.com/keymetrics/pm2-logrotate/blob/master/README.md) ensures that log files don't infinitely gather size, as Calckey produces a lot of logs. +> [`pm2-logrotate`](https://github.com/keymetrics/pm2-logrotate/blob/master/README.md) ensures that log files don't infinitely gather size, as Firefish produces a lot of logs. ## 🐘 Create database In PostgreSQL (`psql`), run the following command: ```sql -CREATE DATABASE calckey WITH encoding = 'UTF8'; +CREATE DATABASE firefish WITH encoding = 'UTF8'; ``` or run the following from the command line: ```sh -psql postgres -c "create database calckey with encoding = 'UTF8';" +psql postgres -c "create database firefish with encoding = 'UTF8';" ``` -In Calckey's directory, fill out the `db` section of `.config/default.yml` with the correct information, where the `db` key is `calckey`. +In Firefish's directory, fill out the `db` section of `.config/default.yml` with the correct information, where the `db` key is `firefish`. ## 💰 Caching server @@ -187,7 +187,7 @@ Follow sonic's [installation guide](https://github.com/valeriansaliou/sonic#inst > **Note** > If you use IPv4: in Sonic's directory, edit the `config.cfg` file to change `inet` to `"0.0.0.0:1491"`. -In Calckey's directory, fill out the `sonic` section of `.config/default.yml` with the correct information. +In Firefish's directory, fill out the `sonic` section of `.config/default.yml` with the correct information. ### Meilisearch @@ -195,11 +195,11 @@ Meilisearch is better suited for larger deployments. It's faster but uses far mo Follow Meilisearch's [quick start guide](https://www.meilisearch.com/docs/learn/getting_started/quick_start) -In Calckey's directory, fill out the `meilisearch` section of `.config/default.yml` with the correct information. +In Firefish's directory, fill out the `meilisearch` section of `.config/default.yml` with the correct information. ### ElasticSearch -Please don't use ElasticSearch unless you already have an ElasticSearch setup and want to continue using it for Calckey. ElasticSearch is slow, heavy, and offers very few benefits over Sonic/Meilisearch. +Please don't use ElasticSearch unless you already have an ElasticSearch setup and want to continue using it for Firefish. ElasticSearch is slow, heavy, and offers very few benefits over Sonic/Meilisearch. ## 💅 Customize @@ -216,17 +216,17 @@ Please don't use ElasticSearch unless you already have an ElasticSearch setup an - Edit `.config/default.yml`, making sure to fill out required fields. - Also copy and edit `.config/docker_example.env` to `.config/docker.env` if you're using Docker. -## 🚚 Migrating from Misskey/FoundKey to Calckey +## 🚚 Migrating from Misskey/FoundKey to Firefish -For migrating from Misskey v13, Misskey v12, and FoundKey, read [this document](https://codeberg.org/calckey/calckey/src/branch/develop/docs/migrate.md). +For migrating from Misskey v13, Misskey v12, and FoundKey, read [this document](https://gitlab.prometheus.systems/firefish/firefish/src/branch/develop/docs/migrate.md). ## 🌐 Web proxy ### 🍀 Nginx (recommended) -- Run `sudo cp ./calckey.nginx.conf /etc/nginx/sites-available/ && cd /etc/nginx/sites-available/` -- Edit `calckey.nginx.conf` to reflect your server properly -- Run `sudo ln -s ./calckey.nginx.conf ../sites-enabled/calckey.nginx.conf` +- Run `sudo cp ./firefish.nginx.conf /etc/nginx/sites-available/ && cd /etc/nginx/sites-available/` +- Edit `firefish.nginx.conf` to reflect your server properly +- Run `sudo ln -s ./firefish.nginx.conf ../sites-enabled/firefish.nginx.conf` - Run `sudo nginx -t` to validate that the config is valid, then restart the NGINX service. ### 🦦 Caddy @@ -242,29 +242,29 @@ example.tld { ### 🪶 Apache > **Warning** -> Apache has some known problems with Calckey. Only use it if you have to. +> Apache has some known problems with Firefish. Only use it if you have to. -- Run `sudo cp ./calckey.apache.conf /etc/apache2/sites-available/ && cd /etc/apache2/sites-available/` -- Edit `calckey.apache.conf` to reflect your server properly -- Run `sudo a2ensite calckey.apache` to enable the site +- Run `sudo cp ./firefish.apache.conf /etc/apache2/sites-available/ && cd /etc/apache2/sites-available/` +- Edit `firefish.apache.conf` to reflect your server properly +- Run `sudo a2ensite firefish.apache` to enable the site - Run `sudo service apache2 restart` to reload apache2 configuration ## 🚀 Build and launch! ### 🐢 NodeJS + pm2 -#### `git pull` and run these steps to update Calckey in the future! +#### `git pull` and run these steps to update Firefish in the future! ```sh # git pull pnpm install NODE_ENV=production pnpm run build && pnpm run migrate -pm2 start "NODE_ENV=production pnpm run start" --name Calckey +pm2 start "NODE_ENV=production pnpm run start" --name Firefish ``` ## 😉 Tips & Tricks -- When editing the config file, please don't fill out the settings at the bottom. They're designed *only* for managed hosting, not self hosting. Those settings are much better off being set in Calckey's control panel. -- Port 3000 (used in the default config) might be already used on your server for something else. To find an open port for Calckey, run `for p in {3000..4000}; do ss -tlnH | tr -s ' ' | cut -d" " -sf4 | grep -q "${p}$" || echo "${p}"; done | head -n 1`. Replace 3000 with the minimum port and 4000 with the maximum port if you need it. +- When editing the config file, please don't fill out the settings at the bottom. They're designed *only* for managed hosting, not self hosting. Those settings are much better off being set in Firefish's control panel. +- Port 3000 (used in the default config) might be already used on your server for something else. To find an open port for Firefish, run `for p in {3000..4000}; do ss -tlnH | tr -s ' ' | cut -d" " -sf4 | grep -q "${p}$" || echo "${p}"; done | head -n 1`. Replace 3000 with the minimum port and 4000 with the maximum port if you need it. - I'd recommend you use a S3 Bucket/CDN for Object Storage, especially if you use Docker. - I'd ***strongly*** recommend against using CloudFlare, but if you do, make sure to turn code minification off. - For push notifications, run `npx web-push generate-vapid-keys`, then put the public and private keys into Control Panel > General > ServiceWorker. @@ -272,6 +272,6 @@ pm2 start "NODE_ENV=production pnpm run start" --name Calckey - To add another admin account: - Go to the user's page > 3 Dots > About > Moderation > turn on "Moderator" - Go back to Overview > click the clipboard icon next to the ID - - Run `psql -d calckey` (or whatever the database name is) + - Run `psql -d firefish` (or whatever the database name is) - Run `UPDATE "user" SET "isAdmin" = true WHERE id='999999';` (replace `999999` with the copied ID) - - Restart your Calckey server + - Restart your Firefish server diff --git a/SECURITY.md b/SECURITY.md index 848fa7cb7..2f26af6b6 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -2,7 +2,7 @@ ## Minor Security Issues -If you discover a minor security issue in Calckey, please report it by sending an +If you discover a minor security issue in Firefish, please report it by sending an email to [kainoa@t1c.dev](mailto:kainoa@t1c.dev). ## High Security Issues @@ -13,4 +13,4 @@ If you discover a security issue, which is so high risk, that too much is affect This will allow us to assess the risk, and make a fix available before we add a bug report to the Codeberg repository. -Thanks for helping make Calckey safe for everyone. +Thanks for helping make Firefish safe for everyone. diff --git a/chart/Chart.yaml b/chart/Chart.yaml index 820c2313a..3bcd2adea 100644 --- a/chart/Chart.yaml +++ b/chart/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 -name: calckey -description: A fun, new, open way to experience social media https://calckey.org +name: firefish +description: A fun, new, open way to experience social media https://firefish.org # A chart can be either an 'application' or a 'library' chart. # diff --git a/chart/README.md b/chart/README.md index 1bcbd8753..235c3c5c6 100644 --- a/chart/README.md +++ b/chart/README.md @@ -1,8 +1,8 @@ -# calckey +# firefish ![Version: 0.1.2](https://img.shields.io/badge/Version-0.1.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: rc](https://img.shields.io/badge/AppVersion-rc-informational?style=flat-square) -A fun, new, open way to experience social media https://calckey.org +A fun, new, open way to experience social media https://firefish.org ## Requirements @@ -21,39 +21,39 @@ A fun, new, open way to experience social media https://calckey.org | autoscaling.maxReplicas | int | `100` | | | autoscaling.minReplicas | int | `1` | | | autoscaling.targetCPUUtilizationPercentage | int | `80` | | -| calckey.allowedPrivateNetworks | list | `[]` | If you want to allow calckey to connect to private ips, enter the cidrs here. | -| calckey.deepl.authKey | string | `""` | | -| calckey.deepl.isPro | bool | `false` | | -| calckey.deepl.managed | bool | `false` | | -| calckey.domain | string | `"calckey.local"` | | -| calckey.isManagedHosting | bool | `true` | | -| calckey.libreTranslate.apiKey | string | `""` | | -| calckey.libreTranslate.apiUrl | string | `""` | | -| calckey.libreTranslate.managed | bool | `false` | | -| calckey.objectStorage.access_key | string | `""` | | -| calckey.objectStorage.access_secret | string | `""` | | -| calckey.objectStorage.baseUrl | string | `""` | | -| calckey.objectStorage.bucket | string | `""` | | -| calckey.objectStorage.endpoint | string | `""` | | -| calckey.objectStorage.managed | bool | `true` | | -| calckey.objectStorage.prefix | string | `"files"` | | -| calckey.objectStorage.region | string | `""` | | -| calckey.reservedUsernames[0] | string | `"root"` | | -| calckey.reservedUsernames[1] | string | `"admin"` | | -| calckey.reservedUsernames[2] | string | `"administrator"` | | -| calckey.reservedUsernames[3] | string | `"me"` | | -| calckey.reservedUsernames[4] | string | `"system"` | | -| calckey.smtp.from_address | string | `"notifications@example.com"` | | -| calckey.smtp.login | string | `""` | | -| calckey.smtp.managed | bool | `true` | | -| calckey.smtp.password | string | `""` | | -| calckey.smtp.port | int | `587` | | -| calckey.smtp.server | string | `"smtp.mailgun.org"` | | -| calckey.smtp.useImplicitSslTls | bool | `false` | | +| firefish.allowedPrivateNetworks | list | `[]` | If you want to allow firefish to connect to private ips, enter the cidrs here. | +| firefish.deepl.authKey | string | `""` | | +| firefish.deepl.isPro | bool | `false` | | +| firefish.deepl.managed | bool | `false` | | +| firefish.domain | string | `"firefish.local"` | | +| firefish.isManagedHosting | bool | `true` | | +| firefish.libreTranslate.apiKey | string | `""` | | +| firefish.libreTranslate.apiUrl | string | `""` | | +| firefish.libreTranslate.managed | bool | `false` | | +| firefish.objectStorage.access_key | string | `""` | | +| firefish.objectStorage.access_secret | string | `""` | | +| firefish.objectStorage.baseUrl | string | `""` | | +| firefish.objectStorage.bucket | string | `""` | | +| firefish.objectStorage.endpoint | string | `""` | | +| firefish.objectStorage.managed | bool | `true` | | +| firefish.objectStorage.prefix | string | `"files"` | | +| firefish.objectStorage.region | string | `""` | | +| firefish.reservedUsernames[0] | string | `"root"` | | +| firefish.reservedUsernames[1] | string | `"admin"` | | +| firefish.reservedUsernames[2] | string | `"administrator"` | | +| firefish.reservedUsernames[3] | string | `"me"` | | +| firefish.reservedUsernames[4] | string | `"system"` | | +| firefish.smtp.from_address | string | `"notifications@example.com"` | | +| firefish.smtp.login | string | `""` | | +| firefish.smtp.managed | bool | `true` | | +| firefish.smtp.password | string | `""` | | +| firefish.smtp.port | int | `587` | | +| firefish.smtp.server | string | `"smtp.mailgun.org"` | | +| firefish.smtp.useImplicitSslTls | bool | `false` | | | elasticsearch | object | `{"auth":{},"enabled":false,"hostname":"","port":9200,"ssl":false}` | https://github.com/bitnami/charts/tree/master/bitnami/elasticsearch#parameters | | fullnameOverride | string | `""` | | | image.pullPolicy | string | `"IfNotPresent"` | | -| image.repository | string | `"docker.io/thatonecalculator/calckey"` | | +| image.repository | string | `"docker.io/thatonecalculator/firefish"` | | | image.tag | string | `""` | | | imagePullSecrets | list | `[]` | | | ingress.annotations | object | `{}` | | @@ -67,9 +67,9 @@ A fun, new, open way to experience social media https://calckey.org | nodeSelector | object | `{}` | | | podAnnotations | object | `{}` | | | podSecurityContext | object | `{}` | | -| postgresql.auth.database | string | `"calckey_production"` | | +| postgresql.auth.database | string | `"firefish_production"` | | | postgresql.auth.password | string | `""` | | -| postgresql.auth.username | string | `"calckey"` | | +| postgresql.auth.username | string | `"firefish"` | | | postgresql.enabled | bool | `true` | disable if you want to use an existing db; in which case the values below must match those of that external postgres instance | | redis.auth.password | string | `""` | you must set a password; the password generated by the redis chart will be rotated on each upgrade: | | redis.enabled | bool | `true` | | diff --git a/chart/templates/NOTES.txt b/chart/templates/NOTES.txt index d3e4f2f20..e84ee93cf 100644 --- a/chart/templates/NOTES.txt +++ b/chart/templates/NOTES.txt @@ -6,16 +6,16 @@ {{- end }} {{- end }} {{- else if contains "NodePort" .Values.service.type }} - export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ include "calckey.fullname" . }}) + export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ include "firefish.fullname" . }}) export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}") echo http://$NODE_IP:$NODE_PORT {{- else if contains "LoadBalancer" .Values.service.type }} NOTE: It may take a few minutes for the LoadBalancer IP to be available. - You can watch the status of by running 'kubectl get --namespace {{ .Release.Namespace }} svc -w {{ include "calckey.fullname" . }}' - export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ include "calckey.fullname" . }} --template "{{"{{ range (index .status.loadBalancer.ingress 0) }}{{.}}{{ end }}"}}") + You can watch the status of by running 'kubectl get --namespace {{ .Release.Namespace }} svc -w {{ include "firefish.fullname" . }}' + export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ include "firefish.fullname" . }} --template "{{"{{ range (index .status.loadBalancer.ingress 0) }}{{.}}{{ end }}"}}") echo http://$SERVICE_IP:{{ .Values.service.port }} {{- else if contains "ClusterIP" .Values.service.type }} - export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app.kubernetes.io/name={{ include "calckey.name" . }},app.kubernetes.io/instance={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}") + export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app.kubernetes.io/name={{ include "firefish.name" . }},app.kubernetes.io/instance={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}") export CONTAINER_PORT=$(kubectl get pod --namespace {{ .Release.Namespace }} $POD_NAME -o jsonpath="{.spec.containers[0].ports[0].containerPort}") echo "Visit http://127.0.0.1:8080 to use your application" kubectl --namespace {{ .Release.Namespace }} port-forward $POD_NAME 8080:$CONTAINER_PORT diff --git a/chart/templates/_helpers.tpl b/chart/templates/_helpers.tpl index 81009ed01..a7b4b9d32 100644 --- a/chart/templates/_helpers.tpl +++ b/chart/templates/_helpers.tpl @@ -1,7 +1,7 @@ {{/* Expand the name of the chart. */}} -{{- define "calckey.name" -}} +{{- define "firefish.name" -}} {{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" }} {{- end }} @@ -10,7 +10,7 @@ Create a default fully qualified app name. We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). If release name contains chart name it will be used as a full name. */}} -{{- define "calckey.fullname" -}} +{{- define "firefish.fullname" -}} {{- if .Values.fullnameOverride }} {{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" }} {{- else }} @@ -26,16 +26,16 @@ If release name contains chart name it will be used as a full name. {{/* Create chart name and version as used by the chart label. */}} -{{- define "calckey.chart" -}} +{{- define "firefish.chart" -}} {{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }} {{- end }} {{/* Common labels */}} -{{- define "calckey.labels" -}} -helm.sh/chart: {{ include "calckey.chart" . }} -{{ include "calckey.selectorLabels" . }} +{{- define "firefish.labels" -}} +helm.sh/chart: {{ include "firefish.chart" . }} +{{ include "firefish.selectorLabels" . }} {{- if .Chart.AppVersion }} app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} {{- end }} @@ -45,17 +45,17 @@ app.kubernetes.io/managed-by: {{ .Release.Service }} {{/* Selector labels */}} -{{- define "calckey.selectorLabels" -}} -app.kubernetes.io/name: {{ include "calckey.name" . }} +{{- define "firefish.selectorLabels" -}} +app.kubernetes.io/name: {{ include "firefish.name" . }} app.kubernetes.io/instance: {{ .Release.Name }} {{- end }} {{/* Create the name of the service account to use */}} -{{- define "calckey.serviceAccountName" -}} +{{- define "firefish.serviceAccountName" -}} {{- if .Values.serviceAccount.create }} -{{- default (include "calckey.fullname" .) .Values.serviceAccount.name }} +{{- default (include "firefish.fullname" .) .Values.serviceAccount.name }} {{- else }} {{- default "default" .Values.serviceAccount.name }} {{- end }} @@ -65,31 +65,31 @@ Create the name of the service account to use Create a default fully qualified name for dependent services. We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). */}} -{{- define "calckey.elasticsearch.fullname" -}} +{{- define "firefish.elasticsearch.fullname" -}} {{- printf "%s-%s" .Release.Name "elasticsearch" | trunc 63 | trimSuffix "-" -}} {{- end -}} -{{- define "calckey.redis.fullname" -}} +{{- define "firefish.redis.fullname" -}} {{- printf "%s-%s" .Release.Name "redis" | trunc 63 | trimSuffix "-" -}} {{- end -}} -{{- define "calckey.postgresql.fullname" -}} +{{- define "firefish.postgresql.fullname" -}} {{- printf "%s-%s" .Release.Name "postgresql" | trunc 63 | trimSuffix "-" -}} {{- end -}} {{/* config/default.yml content */}} -{{- define "calckey.configDir.default.yml" -}} +{{- define "firefish.configDir.default.yml" -}} #━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ -# Calckey configuration +# Firefish configuration #━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ # ┌─────┐ #───┘ URL └───────────────────────────────────────────────────── # Final accessible URL seen by a user. -url: "https://{{ .Values.calckey.domain }}/" +url: "https://{{ .Values.firefish.domain }}/" # ONCE YOU HAVE STARTED THE INSTANCE, DO NOT CHANGE THE # URL SETTINGS AFTER THAT! @@ -118,7 +118,7 @@ port: 3000 db: {{- if .Values.postgresql.enabled }} - host: {{ template "calckey.postgresql.fullname" . }} + host: {{ template "firefish.postgresql.fullname" . }} port: '5432' {{- else }} host: {{ .Values.postgresql.postgresqlHostname }} @@ -146,7 +146,7 @@ db: redis: {{- if .Values.redis.enabled }} - host: {{ template "calckey.redis.fullname" . }}-master + host: {{ template "firefish.redis.fullname" . }}-master {{- else }} host: {{ required "When the redis chart is disabled .Values.redis.hostname is required" .Values.redis.hostname }} {{- end }} @@ -218,7 +218,7 @@ id: 'aid' # Reserved usernames that only the administrator can register with reservedUsernames: -{{ .Values.calckey.reservedUsernames | toYaml }} +{{ .Values.firefish.reservedUsernames | toYaml }} # Whether disable HSTS #disableHsts: true @@ -266,7 +266,7 @@ reservedUsernames: #proxyRemoteFiles: true allowedPrivateNetworks: -{{ .Values.calckey.allowedPrivateNetworks | toYaml }} +{{ .Values.firefish.allowedPrivateNetworks | toYaml }} # TWA #twa: @@ -286,34 +286,34 @@ allowedPrivateNetworks: # If you mess this up, that's on you, you've been warned... #maxUserSignups: 100 -isManagedHosting: {{ .Values.calckey.isManagedHosting }} +isManagedHosting: {{ .Values.firefish.isManagedHosting }} deepl: - managed: {{ .Values.calckey.deepl.managed }} - authKey: {{ .Values.calckey.deepl.authKey | quote}} - isPro: {{ .Values.calckey.deepl.isPro }} + managed: {{ .Values.firefish.deepl.managed }} + authKey: {{ .Values.firefish.deepl.authKey | quote}} + isPro: {{ .Values.firefish.deepl.isPro }} libreTranslate: - managed: {{ .Values.calckey.libreTranslate.managed }} - apiUrl: {{ .Values.calckey.libreTranslate.apiUrl | quote }} - apiKey: {{ .Values.calckey.libreTranslate.apiKey | quote }} + managed: {{ .Values.firefish.libreTranslate.managed }} + apiUrl: {{ .Values.firefish.libreTranslate.apiUrl | quote }} + apiKey: {{ .Values.firefish.libreTranslate.apiKey | quote }} email: - managed: {{ .Values.calckey.smtp.managed }} - address: {{ .Values.calckey.smtp.from_address | quote }} - host: {{ .Values.calckey.smtp.server | quote }} - port: {{ .Values.calckey.smtp.port }} - user: {{ .Values.calckey.smtp.login | quote }} - pass: {{ .Values.calckey.smtp.password | quote }} - useImplicitSslTls: {{ .Values.calckey.smtp.useImplicitSslTls }} + managed: {{ .Values.firefish.smtp.managed }} + address: {{ .Values.firefish.smtp.from_address | quote }} + host: {{ .Values.firefish.smtp.server | quote }} + port: {{ .Values.firefish.smtp.port }} + user: {{ .Values.firefish.smtp.login | quote }} + pass: {{ .Values.firefish.smtp.password | quote }} + useImplicitSslTls: {{ .Values.firefish.smtp.useImplicitSslTls }} objectStorage: - managed: {{ .Values.calckey.objectStorage.managed }} - baseUrl: {{ .Values.calckey.objectStorage.baseUrl | quote }} - bucket: {{ .Values.calckey.objectStorage.bucket | quote }} - prefix: {{ .Values.calckey.objectStorage.prefix | quote }} - endpoint: {{ .Values.calckey.objectStorage.endpoint | quote }} - region: {{ .Values.calckey.objectStorage.region | quote }} - accessKey: {{ .Values.calckey.objectStorage.access_key | quote }} - secretKey: {{ .Values.calckey.objectStorage.access_secret | quote }} + managed: {{ .Values.firefish.objectStorage.managed }} + baseUrl: {{ .Values.firefish.objectStorage.baseUrl | quote }} + bucket: {{ .Values.firefish.objectStorage.bucket | quote }} + prefix: {{ .Values.firefish.objectStorage.prefix | quote }} + endpoint: {{ .Values.firefish.objectStorage.endpoint | quote }} + region: {{ .Values.firefish.objectStorage.region | quote }} + accessKey: {{ .Values.firefish.objectStorage.access_key | quote }} + secretKey: {{ .Values.firefish.objectStorage.access_secret | quote }} useSsl: true connnectOverProxy: false setPublicReadOnUpload: true diff --git a/chart/templates/deployment.yaml b/chart/templates/deployment.yaml index 9b0c60694..ca6316763 100644 --- a/chart/templates/deployment.yaml +++ b/chart/templates/deployment.yaml @@ -1,16 +1,16 @@ apiVersion: apps/v1 kind: Deployment metadata: - name: {{ include "calckey.fullname" . }} + name: {{ include "firefish.fullname" . }} labels: - {{- include "calckey.labels" . | nindent 4 }} + {{- include "firefish.labels" . | nindent 4 }} spec: {{- if not .Values.autoscaling.enabled }} replicas: {{ .Values.replicaCount }} {{- end }} selector: matchLabels: - {{- include "calckey.selectorLabels" . | nindent 6 }} + {{- include "firefish.selectorLabels" . | nindent 6 }} template: metadata: annotations: @@ -19,19 +19,19 @@ spec: {{- toYaml . | nindent 8 }} {{- end }} labels: - {{- include "calckey.selectorLabels" . | nindent 8 }} + {{- include "firefish.selectorLabels" . | nindent 8 }} spec: {{- with .Values.imagePullSecrets }} imagePullSecrets: {{- toYaml . | nindent 8 }} {{- end }} - serviceAccountName: {{ include "calckey.serviceAccountName" . }} + serviceAccountName: {{ include "firefish.serviceAccountName" . }} securityContext: {{- toYaml .Values.podSecurityContext | nindent 8 }} volumes: - name: config-volume secret: - secretName: {{ template "calckey.fullname" . }}-config + secretName: {{ template "firefish.fullname" . }}-config containers: - name: {{ .Chart.Name }} securityContext: @@ -47,7 +47,7 @@ spec: value: "production" volumeMounts: - name: config-volume - mountPath: /calckey/.config + mountPath: /firefish/.config ports: - name: http containerPort: 3000 diff --git a/chart/templates/hpa.yaml b/chart/templates/hpa.yaml index 4cdd2b625..db19534a8 100644 --- a/chart/templates/hpa.yaml +++ b/chart/templates/hpa.yaml @@ -2,14 +2,14 @@ apiVersion: autoscaling/v2beta1 kind: HorizontalPodAutoscaler metadata: - name: {{ include "calckey.fullname" . }} + name: {{ include "firefish.fullname" . }} labels: - {{- include "calckey.labels" . | nindent 4 }} + {{- include "firefish.labels" . | nindent 4 }} spec: scaleTargetRef: apiVersion: apps/v1 kind: Deployment - name: {{ include "calckey.fullname" . }} + name: {{ include "firefish.fullname" . }} minReplicas: {{ .Values.autoscaling.minReplicas }} maxReplicas: {{ .Values.autoscaling.maxReplicas }} metrics: diff --git a/chart/templates/ingress.yaml b/chart/templates/ingress.yaml index 212c40e4b..65caa43e8 100644 --- a/chart/templates/ingress.yaml +++ b/chart/templates/ingress.yaml @@ -1,5 +1,5 @@ {{- if .Values.ingress.enabled -}} -{{- $fullName := include "calckey.fullname" . -}} +{{- $fullName := include "firefish.fullname" . -}} {{- $svcPort := .Values.service.port -}} {{- if and .Values.ingress.className (not (semverCompare ">=1.18-0" .Capabilities.KubeVersion.GitVersion)) }} {{- if not (hasKey .Values.ingress.annotations "kubernetes.io/ingress.class") }} @@ -17,7 +17,7 @@ kind: Ingress metadata: name: {{ $fullName }} labels: - {{- include "calckey.labels" . | nindent 4 }} + {{- include "firefish.labels" . | nindent 4 }} {{- with .Values.ingress.annotations }} annotations: {{- toYaml . | nindent 4 }} diff --git a/chart/templates/job-db-migrate.yaml b/chart/templates/job-db-migrate.yaml index e006aef3b..1aedeab5b 100644 --- a/chart/templates/job-db-migrate.yaml +++ b/chart/templates/job-db-migrate.yaml @@ -1,9 +1,9 @@ apiVersion: batch/v1 kind: Job metadata: - name: {{ include "calckey.fullname" . }}-db-migrate + name: {{ include "firefish.fullname" . }}-db-migrate labels: - {{- include "calckey.labels" . | nindent 4 }} + {{- include "firefish.labels" . | nindent 4 }} annotations: "helm.sh/hook": post-install,pre-upgrade "helm.sh/hook-delete-policy": before-hook-creation,hook-succeeded @@ -11,7 +11,7 @@ metadata: spec: template: metadata: - name: {{ include "calckey.fullname" . }}-db-migrate + name: {{ include "firefish.fullname" . }}-db-migrate {{- with .Values.podAnnotations }} annotations: {{- toYaml . | nindent 8 }} @@ -22,13 +22,13 @@ spec: imagePullSecrets: {{- toYaml . | nindent 8 }} {{- end }} - serviceAccountName: {{ include "calckey.serviceAccountName" . }} + serviceAccountName: {{ include "firefish.serviceAccountName" . }} securityContext: {{- toYaml .Values.podSecurityContext | nindent 8 }} volumes: - name: config-volume secret: - secretName: {{ template "calckey.fullname" . }}-config + secretName: {{ template "firefish.fullname" . }}-config containers: - name: {{ .Chart.Name }} securityContext: @@ -44,7 +44,7 @@ spec: value: "production" volumeMounts: - name: config-volume - mountPath: /calckey/.config + mountPath: /firefish/.config {{- with .Values.nodeSelector }} nodeSelector: {{- toYaml . | nindent 8 }} diff --git a/chart/templates/secret-config.yaml b/chart/templates/secret-config.yaml index 2dad134c5..9f683cfcd 100644 --- a/chart/templates/secret-config.yaml +++ b/chart/templates/secret-config.yaml @@ -1,9 +1,9 @@ apiVersion: v1 kind: Secret metadata: - name: {{ template "calckey.fullname" . }}-config + name: {{ template "firefish.fullname" . }}-config labels: - {{- include "calckey.labels" . | nindent 4 }} + {{- include "firefish.labels" . | nindent 4 }} type: Opaque data: - default.yml: {{ include "calckey.configDir.default.yml" . | b64enc }} + default.yml: {{ include "firefish.configDir.default.yml" . | b64enc }} diff --git a/chart/templates/service.yaml b/chart/templates/service.yaml index d46067a40..f49d9cd5d 100644 --- a/chart/templates/service.yaml +++ b/chart/templates/service.yaml @@ -1,9 +1,9 @@ apiVersion: v1 kind: Service metadata: - name: {{ include "calckey.fullname" . }} + name: {{ include "firefish.fullname" . }} labels: - {{- include "calckey.labels" . | nindent 4 }} + {{- include "firefish.labels" . | nindent 4 }} spec: type: {{ .Values.service.type }} ports: @@ -12,4 +12,4 @@ spec: protocol: TCP name: http selector: - {{- include "calckey.selectorLabels" . | nindent 4 }} + {{- include "firefish.selectorLabels" . | nindent 4 }} diff --git a/chart/templates/serviceaccount.yaml b/chart/templates/serviceaccount.yaml index f269ad028..d8db3a3ae 100644 --- a/chart/templates/serviceaccount.yaml +++ b/chart/templates/serviceaccount.yaml @@ -2,9 +2,9 @@ apiVersion: v1 kind: ServiceAccount metadata: - name: {{ include "calckey.serviceAccountName" . }} + name: {{ include "firefish.serviceAccountName" . }} labels: - {{- include "calckey.labels" . | nindent 4 }} + {{- include "firefish.labels" . | nindent 4 }} {{- with .Values.serviceAccount.annotations }} annotations: {{- toYaml . | nindent 4 }} diff --git a/chart/templates/tests/test-connection.yaml b/chart/templates/tests/test-connection.yaml index b8db3d9a1..7abe03611 100644 --- a/chart/templates/tests/test-connection.yaml +++ b/chart/templates/tests/test-connection.yaml @@ -1,9 +1,9 @@ apiVersion: v1 kind: Pod metadata: - name: "{{ include "calckey.fullname" . }}-test-connection" + name: "{{ include "firefish.fullname" . }}-test-connection" labels: - {{- include "calckey.labels" . | nindent 4 }} + {{- include "firefish.labels" . | nindent 4 }} annotations: "helm.sh/hook": test spec: @@ -11,5 +11,5 @@ spec: - name: wget image: busybox command: ['wget'] - args: ['{{ include "calckey.fullname" . }}:{{ .Values.service.port }}'] + args: ['{{ include "firefish.fullname" . }}:{{ .Values.service.port }}'] restartPolicy: Never diff --git a/chart/values.yaml b/chart/values.yaml index 84c0536e5..3bb050441 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -1,18 +1,18 @@ -# Default values for calckey. +# Default values for firefish. # This is a YAML-formatted file. # Declare variables to be passed into your templates. replicaCount: 1 image: - repository: docker.io/thatonecalculator/calckey + repository: docker.io/thatonecalculator/firefish pullPolicy: IfNotPresent # Overrides the image tag whose default is the chart appVersion. tag: "" -calckey: +firefish: isManagedHosting: true - domain: calckey.local + domain: firefish.local deepl: managed: false @@ -43,7 +43,7 @@ calckey: endpoint: "" # e.g. "nyc3.digitaloceanspaces.com:443" region: "" # e.g. "nyc3" - # -- If you want to allow calckey to connect to private ips, enter the cidrs here. + # -- If you want to allow firefish to connect to private ips, enter the cidrs here. allowedPrivateNetworks: [] # - "10.0.0.0/8" @@ -62,8 +62,8 @@ postgresql: # postgresqlHostname: preexisting-postgresql # postgresqlPort: 5432 auth: - database: calckey_production - username: calckey + database: firefish_production + username: firefish # you must set a password; the password generated by the postgresql chart will # be rotated on each upgrade: # https://github.com/bitnami/charts/tree/master/bitnami/postgresql#upgrade diff --git a/cliff.toml b/cliff.toml index 394b84577..44caf8030 100644 --- a/cliff.toml +++ b/cliff.toml @@ -4,7 +4,7 @@ # changelog header header = """ # Changelog\n -All changes from v13.0.0 onwards, for a full list of differences read CALCKEY.md\n +All changes from v13.0.0 onwards, for a full list of differences read FIREFISH.md\n """ # template for the changelog body # https://tera.netlify.app/docs/#introduction diff --git a/custom/assets/LICENSE b/custom/assets/LICENSE index 342509dec..cb57aef95 100644 --- a/custom/assets/LICENSE +++ b/custom/assets/LICENSE @@ -1,4 +1,4 @@ -Copyright 2023 Calckey +Copyright 2023 Firefish Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/dev/docker-compose.yml.example b/dev/docker-compose.yml.example index db235f7a7..21779a57b 100644 --- a/dev/docker-compose.yml.example +++ b/dev/docker-compose.yml.example @@ -2,9 +2,9 @@ version: "3" services: web: - image: docker.io/thatonecalculator/calckey + image: docker.io/thatonecalculator/firefish build: .. - container_name: calckey_web + container_name: firefish_web restart: always depends_on: - db @@ -16,12 +16,12 @@ services: - network # - web volumes: - - ../files:/calckey/files - - ../.config:/calckey/.config:ro + - ../files:/firefish/files + - ../.config:/firefish/.config:ro redis: restart: always - container_name: calckey_redis + container_name: firefish_redis image: docker.io/redis:7.0-alpine networks: - network @@ -31,7 +31,7 @@ services: db: restart: always image: docker.io/postgres:12.2-alpine - container_name: calckey_db + container_name: firefish_db networks: - network env_file: diff --git a/docker-compose.yml b/docker-compose.yml index abb1882ea..720cb6327 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,8 +2,8 @@ version: "3" services: web: - image: docker.io/thatonecalculator/calckey - container_name: calckey_web + image: docker.io/thatonecalculator/firefish + container_name: firefish_web restart: unless-stopped depends_on: - db @@ -19,13 +19,13 @@ services: environment: NODE_ENV: production volumes: - - ./files:/calckey/files - - ./.config:/calckey/.config:ro + - ./files:/firefish/files + - ./.config:/firefish/.config:ro redis: restart: unless-stopped image: docker.io/redis:7.0-alpine - container_name: calckey_redis + container_name: firefish_redis networks: - calcnet volumes: @@ -34,7 +34,7 @@ services: db: restart: unless-stopped image: docker.io/postgres:12.2-alpine - container_name: calckey_db + container_name: firefish_db networks: - calcnet env_file: diff --git a/docs/api-doc.md b/docs/api-doc.md index 4051144de..04fbaffd4 100644 --- a/docs/api-doc.md +++ b/docs/api-doc.md @@ -1,5 +1,5 @@ # API Documentation -You can find interactive API documentation at any Calckey instance. https://calckey.social/api-doc +You can find interactive API documentation at any Firefish instance. https://firefish.social/api-doc -You can also find auto-generated documentation for calckey-js [here](../packages/calckey-js/markdown/calckey-js.md). +You can also find auto-generated documentation for firefish-js [here](../packages/firefish-js/markdown/firefish-js.md). diff --git a/docs/development.md b/docs/development.md index 6d6c0ea8d..31e6bf999 100644 --- a/docs/development.md +++ b/docs/development.md @@ -1,7 +1,7 @@ -# 🌎 Calckey Developer Docs +# 🌎 Firefish Developer Docs ## Nix Dev Environment -The Calckey repo comes with a Nix-based shell environment to help make development as easy as possible! +The Firefish repo comes with a Nix-based shell environment to help make development as easy as possible! Please note, however, that this environment will not work on Windows outside of a WSL2 environment. @@ -10,12 +10,12 @@ Please note, however, that this environment will not work on Windows outside of - Installed the [Nix Package Manager](https://nixos.org/download.html) (use the comman on their website) - Installed [direnv](https://direnv.net/docs/installation.html) and added its hook to your shell. (package manager) -Once the repo is cloned to your computer, follow these next few steps inside the Calckey folder: +Once the repo is cloned to your computer, follow these next few steps inside the Firefish folder: - Run `direnv allow`. This will build the environment and install all needed tools. - Run `install-deps`, then `prepare-config`, to install the node dependencies and prepare the needed config files. -- In a second terminal, run `devenv up`. This will spawn a **Redis** server, a **Postgres** server, and the **Calckey** server in dev mode. -- Once you see the Calckey banner printed in your second terminal, run `migrate` in the first. +- In a second terminal, run `devenv up`. This will spawn a **Redis** server, a **Postgres** server, and the **Firefish** server in dev mode. +- Once you see the Firefish banner printed in your second terminal, run `migrate` in the first. - Once migrations finish, open http://localhost:3000 in your web browser. - You should now see the admin user creation screen! @@ -40,7 +40,7 @@ delete `flake.lock`, or better, run `nix flake update --extra-experimental-featu after that, run `direnv rebuild` if there are any errors, you might have to change `flake.nix` -(because the available options can change between versions - consider getting support in [the matrix channel](https://matrix.to/#/#calckey:matrix.fedibird.com)) +(because the available options can change between versions - consider getting support in [the matrix channel](https://matrix.to/#/#firefish:matrix.fedibird.com)) ### after changing a node version in my case, i had to change the node version from 19, to 18 @@ -66,18 +66,18 @@ devenv up may take a looong time. (some say this is fake news, maybe it was bad do not get spooked by this error: ``` -> calckey@14.0.0-dev32 start /mnt/.../calckey +> firefish@14.0.0-dev32 start /mnt/.../firefish > pnpm --filter backend run start -> backend@ start /mnt/.../calckey/packages/backend +> backend@ start /mnt/.../firefish/packages/backend > pnpm node ./built/index.js node:internal/modules/cjs/loader:1078 throw err; ^ -Error: Cannot find module '/mnt/.../calckey/packages/backend/built/index.js' +Error: Cannot find module '/mnt/.../firefish/packages/backend/built/index.js' at Module._resolveFilename (node:internal/modules/cjs/loader:1075:15) at Module._load (node:internal/modules/cjs/loader:920:27) at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:81:12) @@ -88,7 +88,7 @@ Error: Cannot find module '/mnt/.../calckey/packages/backend/built/index.js' Node.js v18.16.0 undefined -/mnt/.../calckey/packages/backend: +/mnt/.../firefish/packages/backend:  ERR_PNPM_RECURSIVE_RUN_FIRST_FAIL  backend@ start: `pnpm node ./built/index.js` Exit status 1  ELIFECYCLE  Command failed with exit code 1. @@ -97,7 +97,7 @@ Exit status 1 the script is designed to constantly try to start the server, while the build is still running. this just means that the build isn't finished yet. -at some point you should see a banner that says "Calckey" in big letters - +at some point you should see a banner that says "Firefish" in big letters - then you're good to go and can run `migrate` (in another terminal)! if you don't see the banner, diff --git a/docs/docker.md b/docs/docker.md index 0c625a4b3..b8a243a38 100644 --- a/docs/docker.md +++ b/docs/docker.md @@ -1,14 +1,14 @@ -# 🐳 Running a Calckey server with Docker +# 🐳 Running a Firefish server with Docker ## Pre-built docker container -[thatonecalculator/calckey](https://hub.docker.com/r/thatonecalculator/calckey) +[thatonecalculator/firefish](https://hub.docker.com/r/thatonecalculator/firefish) ## `docker-compose` There is a `docker-compose.yml` in the root of the project that you can use to build the container from source - .config/docker.env (**db config settings**) -- .config/default.yml (**calckey server settings**) +- .config/default.yml (**firefish server settings**) ## Configuring @@ -21,22 +21,22 @@ Rename the files: then edit them according to your environment. You can configure `docker.env` with anything you like, but you will have to pay attention to the `default.yml` file: - `url` should be set to the URL you will be hosting the web interface for the server at. -- `host`, `db`, `user`, `pass` will have to be configured in the `PostgreSQL configuration` section - `host` is the name of the postgres container (eg: *calckey_db_1*), and the others should match your `docker.env`. -- `host`will need to be configured in the *Redis configuration* section - it is the name of the redis container (eg: *calckey_redis_1*) +- `host`, `db`, `user`, `pass` will have to be configured in the `PostgreSQL configuration` section - `host` is the name of the postgres container (eg: *firefish_db_1*), and the others should match your `docker.env`. +- `host`will need to be configured in the *Redis configuration* section - it is the name of the redis container (eg: *firefish_redis_1*) - `auth` will need to be configured in the *Sonic* section - cannot be the default `SecretPassword` Everything else can be left as-is. ## Running docker-compose -The [prebuilt container for calckey](https://hub.docker.com/r/thatonecalculator/calckey) is fairly large, and may take a few minutes to download and extract using docker. +The [prebuilt container for firefish](https://hub.docker.com/r/thatonecalculator/firefish) is fairly large, and may take a few minutes to download and extract using docker. Copy `docker-compose.yml` and the `config/` to a directory, then run the **docker-compose** command: `docker-compose up -d`. -NOTE: This will take some time to come fully online, even after download and extracting the container images, and it may emit some error messages before completing successfully. Specifically, the `db` container needs to initialize and so isn't available to the `web` container right away. Only once the `db` container comes online does the `web` container start building and initializing the calckey tables. +NOTE: This will take some time to come fully online, even after download and extracting the container images, and it may emit some error messages before completing successfully. Specifically, the `db` container needs to initialize and so isn't available to the `web` container right away. Only once the `db` container comes online does the `web` container start building and initializing the firefish tables. -Once the server is up you can use a web browser to access the web interface at `http://serverip:3000` (where `serverip` is the IP of the server you are running the calckey server on). +Once the server is up you can use a web browser to access the web interface at `http://serverip:3000` (where `serverip` is the IP of the server you are running the firefish server on). ## Docker for development diff --git a/docs/kubernetes.md b/docs/kubernetes.md index 5cb6e5d83..5ec6b46ad 100644 --- a/docs/kubernetes.md +++ b/docs/kubernetes.md @@ -1,7 +1,7 @@ -# Running a Calckey server with Kubernetes and Helm +# Running a Firefish server with Kubernetes and Helm This is a [Helm](https://helm.sh/) chart directory in the root of the project -that you can use to deploy calckey to a Kubernetes cluster +that you can use to deploy firefish to a Kubernetes cluster ## Deployment @@ -17,29 +17,29 @@ helm dependency list $dir 2> /dev/null | tail +2 | head -n -1 | awk '{ print "he cd ../ ``` -3. Create the calckey helm release (also used to update existing deployment): +3. Create the firefish helm release (also used to update existing deployment): ```shell helm upgrade \ --install \ - --namespace calckey \ + --namespace firefish \ --create-namespace \ - calckey chart/ \ + firefish chart/ \ -f .config/helm_values.yml ``` -4. Watch your calckey server spin up: +4. Watch your firefish server spin up: ```shell -kubectl -n calckey get po -w +kubectl -n firefish get po -w ``` 5. Initial the admin user and managed config: ```shell -export CALCKEY_USERNAME="my_desired_admin_handle" && \ -export CALCKEY_PASSWORD="myDesiredInitialPassword" && \ -export CALCKEY_HOST="calckey.example.com" && \ -export CALCKEY_TOKEN=$(curl -X POST https://$CALCKEY_HOST/api/admin/accounts/create -H "Content-Type: application/json" -d "{ \"username\":\"$CALCKEY_USERNAME\", \"password\":\"$CALCKEY_PASSWORD\" }" | jq -r '.token') && \ -echo "Save this token: ${CALCKEY_TOKEN}" && \ -curl -X POST -H "Authorization: Bearer $CALCKEY_TOKEN" https://$CALCKEY_HOST/api/admin/accounts/hosted +export firefish_USERNAME="my_desired_admin_handle" && \ +export firefish_PASSWORD="myDesiredInitialPassword" && \ +export firefish_HOST="firefish.example.com" && \ +export firefish_TOKEN=$(curl -X POST https://$firefish_HOST/api/admin/accounts/create -H "Content-Type: application/json" -d "{ \"username\":\"$firefish_USERNAME\", \"password\":\"$firefish_PASSWORD\" }" | jq -r '.token') && \ +echo "Save this token: ${firefish_TOKEN}" && \ +curl -X POST -H "Authorization: Bearer $firefish_TOKEN" https://$firefish_HOST/api/admin/accounts/hosted ``` 6. Enjoy! diff --git a/docs/migrate.md b/docs/migrate.md index 9bfa10655..329368fae 100644 --- a/docs/migrate.md +++ b/docs/migrate.md @@ -1,4 +1,4 @@ -# 🚚 Migrating from Misskey/FoundKey to Calckey +# 🚚 Migrating from Misskey/FoundKey to Firefish All the guides below assume you're starting in the root of the repo directory. @@ -14,8 +14,8 @@ Tested with Misskey v13.11.3. If your Misskey v13 is older, we recommend updating your Misskey to v13.11.3. ```sh -wget -O mkv13.patch https://codeberg.org/calckey/calckey/raw/branch/develop/docs/mkv13.patch -wget -O mkv13_restore.patch https://codeberg.org/calckey/calckey/raw/branch/develop/docs/mkv13_restore.patch +wget -O mkv13.patch https://gitlab.prometheus.systems/firefish/firefish/raw/branch/develop/docs/mkv13.patch +wget -O mkv13_restore.patch https://gitlab.prometheus.systems/firefish/firefish/raw/branch/develop/docs/mkv13_restore.patch git apply mkv13.patch mkv13_restore.patch cd packages/backend @@ -27,13 +27,13 @@ for i in $(seq 1 $NUM_MIGRATIONS); do pnpm typeorm migration:revert -d ormconfig cd ../../ -git remote set-url origin https://codeberg.org/calckey/calckey.git +git remote set-url origin https://gitlab.prometheus.systems/firefish/firefish.git git fetch origin git stash push rm -rf fluent-emojis misskey-assets git switch main # or beta or develop git pull --ff -wget -O renote_muting.patch https://codeberg.org/calckey/calckey/raw/branch/develop/docs/renote_muting.patch +wget -O renote_muting.patch https://gitlab.prometheus.systems/firefish/firefish/raw/branch/develop/docs/renote_muting.patch git apply renote_muting.patch pnpm install @@ -60,16 +60,16 @@ ALTER TABLE "instance" ADD COLUMN "latestStatus" character varying(512); ALTER TABLE "instance" ADD COLUMN "lastCommunicatedAt" date; ``` -then quit with `\q`, and restart Calckey. +then quit with `\q`, and restart Firefish. Note: Ignore errors of `column "xxx" of relation "xxx" already exists`. -If no other errors happened, your Calckey is ready to launch! +If no other errors happened, your Firefish is ready to launch! ## Misskey v12.119 and before ```sh -git remote set-url origin https://codeberg.org/calckey/calckey.git +git remote set-url origin https://gitlab.prometheus.systems/firefish/firefish.git git fetch git checkout main # or beta or develop git pull --ff @@ -92,7 +92,7 @@ for i in $(seq 1 $NUM_MIGRATIONS); do npx typeorm migration:revert -d ormconfig.js done -git remote set-url origin https://codeberg.org/calckey/calckey.git +git remote set-url origin https://gitlab.prometheus.systems/firefish/firefish.git git fetch git checkout main # or beta or develop git pull --ff @@ -103,4 +103,4 @@ NODE_ENV=production pnpm run migrate ## Reverse -You ***cannot*** migrate back to Misskey from Calckey due to re-hashing passwords on signin with argon2. You can migrate from Calckey to FoundKey, although this is not recommended due to FoundKey being end-of-life, and may have some problems with alt-text. +You ***cannot*** migrate back to Misskey from Firefish due to re-hashing passwords on signin with argon2. You can migrate from Calckey to FoundKey, although this is not recommended due to FoundKey being end-of-life, and may have some problems with alt-text. diff --git a/calckey.apache.conf b/firefish.apache.conf similarity index 100% rename from calckey.apache.conf rename to firefish.apache.conf diff --git a/calckey.nginx.conf b/firefish.nginx.conf similarity index 100% rename from calckey.nginx.conf rename to firefish.nginx.conf diff --git a/flake.nix b/flake.nix index 8553456ea..60e2d54a2 100644 --- a/flake.nix +++ b/flake.nix @@ -1,5 +1,5 @@ { - description = "Calckey development flake"; + description = "Firefish development flake"; inputs = { nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable"; @@ -28,7 +28,7 @@ shells = { # The default shell, used by nix-direnv default = { - name = "calckey-dev-shell"; + name = "firefish-dev-shell"; # Add additional packages to our environment packages = [ pkgs.nodePackages.pnpm @@ -62,12 +62,12 @@ enable = true; package = pkgs.postgresql_12; initialDatabases = [{ - name = "calckey"; + name = "firefish"; }]; initialScript = '' - CREATE USER calckey WITH PASSWORD 'calckey'; - ALTER USER calckey WITH SUPERUSER; - GRANT ALL ON DATABASE calckey TO calckey; + CREATE USER firefish WITH PASSWORD 'firefish'; + ALTER USER firefish WITH SUPERUSER; + GRANT ALL ON DATABASE firefish TO firefish; ''; listen_addresses = "127.0.0.1"; port = 5432; diff --git a/issue_template/bug.yaml b/issue_template/bug.yaml index d0c80d753..0b6f5859c 100644 --- a/issue_template/bug.yaml +++ b/issue_template/bug.yaml @@ -4,19 +4,19 @@ title: "[Bug]: " blank_issues_enabled: true contact_links: - name: 💁 Support Matrix - url: https://matrix.to/#/%23calckey:matrix.fedibird.com + url: https://matrix.to/#/%23firefish:matrix.fedibird.com about: Having trouble with deployment? Ask the support chat. - name: 🔒 Resposible Disclosure - url: https://codeberg.org/calckey/calckey/src/branch/develop/SECURITY.md + url: https://gitlab.prometheus.systems/firefish/firefish/src/branch/develop/SECURITY.md about: Found a security vulnerability? Please disclose it responsibly. body: - type: markdown attributes: value: | 💖 Thanks for taking the time to fill out this bug report! - 💁 Having trouble with deployment? [Ask the support chat.](https://matrix.to/#/%23calckey:matrix.fedibird.com) - 🔒 Found a security vulnerability? [Please disclose it responsibly.](https://codeberg.org/calckey/calckey/src/branch/develop/SECURITY.md) - 🤝 By submitting this issue, you agree to follow our [Contribution Guidelines.](https://codeberg.org/calckey/calckey/src/branch/develop/CONTRIBUTING.md) + 💁 Having trouble with deployment? [Ask the support chat.](https://matrix.to/#/%23firefish:matrix.fedibird.com) + 🔒 Found a security vulnerability? [Please disclose it responsibly.](https://gitlab.prometheus.systems/firefish/firefish/src/branch/develop/SECURITY.md) + 🤝 By submitting this issue, you agree to follow our [Contribution Guidelines.](https://gitlab.prometheus.systems/firefish/firefish/src/branch/develop/CONTRIBUTING.md) - type: textarea id: what-happened attributes: @@ -37,7 +37,7 @@ body: id: version attributes: label: Version - description: What version of calckey is your instance running? You can find this by clicking your instance's logo at the bottom left and then clicking instance information. + description: What version of firefish is your instance running? You can find this by clicking your instance's logo at the bottom left and then clicking instance information. placeholder: v13.1.4.1 validations: required: true @@ -45,8 +45,8 @@ body: id: instance attributes: label: Instance - description: What instance of calckey are you using? - placeholder: calckey.social + description: What instance of firefish are you using? + placeholder: firefish.social validations: required: false - type: dropdown @@ -90,7 +90,7 @@ body: - type: dropdown id: deplotment-method attributes: - label: How do you deploy Calckey on your server? (Server-side issues only) + label: How do you deploy Firefish on your server? (Server-side issues only) multiple: false options: - N/A @@ -128,7 +128,7 @@ body: id: terms attributes: label: Contribution Guidelines - description: By submitting this issue, you agree to follow our [Contribution Guidelines](https://codeberg.org/calckey/calckey/src/branch/develop/CONTRIBUTING.md) + description: By submitting this issue, you agree to follow our [Contribution Guidelines](https://gitlab.prometheus.systems/firefish/firefish/src/branch/develop/CONTRIBUTING.md) options: - label: I agree to follow this project's Contribution Guidelines required: true diff --git a/issue_template/feature.yaml b/issue_template/feature.yaml index 979711327..0be916fb3 100644 --- a/issue_template/feature.yaml +++ b/issue_template/feature.yaml @@ -4,19 +4,19 @@ title: "[Feature]: " blank_issues_enabled: true contact_links: - name: 💁 Support Matrix - url: https://matrix.to/#/%23calckey:matrix.fedibird.com + url: https://matrix.to/#/%23firefish:matrix.fedibird.com about: Having trouble with deployment? Ask the support chat. - name: 🔒 Resposible Disclosure - url: https://codeberg.org/calckey/calckey/src/branch/develop/SECURITY.md + url: https://gitlab.prometheus.systems/firefish/firefish/src/branch/develop/SECURITY.md about: Found a security vulnerability? Please disclose it responsibly. body: - type: markdown attributes: value: | 💖 Thanks for taking the time to fill out this feature request! - 💁 Having trouble with deployment? [Ask the support chat.](https://matrix.to/#/%23calckey:matrix.fedibird.com) - 🔒 Found a security vulnerability? [Please disclose it responsibly.](https://codeberg.org/calckey/calckey/src/branch/develop/SECURITY.md) - 🤝 By submitting this issue, you agree to follow our [Contribution Guidelines.](https://codeberg.org/calckey/calckey/src/branch/develop/CONTRIBUTING.md) + 💁 Having trouble with deployment? [Ask the support chat.](https://matrix.to/#/%23firefish:matrix.fedibird.com) + 🔒 Found a security vulnerability? [Please disclose it responsibly.](https://gitlab.prometheus.systems/firefish/firefish/src/branch/develop/SECURITY.md) + 🤝 By submitting this issue, you agree to follow our [Contribution Guidelines.](https://gitlab.prometheus.systems/firefish/firefish/src/branch/develop/CONTRIBUTING.md) - type: textarea id: what-feature attributes: @@ -37,23 +37,23 @@ body: id: version attributes: label: Version - description: What version of calckey is your instance running? You can find this by clicking your instance's logo at the bottom left and then clicking instance information. - placeholder: Calckey Version 13.1.4.1 + description: What version of firefish is your instance running? You can find this by clicking your instance's logo at the bottom left and then clicking instance information. + placeholder: Firefish Version 13.1.4.1 validations: required: true - type: input id: instance attributes: label: Instance - description: What instance of calckey are you using? - placeholder: calckey.social + description: What instance of firefish are you using? + placeholder: firefish.social validations: required: false - type: checkboxes id: terms attributes: label: Contribution Guidelines - description: By submitting this issue, you agree to follow our [Contribution Guidelines](https://codeberg.org/calckey/calckey/src/branch/develop/CONTRIBUTING.md) + description: By submitting this issue, you agree to follow our [Contribution Guidelines](https://gitlab.prometheus.systems/firefish/firefish/src/branch/develop/CONTRIBUTING.md) options: - label: I agree to follow this project's Contribution Guidelines required: true diff --git a/locales/ar-SA.yml b/locales/ar-SA.yml index 59dda2bcf..57a813a20 100644 --- a/locales/ar-SA.yml +++ b/locales/ar-SA.yml @@ -196,7 +196,7 @@ noUsers: "ليس هناك مستخدمون" editProfile: "تعديل الملف التعريفي" noteDeleteConfirm: "هل تريد حذف هذه الملاحظة؟" pinLimitExceeded: "لا يمكنك تدبيس الملاحظات بعد الآن." -intro: "لقد انتهت عملية تنصيب Calckey. الرجاء إنشاء حساب إداري." +intro: "لقد انتهت عملية تنصيب Firefish. الرجاء إنشاء حساب إداري." done: "تمّ" processing: "المعالجة جارية" preview: "معاينة" @@ -371,7 +371,7 @@ exploreFediverse: "استكشف الفديفرس" popularTags: "الوسوم الرائجة" userList: "القوائم" about: "عن" -aboutMisskey: "عن Calckey" +aboutFirefish: "عن Firefish" administrator: "المدير" token: "الرمز المميز" twoStepAuthentication: "الإستيثاق بعاملَيْن" @@ -855,7 +855,7 @@ _registry: keys: "المفاتيح" domain: "النّطاق" createKey: "أنشئ مفتاحًا" -_aboutMisskey: +_aboutFirefish: about: "ميسكي هو برمجية مفتوحة المصدر يطورها syuilo منذ 2014." contributors: "المساهمون الرئيسيون" allContributors: "كل المساهمين" @@ -1027,7 +1027,7 @@ _time: hour: "سا" day: "ي" _tutorial: - title: "How to use Calckey" + title: "How to use Firefish" step1_1: "Welcome!" step1_2: "Let's get you set up. You'll be up and running in no time!" step2_1: "First, please fill out your profile." @@ -1044,8 +1044,8 @@ _tutorial: step5_6: "The Social {icon} timeline is where you can see posts from friends of your followers." step5_7: "The Global {icon} timeline is where you can see posts from every other connected instance." step6_1: "So, what is this place?" - step6_2: "Well, you didn't just join Calckey. You joined a portal to the Fediverse, an interconnected network of thousands of servers, called \"instances\"." - step6_3: "Each server works in different ways, and not all servers run Calckey. This one does though! It's a bit complicated, but you'll get the hang of it in no time." + step6_2: "Well, you didn't just join Firefish. You joined a portal to the Fediverse, an interconnected network of thousands of servers, called \"instances\"." + step6_3: "Each server works in different ways, and not all servers run Firefish. This one does though! It's a bit complicated, but you'll get the hang of it in no time." step6_4: "Now go, explore, and have fun!" _2fa: alreadyRegistered: "سجلت سلفًا جهازًا للاستيثاق بعاملين." diff --git a/locales/bn-BD.yml b/locales/bn-BD.yml index 2f37a02a2..962f1fccc 100644 --- a/locales/bn-BD.yml +++ b/locales/bn-BD.yml @@ -198,7 +198,7 @@ noUsers: "কোন ব্যাবহারকারী নেই" editProfile: "প্রোফাইল সম্পাদনা করুন" noteDeleteConfirm: "আপনি কি নোট ডিলিট করার ব্যাপারে নিশ্চিত?" pinLimitExceeded: "আপনি আর কোন নোট পিন করতে পারবেন না" -intro: "Calckey এর ইন্সটলেশন সম্পন্ন হয়েছে!দয়া করে অ্যাডমিন ইউজার তৈরি করুন।" +intro: "Firefish এর ইন্সটলেশন সম্পন্ন হয়েছে!দয়া করে অ্যাডমিন ইউজার তৈরি করুন।" done: "সম্পন্ন" processing: "প্রক্রিয়াধীন" preview: "পূর্বরূপ দেখুন" @@ -376,7 +376,7 @@ exploreFediverse: "Fediverse ঘুরে দেখুন" popularTags: "জনপ্রিয় ট্যাগগুলি" userList: "লিস্ট" about: "আপনার সম্পর্কে" -aboutMisskey: "Calckey সম্পর্কে" +aboutFirefish: "Firefish সম্পর্কে" administrator: "প্রশাসক" token: "টোকেন" twoStepAuthentication: "২-ধাপ প্রমাণীকরণ" @@ -643,7 +643,7 @@ createNew: "নতুন" optional: "প্রয়োজনীয় নয়" createNewClip: "নতুন ক্লিপ তৈরি করুন" public: "সর্বজনীন" -i18nInfo: "Calckey স্বেচ্ছাসেবকদের দ্বারা বিভিন্ন ভাষায় অনুবাদ করা হচ্ছে। আপনি {link} এ গিয়ে অনুবাদে সহযোগিতা করতে পারেন।" +i18nInfo: "Firefish স্বেচ্ছাসেবকদের দ্বারা বিভিন্ন ভাষায় অনুবাদ করা হচ্ছে। আপনি {link} এ গিয়ে অনুবাদে সহযোগিতা করতে পারেন।" manageAccessTokens: "অ্যাক্সেস টোকেন পরিচালনা করুন" accountInfo: "অ্যাকাউন্টের তথ্য" notesCount: "নোটের সংখ্যা" @@ -694,7 +694,7 @@ onlineUsersCount: "{n} জন ব্যাবহারকারী অনলা nUsers: "{n} জন ব্যাবহারকারী" nNotes: "{n} টি নোট" sendErrorReports: "ক্রুটি প্রতিবেদন পাঠান" -sendErrorReportsDescription: "চালু থাকলে, বিস্তারিত ত্রুটির তথ্য Calckey-এর সাথে শেয়ার করা হয়। যা সফ্টওয়্যারটির গুণমান উন্নত করতে সাহায্য করে। ত্রুটির তথ্যের মধ্যে রয়েছে OS সংস্করণ, ব্রাউজারের ধরন, কর্মের ইতিহাস ইত্যাদি।" +sendErrorReportsDescription: "চালু থাকলে, বিস্তারিত ত্রুটির তথ্য Firefish-এর সাথে শেয়ার করা হয়। যা সফ্টওয়্যারটির গুণমান উন্নত করতে সাহায্য করে। ত্রুটির তথ্যের মধ্যে রয়েছে OS সংস্করণ, ব্রাউজারের ধরন, কর্মের ইতিহাস ইত্যাদি।" myTheme: "আমার থিম" backgroundColor: "পটভূমির রং" accentColor: "এক্সেন্টের রং" @@ -785,7 +785,7 @@ hashtags: "হ্যাশট্যাগ" troubleshooting: "ট্রাবলশুটিং" useBlurEffect: "UI তে ব্লার ইফেক্ট ব্যাবহার করুন" learnMore: "আরও জানুন" -misskeyUpdated: "Calckey আপডেট করা হয়েছে!" +misskeyUpdated: "Firefish আপডেট করা হয়েছে!" whatIsNew: "পরিবর্তনগুলি দেখান" translate: "অনুবাদ" translatedFrom: "{x} হতে অনুবাদ করা" @@ -896,13 +896,13 @@ _registry: keys: "কী - সমূহ" domain: "ডোমেন" createKey: "কী বানান" -_aboutMisskey: +_aboutFirefish: about: "Misskey, একটি ওপেন সোর্স সফ্টওয়্যার যা 2014 সাল থেকে syuilo তৈরি করছেন।" contributors: "প্রধান কন্ট্রিবিউটারগণ" allContributors: "সকল কন্ট্রিবিউটারগণ" source: "সোর্স কোড" - translation: "Calckey অনুবাদ করুন" - donate: "Calckey তে দান করুন" + translation: "Firefish অনুবাদ করুন" + donate: "Firefish তে দান করুন" morePatrons: "আরও অনেকে আমাদের সাহায্য করছেন। তাদের সবাইকে ধন্যবাদ 🥰" patrons: "সমর্থনকারী" _nsfw: @@ -911,7 +911,7 @@ _nsfw: force: "সকল মিডিয়া লুকান" _mfm: cheatSheet: "MFM চিটশিট" - intro: "MFM একটি মার্কআপ ভাষা যা Calckey-এর মধ্যে বিভিন্ন জায়গায় ব্যবহার করা যেতে পারে। এখানে আপনি MFM-এর সিনট্যাক্সগুলির একটি তালিকা দেখতে পারবেন।" + intro: "MFM একটি মার্কআপ ভাষা যা Firefish-এর মধ্যে বিভিন্ন জায়গায় ব্যবহার করা যেতে পারে। এখানে আপনি MFM-এর সিনট্যাক্সগুলির একটি তালিকা দেখতে পারবেন।" dummy: "মিসকি ফেডিভার্সের বিশ্বকে প্রসারিত করে" mention: "উল্লেখ" mentionDescription: "@ চিহ্ন + ব্যবহারকারীর নাম একটি নির্দিষ্ট ব্যবহারকারীকে নির্দেশ করতে ব্যবহার করা যায়।" @@ -1108,7 +1108,7 @@ _time: hour: "ঘণ্টা" day: "দিন" _tutorial: - title: "How to use Calckey" + title: "How to use Firefish" step1_1: "Welcome!" step1_2: "Let's get you set up. You'll be up and running in no time!" step2_1: "First, please fill out your profile." @@ -1125,8 +1125,8 @@ _tutorial: step5_6: "The Social {icon} timeline is where you can see posts from friends of your followers." step5_7: "The Global {icon} timeline is where you can see posts from every other connected instance." step6_1: "So, what is this place?" - step6_2: "Well, you didn't just join Calckey. You joined a portal to the Fediverse, an interconnected network of thousands of servers, called \"instances\"." - step6_3: "Each server works in different ways, and not all servers run Calckey. This one does though! It's a bit complicated, but you'll get the hang of it in no time." + step6_2: "Well, you didn't just join Firefish. You joined a portal to the Fediverse, an interconnected network of thousands of servers, called \"instances\"." + step6_3: "Each server works in different ways, and not all servers run Firefish. This one does though! It's a bit complicated, but you'll get the hang of it in no time." step6_4: "Now go, explore, and have fun!" _2fa: alreadyRegistered: "আপনি ইতিমধ্যে একটি 2-ফ্যাক্টর অথেনটিকেশন ডিভাইস নিবন্ধন করেছেন৷" diff --git a/locales/ca-ES.yml b/locales/ca-ES.yml index a70cacc2f..5a943e504 100644 --- a/locales/ca-ES.yml +++ b/locales/ca-ES.yml @@ -1,7 +1,7 @@ _lang_: "Català" headlineMisskey: "Una xarxa social de codi obert, descentralitzada i gratuïta per a sempre! 🚀" -introMisskey: "Benvinguts! Calckey és una plataforma social de codi obert, descentralitzada +introMisskey: "Benvinguts! Firefish és una plataforma social de codi obert, descentralitzada i gratuïta per a sempre! 🚀" monthAndDay: "{day}/{month}" search: "Cerca" @@ -146,9 +146,9 @@ _mfm: mention: "Menció" quote: "Citar" search: "Cercar" - dummy: Calckey amplia el món del Fediverse + dummy: Firefish amplia el món del Fediverse hashtag: Etiqueta - intro: MFM és un llenguatge de marques utilitzat a Misskey, Calckey, Akkoma i més + intro: MFM és un llenguatge de marques utilitzat a Misskey, Firefish, Akkoma i més que es pot utilitzar en molts llocs. Aquí podeu veure una llista de tota la sintaxi MFM disponible. hashtagDescription: Podeu especificar una etiqueta mitjançant un coixinet i un text. @@ -796,7 +796,7 @@ flagAsBot: Marca aquest compte com a bot flagAsBotDescription: Activa aquesta opció si aquest compte és controlat per un programa. Si s'activa, això actuarà com una bandera per a altres desenvolupadors i ajuda a prevenir cadenes de interaccions infinites amb altres bots a més d'ajustar els sistemes - interns de Calckey per tractar aquest compte com un bot. + interns de Firefish per tractar aquest compte com un bot. flagAsCat: Ets un gat? 🐱 flagShowTimelineReplies: Mostra respostes a la línia de temps flagAsCatDescription: Guanyaràs unes orelles de gat i parlares com un gat! @@ -847,7 +847,7 @@ mutedUsers: Usuaris silenciats done: Fet preview: Vista prèvia default: Per defecte -intro: La instal·lació de Calckey ha acabat! Crea un compte d'usuari d'administració. +intro: La instal·lació de Firefish ha acabat! Crea un compte d'usuari d'administració. processing: S'està processant noCustomEmojis: No hi ha cap emoji noJobs: No hi ha cap feina @@ -1227,7 +1227,7 @@ connectedTo: Aquest(s) compte(s) estan connectats silenceConfirm: Segur que vols posa en silenci aquest usuari? unsilence: Desfés posar en silenci unsilenceConfirm: Segur que vols treure el silenci a aquest usuari? -aboutMisskey: Sobre Calckey +aboutFirefish: Sobre Firefish twoStepAuthentication: Autentificació de dos factors moderator: Moderador moderation: Moderació @@ -1380,7 +1380,7 @@ adminCustomCssWarn: Aquesta configuració només s'ha d'utilitzar si sabeu què introducció de valors inadequats pot fer que els clients de TOTS deixin de funcionar amb normalitat. Assegureu-vos que el vostre CSS funcioni correctament provant-lo a la configuració de l'usuari. -showUpdates: Mostra una finestra emergent quan Calckey s'actualitzi +showUpdates: Mostra una finestra emergent quan Firefish s'actualitzi recommendedInstances: Servidors recomanats recommendedInstancesDescription: Servidors recomanats separats per salts de línia que apareixen a la línia de temps recomanada. @@ -1389,7 +1389,7 @@ splash: Pantalla de Benvinguda swipeOnDesktop: Permet lliscar a l'estil del mòbil a l'escriptori updateAvailable: Pot ser que hi hagi una actualització disponible! logoImageUrl: URL de la imatge del logotip -showAdminUpdates: Indica que hi ha disponible una versió nova de Calckey (només per +showAdminUpdates: Indica que hi ha disponible una versió nova de Firefish (només per a administradors) replayTutorial: Repetició del tutorial migration: Migració @@ -1490,7 +1490,7 @@ _registry: silenced: Silenciat objectStorageUseSSL: Fes servir SSL yourAccountSuspendedTitle: Aquest compte està suspès -i18nInfo: Calckey està sent traduït a diversos idiomes per voluntaris. Pots ajudar +i18nInfo: Firefish està sent traduït a diversos idiomes per voluntaris. Pots ajudar {link}. manageAccessTokens: Administrar tokens d'accés accountInfo: Informació del compte @@ -1551,7 +1551,7 @@ searchResult: Resultats de la cerca hashtags: Etiquetes troubleshooting: Resolució de problemes learnMore: Més informació -misskeyUpdated: Calckey s'ha actualitzat! +misskeyUpdated: Firefish s'ha actualitzat! translate: Tradueix translatedFrom: Traduït per {x} aiChanMode: Ai-chan a la interfície d'usuari clàssica @@ -1591,21 +1591,21 @@ cannotUploadBecauseNoFreeSpace: La pujada ha fallat a causa de la manca d'espai enableAutoSensitive: Marcatge automàtic NSFW moveTo: Mou el compte actual al compte nou customKaTeXMacro: Macros KaTeX personalitzats -_aboutMisskey: +_aboutFirefish: contributors: Col·laboradors principals allContributors: Tots els col·laboradors - donate: Fes una donació a Calckey + donate: Fes una donació a Firefish source: Codi font - translation: Tradueix Calckey - about: Calckey és una bifurcació de Misskey feta per ThatOneCalculator, que està + translation: Tradueix Firefish + about: Firefish és una bifurcació de Misskey feta per ThatOneCalculator, que està en desenvolupament des del 2022. morePatrons: També agraïm el suport de molts altres ajudants que no figuren aquí. Gràcies! 🥰 - patrons: Mecenes de Calckey + patrons: Mecenes de Firefish patronsList: Llistats cronològicament, no per la quantitat donada. Fes una donació amb l'enllaç de dalt per veure el teu nom aquí! - donateTitle: T'agrada Calckey? - pleaseDonateToCalckey: Penseu en fer una donació a Calckey per donar suport al seu + donateTitle: T'agrada Firefish? + pleaseDonateToFirefish: Penseu en fer una donació a Firefish per donar suport al seu desenvolupament. pleaseDonateToHost: Penseu també en fer una donació a la vostre instància, {host}, per ajudar-lo a suportar els costos de funcionament. @@ -1707,7 +1707,7 @@ ascendingOrder: Ascendent descendingOrder: Descendent scratchpad: Bloc de notes scratchpadDescription: El bloc de notes proporciona un entorn per experiments amb - AiScript. Pots escriure, executar i comprovar els resultats interactuant amb Calckey. + AiScript. Pots escriure, executar i comprovar els resultats interactuant amb Firefish. output: Sortida script: Script disablePagesScript: Desactivar AiScript a les pàgines @@ -1719,9 +1719,9 @@ accentColor: Color principal textColor: Color del text value: Valor sendErrorReportsDescription: "Quan està activat, quan es produeixi un problema la - informació detallada d'errors es compartirà amb Calckey, ajudant a millorar la qualitat - de Calckey.\nAixò inclourà informació com la versió del vostre sistema operatiu, - quin navegador utilitzeu, la vostra activitat a Calckey, etc." + informació detallada d'errors es compartirà amb Firefish, ajudant a millorar la qualitat + de Firefish.\nAixò inclourà informació com la versió del vostre sistema operatiu, + quin navegador utilitzeu, la vostra activitat a Firefish, etc." myTheme: El meu tema backgroundColor: Color de fons saveAs: Desa com... @@ -1902,14 +1902,14 @@ _tutorial: step6_1: Aleshores, què és aquest lloc? step6_4: Ara ves, explora i diverteix-te! step1_2: Anem a fer la configuració. Estaràs en funcionament en un tres i no res! - title: Com utilitzar Calckey + title: Com utilitzar Firefish step1_1: Benvingut! step2_1: En primer lloc, empleneu el vostre perfil. step4_1: Anem a treure't allà fora. step5_5: La línea de temps Social {icon} és una combinació de les línies de temps d'Inici i Local. step6_3: Cada servidor funciona de diferents maneres, i no tots els servidors executen - Calckey. Aquest sí que sí! És una mica complicat, però ho aconseguiràs en poc + Firefish. Aquest sí que sí! És una mica complicat, però ho aconseguiràs en poc temps. step2_2: Proporcionar informació sobre qui sou facilitarà que altres puguin saber si volen veure les vostres notes o seguir-vos. @@ -1920,7 +1920,7 @@ _tutorial: step4_2: A algunes persones els agrada fer una publicació de {introduction} o un senzill "Hola món!" step5_1: Línies de temps, línies de temps a tot arreu! - step6_2: Bé, no només t'has unit a Calckey. T'has unit a un portal al Fediverse, + step6_2: Bé, no només t'has unit a Firefish. T'has unit a un portal al Fediverse, una xarxa interconnectada de milers de servidors. _permissions: "read:account": Consulta la informació del teu compte @@ -2094,11 +2094,11 @@ _experiments: release: Publicà title: Experiments enablePostImports: Activar l'importació de publicacions - postImportsCaption: Permet els usuaris importar publicacions desde comptes a Calckey, + postImportsCaption: Permet els usuaris importar publicacions desde comptes a Firefish, Misskey, Mastodon, Akkoma i Pleroma. Pot fer que el servidor vagi més lent durant la càrrega si tens un coll d'ampolla a la cua. noGraze: Si us plau, desactiva l'extensió del navegador "Graze for Mastodon", ja que - interfereix amb Calckey. + interfereix amb Firefish. accessibility: Accessibilitat jumpToReply: Vés a la resposta newer: Més nou @@ -2113,7 +2113,7 @@ expandOnNoteClick: Obre la publicació amb un clic expandOnNoteClickDesc: Si està desactivat, encara pots obrir les publicacions al menú del botó dret o fent clic a la marca de temps. channelFederationWarn: Els canals encara no es federen amb altres servidors -searchPlaceholder: Cerca a Calckey +searchPlaceholder: Cerca a Firefish listsDesc: Les llistes et permeten crear línies de temps amb usuaris específics. Es pot accedir des de la pàgina de línies de temps. clipsDesc: Els clips són com marcadors categoritzats que es poden compartir. Podeu diff --git a/locales/cs-CZ.yml b/locales/cs-CZ.yml index e6394f3ee..869066f2d 100644 --- a/locales/cs-CZ.yml +++ b/locales/cs-CZ.yml @@ -1,6 +1,6 @@ _lang_: "Čeština" headlineMisskey: "Síť propojená poznámkami" -introMisskey: "Vítejte! Calckey je otevřený a decentralizovaný microblogový servis.\n\ +introMisskey: "Vítejte! Firefish je otevřený a decentralizovaný microblogový servis.\n\ \"Poznámkami\" můžete sdílet co se zrovna děje se všemi ve Vašem okolí. \U0001F4E1\ \nPomocí \"reakcí\" můžete sdílet své názory a pocity na ostatní poznámky. \U0001F44D\ \nPojďte objevovat nový svět! \U0001F680" @@ -147,7 +147,7 @@ cacheRemoteFilesDescription: "Zakázání tohoto nastavení způsobí, že vzdá flagAsBot: "Tento účet je bot" flagAsBotDescription: "Pokud je tento účet kontrolován programem zaškrtněte tuto možnost.\ \ To označí tento účet jako bot pro ostatní vývojáře a zabrání tak nekonečným interakcím\ - \ s ostatními boty a upraví Calckey systém aby se choval k tomuhle účtu jako bot." + \ s ostatními boty a upraví Firefish systém aby se choval k tomuhle účtu jako bot." flagAsCat: "Tenhle účet je kočka" flagAsCatDescription: "Vyberte tuto možnost aby tento účet byl označen jako kočka." flagShowTimelineReplies: "Zobrazovat odpovědi na časové ose" @@ -203,7 +203,7 @@ blockedInstances: "Blokované instance" noUsers: "Žádní uživatelé" editProfile: "Upravit můj profil" pinLimitExceeded: "Nemůžete připnout další poznámky." -intro: "Instalace Calckey byla dokončena! Prosím vytvořte admina." +intro: "Instalace Firefish byla dokončena! Prosím vytvořte admina." done: "Hotovo" processing: "Zpracovávám" preview: "Náhled" @@ -347,7 +347,7 @@ recentlyUpdatedUsers: "Nedávno aktívni uživatelé" popularTags: "Populární tagy" userList: "Seznamy" about: "Informace" -aboutMisskey: "O Calckey" +aboutFirefish: "O Firefish" administrator: "Administrátor" token: "Token" twoStepAuthentication: "Dvoufaktorová autentikace" @@ -646,7 +646,7 @@ _registry: keys: "Klíče" domain: "Doména" createKey: "Vytvořit klíč" -_aboutMisskey: +_aboutFirefish: allContributors: "Všichni přispěvatelé" source: "Zdrojový kód" _mfm: diff --git a/locales/da-DK.yml b/locales/da-DK.yml index f0e6523eb..3a17f6099 100644 --- a/locales/da-DK.yml +++ b/locales/da-DK.yml @@ -159,7 +159,7 @@ serverIsDead: Serveren svarer ikke. Vær sød at vente et styk tid og prøv igen editWidgetsExit: Færdig headlineMisskey: En åben-kildekode, decentraliseret social-media platform som er frit forevigt! 🚀 -introMisskey: Velkommen! Calckey er en åbent-kildekode, decentraliseret social-media +introMisskey: Velkommen! Firefish er en åbent-kildekode, decentraliseret social-media platform som er frit forevigt!🚀 enableEmojiReactions: Aktivere emoji reaktioner unsuspendConfirm: Er du sikker på at du vil ikke suspendere denne konto endnu længere? @@ -178,7 +178,7 @@ cacheRemoteFiles: Cachere fremmed filer flagAsBotDescription: Aktivere denne valgmulighed hvis denne konto er kontrolleret af en komputerprogram. Hvis den et tændt så vil det signalere til andre udviklere som arbejder på komputer-kontrolleret social-media kontoer og det vil også adjustere - Calckey's indresystemer til at behandle denne konto som en robot. + Firefish's indresystemer til at behandle denne konto som en robot. flagAsCat: Er du en kat? 😺 flagSpeakAsCat: Tale som en kat emojiUrl: Emoji URL diff --git a/locales/de-DE.yml b/locales/de-DE.yml index c2c89f15c..da7d423bd 100644 --- a/locales/de-DE.yml +++ b/locales/de-DE.yml @@ -1,7 +1,7 @@ _lang_: "Deutsch" headlineMisskey: "Eine dezentralisierte Open-Source Social Media Plattform, die für immer gratis bleibt! 🚀" -introMisskey: "Willkommen! Calckey ist eine dezentralisierte Open-Source Social Media +introMisskey: "Willkommen! Firefish ist eine dezentralisierte Open-Source Social Media Plattform, die für immer gratis bleibt!🚀" monthAndDay: "{month}/{day}" search: "Suchen" @@ -155,7 +155,7 @@ cacheRemoteFilesDescription: "Ist diese Einstellung deaktiviert, so werden Datei flagAsBot: "Dieses Nutzerkonto als Bot kennzeichnen" flagAsBotDescription: "Aktiviere diese Option, falls dieses Nutzerkonto durch ein Programm gesteuert wird. Falls aktiviert, agiert es als Flag für andere Entwickler - zur Verhinderung von endlosen Kettenreaktionen mit anderen Bots und lässt Calckeys + zur Verhinderung von endlosen Kettenreaktionen mit anderen Bots und lässt Firefishs interne Systeme dieses Nutzerkonto als Bot behandeln." flagAsCat: "Bist du eine Katze? 😺" flagAsCatDescription: "Du bekommst Katzenohren und sprichst wie eine Katze!" @@ -225,7 +225,7 @@ noUsers: "Es sind keine Nutzer vorhanden" editProfile: "Profil bearbeiten" noteDeleteConfirm: "Sind Sie sicher, dass Sie diesen Beitrag löschen wollen?" pinLimitExceeded: "Sie können keine weiteren Beiträge anpinnen" -intro: "Die Installation von Calckey ist abgeschlossen! Bitte erstellen Sie einen +intro: "Die Installation von Firefish ist abgeschlossen! Bitte erstellen Sie einen Admin-Benutzer." done: "Erledigt" processing: "In Bearbeitung" @@ -419,7 +419,7 @@ exploreFediverse: "Das Fediverse erkunden" popularTags: "Beliebte Schlagwörter" userList: "Liste" about: "Über" -aboutMisskey: "Über Calckey" +aboutFirefish: "Über Firefish" administrator: "Administrator" token: "Token" twoStepAuthentication: "Zwei-Faktor-Authentifizierung" @@ -575,7 +575,7 @@ ascendingOrder: "Aufsteigende Reihenfolge" descendingOrder: "Absteigende Reihenfolge" scratchpad: "Testumgebung" scratchpadDescription: "Die Testumgebung bietet einen Bereich für AiScript-Experimente. - Dort kannst du AiScript schreiben, ausführen sowie dessen Auswirkungen auf Calckey + Dort kannst du AiScript schreiben, ausführen sowie dessen Auswirkungen auf Firefish überprüfen." output: "Ausgabe" script: "Skript" @@ -717,7 +717,7 @@ unclip: "Aus Clip entfernen" confirmToUnclipAlreadyClippedNote: "Dieser Beitrag ist bereits im \"{name}\" Clip enthalten. Möchtest du ihn aus diesem Clip entfernen?" public: "Öffentlich" -i18nInfo: "Calckey wird durch freiwillige Helfer in viele verschiedene Sprachen übersetzt. +i18nInfo: "Firefish wird durch freiwillige Helfer in viele verschiedene Sprachen übersetzt. Auf {link} kannst du mithelfen." manageAccessTokens: "Zugriffstokens verwalten" accountInfo: "Nutzerkonto-Informationen" @@ -777,10 +777,10 @@ nUsers: "{n} Nutzer" nNotes: "{n} Beiträge" sendErrorReports: "Fehlerberichte senden" sendErrorReportsDescription: "Ist diese Option aktiviert, so werden beim Auftreten - von Fehlern detaillierte Fehlerinformationen an Calckey weitergegeben, was zur Verbesserung - der Qualität von Calckey beiträgt.\nEnthalten in diesen Informationen sind u.a. + von Fehlern detaillierte Fehlerinformationen an Firefish weitergegeben, was zur Verbesserung + der Qualität von Firefish beiträgt.\nEnthalten in diesen Informationen sind u.a. die Version deines Betriebssystems, welchen Browser du verwendest und ein Verlauf - deiner Aktivitäten innerhalb Calckey." + deiner Aktivitäten innerhalb Firefish." myTheme: "Meine Farbkombination" backgroundColor: "Hintergrundfarbe" accentColor: "Akzentfarbe" @@ -875,7 +875,7 @@ hashtags: "Hashtags" troubleshooting: "Problembehandlung" useBlurEffect: "Weichzeichnungseffekt in der Benutzeroberfläche verwenden" learnMore: "Mehr erfahren" -misskeyUpdated: "Calckey wurde aktualisiert!" +misskeyUpdated: "Firefish wurde aktualisiert!" whatIsNew: "Änderungen anzeigen" translate: "Übersetzen" translatedFrom: "Aus {x} übersetzt" @@ -1085,14 +1085,14 @@ _registry: keys: "Schlüssel" domain: "Domain" createKey: "Schlüssel erstellen" -_aboutMisskey: - about: "Calckey ist ein Fork von Misskey, der seit 2022 von ThatOneCalculator entwickelt +_aboutFirefish: + about: "Firefish ist ein Fork von Misskey, der seit 2022 von ThatOneCalculator entwickelt wird." contributors: "Hauptmitwirkende" allContributors: "Alle Mitwirkenden" source: "Quellcode" - translation: "Calckey übersetzen" - donate: "An Calckey spenden" + translation: "Firefish übersetzen" + donate: "An Firefish spenden" morePatrons: "Wir schätzen ebenso die Unterstützung vieler anderer hier nicht gelisteter Personen sehr. Danke! 🥰" patrons: "UnterstützerInnen" @@ -1102,10 +1102,10 @@ _nsfw: force: "Alle Medien verbergen" _mfm: cheatSheet: "MFM Spickzettel" - intro: "MFM ist eine Markup-Sprache, die in Misskey, Calckey, Akkoma und anderen + intro: "MFM ist eine Markup-Sprache, die in Misskey, Firefish, Akkoma und anderen Programmen verwendet wird und an vielen Stellen eingesetzt werden kann. Hier können Sie eine Liste aller verfügbaren MFM-Syntaxe einsehen." - dummy: "Calckey erweitert die Welt des Fediverse" + dummy: "Firefish erweitert die Welt des Fediverse" mention: "Erwähnung" mentionDescription: "Mit At-Zeichen und Nutzername kann ein individueller Nutzer angegeben werden." @@ -1337,7 +1337,7 @@ _time: hour: "Stunde(n)" day: "Tag(en)" _tutorial: - title: "Wie man Calckey benutzt" + title: "Wie man Firefish benutzt" step1_1: "Willkommen!" step1_2: "Wir werden Sie einrichten. Sie werden im Handumdrehen einsatzbereit sein!" step2_1: "Bitte füllen Sie zuerst Ihr Profil aus." @@ -1363,11 +1363,11 @@ _tutorial: step5_7: "In der {icon} Global-Timeline können Sie Beiträge von allen verknüpften Servern aus dem Fediverse sehen." step6_1: "Also, was ist das hier?" - step6_2: "Mit Deiner Anmeldung zu Calckey bist Du gleichzeitig einem Portal zum + step6_2: "Mit Deiner Anmeldung zu Firefish bist Du gleichzeitig einem Portal zum Fediverse beigetreten, einem Netzwerk mit Tausenden von, miteinander verbundenen, Servern." step6_3: "Jeder der Server funktioniert auf unterschiedliche Weise, und nicht alle - Server führen Calckey aus. Dieser jedoch schon! Es ist zu Beginn vielleicht ein + Server führen Firefish aus. Dieser jedoch schon! Es ist zu Beginn vielleicht ein wenig kompliziert, aber Sie werden in kürzester Zeit den Dreh raus haben." step6_4: "Jetzt bist Du startbereit, entdecke die Möglichkeiten und hab Spaß dabei!" _2fa: @@ -2026,7 +2026,7 @@ signupsDisabled: Derzeit sind keine Anmeldungen auf diesem Server möglich! Anme swipeOnDesktop: Am Desktop PC das Wischen wie bei mobilen Geräten zulassen enterSendsMessage: Drücken sie zum Senden des Beitrages die Eingabetaste (Strg-Taste ausgeschaltet) -showUpdates: Zeigt ein Popup-Fenster an, wenn Calckey aktualisiert wird. +showUpdates: Zeigt ein Popup-Fenster an, wenn Firefish aktualisiert wird. socialTimeline: Social-Timeline moveFrom: Bisheriges Nutzerkonto zu diesem Nutzerkonto umziehen _messaging: @@ -2058,7 +2058,7 @@ allowedInstancesDescription: Hosts von Servern, die zur Verbindung auf die Liste (gilt nur im privaten Modus). migration: Migration updateAvailable: Es könnte eine Aktualisierung verfügbar sein! -showAdminUpdates: Anzeigen, dass eine neue Calckey-Version verfügbar ist (nur Administrator) +showAdminUpdates: Anzeigen, dass eine neue Firefish-Version verfügbar ist (nur Administrator) customMOTDDescription: Benutzerdefinierte Meldungen für die Meldung des Tages (Begrüßungsbildschirm), die durch Zeilenumbrüche getrennt sind und nach dem Zufallsprinzip jedes Mal angezeigt werden, wenn ein Benutzer die Seite (neu) lädt. @@ -2097,11 +2097,11 @@ silencedWarning: Diese Meldung wird angezeigt, weil diese Nutzer von Servern sta _experiments: title: Funktionstests enablePostImports: Beitragsimporte aktivieren - postImportsCaption: Erlaubt es Nutzer:innen ihre Posts von alten Calckey, Misskey, + postImportsCaption: Erlaubt es Nutzer:innen ihre Posts von alten Firefish, Misskey, Mastodon, Akkoma und Pleroma Accounts zu importieren. Bei Engpässen in der Warteschlange kann es zu Verlangsamungen beim Laden während des Imports kommen. noGraze: Bitte deaktivieren Sie die Browsererweiterung "Graze for Mastodon", da sie - die Funktion von Calckey stört. + die Funktion von Firefish stört. indexFrom: Indexieren ab Beitragskennung aufwärts indexNotice: Wird jetzt indexiert. Dies wird wahrscheinlich eine Weile dauern, bitte starten Sie Ihren Server für mindestens eine Stunde nicht neu. @@ -2138,10 +2138,10 @@ _dialog: charactersExceeded: 'Maximale Anzahl an Zeichen aufgebraucht! Limit: {current} / {max}' charactersBelow: Nicht genug Zeichen! Du hast aktuell {current} von {min} Zeichen -searchPlaceholder: Calckey durchsuchen +searchPlaceholder: Firefish durchsuchen antennasDesc: "Antennen zeigen neue Posts an, die deinen definierten Kriterien entsprechen!\n Sie können von der Timeline-Seite aufgerufen werden." -isPatron: Calckey Patron +isPatron: Firefish Patron removeReaction: Entferne deine Reaktion listsDesc: Listen lassen dich Timelines mit bestimmten Nutzer:innen erstellen. Sie können von der Timeline-Seite erreicht werden. diff --git a/locales/el-GR.yml b/locales/el-GR.yml index d444882b4..b42a0a707 100644 --- a/locales/el-GR.yml +++ b/locales/el-GR.yml @@ -570,7 +570,7 @@ height: Ύψος edit: Επεξεργασία headlineMisskey: Μία ανοιχτού λογισμικού, αποκεντρωμένη πλατφόρμα κοινωνικής δικτύωσης που θα είναι για πάντα ελεύθερη! 🚀 -introMisskey: Καλώς ήρθατε! Το Calckey είναι μία ανοιχτού λογισμικού, αποκεντρωμένη +introMisskey: Καλώς ήρθατε! Το Firefish είναι μία ανοιχτού λογισμικού, αποκεντρωμένη πλατφόρμα κοινωνικής δικτύωσης που θα είναι για πάντα ελεύθερη! 🚀 markAsSensitive: Επισήμανση ως Ευαίσθητο Περιεχόμενο (NSFW) autoAcceptFollowed: Αυτόματη έγκριση αιτημάτων ακολούθησης από λογαριασμούς που ακολουθείτε @@ -603,7 +603,7 @@ blockedInstances: Μπλοκαρισμένα Instances blockedInstancesDescription: Παραθέστε τις διευθύνσεις (hostnames) των instances που θέλετε να μπλοκάρετε. Τα παρακάτω instances δεν θα μπορούν πλέον να επικοινωνούν με αυτό το instance. -intro: Η εγκατάσταση του Calckey τελείωσε! Παρακαλώ δημιουργήστε ένα μέλος διαχειριστή/στρια. +intro: Η εγκατάσταση του Firefish τελείωσε! Παρακαλώ δημιουργήστε ένα μέλος διαχειριστή/στρια. noThankYou: Όχι, ευχαριστώ addInstance: Προσθήκη instance renoteMute: Σίγαση προωθήσεων @@ -619,7 +619,7 @@ renoteUnmute: Διακοπή σίγασης προωθήσεων flagAsBotDescription: Ενεργοποιήστε αυτή την επιλογή αν αυτός ο λογαριασμός ελέγχεται από ένα πρόγραμμα. Αν ενεργοποιηθεί, θα λειτουργεί σαν σημάδι για τους προγραμματιστές, ώστε να αποφύγουν ατέρμονη αλληλεπίδραση με άλλα bots και για να ρυθμίσει τα εσωτερικά - συστήματα του Calckey ώστε να αντιμετωπίζουν αυτόν τον λογαριασμό ως bot. + συστήματα του Firefish ώστε να αντιμετωπίζουν αυτόν τον λογαριασμό ως bot. flagShowTimelineRepliesDescription: Εμφάνιση απαντήσεων μελών σε δημοσιεύσεις άλλων μελών στο χρονολόγιο. latestRequestReceivedAt: Τελευταίο αίτημα ελήφθη @@ -711,7 +711,7 @@ installedDate: Εξουσιοδοτήθηκε στις lastUsedDate: Χρησιμοποιήθηκε τελευταία φορά στις scratchpadDescription: Το σημειωματάριο παρέχει ένα περιβάλλον για πειραματισμό με AiScript. Σε αυτό μπορείτε να γράψετε, να εκτελέσετε, και να δοκιμάσετε τα αποτελέσματα - της αλληλεπίδρασης του AiScript με το Calckey. + της αλληλεπίδρασης του AiScript με το Firefish. scratchpad: Σημειωματάριο output: Αποτέλεσμα updateRemoteUser: Ανανέωση πληροφοριών απομακρυσμένου μέλους @@ -762,7 +762,7 @@ dayOverDayChanges: Αλλαγές την τελευταία ημέρα promotion: Προμοταρισμένα promote: Προμοτάρισμα squareAvatars: Εμφάνιση τετραγωνισμένων άβαταρ -aboutMisskey: Σχετικά με το Calckey +aboutFirefish: Σχετικά με το Firefish maintainerName: Προγραμματιστής/στρια uploadFromUrlRequested: Το ανέβασμα ζητήθηκε themeForLightMode: Θέμα για τη Φωτεινή Λειτουργία diff --git a/locales/en-US.yml b/locales/en-US.yml index b993cd3ce..af8541947 100644 --- a/locales/en-US.yml +++ b/locales/en-US.yml @@ -1,11 +1,11 @@ _lang_: "English" headlineMisskey: "An open source, decentralized social media platform that's free forever! 🚀" -introMisskey: "Welcome! Calckey is an open source, decentralized social media platform +introMisskey: "Welcome! Firefish is an open source, decentralized social media platform that's free forever! 🚀" monthAndDay: "{month}/{day}" search: "Search" -searchPlaceholder: "Search Calckey" +searchPlaceholder: "Search Firefish" notifications: "Notifications" username: "Username" password: "Password" @@ -165,7 +165,7 @@ cacheRemoteFilesDescription: "When this setting is disabled, remote files are lo flagAsBot: "Mark this account as a bot" flagAsBotDescription: "Enable this option if this account is controlled by a program. If enabled, it will act as a flag for other developers to prevent endless interaction - chains with other bots and adjust Calckey's internal systems to treat this account + chains with other bots and adjust Firefish's internal systems to treat this account as a bot." flagAsCat: "Are you a cat? 😺" flagAsCatDescription: "You'll get cat ears and speak like a cat!" @@ -246,7 +246,7 @@ noInstances: "There are no servers" editProfile: "Edit profile" noteDeleteConfirm: "Are you sure you want to delete this post?" pinLimitExceeded: "You cannot pin any more posts" -intro: "Installation of Calckey has been finished! Please create an admin user." +intro: "Installation of Firefish has been finished! Please create an admin user." done: "Done" processing: "Processing" preview: "Preview" @@ -438,7 +438,7 @@ exploreFediverse: "Explore the Fediverse" popularTags: "Popular tags" userList: "Lists" about: "About" -aboutMisskey: "About Calckey" +aboutFirefish: "About Firefish" administrator: "Administrator" token: "Token" twoStepAuthentication: "Two-factor authentication" @@ -593,7 +593,7 @@ ascendingOrder: "Ascending" descendingOrder: "Descending" scratchpad: "Scratchpad" scratchpadDescription: "The scratchpad provides an environment for AiScript experiments. - You can write, execute, and check the results of it interacting with Calckey in + You can write, execute, and check the results of it interacting with Firefish in it." output: "Output" script: "Script" @@ -739,7 +739,7 @@ unclip: "Unclip" confirmToUnclipAlreadyClippedNote: "This post is already part of the \"{name}\" clip. Do you want to remove it from this clip instead?" public: "Public" -i18nInfo: "Calckey is being translated into various languages by volunteers. You can +i18nInfo: "Firefish is being translated into various languages by volunteers. You can help at {link}." manageAccessTokens: "Manage access tokens" accountInfo: "Account Info" @@ -797,9 +797,9 @@ nUsers: "{n} Users" nNotes: "{n} Posts" sendErrorReports: "Send error reports" sendErrorReportsDescription: "When turned on, detailed error information will be shared - with Calckey when a problem occurs, helping to improve the quality of Calckey.\n + with Firefish when a problem occurs, helping to improve the quality of Firefish.\n This will include information such the version of your OS, what browser you're using, - your activity in Calckey, etc." + your activity in Firefish, etc." myTheme: "My theme" backgroundColor: "Background color" accentColor: "Accent color" @@ -905,7 +905,7 @@ hashtags: "Hashtags" troubleshooting: "Troubleshooting" useBlurEffect: "Use blur effects in the UI" learnMore: "Learn more" -misskeyUpdated: "Calckey has been updated!" +misskeyUpdated: "Firefish has been updated!" whatIsNew: "Show changes" translate: "Translate" translatedFrom: "Translated from {x}" @@ -1047,7 +1047,7 @@ customSplashIcons: "Custom splash screen icons (urls)" customSplashIconsDescription: "URLs for custom splash screen icons separated by line breaks to be shown randomly every time a user loads/reloads the page. Please make sure the images are on a static URL, preferably all resized to 192x192." -showUpdates: "Show a popup when Calckey updates" +showUpdates: "Show a popup when Firefish updates" recommendedInstances: "Recommended servers" recommendedInstancesDescription: "Recommended servers separated by line breaks to appear in the recommended timeline." @@ -1057,7 +1057,7 @@ updateAvailable: "There might be an update available!" swipeOnMobile: "Allow swiping between pages" swipeOnDesktop: "Allow mobile-style swiping on desktop" logoImageUrl: "Logo image URL" -showAdminUpdates: "Indicate a new Calckey version is avaliable (admin only)" +showAdminUpdates: "Indicate a new Firefish version is avaliable (admin only)" replayTutorial: "Replay tutorial" migration: "Migration" moveTo: "Move current account to new account" @@ -1104,14 +1104,14 @@ preventAiLearning: "Prevent AI bot scraping" preventAiLearningDescription: "Request third-party AI language models not to study content you upload, such as posts and images." noGraze: "Please disable the \"Graze for Mastodon\" browser extension, as it interferes - with Calckey." + with Firefish." silencedWarning: "This page is showing because these users are from servers your admin silenced, so they may potentially be spam." isBot: "This account is a bot" isLocked: "This account has follow approvals" isModerator: "Moderator" isAdmin: "Administrator" -isPatron: "Calckey Patron" +isPatron: "Firefish Patron" reactionPickerSkinTone: "Preferred emoji skin tone" enableServerMachineStats: "Enable server hardware statistics" enableIdenticonGeneration: "Enable Identicon generation" @@ -1215,22 +1215,22 @@ _registry: keys: "Keys" domain: "Domain" createKey: "Create key" -_aboutMisskey: - about: "Calckey is a fork of Misskey made by ThatOneCalculator, which has been in +_aboutFirefish: + about: "Firefish is a fork of Misskey made by ThatOneCalculator, which has been in development since 2022." contributors: "Main contributors" allContributors: "All contributors" source: "Source code" - translation: "Translate Calckey" - donate: "Donate to Calckey" - donateTitle: "Enjoying Calckey?" - pleaseDonateToCalckey: "Please consider donating to Calckey to support its development." + translation: "Translate Firefish" + donate: "Donate to Firefish" + donateTitle: "Enjoying Firefish?" + pleaseDonateToFirefish: "Please consider donating to Firefish to support its development." pleaseDonateToHost: "Please also consider donating to your home server, {host}, to help support its operation costs." donateHost: "Donate to {host}" morePatrons: "We also appreciate the support of many other helpers not listed here. Thank you! 🥰" - sponsors: "Calckey sponsors" - patrons: "Calckey patrons" + sponsors: "Firefish sponsors" + patrons: "Firefish patrons" patronsList: "Listed chronologically, not by donation size. Donate with the link above to get your name on here!" _nsfw: respect: "Hide NSFW media" @@ -1242,9 +1242,9 @@ _mfm: warn: "MFM may contain rapidly moving or flashy animations" alwaysPlay: "Always autoplay all animated MFM" cheatSheet: "MFM Cheatsheet" - intro: "MFM is a markup language used on Misskey, Calckey, Akkoma, and more that + intro: "MFM is a markup language used on Misskey, Firefish, Akkoma, and more that can be used in many places. Here you can view a list of all available MFM syntax." - dummy: "Calckey expands the world of the Fediverse" + dummy: "Firefish expands the world of the Fediverse" advanced: "Advanced MFM" advancedDescription: "If disabled, only allows for basic markup unless animated MFM is playing" mention: "Mention" @@ -1477,7 +1477,7 @@ _filters: followingOnly: "Following only" followersOnly: "Followers only" _tutorial: - title: "How to use Calckey" + title: "How to use Firefish" step1_1: "Welcome!" step1_2: "Let's get you set up. You'll be up and running in no time!" step2_1: "First, please fill out your profile." @@ -1502,9 +1502,9 @@ _tutorial: step5_7: "The Global {icon} timeline is where you can see posts from every other\ \ connected server." step6_1: "So, what is this place?" - step6_2: "Well, you didn't just join Calckey. You joined a portal to the Fediverse, + step6_2: "Well, you didn't just join Firefish. You joined a portal to the Fediverse, an interconnected network of thousands of servers." - step6_3: "Each server works in different ways, and not all servers run Calckey. + step6_3: "Each server works in different ways, and not all servers run Firefish. This one does though! It's a bit complicated, but you'll get the hang of it in no time." step6_4: "Now go, explore, and have fun!" @@ -2091,7 +2091,7 @@ _deck: _experiments: title: "Experiments" enablePostImports: "Enable post imports" - postImportsCaption: "Allows users to import their posts from past Calckey,\ + postImportsCaption: "Allows users to import their posts from past Firefish,\ \ Misskey, Mastodon, Akkoma, and Pleroma accounts. It may cause slowdowns during\ \ load if your queue is bottlenecked." _dialog: diff --git a/locales/es-ES.yml b/locales/es-ES.yml index f5c002505..49ce22f20 100644 --- a/locales/es-ES.yml +++ b/locales/es-ES.yml @@ -1,7 +1,7 @@ _lang_: "Español" headlineMisskey: "¡Un proyecto de código abierto y una plataforma de medios de comunicación descentralizada que es gratis para siempre! 🚀" -introMisskey: "¡Bienvenido! ¡Calckey es un proyecto de código abierto, plataforma +introMisskey: "¡Bienvenido! ¡Firefish es un proyecto de código abierto, plataforma descentralizado medios de comunicación social que es gratis para siempre! 🚀" monthAndDay: "{day}/{month}" search: "Buscar" @@ -150,7 +150,7 @@ cacheRemoteFilesDescription: "Si desactiva esta configuración, los archivos rem flagAsBot: "Esta cuenta es un bot" flagAsBotDescription: "En caso de que esta cuenta fuera usada por un programa, active esta opción. Al hacerlo, esta opción servirá para otros desarrolladores para evitar - cadenas infinitas de reacciones, y ajustará los sistemas internos de Calckey para + cadenas infinitas de reacciones, y ajustará los sistemas internos de Firefish para que trate a esta cuenta como un bot." flagAsCat: "Esta cuenta es un gato" flagAsCatDescription: "Vas a tener orejas de gato y hablar como un gato!" @@ -218,7 +218,7 @@ noUsers: "No hay usuarios" editProfile: "Editar perfil" noteDeleteConfirm: "¿Desea borrar esta publicación?" pinLimitExceeded: "Ya no se pueden fijar más publicaciones" -intro: "¡La instalación de Calckey ha terminado! Crea el usuario administrador." +intro: "¡La instalación de Firefish ha terminado! Crea el usuario administrador." done: "Terminado" processing: "Procesando" preview: "Vista previa" @@ -406,7 +406,7 @@ exploreFediverse: "Explorar fediverso" popularTags: "Etiquetas populares" userList: "Lista" about: "Información" -aboutMisskey: "Sobre Calckey" +aboutFirefish: "Sobre Firefish" administrator: "Administrador" token: "Token" twoStepAuthentication: "Autenticación de dos factores" @@ -564,7 +564,7 @@ ascendingOrder: "Ascendente" descendingOrder: "Descendente" scratchpad: "Scratch pad" scratchpadDescription: "Scratchpad proporciona un entorno experimental para AiScript. - Puede escribir, ejecutar y verificar los resultados que interactúan con Calckey." + Puede escribir, ejecutar y verificar los resultados que interactúan con Firefish." output: "Salida" script: "Script" disablePagesScript: "Deshabilitar AiScript en Páginas" @@ -700,7 +700,7 @@ unclip: "Quitar clip" confirmToUnclipAlreadyClippedNote: "Esta publicación ya está incluida en el clip \"\ {name}\". ¿Quiere quitar la nota del clip?" public: "Público" -i18nInfo: "Calckey está siendo traducido a varios idiomas gracias a voluntarios. Se +i18nInfo: "Firefish está siendo traducido a varios idiomas gracias a voluntarios. Se puede colaborar traduciendo en {link}" manageAccessTokens: "Administrar tokens de acceso" accountInfo: "Información de la Cuenta" @@ -761,9 +761,9 @@ nUsers: "{n} Usuarios" nNotes: "{n} Notas" sendErrorReports: "Envíar informe de errores" sendErrorReportsDescription: "Si habilita esta opción, los detalles de los errores - serán compartidos con Calckey cuando ocurra un problema, lo que ayudará a mejorar - la calidad de Calckey. \nEsto incluye información como la versión del sistema operativo, - el tipo de navegador que está utilizando y su historial en Calckey, entre otros + serán compartidos con Firefish cuando ocurra un problema, lo que ayudará a mejorar + la calidad de Firefish. \nEsto incluye información como la versión del sistema operativo, + el tipo de navegador que está utilizando y su historial en Firefish, entre otros datos." myTheme: "Mi Tema" backgroundColor: "Fondo" @@ -859,7 +859,7 @@ hashtags: "Hashtag" troubleshooting: "Solución de problemas" useBlurEffect: "Utilizar efecto de desenfoque en la interfaz de usuario" learnMore: "Ver más" -misskeyUpdated: "¡Calckey ha sido actualizado!" +misskeyUpdated: "¡Firefish ha sido actualizado!" whatIsNew: "Mostrar cambios" translate: "Traducir" translatedFrom: "Traducido de {x}" @@ -1062,17 +1062,17 @@ _registry: keys: "Clave" domain: "Dominio" createKey: "Crear una llave" -_aboutMisskey: - about: "Calckey es una bifurcación de Misskey creada por ThatOneCalculator, que +_aboutFirefish: + about: "Firefish es una bifurcación de Misskey creada por ThatOneCalculator, que ha estado en desarrollo desde el 2022." contributors: "Principales colaboradores" allContributors: "Todos los colaboradores" source: "Código fuente" - translation: "Traducir Calckey" - donate: "Donar a Calckey" + translation: "Traducir Firefish" + donate: "Donar a Firefish" morePatrons: "También apreciamos el apoyo de muchos más que no están enlistados aquí. ¡Gracias! 🥰" - patrons: "Mecenas de Calckey" + patrons: "Mecenas de Firefish" _nsfw: respect: "Ocultar medios NSFW" ignore: "No esconder medios NSFW " @@ -1080,9 +1080,9 @@ _nsfw: _mfm: cheatSheet: "Hoja de referencia de MFM" intro: "MFM es un lenguaje de marcado dedicado que se puede usar en varios lugares - dentro de Misskey, Calckey, Akkoma, y mucho más. Aquí puede ver una lista de sintaxis + dentro de Misskey, Firefish, Akkoma, y mucho más. Aquí puede ver una lista de sintaxis disponibles en MFM." - dummy: "Calckey expande el mundo de la Fediverso" + dummy: "Firefish expande el mundo de la Fediverso" mention: "Menciones" mentionDescription: "El signo @ seguido de un nombre de usuario se puede utilizar para notificar a un usuario en particular." @@ -1293,7 +1293,7 @@ _time: hour: "Horas" day: "Días" _tutorial: - title: "Cómo usar Calckey" + title: "Cómo usar Firefish" step1_1: "¡Bienvenido!" step1_2: "Vamos a configurarte. ¡Estarás listo y funcionando en poco tiempo!" step2_1: "En primer lugar, rellena tu perfil" @@ -1319,10 +1319,10 @@ _tutorial: step5_7: "La línea de tiempo Global {icon} es donde puedes ver las publicaciones de todas las demás instancias conectadas." step6_1: "Entonces, ¿qué es este lugar?" - step6_2: "Bueno, no sólo te has unido a Calckey. Te has unido a un portal del Fediverso, + step6_2: "Bueno, no sólo te has unido a Firefish. Te has unido a un portal del Fediverso, una red interconectada de miles de servidores, llamada \"instancias\"" step6_3: "Cada servidor funciona de forma diferente, y no todos los servidores ejecutan - Calckey. Sin embargo, ¡éste lo hace! Es un poco complicado, pero le cogerás el + Firefish. Sin embargo, ¡éste lo hace! Es un poco complicado, pero le cogerás el tranquillo enseguida" step6_4: "¡Ahora ve, explora y diviértete!" _2fa: @@ -1924,7 +1924,7 @@ silenceThisInstance: Silenciar este servidor findOtherInstance: Buscar otro servidor userSaysSomethingReasonRenote: '{name} impulsó una publicación que contiene {reason]' enableRecommendedTimeline: Habilitar línea de tiempo "Recomendado" -searchPlaceholder: Buscar en Calckey +searchPlaceholder: Buscar en Firefish listsDesc: Las listas te permiten crear líneas de tiempo con usuarios específicos. Puedes acceder a ellas desde la pestaña "Línea de tiempo". removeReaction: Quitar tu reacción diff --git a/locales/fi.yml b/locales/fi.yml index 9646231f4..efbbd495b 100644 --- a/locales/fi.yml +++ b/locales/fi.yml @@ -127,7 +127,7 @@ cacheRemoteFiles: Taltioi etätiedostot välimuistiin flagAsBot: Merkitse tili botiksi flagAsBotDescription: Ota tämä vaihtoehto käyttöön, jos tätä tiliä ohjaa ohjelma. Jos se on käytössä, se toimii lippuna muille kehittäjille, jotta estetään loputtomat - vuorovaikutusketjut muiden bottien kanssa ja säädetään Calckeyn sisäiset järjestelmät + vuorovaikutusketjut muiden bottien kanssa ja säädetään Firefishn sisäiset järjestelmät käsittelemään tätä tiliä botina. flagAsCat: Oletko kissa? 🐱 flagAsCatDescription: Saat kissan korvat ja puhut kuin kissa! @@ -214,7 +214,7 @@ perDay: Päivässä version: Versio statistics: Tilastot clearQueueConfirmTitle: Oletko varma, että haluat tyhjentää jonon? -introMisskey: Tervetuloa! Calckey on avoimen lähdekoodin, hajautettu sosiaalisen median +introMisskey: Tervetuloa! Firefish on avoimen lähdekoodin, hajautettu sosiaalisen median alusta, joka on ikuisesti ilmainen! 🚀 clearQueueConfirmText: Mitkään välittämättömät lähetykset, jotka ovat jonossa, eivät federoidu. Yleensä tätä toimintoa ei tarvita. @@ -251,7 +251,7 @@ noInstances: Ei yhtään instanssia editProfile: Muokkaa profiilia noteDeleteConfirm: Oletko varma, että haluat poistaa tämän viestin? pinLimitExceeded: Et voi kiinnittää enempää viestejä -intro: Calckey -asennus valmis! Ole hyvä ja luo admin-käyttäjä. +intro: Firefish -asennus valmis! Ole hyvä ja luo admin-käyttäjä. done: Valmis processing: Suorittaa preview: Esikatselu @@ -472,7 +472,7 @@ silence: Hiljennä popularTags: Suositut tagit userList: Listat about: Tietoja -aboutMisskey: Tietoja Calckeystä +aboutFirefish: Tietoja Firefishstä exploreFediverse: Tutustu fediverseen recentlyUpdatedUsers: Vastikään lisätyt käyttäjät recentlyRegisteredUsers: Uudet liittyneet jäyttäjät @@ -618,7 +618,7 @@ sort: Järjestä ascendingOrder: Nousevasti scratchpadDescription: Raaputusalusta tarjoaa ympäristön AiScript-kokeiluja varten. Voit kirjoittaa, suorittaa ja tarkistaa sen tulokset vuorovaikutuksessa siinä olevan - Calckeyn kanssa. + Firefishn kanssa. script: Skripti disablePagesScript: Poista AiScript käytöstä sivuilla updateRemoteUser: Päivitä etäkäyttäjän tiedot @@ -800,14 +800,14 @@ smtpSecure: Käytä implisiittistä SSL/TLS:ää SMTP-yhteyksissä useGlobalSettingDesc: Jos se on päällä, käytetään tilisi ilmoitusasetuksia. Jos se on pois päältä, voit tehdä yksilöllisiä asetuksia. public: Julkinen -i18nInfo: Vapaaehtoiset kääntävät Calckeyta eri kielille. Voit auttaa osoitteessa +i18nInfo: Vapaaehtoiset kääntävät Firefishta eri kielille. Voit auttaa osoitteessa {link}. lockedAccountInfo: Ellet aseta postauksen näkyvyydeksi "Vain seuraajille", postauksesi näkyvät kaikille, vaikka vaatisitkin seuraajilta manuaalista hyväksyntää. sendErrorReportsDescription: "Kun tämä on päällä, yksityiskohtaiset virhetiedot jaetaan\ - \ Calckeyn kanssa ongelman ilmetessä, mikä auttaa parantamaan Calckeyn laatua.\n\ + \ Firefishn kanssa ongelman ilmetessä, mikä auttaa parantamaan Firefishn laatua.\n\ Näihin tietoihin sisältyy esimerkiksi käyttöjärjestelmäversio, käyttämäsi selain,\ - \ toimintasi Calckeyssä jne." + \ toimintasi Firefishssä jne." createdAt: Luotu youAreRunningUpToDateClient: Käytössäsi on asiakasohjelman uusin versio. needReloadToApply: Uudelleenlataus vaaditaan, jotta tämä näkyy. @@ -882,7 +882,7 @@ squareAvatars: Näytä neliön malliset kuvakkeet seperateRenoteQuote: Erilliset buustaa ja lainaa -napit sent: Lähetetty useBlurEffect: Käytä blur-efektejä käyttöliittymässä -misskeyUpdated: Calckey on päivitetty! +misskeyUpdated: Firefish on päivitetty! whatIsNew: Näytä muutokset translate: Käännä translatedFrom: Käännetty kielestä {x} diff --git a/locales/fr-FR.yml b/locales/fr-FR.yml index 660be0347..f2333f731 100644 --- a/locales/fr-FR.yml +++ b/locales/fr-FR.yml @@ -1,6 +1,6 @@ _lang_: "Français" headlineMisskey: "Réseau relié par des notes" -introMisskey: "Bienvenue ! Calckey est un service de microblogage décentralisé, libre +introMisskey: "Bienvenue ! Firefish est un service de microblogage décentralisé, libre et ouvert.\nÉcrivez des « notes » et partagez ce qui se passe à l’instant présent, autour de vous avec les autres 📡\nLa fonction « réactions », vous permet également d’ajouter une réaction rapide aux notes des autres utilisateur·rice·s 👍\nExplorons @@ -158,7 +158,7 @@ flagAsBot: "Ce compte est un robot" flagAsBotDescription: "Si ce compte est géré de manière automatisée, choisissez cette option. Si elle est activée, elle agira comme un marqueur pour les autres développeurs afin d'éviter des chaînes d'interaction sans fin avec d'autres robots et d'ajuster - les systèmes internes de Calckey pour traiter ce compte comme un robot." + les systèmes internes de Firefish pour traiter ce compte comme un robot." flagAsCat: "Ce compte est un chat" flagAsCatDescription: "Activer l'option \" Je suis un chat \" pour ce compte." flagShowTimelineReplies: "Afficher les réponses dans le fil" @@ -225,7 +225,7 @@ noUsers: "Il n’y a pas d’utilisateur·rice·s" editProfile: "Modifier votre profil" noteDeleteConfirm: "Êtes-vous sûr·e de vouloir supprimer cette note ?" pinLimitExceeded: "Vous ne pouvez plus épingler d’autres notes." -intro: "L’installation de Calckey est terminée ! Veuillez créer un compte administrateur." +intro: "L’installation de Firefish est terminée ! Veuillez créer un compte administrateur." done: "Terminé" processing: "Traitement en cours" preview: "Aperçu" @@ -413,7 +413,7 @@ exploreFediverse: "Explorer le Fediverse" popularTags: "Mots-clés populaires" userList: "Listes" about: "Informations" -aboutMisskey: "À propos de Calckey" +aboutFirefish: "À propos de Firefish" administrator: "Administrateur" token: "Jeton" twoStepAuthentication: "Authentification à deux facteurs" @@ -572,7 +572,7 @@ descendingOrder: "Descendant" scratchpad: "ScratchPad" scratchpadDescription: "ScratchPad fournit un environnement expérimental pour AiScript. Vous pouvez vérifier la rédaction de votre code, sa bonne exécution et le résultat - de son interaction avec Calckey." + de son interaction avec Firefish." output: "Sortie" script: "Script" disablePagesScript: "Désactiver AiScript sur les Pages" @@ -707,7 +707,7 @@ createNew: "Créer nouveau" optional: "Facultatif" createNewClip: "Créer un nouveau clip" public: "Public" -i18nInfo: "Calckey est traduit dans différentes langues par des bénévoles. Vous pouvez +i18nInfo: "Firefish est traduit dans différentes langues par des bénévoles. Vous pouvez contribuer à {link}." manageAccessTokens: "Gérer les jetons d'accès" accountInfo: " Informations du compte " @@ -766,7 +766,7 @@ nUsers: "{n} utilisateur·rice·s" nNotes: "{n} Notes" sendErrorReports: "Envoyer les rapports d’erreur" sendErrorReportsDescription: "Si vous activez l'envoi des rapports d'erreur, vous - contribuerez à améliorer la qualité de Calckey grâce au partage d'informations détaillées + contribuerez à améliorer la qualité de Firefish grâce au partage d'informations détaillées sur les erreurs lorsqu'un problème survient.\nCela inclut des informations telles que la version de votre système d'exploitation, le type de navigateur que vous utilisez, votre historique d'activité, etc." @@ -865,7 +865,7 @@ hashtags: "Hashtags" troubleshooting: "Résolution de problèmes" useBlurEffect: "Utiliser des effets de flou dans l'interface" learnMore: "Plus d'informations" -misskeyUpdated: "Calckey a été mis à jour !" +misskeyUpdated: "Firefish a été mis à jour !" whatIsNew: "Voir les derniers changements" translate: "Traduire" translatedFrom: "Traduit depuis {x}" @@ -993,13 +993,13 @@ _registry: keys: "Clé " domain: "Domaine" createKey: "Créer une clé" -_aboutMisskey: +_aboutFirefish: about: "Misskey est un logiciel libre et ouvert, développé par syuilo depuis 2014." contributors: "Principaux contributeurs" allContributors: "Tous les contributeurs" source: "Code source" - translation: "Traduire Calckey" - donate: "Soutenir Calckey" + translation: "Traduire Firefish" + donate: "Soutenir Firefish" morePatrons: "Nous apprécions vraiment le soutien de nombreuses autres personnes non mentionnées ici. Merci à toutes et à tous ! 🥰" patrons: "Contributeurs" @@ -1009,9 +1009,9 @@ _nsfw: force: "Cacher tous les médias" _mfm: cheatSheet: "Antisèche MFM" - intro: "MFM est un langage Markdown spécifique utilisable ici et là dans Calckey. + intro: "MFM est un langage Markdown spécifique utilisable ici et là dans Firefish. Vous pouvez vérifier ici les structures utilisables avec MFM." - dummy: "La Fédiverse s'agrandit avec Calckey" + dummy: "La Fédiverse s'agrandit avec Firefish" mention: "Mentionner" mentionDescription: "Vous pouvez afficher un utilisateur spécifique en indiquant une arobase suivie d'un nom d'utilisateur" @@ -1227,7 +1227,7 @@ _time: hour: "h" day: "j" _tutorial: - title: "Comment utiliser Calckey" + title: "Comment utiliser Firefish" step1_1: "Bienvenue!" step1_2: "On va vous installer. Vous serez opérationnel en un rien de temps" step2_1: "Tout d'abord, remplissez votre profil" @@ -1253,11 +1253,11 @@ _tutorial: step5_7: "La timeline globale {icon} est l'endroit où vous pouvez voir les messages de toutes les autres instances connectées." step6_1: "Alors quel est cet endroit ?" - step6_2: "Eh bien, vous ne venez pas de rejoindre Calckey. Vous avez rejoint un + step6_2: "Eh bien, vous ne venez pas de rejoindre Firefish. Vous avez rejoint un portail vers le Fediverse, un réseau interconnecté de milliers de serveurs, appelés \"instances\"." step6_3: "Chaque serveur fonctionne différemment, et tous les serveurs n'utilisent - pas Calckey. Cependant, celui-ci le fait ! C'est un peu délicat, mais vous aurez + pas Firefish. Cependant, celui-ci le fait ! C'est un peu délicat, mais vous aurez le coup de main en un rien de temps." step6_4: "Maintenant, allez-y, explorez et amusez-vous !" _2fa: @@ -1834,11 +1834,11 @@ logoutConfirm: Confirmer la déconnexion ? lastActiveDate: Dernière utilisation le cannotUploadBecauseNoFreeSpace: Mise en ligne échouée faute de place sur le Drive. remoteOnly: Distant seulement -showUpdates: Afficher une fenêtre en sur-impression quand Calckey se met à jour +showUpdates: Afficher une fenêtre en sur-impression quand Firefish se met à jour recommendedInstances: Instances recommandées caption: Description automatique migration: Migration -showAdminUpdates: Indiquer qu'une nouvelle version de Calckey est disponible (admin +showAdminUpdates: Indiquer qu'une nouvelle version de Firefish est disponible (admin seulement) replayTutorial: Relancer le tutoriel moveTo: Migrer le compte courant vers un nouveau compte @@ -2036,4 +2036,4 @@ signupsDisabled: Les inscriptions sur ce serveur sont actuellement désactivés, apps: Applications userSaysSomethingReasonReply: '{noms} a répondu à une note contenant {raison}' defaultValueIs: 'défaut : {valeur}' -searchPlaceholder: Recherchez sur Calckey +searchPlaceholder: Recherchez sur Firefish diff --git a/locales/gl.yml b/locales/gl.yml index 891a81927..5aaae34f6 100644 --- a/locales/gl.yml +++ b/locales/gl.yml @@ -1,5 +1,5 @@ _lang_: Inglés -introMisskey: Benvida! Calckey é unha plataforma de medios sociais de código aberto, +introMisskey: Benvida! Firefish é unha plataforma de medios sociais de código aberto, descentralizada e gratuíta para sempre!🚀 monthAndDay: '{day}/{month}' notifications: Notificacións @@ -11,7 +11,7 @@ noThankYou: Non, grazas headlineMisskey: Plataforma de medios sociais de código aberto e descentralizada, gratuíta para sempre!🚀 search: Buscar -searchPlaceholder: Buscar en Calckey +searchPlaceholder: Buscar en Firefish username: Identificador fetchingAsApObject: Descargando desde o Fediverso ok: OK diff --git a/locales/id-ID.yml b/locales/id-ID.yml index 6aaa726db..c0de97a76 100644 --- a/locales/id-ID.yml +++ b/locales/id-ID.yml @@ -1,6 +1,6 @@ _lang_: "Bahasa Indonesia" headlineMisskey: "Jaringan terhubung melalui catatan" -introMisskey: "Selamat datang! Calckey adalah perangkat mikroblog tercatu bersifat\ +introMisskey: "Selamat datang! Firefish adalah perangkat mikroblog tercatu bersifat\ \ sumber terbuka.\nMulailah menuliskan catatan, bagikan peristiwa terkini, serta\ \ ceritakan segala tentangmu.\U0001F4E1\nTunjukkan juga reaksimu pada catatan pengguna\ \ lain.\U0001F44D\nMari jelajahi dunia baru\U0001F680" @@ -152,7 +152,7 @@ cacheRemoteFilesDescription: "Ketika pengaturan ini dinonaktifkan, berkas luar a flagAsBot: "Atur akun ini sebagai Bot" flagAsBotDescription: "Jika akun ini dikendalikan oleh program, tetapkanlah opsi ini.\ \ Jika diaktifkan, ini akan berfungsi sebagai tanda bagi pengembang lain untuk mencegah\ - \ interaksi berantai dengan bot lain dan menyesuaikan sistem internal Calckey untuk\ + \ interaksi berantai dengan bot lain dan menyesuaikan sistem internal Firefish untuk\ \ memperlakukan akun ini sebagai bot." flagAsCat: "Atur akun ini sebagai kucing" flagAsCatDescription: "Nyalakan tanda ini untuk menandai akun ini sebagai kucing." @@ -222,7 +222,7 @@ noUsers: "Tidak ada pengguna" editProfile: "Sunting profil" noteDeleteConfirm: "Apakah kamu yakin ingin menghapus catatan ini?" pinLimitExceeded: "Kamu tidak dapat menyematkan catatan lagi" -intro: "Instalasi Calckey telah selesai! Mohon untuk membuat pengguna admin." +intro: "Instalasi Firefish telah selesai! Mohon untuk membuat pengguna admin." done: "Selesai" processing: "Memproses" preview: "Pratinjau" @@ -409,7 +409,7 @@ exploreFediverse: "Jelajahi Fediverse" popularTags: "Tag populer" userList: "Daftar" about: "Informasi" -aboutMisskey: "Tentang Calckey" +aboutFirefish: "Tentang Firefish" administrator: "Admin" token: "Token" twoStepAuthentication: "Otentikasi dua faktor" @@ -567,7 +567,7 @@ descendingOrder: "Urutkan menurun" scratchpad: "Scratchpad" scratchpadDescription: "Scratchpad menyediakan lingkungan eksperimen untuk AiScript.\ \ Kamu bisa menulis, mengeksuksi, serta mengecek hasil yang berinteraksi dengan\ - \ Calckey." + \ Firefish." output: "Keluaran" script: "Script" disablePagesScript: "Nonaktifkan script pada halaman" @@ -705,7 +705,7 @@ unclip: "Batalkan klip" confirmToUnclipAlreadyClippedNote: "Catatan ini sudah disertakan di klip \"{name}\"\ . Yakin ingin membatalkan catatan dari klip ini?" public: "Publik" -i18nInfo: "Calckey diterjemahkan ke dalam banyak bahasa oleh sukarelawan. Kamu dapat\ +i18nInfo: "Firefish diterjemahkan ke dalam banyak bahasa oleh sukarelawan. Kamu dapat\ \ ikut membantu di {link}." manageAccessTokens: "Kelola access token" accountInfo: "Informasi akun" @@ -764,7 +764,7 @@ nUsers: "{n} Pengguna" nNotes: "{n} Catatan" sendErrorReports: "Kirim laporan kesalahan" sendErrorReportsDescription: "Ketika dinyalakan, informasi kesalahan rinci akan dibagikan\ - \ dengan Calckey ketika masalah terjadi, hal ini untuk membantu kualitas Calckey.\ + \ dengan Firefish ketika masalah terjadi, hal ini untuk membantu kualitas Firefish.\ \ Fitur ini memungkinkan memuat informasi seperti sistem operasi yang kamu gunakan\ \ dan versinya, aplikasi peramban yang kamu gunakan, riwayat aktivitas kamu, dll." myTheme: "Tema saya" @@ -861,7 +861,7 @@ hashtags: "Tagar" troubleshooting: "Penyelesaian Masalah" useBlurEffect: "Gunakan efek blur pada antarmuka" learnMore: "Pelajari lebih lanjut" -misskeyUpdated: "Calckey telah dimutakhirkan!" +misskeyUpdated: "Firefish telah dimutakhirkan!" whatIsNew: "Lihat perubahan pemutakhiran" translate: "Terjemahkan" translatedFrom: "Terjemahkan dari {x}" @@ -988,14 +988,14 @@ _registry: keys: "Kunci" domain: "Domain" createKey: "Buat kunci" -_aboutMisskey: - about: "Calckey adalah perangkat lunak sumber terbuka yang sedang dikembangkan oleh\ +_aboutFirefish: + about: "Firefish adalah perangkat lunak sumber terbuka yang sedang dikembangkan oleh\ \ syuilo sejak 2014." contributors: "Kontributor utama" allContributors: "Seluruh kontributor" source: "Sumber kode" - translation: "Terjemahkan Calckey" - donate: "Donasi ke Calckey" + translation: "Terjemahkan Firefish" + donate: "Donasi ke Firefish" morePatrons: "Kami sangat mengapresiasi dukungan dari banyak penolong lain yang\ \ tidak tercantum disini. Terima kasih! \U0001F970" patrons: "Pendukung" @@ -1005,9 +1005,9 @@ _nsfw: force: "Sembunyikan semua media" _mfm: cheatSheet: "Contekan MFM" - intro: "MFM adalah Calckey-exclusive Markup Language yang dapat digunakan di banyak\ + intro: "MFM adalah Firefish-exclusive Markup Language yang dapat digunakan di banyak\ \ tempat. Berikut kamu bisa melihat daftar dari syntax MFM yang ada." - dummy: "Calckey membentangkan dunia Fediverse" + dummy: "Firefish membentangkan dunia Fediverse" mention: "Sebut" mentionDescription: "Kamu dapat menentukan pengguna tertentu dengan menggunakan\ \ simbol-At dan nama engguna mereka." @@ -1215,7 +1215,7 @@ _time: hour: "jam" day: "hari" _tutorial: - title: "Cara menggunakan Calckey" + title: "Cara menggunakan Firefish" step1_1: "Selamat datang!" step1_2: "Halaman ini disebut \"linimasa\". Halaman ini menampilkan \"catatan\"\ \ yang diurutkan secara kronologis dari orang-orang yang kamu \"ikuti\"." @@ -1248,8 +1248,8 @@ _tutorial: \ dengan cepat." step6_3: "Untuk memberikan \"reaksi\", tekan tanda \"+\" pada catatan pengguna lain\ \ dan pilih emoji yang kamu suka untuk memberikan reaksimu kepada mereka." - step7_1: "Yay, Selamat! Kamu sudah menyelesaikan tutorial dasar Calckey." - step7_2: "Jika kamu ingin mempelajari lebih lanjut tentang Calckey, cobalah berkunjung\ + step7_1: "Yay, Selamat! Kamu sudah menyelesaikan tutorial dasar Firefish." + step7_2: "Jika kamu ingin mempelajari lebih lanjut tentang Firefish, cobalah berkunjung\ \ ke bagian {help}." step7_3: "Semoga berhasil dan bersenang-senanglah! \U0001F680" _2fa: diff --git a/locales/it-IT.yml b/locales/it-IT.yml index 93dd5fcf3..77bc1cf84 100644 --- a/locales/it-IT.yml +++ b/locales/it-IT.yml @@ -1,6 +1,6 @@ _lang_: "Italiano" headlineMisskey: "Rete collegata tramite note" -introMisskey: "Benvenut@! Calckey è un servizio di microblogging decentralizzato, +introMisskey: "Benvenut@! Firefish è un servizio di microblogging decentralizzato, libero e aperto. \nScrivi \"note\" per condividere ciò che sta succedendo adesso o per dire a tutti qualcosa di te. 📡\nGrazie alla funzione \"reazioni\" puoi anche mandare reazioni rapide alle note delle altre persone del Fediverso. 👍\nEsplora @@ -154,7 +154,7 @@ flagAsBot: "Io sono un robot" flagAsBotDescription: "Se l'account esegue principalmente operazioni automatiche, attiva quest'opzione. Quando attivata, opera come un segnalatore per gli altri sviluppatori allo scopo di prevenire catene d’interazione senza fine con altri bot, e di adeguare - i sistemi interni di Calckey perché trattino questo account come un bot." + i sistemi interni di Firefish perché trattino questo account come un bot." flagAsCat: "Io sono un gatto" flagAsCatDescription: "Abilita l'opzione \"Io sono un gatto\" per l'account." autoAcceptFollowed: "Accetta automaticamente le richieste di follow da utenti che @@ -217,7 +217,7 @@ noUsers: "Nessun utente trovato" editProfile: "Modifica profilo" noteDeleteConfirm: "Eliminare questo Nota?" pinLimitExceeded: "Non puoi fissare altre note " -intro: "L'installazione di Calckey è finita! Si prega di creare un account amministratore." +intro: "L'installazione di Firefish è finita! Si prega di creare un account amministratore." done: "Fine" processing: "In elaborazione" preview: "Anteprima" @@ -401,7 +401,7 @@ exploreFediverse: "Esplora il Fediverso" popularTags: "Tag di tendenza" userList: "Liste" about: "Informazioni" -aboutMisskey: "Informazioni di Calckey" +aboutFirefish: "Informazioni di Firefish" administrator: "Amministratore" token: "Token" twoStepAuthentication: "Autenticazione a due fattori" @@ -555,7 +555,7 @@ descendingOrder: "Discendente" scratchpad: "ScratchPad" scratchpadDescription: "Lo Scratchpad offre un ambiente per esperimenti di AiScript. È possibile scrivere, eseguire e confermare i risultati dell'interazione del codice - con Calckey." + con Firefish." output: "Uscita" script: "Script" disablePagesScript: "Disabilita AiScript nelle pagine" @@ -684,7 +684,7 @@ createNew: "Crea nuov@" optional: "Opzionale" createNewClip: "Nuova clip" public: "Pubblica" -i18nInfo: "Calckey è tradotto in diverse lingue da volontari. Anche tu puoi contribuire +i18nInfo: "Firefish è tradotto in diverse lingue da volontari. Anche tu puoi contribuire su {link}." manageAccessTokens: "Gestisci token di accesso" accountInfo: "Informazioni account" @@ -742,7 +742,7 @@ nUsers: "{n} utenti" nNotes: "{n}Note" sendErrorReports: "Invia segnalazioni di errori" sendErrorReportsDescription: "Quando abilitato, se si verifica un problema, informazioni - dettagliate sugli errori verranno condivise con Calckey in modo da aiutare a migliorare + dettagliate sugli errori verranno condivise con Firefish in modo da aiutare a migliorare la qualità del software.\nCiò include informazioni come la versione del sistema operativo, il tipo di navigatore web che usi, la cronologia delle attività, ecc." myTheme: "I miei temi" @@ -835,7 +835,7 @@ hashtags: "Hashtag" troubleshooting: "Risoluzione problemi" useBlurEffect: "Utilizza effetto sfocatura per l'interfaccia utente" learnMore: "Più dettagli" -misskeyUpdated: "Calckey è stato aggiornato!" +misskeyUpdated: "Firefish è stato aggiornato!" whatIsNew: "Visualizza le informazioni sull'aggiornamento" translate: "Traduzione" translatedFrom: "Tradotto da {x}" @@ -931,13 +931,13 @@ _registry: keys: "Dati" domain: "Dominio" createKey: "Crea chiave" -_aboutMisskey: +_aboutFirefish: about: "Misskey è un software libero e open source, sviluppato da syuilo dal 2014." contributors: "Principali sostenitori" allContributors: "Tutti i sostenitori" source: "Codice sorgente" - translation: "Tradurre Calckey" - donate: "Sostieni Calckey" + translation: "Tradurre Firefish" + donate: "Sostieni Firefish" morePatrons: "Apprezziamo sinceramente il supporto di tante altre persone. Grazie mille! 🥰" patrons: "Sostenitori" @@ -948,8 +948,8 @@ _nsfw: _mfm: cheatSheet: "Bigliettino MFM" intro: "MFM è un linguaggio Markdown particolare che si può usare in diverse parti - di Calckey. Qui puoi visualizzare a colpo d'occhio tutta la sintassi MFM utile." - dummy: "Il Fediverso si espande con Calckey" + di Firefish. Qui puoi visualizzare a colpo d'occhio tutta la sintassi MFM utile." + dummy: "Il Fediverso si espande con Firefish" mention: "Menzioni" mentionDescription: "Si può menzionare un utente specifico digitando il suo nome utente subito dopo il segno @." @@ -1107,7 +1107,7 @@ _time: hour: "ore" day: "giorni" _tutorial: - titolo: "Come usare Calckey" + titolo: "Come usare Firefish" step1_1: "Benvenuto!" step1_2: "Vediamo di configurarla. Sarete operativi in men che non si dica!" step2_1: "Per prima cosa, compila il tuo profilo" @@ -1133,9 +1133,9 @@ _tutorial: step5_7: "La timeline Globale {icon} è quella in cui si possono vedere i post di ogni altra istanza collegata" step6_1: "Allora, cos'è questo posto?" - step6_2: "Beh, non ti sei semplicemente unito a Calckey. Sei entrato in un portale + step6_2: "Beh, non ti sei semplicemente unito a Firefish. Sei entrato in un portale del Fediverse, una rete interconnessa di migliaia di server, chiamata \"istanze\"" - step6_3: "Ogni server funziona in modo diverso, e non tutti i server eseguono Calckey. + step6_3: "Ogni server funziona in modo diverso, e non tutti i server eseguono Firefish. Questo però lo fa! È un po' complicato, ma ci riuscirete in poco tempo" step6_4: "Ora andate, esplorate e divertitevi!" _2fa: diff --git a/locales/ja-JP.yml b/locales/ja-JP.yml index 755afa8d3..46a486d91 100644 --- a/locales/ja-JP.yml +++ b/locales/ja-JP.yml @@ -1,6 +1,6 @@ _lang_: "日本語" headlineMisskey: "ずっと無料でオープンソースの非中央集権型ソーシャルメディアプラットフォーム🚀" -introMisskey: "ようこそ!Calckeyは、オープンソースの非中央集権型ソーシャルメディアプラットフォームです。\nいま起こっていることを共有したり、あなたについて皆に発信しましょう📡\n\ +introMisskey: "ようこそ!Firefishは、オープンソースの非中央集権型ソーシャルメディアプラットフォームです。\nいま起こっていることを共有したり、あなたについて皆に発信しましょう📡\n\ 「リアクション」機能で、皆の投稿に素早く反応を追加できます👍\n新しい世界を探検しよう🚀" monthAndDay: "{month}月 {day}日" search: "検索" @@ -146,7 +146,7 @@ settingGuide: "おすすめ設定" cacheRemoteFiles: "リモートのファイルをキャッシュする" cacheRemoteFilesDescription: "この設定を無効にすると、リモートファイルをキャッシュせず直リンクします。サーバーのストレージを節約できますが、サムネイルが生成されないので通信量が増加します。" flagAsBot: "Botとして設定" -flagAsBotDescription: "このアカウントがBotである場合は、この設定をオンにします。オンにすると、反応の連鎖を防ぐためのフラグとして他の開発者に役立ったり、Calckeyのシステム上での扱いがBotに合ったものになります。" +flagAsBotDescription: "このアカウントがBotである場合は、この設定をオンにします。オンにすると、反応の連鎖を防ぐためのフラグとして他の開発者に役立ったり、Firefishのシステム上での扱いがBotに合ったものになります。" flagAsCat: "あなたは…猫?😺" flagAsCatDescription: "このアカウントが猫であることを示す猫モードを有効にするには、このフラグをオンにします。" flagSpeakAsCat: "猫語で話す" @@ -213,7 +213,7 @@ noInstances: "サーバーがありません" editProfile: "プロフィールを編集" noteDeleteConfirm: "この投稿を削除しますか?" pinLimitExceeded: "これ以上ピン留めできません" -intro: "Calckeyのインストールが完了しました!管理者アカウントを作成しましょう。" +intro: "Firefishのインストールが完了しました!管理者アカウントを作成しましょう。" done: "完了" processing: "処理中" preview: "プレビュー" @@ -396,7 +396,7 @@ exploreFediverse: "Fediverseを探索" popularTags: "人気のタグ" userList: "リスト" about: "情報" -aboutMisskey: "Calckeyについて" +aboutFirefish: "Firefishについて" administrator: "管理者" token: "トークン" twoStepAuthentication: "二段階認証" @@ -543,7 +543,7 @@ sort: "ソート" ascendingOrder: "昇順" descendingOrder: "降順" scratchpad: "スクラッチパッド" -scratchpadDescription: "スクラッチパッドは、AiScriptの実験環境を提供します。Calckeyと対話するコードの記述、実行、結果の確認ができます。" +scratchpadDescription: "スクラッチパッドは、AiScriptの実験環境を提供します。Firefishと対話するコードの記述、実行、結果の確認ができます。" output: "出力" script: "スクリプト" disablePagesScript: "ページのスクリプトを無効にする" @@ -672,7 +672,7 @@ createNewClip: "新しいクリップを作成" unclip: "クリップ解除" confirmToUnclipAlreadyClippedNote: "この投稿はすでにクリップ「{name}」に含まれています。投稿をこのクリップから除外しますか?" public: "公開" -i18nInfo: "Calckeyは有志によって様々な言語に翻訳されています。{link}で翻訳に協力できます。" +i18nInfo: "Firefishは有志によって様々な言語に翻訳されています。{link}で翻訳に協力できます。" manageAccessTokens: "アクセストークンの管理" accountInfo: "アカウント情報" notesCount: "投稿の数" @@ -723,7 +723,7 @@ onlineUsersCount: "{n}人がオンライン" nUsers: "{n}ユーザー" nNotes: "{n}投稿" sendErrorReports: "エラーリポートを送信" -sendErrorReportsDescription: "オンにすると、問題が発生したときにエラーの詳細情報がCalckeyに共有され、ソフトウェアの品質向上に役立てられます。\n\ +sendErrorReportsDescription: "オンにすると、問題が発生したときにエラーの詳細情報がFirefishに共有され、ソフトウェアの品質向上に役立てられます。\n\ エラー情報には、OSのバージョン、ブラウザの種類、行動履歴などが含まれます。" myTheme: "マイテーマ" backgroundColor: "背景" @@ -824,7 +824,7 @@ hashtags: "ハッシュタグ" troubleshooting: "トラブルシューティング" useBlurEffect: "UIにぼかし効果を使用" learnMore: "詳しく" -misskeyUpdated: "Calckeyが更新されました!" +misskeyUpdated: "Firefishが更新されました!" whatIsNew: "更新情報を見る" translate: "翻訳" translatedFrom: "{x}から翻訳" @@ -944,7 +944,7 @@ customMOTDDescription: "ユーザがページをロード/リロードするた customSplashIcons: "カスタムスプラッシュスクリーンアイコン" customSplashIconsDescription: "ユーザがページをロード/リロードするたびにランダムに表示される、改行で区切られたカスタムスプラッシュスクリーンアイコンの URL。画像は静的なURLで、できればすべて192x192にリサイズしてください。" -showUpdates: "Calckeyの更新時にポップアップを表示する" +showUpdates: "Firefishの更新時にポップアップを表示する" recommendedInstances: "おすすめサーバー" recommendedInstancesDescription: "おすすめタイムラインに表示するサーバーを改行区切りで入力してください。" caption: "自動キャプション" @@ -952,7 +952,7 @@ splash: "スプラッシュスクリーン" updateAvailable: "アップデートがありますよ!" swipeOnDesktop: "デスクトップでモバイルスタイルのスワイプを可能にする" logoImageUrl: "ロゴのURL" -showAdminUpdates: "新しいCalckeyのバージョンが利用可能なときに通知する(管理者のみ)" +showAdminUpdates: "新しいFirefishのバージョンが利用可能なときに通知する(管理者のみ)" replayTutorial: "もう一度チュートリアルを見る" migration: "アカウントの引っ越し" moveTo: "このアカウントを新しいアカウントに引っ越す" @@ -977,7 +977,7 @@ customKaTeXMacroDescription: "数式入力を楽にするためのマクロを enableCustomKaTeXMacro: "カスタムKaTeXマクロを有効にする" preventAiLearning: "AIによる学習を防止" preventAiLearningDescription: "投稿したノート、添付した画像などのコンテンツを学習の対象にしないようAIに要求します。これはnoaiフラグをHTMLレスポンスに含めることによって実現されます。" -noGraze: "ブラウザの拡張機能「Graze for Mastodon」は、Calckeyの動作を妨げるため、無効にしてください。" +noGraze: "ブラウザの拡張機能「Graze for Mastodon」は、Firefishの動作を妨げるため、無効にしてください。" enableServerMachineStats: "サーバーのマシン情報を公開する" enableIdenticonGeneration: "ユーザーごとのIdenticon生成を有効にする" showPopup: "ポップアップを表示してユーザーに知らせる" @@ -1060,28 +1060,28 @@ _registry: keys: "キー" domain: "ドメイン" createKey: "キーを作成" -_aboutMisskey: - about: "Calckeyは、2022年に生まれたThatOneCalculatorによるMisskeyのforkです。" +_aboutFirefish: + about: "Firefishは、2022年に生まれたThatOneCalculatorによるMisskeyのforkです。" contributors: "主なコントリビューター" allContributors: "全てのコントリビューター" source: "ソースコード" - translation: "Calckeyを翻訳" - donate: "Calckeyに寄付" + translation: "Firefishを翻訳" + donate: "Firefishに寄付" morePatrons: "他にも多くの方が支援してくれています。ありがとうございます! 🥰" patrons: "支援者" patronsList: 寄付額ではなく時系列順に並んでいます。上記のリンクから寄付を行ってここにあなたのIDを載せましょう! - pleaseDonateToCalckey: Calckey開発への寄付をご検討ください。 + pleaseDonateToFirefish: Firefish開発への寄付をご検討ください。 pleaseDonateToHost: また、このサーバー {host} の運営者への寄付もご検討ください。 donateHost: '{host} に寄付する' - donateTitle: Calckeyを気に入りましたか? + donateTitle: Firefishを気に入りましたか? _nsfw: respect: "閲覧注意のメディアは隠す" ignore: "閲覧注意のメディアを隠さない" force: "常にメディアを隠す" _mfm: cheatSheet: "MFMチートシート" - intro: "MFMは、MisskeyやCalckey、Akkomaなどの様々な場所で使用できるマークアップ言語です。ここでは、MFMで使用可能な構文一覧が確認できます。" - dummy: "CalckeyでFediverseの世界が広がります" + intro: "MFMは、MisskeyやFirefish、Akkomaなどの様々な場所で使用できるマークアップ言語です。ここでは、MFMで使用可能な構文一覧が確認できます。" + dummy: "FirefishでFediverseの世界が広がります" mention: "メンション" mentionDescription: "アットマーク + ユーザー名で、特定のユーザーを示せます。" hashtag: "ハッシュタグ" @@ -1303,7 +1303,7 @@ _time: hour: "時間" day: "日" _tutorial: - title: "Calckeyの使い方" + title: "Firefishの使い方" step1_1: "ようこそ!" step1_2: "使い始める前に、いくつか設定を済ませましょう。すぐできますよ!" step2_1: "最初に、あなたのプロフィールを作りましょう。" @@ -1321,8 +1321,8 @@ _tutorial: step5_6: "おすすめ{icon}タイムラインでは、管理人がおすすめするサーバーの投稿を見られます。" step5_7: "グローバル{icon}タイムラインでは、接続している他のすべてのサーバーからの投稿を見られます。" step6_1: "じゃあ、ここはどんな場所なの?" - step6_2: "実は、あなたはただCalckeyに参加しただけではありません。ここは、何千もの相互接続されたサーバーが構成する Fediverse への入口です。" - step6_3: "それぞれのサーバーでは必ずしもCalckeyが使われているわけではなく、異なる動作をするサーバーもあります。しかし、あなたは他のサーバーのアカウントもフォローしたり、返信・ブーストができます。一見難しそうですが大丈夫!すぐ慣れます。" + step6_2: "実は、あなたはただFirefishに参加しただけではありません。ここは、何千もの相互接続されたサーバーが構成する Fediverse への入口です。" + step6_3: "それぞれのサーバーでは必ずしもFirefishが使われているわけではなく、異なる動作をするサーバーもあります。しかし、あなたは他のサーバーのアカウントもフォローしたり、返信・ブーストができます。一見難しそうですが大丈夫!すぐ慣れます。" step6_4: "これで完了です。お楽しみください!" _2fa: alreadyRegistered: "既に設定は完了しています。" @@ -1902,7 +1902,7 @@ apps: "アプリ" _experiments: title: 試験的な機能 postImportsCaption: - ユーザーが過去の投稿をCalckey・Misskey・Mastodon・Akkoma・Pleromaからインポートすることを許可します。キューが溜まっているときにインポートするとサーバーに負荷がかかる可能性があります。 + ユーザーが過去の投稿をFirefish・Misskey・Mastodon・Akkoma・Pleromaからインポートすることを許可します。キューが溜まっているときにインポートするとサーバーに負荷がかかる可能性があります。 enablePostImports: 投稿のインポートを有効にする sendModMail: モデレーション通知を送る deleted: 削除済み @@ -1917,7 +1917,7 @@ accessibility: アクセシビリティ jumpToPrevious: 前に戻る cw: 閲覧注意 silencedWarning: スパムの可能性があるため、これらのユーザーが所属するサーバーは管理者によりサイレンスされています。 -searchPlaceholder: Calckeyを検索 +searchPlaceholder: Firefishを検索 channelFederationWarn: 現時点では、チャンネルは他のサーバーへ連合しません listsDesc: リストでは指定したユーザーだけのタイムラインを作れます。リストには「タイムライン」のページからアクセスできます。 antennasDesc: "アンテナでは指定した条件に合致する投稿が表示されます。\nアンテナには「タイムライン」のページからアクセスできます。" @@ -1942,7 +1942,7 @@ video: 動画 isBot: このアカウントはBotです isLocked: このアカウントのフォローは承認制です isAdmin: 管理者 -isPatron: Calckey 後援者 +isPatron: Firefish 後援者 _skinTones: light: ペールオレンジ mediumLight: ミディアムライト diff --git a/locales/ja-KS.yml b/locales/ja-KS.yml index 8a9b91486..40b32b4c0 100644 --- a/locales/ja-KS.yml +++ b/locales/ja-KS.yml @@ -377,7 +377,7 @@ exploreFediverse: "Fediverseを探ってみる" popularTags: "人気のタグ" userList: "リスト" about: "情報" -aboutMisskey: "Misskeyってなんや?" +aboutFirefish: "Misskeyってなんや?" administrator: "管理者" token: "トークン" twoStepAuthentication: "二段階認証" @@ -647,7 +647,7 @@ createNewClip: "新しいクリップを作るで" unclip: "クリップ解除するで" confirmToUnclipAlreadyClippedNote: "このノートはすでにクリップ「{name}」に含まれとるで。ノートをこのクリップから除外したる?" public: "パブリック" -i18nInfo: "Calckeyは有志によっていろんな言語に翻訳されとるで。{link}で翻訳に協力したってやー。" +i18nInfo: "Firefishは有志によっていろんな言語に翻訳されとるで。{link}で翻訳に協力したってやー。" manageAccessTokens: "アクセストークンの管理" accountInfo: "アカウント情報" notesCount: "ノートの数やで" @@ -867,7 +867,7 @@ _registry: keys: "キー" domain: "ドメイン" createKey: "キーを作る" -_aboutMisskey: +_aboutFirefish: about: "Misskeyはsyuiloが2014年からずっと作ってはる、オープンソースなソフトウェアや。" contributors: "主な貢献者" allContributors: "全ての貢献者" diff --git a/locales/kn-IN.yml b/locales/kn-IN.yml index 77614812e..04b4ef6e2 100644 --- a/locales/kn-IN.yml +++ b/locales/kn-IN.yml @@ -1,6 +1,6 @@ --- _lang_: "ಕನ್ನಡ" -introMisskey: "ಸ್ವಾಗತ! Calckey ಓಪನ್ ಸೋರ್ಸ್ ಒಕ್ಕೂಟ ಮೈಕ್ರೋಬ್ಲಾಗಿಂಗ್ ಸೇವೆಯಾಗಿದೆ.\n ಏನಾಗುತ್ತಿದೆ ಎಂಬುದನ್ನು ಹಂಚಿಕೊಳ್ಳಲು ಅಥವಾ ನಿಮ್ಮ ಬಗ್ಗೆ ಎಲ್ಲರಿಗೂ ಹೇಳಲು \"ಟಿಪ್ಪಣಿ\"ಗಳನ್ನು ರಚಿಸಿ📡\n \"ಸ್ಪಂದನೆ\" ಕ್ರಿಯೆಯೊಂದಿಗೆ, ನೀವು ಎಲ್ಲರ ಟಿಪ್ಪಣಿಗಳಿಗೆ ತ್ವರಿತವಾಗಿ ಸ್ಪಂದನೆಗಳನ್ನು ಕೂಡ ಸೇರಿಸಬಹುದು.👍\n ಹೊಸ ಜಗತ್ತನ್ನು ಅನ್ವೇಷಿಸಿ🚀" +introMisskey: "ಸ್ವಾಗತ! Firefish ಓಪನ್ ಸೋರ್ಸ್ ಒಕ್ಕೂಟ ಮೈಕ್ರೋಬ್ಲಾಗಿಂಗ್ ಸೇವೆಯಾಗಿದೆ.\n ಏನಾಗುತ್ತಿದೆ ಎಂಬುದನ್ನು ಹಂಚಿಕೊಳ್ಳಲು ಅಥವಾ ನಿಮ್ಮ ಬಗ್ಗೆ ಎಲ್ಲರಿಗೂ ಹೇಳಲು \"ಟಿಪ್ಪಣಿ\"ಗಳನ್ನು ರಚಿಸಿ📡\n \"ಸ್ಪಂದನೆ\" ಕ್ರಿಯೆಯೊಂದಿಗೆ, ನೀವು ಎಲ್ಲರ ಟಿಪ್ಪಣಿಗಳಿಗೆ ತ್ವರಿತವಾಗಿ ಸ್ಪಂದನೆಗಳನ್ನು ಕೂಡ ಸೇರಿಸಬಹುದು.👍\n ಹೊಸ ಜಗತ್ತನ್ನು ಅನ್ವೇಷಿಸಿ🚀" monthAndDay: "{month}ನೇ ತಿಂಗಳ {day}ನೇ ದಿನ" search: "ಹುಡುಕು" notifications: "ಅಧಿಸೂಚನೆಗಳು" diff --git a/locales/ko-KR.yml b/locales/ko-KR.yml index 459274166..b869fb085 100644 --- a/locales/ko-KR.yml +++ b/locales/ko-KR.yml @@ -1,7 +1,7 @@ --- _lang_: "한국어" headlineMisskey: "노트로 연결되는 네트워크" -introMisskey: "환영합니다! Calckey 는 오픈 소스 분산형 마이크로 블로그 서비스입니다.\n\"노트\" 를 작성해서, 지금 일어나고 있는 일을 공유하거나, 당신만의 이야기를 모두에게 발신하세요📡\n\"리액션\" 기능으로, 친구의 노트에 총알같이 반응을 추가할 수도 있습니다👍\n새로운 세계를 탐험해 보세요🚀" +introMisskey: "환영합니다! Firefish 는 오픈 소스 분산형 마이크로 블로그 서비스입니다.\n\"노트\" 를 작성해서, 지금 일어나고 있는 일을 공유하거나, 당신만의 이야기를 모두에게 발신하세요📡\n\"리액션\" 기능으로, 친구의 노트에 총알같이 반응을 추가할 수도 있습니다👍\n새로운 세계를 탐험해 보세요🚀" monthAndDay: "{month}월 {day}일" search: "검색" notifications: "알림" @@ -377,7 +377,7 @@ exploreFediverse: "연합우주를 탐색" popularTags: "인기 태그" userList: "리스트" about: "정보" -aboutMisskey: "Misskey에 대하여" +aboutFirefish: "Misskey에 대하여" administrator: "관리자" token: "토큰" twoStepAuthentication: "2단계 인증" @@ -523,7 +523,7 @@ sort: "정렬" ascendingOrder: "오름차순" descendingOrder: "내림차순" scratchpad: "스크래치 패드" -scratchpadDescription: "스크래치 패드는 AiScript 의 테스트 환경을 제공합니다. Calckey 와 상호 작용하는 코드를 작성, 실행 및 결과를 확인할 수 있습니다." +scratchpadDescription: "스크래치 패드는 AiScript 의 테스트 환경을 제공합니다. Firefish 와 상호 작용하는 코드를 작성, 실행 및 결과를 확인할 수 있습니다." output: "출력" script: "스크립트" disablePagesScript: "Pages 에서 AiScript 를 사용하지 않음" @@ -648,7 +648,7 @@ createNewClip: "새 클립 만들기" unclip: "클립 해제" confirmToUnclipAlreadyClippedNote: "이 노트는 이미 \"{name}\" 클립에 포함되어 있습니다. 클립을 해제하시겠습니까?" public: "공개" -i18nInfo: "Calckey는 자원봉사자들에 의해 다양한 언어로 번역되고 있습니다. {link}에서 번역에 참가할 수 있습니다." +i18nInfo: "Firefish는 자원봉사자들에 의해 다양한 언어로 번역되고 있습니다. {link}에서 번역에 참가할 수 있습니다." manageAccessTokens: "액세스 토큰 관리" accountInfo: "계정 정보" notesCount: "노트 수" @@ -964,7 +964,7 @@ _registry: keys: "키" domain: "도메인" createKey: "키 생성" -_aboutMisskey: +_aboutFirefish: about: "Misskey는 syuilo에 의해서 2014년부터 개발되어 온 오픈소스 소프트웨어 입니다." contributors: "주요 기여자" allContributors: "모든 기여자" diff --git a/locales/nl-NL.yml b/locales/nl-NL.yml index 45bc36278..4eeb7ec72 100644 --- a/locales/nl-NL.yml +++ b/locales/nl-NL.yml @@ -1,7 +1,7 @@ _lang_: "Nederlands" headlineMisskey: "Een open source, gedecentraliseerd, social media platform dat voor altijd gratis is! 🚀" -introMisskey: "Welkom! Calckey is een open source, gedecentraliseerde microblogdienst.\n +introMisskey: "Welkom! Firefish is een open source, gedecentraliseerde microblogdienst.\n Maak \"notities\" om je gedachten te delen met iedereen om je heen. 📡\nMet \"reacties\"\ \ kun je ook snel je mening geven over berichten van anderen. 👍\nLaten we een nieuwe wereld verkennen! 🚀" @@ -134,7 +134,7 @@ unsuspendConfirm: "Ben je zeker dat je deze account wil opnieuw aanstellen?" flagAsBot: "Markeer dit account als een robot" flagAsBotDescription: "Als dit account van een programma wordt beheerd, zet deze vlag aan. Het aanzetten helpt andere ontwikkelaars om bijvoorbeeld onbedoelde feedback - loops te doorbreken of om Calckey meer geschikt te maken." + loops te doorbreken of om Firefish meer geschikt te maken." flagAsCat: "Markeer dit account als een kat." flagAsCatDescription: "Zet deze vlag aan als je wilt aangeven dat dit account een kat is." @@ -204,7 +204,7 @@ noUsers: "Er zijn geen gebruikers." editProfile: "Bewerk Profiel" noteDeleteConfirm: "Ben je zeker dat je deze post wil verwijderen?" pinLimitExceeded: "Je kunt geen posts meer vastprikken" -intro: "Installatie van Calckey geëindigd! Maak nu een beheerder aan." +intro: "Installatie van Firefish geëindigd! Maak nu een beheerder aan." done: "Klaar" processing: "Bezig met verwerken" preview: "Voorbeeld" @@ -304,7 +304,7 @@ disconnectedFromServer: "Verbinding met de server onderbroken." inMb: "in megabytes" pinnedNotes: "Vastgemaakte notitie" userList: "Lijsten" -aboutMisskey: "Over Calckey" +aboutFirefish: "Over Firefish" administrator: "Beheerder" token: "Token" securityKeyName: "Sleutelnaam" @@ -673,7 +673,7 @@ updateRemoteUser: Update externe gebruikersinformatie listen: Luister none: Geen scratchpadDescription: Het kladblok is een omgeving voor AiScript experimenten. Je - kan hier schrijven, uitvoeren, en de resultaten bekijken van de interactie met Calckey. + kan hier schrijven, uitvoeren, en de resultaten bekijken van de interactie met Firefish. disablePagesScript: Zet AiScript op Pages uit deleteAllFiles: Verwijder alle bestanden deleteAllFilesConfirm: Weet je zeker dat je alle bestanden wil verwijderen? diff --git a/locales/no-NO.yml b/locales/no-NO.yml index 5f02d5f19..a7f779c44 100644 --- a/locales/no-NO.yml +++ b/locales/no-NO.yml @@ -8,7 +8,7 @@ profile: Profil timeline: Tidslinje save: Lagre addToList: Legg til liste -searchPlaceholder: Søk Calckey +searchPlaceholder: Søk Firefish username: Brukernavn password: Passord notifications: Meldinger @@ -65,7 +65,7 @@ openInWindow: Åpne i vindu basicSettings: Grunnleggende innstillinger headlineMisskey: En desentralisert sosialt media-plattform, basert på åpen kildekode, som alltid vil være gratis! 🚀 -introMisskey: Velkommen! Calckey er en desentralisert sosialt media-plattform, basert +introMisskey: Velkommen! Firefish er en desentralisert sosialt media-plattform, basert på åpen kildekode, som alltid vil være gratis! 🚀 exportRequested: Du har bedt om en eksportering. Dette vil ta litt tid. Den vil bli lagt til på disken din når den er ferdig. diff --git a/locales/pl-PL.yml b/locales/pl-PL.yml index 58624303c..edb551377 100644 --- a/locales/pl-PL.yml +++ b/locales/pl-PL.yml @@ -1,7 +1,7 @@ _lang_: "Polski" headlineMisskey: "Otwartoźródłowa, zdecentralizowana sieć społecznościowa, która zawsze będzie darmowa! 🚀" -introMisskey: "Hej! Calckey to otwartoźródłowa oraz zdecentralizowana sieć społecznościowa, +introMisskey: "Hej! Firefish to otwartoźródłowa oraz zdecentralizowana sieć społecznościowa, która zawsze będzie darmowa! 🚀" monthAndDay: "{month}-{day}" search: "Szukaj" @@ -150,7 +150,7 @@ flagAsBot: "To konto jest botem" flagAsBotDescription: "Jeżeli ten kanał jest kontrolowany przez jakiś program, ustaw tę opcję. Jeżeli włączona, będzie działać jako flaga informująca innych programistów, aby zapobiegać nieskończonej interakcji z różnymi botami i dostosowywać wewnętrzne - systemy Calckey, traktując konto jako bota." + systemy Firefish, traktując konto jako bota." flagAsCat: "Czy jesteś kotem? 😺" flagAsCatDescription: "Dostaniesz kocie uszka, oraz będziesz mówić jak kot!" flagShowTimelineReplies: "Pokazuj odpowiedzi na osi czasu" @@ -211,7 +211,7 @@ noUsers: "Brak użytkowników" editProfile: "Edytuj profil" noteDeleteConfirm: "Czy na pewno chcesz usunąć ten wpis?" pinLimitExceeded: "Nie możesz przypiąć więcej wpisów" -intro: "Zakończono instalację Calckey! Utwórz konto administratora." +intro: "Zakończono instalację Firefish! Utwórz konto administratora." done: "Gotowe" processing: "Przetwarzanie" preview: "Podgląd" @@ -396,7 +396,7 @@ exploreFediverse: "Eksploruj Fediwersum" popularTags: "Tagi na czasie" userList: "Listy" about: "Informacje" -aboutMisskey: "O Calckey" +aboutFirefish: "O Firefish" administrator: "Admin" token: "Token" twoStepAuthentication: "Uwierzytelnianie dwuskładnikowe" @@ -547,7 +547,7 @@ ascendingOrder: "Rosnąco" descendingOrder: "Malejąco" scratchpad: "Brudnopis" scratchpadDescription: "Brudnopis to środowisko dla eksperymentów z AiScript. Możesz - pisać, wykonywać i sprawdzać wyniki interakcji skryptu z Calckey." + pisać, wykonywać i sprawdzać wyniki interakcji skryptu z Firefish." output: "Wyjście" script: "Skrypt" disablePagesScript: "Wyłącz AiScript na Stronach" @@ -674,7 +674,7 @@ unclip: "Odczep" confirmToUnclipAlreadyClippedNote: "Ten wpis jest już częścią klipu \"{name}\". Czy chcesz ją usunąć z tego klipu?" public: "Publiczny" -i18nInfo: "Calckey jest tłumaczone na wiele języków przez wolontariuszy. Możesz pomóc +i18nInfo: "Firefish jest tłumaczone na wiele języków przez wolontariuszy. Możesz pomóc na {link}." manageAccessTokens: "Zarządzaj tokenami dostępu" accountInfo: "Informacje o koncie" @@ -825,7 +825,7 @@ hashtags: "Hashtag" troubleshooting: "Rozwiązywanie problemów" useBlurEffect: "Użyj efektów rozmycia w UI" learnMore: "Dowiedz się więcej" -misskeyUpdated: "Calckey zostało zaktualizowane!" +misskeyUpdated: "Firefish zostało zaktualizowane!" whatIsNew: "Pokaż zmiany" translate: "Przetłumacz" translatedFrom: "Przetłumaczone z {x}" @@ -987,14 +987,14 @@ _registry: keys: "Klucz" domain: "Domena" createKey: "Utwórz klucz" -_aboutMisskey: - about: "Calckey jest forkiem Misskey utworzonym przez ThatOneCalculator, rozwijanym +_aboutFirefish: + about: "Firefish jest forkiem Misskey utworzonym przez ThatOneCalculator, rozwijanym od 2022." contributors: "Główni twórcy" allContributors: "Wszyscy twórcy" source: "Kod źródłowy" - translation: "Tłumacz Calckey" - donate: "Przekaż darowiznę na Calckey" + translation: "Tłumacz Firefish" + donate: "Przekaż darowiznę na Firefish" morePatrons: "Naprawdę doceniam wsparcie ze strony wielu niewymienionych tu osób. Dziękuję! 🥰" patrons: "Wspierający" @@ -1004,10 +1004,10 @@ _nsfw: force: "Ukrywaj wszystkie media" _mfm: cheatSheet: "Ściąga MFM" - intro: "MFM jest językiem składniowym używanym przez m.in. Calckey, forki *key (w - tym Calckey), oraz Akkomę, który może być użyty w wielu miejscach. Tu znajdziesz + intro: "MFM jest językiem składniowym używanym przez m.in. Firefish, forki *key (w + tym Firefish), oraz Akkomę, który może być użyty w wielu miejscach. Tu znajdziesz listę wszystkich możliwych elementów składni MFM." - dummy: "Calckey rozszerza świat Fediwersum" + dummy: "Firefish rozszerza świat Fediwersum" mention: "Wspomnij" mentionDescription: "Używając znaku @ i nazwy użytkownika, możesz określić danego użytkownika." @@ -1224,7 +1224,7 @@ _time: hour: "godz." day: "dzień" _tutorial: - title: "Jak korzystać z Calckey" + title: "Jak korzystać z Firefish" step1_1: "Witamy!" step1_2: "Pozwól, że Cię skonfigurujemy. Będziesz działać w mgnieniu oka!" step2_1: "Najpierw, proszę wypełnij swój profil." @@ -1252,9 +1252,9 @@ _tutorial: step5_7: "Globalna {icon} oś czasu to miejsce, gdzie możesz zobaczyć posty z każdej innej połączonej instancji." step6_1: "Więc, czym to jest to miejsce?" - step6_2: "Cóż, nie dołączył*ś po prostu do Calckey. Dołączył*ś do portalu do Fediverse, + step6_2: "Cóż, nie dołączył*ś po prostu do Firefish. Dołączył*ś do portalu do Fediverse, połączonej sieci tysięcy serwerów, zwanych instancjami." - step6_3: "Każdy serwer działa w inny sposób, i nie wszystkie serwery używają Calckey. + step6_3: "Każdy serwer działa w inny sposób, i nie wszystkie serwery używają Firefish. Ten jednak używa! Jest to trochę skomplikowane, ale w krótkim czasie załapiesz o co chodzi." step6_4: "A teraz idź, odkrywaj i baw się dobrze!" @@ -1848,7 +1848,7 @@ moveAccountDescription: Ten proces jest nieodwracalny. Upewnij się, że utworzy w formacie @osoba@serwer.com moveFrom: Przejdź ze starego konta na obecne moveFromLabel: 'Konto które przenosisz:' -showUpdates: Pokaż pop-up po aktualizacji Calckey +showUpdates: Pokaż pop-up po aktualizacji Firefish swipeOnDesktop: Zezwól na przeciąganie w stylu mobilnym na desktopie moveFromDescription: To utworzy alias twojego starego konta, w celu umożliwienia migracji z tamtego konta na to. Zrób to ZANIM rozpoczniesz przenoszenie się z tamtego konta. @@ -1915,9 +1915,9 @@ objectStorageBaseUrlDesc: "URL stosowany jako odniesienie. Podaj URL twojego CDN albo proxy, jeśli używasz któregokolwiek.\nDla S3 użyj 'https://.s3.amazonaws.com', a dla GCS i jego odpowiedników użyj 'https://storage.googleapis.com/', itd." sendErrorReportsDescription: "Gdy ta opcja jest włączona, szczegółowe informacje o - błędach będą udostępnianie z Calckey gdy wystąpi problem, pomagając w ulepszaniu - Calckey.\nZawrze to informacje takie jak wersja twojego systemu operacyjnego, przeglądarki, - Twoja aktywność na Calckey itd." + błędach będą udostępnianie z Firefish gdy wystąpi problem, pomagając w ulepszaniu + Firefish.\nZawrze to informacje takie jak wersja twojego systemu operacyjnego, przeglądarki, + Twoja aktywność na Firefish itd." privateModeInfo: Gdy ta opcja jest włączona, tylko serwery z białej listy mogą federować się z twoim serwerem. Wszystkie posty będą ukryte publicznie. oneHour: Godzina @@ -1970,7 +1970,7 @@ caption: Auto opis splash: Splash screen updateAvailable: Może być dostępna aktualizacja! logoImageUrl: URL grafiki loga -showAdminUpdates: Wskaż, że jest dostępna nowa wersja Calckey (tylko dla adminów) +showAdminUpdates: Wskaż, że jest dostępna nowa wersja Firefish (tylko dla adminów) hiddenTags: Ukryte hashtagi userSaysSomethingReason: '{name} powiedział* {reason}' customKaTeXMacroDescription: 'Skonfiguruj makra, aby łatwo pisać wyrażenia matematyczne! @@ -2014,7 +2014,7 @@ silencedInstancesDescription: Wypisz nazwy hostów serwerów, które chcesz wyci cannotUploadBecauseExceedsFileSizeLimit: Ten plik nie mógł być przesłany, ponieważ jego wielkość przekracza dozwolony limit. sendModMail: Wyślij Powiadomienie Moderacyjne -searchPlaceholder: Szukaj Calckey +searchPlaceholder: Szukaj Firefish jumpToPrevious: Przejdź do poprzedniej sekcji listsDesc: Listy umożliwiają tworzenie osi czasu z określonymi użytkownikami. Dostęp do nich można uzyskać na stronie osi czasu. diff --git a/locales/pt-PT.yml b/locales/pt-PT.yml index 3e15beebb..4a39c150a 100644 --- a/locales/pt-PT.yml +++ b/locales/pt-PT.yml @@ -1,7 +1,7 @@ --- _lang_: "Português" headlineMisskey: "Uma rede ligada por notas" -introMisskey: "Bem-vindo! Calckey é um serviço de microblogue descentralizado de código aberto.\nCria \"notas\" e partilha o que te ocorre com todos à tua volta. 📡\nCom \"reações\" podes também expressar logo o que sentes às notas de todos. 👍\nExploremos um novo mundo! 🚀" +introMisskey: "Bem-vindo! Firefish é um serviço de microblogue descentralizado de código aberto.\nCria \"notas\" e partilha o que te ocorre com todos à tua volta. 📡\nCom \"reações\" podes também expressar logo o que sentes às notas de todos. 👍\nExploremos um novo mundo! 🚀" monthAndDay: "{day}/{month}" search: "Buscar" notifications: "Notificações" @@ -139,7 +139,7 @@ settingGuide: "Guia de configuração" cacheRemoteFiles: "Memória transitória de arquivos remotos" cacheRemoteFilesDescription: "Se você desabilitar essa configuração, os arquivos remotos não serão armazenados em memória transitória e serão vinculados diretamente. Economiza o armazenamento do servidor, mas não gera miniaturas, o que aumenta o tráfego." flagAsBot: "Marcar conta como robô" -flagAsBotDescription: "Se esta conta for operada por um programa, ative este sinalizador. Quando ativado, serve como um sinalizador para evitar o encadeamento de reações para outros programadores, e o manuseio do sistema do Calckey é adequado para ‘bots’." +flagAsBotDescription: "Se esta conta for operada por um programa, ative este sinalizador. Quando ativado, serve como um sinalizador para evitar o encadeamento de reações para outros programadores, e o manuseio do sistema do Firefish é adequado para ‘bots’." flagAsCat: "Marcar conta como gato" flagAsCatDescription: "Ative essa opção para marcar essa conta como gato." flagShowTimelineReplies: "Mostrar respostas na linha de tempo" @@ -198,7 +198,7 @@ noUsers: "Sem usuários" editProfile: "Editar Perfil" noteDeleteConfirm: "Deseja excluir esta nota?" pinLimitExceeded: "Não consigo mais fixar" -intro: "A instalação do Calckey está completa! Crie uma conta de administrador." +intro: "A instalação do Firefish está completa! Crie uma conta de administrador." done: "Concluído" processing: "Em Progresso" preview: "Pré-visualizar" @@ -376,7 +376,7 @@ exploreFediverse: "Explorar Fediverse" popularTags: "Tags populares" userList: "Listas" about: "Informações" -aboutMisskey: "Sobre Calckey" +aboutFirefish: "Sobre Firefish" administrator: "Administrador" token: "Símbolo" twoStepAuthentication: "Verificação em duas etapas" diff --git a/locales/pt_BR.yml b/locales/pt_BR.yml index f991be913..c26045e02 100644 --- a/locales/pt_BR.yml +++ b/locales/pt_BR.yml @@ -5,9 +5,9 @@ headlineMisskey: Uma plataforma de mídia social descentralizada e de código ab que é gratuita para sempre! 🚀 search: Pesquisar gotIt: Entendi! -introMisskey: Bem vinde! Calckey é uma plataforma de mídia social descentralizada +introMisskey: Bem vinde! Firefish é uma plataforma de mídia social descentralizada e de código aberto que é gratuita para sempre! 🚀 -searchPlaceholder: Pesquise no Calckey +searchPlaceholder: Pesquise no Firefish notifications: Notificações password: Senha forgotPassword: Esqueci a senha diff --git a/locales/ro-RO.yml b/locales/ro-RO.yml index ba51950e3..5a3aa4ef4 100644 --- a/locales/ro-RO.yml +++ b/locales/ro-RO.yml @@ -1,7 +1,7 @@ --- _lang_: "Română" headlineMisskey: "O rețea conectată prin note" -introMisskey: "Bine ai venit! Calckey este un serviciu de microblogging open source și decentralizat.\nCreează \"note\" cu care să îți poți împărți gândurile cu oricine din jurul tău. 📡\nCu \"reacții\" îți poți expirma rapid părerea despre notele oricui. 👍\nHai să explorăm o lume nouă! 🚀" +introMisskey: "Bine ai venit! Firefish este un serviciu de microblogging open source și decentralizat.\nCreează \"note\" cu care să îți poți împărți gândurile cu oricine din jurul tău. 📡\nCu \"reacții\" îți poți expirma rapid părerea despre notele oricui. 👍\nHai să explorăm o lume nouă! 🚀" monthAndDay: "{day}/{month}" search: "Caută" notifications: "Notificări" @@ -139,7 +139,7 @@ settingGuide: "Setări recomandate" cacheRemoteFiles: "Ține fișierele externe in cache" cacheRemoteFilesDescription: "Când această setare este dezactivată, fișierele externe sunt încărcate direct din instanța externă. Dezactivarea va scădea utilizarea spațiului de stocare, dar va crește traficul, deoarece thumbnail-urile nu vor fi generate." flagAsBot: "Marchează acest cont ca bot" -flagAsBotDescription: "Activează această opțiune dacă acest cont este controlat de un program. Daca e activată, aceasta va juca rolul unui indicator pentru dezvoltatori pentru a preveni interacțiunea în lanțuri infinite cu ceilalți boți și ajustează sistemele interne al Calckey pentru a trata acest cont drept un bot." +flagAsBotDescription: "Activează această opțiune dacă acest cont este controlat de un program. Daca e activată, aceasta va juca rolul unui indicator pentru dezvoltatori pentru a preveni interacțiunea în lanțuri infinite cu ceilalți boți și ajustează sistemele interne al Firefish pentru a trata acest cont drept un bot." flagAsCat: "Marchează acest cont ca pisică" flagAsCatDescription: "Activează această opțiune dacă acest cont este o pisică." flagShowTimelineReplies: "Arată răspunsurile în cronologie" @@ -198,7 +198,7 @@ noUsers: "Niciun utilizator" editProfile: "Editează profilul" noteDeleteConfirm: "Ești sigur că vrei să ștergi această notă?" pinLimitExceeded: "Nu poți mai fixa mai multe note" -intro: "Calckey s-a instalat! Te rog crează un utilizator admin." +intro: "Firefish s-a instalat! Te rog crează un utilizator admin." done: "Gata" processing: "Se procesează" preview: "Previzualizare" @@ -376,7 +376,7 @@ exploreFediverse: "Explorează Fediverse-ul" popularTags: "Taguri populare" userList: "Liste" about: "Despre" -aboutMisskey: "Despre Calckey" +aboutFirefish: "Despre Firefish" administrator: "Administrator" token: "Token" twoStepAuthentication: "Autentificare în doi pași" @@ -521,7 +521,7 @@ sort: "Sortează" ascendingOrder: "Crescător" descendingOrder: "Descrescător" scratchpad: "Scratchpad" -scratchpadDescription: "Scratchpad-ul oferă un mediu de experimentare în AiScript. Poți scrie, executa și verifica rezultatele acestuia interacționând cu Calckey în el." +scratchpadDescription: "Scratchpad-ul oferă un mediu de experimentare în AiScript. Poți scrie, executa și verifica rezultatele acestuia interacționând cu Firefish în el." output: "Ieșire" script: "Script" disablePagesScript: "Dezactivează AiScript în Pagini" diff --git a/locales/ru-RU.yml b/locales/ru-RU.yml index 04155f64f..f6f5a3ca0 100644 --- a/locales/ru-RU.yml +++ b/locales/ru-RU.yml @@ -1,6 +1,6 @@ _lang_: "Русский" headlineMisskey: "Сеть, сплетённая из заметок" -introMisskey: "Calckey - это децентрализованная платформа социальных сетей с открытым +introMisskey: "Firefish - это децентрализованная платформа социальных сетей с открытым исходным кодом, которая свободна навсегда! 🚀" monthAndDay: "{day}.{month}" search: "Поиск" @@ -148,7 +148,7 @@ cacheRemoteFilesDescription: "Когда эта настройка отключ так как не будут создаваться эскизы." flagAsBot: "Аккаунт бота" flagAsBotDescription: "Включите, если этот аккаунт управляется программой. Это позволит - системе Calckey учитывать это, а также поможет разработчикам других ботов предотвратить + системе Firefish учитывать это, а также поможет разработчикам других ботов предотвратить бесконечные циклы взаимодействия." flagAsCat: "Аккаунт кота" flagAsCatDescription: "Вы получите кошачьи ушки и будете говорить как кот!" @@ -214,7 +214,7 @@ noUsers: "Нет ни одного пользователя" editProfile: "Редактировать профиль" noteDeleteConfirm: "Вы хотите удалить этот пост?" pinLimitExceeded: "Нельзя закрепить ещё больше постов" -intro: "Установка Calckey завершена! А теперь создайте учетную запись администратора." +intro: "Установка Firefish завершена! А теперь создайте учетную запись администратора." done: "Готово" processing: "Обработка" preview: "Предпросмотр" @@ -401,7 +401,7 @@ exploreFediverse: "Исследуйте Fediverse" popularTags: "Популярные теги" userList: "Списки" about: "Описание" -aboutMisskey: "О Calckey" +aboutFirefish: "О Firefish" administrator: "Администратор" token: "Токен" twoStepAuthentication: "Двухфакторная аутентификация" @@ -560,7 +560,7 @@ ascendingOrder: "по возрастанию" descendingOrder: "По убыванию" scratchpad: "Когтеточка" scratchpadDescription: "«Когтеточка» — это место для опытов с AiScript. Здесь можно - писать программы, взаимодействующие с Calckey, запускать и смотреть что из этого + писать программы, взаимодействующие с Firefish, запускать и смотреть что из этого получается." output: "Выходы" script: "Скрипт" @@ -694,7 +694,7 @@ createNew: "Новый документ" optional: "Необязательно" createNewClip: "Новая подборка" public: "Общедоступно" -i18nInfo: "Calckey переводят на разные языки добровольцы со всего света. Ваша помощь +i18nInfo: "Firefish переводят на разные языки добровольцы со всего света. Ваша помощь тоже пригодится здесь: {link}." manageAccessTokens: "Управление токенами доступа" accountInfo: "Сведения об учётной записи" @@ -752,7 +752,7 @@ nUsers: "Пользователей: {n}" nNotes: "Постов: {n}" sendErrorReports: "Посылать отчёты о сбоях" sendErrorReportsDescription: "Если включено, когда возникнет какая-нибудь техническая - проблема, подробные сведения об этом будут отправлены разработчикам Calckey.\n Это + проблема, подробные сведения об этом будут отправлены разработчикам Firefish.\n Это очень помогает делать программу лучше. В отчёты попадают тип и версия ОС, браузера, журнал действий (что привело к сбою) и тому подобное." myTheme: "Личная тема" @@ -848,7 +848,7 @@ hashtags: "Хэштег" troubleshooting: "Разрешение проблем" useBlurEffect: "Размытие в интерфейсе" learnMore: "Подробнее" -misskeyUpdated: "Calckey обновился!" +misskeyUpdated: "Firefish обновился!" whatIsNew: "Показать изменения" translate: "Перевод" translatedFrom: "Перевод. Язык оригинала — {x}" @@ -983,13 +983,13 @@ _registry: domain: "Домен" createKey: "Новый ключ" _aboutMisskey: - about: "Calckey это форк Calckey, сделанный ThatOneCalculator, разработка которого + about: "Firefish это форк Firefish, сделанный ThatOneCalculator, разработка которого началась с 2022." contributors: "Основные соавторы" allContributors: "Все соавторы" source: "Исходный код" - translation: "Перевод Calckey" - donate: "Пожертвование на Calckey" + translation: "Перевод Firefish" + donate: "Пожертвование на Firefish" morePatrons: "Большое спасибо и многим другим, кто принял участие в этом проекте! 🥰" patrons: "Материальная поддержка" @@ -999,10 +999,10 @@ _nsfw: force: "Скрывать вообще все файлы" _mfm: cheatSheet: "Подсказка по разметке MFM" - intro: "MFM — язык оформления текста,используемый в Calckey, Calckey, Akkoma и готов + intro: "MFM — язык оформления текста,используемый в Firefish, Firefish, Akkoma и готов для применения во многих местах. На этой странице собраны и кратко изложены способы его использовать." - dummy: "Calckey расширяет границы Федиверса" + dummy: "Firefish расширяет границы Федиверса" mention: "Упоминание" mentionDescription: "При помощи знака «собака» перед именем можно упомянуть какого-нибудь пользователя." @@ -1211,7 +1211,7 @@ _time: hour: "ч" day: "сут" _tutorial: - title: "Как использовать Calckey" + title: "Как использовать Firefish" step1_1: "Добро пожаловать!" step1_2: "Давайте настроим вас. Вы будете работать в кратчайшие сроки!" step2_1: "Сначала, пожалуйста, заполните свой профиль." @@ -1241,7 +1241,7 @@ _tutorial: step6_2: "Ну, вы не просто присоединились к Кальки. Вы присоединились к порталу в Fediverse, взаимосвязанной сети из тысяч серверов, называемых \"инстансами\"\ ." - step6_3: "Каждый сервер работает по-своему, и не на всех серверах работает Calckey. + step6_3: "Каждый сервер работает по-своему, и не на всех серверах работает Firefish. Но этот работает! Это немного сложно, но вы быстро разберетесь." step6_4: "Теперь идите, изучайте и развлекайтесь!" _2fa: @@ -1882,7 +1882,7 @@ customSplashIconsDescription: URL-адреса для пользовательс загружает / перезагружает страницу. Пожалуйста, убедитесь, что изображения находятся на статическом URL-адресе, предпочтительно все с размером 192x192. logoImageUrl: URL изображения логотипа -showAdminUpdates: Указать, что доступна новая версия Calckey (только для администратора) +showAdminUpdates: Указать, что доступна новая версия Firefish (только для администратора) replayTutorial: Перезапустить туториал migration: Миграция showLocalPosts: 'Показать локальные посты в:' @@ -1902,7 +1902,7 @@ adminCustomCssWarn: Этот параметр следует использов знаете, что он делает. Ввод неправильных значений может привести к тому, что ВСЕ клиенты перестанут нормально функционировать. Пожалуйста, убедитесь, что ваш CSS работает должным образом, протестировав его в настройках вашего пользователя. -showUpdates: Показывать всплывающее окно при обновлении Calckey +showUpdates: Показывать всплывающее окно при обновлении Firefish recommendedInstances: Рекомендованные инстансы defaultReaction: Эмодзи реакция по умолчанию для выходящих и исходящих постов license: Лицензия @@ -1991,7 +1991,7 @@ editNote: Редактировать заметку edited: 'Редактировано в {date} {time}' deleted: Удалённое removeReaction: Удалить вашу реакцию -searchPlaceholder: Искать в Calckey +searchPlaceholder: Искать в Firefish jumpToPrevious: Перейти к предыдущему listsDesc: Списки позволяют вам создавать ленты с постами указанных пользователей. Их можно найти на странице «Лента». diff --git a/locales/sk-SK.yml b/locales/sk-SK.yml index 046e67aec..287606c9f 100644 --- a/locales/sk-SK.yml +++ b/locales/sk-SK.yml @@ -1,7 +1,7 @@ --- _lang_: "Slovenčina" headlineMisskey: "Sieť prepojená poznámkami" -introMisskey: "Vitajte! Calckey je otvorená a decentralizovaná mikroblogovacia služba.\n\"Poznámkami\" môžete zdieľať svoje myšlienky so všetkými okolo. 📡\nPomocou \"reakcií\" môžete rýchlo vyjadri svoje pocity o každého poznámkach. 👍\nPoďte objavovať svet! 🚀" +introMisskey: "Vitajte! Firefish je otvorená a decentralizovaná mikroblogovacia služba.\n\"Poznámkami\" môžete zdieľať svoje myšlienky so všetkými okolo. 📡\nPomocou \"reakcií\" môžete rýchlo vyjadri svoje pocity o každého poznámkach. 👍\nPoďte objavovať svet! 🚀" monthAndDay: "{day}. {month}." search: "Hľadať" notifications: "Oznámenia" @@ -139,7 +139,7 @@ settingGuide: "Odporúčané nastavenia" cacheRemoteFiles: "Cachovanie vzdialených súborov" cacheRemoteFilesDescription: "Zakázanie tohoto nastavenia spôsobí, že vzdialené súbory budú odkazované priamo, namiesto ukladania do cache. Ušetrí sa tak miesto na serveri, ale zvýši sa dátový tok, pretože sa negenerujú miniatúry." flagAsBot: "Tento účet je bot" -flagAsBotDescription: "Ak je tento účet ovládaný programom, zaškrtnite túto voľbu. Ostatní uvidia, že je to bot a zabráni nekonečným interakciám s ďalšími botmi a upraví interné systémy Calckey, aby ho považoval za bota." +flagAsBotDescription: "Ak je tento účet ovládaný programom, zaškrtnite túto voľbu. Ostatní uvidia, že je to bot a zabráni nekonečným interakciám s ďalšími botmi a upraví interné systémy Firefish, aby ho považoval za bota." flagAsCat: "Tento účet je mačka" flagAsCatDescription: "Zvoľte túto voľbu, aby bol tento účet označený ako mačka." flagShowTimelineReplies: "Zobraziť odpovede na poznámky v časovej osi" @@ -198,7 +198,7 @@ noUsers: "Žiadni používatelia" editProfile: "Upraviť profil" noteDeleteConfirm: "Naozaj chcete odstrániť túto poznámku?" pinLimitExceeded: "Ďalšie poznámky už nemôžete pripnúť." -intro: "Inštalácia Calckey je dokončená! Prosím vytvorte administrátora." +intro: "Inštalácia Firefish je dokončená! Prosím vytvorte administrátora." done: "Hotovo" processing: "Pracujem..." preview: "Náhľad" @@ -377,7 +377,7 @@ exploreFediverse: "Objavovať Fediverzum" popularTags: "Populárne značky" userList: "Zoznamy" about: "Informácie" -aboutMisskey: "O Calckey" +aboutFirefish: "O Firefish" administrator: "Administrátor" token: "Token" twoStepAuthentication: "Dvojfaktorová autentifikácia" @@ -523,7 +523,7 @@ sort: "Zoradiť" ascendingOrder: "Vzostupne" descendingOrder: "Zostupne" scratchpad: "Zápisník" -scratchpadDescription: "Zápisník poskytuje prostredia pre experimenty s AiScriptom. Môžete písať, spúšťať a skúšať vysledky pri interakcii s Calckey." +scratchpadDescription: "Zápisník poskytuje prostredia pre experimenty s AiScriptom. Môžete písať, spúšťať a skúšať vysledky pri interakcii s Firefish." output: "Výstup" script: "Skript" disablePagesScript: "Vypnúť AiScript na stránkach" @@ -647,7 +647,7 @@ createNewClip: "Vytvoriť nový klip" unclip: "Odopnúť" confirmToUnclipAlreadyClippedNote: "Táto poznámka je už pripnutá ako \"{name}\". Naozaj ju chcete odopnúť?" public: "Verejné" -i18nInfo: "Calckey je prekladaný do rôznych jazykov dobrovoľníkmi. Pomôcť môžete na {link}." +i18nInfo: "Firefish je prekladaný do rôznych jazykov dobrovoľníkmi. Pomôcť môžete na {link}." manageAccessTokens: "Spravovať prístupové tokeny" accountInfo: "Informácie o účte" notesCount: "Počet poznámok" @@ -698,7 +698,7 @@ onlineUsersCount: "{n} používateľov je online" nUsers: "{n} používateľov" nNotes: "{n} poznámok" sendErrorReports: "Poslať nahlásenie chyby" -sendErrorReportsDescription: "Keď je zapnuté, v prípade problému sa odošlú podrobné informácie o chybe do Calckey. Pomôžete tak zvýšiť kvalitu Calckey.\nTieto informácie zahŕňajú verziu vášho OS, použitý prehliadač, históriu aktivít, atď." +sendErrorReportsDescription: "Keď je zapnuté, v prípade problému sa odošlú podrobné informácie o chybe do Firefish. Pomôžete tak zvýšiť kvalitu Firefish.\nTieto informácie zahŕňajú verziu vášho OS, použitý prehliadač, históriu aktivít, atď." myTheme: "Moja téma" backgroundColor: "Pozadie" accentColor: "Akcent" @@ -789,7 +789,7 @@ hashtags: "Hashtagy" troubleshooting: "Riešenie problémov" useBlurEffect: "Používať efekty rozmazania v UI" learnMore: "Zistiť viac" -misskeyUpdated: "Calckey sa aktualizoval!" +misskeyUpdated: "Firefish sa aktualizoval!" whatIsNew: "Čo je nové?" translate: "Preložiť" translatedFrom: "Preložené z {x}" @@ -960,13 +960,13 @@ _registry: keys: "Kľúče" domain: "Doména" createKey: "Vytvoriť kľúč" -_aboutMisskey: +_aboutFirefish: about: "Misskey je open-source softvér, ktorý vyvíja syuilo od 2014." contributors: "Hlavní prispievatelia" allContributors: "Všetci prispievatelia" source: "Zdrojový kód" - translation: "Preložiť Calckey" - donate: "Podporiť Calckey" + translation: "Preložiť Firefish" + donate: "Podporiť Firefish" morePatrons: "Takisto oceňujeme podporu mnoých ďalších, ktorí tu nie sú uvedení. Ďakujeme! 🥰" patrons: "Prispievatelia" _nsfw: @@ -975,8 +975,8 @@ _nsfw: force: "Skryť všetky médiá" _mfm: cheatSheet: "MFM Cheatsheet" - intro: "MFM je Calckey exkluzívny značkovací jazyk, ktorý sa dá používať na viacerých miestach. Tu môžete vidieť zoznam všetkej dostupnej MFM syntaxe." - dummy: "Calckey rozširuje svet Fediverza" + intro: "MFM je Firefish exkluzívny značkovací jazyk, ktorý sa dá používať na viacerých miestach. Tu môžete vidieť zoznam všetkej dostupnej MFM syntaxe." + dummy: "Firefish rozširuje svet Fediverza" mention: "Zmienka" mentionDescription: "Používateľa spomeniete použítím zavináča a mena používateľa" hashtag: "Hashtag" @@ -1174,7 +1174,7 @@ _time: hour: "hod" day: "dní" _tutorial: - title: "How to use Calckey" + title: "How to use Firefish" step1_1: "Welcome!" step1_2: "Let's get you set up. You'll be up and running in no time!" step2_1: "First, please fill out your profile." @@ -1191,8 +1191,8 @@ _tutorial: step5_6: "The Social {icon} timeline is where you can see posts from friends of your followers." step5_7: "The Global {icon} timeline is where you can see posts from every other connected instance." step6_1: "So, what is this place?" - step6_2: "Well, you didn't just join Calckey. You joined a portal to the Fediverse, an interconnected network of thousands of servers, called \"instances\"." - step6_3: "Each server works in different ways, and not all servers run Calckey. This one does though! It's a bit complicated, but you'll get the hang of it in no time." + step6_2: "Well, you didn't just join Firefish. You joined a portal to the Fediverse, an interconnected network of thousands of servers, called \"instances\"." + step6_3: "Each server works in different ways, and not all servers run Firefish. This one does though! It's a bit complicated, but you'll get the hang of it in no time." step6_4: "Now go, explore, and have fun!" _2fa: alreadyRegistered: "Už ste zaregistrovali 2-faktorové autentifikačné zariadenie." diff --git a/locales/sv-SE.yml b/locales/sv-SE.yml index 6523ce068..dea185329 100644 --- a/locales/sv-SE.yml +++ b/locales/sv-SE.yml @@ -1,7 +1,7 @@ --- _lang_: "Svenska" headlineMisskey: "Ett nätverk kopplat av noter" -introMisskey: "Välkommen! Calckey är en öppen och decentraliserad mikrobloggningstjänst.\nSkapa en \"not\" och dela dina tankar med alla runtomkring dig. 📡\nMed \"reaktioner\" kan du snabbt uttrycka dina känslor kring andras noter.👍\nLåt oss utforska en nya värld!🚀" +introMisskey: "Välkommen! Firefish är en öppen och decentraliserad mikrobloggningstjänst.\nSkapa en \"not\" och dela dina tankar med alla runtomkring dig. 📡\nMed \"reaktioner\" kan du snabbt uttrycka dina känslor kring andras noter.👍\nLåt oss utforska en nya värld!🚀" monthAndDay: "{day}/{month}" search: "Sök" notifications: "Notifikationer" @@ -197,7 +197,7 @@ noUsers: "Det finns inga användare" editProfile: "Redigera profil" noteDeleteConfirm: "Är du säker på att du vill ta bort denna not?" pinLimitExceeded: "Du kan inte fästa fler noter" -intro: "Calckey har installerats! Vänligen skapa en adminanvändare." +intro: "Firefish har installerats! Vänligen skapa en adminanvändare." done: "Klar" processing: "Bearbetar..." preview: "Förhandsvisning" diff --git a/locales/th-TH.yml b/locales/th-TH.yml index 9666737ee..35ad64164 100644 --- a/locales/th-TH.yml +++ b/locales/th-TH.yml @@ -1,7 +1,7 @@ --- _lang_: "ภาษาไทย" headlineMisskey: "เชื่อมต่อเครือข่ายโดยโน้ต" -introMisskey: "ยินดีต้อนรับจ้าาา! Calckey เป็นบริการไมโครบล็อกโอเพ่นซอร์ส แบบการกระจายอำนาจ\nสร้าง \"โน้ต\" เพื่อแบ่งปันความคิดของคุณกับทุกคนรอบตัวคุณกันเถอะ 📡\nด้วยการ \"รีแอคชั่นผู้คน\" คุณยังสามารถแสดงความรู้สึกของคุณเกี่ยวกับบันทึกของทุกคนได้อย่างรวดเร็ว 👍\n\nแล้วมาท่องสำรวจโลกใบใหม่กันเถอะ! 🚀" +introMisskey: "ยินดีต้อนรับจ้าาา! Firefish เป็นบริการไมโครบล็อกโอเพ่นซอร์ส แบบการกระจายอำนาจ\nสร้าง \"โน้ต\" เพื่อแบ่งปันความคิดของคุณกับทุกคนรอบตัวคุณกันเถอะ 📡\nด้วยการ \"รีแอคชั่นผู้คน\" คุณยังสามารถแสดงความรู้สึกของคุณเกี่ยวกับบันทึกของทุกคนได้อย่างรวดเร็ว 👍\n\nแล้วมาท่องสำรวจโลกใบใหม่กันเถอะ! 🚀" monthAndDay: "{เดือน}/{วัน}" search: "ค้นหา" notifications: "การเเจ้งเตือน" @@ -139,7 +139,7 @@ settingGuide: "การตั้งค่าที่แนะนำ" cacheRemoteFiles: "แคชไฟล์ระยะไกล" cacheRemoteFilesDescription: "เมื่อปิดใช้งานการตั้งค่านี้ ไฟล์ระยะไกลนั้นจะถูกโหลดโดยตรงจากอินสแตนซ์ระยะไกล แต่กรณีการปิดใช้งานนี้จะช่วยลดปริมาณการใช้พื้นที่จัดเก็บข้อมูล แต่เพิ่มปริมาณการใช้งาน เพราะเนื่องจากจะไม่มีการสร้างภาพขนาดย่อ" flagAsBot: "ทำเครื่องหมายบอกว่าบัญชีนี้เป็นบอท" -flagAsBotDescription: "การเปิดใช้งานตัวเลือกนี้หากบัญชีนี้ถูกควบคุมโดยนักเขียนโปรแกรม หรือ ถ้าหากเปิดใช้งาน มันจะทำหน้าที่เป็นแฟล็กสำหรับนักพัฒนารายอื่นๆ และเพื่อป้องกันการโต้ตอบแบบไม่มีที่สิ้นสุดกับบอทตัวอื่นๆ และยังสามารถปรับเปลี่ยนระบบภายในของ Calckey เพื่อปฏิบัติต่อบัญชีนี้เป็นบอท" +flagAsBotDescription: "การเปิดใช้งานตัวเลือกนี้หากบัญชีนี้ถูกควบคุมโดยนักเขียนโปรแกรม หรือ ถ้าหากเปิดใช้งาน มันจะทำหน้าที่เป็นแฟล็กสำหรับนักพัฒนารายอื่นๆ และเพื่อป้องกันการโต้ตอบแบบไม่มีที่สิ้นสุดกับบอทตัวอื่นๆ และยังสามารถปรับเปลี่ยนระบบภายในของ Firefish เพื่อปฏิบัติต่อบัญชีนี้เป็นบอท" flagAsCat: "ทำเครื่องหมายบอกว่าบัญชีนี้เป็นแมว" flagAsCatDescription: "การเปิดใช้งานตัวเลือกนี้เพื่อทำเครื่องหมายบอกว่าบัญชีนี้เป็นแมว" flagShowTimelineReplies: "แสดงตอบกลับ ในไทม์ไลน์" @@ -198,7 +198,7 @@ noUsers: "ไม่พบผู้ใช้งาน" editProfile: "แก้ไขโปรไฟล์" noteDeleteConfirm: "นายแน่ใจแล้วหรอว่าต้องการลบโน้ตนี้นะ?" pinLimitExceeded: "คุณไม่สามารถปักหมุดโน้ตเพิ่มเติมใดๆได้อีก" -intro: "การติดตั้ง Calckey เสร็จสิ้นแล้วนะ! โปรดสร้างผู้ใช้งานที่เป็นผู้ดูแลระบบ" +intro: "การติดตั้ง Firefish เสร็จสิ้นแล้วนะ! โปรดสร้างผู้ใช้งานที่เป็นผู้ดูแลระบบ" done: "เสร็จสิ้น" processing: "กำลังประมวลผล..." preview: "แสดงตัวอย่าง" @@ -377,7 +377,7 @@ exploreFediverse: "สำรวจเฟดดิเวิร์ส" popularTags: "แท็กยอดนิยม" userList: "รายการ" about: "เกี่ยวกับ" -aboutMisskey: "เกี่ยวกับ Calckey" +aboutFirefish: "เกี่ยวกับ Firefish" administrator: "ผู้ดูแลระบบ" token: "โทเค็น" twoStepAuthentication: "ยืนยันตัวตน 2 ชั้น" @@ -523,7 +523,7 @@ sort: "เรียงลำดับ" ascendingOrder: "เรียงจากน้อยไปมาก" descendingOrder: "เรียงจากมากไปน้อย" scratchpad: "กระดานทดลอง" -scratchpadDescription: "Scratchpad เป็นการจัดเตรียมสภาพแวดล้อมสำหรับการทดลอง AiScript แต่คุณสามารถเขียน ดำเนินการ และตรวจสอบผลลัพธ์ของการโต้ตอบกับ Calckey มันได้ด้วยนะ" +scratchpadDescription: "Scratchpad เป็นการจัดเตรียมสภาพแวดล้อมสำหรับการทดลอง AiScript แต่คุณสามารถเขียน ดำเนินการ และตรวจสอบผลลัพธ์ของการโต้ตอบกับ Firefish มันได้ด้วยนะ" output: "เอาท์พุต" script: "สคริปต์" disablePagesScript: "ปิดการใช้งาน AiScript บนเพจ" @@ -648,7 +648,7 @@ createNewClip: "สร้างคลิปใหม่" unclip: "ลบคลิป" confirmToUnclipAlreadyClippedNote: "โน้ตนี้เป็นส่วนหนึ่งของคลิป \"{name}\" แล้ว คุณต้องการลบออกจากคลิปนี้แทนอย่างงั้นหรอ?" public: "สาธารณะ" -i18nInfo: "Calckey กำลังได้รับการแปลเป็นภาษาต่างๆ โดยอาสาสมัคร คุณสามารถช่วยเหลือได้ที่ {link}" +i18nInfo: "Firefish กำลังได้รับการแปลเป็นภาษาต่างๆ โดยอาสาสมัคร คุณสามารถช่วยเหลือได้ที่ {link}" manageAccessTokens: "การจัดการโทเค็นการเข้าถึง" accountInfo: "ข้อมูลบัญชี" notesCount: "จำนวนของโน้ต" @@ -699,7 +699,7 @@ onlineUsersCount: "{n} ผู้ใช้คนนี้กำลังออน nUsers: "{n} ผู้ใช้งาน" nNotes: "{n} โน้ต" sendErrorReports: "ส่งรายงานว่าข้อผิดพลาด" -sendErrorReportsDescription: "เมื่อเปิดใช้งาน ข้อมูลข้อผิดพลาดโดยรายละเอียดนั้นจะถูกแชร์ให้กับ Calckey เมื่อเกิดปัญหา ซึ่งช่วยปรับปรุงคุณภาพของ Calckey\nซึ่งจะรวมถึงข้อมูล เช่น เวอร์ชั่นของระบบปฏิบัติการ เบราว์เซอร์ที่คุณใช้ กิจกรรมของคุณใน Calckey เป็นต้น" +sendErrorReportsDescription: "เมื่อเปิดใช้งาน ข้อมูลข้อผิดพลาดโดยรายละเอียดนั้นจะถูกแชร์ให้กับ Firefish เมื่อเกิดปัญหา ซึ่งช่วยปรับปรุงคุณภาพของ Firefish\nซึ่งจะรวมถึงข้อมูล เช่น เวอร์ชั่นของระบบปฏิบัติการ เบราว์เซอร์ที่คุณใช้ กิจกรรมของคุณใน Firefish เป็นต้น" myTheme: "ธีมของฉัน" backgroundColor: "ภาพพื้นหลัง" accentColor: "รูปแบบสี" @@ -790,7 +790,7 @@ hashtags: "แฮชแท็ก" troubleshooting: "แก้ปัญหา" useBlurEffect: "ใช้เอฟเฟกต์เบลอใน UI" learnMore: "แสดงให้ดูหน่อย" -misskeyUpdated: "Calckey ได้รับการอัปเดตแล้ว!" +misskeyUpdated: "Firefish ได้รับการอัปเดตแล้ว!" whatIsNew: "แสดงการเปลี่ยนแปลง" translate: "แปลภาษา" translatedFrom: "แปลมาจาก {x}" @@ -965,13 +965,13 @@ _registry: keys: "คีย์" domain: "โดเมน" createKey: "สร้างคีย์" -_aboutMisskey: +_aboutFirefish: about: "Misskey เป็นซอฟต์แวร์โอเพ่นซอร์สที่ถูกพัฒนาโดย Syuilo ตั้งแต่ปี 2014" contributors: "ผู้สนับสนุนหลัก" allContributors: "ผู้มีส่วนร่วมทั้งหมด" source: "ซอร์สโค้ด" - translation: "รับแปลภาษา Calckey" - donate: "บริจาคให้กับ Calckey" + translation: "รับแปลภาษา Firefish" + donate: "บริจาคให้กับ Firefish" morePatrons: "เราขอขอบคุณสำหรับความช่วยเหลือจากผู้ช่วยอื่นๆ ที่ไม่ได้ระบุไว้ที่นี่นะ ขอขอบคุณ! 🥰" patrons: "สมาชิกพันธมิตร" _nsfw: @@ -980,8 +980,8 @@ _nsfw: force: "ซ่อนสื่อทั้งหมด" _mfm: cheatSheet: "โค้ด MFM Cheat Sheet" - intro: "MFM เป็นภาษามาร์กอัปพิเศษเฉพาะของ Calckey ที่สามารถใช้ได้ในหลายที่ คุณยังสามารถดูรายการไวยากรณ์ MFM ที่มีอยู่ทั้งหมดได้ที่นี่นะ" - dummy: "Calckey ขยายโลกของ Fediverse" + intro: "MFM เป็นภาษามาร์กอัปพิเศษเฉพาะของ Firefish ที่สามารถใช้ได้ในหลายที่ คุณยังสามารถดูรายการไวยากรณ์ MFM ที่มีอยู่ทั้งหมดได้ที่นี่นะ" + dummy: "Firefish ขยายโลกของ Fediverse" mention: "กล่าวถึง" mentionDescription: "คุณสามารถระบุผู้ใช้โดยใช้ At-Symbol และชื่อผู้ใช้ได้นะ" hashtag: "แฮชแท็ก" diff --git a/locales/tr-TR.yml b/locales/tr-TR.yml index f73d693a8..17df463ad 100644 --- a/locales/tr-TR.yml +++ b/locales/tr-TR.yml @@ -1,5 +1,5 @@ _lang_: "Türkçe" -introMisskey: "Hoş geldin! Calckey, sonsuza kadar ücretsiz olan, açık kaynaklı, merkezi +introMisskey: "Hoş geldin! Firefish, sonsuza kadar ücretsiz olan, açık kaynaklı, merkezi olmayan bir sosyal medya platformudur! 🚀" monthAndDay: "{month}Ay {day}Gün" search: "Arama" @@ -54,7 +54,7 @@ _mfm: play: MFM'i çal stop: MFM'i durdur cheatSheet: MFM Kopya Kağıdı - intro: MFM, Misskey, Calckey, Akkoma ve daha pek çok yerde kullanılabilen bir biçimlendirme + intro: MFM, Misskey, Firefish, Akkoma ve daha pek çok yerde kullanılabilen bir biçimlendirme dilidir. Burada mevcut tüm MFM sözdiziminin bir listesini görüntüleyebilirsiniz. link: Link boldDescription: Harfleri kalınlaştırarak vurgular. @@ -81,7 +81,7 @@ _mfm: mentionDescription: Bir et-sembolü (@) ve bir kullanıcı adı kullanarak bir kullanıcı belirleyebilirsiniz. hashtag: Etiket - dummy: Calckey, Fediverse dünyasını genişletiyor + dummy: Firefish, Fediverse dünyasını genişletiyor hashtagDescription: Sayı işareti ve metin kullanarak bir etiket belirtebilirsiniz. url: URL urlDescription: URL'ler görüntülenebilir. @@ -220,7 +220,7 @@ _deck: introduction: Sütunları özgürce düzenleyerek sizin için mükemmel arayüzü oluşturun! widgetsIntroduction: Lütfen sütun menüsünde "Araç'ları düzenle"yi seçin ve bir widget ekleyin. -searchPlaceholder: Calckey'de Ara +searchPlaceholder: Firefish'de Ara reply: Yanıtla jumpToPrevious: Öncekini görüntüle deleted: Silindi @@ -260,7 +260,7 @@ blockedInstancesDescription: Engellemek istediğiniz sunucuların ana bilgisayar listeleyin. Listelenen sunucular artık bu sunucularla iletişim kuramayacak. blockedUsers: Engellenmiş kullanıcılar editProfile: Profilini düzenle -intro: Calckey'in indirilmesi tamamlandı! Lütfen yönetici hesap oluşturun. +intro: Firefish'in indirilmesi tamamlandı! Lütfen yönetici hesap oluşturun. instanceUsers: Sunucunun kullanıcıları changePassword: Şifreyi değiştir security: Güvenlik @@ -700,7 +700,7 @@ invalidValue: Geçersiz değer. instanceSecurity: Sunucu Güvenliği searchResult: Arama sonuçları useBlurEffect: Kullanıcı arayüzünde bulanıklaştırma efektleri kullanın -misskeyUpdated: Calckey güncellendi! +misskeyUpdated: Firefish güncellendi! lastCommunication: Son iletişim itsOn: Etkinleştirilmiş emailRequiredForSignup: Kayıt olmak için mail gerekiyor @@ -829,9 +829,9 @@ low: Düşük seperateRenoteQuote: Ayrı destek ve fiyat teklifi düğmeleri sent: Gönderildi customMOTD: Özel MOTD -showUpdates: Calckey güncellendiğinde bir açılır pencere göster +showUpdates: Firefish güncellendiğinde bir açılır pencere göster logoImageUrl: Logo resim URL'si -showAdminUpdates: Yeni bir Calckey sürümünün mevcut olduğunu belirtin (yalnızca yönetici) +showAdminUpdates: Yeni bir Firefish sürümünün mevcut olduğunu belirtin (yalnızca yönetici) newer: asla older: daha eski exportRequested: Bir dışarı aktarma talebinde bulundunuz. Bu biraz zaman alabilir. @@ -896,7 +896,7 @@ recaptchaSecretKey: Secret key avoidMultiCaptchaConfirm: Birden fazla Captcha sistemi kullanmak aralarında etkileşime neden olabilir. Şu anda etkin olan diğer Captcha sistemlerini devre dışı bırakmak ister misiniz? Etkin kalmalarını istiyorsanız, iptal düğmesine basın. -aboutMisskey: Calckey Hakkında +aboutFirefish: Firefish Hakkında popularUsers: Popüler kullanıcılar notFoundDescription: Bu URL'ye karşılık gelen sayfa bulunamadı. reduceUiAnimation: Arayüz animasyonlarını azalt @@ -1096,7 +1096,7 @@ instanceTicker: Göndeirlerdeki sunucu bilgisi waitingFor: '{x} bekleniyor' random: Rastgele public: Herkese açık -i18nInfo: Calckey, gönüllüler tarafından çeşitli dillere çevriliyor. {link} adresinden +i18nInfo: Firefish, gönüllüler tarafından çeşitli dillere çevriliyor. {link} adresinden yardımcı olabilirsiniz. disableShowingAnimatedImages: Animasyonlu görüntüleri oynatma clips: Ataçlar @@ -1187,7 +1187,7 @@ cacheRemoteFiles: Uzak dosyaları önbellekle flagAsBot: Bu hesabı robot olarak işaretle flagAsBotDescription: Bu hesap bir program tarafından kontrol ediliyorsa bu seçeneği etkinleştirin. Etkinleştirilirse, diğer geliştiricilerin diğer botlarla sonsuz etkileşim - zincirlerini önlemesi ve Calckey'nin dahili sistemlerini bu hesabı bir bot olarak + zincirlerini önlemesi ve Firefish'nin dahili sistemlerini bu hesabı bir bot olarak ele alacak şekilde ayarlaması için bir bayrak görevi görür. clearQueue: Sırayı Temizle hiddenTags: Gizlenmiş Etiketler @@ -1219,7 +1219,7 @@ ascendingOrder: Artan tags: Etiketler descendingOrder: Azalan scratchpadDescription: Karalama defteri, AiScript deneyleri için bir ortam sağlar. - İçinde Calckey ile etkileşime girerek sonuçlarını yazabilir, çalıştırabilir ve kontrol + İçinde Firefish ile etkileşime girerek sonuçlarını yazabilir, çalıştırabilir ve kontrol edebilirsiniz. local: Yerel remote: Uzak @@ -1247,8 +1247,8 @@ desktop: Masaüstü confirmToUnclipAlreadyClippedNote: Bu gönderi zaten "{name}" atacının bir parçası. Bunun yerine onu bu ataçtan kaldırmak istiyor musunuz? sendErrorReportsDescription: "Açıldığında, bir sorun oluştuğunda ayrıntılı hata bilgileri - Calckey ile paylaşılarak Calckey kalitesinin artırılmasına yardımcı olur.\nBu, işletim - sisteminizin sürümü, kullandığınız tarayıcı, Calckey'deki etkinliğiniz vb. bilgileri + Firefish ile paylaşılarak Firefish kalitesinin artırılmasına yardımcı olur.\nBu, işletim + sisteminizin sürümü, kullandığınız tarayıcı, Firefish'deki etkinliğiniz vb. bilgileri içerecektir." closeAccount: Hesabı kapat markAllAsRead: Okunmuş olarak işaretle @@ -1298,7 +1298,7 @@ showWithSparkles: Parıltılarla göster showPopup: Kullanıcıları pop-up ile bilgilendirin silencedWarning: Bu sayfa, bu kullanıcılar yöneticinizin susturduğu sunuculardan olduğu için gösteriliyor, bu nedenle potansiyel olarak spam olabilirler. -isPatron: Calckey Patronu +isPatron: Firefish Patronu youHaveUnreadAnnouncements: Okunmamış duyurularınız var donationLink: Bağış sayfası linki neverShow: Birdaha gösterme @@ -1322,7 +1322,7 @@ signupsDisabled: Bu sunucudaki kayıtlar şu anda devre dışı, ancak istediği başka bir sunucuya kaydolabilirsiniz! Bu sunucu için bir davet kodunuz varsa, lütfen aşağıya girin. sendModMail: Moderasyon Bildirimi Gönder -noGraze: Calckey ile çakıştığı için lütfen "Graze for Mastodon" tarayıcı uzantısını +noGraze: Firefish ile çakıştığı için lütfen "Graze for Mastodon" tarayıcı uzantısını devre dışı bırakın. isBot: Bu hesap bir bottur _2fa: @@ -1862,7 +1862,7 @@ _notification: youGotMessagingMessageFromUser: '{name} sana bir sohbet mesajı gönderdi' _experiments: title: Deneyler - postImportsCaption: Kullanıcıların geçmiş Calckey, Misskey, Mastodon, Akkoma ve + postImportsCaption: Kullanıcıların geçmiş Firefish, Misskey, Mastodon, Akkoma ve Pleroma hesaplarından gönderilerini içe aktarmalarına izin verir. Kuyruğunuz tıkanırsa yükleme sırasında yavaşlamalara neden olabilir. enablePostImports: Gönderi içeri aktarmasını aktif et @@ -1932,23 +1932,23 @@ _preferencesBackups: _aboutMisskey: patronsList: Bağış büyüklüğüne göre değil, kronolojik olarak listelenmiştir. Adınızı buraya almak için yukarıdaki bağlantıyla bağış yapın! - about: Calckey, 2022'den beri geliştirilmekte olan ThatOneCalculator tarafından + about: Firefish, 2022'den beri geliştirilmekte olan ThatOneCalculator tarafından yapılan bir Misskey çatalıdır. allContributors: Tüm katkıda bulunanlar - patrons: Calckey patronları + patrons: Firefish patronları morePatrons: Burada listelenmeyen diğer birçok yardımcının desteğini de takdir ediyoruz. Teşekkür ederim! 🥰 - donate: Calckey'e bağışta bulunun + donate: Firefish'e bağışta bulunun contributors: Ana katkıda bulunanlar source: Kaynak Kodu - translation: Calckey'i tercüme et - donateTitle: Calckey'den hoşlanıyor musunuz? - pleaseDonateToCalckey: Lütfen gelişimini desteklemek için Calckey'e bağış yapmayı + translation: Firefish'i tercüme et + donateTitle: Firefish'den hoşlanıyor musunuz? + pleaseDonateToFirefish: Lütfen gelişimini desteklemek için Firefish'e bağış yapmayı düşünün. pleaseDonateToHost: İşletme maliyetlerini desteklemek için lütfen ev sunucunuz {host}'a bağış yapmayı da düşünün. donateHost: '{ev sahibi} için bağış yapın' - sponsors: Calckey sponsorları + sponsors: Firefish sponsorları _weekday: saturday: Cumartesi sunday: Pazar @@ -1982,7 +1982,7 @@ _tutorial: step5_6: Önerilen {icon} zaman çizelgesi, yöneticilerin önerdiği sunuculardan gelen gönderileri görebileceğiniz yerdir. step6_1: Peki burası neresi? - title: Calckey nasıl kullanılır + title: Firefish nasıl kullanılır step3_2: "Ev ve sosyal zaman çizelgeleriniz, kimi takip ettiğinize bağlıdır, bu nedenle başlamak için birkaç hesabı takip etmeyi deneyin.\nTakip etmek için bir profilin sağ üstündeki artı dairesine tıklayın." @@ -1990,7 +1990,7 @@ _tutorial: görebileceğiniz yerdir. step5_4: Yerel {icon} zaman çizelgesi, bu sunucudaki diğer herkesin gönderilerini görebileceğiniz yerdir. - step6_2: Calckey'e öylece katılmadın. Binlerce sunucudan oluşan birbirine bağlı + step6_2: Firefish'e öylece katılmadın. Binlerce sunucudan oluşan birbirine bağlı bir ağ olan Fediverse'e giden bir portala katıldınız. step6_4: Şimdi gidin, keşfedin ve eğlenin! step5_7: Global {icon} zaman çizelgesi, bağlı diğer tüm sunuculardan gelen gönderileri @@ -2002,7 +2002,7 @@ _tutorial: step1_1: Hoşgeldin! step1_2: Hadi seni hazırlayalım. Kısa sürede kullanmaya başlayacaksınız! step5_1: Zaman çizelgeleri, her yerde zaman çizelgeleri! - step6_3: Her sunucu farklı şekillerde çalışır ve tüm sunucular Calckey'i çalıştırmaz. + step6_3: Her sunucu farklı şekillerde çalışır ve tüm sunucular Firefish'i çalıştırmaz. Ama bu sunucu kullanıyor! Biraz karışık ama kısa sürede anlayacaksın. step4_1: Seni oradan çıkaralım. step5_2: Sunucunuzda etkinleştirilmiş {timelines} farklı zaman çizelgesi var. diff --git a/locales/uk-UA.yml b/locales/uk-UA.yml index 6bd72b75b..839cc26e0 100644 --- a/locales/uk-UA.yml +++ b/locales/uk-UA.yml @@ -1,6 +1,6 @@ _lang_: "Українська" headlineMisskey: "Мережа об'єднана записами" -introMisskey: "Ласкаво просимо! Calckey - децентралізована служба мікроблогів з відкритим +introMisskey: "Ласкаво просимо! Firefish - децентралізована служба мікроблогів з відкритим кодом.\nСтворюйте \"нотатки\", щоб поділитися тим, що відбувається, і розповісти всім про себе 📡\nЗа допомогою \"реакцій\" ви також можете швидко висловити свої почуття щодо нотаток інших 👍\nДосліджуймо новий світ! 🚀" @@ -151,7 +151,7 @@ cacheRemoteFilesDescription: "Якщо кешування вимкнено, ві flagAsBot: "Акаунт бота" flagAsBotDescription: "Ввімкніть якщо цей обліковий запис використовується ботом. Ця опція позначить обліковий запис як бота. Це потрібно щоб виключити безкінечну - інтеракцію між ботами а також відповідного підлаштування Calckey." + інтеракцію між ботами а також відповідного підлаштування Firefish." flagAsCat: "Акаунт кота" flagAsCatDescription: "Ввімкніть, щоб позначити, що обліковий запис є котиком, та отримати котячі вуха!" @@ -219,7 +219,7 @@ noUsers: "Немає користувачів" editProfile: "Редагувати обліковий запис" noteDeleteConfirm: "Ви дійсно хочете видалити цей запис?" pinLimitExceeded: "Ви не можете закріпити більше записів" -intro: "Встановлення Calckey завершено! Будь ласка, створіть обліковий запис адміністратора." +intro: "Встановлення Firefish завершено! Будь ласка, створіть обліковий запис адміністратора." done: "Готово" processing: "Обробка" preview: "Попередній перегляд" @@ -404,7 +404,7 @@ exploreFediverse: "Огляд федіверсу" popularTags: "Популярні теги" userList: "Списки" about: "Інформація" -aboutMisskey: "Про Calckey" +aboutFirefish: "Про Firefish" administrator: "Адмін" token: "Токен" twoStepAuthentication: "Двохфакторна аутентифікація" @@ -558,7 +558,7 @@ ascendingOrder: "За зростанням" descendingOrder: "За спаданням" scratchpad: "Чернетка" scratchpadDescription: "Scratchpad надає середовище для експериментів з AiScript. - Ви можете писати, виконувати його і тестувати взаємодію з Calckey." + Ви можете писати, виконувати його і тестувати взаємодію з Firefish." output: "Вихід" script: "Скрипт" disablePagesScript: "Вимкнути AiScript на Сторінках" @@ -693,7 +693,7 @@ createNew: "Створити новий" optional: "Необов'язково" createNewClip: "Створити підбірку" public: "Публічний" -i18nInfo: "Calckey перекладається на різні мови волонтерами. Ви можете допомогти за +i18nInfo: "Firefish перекладається на різні мови волонтерами. Ви можете допомогти за посиланням: {link}." manageAccessTokens: "Керування токенами доступу" accountInfo: "Інформація про акаунт" @@ -751,9 +751,9 @@ nUsers: "{n} Користувачів" nNotes: "{n} Записів" sendErrorReports: "Надіслати звіт про помилки" sendErrorReportsDescription: "Якщо увімкнено, детальна інформація про помилки буде - передаватися до Calckey, коли виникає проблема, це допоможе покращити якість роботи - Calckey.\nЦе буде включати інформацію таку як: версія вашої ОС, який браузер ви - використовуєте, ваша активність в Calckey тощо." + передаватися до Firefish, коли виникає проблема, це допоможе покращити якість роботи + Firefish.\nЦе буде включати інформацію таку як: версія вашої ОС, який браузер ви + використовуєте, ваша активність в Firefish тощо." myTheme: "Моя тема" backgroundColor: "Фон" accentColor: "Акцент" @@ -829,28 +829,28 @@ _aboutMisskey: contributors: "Головні помічники" allContributors: "Всі помічники" source: "Вихідний код" - translation: "Перекладати Calckey" - donate: "Пожертвувати Calckey" + translation: "Перекладати Firefish" + donate: "Пожертвувати Firefish" morePatrons: "Ми дуже цінуємо підтримку багатьох інших помічників, не перелічених тут. Дякуємо! 🥰" patrons: "Підтримали" patronsList: Перераховані в хронологічному порядку, а не за розміром пожертви. Зробіть внесок за посиланням вище, щоб ваше ім'я було тут! - donateTitle: Сподобався Calckey? - pleaseDonateToCalckey: Будь ласка, підтримайте розробку Calckey. + donateTitle: Сподобався Firefish? + pleaseDonateToFirefish: Будь ласка, підтримайте розробку Firefish. pleaseDonateToHost: Також не забудьте підтримати ваш домашній сервер {host}, щоб допомогти з його операційними витратами. donateHost: Зробити внесок на рахунок {host} - sponsors: Спонсори Calckey + sponsors: Спонсори Firefish _nsfw: respect: "Приховувати NSFW медіа" ignore: "Не приховувати NSFW медіа" force: "Приховувати всі медіа файли" _mfm: cheatSheet: "Довідка MFM" - intro: "MFM це ексклюзивна мова розмітки тексту в Calckey, яку можна використовувати + intro: "MFM це ексклюзивна мова розмітки тексту в Firefish, яку можна використовувати в багатьох місцях. Тут ви можете переглянути приклади її синтаксису." - dummy: "Calckey розширює світ Федіверсу" + dummy: "Firefish розширює світ Федіверсу" mention: "Згадка" mentionDescription: "За допомогою знака \"@\" перед ім'ям можна згадати конкретного користувача." @@ -1071,7 +1071,7 @@ _time: hour: "г" day: "д" _tutorial: - title: "Як використовувати Calckey" + title: "Як використовувати Firefish" step1_1: "Ласкаво просимо!" step1_2: "Давайте налаштуємо вас. Ви будете працювати в найкоротші терміни!" step2_1: "Спочатку, будь ласка, заповніть свій профіль." @@ -1096,9 +1096,9 @@ _tutorial: step5_7: "Глобальна {icon} стрічка - це місце, де ви можете бачити записи від усіх інших приєднаних серверів." step6_1: "Отже, що це за місце?" - step6_2: "Ну, ви не просто приєдналися до Calckey. Ви увійшли в Fediverse, взаємопов'язану + step6_2: "Ну, ви не просто приєдналися до Firefish. Ви увійшли в Fediverse, взаємопов'язану мережу з тисяч серверів." - step6_3: "Кожен сервер працює по-своєму, і не на всіх серверах працює Calckey. Але + step6_3: "Кожен сервер працює по-своєму, і не на всіх серверах працює Firefish. Але цей працює! Це трохи складно, але ви швидко розберетеся." step6_4: "Тепер ідіть, вивчайте і розважайтеся!" _2fa: @@ -1705,7 +1705,7 @@ emailRequiredForSignup: Вимагати адресу електронної п moderation: Модерація selectInstance: Оберіть сервер instanceSecurity: Безпека сервера -searchPlaceholder: Шукати в Calckey +searchPlaceholder: Шукати в Firefish editNote: Відредагувати запис enableEmojiReactions: Ввімкнути реакції емодзі low: Низький @@ -1767,7 +1767,7 @@ ads: Реклама cw: Попередження про вміст hiddenTags: Приховані хештеги noInstances: Немає серверів -misskeyUpdated: Calckey оновлено! +misskeyUpdated: Firefish оновлено! received: Отримане xl: Надвеликий searchResult: Результати пошуку @@ -1871,7 +1871,7 @@ _experiments: enablePostImports: Ввімкнути імпорт записів title: Експерименти postImportsCaption: Дозволяє користувачам імпортувати свої публікації з минулих - облікових записів Calckey, Misskey, Mastodon, Akkoma і Pleroma. Це може спричинити + облікових записів Firefish, Misskey, Mastodon, Akkoma і Pleroma. Це може спричинити зниження швидкості під час завантаження, якщо ваша черга перевантажена. _dialog: charactersExceeded: 'Перевищено максимальну кількість символів! Обмеження: {current}/{max}' @@ -1982,12 +1982,12 @@ sendPushNotificationReadMessageCaption: На короткий час буде п текстом "{emptyPushNotificationMessage}". Це може призвести до збільшення споживання заряду акумулятора вашого пристрою, якщо це можливо. pushNotificationNotSupported: Ваш браузер або сервер не підтримує push-сповіщення -showUpdates: Показувати спливаюче вікно при оновленні Calckey +showUpdates: Показувати спливаюче вікно при оновленні Firefish updateAvailable: Можливо, є доступне оновлення! recommendedInstancesDescription: Рекомендовані сервери відокремлюються переведенням рядка, щоб з'явитися на стрічці рекомендацій. caption: Автоматичний підпис -showAdminUpdates: Вказати, що доступна нова версія Calckey (тільки для адміністратора) +showAdminUpdates: Вказати, що доступна нова версія Firefish (тільки для адміністратора) defaultReaction: Емодзі реакція за замовчуванням для вихідних і вхідних записів license: Ліцензія indexPosts: Індексувати пости @@ -2004,7 +2004,7 @@ enableCustomKaTeXMacro: Увімкнути користувацькі макро apps: Додатки isModerator: Модератор isAdmin: Адміністратор -isPatron: Патрон Calckey +isPatron: Патрон Firefish swipeOnMobile: Дозволити гортання між сторінками migration: Міграція swipeOnDesktop: Дозволити свайп у мобільному стилі на десктопі @@ -2064,7 +2064,7 @@ cropImage: Обрізати зображення recentNDays: Останні {n} днів navbar: Панель навігації noGraze: Будь ласка, вимкніть розширення браузера "Graze для Mastodon", оскільки воно - заважає роботі Calckey. + заважає роботі Firefish. preventAiLearningDescription: Попросити сторонні мовні моделі ШІ не вивчати вміст, який ви завантажуєте, наприклад, записи та зображення. userSaysSomethingReasonReply: '{name} відповів на пост з {reason}' diff --git a/locales/vi-VN.yml b/locales/vi-VN.yml index 40b3909ce..2604a9b2a 100644 --- a/locales/vi-VN.yml +++ b/locales/vi-VN.yml @@ -1,7 +1,7 @@ --- _lang_: "Tiếng Việt" headlineMisskey: "Mạng xã hội liên hợp" -introMisskey: "Xin chào! Calckey là một nền tảng tiểu blog phi tập trung mã nguồn mở.\nViết \"tút\" để chia sẻ những suy nghĩ của bạn 📡\nBằng \"biểu cảm\", bạn có thể bày tỏ nhanh chóng cảm xúc của bạn với các tút 👍\nHãy khám phá một thế giới mới! 🚀" +introMisskey: "Xin chào! Firefish là một nền tảng tiểu blog phi tập trung mã nguồn mở.\nViết \"tút\" để chia sẻ những suy nghĩ của bạn 📡\nBằng \"biểu cảm\", bạn có thể bày tỏ nhanh chóng cảm xúc của bạn với các tút 👍\nHãy khám phá một thế giới mới! 🚀" monthAndDay: "{day} tháng {month}" search: "Tìm kiếm" notifications: "Thông báo" @@ -139,7 +139,7 @@ settingGuide: "Cài đặt đề xuất" cacheRemoteFiles: "Tập tin cache từ xa" cacheRemoteFilesDescription: "Khi tùy chọn này bị tắt, các tập tin từ xa sẽ được tải trực tiếp từ máy chủ khác. Điều này sẽ giúp giảm dung lượng lưu trữ nhưng lại tăng lưu lượng truy cập, vì hình thu nhỏ sẽ không được tạo." flagAsBot: "Đánh dấu đây là tài khoản bot" -flagAsBotDescription: "Bật tùy chọn này nếu tài khoản này được kiểm soát bởi một chương trình. Nếu được bật, nó sẽ được đánh dấu để các nhà phát triển khác ngăn chặn chuỗi tương tác vô tận với các bot khác và điều chỉnh hệ thống nội bộ của Calckey để coi tài khoản này như một bot." +flagAsBotDescription: "Bật tùy chọn này nếu tài khoản này được kiểm soát bởi một chương trình. Nếu được bật, nó sẽ được đánh dấu để các nhà phát triển khác ngăn chặn chuỗi tương tác vô tận với các bot khác và điều chỉnh hệ thống nội bộ của Firefish để coi tài khoản này như một bot." flagAsCat: "Tài khoản này là mèo" flagAsCatDescription: "Bật tùy chọn này để đánh dấu tài khoản là một con mèo." flagShowTimelineReplies: "Hiện lượt trả lời trong bảng tin" @@ -198,7 +198,7 @@ noUsers: "Chưa có ai" editProfile: "Sửa hồ sơ" noteDeleteConfirm: "Bạn có chắc muốn xóa tút này?" pinLimitExceeded: "Bạn đã đạt giới hạn số lượng tút có thể ghim" -intro: "Đã cài đặt Calckey! Xin hãy tạo tài khoản admin." +intro: "Đã cài đặt Firefish! Xin hãy tạo tài khoản admin." done: "Xong" processing: "Đang xử lý" preview: "Xem trước" @@ -377,7 +377,7 @@ exploreFediverse: "Khám phá Fediverse" popularTags: "Hashtag thông dụng" userList: "Danh sách" about: "Giới thiệu" -aboutMisskey: "Về Misskey" +aboutFirefish: "Về Misskey" administrator: "Quản trị viên" token: "Token" twoStepAuthentication: "Xác minh 2 bước" @@ -523,7 +523,7 @@ sort: "Sắp xếp" ascendingOrder: "Tăng dần" descendingOrder: "Giảm dần" scratchpad: "Scratchpad" -scratchpadDescription: "Scratchpad cung cấp môi trường cho các thử nghiệm AiScript. Bạn có thể viết, thực thi và kiểm tra kết quả tương tác với Calckey trong đó." +scratchpadDescription: "Scratchpad cung cấp môi trường cho các thử nghiệm AiScript. Bạn có thể viết, thực thi và kiểm tra kết quả tương tác với Firefish trong đó." output: "Nguồn ra" script: "Kịch bản" disablePagesScript: "Tắt AiScript trên Trang" @@ -648,7 +648,7 @@ createNewClip: "Tạo một ghim mới" unclip: "Bỏ ghim" confirmToUnclipAlreadyClippedNote: "Bài đăng này là một phần của \"{name}\" ghim. Bạn có muốn bỏ khỏi ghim?" public: "Công khai" -i18nInfo: "Calckey đang được các tình nguyện viên dịch sang nhiều thứ tiếng khác nhau. Bạn có thể hỗ trợ tại {link}." +i18nInfo: "Firefish đang được các tình nguyện viên dịch sang nhiều thứ tiếng khác nhau. Bạn có thể hỗ trợ tại {link}." manageAccessTokens: "Tạo mã truy cập" accountInfo: "Thông tin tài khoản" notesCount: "Số lượng tút" @@ -699,7 +699,7 @@ onlineUsersCount: "{n} người đang online" nUsers: "{n} Người" nNotes: "{n} Tút" sendErrorReports: "Báo lỗi" -sendErrorReportsDescription: "Khi được bật, thông tin chi tiết về lỗi sẽ được chia sẻ với Calckey khi xảy ra sự cố, giúp nâng cao chất lượng của Calckey.\nBao gồm thông tin như phiên bản hệ điều hành của bạn, trình duyệt bạn đang sử dụng, hoạt động của bạn trong Calckey, v.v." +sendErrorReportsDescription: "Khi được bật, thông tin chi tiết về lỗi sẽ được chia sẻ với Firefish khi xảy ra sự cố, giúp nâng cao chất lượng của Firefish.\nBao gồm thông tin như phiên bản hệ điều hành của bạn, trình duyệt bạn đang sử dụng, hoạt động của bạn trong Firefish, v.v." myTheme: "Theme của tôi" backgroundColor: "Màu nền" accentColor: "Màu phụ" @@ -790,7 +790,7 @@ hashtags: "Hashtag" troubleshooting: "Khắc phục sự cố" useBlurEffect: "Dùng hiệu ứng làm mờ trong giao diện" learnMore: "Tìm hiểu thêm" -misskeyUpdated: "Calckey vừa được cập nhật!" +misskeyUpdated: "Firefish vừa được cập nhật!" whatIsNew: "Hiện những thay đổi" translate: "Dịch" translatedFrom: "Dịch từ {x}" @@ -965,13 +965,13 @@ _registry: keys: "Các mã" domain: "Tên miền" createKey: "Tạo mã" -_aboutMisskey: +_aboutFirefish: about: "Misskey là phần mềm mã nguồn mở được phát triển bởi syuilo từ năm 2014." contributors: "Những người đóng góp nổi bật" allContributors: "Toàn bộ người đóng góp" source: "Mã nguồn" - translation: "Dịch Calckey" - donate: "Ủng hộ Calckey" + translation: "Dịch Firefish" + donate: "Ủng hộ Firefish" morePatrons: "Chúng tôi cũng trân trọng sự hỗ trợ của nhiều người đóng góp khác không được liệt kê ở đây. Cảm ơn! 🥰" patrons: "Người ủng hộ" _nsfw: @@ -980,8 +980,8 @@ _nsfw: force: "Ẩn mọi media" _mfm: cheatSheet: "MFM Cheatsheet" - intro: "MFM là ngôn ngữ phát triển độc quyền của Calckey có thể được sử dụng ở nhiều nơi. Tại đây bạn có thể xem danh sách tất cả các cú pháp MFM có sẵn." - dummy: "Calckey mở rộng thế giới Fediverse" + intro: "MFM là ngôn ngữ phát triển độc quyền của Firefish có thể được sử dụng ở nhiều nơi. Tại đây bạn có thể xem danh sách tất cả các cú pháp MFM có sẵn." + dummy: "Firefish mở rộng thế giới Fediverse" mention: "Nhắc đến" mentionDescription: "Bạn có thể nhắc đến ai đó bằng cách sử dụng @tên người dùng." hashtag: "Hashtag" @@ -1179,7 +1179,7 @@ _time: hour: "giờ" day: "ngày" _tutorial: - title: "How to use Calckey" + title: "How to use Firefish" step1_1: "Welcome!" step1_2: "Let's get you set up. You'll be up and running in no time!" step2_1: "First, please fill out your profile." @@ -1196,8 +1196,8 @@ _tutorial: step5_6: "The Social {icon} timeline is where you can see posts from friends of your followers." step5_7: "The Global {icon} timeline is where you can see posts from every other connected instance." step6_1: "So, what is this place?" - step6_2: "Well, you didn't just join Calckey. You joined a portal to the Fediverse, an interconnected network of thousands of servers, called \"instances\"." - step6_3: "Each server works in different ways, and not all servers run Calckey. This one does though! It's a bit complicated, but you'll get the hang of it in no time." + step6_2: "Well, you didn't just join Firefish. You joined a portal to the Fediverse, an interconnected network of thousands of servers, called \"instances\"." + step6_3: "Each server works in different ways, and not all servers run Firefish. This one does though! It's a bit complicated, but you'll get the hang of it in no time." step6_4: "Now go, explore, and have fun!" _2fa: alreadyRegistered: "Bạn đã đăng ký thiết bị xác minh 2 bước." diff --git a/locales/zh-CN.yml b/locales/zh-CN.yml index ccbb16f16..214b249c8 100644 --- a/locales/zh-CN.yml +++ b/locales/zh-CN.yml @@ -1,6 +1,6 @@ _lang_: "简体中文" headlineMisskey: "一个开源、去中心化的社交媒体平台,永远免费!🚀" -introMisskey: "欢迎! Calckey 是一个开源、去中心化的社交媒体平台,永久免费!🚀" +introMisskey: "欢迎! Firefish 是一个开源、去中心化的社交媒体平台,永久免费!🚀" monthAndDay: "{month} 月 {day} 日" search: "搜索" notifications: "通知" @@ -142,7 +142,7 @@ settingGuide: "推荐配置" cacheRemoteFiles: "缓存远程文件" cacheRemoteFilesDescription: "当禁用此设定时远程文件将直接从远程服务器载入。禁用后会减小储存空间需求,但是会增加流量,因为缩略图不会被生成。" flagAsBot: "这是一个机器人账号" -flagAsBotDescription: "如果此账号由程序控制,请启用此项。启用后,此标志可以帮助其它开发人员防止机器人之间产生无限互动的行为,并让 Calckey +flagAsBotDescription: "如果此账号由程序控制,请启用此项。启用后,此标志可以帮助其它开发人员防止机器人之间产生无限互动的行为,并让 Firefish 的内部系统将此账号识别为机器人。" flagAsCat: "将这个账号设定为一只猫😺" flagAsCatDescription: "您会长出猫耳朵并像猫一样说话!" @@ -202,7 +202,7 @@ noUsers: "无用户" editProfile: "编辑个人资料" noteDeleteConfirm: "确定要删除此帖子吗?" pinLimitExceeded: "无法置顶更多帖子了" -intro: "Calckey 安装完成!请创建一个管理员用户。" +intro: "Firefish 安装完成!请创建一个管理员用户。" done: "完成" processing: "正在处理" preview: "预览" @@ -381,7 +381,7 @@ exploreFediverse: "探索联邦宇宙" popularTags: "热门标签" userList: "列表" about: "关于" -aboutMisskey: "关于 Calckey" +aboutFirefish: "关于 Firefish" administrator: "管理员" token: "令牌" twoStepAuthentication: "两步验证" @@ -529,7 +529,7 @@ sort: "排序" ascendingOrder: "升序" descendingOrder: "降序" scratchpad: "AiScript 控制台" -scratchpadDescription: "AiScript 控制台为 AiScript 提供了实验环境。您可以编写代码以与 Calckey 交互,运行它并查看结果。" +scratchpadDescription: "AiScript 控制台为 AiScript 提供了实验环境。您可以编写代码以与 Firefish 交互,运行它并查看结果。" output: "输出" script: "脚本" disablePagesScript: "在页面中禁用 AiScript" @@ -654,7 +654,7 @@ createNewClip: "新建便签" unclip: "移除便签" confirmToUnclipAlreadyClippedNote: "本帖已包含在便签 \"{name}\" 里。您想要将本帖从该便签中移除吗?" public: "公开" -i18nInfo: "Calckey 已经被志愿者们翻译成了各种语言。如果您也有兴趣,可以通过 {link} 帮助翻译。" +i18nInfo: "Firefish 已经被志愿者们翻译成了各种语言。如果您也有兴趣,可以通过 {link} 帮助翻译。" manageAccessTokens: "管理访问令牌" accountInfo: "账号信息" notesCount: "帖子数量" @@ -705,8 +705,8 @@ onlineUsersCount: "{n} 人在线" nUsers: "{n} 用户" nNotes: "{n} 帖子" sendErrorReports: "发送错误报告" -sendErrorReportsDescription: "启用后,如果出现问题,可以与 Calckey 共享详细的错误信息,从而帮助提高软件的质量。\n这将包括您的操作系统版本、您使用的浏览器、您在 - Calckey 中的活动等信息。" +sendErrorReportsDescription: "启用后,如果出现问题,可以与 Firefish 共享详细的错误信息,从而帮助提高软件的质量。\n这将包括您的操作系统版本、您使用的浏览器、您在 + Firefish 中的活动等信息。" myTheme: "我的主题" backgroundColor: "背景色" accentColor: "强调色" @@ -797,7 +797,7 @@ hashtags: "话题标签" troubleshooting: "故障排除" useBlurEffect: "在 UI 上使用模糊效果" learnMore: "更多信息" -misskeyUpdated: "Calckey 更新完成!" +misskeyUpdated: "Firefish 更新完成!" whatIsNew: "显示更新信息" translate: "翻译" translatedFrom: "从 {x} 翻译" @@ -978,15 +978,15 @@ _registry: keys: "键" domain: "域" createKey: "创建键" -_aboutMisskey: - about: "Calckey 是由 ThatOneCalculator 创建的 Misskey 的一个分支,自 2022 年开始开发。" +_aboutFirefish: + about: "Firefish 是由 ThatOneCalculator 创建的 Misskey 的一个分支,自 2022 年开始开发。" contributors: "主要贡献者" allContributors: "全体贡献者" source: "源代码" - translation: "翻译 Calckey" - donate: "赞助 Calckey" + translation: "翻译 Firefish" + donate: "赞助 Firefish" morePatrons: "还有很多其它的人也在支持我们,非常感谢🥰" - patrons: "Calckey 赞助者" + patrons: "Firefish 赞助者" patronsList: 按时间顺序而不是捐赠金额排列。通过上面的链接捐款,让您的名字出现在这里! sponsors: Calckey 赞助者们 donateTitle: 喜欢 Calckey 吗? @@ -999,8 +999,8 @@ _nsfw: force: "总是隐藏内容" _mfm: cheatSheet: "MFM 代码速查表" - intro: "MFM 是一种在 Misskey、Calckey、Akkoma 中使用的标记语言,可以在很多地方使用。您可以在此处查看所有可用的 MFM 语法的列表。" - dummy: "通过 Calckey 扩展联邦宇宙的世界" + intro: "MFM 是一种在 Misskey、Firefish、Akkoma 中使用的标记语言,可以在很多地方使用。您可以在此处查看所有可用的 MFM 语法的列表。" + dummy: "通过 Firefish 扩展联邦宇宙的世界" mention: "提及" mentionDescription: "可以使用 @+用户名 来指示特定用户。" hashtag: "话题标签" @@ -1219,7 +1219,7 @@ _time: hour: "小时" day: "日" _tutorial: - title: "如何使用 Calckey" + title: "如何使用 Firefish" step1_1: "欢迎!" step1_2: "让我们帮您设置一下。您很快就能开始畅游联邦宇宙!" step2_1: "首先,请完成您的个人资料。" @@ -1236,8 +1236,8 @@ _tutorial: step5_6: "推荐 {icon} 时间线是您可以看到管理员推荐服务器的帖子的时间线。" step5_7: "全球 {icon} 时间线是您可以看到来自其它所有互联服务器的帖子的时间线。" step6_1: "那么,这里是什么地方?" - step6_2: "好吧,您不只是加入 Calckey。您已经加入了 Fediverse 的一个门户,这是一个由成千上万台服务器组成的互联网络。" - step6_3: "每个服务器的工作方式不同,并不是所有的服务器都运行 Calckey。但这个服务器是的! 这有点复杂,但您很快就会明白的。" + step6_2: "好吧,您不只是加入 Firefish。您已经加入了 Fediverse 的一个门户,这是一个由成千上万台服务器组成的互联网络。" + step6_3: "每个服务器的工作方式不同,并不是所有的服务器都运行 Firefish。但这个服务器是的! 这有点复杂,但您很快就会明白的。" step6_4: "现在,去吧,去探索,去享受乐趣吧!" _2fa: alreadyRegistered: "您已经注册了两步验证设备。" @@ -1818,7 +1818,7 @@ _messaging: migration: 迁移 _experiments: title: 实验性功能 - postImportsCaption: 允许用户从过去的 Calckey、Misskey、Mastodon、Akkoma 和 Pleroma 账号导入帖子。如果您的队列出现拥堵,则可能会导致加载速度减慢。 + postImportsCaption: 允许用户从过去的 Firefish、Misskey、Mastodon、Akkoma 和 Pleroma 账号导入帖子。如果您的队列出现拥堵,则可能会导致加载速度减慢。 enablePostImports: 启用帖子导入 license: 许可证 flagSpeakAsCatDescription: 在猫模式下您的帖子会喵化 @@ -1838,14 +1838,14 @@ customSplashIconsDescription: 用换行符隔开的自定义启动屏幕图标 URL 上,最好全部调整为 192x192 的大小。 recommendedInstancesDescription: 推荐的服务器一行一个,它们将出现在推荐时间线中。 splash: 启动画面 -showUpdates: Calckey 更新后显示弹出窗口 +showUpdates: Firefish 更新后显示弹出窗口 selectInstance: 选择服务器 silencedInstances: 禁言的服务器 antennaInstancesDescription: 列出服务器主机名,一行一个 pushNotification: 推送通知 subscribePushNotification: 启用推送通知 -showAdminUpdates: 提示新的 Calckey 版本可用(仅对于管理员) -searchPlaceholder: 搜索 Calckey +showAdminUpdates: 提示新的 Firefish 版本可用(仅对于管理员) +searchPlaceholder: 搜索 Firefish addInstance: 添加服务器 jumpToPrevious: 跳转到上一个 silenceThisInstance: 禁言此服务器 @@ -1921,7 +1921,7 @@ moveAccountDescription: 这个过程是不可逆的。在迁移之前,请确 moveFromLabel: 您要迁移出的旧账号: preventAiLearning: 阻止 AI 机器人抓取 preventAiLearningDescription: 请求第三方人工智能语言模型不要研究您上传的内容,例如帖子和图像。 -noGraze: 请禁用 "Graze for Mastodon" 浏览器扩展,因为它会干扰 Calckey。 +noGraze: 请禁用 "Graze for Mastodon" 浏览器扩展,因为它会干扰 Firefish。 moveTo: 将当前账号迁移至新账号 moveToLabel: 您要迁移到的目标账号: moveAccount: 迁移账号! @@ -1943,7 +1943,7 @@ _filters: fromUser: 来自用户 followersOnly: 仅关注者 reactionPickerSkinTone: 首选的表情符号肤色 -isPatron: Calckey 赞助 +isPatron: Firefish 赞助 _dialog: charactersExceeded: 超出了最大字符数!当前:{current} / 限制:{max} charactersBelow: 没有足够的字符!当前:{current} / 限制:{min} diff --git a/locales/zh-TW.yml b/locales/zh-TW.yml index 8b59b63a7..d639523d9 100644 --- a/locales/zh-TW.yml +++ b/locales/zh-TW.yml @@ -1,6 +1,6 @@ _lang_: "繁體中文" headlineMisskey: "貼文連繫網路" -introMisskey: "歡迎! Calckey是一個開源、去中心化且永遠免費的社群網路平台!🚀" +introMisskey: "歡迎! Firefish是一個開源、去中心化且永遠免費的社群網路平台!🚀" monthAndDay: "{month}月 {day}日" search: "搜尋" notifications: "通知" @@ -142,7 +142,7 @@ settingGuide: "推薦設定" cacheRemoteFiles: "快取遠端檔案" cacheRemoteFilesDescription: "禁用此設定會停止遠端檔案的緩存,從而節省儲存空間,但資料會因直接連線從而產生額外數據花費。" flagAsBot: "標記此帳號是機器人" -flagAsBotDescription: "如果本帳戶是由程式控制,請啟用此選項。啟用後,會作為標示幫助其他開發者防止機器人之間產生無限互動的行為,並會調整Calckey內部系統將本帳戶識別為機器人。" +flagAsBotDescription: "如果本帳戶是由程式控制,請啟用此選項。啟用後,會作為標示幫助其他開發者防止機器人之間產生無限互動的行為,並會調整Firefish內部系統將本帳戶識別為機器人。" flagAsCat: "你是喵咪嗎?w😺" flagAsCatDescription: "如果想將本帳戶標示為一隻貓,請開啟此標示!" flagShowTimelineReplies: "在時間線上顯示貼文的回覆" @@ -201,7 +201,7 @@ noUsers: "沒有任何使用者" editProfile: "編輯個人檔案" noteDeleteConfirm: "確定刪除此貼文嗎?" pinLimitExceeded: "不能置頂更多貼文了" -intro: "Calckey 部署完成!請建立管理員帳戶。" +intro: "Firefish 部署完成!請建立管理員帳戶。" done: "完成" processing: "處理中" preview: "預覽" @@ -380,7 +380,7 @@ exploreFediverse: "探索聯邦世界" popularTags: "熱門標籤" userList: "清單" about: "資訊" -aboutMisskey: "關於 Calckey" +aboutFirefish: "關於 Firefish" administrator: "管理員" token: "權杖" twoStepAuthentication: "兩階段驗證" @@ -526,7 +526,7 @@ sort: "排序" ascendingOrder: "昇冪" descendingOrder: "降冪" scratchpad: "暫存記憶體" -scratchpadDescription: "AiScript控制台為AiScript提供了實驗環境。您可以在此編寫、執行和確認代碼與Calckey互動的结果。" +scratchpadDescription: "AiScript控制台為AiScript提供了實驗環境。您可以在此編寫、執行和確認代碼與Firefish互動的结果。" output: "輸出" script: "腳本" disablePagesScript: "停用頁面的AiScript腳本" @@ -651,7 +651,7 @@ createNewClip: "建立新摘錄" unclip: "解除摘錄" confirmToUnclipAlreadyClippedNote: "此貼文已包含在摘錄「{name}」中。 你想將貼文從這個摘錄中排除嗎?" public: "公開" -i18nInfo: "Calckey已經被志願者們翻譯成各種語言版本,如果想要幫忙的話,可以進入{link}幫助翻譯。" +i18nInfo: "Firefish已經被志願者們翻譯成各種語言版本,如果想要幫忙的話,可以進入{link}幫助翻譯。" manageAccessTokens: "管理存取權杖" accountInfo: "帳戶資訊" notesCount: "貼文數量" @@ -702,8 +702,8 @@ onlineUsersCount: "{n}人正在線上" nUsers: "{n}用戶" nNotes: "{n}貼文" sendErrorReports: "傳送錯誤報告" -sendErrorReportsDescription: "開啟後,錯誤出現時將會與 Calckey 分享詳細紀錄,對於 Calckey 的開發會有非常大的幫助。\n - 這將包括您的操作系統版本、使用的瀏覽器、您在 Calckey 中的活動等資料。" +sendErrorReportsDescription: "開啟後,錯誤出現時將會與 Firefish 分享詳細紀錄,對於 Firefish 的開發會有非常大的幫助。\n + 這將包括您的操作系統版本、使用的瀏覽器、您在 Firefish 中的活動等資料。" myTheme: "我的佈景主題" backgroundColor: "背景" accentColor: "重點色彩" @@ -794,7 +794,7 @@ hashtags: "#tag" troubleshooting: "故障排除" useBlurEffect: "在 UI 上使用模糊效果" learnMore: "更多資訊" -misskeyUpdated: "Calckey 更新完成!" +misskeyUpdated: "Firefish 更新完成!" whatIsNew: "顯示更新資訊" translate: "翻譯" translatedFrom: "從 {x} 翻譯" @@ -975,19 +975,19 @@ _registry: keys: "機碼" domain: "域" createKey: "新增機碼" -_aboutMisskey: - about: "Calckey是由ThatOneCalculator自2022年起開發的Misskey分支。" +_aboutFirefish: + about: "Firefish是由ThatOneCalculator自2022年起開發的Misskey分支。" contributors: "主要貢獻者" allContributors: "全體貢獻人員" source: "原始碼" - translation: "翻譯Calckey" - donate: "贊助Calckey" + translation: "翻譯Firefish" + donate: "贊助Firefish" morePatrons: "還有許許多多幫助我們的其他人,非常感謝你們。 🥰" patrons: "贊助者" patronsList: 按時間順序列出,而不是按贊助規模列出。使用上面的連結贊助,在這裡獲得顯示您名字的機會! - sponsors: Calckey 贊助者們 - donateTitle: 覺得 Calckey 棒嗎? - pleaseDonateToCalckey: 請考慮向 Calckey 贊助以支持其發展。 + sponsors: Firefish 贊助者們 + donateTitle: 覺得 Firefish 棒嗎? + pleaseDonateToFirefish: 請考慮向 Firefish 贊助以支持其發展。 pleaseDonateToHost: 還請考慮捐贈給您在使用的伺服器 {host},以支援龐大的運營成本。 donateHost: 贊助給 {host} _nsfw: @@ -997,7 +997,7 @@ _nsfw: _mfm: cheatSheet: "MFM代碼小抄" intro: "MFM是Misskey專用的標記語言,可以在Misskey中的各個位置使用。 您可以這裏看到MFM可用語法列表。" - dummy: "Calckey拓展了Fediverse的世界" + dummy: "Firefish拓展了Fediverse的世界" mention: "提及" mentionDescription: "透過 @+用戶名 來標示特定使用者。" hashtag: "#tag" @@ -1206,7 +1206,7 @@ _time: hour: "小時" day: "日" _tutorial: - title: "如何使用Calckey" + title: "如何使用Firefish" step1_1: "歡迎!" step1_2: "讓我們把你安排好。你很快就會啟動並運行!" step2_1: "首先,請完成你的個人資料。" @@ -1223,8 +1223,8 @@ _tutorial: step5_6: "推薦 {icon} 時間線是顯示你的伺服器管理員推薦的貼文。" step5_7: "全球 {icon} 時間線是顯示來自所有其他連接的伺服器的貼文。" step6_1: "那麼,這裡是什麼地方?" - step6_2: "你不只是加入Calckey。你已經加入了Fediverse的一個門戶,這是一個由成千上萬台服務器組成的互聯網絡。" - step6_3: "每個服務器也有不同,而並不是所有的服務器都運行Calckey。但這個服務器確實是運行Calckey的! 你可能會覺得有點複雜,但你很快就會明白的。" + step6_2: "你不只是加入Firefish。你已經加入了Fediverse的一個門戶,這是一個由成千上萬台服務器組成的互聯網絡。" + step6_3: "每個服務器也有不同,而並不是所有的服務器都運行Firefish。但這個服務器確實是運行Firefish的! 你可能會覺得有點複雜,但你很快就會明白的。" step6_4: "現在開始探索吧!" _2fa: alreadyRegistered: "你已註冊過一個雙重認證的裝置。" @@ -1784,7 +1784,7 @@ customMOTDDescription: 每次用戶加載/重新加載頁面時,由換行符 privateModeInfo: 啟用後,只有列入白名單的伺服器才能與你的伺服器聯合。所有貼文都將對公眾隱藏。 adminCustomCssWarn: 除非你知道它的作用,否則請不要使用此設定。 輸入不正確的值可能會導致每個人的客戶端無法正常運行。你可在你的的用戶設定中測試,確保你的 CSS 正常工作。 -showUpdates: Calckey 更新時顯示彈出視窗 +showUpdates: Firefish 更新時顯示彈出視窗 recommendedInstances: 建議的伺服器 caption: 自動字幕 enterSendsMessage: 在 Messaging 中按 Return 發送消息 (如關閉則是 Ctrl + Return) @@ -1813,7 +1813,7 @@ customMOTD: 自定義MOTD (網頁載入時顯示的信息) customSplashIcons: 啟動畫面圖標 (網址) splash: 啟動畫面 updateAvailable: 可能有可用的更新! -showAdminUpdates: 表明新的 Calckey 版本可用(只限管理員) +showAdminUpdates: 表明新的 Firefish 版本可用(只限管理員) migration: 遷移 homeTimeline: 主頁時間軸 swipeOnDesktop: 允許在桌面上進行手機式滑動 @@ -1827,7 +1827,7 @@ silenced: 已靜音 _experiments: title: 試驗功能 findOtherInstance: 找找另一個伺服器 -noGraze: 瀏覽器擴展 "Graze for Mastodon" 會與Calckey發生衝突,請停用該擴展。 +noGraze: 瀏覽器擴展 "Graze for Mastodon" 會與Firefish發生衝突,請停用該擴展。 userSaysSomethingReasonRenote: '{name} 轉傳了包含 {reason} 的貼文' pushNotificationNotSupported: 你的瀏覽器或伺服器不支援推送通知 accessibility: 輔助功能 @@ -1886,7 +1886,7 @@ indexFrom: 從貼文 ID 開始的索引 isLocked: 該帳戶已獲得以下批准 isModerator: 板主 isAdmin: 管理員 -isPatron: Calckey 項目贊助者 +isPatron: Firefish 項目贊助者 silencedWarning: 顯示此頁面是因為這些使用者來自您伺服器管理員已靜音的伺服器,因此他們可能是垃圾訊息。 signupsDisabled: 該伺服器上的註冊當前已被禁用,但您隨時可以在另一台伺服器上註冊!或是您有該伺服器的邀請碼,請在下面輸入。 showPopup: 通過彈出式視窗通知用戶 diff --git a/package.json b/package.json index eccc170e0..8c29b5ba7 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,10 @@ { - "name": "calckey", - "version": "14.0.0-dev83", + "name": "firefish", + "version": "1.0.0", "codename": "aqua", "repository": { "type": "git", - "url": "https://codeberg.org/calckey/calckey.git" + "url": "https://gitlab.prometheus.systems/firefish/firefish.git" }, "packageManager": "pnpm@8.6.7", "private": true, diff --git a/packages/README.md b/packages/README.md index 0ed7c6403..ea04817f0 100644 --- a/packages/README.md +++ b/packages/README.md @@ -1,10 +1,10 @@ # 📦 Packages -This directory contains all of the packages Calckey uses. +This directory contains all of the packages Firefish uses. - `backend`: Main backend code written in TypeScript for NodeJS - `backend/native-utils`: Backend code written in Rust, bound to NodeJS by [NAPI-RS](https://napi.rs/) - `client`: Web interface written in Vue3 and TypeScript - `sw`: Web [Service Worker](https://developer.mozilla.org/en-US/docs/Web/API/Service_Worker_API) written in TypeScript -- `calckey-js`: TypeScript SDK for both backend and client, also published on [NPM](https://www.npmjs.com/package/calckey-js) for public use +- `firefish-js`: TypeScript SDK for both backend and client, also published on [NPM](https://www.npmjs.com/package/firefish-js) for public use - `megalodon`: TypeScript library used for partial Mastodon API compatibility diff --git a/packages/backend/assets/api-doc.png b/packages/backend/assets/api-doc.png index 95fe6977f..c5594fff9 100644 Binary files a/packages/backend/assets/api-doc.png and b/packages/backend/assets/api-doc.png differ diff --git a/packages/backend/assets/apple-touch-icon.png b/packages/backend/assets/apple-touch-icon.png index 35963d8f0..e9e0ac473 100644 Binary files a/packages/backend/assets/apple-touch-icon.png and b/packages/backend/assets/apple-touch-icon.png differ diff --git a/packages/backend/assets/badges/CREDITS b/packages/backend/assets/badges/CREDITS deleted file mode 100644 index 678ee543a..000000000 --- a/packages/backend/assets/badges/CREDITS +++ /dev/null @@ -1,7 +0,0 @@ -All images om this directory are illustrated by Henki (https://www.youtube.com/c/Henkiwashere) -Please show them some love, they're an awesome artist! - -Character design by ThatOneCalculator (https://t1c.dev) - -The images in this directory are complete redraws based off of the original Misskey error images. -The artist and license of said original images is sadly unknown. diff --git a/packages/backend/assets/badges/LICENSE b/packages/backend/assets/badges/LICENSE deleted file mode 100644 index 795087c26..000000000 --- a/packages/backend/assets/badges/LICENSE +++ /dev/null @@ -1,427 +0,0 @@ -Attribution-ShareAlike 4.0 International - -======================================================================= - -Creative Commons Corporation ("Creative Commons") is not a law firm and -does not provide legal services or legal advice. Distribution of -Creative Commons public licenses does not create a lawyer-client or -other relationship. Creative Commons makes its licenses and related -information available on an "as-is" basis. Creative Commons gives no -warranties regarding its licenses, any material licensed under their -terms and conditions, or any related information. Creative Commons -disclaims all liability for damages resulting from their use to the -fullest extent possible. - -Using Creative Commons Public Licenses - -Creative Commons public licenses provide a standard set of terms and -conditions that creators and other rights holders may use to share -original works of authorship and other material subject to copyright -and certain other rights specified in the public license below. The -following considerations are for informational purposes only, are not -exhaustive, and do not form part of our licenses. - - Considerations for licensors: Our public licenses are - intended for use by those authorized to give the public - permission to use material in ways otherwise restricted by - copyright and certain other rights. Our licenses are - irrevocable. Licensors should read and understand the terms - and conditions of the license they choose before applying it. - Licensors should also secure all rights necessary before - applying our licenses so that the public can reuse the - material as expected. Licensors should clearly mark any - material not subject to the license. This includes other CC- - licensed material, or material used under an exception or - limitation to copyright. More considerations for licensors: - wiki.creativecommons.org/Considerations_for_licensors - - Considerations for the public: By using one of our public - licenses, a licensor grants the public permission to use the - licensed material under specified terms and conditions. If - the licensor's permission is not necessary for any reason--for - example, because of any applicable exception or limitation to - copyright--then that use is not regulated by the license. Our - licenses grant only permissions under copyright and certain - other rights that a licensor has authority to grant. Use of - the licensed material may still be restricted for other - reasons, including because others have copyright or other - rights in the material. A licensor may make special requests, - such as asking that all changes be marked or described. - Although not required by our licenses, you are encouraged to - respect those requests where reasonable. More considerations - for the public: - wiki.creativecommons.org/Considerations_for_licensees - -======================================================================= - -Creative Commons Attribution-ShareAlike 4.0 International Public -License - -By exercising the Licensed Rights (defined below), You accept and agree -to be bound by the terms and conditions of this Creative Commons -Attribution-ShareAlike 4.0 International Public License ("Public -License"). To the extent this Public License may be interpreted as a -contract, You are granted the Licensed Rights in consideration of Your -acceptance of these terms and conditions, and the Licensor grants You -such rights in consideration of benefits the Licensor receives from -making the Licensed Material available under these terms and -conditions. - - -Section 1 -- Definitions. - - a. Adapted Material means material subject to Copyright and Similar - Rights that is derived from or based upon the Licensed Material - and in which the Licensed Material is translated, altered, - arranged, transformed, or otherwise modified in a manner requiring - permission under the Copyright and Similar Rights held by the - Licensor. For purposes of this Public License, where the Licensed - Material is a musical work, performance, or sound recording, - Adapted Material is always produced where the Licensed Material is - synched in timed relation with a moving image. - - b. Adapter's License means the license You apply to Your Copyright - and Similar Rights in Your contributions to Adapted Material in - accordance with the terms and conditions of this Public License. - - c. BY-SA Compatible License means a license listed at - creativecommons.org/compatiblelicenses, approved by Creative - Commons as essentially the equivalent of this Public License. - - d. Copyright and Similar Rights means copyright and/or similar rights - closely related to copyright including, without limitation, - performance, broadcast, sound recording, and Sui Generis Database - Rights, without regard to how the rights are labeled or - categorized. For purposes of this Public License, the rights - specified in Section 2(b)(1)-(2) are not Copyright and Similar - Rights. - - e. Effective Technological Measures means those measures that, in the - absence of proper authority, may not be circumvented under laws - fulfilling obligations under Article 11 of the WIPO Copyright - Treaty adopted on December 20, 1996, and/or similar international - agreements. - - f. Exceptions and Limitations means fair use, fair dealing, and/or - any other exception or limitation to Copyright and Similar Rights - that applies to Your use of the Licensed Material. - - g. License Elements means the license attributes listed in the name - of a Creative Commons Public License. The License Elements of this - Public License are Attribution and ShareAlike. - - h. Licensed Material means the artistic or literary work, database, - or other material to which the Licensor applied this Public - License. - - i. Licensed Rights means the rights granted to You subject to the - terms and conditions of this Public License, which are limited to - all Copyright and Similar Rights that apply to Your use of the - Licensed Material and that the Licensor has authority to license. - - j. Licensor means the individual(s) or entity(ies) granting rights - under this Public License. - - k. Share means to provide material to the public by any means or - process that requires permission under the Licensed Rights, such - as reproduction, public display, public performance, distribution, - dissemination, communication, or importation, and to make material - available to the public including in ways that members of the - public may access the material from a place and at a time - individually chosen by them. - - l. Sui Generis Database Rights means rights other than copyright - resulting from Directive 96/9/EC of the European Parliament and of - the Council of 11 March 1996 on the legal protection of databases, - as amended and/or succeeded, as well as other essentially - equivalent rights anywhere in the world. - - m. You means the individual or entity exercising the Licensed Rights - under this Public License. Your has a corresponding meaning. - - -Section 2 -- Scope. - - a. License grant. - - 1. Subject to the terms and conditions of this Public License, - the Licensor hereby grants You a worldwide, royalty-free, - non-sublicensable, non-exclusive, irrevocable license to - exercise the Licensed Rights in the Licensed Material to: - - a. reproduce and Share the Licensed Material, in whole or - in part; and - - b. produce, reproduce, and Share Adapted Material. - - 2. Exceptions and Limitations. For the avoidance of doubt, where - Exceptions and Limitations apply to Your use, this Public - License does not apply, and You do not need to comply with - its terms and conditions. - - 3. Term. The term of this Public License is specified in Section - 6(a). - - 4. Media and formats; technical modifications allowed. The - Licensor authorizes You to exercise the Licensed Rights in - all media and formats whether now known or hereafter created, - and to make technical modifications necessary to do so. The - Licensor waives and/or agrees not to assert any right or - authority to forbid You from making technical modifications - necessary to exercise the Licensed Rights, including - technical modifications necessary to circumvent Effective - Technological Measures. For purposes of this Public License, - simply making modifications authorized by this Section 2(a) - (4) never produces Adapted Material. - - 5. Downstream recipients. - - a. Offer from the Licensor -- Licensed Material. Every - recipient of the Licensed Material automatically - receives an offer from the Licensor to exercise the - Licensed Rights under the terms and conditions of this - Public License. - - b. Additional offer from the Licensor -- Adapted Material. - Every recipient of Adapted Material from You - automatically receives an offer from the Licensor to - exercise the Licensed Rights in the Adapted Material - under the conditions of the Adapter's License You apply. - - c. No downstream restrictions. You may not offer or impose - any additional or different terms or conditions on, or - apply any Effective Technological Measures to, the - Licensed Material if doing so restricts exercise of the - Licensed Rights by any recipient of the Licensed - Material. - - 6. No endorsement. Nothing in this Public License constitutes or - may be construed as permission to assert or imply that You - are, or that Your use of the Licensed Material is, connected - with, or sponsored, endorsed, or granted official status by, - the Licensor or others designated to receive attribution as - provided in Section 3(a)(1)(A)(i). - - b. Other rights. - - 1. Moral rights, such as the right of integrity, are not - licensed under this Public License, nor are publicity, - privacy, and/or other similar personality rights; however, to - the extent possible, the Licensor waives and/or agrees not to - assert any such rights held by the Licensor to the limited - extent necessary to allow You to exercise the Licensed - Rights, but not otherwise. - - 2. Patent and trademark rights are not licensed under this - Public License. - - 3. To the extent possible, the Licensor waives any right to - collect royalties from You for the exercise of the Licensed - Rights, whether directly or through a collecting society - under any voluntary or waivable statutory or compulsory - licensing scheme. In all other cases the Licensor expressly - reserves any right to collect such royalties. - - -Section 3 -- License Conditions. - -Your exercise of the Licensed Rights is expressly made subject to the -following conditions. - - a. Attribution. - - 1. If You Share the Licensed Material (including in modified - form), You must: - - a. retain the following if it is supplied by the Licensor - with the Licensed Material: - - i. identification of the creator(s) of the Licensed - Material and any others designated to receive - attribution, in any reasonable manner requested by - the Licensor (including by pseudonym if - designated); - - ii. a copyright notice; - - iii. a notice that refers to this Public License; - - iv. a notice that refers to the disclaimer of - warranties; - - v. a URI or hyperlink to the Licensed Material to the - extent reasonably practicable; - - b. indicate if You modified the Licensed Material and - retain an indication of any previous modifications; and - - c. indicate the Licensed Material is licensed under this - Public License, and include the text of, or the URI or - hyperlink to, this Public License. - - 2. You may satisfy the conditions in Section 3(a)(1) in any - reasonable manner based on the medium, means, and context in - which You Share the Licensed Material. For example, it may be - reasonable to satisfy the conditions by providing a URI or - hyperlink to a resource that includes the required - information. - - 3. If requested by the Licensor, You must remove any of the - information required by Section 3(a)(1)(A) to the extent - reasonably practicable. - - b. ShareAlike. - - In addition to the conditions in Section 3(a), if You Share - Adapted Material You produce, the following conditions also apply. - - 1. The Adapter's License You apply must be a Creative Commons - license with the same License Elements, this version or - later, or a BY-SA Compatible License. - - 2. You must include the text of, or the URI or hyperlink to, the - Adapter's License You apply. You may satisfy this condition - in any reasonable manner based on the medium, means, and - context in which You Share Adapted Material. - - 3. You may not offer or impose any additional or different terms - or conditions on, or apply any Effective Technological - Measures to, Adapted Material that restrict exercise of the - rights granted under the Adapter's License You apply. - - -Section 4 -- Sui Generis Database Rights. - -Where the Licensed Rights include Sui Generis Database Rights that -apply to Your use of the Licensed Material: - - a. for the avoidance of doubt, Section 2(a)(1) grants You the right - to extract, reuse, reproduce, and Share all or a substantial - portion of the contents of the database; - - b. if You include all or a substantial portion of the database - contents in a database in which You have Sui Generis Database - Rights, then the database in which You have Sui Generis Database - Rights (but not its individual contents) is Adapted Material, - including for purposes of Section 3(b); and - - c. You must comply with the conditions in Section 3(a) if You Share - all or a substantial portion of the contents of the database. - -For the avoidance of doubt, this Section 4 supplements and does not -replace Your obligations under this Public License where the Licensed -Rights include other Copyright and Similar Rights. - - -Section 5 -- Disclaimer of Warranties and Limitation of Liability. - - a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE - EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS - AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF - ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, - IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, - WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR - PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, - ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT - KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT - ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. - - b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE - TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, - NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, - INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, - COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR - USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN - ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR - DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR - IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. - - c. The disclaimer of warranties and limitation of liability provided - above shall be interpreted in a manner that, to the extent - possible, most closely approximates an absolute disclaimer and - waiver of all liability. - - -Section 6 -- Term and Termination. - - a. This Public License applies for the term of the Copyright and - Similar Rights licensed here. However, if You fail to comply with - this Public License, then Your rights under this Public License - terminate automatically. - - b. Where Your right to use the Licensed Material has terminated under - Section 6(a), it reinstates: - - 1. automatically as of the date the violation is cured, provided - it is cured within 30 days of Your discovery of the - violation; or - - 2. upon express reinstatement by the Licensor. - - For the avoidance of doubt, this Section 6(b) does not affect any - right the Licensor may have to seek remedies for Your violations - of this Public License. - - c. For the avoidance of doubt, the Licensor may also offer the - Licensed Material under separate terms or conditions or stop - distributing the Licensed Material at any time; however, doing so - will not terminate this Public License. - - d. Sections 1, 5, 6, 7, and 8 survive termination of this Public - License. - - -Section 7 -- Other Terms and Conditions. - - a. The Licensor shall not be bound by any additional or different - terms or conditions communicated by You unless expressly agreed. - - b. Any arrangements, understandings, or agreements regarding the - Licensed Material not stated herein are separate from and - independent of the terms and conditions of this Public License. - - -Section 8 -- Interpretation. - - a. For the avoidance of doubt, this Public License does not, and - shall not be interpreted to, reduce, limit, restrict, or impose - conditions on any use of the Licensed Material that could lawfully - be made without permission under this Public License. - - b. To the extent possible, if any provision of this Public License is - deemed unenforceable, it shall be automatically reformed to the - minimum extent necessary to make it enforceable. If the provision - cannot be reformed, it shall be severed from this Public License - without affecting the enforceability of the remaining terms and - conditions. - - c. No term or condition of this Public License will be waived and no - failure to comply consented to unless expressly agreed to by the - Licensor. - - d. Nothing in this Public License constitutes or may be interpreted - as a limitation upon, or waiver of, any privileges and immunities - that apply to the Licensor or You, including from the legal - processes of any jurisdiction or authority. - - -======================================================================= - -Creative Commons is not a party to its public licenses. -Notwithstanding, Creative Commons may elect to apply one of its public -licenses to material it publishes and in those instances will be -considered the “Licensor.” The text of the Creative Commons public -licenses is dedicated to the public domain under the CC0 Public Domain -Dedication. Except for the limited purpose of indicating that material -is shared under a Creative Commons public license or as otherwise -permitted by the Creative Commons policies published at -creativecommons.org/policies, Creative Commons does not authorize the -use of the trademark "Creative Commons" or any other trademark or logo -of Creative Commons without its prior written consent including, -without limitation, in connection with any unauthorized modifications -to any of its public licenses or any other arrangements, -understandings, or agreements concerning use of licensed material. For -the avoidance of doubt, this paragraph does not form part of the public -licenses. - -Creative Commons may be contacted at creativecommons.org. diff --git a/packages/backend/assets/badges/error.png b/packages/backend/assets/badges/error.png index e90912b40..046f18e14 100644 Binary files a/packages/backend/assets/badges/error.png and b/packages/backend/assets/badges/error.png differ diff --git a/packages/backend/assets/badges/error_original.png b/packages/backend/assets/badges/error_original.png deleted file mode 100644 index 3fef1053a..000000000 Binary files a/packages/backend/assets/badges/error_original.png and /dev/null differ diff --git a/packages/backend/assets/badges/info.png b/packages/backend/assets/badges/info.png index ac70544e4..c6ab300a7 100644 Binary files a/packages/backend/assets/badges/info.png and b/packages/backend/assets/badges/info.png differ diff --git a/packages/backend/assets/badges/info_original.png b/packages/backend/assets/badges/info_original.png deleted file mode 100644 index 4f148ba61..000000000 Binary files a/packages/backend/assets/badges/info_original.png and /dev/null differ diff --git a/packages/backend/assets/badges/not-found.png b/packages/backend/assets/badges/not-found.png index 73d611e0e..63356530c 100644 Binary files a/packages/backend/assets/badges/not-found.png and b/packages/backend/assets/badges/not-found.png differ diff --git a/packages/backend/assets/badges/not-found_original.png b/packages/backend/assets/badges/not-found_original.png deleted file mode 100644 index 3022473dc..000000000 Binary files a/packages/backend/assets/badges/not-found_original.png and /dev/null differ diff --git a/packages/backend/assets/favicon.png b/packages/backend/assets/favicon.png index 0f482d7f0..983e0d700 100644 Binary files a/packages/backend/assets/favicon.png and b/packages/backend/assets/favicon.png differ diff --git a/packages/backend/assets/favicon.svg b/packages/backend/assets/favicon.svg index e1a3abbbc..981fe2f8f 100644 Binary files a/packages/backend/assets/favicon.svg and b/packages/backend/assets/favicon.svg differ diff --git a/packages/backend/assets/icons/192.png b/packages/backend/assets/icons/192.png index 536e01cc1..da83b75bc 100644 Binary files a/packages/backend/assets/icons/192.png and b/packages/backend/assets/icons/192.png differ diff --git a/packages/backend/assets/icons/512.png b/packages/backend/assets/icons/512.png index 645526853..8e74853b3 100644 Binary files a/packages/backend/assets/icons/512.png and b/packages/backend/assets/icons/512.png differ diff --git a/packages/backend/assets/icons/maskable.png b/packages/backend/assets/icons/maskable.png index 44b214ca7..15828d749 100644 Binary files a/packages/backend/assets/icons/maskable.png and b/packages/backend/assets/icons/maskable.png differ diff --git a/packages/backend/assets/icons/monochrome.png b/packages/backend/assets/icons/monochrome.png index 75894e7a4..cce643601 100644 Binary files a/packages/backend/assets/icons/monochrome.png and b/packages/backend/assets/icons/monochrome.png differ diff --git a/packages/backend/assets/inverse wordmark.png b/packages/backend/assets/inverse wordmark.png deleted file mode 100644 index 645526853..000000000 Binary files a/packages/backend/assets/inverse wordmark.png and /dev/null differ diff --git a/packages/backend/assets/inverse wordmark.svg b/packages/backend/assets/inverse wordmark.svg deleted file mode 100644 index c0110540e..000000000 Binary files a/packages/backend/assets/inverse wordmark.svg and /dev/null differ diff --git a/packages/backend/assets/mi-white.png b/packages/backend/assets/mi-white.png index 2a186a9bc..360db4fa7 100644 Binary files a/packages/backend/assets/mi-white.png and b/packages/backend/assets/mi-white.png differ diff --git a/packages/backend/assets/notification-badges/LICENSE b/packages/backend/assets/notification-badges/LICENSE index 841c4c682..28b0b502d 100644 --- a/packages/backend/assets/notification-badges/LICENSE +++ b/packages/backend/assets/notification-badges/LICENSE @@ -1,5 +1,24 @@ -Font Awesome Icons +Phosphor Icons ------------------------- -Ⓒ Font Awesome -CC BY 4.0 (https://creativecommons.org/licenses/by/4.0/) +MIT License + +Copyright (c) 2020 Phosphor Icons + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/packages/backend/assets/notification-badges/at.png b/packages/backend/assets/notification-badges/at.png index d1492856d..4ffb1c30b 100644 Binary files a/packages/backend/assets/notification-badges/at.png and b/packages/backend/assets/notification-badges/at.png differ diff --git a/packages/backend/assets/notification-badges/check.png b/packages/backend/assets/notification-badges/check.png index baeb76bab..e1f6d41d8 100644 Binary files a/packages/backend/assets/notification-badges/check.png and b/packages/backend/assets/notification-badges/check.png differ diff --git a/packages/backend/assets/notification-badges/clipboard-check-solid.png b/packages/backend/assets/notification-badges/clipboard-check-solid.png index d8cdfa9da..65c62187e 100644 Binary files a/packages/backend/assets/notification-badges/clipboard-check-solid.png and b/packages/backend/assets/notification-badges/clipboard-check-solid.png differ diff --git a/packages/backend/assets/notification-badges/clock.png b/packages/backend/assets/notification-badges/clock.png index 9323f8f30..1beea217e 100644 Binary files a/packages/backend/assets/notification-badges/clock.png and b/packages/backend/assets/notification-badges/clock.png differ diff --git a/packages/backend/assets/notification-badges/comments.png b/packages/backend/assets/notification-badges/comments.png index bc8a1c35b..515799c69 100644 Binary files a/packages/backend/assets/notification-badges/comments.png and b/packages/backend/assets/notification-badges/comments.png differ diff --git a/packages/backend/assets/notification-badges/id-card-alt.png b/packages/backend/assets/notification-badges/id-card-alt.png index 67e1410e3..9bcaf26ff 100644 Binary files a/packages/backend/assets/notification-badges/id-card-alt.png and b/packages/backend/assets/notification-badges/id-card-alt.png differ diff --git a/packages/backend/assets/notification-badges/plus.png b/packages/backend/assets/notification-badges/plus.png index 05362c122..3e114247f 100644 Binary files a/packages/backend/assets/notification-badges/plus.png and b/packages/backend/assets/notification-badges/plus.png differ diff --git a/packages/backend/assets/notification-badges/poll-h.png b/packages/backend/assets/notification-badges/poll-h.png index 3b7ded665..825b69c63 100644 Binary files a/packages/backend/assets/notification-badges/poll-h.png and b/packages/backend/assets/notification-badges/poll-h.png differ diff --git a/packages/backend/assets/notification-badges/quote-right.png b/packages/backend/assets/notification-badges/quote-right.png index 0fa483765..a41a15b49 100644 Binary files a/packages/backend/assets/notification-badges/quote-right.png and b/packages/backend/assets/notification-badges/quote-right.png differ diff --git a/packages/backend/assets/notification-badges/reply.png b/packages/backend/assets/notification-badges/reply.png index 77021f71a..53d7cf3a1 100644 Binary files a/packages/backend/assets/notification-badges/reply.png and b/packages/backend/assets/notification-badges/reply.png differ diff --git a/packages/backend/assets/notification-badges/user-plus.png b/packages/backend/assets/notification-badges/user-plus.png index 9d376d04d..f47144576 100644 Binary files a/packages/backend/assets/notification-badges/user-plus.png and b/packages/backend/assets/notification-badges/user-plus.png differ diff --git a/packages/backend/assets/redoc.html b/packages/backend/assets/redoc.html index 6f48c1766..403af4bbf 100644 --- a/packages/backend/assets/redoc.html +++ b/packages/backend/assets/redoc.html @@ -1,7 +1,7 @@ - Calckey API + Firefish API diff --git a/packages/backend/assets/splash.png b/packages/backend/assets/splash.png index 8c1da72fb..5f026e354 100644 Binary files a/packages/backend/assets/splash.png and b/packages/backend/assets/splash.png differ diff --git a/packages/backend/assets/splash.svg b/packages/backend/assets/splash.svg new file mode 100644 index 000000000..18a4db173 Binary files /dev/null and b/packages/backend/assets/splash.svg differ diff --git a/packages/backend/migration/1557761316509-AddSomeUrls.js b/packages/backend/migration/1557761316509-AddSomeUrls.js index 9365643bb..9839fe010 100644 --- a/packages/backend/migration/1557761316509-AddSomeUrls.js +++ b/packages/backend/migration/1557761316509-AddSomeUrls.js @@ -4,10 +4,10 @@ export class AddSomeUrls1557761316509 { `ALTER TABLE "meta" ADD "ToSUrl" character varying(512)`, ); await queryRunner.query( - `ALTER TABLE "meta" ADD "repositoryUrl" character varying(512) NOT NULL DEFAULT 'https://codeberg.org/calckey/calckey'`, + `ALTER TABLE "meta" ADD "repositoryUrl" character varying(512) NOT NULL DEFAULT 'https://codeberg.org/firefish/firefish'`, ); await queryRunner.query( - `ALTER TABLE "meta" ADD "feedbackUrl" character varying(512) DEFAULT 'https://codeberg.org/calckey/calckey/issues'`, + `ALTER TABLE "meta" ADD "feedbackUrl" character varying(512) DEFAULT 'https://codeberg.org/firefish/firefish/issues'`, ); } async down(queryRunner) { diff --git a/packages/backend/migration/1658203170545calckey.js b/packages/backend/migration/1658203170545firefish.js similarity index 58% rename from packages/backend/migration/1658203170545calckey.js rename to packages/backend/migration/1658203170545firefish.js index 95c3f05d3..b2f67f56d 100644 --- a/packages/backend/migration/1658203170545calckey.js +++ b/packages/backend/migration/1658203170545firefish.js @@ -6,10 +6,10 @@ export class calckey1658203170545 { `UPDATE meta SET "useStarForReactionFallback" = TRUE;`, ); await queryRunner.query( - `UPDATE meta SET "repositoryUrl" = 'https://codeberg/calckey/calckey'`, + `UPDATE meta SET "repositoryUrl" = 'https://codeberg/firefish/firefish'`, ); await queryRunner.query( - `UPDATE meta SET "feedbackUrl" = 'https://codeberg/calckey/calckey/issues'`, + `UPDATE meta SET "feedbackUrl" = 'https://codeberg/firefish/firefish/issues'`, ); } @@ -18,10 +18,10 @@ export class calckey1658203170545 { `UPDATE meta SET "useStarForReactionFallback" = FALSE;`, ); await queryRunner.query( - `UPDATE meta SET "repositoryUrl" = 'https://codeberg/calckey/calckey'`, + `UPDATE meta SET "repositoryUrl" = 'https://codeberg/firefish/firefish'`, ); await queryRunner.query( - `UPDATE meta SET "feedbackUrl" = 'https://codeberg/calckey/calckey/issues'`, + `UPDATE meta SET "feedbackUrl" = 'https://codeberg/firefish/firefish/issues'`, ); } } diff --git a/packages/backend/migration/1658981842728FixCalckey.js b/packages/backend/migration/1658981842728FixCalckey.js index 1a0305538..96dfd77ac 100644 --- a/packages/backend/migration/1658981842728FixCalckey.js +++ b/packages/backend/migration/1658981842728FixCalckey.js @@ -1,15 +1,15 @@ -export class FixCalckey1658981842728 { - name = "FixCalckey1658981842728"; +export class FixFirefish1658981842728 { + name = "FixFirefish1658981842728"; async up(queryRunner) { await queryRunner.query( `UPDATE "meta" SET "useStarForReactionFallback" = TRUE;`, ); await queryRunner.query( - `UPDATE "meta" SET "repositoryUrl" = 'https://codeberg/calckey/calckey'`, + `UPDATE "meta" SET "repositoryUrl" = 'https://codeberg/firefish/firefish'`, ); await queryRunner.query( - `UPDATE "meta" SET "feedbackUrl" = 'https://codeberg/calckey/calckey/issues'`, + `UPDATE "meta" SET "feedbackUrl" = 'https://codeberg/firefish/firefish/issues'`, ); } @@ -18,10 +18,10 @@ export class FixCalckey1658981842728 { `UPDATE "meta" SET "useStarForReactionFallback" = FALSE;`, ); await queryRunner.query( - `UPDATE "meta" SET "repositoryUrl" = 'https://codeberg/calckey/calckey'`, + `UPDATE "meta" SET "repositoryUrl" = 'https://codeberg/firefish/firefish'`, ); await queryRunner.query( - `UPDATE "meta" SET "feedbackUrl" = 'https://codeberg/calckey/calckey/issues'`, + `UPDATE "meta" SET "feedbackUrl" = 'https://codeberg/firefish/firefish/issues'`, ); } } diff --git a/packages/backend/migration/1668831378728FixCalckeyAgain.js b/packages/backend/migration/1668831378728FixCalckeyAgain.js index c65dd54cd..33db2b15a 100644 --- a/packages/backend/migration/1668831378728FixCalckeyAgain.js +++ b/packages/backend/migration/1668831378728FixCalckeyAgain.js @@ -1,5 +1,5 @@ -export class FixCalckeyAgain1668831378728 { - name = "FixCalckeyAgain1668831378728"; +export class FixFirefishAgain1668831378728 { + name = "FixFirefishAgain1668831378728"; async up(queryRunner) { await queryRunner.query( diff --git a/packages/backend/migration/1671388343000-CalckeyRepoMove.js b/packages/backend/migration/1671388343000-CalckeyRepoMove.js index 60550f044..e11ddcb43 100644 --- a/packages/backend/migration/1671388343000-CalckeyRepoMove.js +++ b/packages/backend/migration/1671388343000-CalckeyRepoMove.js @@ -1,23 +1,23 @@ -/* "CalckeyRepoMove1671388343000" is a class that updates the "useStarForReactionFallback" column in +/* "FirefishRepoMove1671388343000" is a class that updates the "useStarForReactionFallback" column in the "meta" table to TRUE */ -export class CalckeyRepoMove1671388343000 { - name = "CalckeyRepoMove1671388343000"; +export class FirefishRepoMove1671388343000 { + name = "FirefishRepoMove1671388343000"; async up(queryRunner) { await queryRunner.query( - `UPDATE meta SET "repositoryUrl" = 'https://codeberg/calckey/calckey'`, + `UPDATE meta SET "repositoryUrl" = 'https://codeberg/firefish/firefish'`, ); await queryRunner.query( - `UPDATE meta SET "feedbackUrl" = 'https://codeberg/calckey/calckey/issues'`, + `UPDATE meta SET "feedbackUrl" = 'https://codeberg/firefish/firefish/issues'`, ); } async down(queryRunner) { await queryRunner.query( - `UPDATE meta SET "repositoryUrl" = 'https://codeberg/calckey/calckey'`, + `UPDATE meta SET "repositoryUrl" = 'https://codeberg/firefish/firefish'`, ); await queryRunner.query( - `UPDATE meta SET "feedbackUrl" = 'https://codeberg/calckey/calckey/issues'`, + `UPDATE meta SET "feedbackUrl" = 'https://codeberg/firefish/firefish/issues'`, ); } } diff --git a/packages/backend/migration/1679269929000-fix-repo.js b/packages/backend/migration/1679269929000-fix-repo.js index 3571da4f5..2abcd71bb 100644 --- a/packages/backend/migration/1679269929000-fix-repo.js +++ b/packages/backend/migration/1679269929000-fix-repo.js @@ -3,19 +3,19 @@ export class FixRepo1679269929000 { async up(queryRunner) { await queryRunner.query( - `UPDATE meta SET "repositoryUrl" = 'https://codeberg.org/calckey/calckey'`, + `UPDATE meta SET "repositoryUrl" = 'https://codeberg.org/firefish/firefish'`, ); await queryRunner.query( - `UPDATE meta SET "feedbackUrl" = 'https://codeberg.org/calckey/calckey/issues'`, + `UPDATE meta SET "feedbackUrl" = 'https://codeberg.org/firefish/firefish/issues'`, ); } async down(queryRunner) { await queryRunner.query( - `UPDATE meta SET "repositoryUrl" = 'https://codeberg.org/calckey/calckey'`, + `UPDATE meta SET "repositoryUrl" = 'https://codeberg.org/firefish/firefish'`, ); await queryRunner.query( - `UPDATE meta SET "feedbackUrl" = 'https://codeberg.org/calckey/calckey/issues'`, + `UPDATE meta SET "feedbackUrl" = 'https://codeberg.org/firefish/firefish/issues'`, ); } } diff --git a/packages/backend/migration/1689739513827-firefish-repo.js b/packages/backend/migration/1689739513827-firefish-repo.js new file mode 100644 index 000000000..a2185fbc6 --- /dev/null +++ b/packages/backend/migration/1689739513827-firefish-repo.js @@ -0,0 +1,21 @@ +export class FirefishRepo1689739513827 { + name = "FirefishRepo1689739513827"; + + async up(queryRunner) { + await queryRunner.query( + `UPDATE meta SET "repositoryUrl" = 'https://gitlab.prometheus.systems/firefish/firefish'`, + ); + await queryRunner.query( + `UPDATE meta SET "feedbackUrl" = 'https://gitlab.prometheus.systems/firefish/firefish/issues'`, + ); + } + + async down(queryRunner) { + await queryRunner.query( + `UPDATE meta SET "repositoryUrl" = 'https://codeberg.org/calckey/calckey'`, + ); + await queryRunner.query( + `UPDATE meta SET "feedbackUrl" = 'https://codeberg.org/calckey/calckey/firefish/firefish/issues'`, + ); + } +} diff --git a/packages/backend/native-utils/src/mastodon_api.rs b/packages/backend/native-utils/src/mastodon_api.rs index 6c27d3495..150a76245 100644 --- a/packages/backend/native-utils/src/mastodon_api.rs +++ b/packages/backend/native-utils/src/mastodon_api.rs @@ -8,7 +8,7 @@ static CHAR_COLLECTION: &str = "0123456789abcdefghijklmnopqrstuvwxyz"; #[napi] pub enum IdConvertType { MastodonId, - CalckeyId, + FirefishId, } #[napi] @@ -23,7 +23,7 @@ pub fn convert_id(in_id: String, id_convert_type: IdConvertType) -> napi::Result Ok(out.to_string()) } - CalckeyId => { + FirefishId => { let mut input: i128 = match in_id.parse() { Ok(s) => s, Err(_) => { diff --git a/packages/backend/native-utils/src/model/schema/app.rs b/packages/backend/native-utils/src/model/schema/app.rs index 5f859ecb3..1da7b3520 100644 --- a/packages/backend/native-utils/src/model/schema/app.rs +++ b/packages/backend/native-utils/src/model/schema/app.rs @@ -18,7 +18,7 @@ pub struct App { pub is_authorized: Option, } -/// This represents `permissions` in `packages/calckey-js/src/consts.ts`. +/// This represents `permissions` in `packages/firefish-js/src/consts.ts`. #[derive(Clone, Debug, PartialEq, Eq, JsonSchema, ToSchema)] pub enum AppPermission { #[serde(rename = "read:account")] diff --git a/packages/backend/package.json b/packages/backend/package.json index 99f1cadd5..cc8f4747e 100644 --- a/packages/backend/package.json +++ b/packages/backend/package.json @@ -50,7 +50,7 @@ "blurhash": "2.0.5", "bull": "4.10.4", "cacheable-lookup": "7.0.0", - "calckey-js": "workspace:*", + "firefish-js": "workspace:*", "cbor": "8.1.0", "chalk": "5.3.0", "chalk-template": "0.4.0", diff --git a/packages/backend/src/boot/index.ts b/packages/backend/src/boot/index.ts index e4f2ed7b1..c78d88838 100644 --- a/packages/backend/src/boot/index.ts +++ b/packages/backend/src/boot/index.ts @@ -19,7 +19,7 @@ const ev = new Xev(); * Init process */ export default async function () { - process.title = `Calckey (${cluster.isPrimary ? "master" : "worker"})`; + process.title = `Firefish (${cluster.isPrimary ? "master" : "worker"})`; if (cluster.isPrimary || envOption.disableClustering) { await masterMain(); @@ -42,7 +42,7 @@ export default async function () { os.setPriority(10); } - // For when Calckey is started in a child process during unit testing. + // For when Firefish is started in a child process during unit testing. // Otherwise, process.send cannot be used, so start it. if (process.send) { process.send("ok"); diff --git a/packages/backend/src/boot/master.ts b/packages/backend/src/boot/master.ts index bee8c8b0c..3f779b3b9 100644 --- a/packages/backend/src/boot/master.ts +++ b/packages/backend/src/boot/master.ts @@ -29,18 +29,19 @@ const themeColor = chalk.hex("#31748f"); function greet() { if (!envOption.quiet) { - //#region Calckey logo + //#region Firefish logo const v = `v${meta.version}`; - console.log(themeColor(" ___ _ _ ")); - console.log(themeColor(" / __\\__ _| | ___| | _____ _ _ ")); - console.log(themeColor(" / / / _` | |/ __| |/ / _ | | |")); - console.log(themeColor("/ /__| (_| | | (__| < __/ |_| |")); - console.log(themeColor("\\____/\\__,_|_|\\___|_|\\_\\___|\\__, |")); - console.log(themeColor(" (___/ ")); + console.log(themeColor(" ▄▄▄▄▄▄▄ ▄▄▄ ▄▄▄▄▄▄ ▄▄▄▄▄▄▄ ▄▄▄▄▄▄▄ ▄▄▄ ▄▄▄▄▄▄▄ ▄▄ ▄▄ ◯ ")); + console.log(themeColor("█ █ █ ▄ █ █ █ █ █ █ █ █ █ ○ ▄ ▄")); + console.log(themeColor("█ ▄▄▄█ █ █ █ █ █ ▄▄▄█ ▄▄▄█ █ ▄▄▄▄▄█ █▄█ █ ⚬ █▄▄ █▄▄ ")); + console.log(themeColor("█ █▄▄▄█ █ █▄▄█▄█ █▄▄▄█ █▄▄▄█ █ █▄▄▄▄▄█ █ ▄▄▄▄▄▄ ▄")); + console.log(themeColor("█ ▄▄▄█ █ ▄▄ █ ▄▄▄█ ▄▄▄█ █▄▄▄▄▄ █ ▄ █ █ █ █▄▄")); + console.log(themeColor("█ █ █ █ █ █ █ █▄▄▄█ █ █ █▄▄▄▄▄█ █ █ █ █ █ ● ● █")); + console.log(themeColor("█▄▄▄█ █▄▄▄█▄▄▄█ █▄█▄▄▄▄▄▄▄█▄▄▄█ █▄▄▄█▄▄▄▄▄▄▄█▄▄█ █▄▄█ ▀▄▄▄▄▄▄▀")); //#endregion console.log( - " Calckey is an open-source decentralized microblogging platform.", + " Firefish is an open-source decentralized microblogging platform.", ); console.log( chalk.rgb( @@ -48,7 +49,7 @@ function greet() { 136, 0, )( - " If you like Calckey, please consider starring or contributing to the repo. https://codeberg.org/calckey/calckey", + " If you like Firefish, please consider starring or contributing to the repo. https://gitlab.prometheus.systems/firefish/firefish", ), ); @@ -58,8 +59,8 @@ function greet() { ); } - bootLogger.info("Welcome to Calckey!"); - bootLogger.info(`Calckey v${meta.version}`, null, true); + bootLogger.info("Welcome to Firefish!"); + bootLogger.info(`Firefish v${meta.version}`, null, true); } /** @@ -81,7 +82,7 @@ export async function masterMain() { process.exit(1); } - bootLogger.succ("Calckey initialized"); + bootLogger.succ("Firefish initialized"); if (!envOption.disableClustering) { await spawnWorkers(config.clusterLimit); diff --git a/packages/backend/src/config/load.ts b/packages/backend/src/config/load.ts index df163a8ac..7a67c4bd3 100644 --- a/packages/backend/src/config/load.ts +++ b/packages/backend/src/config/load.ts @@ -51,7 +51,7 @@ export default function load() { mixin.apiUrl = `${mixin.scheme}://${mixin.host}/api`; mixin.authUrl = `${mixin.scheme}://${mixin.host}/auth`; mixin.driveUrl = `${mixin.scheme}://${mixin.host}/files`; - mixin.userAgent = `Calckey/${meta.version} (${config.url})`; + mixin.userAgent = `Firefish/${meta.version} (${config.url})`; mixin.clientEntry = clientManifest["src/init.ts"]; if (!config.redis.prefix) config.redis.prefix = mixin.hostname; diff --git a/packages/backend/src/misc/fetch-meta.ts b/packages/backend/src/misc/fetch-meta.ts index b5426e31a..b3a5e30ae 100644 --- a/packages/backend/src/misc/fetch-meta.ts +++ b/packages/backend/src/misc/fetch-meta.ts @@ -18,8 +18,8 @@ export function metaToPugArgs(meta: Meta): object { return { img: meta.bannerUrl, - title: meta.name || "Calckey", - instanceName: meta.name || "Calckey", + title: meta.name || "Firefish", + instanceName: meta.name || "Firefish", desc: meta.description, icon: meta.iconUrl, splashIcon: splashIconUrl, diff --git a/packages/backend/src/models/entities/meta.ts b/packages/backend/src/models/entities/meta.ts index e90a5269a..1a1111e6e 100644 --- a/packages/backend/src/models/entities/meta.ts +++ b/packages/backend/src/models/entities/meta.ts @@ -143,7 +143,7 @@ export class Meta { @Column("varchar", { length: 512, array: true, - default: "{/featured,/channels,/explore,/pages,/about-calckey}", + default: "{/featured,/channels,/explore,/pages,/about-firefish}", }) public pinnedPages: string[]; @@ -436,14 +436,14 @@ export class Meta { @Column("varchar", { length: 512, - default: "https://codeberg.org/calckey/calckey", + default: "https://gitlab.prometheus.systems/firefish/firefish", nullable: false, }) public repositoryUrl: string; @Column("varchar", { length: 512, - default: "https://codeberg.org/calckey/calckey/issues/new", + default: "https://gitlab.prometheus.systems/firefish/firefish/issues/new", nullable: true, }) public feedbackUrl: string | null; diff --git a/packages/backend/src/models/schema/federation-instance.ts b/packages/backend/src/models/schema/federation-instance.ts index f793d40f6..7a8af7f51 100644 --- a/packages/backend/src/models/schema/federation-instance.ts +++ b/packages/backend/src/models/schema/federation-instance.ts @@ -19,7 +19,7 @@ export const packedFederationInstanceSchema = { type: "string", optional: false, nullable: false, - example: "calckey.example.com", + example: "firefish.example.com", }, usersCount: { type: "number", @@ -77,7 +77,7 @@ export const packedFederationInstanceSchema = { type: "string", optional: false, nullable: true, - example: "calckey", + example: "firefish", }, softwareVersion: { type: "string", diff --git a/packages/backend/src/models/schema/hashtag.ts b/packages/backend/src/models/schema/hashtag.ts index dacc51507..479ab88f9 100644 --- a/packages/backend/src/models/schema/hashtag.ts +++ b/packages/backend/src/models/schema/hashtag.ts @@ -5,7 +5,7 @@ export const packedHashtagSchema = { type: "string", optional: false, nullable: false, - example: "calckey", + example: "firefish", }, mentionedUsersCount: { type: "number", diff --git a/packages/backend/src/queue/processors/db/index.ts b/packages/backend/src/queue/processors/db/index.ts index 07fc8e6d5..d20fc2c71 100644 --- a/packages/backend/src/queue/processors/db/index.ts +++ b/packages/backend/src/queue/processors/db/index.ts @@ -13,7 +13,7 @@ import { deleteAccount } from "./delete-account.js"; import { importMuting } from "./import-muting.js"; import { importPosts } from "./import-posts.js"; import { importMastoPost } from "./import-masto-post.js"; -import { importCkPost } from "./import-calckey-post.js"; +import { importCkPost } from "./import-firefish-post.js"; import { importBlocking } from "./import-blocking.js"; import { importCustomEmojis } from "./import-custom-emojis.js"; diff --git a/packages/backend/src/queue/processors/webhook-deliver.ts b/packages/backend/src/queue/processors/webhook-deliver.ts index 0a54ae7d8..286b401ba 100644 --- a/packages/backend/src/queue/processors/webhook-deliver.ts +++ b/packages/backend/src/queue/processors/webhook-deliver.ts @@ -16,10 +16,10 @@ export default async (job: Bull.Job) => { url: job.data.to, method: "POST", headers: { - "User-Agent": "Calckey-Hooks", - "X-Calckey-Host": config.host, - "X-Calckey-Hook-Id": job.data.webhookId, - "X-Calckey-Hook-Secret": job.data.secret, + "User-Agent": "Firefish-Hooks", + "X-Firefish-Host": config.host, + "X-Firefish-Hook-Id": job.data.webhookId, + "X-Firefish-Hook-Secret": job.data.secret, "Content-Type": "application/json", }, body: JSON.stringify({ diff --git a/packages/backend/src/remote/activitypub/models/image.ts b/packages/backend/src/remote/activitypub/models/image.ts index b5eece0f6..67652d57d 100644 --- a/packages/backend/src/remote/activitypub/models/image.ts +++ b/packages/backend/src/remote/activitypub/models/image.ts @@ -68,8 +68,8 @@ export async function createImage( /** * Resolve Image. * - * If the target Image is registered in Calckey, return it, otherwise - * Fetch from remote server, register with Calckey and return it. + * If the target Image is registered in Firefish, return it, otherwise + * Fetch from remote server, register with Firefish and return it. */ export async function resolveImage( actor: CacheableRemoteUser, diff --git a/packages/backend/src/remote/activitypub/models/note.ts b/packages/backend/src/remote/activitypub/models/note.ts index a3141e388..391f669f3 100644 --- a/packages/backend/src/remote/activitypub/models/note.ts +++ b/packages/backend/src/remote/activitypub/models/note.ts @@ -92,7 +92,7 @@ export function validateNote(object: any, uri: string) { /** * Fetch Notes. * - * If the target Note is registered in Calckey, it will be returned. + * If the target Note is registered in Firefish, it will be returned. */ export async function fetchNote( object: string | IObject, @@ -397,8 +397,8 @@ export async function createNote( /** * Resolve Note. * - * If the target Note is registered in Calckey, return it, otherwise - * Fetch from remote server, register with Calckey and return it. + * If the target Note is registered in Firefish, return it, otherwise + * Fetch from remote server, register with Firefish and return it. */ export async function resolveNote( value: string | IObject, diff --git a/packages/backend/src/remote/activitypub/models/person.ts b/packages/backend/src/remote/activitypub/models/person.ts index 14abf3b1d..8f17cfae8 100644 --- a/packages/backend/src/remote/activitypub/models/person.ts +++ b/packages/backend/src/remote/activitypub/models/person.ts @@ -127,7 +127,7 @@ function validateActor(x: IObject, uri: string): IActor { /** * Fetch a Person. * - * If the target Person is registered in Calckey, it will be returned. + * If the target Person is registered in Firefish, it will be returned. */ export async function fetchPerson( uri: string, @@ -378,7 +378,7 @@ export async function createPerson( /** * Update Person data from remote. - * If the target Person is not registered in Calckey, it is ignored. + * If the target Person is not registered in Firefish, it is ignored. * @param uri URI of Person * @param resolver Resolver * @param hint Hint of Person object (If this value is a valid Person, it is used for updating without Remote resolve) @@ -564,8 +564,8 @@ export async function updatePerson( /** * Resolve Person. * - * If the target person is registered in Calckey, it returns it; - * otherwise, it fetches it from the remote server, registers it in Calckey, and returns it. + * If the target person is registered in Firefish, it returns it; + * otherwise, it fetches it from the remote server, registers it in Firefish, and returns it. */ export async function resolvePerson( uri: string, diff --git a/packages/backend/src/server/api/endpoints.ts b/packages/backend/src/server/api/endpoints.ts index 2cb3b30d1..311a19618 100644 --- a/packages/backend/src/server/api/endpoints.ts +++ b/packages/backend/src/server/api/endpoints.ts @@ -342,7 +342,7 @@ import * as ep___users_stats from "./endpoints/users/stats.js"; import * as ep___fetchRss from "./endpoints/fetch-rss.js"; import * as ep___admin_driveCapOverride from "./endpoints/admin/drive-capacity-override.js"; -//Calckey Move +//Firefish Move import * as ep___i_move from "./endpoints/i/move.js"; import * as ep___i_known_as from "./endpoints/i/known-as.js"; diff --git a/packages/backend/src/server/api/endpoints/latest-version.ts b/packages/backend/src/server/api/endpoints/latest-version.ts index 72e84ae04..1cf259c88 100644 --- a/packages/backend/src/server/api/endpoints/latest-version.ts +++ b/packages/backend/src/server/api/endpoints/latest-version.ts @@ -16,7 +16,7 @@ export const paramDef = { export default define(meta, paramDef, async () => { let tag_name; await fetch( - "https://codeberg.org/api/v1/repos/calckey/calckey/releases?draft=false&pre-release=false&page=1&limit=1", + "https://codeberg.org/api/v1/repos/firefish/firefish/releases?draft=false&pre-release=false&page=1&limit=1", ) .then((response) => response.json()) .then((data) => { diff --git a/packages/backend/src/server/api/endpoints/meta.ts b/packages/backend/src/server/api/endpoints/meta.ts index 03b0da401..00adbc6bf 100644 --- a/packages/backend/src/server/api/endpoints/meta.ts +++ b/packages/backend/src/server/api/endpoints/meta.ts @@ -42,7 +42,7 @@ export const meta = { optional: false, nullable: false, format: "url", - example: "https://calckey.example.com", + example: "https://firefish.example.com", }, description: { type: "string", @@ -68,13 +68,13 @@ export const meta = { type: "string", optional: false, nullable: false, - default: "https://codeberg.org/calckey/calckey", + default: "https://gitlab.prometheus.systems/firefish/firefish", }, feedbackUrl: { type: "string", optional: false, nullable: false, - default: "https://codeberg.org/calckey/calckey/issues", + default: "https://gitlab.prometheus.systems/firefish/firefish/issues", }, defaultDarkTheme: { type: "string", diff --git a/packages/backend/src/server/api/endpoints/patrons.ts b/packages/backend/src/server/api/endpoints/patrons.ts index 8ca1f8902..510fedcae 100644 --- a/packages/backend/src/server/api/endpoints/patrons.ts +++ b/packages/backend/src/server/api/endpoints/patrons.ts @@ -9,7 +9,7 @@ const _dirname = dirname(_filename); export const meta = { tags: ["meta"], - description: "Get Calckey patrons", + description: "Get Firefish patrons", requireCredential: false, requireCredentialPrivateMode: false, @@ -36,7 +36,7 @@ export default define(meta, paramDef, async (ps) => { }; patrons = await fetch( - "https://codeberg.org/calckey/calckey/raw/branch/develop/patrons.json", + "https://gitlab.prometheus.systems/firefish/firefish/raw/branch/develop/patrons.json", { signal: AbortSignal.timeout(2000) }, ) .then((response) => response.json()) diff --git a/packages/backend/src/server/api/endpoints/release.ts b/packages/backend/src/server/api/endpoints/release.ts index e5ebbb79a..917511070 100644 --- a/packages/backend/src/server/api/endpoints/release.ts +++ b/packages/backend/src/server/api/endpoints/release.ts @@ -18,7 +18,7 @@ export default define(meta, paramDef, async () => { let release; await fetch( - "https://codeberg.org/calckey/calckey/raw/branch/develop/release.json", + "https://gitlab.prometheus.systems/firefish/firefish/raw/branch/develop/release.json", ) .then((response) => response.json()) .then((data) => { diff --git a/packages/backend/src/server/api/mastodon/ApiMastodonCompatibleService.ts b/packages/backend/src/server/api/mastodon/ApiMastodonCompatibleService.ts index 753f73ead..f3fbd4bad 100644 --- a/packages/backend/src/server/api/mastodon/ApiMastodonCompatibleService.ts +++ b/packages/backend/src/server/api/mastodon/ApiMastodonCompatibleService.ts @@ -84,7 +84,7 @@ export function apiMastodonCompatible(router: Router): void { const client = getClient(BASE_URL, accessTokens); try { const data = await client.dismissInstanceAnnouncement( - convertId(ctx.params.id, IdType.CalckeyId), + convertId(ctx.params.id, IdType.FirefishId), ); ctx.body = data.data; } catch (e: any) { diff --git a/packages/backend/src/server/api/mastodon/endpoints/account.ts b/packages/backend/src/server/api/mastodon/endpoints/account.ts index 5d0abdedd..36548cd3b 100644 --- a/packages/backend/src/server/api/mastodon/endpoints/account.ts +++ b/packages/backend/src/server/api/mastodon/endpoints/account.ts @@ -114,7 +114,7 @@ export function apiAccountMastodon(router: Router): void { let reqIds = []; for (let i = 0; i < ids.length; i++) { - reqIds.push(convertId(ids[i], IdType.CalckeyId)); + reqIds.push(convertId(ids[i], IdType.FirefishId)); } const data = await client.getRelationships(reqIds); @@ -135,7 +135,7 @@ export function apiAccountMastodon(router: Router): void { const accessTokens = ctx.headers.authorization; const client = getClient(BASE_URL, accessTokens); try { - const calcId = convertId(ctx.params.id, IdType.CalckeyId); + const calcId = convertId(ctx.params.id, IdType.FirefishId); const data = await client.getAccount(calcId); ctx.body = convertAccount(data.data); } catch (e: any) { @@ -153,7 +153,7 @@ export function apiAccountMastodon(router: Router): void { const client = getClient(BASE_URL, accessTokens); try { const data = await client.getAccountStatuses( - convertId(ctx.params.id, IdType.CalckeyId), + convertId(ctx.params.id, IdType.FirefishId), convertTimelinesArgsId(argsToBools(limitToInt(ctx.query as any))), ); ctx.body = data.data.map((status) => convertStatus(status)); @@ -173,7 +173,7 @@ export function apiAccountMastodon(router: Router): void { const client = getClient(BASE_URL, accessTokens); try { const data = await client.getAccountFeaturedTags( - convertId(ctx.params.id, IdType.CalckeyId), + convertId(ctx.params.id, IdType.FirefishId), ); ctx.body = data.data.map((tag) => convertFeaturedTag(tag)); } catch (e: any) { @@ -192,7 +192,7 @@ export function apiAccountMastodon(router: Router): void { const client = getClient(BASE_URL, accessTokens); try { const data = await client.getAccountFollowers( - convertId(ctx.params.id, IdType.CalckeyId), + convertId(ctx.params.id, IdType.FirefishId), convertTimelinesArgsId(limitToInt(ctx.query as any)), ); ctx.body = data.data.map((account) => convertAccount(account)); @@ -212,7 +212,7 @@ export function apiAccountMastodon(router: Router): void { const client = getClient(BASE_URL, accessTokens); try { const data = await client.getAccountFollowing( - convertId(ctx.params.id, IdType.CalckeyId), + convertId(ctx.params.id, IdType.FirefishId), convertTimelinesArgsId(limitToInt(ctx.query as any)), ); ctx.body = data.data.map((account) => convertAccount(account)); @@ -232,7 +232,7 @@ export function apiAccountMastodon(router: Router): void { const client = getClient(BASE_URL, accessTokens); try { const data = await client.getAccountLists( - convertId(ctx.params.id, IdType.CalckeyId), + convertId(ctx.params.id, IdType.FirefishId), ); ctx.body = data.data.map((list) => convertList(list)); } catch (e: any) { @@ -251,7 +251,7 @@ export function apiAccountMastodon(router: Router): void { const client = getClient(BASE_URL, accessTokens); try { const data = await client.followAccount( - convertId(ctx.params.id, IdType.CalckeyId), + convertId(ctx.params.id, IdType.FirefishId), ); let acct = convertRelationship(data.data); acct.following = true; @@ -272,7 +272,7 @@ export function apiAccountMastodon(router: Router): void { const client = getClient(BASE_URL, accessTokens); try { const data = await client.unfollowAccount( - convertId(ctx.params.id, IdType.CalckeyId), + convertId(ctx.params.id, IdType.FirefishId), ); let acct = convertRelationship(data.data); acct.following = false; @@ -293,7 +293,7 @@ export function apiAccountMastodon(router: Router): void { const client = getClient(BASE_URL, accessTokens); try { const data = await client.blockAccount( - convertId(ctx.params.id, IdType.CalckeyId), + convertId(ctx.params.id, IdType.FirefishId), ); ctx.body = convertRelationship(data.data); } catch (e: any) { @@ -331,7 +331,7 @@ export function apiAccountMastodon(router: Router): void { const client = getClient(BASE_URL, accessTokens); try { const data = await client.muteAccount( - convertId(ctx.params.id, IdType.CalckeyId), + convertId(ctx.params.id, IdType.FirefishId), (ctx.request as any).body as any, ); ctx.body = convertRelationship(data.data); @@ -351,7 +351,7 @@ export function apiAccountMastodon(router: Router): void { const client = getClient(BASE_URL, accessTokens); try { const data = await client.unmuteAccount( - convertId(ctx.params.id, IdType.CalckeyId), + convertId(ctx.params.id, IdType.FirefishId), ); ctx.body = convertRelationship(data.data); } catch (e: any) { @@ -478,7 +478,7 @@ export function apiAccountMastodon(router: Router): void { const client = getClient(BASE_URL, accessTokens); try { const data = await client.acceptFollowRequest( - convertId(ctx.params.id, IdType.CalckeyId), + convertId(ctx.params.id, IdType.FirefishId), ); ctx.body = convertRelationship(data.data); } catch (e: any) { @@ -497,7 +497,7 @@ export function apiAccountMastodon(router: Router): void { const client = getClient(BASE_URL, accessTokens); try { const data = await client.rejectFollowRequest( - convertId(ctx.params.id, IdType.CalckeyId), + convertId(ctx.params.id, IdType.FirefishId), ); ctx.body = convertRelationship(data.data); } catch (e: any) { diff --git a/packages/backend/src/server/api/mastodon/endpoints/filter.ts b/packages/backend/src/server/api/mastodon/endpoints/filter.ts index 6daad31b6..e27b7e22a 100644 --- a/packages/backend/src/server/api/mastodon/endpoints/filter.ts +++ b/packages/backend/src/server/api/mastodon/endpoints/filter.ts @@ -27,7 +27,7 @@ export function apiFilterMastodon(router: Router): void { const body: any = ctx.request.body; try { const data = await client.getFilter( - convertId(ctx.params.id, IdType.CalckeyId), + convertId(ctx.params.id, IdType.FirefishId), ); ctx.body = convertFilter(data.data); } catch (e: any) { @@ -59,7 +59,7 @@ export function apiFilterMastodon(router: Router): void { const body: any = ctx.request.body; try { const data = await client.updateFilter( - convertId(ctx.params.id, IdType.CalckeyId), + convertId(ctx.params.id, IdType.FirefishId), body.phrase, body.context, ); @@ -78,7 +78,7 @@ export function apiFilterMastodon(router: Router): void { const body: any = ctx.request.body; try { const data = await client.deleteFilter( - convertId(ctx.params.id, IdType.CalckeyId), + convertId(ctx.params.id, IdType.FirefishId), ); ctx.body = data.data; } catch (e: any) { diff --git a/packages/backend/src/server/api/mastodon/endpoints/meta.ts b/packages/backend/src/server/api/mastodon/endpoints/meta.ts index 042071f0e..9a81aad84 100644 --- a/packages/backend/src/server/api/mastodon/endpoints/meta.ts +++ b/packages/backend/src/server/api/mastodon/endpoints/meta.ts @@ -4,21 +4,21 @@ import { fetchMeta } from "@/misc/fetch-meta.js"; import { Users, Notes } from "@/models/index.js"; import { IsNull, MoreThan } from "typeorm"; -// TODO: add calckey features +// TODO: add firefish features export async function getInstance(response: Entity.Instance) { const meta = await fetchMeta(true); const totalUsers = Users.count({ where: { host: IsNull() } }); const totalStatuses = Notes.count({ where: { userHost: IsNull() } }); return { uri: response.uri, - title: response.title || "Calckey", + title: response.title || "Firefish", short_description: response.description?.substring(0, 50) || "See real server website", description: response.description || - "This is a vanilla Calckey Instance. It doesnt seem to have a description. BTW you are using the Mastodon api to access this server :)", + "This is a vanilla Firefish Instance. It doesn't seem to have a description.", email: response.email || "", - version: `3.0.0 (compatible; Calckey ${config.version})`, + version: `3.0.0 (compatible; Firefish ${config.version})`, urls: response.urls, stats: { user_count: await totalUsers, diff --git a/packages/backend/src/server/api/mastodon/endpoints/notifications.ts b/packages/backend/src/server/api/mastodon/endpoints/notifications.ts index 198717d5c..f0a0bab98 100644 --- a/packages/backend/src/server/api/mastodon/endpoints/notifications.ts +++ b/packages/backend/src/server/api/mastodon/endpoints/notifications.ts @@ -45,7 +45,7 @@ export function apiNotificationsMastodon(router: Router): void { const body: any = ctx.request.body; try { const dataRaw = await client.getNotification( - convertId(ctx.params.id, IdType.CalckeyId), + convertId(ctx.params.id, IdType.FirefishId), ); const data = convertNotification(dataRaw.data); ctx.body = data; @@ -85,7 +85,7 @@ export function apiNotificationsMastodon(router: Router): void { const body: any = ctx.request.body; try { const data = await client.dismissNotification( - convertId(ctx.params.id, IdType.CalckeyId), + convertId(ctx.params.id, IdType.FirefishId), ); ctx.body = data.data; } catch (e: any) { diff --git a/packages/backend/src/server/api/mastodon/endpoints/status.ts b/packages/backend/src/server/api/mastodon/endpoints/status.ts index caa9d1d68..2fcd28c9a 100644 --- a/packages/backend/src/server/api/mastodon/endpoints/status.ts +++ b/packages/backend/src/server/api/mastodon/endpoints/status.ts @@ -26,7 +26,7 @@ export function apiStatusMastodon(router: Router): void { try { let body: any = ctx.request.body; if (body.in_reply_to_id) - body.in_reply_to_id = convertId(body.in_reply_to_id, IdType.CalckeyId); + body.in_reply_to_id = convertId(body.in_reply_to_id, IdType.FirefishId); if ( (!body.poll && body["poll[options][]"]) || (!body.media_ids && body["media_ids[]"]) @@ -61,7 +61,7 @@ export function apiStatusMastodon(router: Router): void { if (body.media_ids && !body.media_ids.length) body.media_ids = undefined; if (body.media_ids) { body.media_ids = (body.media_ids as string[]).map((p) => - convertId(p, IdType.CalckeyId), + convertId(p, IdType.FirefishId), ); } const { sensitive } = body; @@ -100,7 +100,7 @@ export function apiStatusMastodon(router: Router): void { const client = getClient(BASE_URL, accessTokens); try { const data = await client.getStatus( - convertId(ctx.params.id, IdType.CalckeyId), + convertId(ctx.params.id, IdType.FirefishId), ); ctx.body = convertStatus(data.data); } catch (e: any) { @@ -115,7 +115,7 @@ export function apiStatusMastodon(router: Router): void { const client = getClient(BASE_URL, accessTokens); try { const data = await client.deleteStatus( - convertId(ctx.params.id, IdType.CalckeyId), + convertId(ctx.params.id, IdType.FirefishId), ); ctx.body = data.data; } catch (e: any) { @@ -137,7 +137,7 @@ export function apiStatusMastodon(router: Router): void { const accessTokens = ctx.headers.authorization; const client = getClient(BASE_URL, accessTokens); try { - const id = convertId(ctx.params.id, IdType.CalckeyId); + const id = convertId(ctx.params.id, IdType.FirefishId); const data = await client.getStatusContext( id, convertTimelinesArgsId(limitToInt(ctx.query as any)), @@ -165,7 +165,7 @@ export function apiStatusMastodon(router: Router): void { const client = getClient(BASE_URL, accessTokens); try { const data = await client.getStatusHistory( - convertId(ctx.params.id, IdType.CalckeyId), + convertId(ctx.params.id, IdType.FirefishId), ); ctx.body = data.data.map((account) => convertAccount(account)); } catch (e: any) { @@ -183,7 +183,7 @@ export function apiStatusMastodon(router: Router): void { const client = getClient(BASE_URL, accessTokens); try { const data = await client.getStatusRebloggedBy( - convertId(ctx.params.id, IdType.CalckeyId), + convertId(ctx.params.id, IdType.FirefishId), ); ctx.body = data.data.map((account) => convertAccount(account)); } catch (e: any) { @@ -201,7 +201,7 @@ export function apiStatusMastodon(router: Router): void { const client = getClient(BASE_URL, accessTokens); try { const data = await client.getStatusFavouritedBy( - convertId(ctx.params.id, IdType.CalckeyId), + convertId(ctx.params.id, IdType.FirefishId), ); ctx.body = data.data.map((account) => convertAccount(account)); } catch (e: any) { @@ -220,7 +220,7 @@ export function apiStatusMastodon(router: Router): void { const react = await getFirstReaction(BASE_URL, accessTokens); try { const a = (await client.createEmojiReaction( - convertId(ctx.params.id, IdType.CalckeyId), + convertId(ctx.params.id, IdType.FirefishId), react, )) as any; //const data = await client.favouriteStatus(ctx.params.id) as any; @@ -242,7 +242,7 @@ export function apiStatusMastodon(router: Router): void { const react = await getFirstReaction(BASE_URL, accessTokens); try { const data = await client.deleteEmojiReaction( - convertId(ctx.params.id, IdType.CalckeyId), + convertId(ctx.params.id, IdType.FirefishId), react, ); ctx.body = convertStatus(data.data); @@ -262,7 +262,7 @@ export function apiStatusMastodon(router: Router): void { const client = getClient(BASE_URL, accessTokens); try { const data = await client.reblogStatus( - convertId(ctx.params.id, IdType.CalckeyId), + convertId(ctx.params.id, IdType.FirefishId), ); ctx.body = convertStatus(data.data); } catch (e: any) { @@ -281,7 +281,7 @@ export function apiStatusMastodon(router: Router): void { const client = getClient(BASE_URL, accessTokens); try { const data = await client.unreblogStatus( - convertId(ctx.params.id, IdType.CalckeyId), + convertId(ctx.params.id, IdType.FirefishId), ); ctx.body = convertStatus(data.data); } catch (e: any) { @@ -300,7 +300,7 @@ export function apiStatusMastodon(router: Router): void { const client = getClient(BASE_URL, accessTokens); try { const data = await client.bookmarkStatus( - convertId(ctx.params.id, IdType.CalckeyId), + convertId(ctx.params.id, IdType.FirefishId), ); ctx.body = convertStatus(data.data); } catch (e: any) { @@ -319,7 +319,7 @@ export function apiStatusMastodon(router: Router): void { const client = getClient(BASE_URL, accessTokens); try { const data = await client.unbookmarkStatus( - convertId(ctx.params.id, IdType.CalckeyId), + convertId(ctx.params.id, IdType.FirefishId), ); ctx.body = convertStatus(data.data); } catch (e: any) { @@ -338,7 +338,7 @@ export function apiStatusMastodon(router: Router): void { const client = getClient(BASE_URL, accessTokens); try { const data = await client.pinStatus( - convertId(ctx.params.id, IdType.CalckeyId), + convertId(ctx.params.id, IdType.FirefishId), ); ctx.body = convertStatus(data.data); } catch (e: any) { @@ -357,7 +357,7 @@ export function apiStatusMastodon(router: Router): void { const client = getClient(BASE_URL, accessTokens); try { const data = await client.unpinStatus( - convertId(ctx.params.id, IdType.CalckeyId), + convertId(ctx.params.id, IdType.FirefishId), ); ctx.body = convertStatus(data.data); } catch (e: any) { @@ -373,7 +373,7 @@ export function apiStatusMastodon(router: Router): void { const client = getClient(BASE_URL, accessTokens); try { const data = await client.getMedia( - convertId(ctx.params.id, IdType.CalckeyId), + convertId(ctx.params.id, IdType.FirefishId), ); ctx.body = convertAttachment(data.data); } catch (e: any) { @@ -388,7 +388,7 @@ export function apiStatusMastodon(router: Router): void { const client = getClient(BASE_URL, accessTokens); try { const data = await client.updateMedia( - convertId(ctx.params.id, IdType.CalckeyId), + convertId(ctx.params.id, IdType.FirefishId), ctx.request.body as any, ); ctx.body = convertAttachment(data.data); @@ -404,7 +404,7 @@ export function apiStatusMastodon(router: Router): void { const client = getClient(BASE_URL, accessTokens); try { const data = await client.getPoll( - convertId(ctx.params.id, IdType.CalckeyId), + convertId(ctx.params.id, IdType.FirefishId), ); ctx.body = convertPoll(data.data); } catch (e: any) { @@ -421,7 +421,7 @@ export function apiStatusMastodon(router: Router): void { const client = getClient(BASE_URL, accessTokens); try { const data = await client.votePoll( - convertId(ctx.params.id, IdType.CalckeyId), + convertId(ctx.params.id, IdType.FirefishId), (ctx.request.body as any).choices, ); ctx.body = convertPoll(data.data); diff --git a/packages/backend/src/server/api/mastodon/endpoints/timeline.ts b/packages/backend/src/server/api/mastodon/endpoints/timeline.ts index efadfe786..4b49d8acc 100644 --- a/packages/backend/src/server/api/mastodon/endpoints/timeline.ts +++ b/packages/backend/src/server/api/mastodon/endpoints/timeline.ts @@ -30,11 +30,11 @@ export function argsToBools(q: ParsedUrlQuery) { export function convertTimelinesArgsId(q: ParsedUrlQuery) { if (typeof q.min_id === "string") - q.min_id = convertId(q.min_id, IdType.CalckeyId); + q.min_id = convertId(q.min_id, IdType.FirefishId); if (typeof q.max_id === "string") - q.max_id = convertId(q.max_id, IdType.CalckeyId); + q.max_id = convertId(q.max_id, IdType.FirefishId); if (typeof q.since_id === "string") - q.since_id = convertId(q.since_id, IdType.CalckeyId); + q.since_id = convertId(q.since_id, IdType.FirefishId); return q; } @@ -105,7 +105,7 @@ export function apiTimelineMastodon(router: Router): void { const client = getClient(BASE_URL, accessTokens); try { const data = await client.getListTimeline( - convertId(ctx.params.listId, IdType.CalckeyId), + convertId(ctx.params.listId, IdType.FirefishId), convertTimelinesArgsId(limitToInt(ctx.query)), ); ctx.body = data.data.map((status) => convertStatus(status)); @@ -155,7 +155,7 @@ export function apiTimelineMastodon(router: Router): void { const client = getClient(BASE_URL, accessTokens); try { const data = await client.getList( - convertId(ctx.params.id, IdType.CalckeyId), + convertId(ctx.params.id, IdType.FirefishId), ); ctx.body = convertList(data.data); } catch (e: any) { @@ -188,7 +188,7 @@ export function apiTimelineMastodon(router: Router): void { const client = getClient(BASE_URL, accessTokens); try { const data = await client.updateList( - convertId(ctx.params.id, IdType.CalckeyId), + convertId(ctx.params.id, IdType.FirefishId), (ctx.request.body as any).title, ); ctx.body = convertList(data.data); @@ -208,7 +208,7 @@ export function apiTimelineMastodon(router: Router): void { const client = getClient(BASE_URL, accessTokens); try { const data = await client.deleteList( - convertId(ctx.params.id, IdType.CalckeyId), + convertId(ctx.params.id, IdType.FirefishId), ); ctx.body = data.data; } catch (e: any) { @@ -227,7 +227,7 @@ export function apiTimelineMastodon(router: Router): void { const client = getClient(BASE_URL, accessTokens); try { const data = await client.getAccountsInList( - convertId(ctx.params.id, IdType.CalckeyId), + convertId(ctx.params.id, IdType.FirefishId), convertTimelinesArgsId(ctx.query as any), ); ctx.body = data.data.map((account) => convertAccount(account)); @@ -247,9 +247,9 @@ export function apiTimelineMastodon(router: Router): void { const client = getClient(BASE_URL, accessTokens); try { const data = await client.addAccountsToList( - convertId(ctx.params.id, IdType.CalckeyId), + convertId(ctx.params.id, IdType.FirefishId), (ctx.query.account_ids as string[]).map((id) => - convertId(id, IdType.CalckeyId), + convertId(id, IdType.FirefishId), ), ); ctx.body = data.data; @@ -269,9 +269,9 @@ export function apiTimelineMastodon(router: Router): void { const client = getClient(BASE_URL, accessTokens); try { const data = await client.deleteAccountsFromList( - convertId(ctx.params.id, IdType.CalckeyId), + convertId(ctx.params.id, IdType.FirefishId), (ctx.query.account_ids as string[]).map((id) => - convertId(id, IdType.CalckeyId), + convertId(id, IdType.FirefishId), ), ); ctx.body = data.data; diff --git a/packages/backend/src/server/api/openapi/gen-spec.ts b/packages/backend/src/server/api/openapi/gen-spec.ts index 683ffc622..7c9e9de8c 100644 --- a/packages/backend/src/server/api/openapi/gen-spec.ts +++ b/packages/backend/src/server/api/openapi/gen-spec.ts @@ -9,13 +9,13 @@ export function genOpenapiSpec() { info: { version: "v1", - title: "Calckey API", + title: "Firefish API", "x-logo": { url: "/static-assets/api-doc.png" }, }, externalDocs: { description: "Repository", - url: "https://codeberg.org/calckey/calckey", + url: "https://gitlab.prometheus.systems/firefish/firefish", }, servers: [ @@ -106,7 +106,7 @@ export function genOpenapiSpec() { description: desc, externalDocs: { description: "Source code", - url: `https://codeberg.org/calckey/calckey/src/branch/develop/packages/backend/src/server/api/endpoints/${endpoint.name}.ts`, + url: `https://gitlab.prometheus.systems/firefish/firefish/src/branch/develop/packages/backend/src/server/api/endpoints/${endpoint.name}.ts`, }, tags: endpoint.meta.tags || undefined, security, diff --git a/packages/backend/src/server/nodeinfo.ts b/packages/backend/src/server/nodeinfo.ts index 940ca2e13..595d0a101 100644 --- a/packages/backend/src/server/nodeinfo.ts +++ b/packages/backend/src/server/nodeinfo.ts @@ -50,10 +50,10 @@ const nodeinfo2 = async () => { return { software: { - name: "calckey", + name: "firefish", version: config.version, repository: meta.repositoryUrl, - homepage: "https://calckey.org/", + homepage: "https://firefish.org/", }, protocols: ["activitypub"], services: { diff --git a/packages/backend/src/server/web/bios.css b/packages/backend/src/server/web/bios.css index e79fc0657..d6a1285e9 100644 --- a/packages/backend/src/server/web/bios.css +++ b/packages/backend/src/server/web/bios.css @@ -45,7 +45,7 @@ main { * { font-family: BIZ UDGothic, Roboto, HelveticaNeue, Arial, sans-serif; } -#calckey_app { +#firefish_app { display: none !important; } body, diff --git a/packages/backend/src/server/web/boot.js b/packages/backend/src/server/web/boot.js index 9c966036f..c8efc4824 100644 --- a/packages/backend/src/server/web/boot.js +++ b/packages/backend/src/server/web/boot.js @@ -184,7 +184,7 @@ font-family: BIZ UDGothic, Roboto, HelveticaNeue, Arial, sans-serif; } - #calckey_app, + #firefish_app, #splash { display: none !important; } diff --git a/packages/backend/src/server/web/cli.css b/packages/backend/src/server/web/cli.css index 460a7b7f3..740a2aa1a 100644 --- a/packages/backend/src/server/web/cli.css +++ b/packages/backend/src/server/web/cli.css @@ -26,7 +26,7 @@ img { text-align: center; } -#calckey_app { +#firefish_app { display: none !important; } diff --git a/packages/backend/src/server/web/feed.ts b/packages/backend/src/server/web/feed.ts index 004745901..50e6bfc32 100644 --- a/packages/backend/src/server/web/feed.ts +++ b/packages/backend/src/server/web/feed.ts @@ -43,7 +43,7 @@ export default async function ( id: author.link, title: `${author.name} (@${user.username}@${config.host})`, updated: notes[0].createdAt, - generator: "Calckey", + generator: "Firefish", description: `${user.notesCount} Notes, ${ profile.ffVisibility === "public" ? user.followingCount : "?" } Following, ${ diff --git a/packages/backend/src/server/web/manifest.json b/packages/backend/src/server/web/manifest.json index 647a5d437..7f70ac2c9 100644 --- a/packages/backend/src/server/web/manifest.json +++ b/packages/backend/src/server/web/manifest.json @@ -1,6 +1,6 @@ { - "short_name": "Calckey", - "name": "Calckey", + "short_name": "Firefish", + "name": "Firefish", "description": "An open source, decentralized social media platform that's free forever!", "start_url": "/", "display": "standalone", diff --git a/packages/backend/src/server/web/manifest.ts b/packages/backend/src/server/web/manifest.ts index 31acc42f6..6ca9791ba 100644 --- a/packages/backend/src/server/web/manifest.ts +++ b/packages/backend/src/server/web/manifest.ts @@ -9,8 +9,8 @@ export const manifestHandler = async (ctx: Koa.Context) => { const instance = await fetchMeta(true); - res.short_name = instance.name || "Calckey"; - res.name = instance.name || "Calckey"; + res.short_name = instance.name || "Firefish"; + res.name = instance.name || "Firefish"; if (instance.themeColor) res.theme_color = instance.themeColor; ctx.set("Cache-Control", "max-age=300"); diff --git a/packages/backend/src/server/web/style.css b/packages/backend/src/server/web/style.css index 9b2ee2d9c..436afddfa 100644 --- a/packages/backend/src/server/web/style.css +++ b/packages/backend/src/server/web/style.css @@ -22,21 +22,6 @@ html { transition: opacity 0.2s ease; } -#splashIcon { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - margin: auto; - width: 64px; - height: 64px; - pointer-events: none; - animation-duration: 1s; - animation-iteration-count: infinite; - animation-name: tada; -} - #splashSpinner { position: absolute; top: 0; diff --git a/packages/backend/src/server/web/views/base.pug b/packages/backend/src/server/web/views/base.pug index 91f4d6606..7fda4f8a7 100644 --- a/packages/backend/src/server/web/views/base.pug +++ b/packages/backend/src/server/web/views/base.pug @@ -7,16 +7,17 @@ doctype html // - - ___ _ _ - / __\__ _| | ___| | _____ _ _ - / / / _` | |/ __| |/ / _ \ | | | - / /__| (_| | | (__| < __/ |_| | - \____/\__,_|_|\___|_|\_\___|\__, | - (___/ + ▄▄▄▄▄▄▄ ▄▄▄ ▄▄▄▄▄▄ ▄▄▄▄▄▄▄ ▄▄▄▄▄▄▄ ▄▄▄ ▄▄▄▄▄▄▄ ▄▄ ▄▄ ◯ + █ █ █ ▄ █ █ █ █ █ █ █ █ █ ○ ▄ ▄ + █ ▄▄▄█ █ █ █ █ █ ▄▄▄█ ▄▄▄█ █ ▄▄▄▄▄█ █▄█ █ ⚬ █▄▄ █▄▄ + █ █▄▄▄█ █ █▄▄█▄█ █▄▄▄█ █▄▄▄█ █ █▄▄▄▄▄█ █ ▄▄▄▄▄▄ ▄ + █ ▄▄▄█ █ ▄▄ █ ▄▄▄█ ▄▄▄█ █▄▄▄▄▄ █ ▄ █ █ █ █▄▄ + █ █ █ █ █ █ █ █▄▄▄█ █ █ █▄▄▄▄▄█ █ █ █ █ █ ● ● █ + █▄▄▄█ █▄▄▄█▄▄▄█ █▄█▄▄▄▄▄▄▄█▄▄▄█ █▄▄▄█▄▄▄▄▄▄▄█▄▄█ █▄▄█ ▀▄▄▄▄▄▄▀ - Thank you for using Calckey! + Thank you for using Firefish! If you are reading this message... how about joining the development? - https://codeberg.org/calckey/calckey + https://gitlab.prometheus.systems/firefish/firefish html @@ -24,13 +25,13 @@ html head meta(charset='utf-8') - meta(name='application-name' content='Calckey') + meta(name='application-name' content='Firefish') meta(name='referrer' content='origin') meta(name='darkreader-lock' content='') meta(name='theme-color' content= themeColor || '#31748f') meta(name='theme-color-orig' content= themeColor || '#31748f') meta(property='twitter:card' content='summary') - meta(property='og:site_name' content= instanceName || 'Calckey') + meta(property='og:site_name' content= instanceName || 'Firefish') meta(name='viewport' content='width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no') link(rel='icon' href= icon || `/favicon.ico?${ timestamp }`) link(rel='apple-touch-icon' href= icon || `/apple-touch-icon.png?${ timestamp }`) @@ -47,7 +48,7 @@ html title block title - = title || 'Calckey' + = title || 'Firefish' block desc meta(name='description' content=desc || 'An open source, decentralized social media platform that\'s free forever! 🚀') @@ -57,7 +58,7 @@ html meta(name='robots' content='noindex') block og - meta(property='og:title' content=title || 'Calckey') + meta(property='og:title' content=title || 'Firefish') meta(property='og:description' content=desc || 'An open source, decentralized social media platform that\'s free forever! 🚀') meta(property='og:image' content=img) meta(property='og:image:alt' content=alt || 'Pfp') @@ -78,7 +79,7 @@ html br | Please turn on your JavaScript div#splash - img#splashIcon(src= splashIcon || `/static-assets/splash.png?${ timestamp }`) + img#splashIcon(src= splashIcon || `/static-assets/splash.svg?${ timestamp }`) span#splashText block randomMOTD = randomMOTD diff --git a/packages/backend/src/server/web/views/bios.pug b/packages/backend/src/server/web/views/bios.pug index 408ebb27b..c310ddd5d 100644 --- a/packages/backend/src/server/web/views/bios.pug +++ b/packages/backend/src/server/web/views/bios.pug @@ -4,9 +4,9 @@ html head meta(charset='utf-8') - meta(name='application-name' content='Calckey') + meta(name='application-name' content='Firefish') meta(name='viewport' content='width=device-width, initial-scale=1.0') - title Calckey Repair Tool + title Firefish Repair Tool style include ../bios.css script @@ -14,7 +14,7 @@ html body header - h1 Calckey Repair Tool v#{version} + h1 Firefish Repair Tool v#{version} main div.tabs button#ls Edit local storage diff --git a/packages/backend/src/server/web/views/cli.pug b/packages/backend/src/server/web/views/cli.pug index 2abd5ae95..08ae481ac 100644 --- a/packages/backend/src/server/web/views/cli.pug +++ b/packages/backend/src/server/web/views/cli.pug @@ -4,9 +4,9 @@ html head meta(charset='utf-8') - meta(name='application-name' content='Calckey') + meta(name='application-name' content='Firefish') meta(name='viewport' content='width=device-width, initial-scale=1.0') - title Calckey Cli + title Firefish Cli style include ../cli.css script @@ -14,7 +14,7 @@ html body header - h1 Calckey Simple Client v#{version} + h1 Firefish Simple Client v#{version} main div#form textarea#text diff --git a/packages/backend/src/server/web/views/flush.pug b/packages/backend/src/server/web/views/flush.pug index c3de24727..e9866587e 100644 --- a/packages/backend/src/server/web/views/flush.pug +++ b/packages/backend/src/server/web/views/flush.pug @@ -3,9 +3,9 @@ doctype html html head meta(charset='utf-8') - meta(name='application-name' content='Calckey') + meta(name='application-name' content='Firefish') meta(name='viewport' content='width=device-width, initial-scale=1.0') - title Flush Calckey + title Flush Firefish style. * { font-family: BIZ UDGothic, Roboto, HelveticaNeue, Arial, sans-serif; @@ -28,7 +28,7 @@ html #msg script. const msg = document.getElementById('msg'); - const successText = `\nSuccess Flush! Back to Calckey\n成功しました。Calckeyを開き直してください。`; + const successText = `\nSuccess Flush! Back to Firefish\n成功しました。Firefishを開き直してください。`; message('Start flushing.'); diff --git a/packages/backend/src/services/logger.ts b/packages/backend/src/services/logger.ts index 86e1d10d3..146dae2ea 100644 --- a/packages/backend/src/services/logger.ts +++ b/packages/backend/src/services/logger.ts @@ -29,7 +29,7 @@ export default class Logger { if (config.syslog) { this.syslogClient = new SyslogPro.RFC5424({ - applacationName: "Calckey", + applacationName: "Firefish", timestamp: true, encludeStructuredData: true, color: true, diff --git a/packages/backend/test/mfm.ts b/packages/backend/test/mfm.ts index ef02e64b9..1fc521c3d 100644 --- a/packages/backend/test/mfm.ts +++ b/packages/backend/test/mfm.ts @@ -55,33 +55,33 @@ describe("fromHtml", () => { it("link with different text", () => { assert.deepStrictEqual( - fromHtml('

a c d

'), - "a [c](https://calckey.org/b) d", + fromHtml('

a c d

'), + "a [c](https://firefish.org/b) d", ); }); it("link with different text, but not encoded", () => { assert.deepStrictEqual( - fromHtml('

a c d

'), - "a [c]() d", + fromHtml('

a c d

'), + "a [c]() d", ); }); it("link with same text", () => { assert.deepStrictEqual( fromHtml( - '

a https://calckey.org/b d

', + '

a https://firefish.org/b d

', ), - "a https://calckey.org/b d", + "a https://firefish.org/b d", ); }); it("link with same text, but not encoded", () => { assert.deepStrictEqual( fromHtml( - '

a https://calckey.org/ä d

', + '

a https://firefish.org/ä d

', ), - "a d", + "a d", ); }); @@ -98,8 +98,8 @@ describe("fromHtml", () => { it("link without text", () => { assert.deepStrictEqual( - fromHtml('

a d

'), - "a https://calckey.org/b d", + fromHtml('

a d

'), + "a https://firefish.org/b d", ); }); @@ -110,15 +110,15 @@ describe("fromHtml", () => { it("mention", () => { assert.deepStrictEqual( fromHtml( - '

a @user d

', + '

a @user d

', ), - "a @user@calckey.org d", + "a @user@firefish.org d", ); }); it("hashtag", () => { assert.deepStrictEqual( - fromHtml('

a #a d

', [ + fromHtml('

a #a d

', [ "#a", ]), "a #a d", diff --git a/packages/backend/test/utils.ts b/packages/backend/test/utils.ts index f3f68b260..79d622b54 100644 --- a/packages/backend/test/utils.ts +++ b/packages/backend/test/utils.ts @@ -6,7 +6,7 @@ import * as childProcess from "child_process"; import * as http from "node:http"; import { SIGKILL } from "constants"; import WebSocket from "ws"; -import * as misskey from "calckey-js"; +import * as misskey from "firefish-js"; import fetch from "node-fetch"; import FormData from "form-data"; import { DataSource } from "typeorm"; diff --git a/packages/calckey-js/markdown/calckey-js.api.apiclient._constructor_.md b/packages/calckey-js/markdown/calckey-js.api.apiclient._constructor_.md deleted file mode 100644 index ed4c03eff..000000000 --- a/packages/calckey-js/markdown/calckey-js.api.apiclient._constructor_.md +++ /dev/null @@ -1,24 +0,0 @@ - - -[Home](./index.md) > [calckey-js](./calckey-js.md) > [api](./calckey-js.api.md) > [APIClient](./calckey-js.api.apiclient.md) > [(constructor)](./calckey-js.api.apiclient._constructor_.md) - -## api.APIClient.(constructor) - -Constructs a new instance of the `APIClient` class - -**Signature:** - -```typescript -constructor(opts: { - origin: APIClient["origin"]; - credential?: APIClient["credential"]; - fetch?: APIClient["fetch"] | null | undefined; - }); -``` - -## Parameters - -| Parameter | Type | Description | -| --- | --- | --- | -| opts | { origin: [APIClient](./calckey-js.api.apiclient.md)\["origin"\]; credential?: [APIClient](./calckey-js.api.apiclient.md)\["credential"\]; fetch?: [APIClient](./calckey-js.api.apiclient.md)\["fetch"\] \| null \| undefined; } | | - diff --git a/packages/calckey-js/markdown/calckey-js.api.apiclient.credential.md b/packages/calckey-js/markdown/calckey-js.api.apiclient.credential.md deleted file mode 100644 index 2c14d244a..000000000 --- a/packages/calckey-js/markdown/calckey-js.api.apiclient.credential.md +++ /dev/null @@ -1,11 +0,0 @@ - - -[Home](./index.md) > [calckey-js](./calckey-js.md) > [api](./calckey-js.api.md) > [APIClient](./calckey-js.api.apiclient.md) > [credential](./calckey-js.api.apiclient.credential.md) - -## api.APIClient.credential property - -**Signature:** - -```typescript -credential: string | null | undefined; -``` diff --git a/packages/calckey-js/markdown/calckey-js.api.apiclient.fetch.md b/packages/calckey-js/markdown/calckey-js.api.apiclient.fetch.md deleted file mode 100644 index c7108c23d..000000000 --- a/packages/calckey-js/markdown/calckey-js.api.apiclient.fetch.md +++ /dev/null @@ -1,11 +0,0 @@ - - -[Home](./index.md) > [calckey-js](./calckey-js.md) > [api](./calckey-js.api.md) > [APIClient](./calckey-js.api.apiclient.md) > [fetch](./calckey-js.api.apiclient.fetch.md) - -## api.APIClient.fetch property - -**Signature:** - -```typescript -fetch: FetchLike; -``` diff --git a/packages/calckey-js/markdown/calckey-js.api.apiclient.md b/packages/calckey-js/markdown/calckey-js.api.apiclient.md deleted file mode 100644 index 92dff826f..000000000 --- a/packages/calckey-js/markdown/calckey-js.api.apiclient.md +++ /dev/null @@ -1,32 +0,0 @@ - - -[Home](./index.md) > [calckey-js](./calckey-js.md) > [api](./calckey-js.api.md) > [APIClient](./calckey-js.api.apiclient.md) - -## api.APIClient class - -**Signature:** - -```typescript -export declare class APIClient -``` - -## Constructors - -| Constructor | Modifiers | Description | -| --- | --- | --- | -| [(constructor)(opts)](./calckey-js.api.apiclient._constructor_.md) | | Constructs a new instance of the APIClient class | - -## Properties - -| Property | Modifiers | Type | Description | -| --- | --- | --- | --- | -| [credential](./calckey-js.api.apiclient.credential.md) | | string \| null \| undefined | | -| [fetch](./calckey-js.api.apiclient.fetch.md) | | [FetchLike](./calckey-js.api.fetchlike.md) | | -| [origin](./calckey-js.api.apiclient.origin.md) | | string | | - -## Methods - -| Method | Modifiers | Description | -| --- | --- | --- | -| [request(endpoint, params, credential)](./calckey-js.api.apiclient.request.md) | | | - diff --git a/packages/calckey-js/markdown/calckey-js.api.apiclient.origin.md b/packages/calckey-js/markdown/calckey-js.api.apiclient.origin.md deleted file mode 100644 index 1f6a4be91..000000000 --- a/packages/calckey-js/markdown/calckey-js.api.apiclient.origin.md +++ /dev/null @@ -1,11 +0,0 @@ - - -[Home](./index.md) > [calckey-js](./calckey-js.md) > [api](./calckey-js.api.md) > [APIClient](./calckey-js.api.apiclient.md) > [origin](./calckey-js.api.apiclient.origin.md) - -## api.APIClient.origin property - -**Signature:** - -```typescript -origin: string; -``` diff --git a/packages/calckey-js/markdown/calckey-js.api.md b/packages/calckey-js/markdown/calckey-js.api.md deleted file mode 100644 index eee1920ab..000000000 --- a/packages/calckey-js/markdown/calckey-js.api.md +++ /dev/null @@ -1,25 +0,0 @@ - - -[Home](./index.md) > [calckey-js](./calckey-js.md) > [api](./calckey-js.api.md) - -## api namespace - -## Classes - -| Class | Description | -| --- | --- | -| [APIClient](./calckey-js.api.apiclient.md) | | - -## Functions - -| Function | Description | -| --- | --- | -| [isAPIError(reason)](./calckey-js.api.isapierror.md) | | - -## Type Aliases - -| Type Alias | Description | -| --- | --- | -| [APIError](./calckey-js.api.apierror.md) | | -| [FetchLike](./calckey-js.api.fetchlike.md) | | - diff --git a/packages/calckey-js/markdown/calckey-js.channelconnection.channel.md b/packages/calckey-js/markdown/calckey-js.channelconnection.channel.md deleted file mode 100644 index bbf36efce..000000000 --- a/packages/calckey-js/markdown/calckey-js.channelconnection.channel.md +++ /dev/null @@ -1,11 +0,0 @@ - - -[Home](./index.md) > [calckey-js](./calckey-js.md) > [ChannelConnection](./calckey-js.channelconnection.md) > [channel](./calckey-js.channelconnection.channel.md) - -## ChannelConnection.channel property - -**Signature:** - -```typescript -channel: string; -``` diff --git a/packages/calckey-js/markdown/calckey-js.channelconnection.id.md b/packages/calckey-js/markdown/calckey-js.channelconnection.id.md deleted file mode 100644 index b145ffa06..000000000 --- a/packages/calckey-js/markdown/calckey-js.channelconnection.id.md +++ /dev/null @@ -1,11 +0,0 @@ - - -[Home](./index.md) > [calckey-js](./calckey-js.md) > [ChannelConnection](./calckey-js.channelconnection.md) > [id](./calckey-js.channelconnection.id.md) - -## ChannelConnection.id property - -**Signature:** - -```typescript -abstract id: string; -``` diff --git a/packages/calckey-js/markdown/calckey-js.channelconnection.incount.md b/packages/calckey-js/markdown/calckey-js.channelconnection.incount.md deleted file mode 100644 index b7ef319e2..000000000 --- a/packages/calckey-js/markdown/calckey-js.channelconnection.incount.md +++ /dev/null @@ -1,11 +0,0 @@ - - -[Home](./index.md) > [calckey-js](./calckey-js.md) > [ChannelConnection](./calckey-js.channelconnection.md) > [inCount](./calckey-js.channelconnection.incount.md) - -## ChannelConnection.inCount property - -**Signature:** - -```typescript -inCount: number; -``` diff --git a/packages/calckey-js/markdown/calckey-js.channelconnection.md b/packages/calckey-js/markdown/calckey-js.channelconnection.md deleted file mode 100644 index 0429baa80..000000000 --- a/packages/calckey-js/markdown/calckey-js.channelconnection.md +++ /dev/null @@ -1,39 +0,0 @@ - - -[Home](./index.md) > [calckey-js](./calckey-js.md) > [ChannelConnection](./calckey-js.channelconnection.md) - -## ChannelConnection class - -**Signature:** - -```typescript -export declare abstract class Connection< - Channel extends AnyOf = any, -> extends EventEmitter -``` -**Extends:** EventEmitter<Channel\["events"\]> - -## Constructors - -| Constructor | Modifiers | Description | -| --- | --- | --- | -| [(constructor)(stream, channel, name)](./calckey-js.channelconnection._constructor_.md) | | Constructs a new instance of the Connection class | - -## Properties - -| Property | Modifiers | Type | Description | -| --- | --- | --- | --- | -| [channel](./calckey-js.channelconnection.channel.md) | | string | | -| [id](./calckey-js.channelconnection.id.md) | abstract | string | | -| [inCount](./calckey-js.channelconnection.incount.md) | | number | | -| [name?](./calckey-js.channelconnection.name.md) | | string | _(Optional)_ | -| [outCount](./calckey-js.channelconnection.outcount.md) | | number | | -| [stream](./calckey-js.channelconnection.stream.md) | protected | [Stream](./calckey-js.stream.md) | | - -## Methods - -| Method | Modifiers | Description | -| --- | --- | --- | -| [dispose()](./calckey-js.channelconnection.dispose.md) | abstract | | -| [send(type, body)](./calckey-js.channelconnection.send.md) | | | - diff --git a/packages/calckey-js/markdown/calckey-js.channelconnection.name.md b/packages/calckey-js/markdown/calckey-js.channelconnection.name.md deleted file mode 100644 index b364bdf84..000000000 --- a/packages/calckey-js/markdown/calckey-js.channelconnection.name.md +++ /dev/null @@ -1,11 +0,0 @@ - - -[Home](./index.md) > [calckey-js](./calckey-js.md) > [ChannelConnection](./calckey-js.channelconnection.md) > [name](./calckey-js.channelconnection.name.md) - -## ChannelConnection.name property - -**Signature:** - -```typescript -name?: string; -``` diff --git a/packages/calckey-js/markdown/calckey-js.channelconnection.outcount.md b/packages/calckey-js/markdown/calckey-js.channelconnection.outcount.md deleted file mode 100644 index e30075768..000000000 --- a/packages/calckey-js/markdown/calckey-js.channelconnection.outcount.md +++ /dev/null @@ -1,11 +0,0 @@ - - -[Home](./index.md) > [calckey-js](./calckey-js.md) > [ChannelConnection](./calckey-js.channelconnection.md) > [outCount](./calckey-js.channelconnection.outcount.md) - -## ChannelConnection.outCount property - -**Signature:** - -```typescript -outCount: number; -``` diff --git a/packages/calckey-js/markdown/calckey-js.channelconnection.stream.md b/packages/calckey-js/markdown/calckey-js.channelconnection.stream.md deleted file mode 100644 index 2e1fc584c..000000000 --- a/packages/calckey-js/markdown/calckey-js.channelconnection.stream.md +++ /dev/null @@ -1,11 +0,0 @@ - - -[Home](./index.md) > [calckey-js](./calckey-js.md) > [ChannelConnection](./calckey-js.channelconnection.md) > [stream](./calckey-js.channelconnection.stream.md) - -## ChannelConnection.stream property - -**Signature:** - -```typescript -protected stream: Stream; -``` diff --git a/packages/calckey-js/markdown/calckey-js.entities.authsession.md b/packages/calckey-js/markdown/calckey-js.entities.authsession.md deleted file mode 100644 index 36ff40964..000000000 --- a/packages/calckey-js/markdown/calckey-js.entities.authsession.md +++ /dev/null @@ -1,17 +0,0 @@ - - -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [AuthSession](./calckey-js.entities.authsession.md) - -## entities.AuthSession type - -**Signature:** - -```typescript -export declare type AuthSession = { - id: ID; - app: App; - token: string; -}; -``` -**References:** [ID](./calckey-js.entities.id.md), [App](./calckey-js.entities.app.md) - diff --git a/packages/calckey-js/markdown/calckey-js.entities.blocking.md b/packages/calckey-js/markdown/calckey-js.entities.blocking.md deleted file mode 100644 index 6769b6475..000000000 --- a/packages/calckey-js/markdown/calckey-js.entities.blocking.md +++ /dev/null @@ -1,18 +0,0 @@ - - -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [Blocking](./calckey-js.entities.blocking.md) - -## entities.Blocking type - -**Signature:** - -```typescript -export declare type Blocking = { - id: ID; - createdAt: DateString; - blockeeId: User["id"]; - blockee: UserDetailed; -}; -``` -**References:** [ID](./calckey-js.entities.id.md), [DateString](./calckey-js.entities.datestring.md), [User](./calckey-js.entities.user.md), [UserDetailed](./calckey-js.entities.userdetailed.md) - diff --git a/packages/calckey-js/markdown/calckey-js.entities.channel.md b/packages/calckey-js/markdown/calckey-js.entities.channel.md deleted file mode 100644 index 6f7d5f3b8..000000000 --- a/packages/calckey-js/markdown/calckey-js.entities.channel.md +++ /dev/null @@ -1,15 +0,0 @@ - - -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [Channel](./calckey-js.entities.channel.md) - -## entities.Channel type - -**Signature:** - -```typescript -export declare type Channel = { - id: ID; -}; -``` -**References:** [ID](./calckey-js.entities.id.md) - diff --git a/packages/calckey-js/markdown/calckey-js.entities.detailedinstancemetadata.md b/packages/calckey-js/markdown/calckey-js.entities.detailedinstancemetadata.md deleted file mode 100644 index 920e0bca9..000000000 --- a/packages/calckey-js/markdown/calckey-js.entities.detailedinstancemetadata.md +++ /dev/null @@ -1,15 +0,0 @@ - - -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [DetailedInstanceMetadata](./calckey-js.entities.detailedinstancemetadata.md) - -## entities.DetailedInstanceMetadata type - -**Signature:** - -```typescript -export declare type DetailedInstanceMetadata = LiteInstanceMetadata & { - features: Record; -}; -``` -**References:** [LiteInstanceMetadata](./calckey-js.entities.liteinstancemetadata.md) - diff --git a/packages/calckey-js/markdown/calckey-js.entities.following.md b/packages/calckey-js/markdown/calckey-js.entities.following.md deleted file mode 100644 index 2c495d2fe..000000000 --- a/packages/calckey-js/markdown/calckey-js.entities.following.md +++ /dev/null @@ -1,18 +0,0 @@ - - -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [Following](./calckey-js.entities.following.md) - -## entities.Following type - -**Signature:** - -```typescript -export declare type Following = { - id: ID; - createdAt: DateString; - followerId: User["id"]; - followeeId: User["id"]; -}; -``` -**References:** [ID](./calckey-js.entities.id.md), [DateString](./calckey-js.entities.datestring.md), [User](./calckey-js.entities.user.md) - diff --git a/packages/calckey-js/markdown/calckey-js.entities.followingfolloweepopulated.md b/packages/calckey-js/markdown/calckey-js.entities.followingfolloweepopulated.md deleted file mode 100644 index f0000326a..000000000 --- a/packages/calckey-js/markdown/calckey-js.entities.followingfolloweepopulated.md +++ /dev/null @@ -1,15 +0,0 @@ - - -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [FollowingFolloweePopulated](./calckey-js.entities.followingfolloweepopulated.md) - -## entities.FollowingFolloweePopulated type - -**Signature:** - -```typescript -export declare type FollowingFolloweePopulated = Following & { - followee: UserDetailed; -}; -``` -**References:** [Following](./calckey-js.entities.following.md), [UserDetailed](./calckey-js.entities.userdetailed.md) - diff --git a/packages/calckey-js/markdown/calckey-js.entities.followingfollowerpopulated.md b/packages/calckey-js/markdown/calckey-js.entities.followingfollowerpopulated.md deleted file mode 100644 index 6f9860af8..000000000 --- a/packages/calckey-js/markdown/calckey-js.entities.followingfollowerpopulated.md +++ /dev/null @@ -1,15 +0,0 @@ - - -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [FollowingFollowerPopulated](./calckey-js.entities.followingfollowerpopulated.md) - -## entities.FollowingFollowerPopulated type - -**Signature:** - -```typescript -export declare type FollowingFollowerPopulated = Following & { - follower: UserDetailed; -}; -``` -**References:** [Following](./calckey-js.entities.following.md), [UserDetailed](./calckey-js.entities.userdetailed.md) - diff --git a/packages/calckey-js/markdown/calckey-js.entities.followrequest.md b/packages/calckey-js/markdown/calckey-js.entities.followrequest.md deleted file mode 100644 index d7ff6bbef..000000000 --- a/packages/calckey-js/markdown/calckey-js.entities.followrequest.md +++ /dev/null @@ -1,17 +0,0 @@ - - -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [FollowRequest](./calckey-js.entities.followrequest.md) - -## entities.FollowRequest type - -**Signature:** - -```typescript -export declare type FollowRequest = { - id: ID; - follower: User; - followee: User; -}; -``` -**References:** [ID](./calckey-js.entities.id.md), [User](./calckey-js.entities.user.md) - diff --git a/packages/calckey-js/markdown/calckey-js.entities.instancemetadata.md b/packages/calckey-js/markdown/calckey-js.entities.instancemetadata.md deleted file mode 100644 index 54e399e4e..000000000 --- a/packages/calckey-js/markdown/calckey-js.entities.instancemetadata.md +++ /dev/null @@ -1,15 +0,0 @@ - - -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [InstanceMetadata](./calckey-js.entities.instancemetadata.md) - -## entities.InstanceMetadata type - -**Signature:** - -```typescript -export declare type InstanceMetadata = - | LiteInstanceMetadata - | DetailedInstanceMetadata; -``` -**References:** [LiteInstanceMetadata](./calckey-js.entities.liteinstancemetadata.md), [DetailedInstanceMetadata](./calckey-js.entities.detailedinstancemetadata.md) - diff --git a/packages/calckey-js/markdown/calckey-js.entities.md b/packages/calckey-js/markdown/calckey-js.entities.md deleted file mode 100644 index a909f1f36..000000000 --- a/packages/calckey-js/markdown/calckey-js.entities.md +++ /dev/null @@ -1,51 +0,0 @@ - - -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) - -## entities namespace - -## Type Aliases - -| Type Alias | Description | -| --- | --- | -| [Ad](./calckey-js.entities.ad.md) | | -| [Announcement](./calckey-js.entities.announcement.md) | | -| [Antenna](./calckey-js.entities.antenna.md) | | -| [App](./calckey-js.entities.app.md) | | -| [AuthSession](./calckey-js.entities.authsession.md) | | -| [Blocking](./calckey-js.entities.blocking.md) | | -| [Channel](./calckey-js.entities.channel.md) | | -| [Clip](./calckey-js.entities.clip.md) | | -| [CustomEmoji](./calckey-js.entities.customemoji.md) | | -| [DateString](./calckey-js.entities.datestring.md) | | -| [DetailedInstanceMetadata](./calckey-js.entities.detailedinstancemetadata.md) | | -| [DriveFile](./calckey-js.entities.drivefile.md) | | -| [DriveFolder](./calckey-js.entities.drivefolder.md) | | -| [Following](./calckey-js.entities.following.md) | | -| [FollowingFolloweePopulated](./calckey-js.entities.followingfolloweepopulated.md) | | -| [FollowingFollowerPopulated](./calckey-js.entities.followingfollowerpopulated.md) | | -| [FollowRequest](./calckey-js.entities.followrequest.md) | | -| [GalleryPost](./calckey-js.entities.gallerypost.md) | | -| [ID](./calckey-js.entities.id.md) | | -| [Instance](./calckey-js.entities.instance.md) | | -| [InstanceMetadata](./calckey-js.entities.instancemetadata.md) | | -| [LiteInstanceMetadata](./calckey-js.entities.liteinstancemetadata.md) | | -| [MeDetailed](./calckey-js.entities.medetailed.md) | | -| [MessagingMessage](./calckey-js.entities.messagingmessage.md) | | -| [Note](./calckey-js.entities.note.md) | | -| [NoteFavorite](./calckey-js.entities.notefavorite.md) | | -| [NoteReaction](./calckey-js.entities.notereaction.md) | | -| [Notification](./calckey-js.entities.notification.md) | | -| [OriginType](./calckey-js.entities.origintype.md) | | -| [Page](./calckey-js.entities.page.md) | | -| [PageEvent](./calckey-js.entities.pageevent.md) | | -| [ServerInfo](./calckey-js.entities.serverinfo.md) | | -| [Signin](./calckey-js.entities.signin.md) | | -| [Stats](./calckey-js.entities.stats.md) | | -| [User](./calckey-js.entities.user.md) | | -| [UserDetailed](./calckey-js.entities.userdetailed.md) | | -| [UserGroup](./calckey-js.entities.usergroup.md) | | -| [UserList](./calckey-js.entities.userlist.md) | | -| [UserLite](./calckey-js.entities.userlite.md) | | -| [UserSorting](./calckey-js.entities.usersorting.md) | | - diff --git a/packages/calckey-js/markdown/calckey-js.entities.notefavorite.md b/packages/calckey-js/markdown/calckey-js.entities.notefavorite.md deleted file mode 100644 index e61a82691..000000000 --- a/packages/calckey-js/markdown/calckey-js.entities.notefavorite.md +++ /dev/null @@ -1,18 +0,0 @@ - - -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [NoteFavorite](./calckey-js.entities.notefavorite.md) - -## entities.NoteFavorite type - -**Signature:** - -```typescript -export declare type NoteFavorite = { - id: ID; - createdAt: DateString; - noteId: Note["id"]; - note: Note; -}; -``` -**References:** [ID](./calckey-js.entities.id.md), [DateString](./calckey-js.entities.datestring.md), [Note](./calckey-js.entities.note.md) - diff --git a/packages/calckey-js/markdown/calckey-js.entities.notereaction.md b/packages/calckey-js/markdown/calckey-js.entities.notereaction.md deleted file mode 100644 index c458b9ae7..000000000 --- a/packages/calckey-js/markdown/calckey-js.entities.notereaction.md +++ /dev/null @@ -1,18 +0,0 @@ - - -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [NoteReaction](./calckey-js.entities.notereaction.md) - -## entities.NoteReaction type - -**Signature:** - -```typescript -export declare type NoteReaction = { - id: ID; - createdAt: DateString; - user: UserLite; - type: string; -}; -``` -**References:** [ID](./calckey-js.entities.id.md), [DateString](./calckey-js.entities.datestring.md), [UserLite](./calckey-js.entities.userlite.md) - diff --git a/packages/calckey-js/markdown/calckey-js.entities.pageevent.md b/packages/calckey-js/markdown/calckey-js.entities.pageevent.md deleted file mode 100644 index f3cba2591..000000000 --- a/packages/calckey-js/markdown/calckey-js.entities.pageevent.md +++ /dev/null @@ -1,19 +0,0 @@ - - -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [PageEvent](./calckey-js.entities.pageevent.md) - -## entities.PageEvent type - -**Signature:** - -```typescript -export declare type PageEvent = { - pageId: Page["id"]; - event: string; - var: any; - userId: User["id"]; - user: User; -}; -``` -**References:** [Page](./calckey-js.entities.page.md), [User](./calckey-js.entities.user.md) - diff --git a/packages/calckey-js/markdown/calckey-js.entities.signin.md b/packages/calckey-js/markdown/calckey-js.entities.signin.md deleted file mode 100644 index 56d7f26ad..000000000 --- a/packages/calckey-js/markdown/calckey-js.entities.signin.md +++ /dev/null @@ -1,19 +0,0 @@ - - -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [Signin](./calckey-js.entities.signin.md) - -## entities.Signin type - -**Signature:** - -```typescript -export declare type Signin = { - id: ID; - createdAt: DateString; - ip: string; - headers: Record; - success: boolean; -}; -``` -**References:** [ID](./calckey-js.entities.id.md), [DateString](./calckey-js.entities.datestring.md) - diff --git a/packages/calckey-js/markdown/calckey-js.entities.user.md b/packages/calckey-js/markdown/calckey-js.entities.user.md deleted file mode 100644 index 663daaaf3..000000000 --- a/packages/calckey-js/markdown/calckey-js.entities.user.md +++ /dev/null @@ -1,13 +0,0 @@ - - -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [User](./calckey-js.entities.user.md) - -## entities.User type - -**Signature:** - -```typescript -export declare type User = UserLite | UserDetailed; -``` -**References:** [UserLite](./calckey-js.entities.userlite.md), [UserDetailed](./calckey-js.entities.userdetailed.md) - diff --git a/packages/calckey-js/markdown/calckey-js.entities.userlist.md b/packages/calckey-js/markdown/calckey-js.entities.userlist.md deleted file mode 100644 index 6ba539c66..000000000 --- a/packages/calckey-js/markdown/calckey-js.entities.userlist.md +++ /dev/null @@ -1,18 +0,0 @@ - - -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [UserList](./calckey-js.entities.userlist.md) - -## entities.UserList type - -**Signature:** - -```typescript -export declare type UserList = { - id: ID; - createdAt: DateString; - name: string; - userIds: User["id"][]; -}; -``` -**References:** [ID](./calckey-js.entities.id.md), [DateString](./calckey-js.entities.datestring.md), [User](./calckey-js.entities.user.md) - diff --git a/packages/calckey-js/markdown/calckey-js.md b/packages/calckey-js/markdown/calckey-js.md deleted file mode 100644 index 1674ddd5a..000000000 --- a/packages/calckey-js/markdown/calckey-js.md +++ /dev/null @@ -1,43 +0,0 @@ - - -[Home](./index.md) > [calckey-js](./calckey-js.md) - -## calckey-js package - -## Classes - -| Class | Description | -| --- | --- | -| [Stream](./calckey-js.stream.md) | | - -## Abstract Classes - -| Abstract Class | Description | -| --- | --- | -| [ChannelConnection](./calckey-js.channelconnection.md) | | - -## Namespaces - -| Namespace | Description | -| --- | --- | -| [api](./calckey-js.api.md) | | -| [entities](./calckey-js.entities.md) | | - -## Variables - -| Variable | Description | -| --- | --- | -| [ffVisibility](./calckey-js.ffvisibility.md) | | -| [mutedNoteReasons](./calckey-js.mutednotereasons.md) | | -| [noteVisibilities](./calckey-js.notevisibilities.md) | | -| [notificationTypes](./calckey-js.notificationtypes.md) | | -| [permissions](./calckey-js.permissions.md) | | - -## Type Aliases - -| Type Alias | Description | -| --- | --- | -| [Acct](./calckey-js.acct.md) | | -| [Channels](./calckey-js.channels.md) | | -| [Endpoints](./calckey-js.endpoints.md) | | - diff --git a/packages/calckey-js/markdown/calckey-js.stream.md b/packages/calckey-js/markdown/calckey-js.stream.md deleted file mode 100644 index 6c44402f5..000000000 --- a/packages/calckey-js/markdown/calckey-js.stream.md +++ /dev/null @@ -1,36 +0,0 @@ - - -[Home](./index.md) > [calckey-js](./calckey-js.md) > [Stream](./calckey-js.stream.md) - -## Stream class - -**Signature:** - -```typescript -export default class Stream extends EventEmitter -``` -**Extends:** EventEmitter<StreamEvents> - -## Constructors - -| Constructor | Modifiers | Description | -| --- | --- | --- | -| [(constructor)(origin, user, options)](./calckey-js.stream._constructor_.md) | | Constructs a new instance of the Stream class | - -## Properties - -| Property | Modifiers | Type | Description | -| --- | --- | --- | --- | -| [state](./calckey-js.stream.state.md) | | "initializing" \| "reconnecting" \| "connected" | | - -## Methods - -| Method | Modifiers | Description | -| --- | --- | --- | -| [close()](./calckey-js.stream.close.md) | | | -| [disconnectToChannel(connection)](./calckey-js.stream.disconnecttochannel.md) | | | -| [removeSharedConnection(connection)](./calckey-js.stream.removesharedconnection.md) | | | -| [removeSharedConnectionPool(pool)](./calckey-js.stream.removesharedconnectionpool.md) | | | -| [send(typeOrPayload, payload)](./calckey-js.stream.send.md) | | | -| [useChannel(channel, params, name)](./calckey-js.stream.usechannel.md) | | | - diff --git a/packages/client/assets/about-icon.png b/packages/client/assets/about-icon.png index a830bfa8a..8e74853b3 100644 Binary files a/packages/client/assets/about-icon.png and b/packages/client/assets/about-icon.png differ diff --git a/packages/client/assets/misskey.svg b/packages/client/assets/misskey.svg index 13ee2ced6..1009065de 100644 Binary files a/packages/client/assets/misskey.svg and b/packages/client/assets/misskey.svg differ diff --git a/packages/client/package.json b/packages/client/package.json index 3fe101b81..b08cdbfa9 100644 --- a/packages/client/package.json +++ b/packages/client/package.json @@ -35,7 +35,7 @@ "blurhash": "2.0.5", "broadcast-channel": "5.1.0", "browser-image-resizer": "github:misskey-dev/browser-image-resizer", - "calckey-js": "workspace:*", + "firefish-js": "workspace:*", "chart.js": "4.3.0", "chartjs-adapter-date-fns": "3.0.0", "chartjs-chart-matrix": "^2.0.1", diff --git a/packages/client/src/account.ts b/packages/client/src/account.ts index ea17387fa..b2d6df033 100644 --- a/packages/client/src/account.ts +++ b/packages/client/src/account.ts @@ -1,5 +1,5 @@ import { defineAsyncComponent, reactive } from "vue"; -import * as misskey from "calckey-js"; +import * as misskey from "firefish-js"; import { i18n } from "./i18n"; import { del, get, set } from "@/scripts/idb-proxy"; import { apiUrl } from "@/config"; diff --git a/packages/client/src/components/MkAbuseReportWindow.vue b/packages/client/src/components/MkAbuseReportWindow.vue index fc80cd66f..ed4737894 100644 --- a/packages/client/src/components/MkAbuseReportWindow.vue +++ b/packages/client/src/components/MkAbuseReportWindow.vue @@ -41,7 +41,7 @@ diff --git a/packages/client/src/pages/about-firefish.vue b/packages/client/src/pages/about-firefish.vue new file mode 100644 index 000000000..3e3473d44 --- /dev/null +++ b/packages/client/src/pages/about-firefish.vue @@ -0,0 +1,306 @@ + + + + + diff --git a/packages/client/src/pages/about.vue b/packages/client/src/pages/about.vue index bbc340fe2..06436cde3 100644 --- a/packages/client/src/pages/about.vue +++ b/packages/client/src/pages/about.vue @@ -59,11 +59,11 @@ - + - {{ - i18n.ts.aboutMisskey + {{ + i18n.ts.aboutFirefish }} @@ -102,7 +102,7 @@ > {{ - i18n.t("_aboutMisskey.donateHost", { + i18n.t("_aboutFirefish.donateHost", { host: $instance.name || host, }) }} diff --git a/packages/client/src/pages/admin/files.vue b/packages/client/src/pages/admin/files.vue index 5f277f6b9..d37b257d4 100644 --- a/packages/client/src/pages/admin/files.vue +++ b/packages/client/src/pages/admin/files.vue @@ -81,7 +81,7 @@