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 51d380e7e..c743e2c58 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 @@ -186,7 +186,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/.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 fb483b523..0f05a98cf 100644 --- a/COPYING +++ b/COPYING @@ -5,7 +5,7 @@ Copyright © 2022 thatonecalculator and contributers And is distributed under The GNU Affero General Public License Version 3, you should have received a copy of the license file as LICENSE. -Calckey includes several third-party Open-Source softwares. +Firefish includes several third-party Open-Source softwares. Emoji keywords for Unicode 11 and below by Mu-An Chiou License: MIT diff --git a/Dockerfile b/Dockerfile index e11cb2bf4..1d985954f 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/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 COPY packages/backend/native-utils/npm/linux-arm64-musl/package.json packages/backend/native-utils/npm/linux-arm64-musl/package.json @@ -46,7 +46,7 @@ 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 @@ -54,20 +54,20 @@ RUN apk add --no-cache --no-progress tini ffmpeg vips-dev zip unzip nodejs-curre COPY . ./ # 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 94% rename from CALCKEY.md rename to FIREFISH.md index 5a8bbd8ff..334d1bffb 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://codeberg.org/firefish/firefish/releases) and [Changelog](https://codeberg.org/firefish/firefish/src/branch/develop/CHANGELOG.md) for a more complete list of changes. There have been [>4000 commits (laggy link)](https://codeberg.org/firefish/firefish/compare/700a7110f7e34f314b070987aa761c451ec34efc...develop) since we forked Misskey! ## Planned @@ -91,7 +91,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://codeberg.org/firefish/firefish.js) - Woozy mode 🥴 - Improve blocking servers - Release notes @@ -108,7 +108,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 f66d14a32..add77b650 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://codeberg.org/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,24 +51,24 @@ ### 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 @@ -78,12 +78,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://codeberg.org/firefish/firefish/src/branch/develop/docs/docker.md) +- [🛞 How to run Firefish with Kubernetes/Helm](https://codeberg.org/firefish/firefish/src/branch/develop/docs/kubernetes.md) ## 🧑‍💻 Dependencies @@ -116,8 +116,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://codeberg.org/firefish/firefish.git +cd firefish/ ``` > **Note** @@ -143,23 +143,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`. ## 🔎 Set up search @@ -172,7 +172,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 @@ -180,11 +180,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 @@ -201,17 +201,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 to Calckey +## 🚚 Migrating from Misskey 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://codeberg.org/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 @@ -227,29 +227,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. @@ -257,6 +257,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/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 7e9653e70..5a478c90a 100644 --- a/docs/migrate.md +++ b/docs/migrate.md @@ -1,4 +1,4 @@ -# 🚚 Migrating from Misskey to Calckey +# 🚚 Migrating from Misskey to Firefish The following procedure may not work depending on your environment and version of Misskey. @@ -13,8 +13,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://codeberg.org/firefish/firefish/raw/branch/develop/docs/mkv13.patch +wget -O mkv13_restore.patch https://codeberg.org/firefish/firefish/raw/branch/develop/docs/mkv13_restore.patch git apply mkv13.patch mkv13_restore.patch cd packages/backend @@ -26,13 +26,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://codeberg.org/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://codeberg.org/firefish/firefish/raw/branch/develop/docs/renote_muting.patch git apply renote_muting.patch pnpm install @@ -59,16 +59,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://codeberg.org/firefish/firefish.git git fetch git checkout main # or beta or develop git pull --ff @@ -89,7 +89,7 @@ for i in $(seq 1 $NUM_MIGRAIONS); 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://codeberg.org/firefish/firefish.git git fetch git checkout main # or beta or develop git pull --ff @@ -100,4 +100,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, though. +You ***cannot*** migrate back to Misskey from Firefish due to re-hashing passwords on signin with argon2. You can migrate from Firefish to Foundkey, though. 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..5d7e5e806 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://codeberg.org/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://codeberg.org/firefish/firefish/src/branch/develop/SECURITY.md) + 🤝 By submitting this issue, you agree to follow our [Contribution Guidelines.](https://codeberg.org/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://codeberg.org/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..703e633ec 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://codeberg.org/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://codeberg.org/firefish/firefish/src/branch/develop/SECURITY.md) + 🤝 By submitting this issue, you agree to follow our [Contribution Guidelines.](https://codeberg.org/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://codeberg.org/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 7e97a99eb..30a591835 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" +aboutMisskey: "عن Firefish" administrator: "المدير" token: "الرمز المميز" twoStepAuthentication: "الإستيثاق بعاملَيْن" @@ -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 e3fbf8cb9..64fba2512 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 সম্পর্কে" +aboutMisskey: "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} হতে অনুবাদ করা" @@ -901,8 +901,8 @@ _aboutMisskey: 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 a269a0d00..85cd181e5 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. @@ -795,7 +795,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! @@ -846,7 +846,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 @@ -1226,7 +1226,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 +aboutMisskey: Sobre Firefish twoStepAuthentication: Autentificació de dos factors moderator: Moderador moderation: Moderació @@ -1379,7 +1379,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. NO afegiu `https://`, NOMÉS el domini. @@ -1388,7 +1388,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ó @@ -1489,7 +1489,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 @@ -1550,7 +1550,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 @@ -1593,14 +1593,14 @@ customKaTeXMacro: Macros KaTeX personalitzats _aboutMisskey: 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í! unknown: Desconegut @@ -1699,7 +1699,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 @@ -1711,9 +1711,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... @@ -1894,14 +1894,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. @@ -1912,7 +1912,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 @@ -2086,11 +2086,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 @@ -2105,7 +2105,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..7c639663f 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" +aboutMisskey: "O Firefish" administrator: "Administrátor" token: "Token" twoStepAuthentication: "Dvoufaktorová autentikace" 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 9e3a07654..c3b7d0bab 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" +aboutMisskey: "Ü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" @@ -1086,13 +1086,13 @@ _registry: domain: "Domain" createKey: "Schlüssel erstellen" _aboutMisskey: - about: "Calckey ist ein Fork von Misskey, der seit 2022 von ThatOneCalculator entwickelt + 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..cb7fd9831 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 +aboutMisskey: Σχετικά με το Firefish maintainerName: Προγραμματιστής/στρια uploadFromUrlRequested: Το ανέβασμα ζητήθηκε themeForLightMode: Θέμα για τη Φωτεινή Λειτουργία diff --git a/locales/en-US.yml b/locales/en-US.yml index d493f332f..1305cda33 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" +aboutMisskey: "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" @@ -738,7 +738,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" @@ -796,9 +796,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" @@ -904,7 +904,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}" @@ -1046,7 +1046,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. Do NOT add `https://`, ONLY the domain." @@ -1056,7 +1056,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" @@ -1103,14 +1103,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" _sensitiveMediaDetection: @@ -1203,16 +1203,16 @@ _registry: domain: "Domain" createKey: "Create key" _aboutMisskey: - about: "Calckey is a fork of Misskey made by ThatOneCalculator, which has been in + 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" + translation: "Translate Firefish" + donate: "Donate to Firefish" morePatrons: "We also appreciate the support of many other helpers not listed here. Thank you! 🥰" - patrons: "Calckey patrons" + 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" @@ -1224,9 +1224,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" @@ -1459,7 +1459,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." @@ -1484,9 +1484,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!" @@ -2071,7 +2071,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 0bd874f33..836eb8d46 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" +aboutMisskey: "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 nota 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}" @@ -1063,16 +1063,16 @@ _registry: domain: "Dominio" createKey: "Crear una llave" _aboutMisskey: - about: "Calckey es una bifurcación de Misskey creada por ThatOneCalculator, que + 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..de25de03f 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ä +aboutMisskey: 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 5291d1693..fe1ac34fb 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 \U0001F4E1\nLa fonction « réactions », vous permet\ \ également d’ajouter une réaction rapide aux notes des autres utilisateur·rice·s\ @@ -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" +aboutMisskey: "À 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\ + \ 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}" @@ -998,8 +998,8 @@ _aboutMisskey: 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 ! \U0001F970" 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 diff --git a/locales/id-ID.yml b/locales/id-ID.yml index 17bebe99c..50af14151 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" +aboutMisskey: "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}" @@ -989,13 +989,13 @@ _registry: domain: "Domain" createKey: "Buat kunci" _aboutMisskey: - about: "Calckey adalah perangkat lunak sumber terbuka yang sedang dikembangkan oleh\ + 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 bdf7cab54..09848ed67 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" +aboutMisskey: "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}" @@ -936,8 +936,8 @@ _aboutMisskey: 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 fa3c3f1cc..20a10f007 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について" +aboutMisskey: "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: "おすすめタイムラインに表示するサーバーを改行区切りで入力してください。`https://`は書かず、ドメインのみを入力してください。" 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の動作を妨げるため、無効にしてください。" _sensitiveMediaDetection: description: "機械学習を使って自動でセンシティブなメディアを検出し、モデレーションに役立てられます。サーバーの負荷が少し増えます。" @@ -1054,12 +1054,12 @@ _registry: domain: "ドメイン" createKey: "キーを作成" _aboutMisskey: - about: "Calckeyは、2022年に生まれたThatOneCalculatorによるMisskeyのforkです。" + about: "Firefishは、2022年に生まれたThatOneCalculatorによるMisskeyのforkです。" contributors: "主なコントリビューター" allContributors: "全てのコントリビューター" source: "ソースコード" - translation: "Calckeyを翻訳" - donate: "Calckeyに寄付" + translation: "Firefishを翻訳" + donate: "Firefishに寄付" morePatrons: "他にも多くの方が支援してくれています。ありがとうございます! 🥰" patrons: "支援者" _nsfw: @@ -1068,8 +1068,8 @@ _nsfw: 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: "ハッシュタグ" @@ -1291,7 +1291,7 @@ _time: hour: "時間" day: "日" _tutorial: - title: "Calckeyの使い方" + title: "Firefishの使い方" step1_1: "ようこそ!" step1_2: "使い始める前に、いくつか設定を済ませましょう。すぐできますよ!" step2_1: "最初に、あなたのプロフィールを作りましょう。" @@ -1309,8 +1309,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: "既に設定は完了しています。" @@ -1889,7 +1889,7 @@ apps: "アプリ" _experiments: title: 試験的な機能 postImportsCaption: - ユーザーが過去の投稿をCalckey・Misskey・Mastodon・Akkoma・Pleromaからインポートすることを許可します。キューが溜まっているときにインポートするとサーバーに負荷がかかる可能性があります。 + ユーザーが過去の投稿をFirefish・Misskey・Mastodon・Akkoma・Pleromaからインポートすることを許可します。キューが溜まっているときにインポートするとサーバーに負荷がかかる可能性があります。 enablePostImports: 投稿のインポートを有効にする sendModMail: モデレーション通知を送る deleted: 削除済み @@ -1904,7 +1904,7 @@ accessibility: アクセシビリティ jumpToPrevious: 前に戻る cw: 閲覧注意 silencedWarning: スパムの可能性があるため、これらのユーザーが所属するサーバーは管理者によりサイレンスされています。 -searchPlaceholder: Calckeyを検索 +searchPlaceholder: Firefishを検索 channelFederationWarn: 現時点では、チャンネルは他のサーバーへ連合しません listsDesc: リストでは指定したユーザーだけのタイムラインを作れます。リストには「タイムライン」のページからアクセスできます。 antennasDesc: "アンテナでは指定した条件に合致する投稿が表示されます。\nアンテナには「タイムライン」のページからアクセスできます。" @@ -1929,4 +1929,4 @@ video: 動画 isBot: このアカウントはBotです isLocked: このアカウントのフォローは承認制です isAdmin: 管理者 -isPatron: Calckey 後援者 +isPatron: Firefish 後援者 diff --git a/locales/ja-KS.yml b/locales/ja-KS.yml index 8a9b91486..b05bb9c90 100644 --- a/locales/ja-KS.yml +++ b/locales/ja-KS.yml @@ -647,7 +647,7 @@ createNewClip: "新しいクリップを作るで" unclip: "クリップ解除するで" confirmToUnclipAlreadyClippedNote: "このノートはすでにクリップ「{name}」に含まれとるで。ノートをこのクリップから除外したる?" public: "パブリック" -i18nInfo: "Calckeyは有志によっていろんな言語に翻訳されとるで。{link}で翻訳に協力したってやー。" +i18nInfo: "Firefishは有志によっていろんな言語に翻訳されとるで。{link}で翻訳に協力したってやー。" manageAccessTokens: "アクセストークンの管理" accountInfo: "アカウント情報" notesCount: "ノートの数やで" 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 2c8e548bd..9e4443867 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: "알림" @@ -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: "노트 수" diff --git a/locales/nl-NL.yml b/locales/nl-NL.yml index 45bc36278..c25db0d29 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" +aboutMisskey: "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/pl-PL.yml b/locales/pl-PL.yml index 571f6af95..0d7aa570e 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" +aboutMisskey: "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}" @@ -988,13 +988,13 @@ _registry: domain: "Domena" createKey: "Utwórz klucz" _aboutMisskey: - about: "Calckey jest forkiem Misskey utworzonym przez ThatOneCalculator, rozwijanym + 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..1a2deecd6 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" +aboutMisskey: "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 2cc22c86a..cdfbca146 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..6ecbd8938 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" +aboutMisskey: "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 8b3e05a17..b4274fbbe 100644 --- a/locales/ru-RU.yml +++ b/locales/ru-RU.yml @@ -1,6 +1,6 @@ _lang_: "Русский" headlineMisskey: "Сеть, сплетённая из заметок" -introMisskey: "Calckey - это децентрализованная платформа социальных сетей с открытым\ +introMisskey: "Firefish - это децентрализованная платформа социальных сетей с открытым\ \ исходным кодом, которая свободна навсегда! \U0001F680" monthAndDay: "{day}.{month}" search: "Поиск" @@ -148,7 +148,7 @@ cacheRemoteFilesDescription: "Когда эта настройка отключ \ так как не будут создаваться эскизы." flagAsBot: "Аккаунт бота" flagAsBotDescription: "Включите, если этот аккаунт управляется программой. Это позволит\ - \ системе Calckey учитывать это, а также поможет разработчикам других ботов предотвратить\ + \ системе Firefish учитывать это, а также поможет разработчикам других ботов предотвратить\ \ бесконечные циклы взаимодействия." flagAsCat: "Аккаунт кота" flagAsCatDescription: "Вы получите кошачьи ушки и будете говорить как кот!" @@ -215,7 +215,7 @@ noUsers: "Нет ни одного пользователя" editProfile: "Редактировать профиль" noteDeleteConfirm: "Вы хотите удалить этот пост?" pinLimitExceeded: "Нельзя закрепить ещё больше постов" -intro: "Установка Calckey завершена! А теперь создайте учетную запись администратора." +intro: "Установка Firefish завершена! А теперь создайте учетную запись администратора." done: "Готово" processing: "Обработка..." preview: "Предпросмотр" @@ -403,7 +403,7 @@ exploreFediverse: "Исследуйте Fediverse" popularTags: "Популярные теги" userList: "Списки" about: "Описание" -aboutMisskey: "О Calckey" +aboutMisskey: "О Firefish" administrator: "Администратор" token: "Токен" twoStepAuthentication: "Двухфакторная аутентификация" @@ -562,7 +562,7 @@ ascendingOrder: "по возрастанию" descendingOrder: "По убыванию" scratchpad: "Когтеточка" scratchpadDescription: "«Когтеточка» — это место для опытов с AiScript. Здесь можно\ - \ писать программы, взаимодействующие с Calckey, запускать и смотреть что из этого\ + \ писать программы, взаимодействующие с Firefish, запускать и смотреть что из этого\ \ получается." output: "Выходы" script: "Скрипт" @@ -696,7 +696,7 @@ createNew: "Новый документ" optional: "Необязательно" createNewClip: "Новая подборка" public: "Общедоступно" -i18nInfo: "Calckey переводят на разные языки добровольцы со всего света. Ваша помощь\ +i18nInfo: "Firefish переводят на разные языки добровольцы со всего света. Ваша помощь\ \ тоже пригодится здесь: {link}." manageAccessTokens: "Управление токенами доступа" accountInfo: "Сведения об учётной записи" @@ -754,7 +754,7 @@ nUsers: "Пользователей: {n}" nNotes: "Постов: {n}" sendErrorReports: "Посылать отчёты о сбоях" sendErrorReportsDescription: "Если включено, когда возникнет какая-нибудь техническая\ - \ проблема, подробные сведения об этом будут отправлены разработчикам Calckey.\n\ + \ проблема, подробные сведения об этом будут отправлены разработчикам Firefish.\n\ Это очень помогает делать программу лучше. В отчёты попадают тип и версия ОС, браузера,\ \ журнал действий (что привело к сбою) и тому подобное." myTheme: "Личная тема" @@ -850,7 +850,7 @@ hashtags: "Хэштег" troubleshooting: "Разрешение проблем" useBlurEffect: "Размытие в интерфейсе" learnMore: "Подробнее" -misskeyUpdated: "Calckey обновился!" +misskeyUpdated: "Firefish обновился!" whatIsNew: "Показать изменения" translate: "Перевод" translatedFrom: "Перевод. Язык оригинала — {x}" @@ -985,13 +985,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: "Большое спасибо и многим другим, кто принял участие в этом проекте!\ \ \U0001F970" patrons: "Материальная поддержка" @@ -1001,10 +1001,10 @@ _nsfw: force: "Скрывать вообще все файлы" _mfm: cheatSheet: "Подсказка по разметке MFM" - intro: "MFM — язык оформления текста,используемый в Calckey, Calckey, Akkoma и готов\ + intro: "MFM — язык оформления текста,используемый в Firefish, Firefish, Akkoma и готов\ \ для применения во многих местах. На этой странице собраны и кратко изложены\ \ способы его использовать." - dummy: "Calckey расширяет границы Федиверса" + dummy: "Firefish расширяет границы Федиверса" mention: "Упоминание" mentionDescription: "При помощи знака «собака» перед именем можно упомянуть какого-нибудь\ \ пользователя." @@ -1214,7 +1214,7 @@ _time: hour: "ч" day: "сут" _tutorial: - title: "Как использовать Calckey" + title: "Как использовать Firefish" step1_1: "Добро пожаловать!" step1_2: "Давайте настроим вас. Вы будете работать в кратчайшие сроки!" step2_1: "Сначала, пожалуйста, заполните свой профиль." @@ -1244,7 +1244,7 @@ _tutorial: step6_2: "Ну, вы не просто присоединились к Кальки. Вы присоединились к порталу\ \ в Fediverse, взаимосвязанной сети из тысяч серверов, называемых \"инстансами\"\ ." - step6_3: "Каждый сервер работает по-своему, и не на всех серверах работает Calckey.\ + step6_3: "Каждый сервер работает по-своему, и не на всех серверах работает Firefish.\ \ Но этот работает! Это немного сложно, но вы быстро разберетесь." step6_4: "Теперь идите, изучайте и развлекайтесь!" _2fa: @@ -1883,7 +1883,7 @@ customSplashIconsDescription: URL-адреса для пользовательс загружает / перезагружает страницу. Пожалуйста, убедитесь, что изображения находятся на статическом URL-адресе, предпочтительно все с размером 192x192. logoImageUrl: URL изображения логотипа -showAdminUpdates: Указать, что доступна новая версия Calckey (только для администратора) +showAdminUpdates: Указать, что доступна новая версия Firefish (только для администратора) replayTutorial: Перезапустить туториал migration: Миграция showLocalPosts: 'Показать локальные посты в:' @@ -1903,7 +1903,7 @@ adminCustomCssWarn: Этот параметр следует использов знаете, что он делает. Ввод неправильных значений может привести к тому, что ВСЕ клиенты перестанут нормально функционировать. Пожалуйста, убедитесь, что ваш CSS работает должным образом, протестировав его в настройках вашего пользователя. -showUpdates: Показывать всплывающее окно при обновлении Calckey +showUpdates: Показывать всплывающее окно при обновлении Firefish recommendedInstances: Рекомендованные инстансы defaultReaction: Эмодзи реакция по умолчанию для выходящих и исходящих постов license: Лицензия diff --git a/locales/sk-SK.yml b/locales/sk-SK.yml index dce23d755..8ff951c56 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" +aboutMisskey: "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}" @@ -965,8 +965,8 @@ _aboutMisskey: 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..cd318e087 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" +aboutMisskey: "เกี่ยวกับ 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}" @@ -970,8 +970,8 @@ _aboutMisskey: 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 7dee4fd30..ef44f61f8 100644 --- a/locales/tr-TR.yml +++ b/locales/tr-TR.yml @@ -1,6 +1,6 @@ --- _lang_: "Türkçe" -introMisskey: "Açık kaynaklı bir dağıtılmış mikroblog hizmeti olan Calckey'e hoş geldiniz.\nMisskey, neler olup bittiğini paylaşmak ve herkese sizden bahsetmek için \"notlar\" oluşturmanıza olanak tanıyan, açık kaynaklı, dağıtılmış bir mikroblog hizmetidir.\nHerkesin notlarına kendi tepkilerinizi hızlıca eklemek için \"Tepkiler\" özelliğini de kullanabilirsiniz👍.\nYeni bir dünyayı keşfedin🚀." +introMisskey: "Açık kaynaklı bir dağıtılmış mikroblog hizmeti olan Firefish'e hoş geldiniz.\nMisskey, neler olup bittiğini paylaşmak ve herkese sizden bahsetmek için \"notlar\" oluşturmanıza olanak tanıyan, açık kaynaklı, dağıtılmış bir mikroblog hizmetidir.\nHerkesin notlarına kendi tepkilerinizi hızlıca eklemek için \"Tepkiler\" özelliğini de kullanabilirsiniz👍.\nYeni bir dünyayı keşfedin🚀." monthAndDay: "{month}Ay {day}Gün" search: "Arama" notifications: "Bildirim" diff --git a/locales/uk-UA.yml b/locales/uk-UA.yml index 712c0fd03..b2d32cb23 100644 --- a/locales/uk-UA.yml +++ b/locales/uk-UA.yml @@ -1,7 +1,7 @@ --- _lang_: "Українська" headlineMisskey: "Мережа об'єднана записами" -introMisskey: "Ласкаво просимо! Calckey - децентралізована служба мікроблогів з відкритим кодом.\nСтворюйте \"нотатки\", щоб поділитися тим, що відбувається, і розповісти всім про себе 📡\nЗа допомогою \"реакцій\" ви також можете швидко висловити свої почуття щодо нотаток інших 👍\nДосліджуймо новий світ! 🚀" +introMisskey: "Ласкаво просимо! Firefish - децентралізована служба мікроблогів з відкритим кодом.\nСтворюйте \"нотатки\", щоб поділитися тим, що відбувається, і розповісти всім про себе 📡\nЗа допомогою \"реакцій\" ви також можете швидко висловити свої почуття щодо нотаток інших 👍\nДосліджуймо новий світ! 🚀" monthAndDay: "{month}/{day}" 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: "Попередній перегляд" @@ -376,7 +376,7 @@ exploreFediverse: "Огляд федіверсу" popularTags: "Популярні теги" userList: "Списки" about: "Інформація" -aboutMisskey: "Про Calckey" +aboutMisskey: "Про Firefish" administrator: "Адмін" token: "Токен" twoStepAuthentication: "Двохфакторна аутентифікація" @@ -521,7 +521,7 @@ sort: "Сортування" ascendingOrder: "За зростанням" descendingOrder: "За спаданням" scratchpad: "Чернетка" -scratchpadDescription: "Scratchpad надає середовище для експериментів з AiScript. Ви можете писати, виконувати його і тестувати взаємодію з Calckey." +scratchpadDescription: "Scratchpad надає середовище для експериментів з AiScript. Ви можете писати, виконувати його і тестувати взаємодію з Firefish." output: "Вихід" script: "Скрипт" disablePagesScript: "Вимкнути AiScript на Сторінках" @@ -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 у разі виникнення проблем, що дасть можливість покращити Calckey." +sendErrorReportsDescription: "При увімкненні детальна інформація про помилки буде надана Firefish у разі виникнення проблем, що дасть можливість покращити Firefish." myTheme: "Моя тема" backgroundColor: "Фон" accentColor: "Акцент" @@ -760,8 +760,8 @@ _aboutMisskey: contributors: "Головні помічники" allContributors: "Всі помічники" source: "Вихідний код" - translation: "Перекладати Calckey" - donate: "Пожертвувати Calckey" + translation: "Перекладати Firefish" + donate: "Пожертвувати Firefish" morePatrons: "Ми дуже цінуємо підтримку багатьох інших помічників, не перелічених тут. Дякуємо! 🥰" patrons: "Підтримали" _nsfw: @@ -770,8 +770,8 @@ _nsfw: force: "Приховувати всі медіа файли" _mfm: cheatSheet: " Довідка MFM" - intro: "MFM це ексклюзивна мова розмітки тексту в Calckey, яку можна використовувати в багатьох місцях. Тут ви можете переглянути приклади її синтаксису." - dummy: "Calckey розширює світ Федіверсу" + intro: "MFM це ексклюзивна мова розмітки тексту в Firefish, яку можна використовувати в багатьох місцях. Тут ви можете переглянути приклади її синтаксису." + dummy: "Firefish розширює світ Федіверсу" mention: "Згадка" mentionDescription: "За допомогою знака \"@\" перед ім'ям можна згадати конкретного користувача." hashtag: "Хештеґ" @@ -938,7 +938,7 @@ _time: hour: "г" day: "д" _tutorial: - title: "Як використовувати Calckey" + title: "Як використовувати Firefish" step1_1: "Ласкаво просимо!" step1_2: "Давайте налаштуємо вас. Ви будете працювати в найкоротші терміни!" step2_1: "Спочатку, будь ласка, заповніть свій профіль" @@ -956,7 +956,7 @@ _tutorial: step5_7: "Глобальна {icon} часова шкала - це місце, де ви можете бачити повідомлення від усіх інших підключених екземплярів" step6_1: "Отже, що це за місце?" step6_2: "Ну, ви не просто приєдналися до Кальки. Ви приєдналися до порталу в Fediverse, взаємопов'язаної мережі з тисяч серверів, званих \"інстансами\"." - step6_3: "Кожен сервер працює по-своєму, і не на всіх серверах працює Calckey. Але цей працює! Це трохи складно, але ви швидко розберетеся" + step6_3: "Кожен сервер працює по-своєму, і не на всіх серверах працює Firefish. Але цей працює! Це трохи складно, але ви швидко розберетеся" step6_4: "Тепер ідіть, вивчайте і розважайтеся!" _2fa: registerSecurityKey: "Зареєструвати новий ключ безпеки" diff --git a/locales/vi-VN.yml b/locales/vi-VN.yml index ddd79084f..f1e6c2254 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" @@ -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}" @@ -970,8 +970,8 @@ _aboutMisskey: 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 6870571be..17dc7c8a1 100644 --- a/locales/zh-CN.yml +++ b/locales/zh-CN.yml @@ -652,7 +652,7 @@ createNewClip: "新建便签" unclip: "移除便签" confirmToUnclipAlreadyClippedNote: "本帖已包含在便签\"{name}\"里。您想要将本帖从该便签中移除吗?" public: "公开" -i18nInfo: "Calckey已经被志愿者们翻译成了各种语言。如果你也有兴趣,可以通过{link}帮助翻译。" +i18nInfo: "Firefish已经被志愿者们翻译成了各种语言。如果你也有兴趣,可以通过{link}帮助翻译。" manageAccessTokens: "管理 Access Tokens" accountInfo: "账户信息" notesCount: "帖子数量" @@ -1211,7 +1211,7 @@ _time: hour: "小时" day: "日" _tutorial: - title: "如何使用Calckey" + title: "如何使用Firefish" step1_1: "欢迎!" step1_2: "让我们把你安排好。你很快就会启动并运行!" step2_1: "首先,请完成您的个人资料。" @@ -1229,7 +1229,7 @@ _tutorial: step5_7: "全球{icon}时间线是你可以看到来自所有其他连接的实例的消息。" step6_1: "那么,这里是什么地方?" step6_2: "好吧,你不只是加入卡尔基。你已经加入了Fediverse的一个门户,这是一个由成千上万台服务器组成的互联网络,被称为 \"实例\"" - step6_3: "每个服务器的工作方式不同,并不是所有的服务器都运行Calckey。但这个人确实如此! 这有点复杂,但你很快就会明白的。" + step6_3: "每个服务器的工作方式不同,并不是所有的服务器都运行Firefish。但这个人确实如此! 这有点复杂,但你很快就会明白的。" step6_4: "现在去学习并享受乐趣!" _2fa: alreadyRegistered: "此设备已被注册" @@ -1822,14 +1822,14 @@ customSplashIconsDescription: 用换行符隔开的自定义闪屏图标的URL URL 上,最好全部调整为 192x192 的大小。 recommendedInstancesDescription: 推荐的服务器以换行符分隔,它们将出现在推荐的时间线中。不要添加 "https://",仅添加域名。 splash: 启动画面 -showUpdates: Calckey 更新后显示弹出窗口 +showUpdates: Firefish 更新后显示弹出窗口 selectInstance: 选择一个服务器 silencedInstances: 静默的服务器 antennaInstancesDescription: 每行列出一个服务器主机 pushNotification: 推送通知 subscribePushNotification: 启用推送通知 -showAdminUpdates: 提示新的 Calckey 版本可用(仅对于管理员) -searchPlaceholder: 搜索 Calckey +showAdminUpdates: 提示新的 Firefish 版本可用(仅对于管理员) +searchPlaceholder: 搜索 Firefish addInstance: 添加一个服务器 jumpToPrevious: 跳转至上一个 silenceThisInstance: 使此服务器静音 @@ -1903,7 +1903,7 @@ moveAccountDescription: 这个过程是不可逆的。在移动之前,请确 moveFromLabel: 您要移出的旧帐户: preventAiLearning: 阻止 AI 机器人抓取 preventAiLearningDescription: 请求第三方人工智能语言模型不要研究您上传的内容,例如帖子和图像。 -noGraze: 请禁用 "Graze for Mastodon" 浏览器扩展,因为它会干扰 Calckey。 +noGraze: 请禁用 "Graze for Mastodon" 浏览器扩展,因为它会干扰 Firefish。 moveTo: 将当前帐户移至新帐户 moveToLabel: 你要迁移到的目标帐户: moveAccount: 移动账户! @@ -1925,4 +1925,4 @@ _filters: fromUser: 来自用户 followersOnly: 仅关注者 reactionPickerSkinTone: 首选的表情符号肤色 -isPatron: Calckey 赞助 +isPatron: Firefish 赞助 diff --git a/locales/zh-TW.yml b/locales/zh-TW.yml index c615bcdcc..ec5e8b8c0 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: "此使用者是貓" 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" +aboutMisskey: "關於 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,7 +702,7 @@ onlineUsersCount: "{n}人正在線上" nUsers: "{n}用戶" nNotes: "{n}貼文" sendErrorReports: "傳送錯誤報告" -sendErrorReportsDescription: "啟用後,問題報告將傳送至Calckey開發者以提升軟體品質。\n問題報告可能包括OS版本,瀏覽器類型,行為歷史記錄等。" +sendErrorReportsDescription: "啟用後,問題報告將傳送至Firefish開發者以提升軟體品質。\n問題報告可能包括OS版本,瀏覽器類型,行為歷史記錄等。" myTheme: "我的佈景主題" backgroundColor: "背景" accentColor: "重點色彩" @@ -793,7 +793,7 @@ hashtags: "#tag" troubleshooting: "故障排除" useBlurEffect: "在 UI 上使用模糊效果" learnMore: "更多資訊" -misskeyUpdated: "Calckey 更新完成!" +misskeyUpdated: "Firefish 更新完成!" whatIsNew: "顯示更新資訊" translate: "翻譯" translatedFrom: "從 {x} 翻譯" @@ -975,12 +975,12 @@ _registry: domain: "域" createKey: "新增機碼" _aboutMisskey: - about: "Calckey是由ThatOneCalculator自2022年起開發的Misskey分支。" + about: "Firefish是由ThatOneCalculator自2022年起開發的Misskey分支。" contributors: "主要貢獻者" allContributors: "全體貢獻人員" source: "原始碼" - translation: "翻譯Calckey" - donate: "贊助Calckey" + translation: "翻譯Firefish" + donate: "贊助Firefish" morePatrons: "還有許許多多幫助我們的其他人,非常感謝你們。 🥰" patrons: "贊助者" _nsfw: @@ -990,7 +990,7 @@ _nsfw: _mfm: cheatSheet: "MFM代碼小抄" intro: "MFM是Misskey專用的標記語言,可以在Misskey中的各個位置使用。 您可以這裏看到MFM可用語法列表。" - dummy: "Calckey拓展了Fediverse的世界" + dummy: "Firefish拓展了Fediverse的世界" mention: "提及" mentionDescription: "透過 @+用戶名 來標示特定使用者。" hashtag: "#tag" @@ -1197,7 +1197,7 @@ _time: hour: "小時" day: "日" _tutorial: - title: "如何使用Calckey" + title: "如何使用Firefish" step1_1: "歡迎!" step1_2: "讓我們把你安排好。你很快就會啟動並運行!" step2_1: "首先,請完成你的個人資料。" @@ -1214,8 +1214,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: "你已註冊過一個雙重認證的裝置。" @@ -1775,7 +1775,7 @@ customMOTDDescription: 每次用戶加載/重新加載頁面時,由換行符 privateModeInfo: 啟用後,只有列入白名單的伺服器才能與你的伺服器聯合。所有貼文都將對公眾隱藏。 adminCustomCssWarn: 除非你知道它的作用,否則請不要使用此設定。 輸入不正確的值可能會導致每個人的客戶端無法正常運行。你可在你的的用戶設定中測試,確保你的 CSS 正常工作。 -showUpdates: Calckey 更新時顯示彈出視窗 +showUpdates: Firefish 更新時顯示彈出視窗 recommendedInstances: 建議的伺服器 caption: 自動字幕 enterSendsMessage: 在 Messaging 中按 Return 發送消息 (如關閉則是 Ctrl + Return) @@ -1804,7 +1804,7 @@ customMOTD: 自定義MOTD (網頁載入時顯示的信息) customSplashIcons: 啟動畫面圖標 (網址) splash: 啟動畫面 updateAvailable: 可能有可用的更新! -showAdminUpdates: 表明新的 Calckey 版本可用(只限管理員) +showAdminUpdates: 表明新的 Firefish 版本可用(只限管理員) migration: 遷移 homeTimeline: 主頁時間軸 swipeOnDesktop: 允許在桌面上進行手機式滑動 @@ -1818,7 +1818,7 @@ silenced: 已靜音 _experiments: title: 試驗功能 findOtherInstance: 找找另一個伺服器 -noGraze: 瀏覽器擴展 "Graze for Mastodon" 會與Calckey發生衝突,請停用該擴展。 +noGraze: 瀏覽器擴展 "Graze for Mastodon" 會與Firefish發生衝突,請停用該擴展。 userSaysSomethingReasonRenote: '{name} 轉傳了包含 {reason} 的帖子' pushNotificationNotSupported: 你的瀏覽器或伺服器不支援推送通知 accessibility: 輔助功能 @@ -1839,7 +1839,7 @@ subscribePushNotification: 啟用推送通知 unsubscribePushNotification: 禁用推送通知 pushNotificationAlreadySubscribed: 推送通知已經啟用 recommendedInstancesDescription: 以每行分隔的推薦服務器出現在推薦的時間軸中。 不要添加 `https://`,只添加域名。 -searchPlaceholder: 搜尋 Calckey +searchPlaceholder: 搜尋 Firefish cw: 內容警告 selectChannel: 選擇一個頻道 newer: 較新 diff --git a/package.json b/package.json index 3408ce50f..8437fd223 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,10 @@ { - "name": "calckey", + "name": "firefish", "version": "14.0.0-rc3", "codename": "aqua", "repository": { "type": "git", - "url": "https://codeberg.org/calckey/calckey.git" + "url": "https://codeberg.org/firefish/firefish.git" }, "packageManager": "pnpm@8.6.3", "private": true, diff --git a/packages/README.md b/packages/README.md index 7d7c03e0b..75e38a494 100644 --- a/packages/README.md +++ b/packages/README.md @@ -1,9 +1,9 @@ # 📦 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 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/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/1658203170545calckey.js index 95c3f05d3..b2f67f56d 100644 --- a/packages/backend/migration/1658203170545calckey.js +++ b/packages/backend/migration/1658203170545calckey.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/native-utils/src/mastodon_api.rs b/packages/backend/native-utils/src/mastodon_api.rs index 3016acd54..c7720e1f7 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] @@ -24,7 +24,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 682b82ec0..e932f2f67 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 b584a5691..4be4ad51a 100644 --- a/packages/backend/package.json +++ b/packages/backend/package.json @@ -28,7 +28,7 @@ "@bull-board/api": "5.2.0", "@bull-board/koa": "5.2.0", "@bull-board/ui": "5.2.0", - "@calckey/megalodon": "5.2.0", + "@firefish/megalodon": "5.2.0", "@discordapp/twemoji": "14.1.2", "@elastic/elasticsearch": "7.17.0", "@koa/cors": "3.4.3", @@ -53,7 +53,7 @@ "blurhash": "1.1.5", "bull": "4.10.4", "cacheable-lookup": "7.0.0", - "calckey-js": "workspace:*", + "firefish-js": "workspace:*", "cbor": "8.1.0", "chalk": "5.2.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 9d124d1f0..f670c6b11 100644 --- a/packages/backend/src/boot/master.ts +++ b/packages/backend/src/boot/master.ts @@ -31,12 +31,13 @@ function greet() { if (!envOption.quiet) { //#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( diff --git a/packages/backend/src/config/load.ts b/packages/backend/src/config/load.ts index 9b8ee5edb..2185cda11 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.host; 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 dd3c5b3b7..6c7482406 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://codeberg.org/firefish/firefish", nullable: false, }) public repositoryUrl: string; @Column("varchar", { length: 512, - default: "https://codeberg.org/calckey/calckey/issues/new", + default: "https://codeberg.org/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/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 f8208e6d7..c04b1c0c9 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) @@ -566,8 +566,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 673a0266c..552ff0195 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://codeberg.org/firefish/firefish", }, feedbackUrl: { type: "string", optional: false, nullable: false, - default: "https://codeberg.org/calckey/calckey/issues", + default: "https://codeberg.org/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 353cba1dc..63c4b78a2 100644 --- a/packages/backend/src/server/api/endpoints/patrons.ts +++ b/packages/backend/src/server/api/endpoints/patrons.ts @@ -3,7 +3,7 @@ import { redisClient } from "@/db/redis.js"; export const meta = { tags: ["meta"], - description: "Get list of Calckey patrons from Codeberg", + description: "Get list of Firefish patrons from Codeberg", requireCredential: false, requireCredentialPrivateMode: false, @@ -30,7 +30,7 @@ export default define(meta, paramDef, async (ps) => { } patrons = await fetch( - "https://codeberg.org/calckey/calckey/raw/branch/develop/patrons.json", + "https://codeberg.org/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..a208d87c9 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://codeberg.org/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 df85f2162..6b74c57ea 100644 --- a/packages/backend/src/server/api/mastodon/ApiMastodonCompatibleService.ts +++ b/packages/backend/src/server/api/mastodon/ApiMastodonCompatibleService.ts @@ -1,5 +1,5 @@ import Router from "@koa/router"; -import megalodon, { MegalodonInterface } from "@calckey/megalodon"; +import megalodon, { MegalodonInterface } from "@firefish/megalodon"; import { apiAuthMastodon } from "./endpoints/auth.js"; import { apiAccountMastodon } from "./endpoints/account.js"; import { apiStatusMastodon } from "./endpoints/status.js"; @@ -88,7 +88,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/converters.ts b/packages/backend/src/server/api/mastodon/converters.ts index 825d0f518..7c56aed7c 100644 --- a/packages/backend/src/server/api/mastodon/converters.ts +++ b/packages/backend/src/server/api/mastodon/converters.ts @@ -1,4 +1,4 @@ -import { Entity } from "@calckey/megalodon"; +import { Entity } from "@firefish/megalodon"; import { convertId, IdType } from "../index.js"; function simpleConvert(data: any) { diff --git a/packages/backend/src/server/api/mastodon/endpoints/account.ts b/packages/backend/src/server/api/mastodon/endpoints/account.ts index deb5dac30..208662318 100644 --- a/packages/backend/src/server/api/mastodon/endpoints/account.ts +++ b/packages/backend/src/server/api/mastodon/endpoints/account.ts @@ -113,7 +113,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); @@ -134,7 +134,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) { @@ -152,7 +152,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)); @@ -172,7 +172,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)); @@ -192,7 +192,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)); @@ -212,7 +212,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) { @@ -231,7 +231,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; @@ -252,7 +252,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; @@ -273,7 +273,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) { @@ -311,7 +311,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); @@ -331,7 +331,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) { @@ -430,7 +430,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) { @@ -449,7 +449,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/auth.ts b/packages/backend/src/server/api/mastodon/endpoints/auth.ts index e2cfc47af..70c374292 100644 --- a/packages/backend/src/server/api/mastodon/endpoints/auth.ts +++ b/packages/backend/src/server/api/mastodon/endpoints/auth.ts @@ -1,4 +1,4 @@ -import megalodon, { MegalodonInterface } from "@calckey/megalodon"; +import megalodon, { MegalodonInterface } from "@firefish/megalodon"; import Router from "@koa/router"; import { koaBody } from "koa-body"; import { getClient } from "../ApiMastodonCompatibleService.js"; diff --git a/packages/backend/src/server/api/mastodon/endpoints/filter.ts b/packages/backend/src/server/api/mastodon/endpoints/filter.ts index c99031b0c..d4ae2c328 100644 --- a/packages/backend/src/server/api/mastodon/endpoints/filter.ts +++ b/packages/backend/src/server/api/mastodon/endpoints/filter.ts @@ -1,4 +1,4 @@ -import megalodon, { MegalodonInterface } from "@calckey/megalodon"; +import megalodon, { MegalodonInterface } from "@firefish/megalodon"; import Router from "@koa/router"; import { getClient } from "../ApiMastodonCompatibleService.js"; import { IdType, convertId } from "../../index.js"; @@ -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 c68a09585..02a37bf6c 100644 --- a/packages/backend/src/server/api/mastodon/endpoints/meta.ts +++ b/packages/backend/src/server/api/mastodon/endpoints/meta.ts @@ -1,23 +1,23 @@ -import { Entity } from "@calckey/megalodon"; +import { Entity } from "@firefish/megalodon"; 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 (3.5+ Calckey)", //I hope this version string is correct, we will need to test it. + version: "3.0.0 compatible (3.5+ Firefish)", //I hope this version string is correct, we will need to test it. 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 ac091855f..62371227b 100644 --- a/packages/backend/src/server/api/mastodon/endpoints/notifications.ts +++ b/packages/backend/src/server/api/mastodon/endpoints/notifications.ts @@ -1,4 +1,4 @@ -import megalodon, { MegalodonInterface } from "@calckey/megalodon"; +import megalodon, { MegalodonInterface } from "@firefish/megalodon"; import Router from "@koa/router"; import { koaBody } from "koa-body"; import { convertId, IdType } from "../../index.js"; @@ -49,7 +49,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); if (data.type !== "follow" && data.type !== "follow_request") { @@ -87,7 +87,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/search.ts b/packages/backend/src/server/api/mastodon/endpoints/search.ts index e1aec3488..dca367195 100644 --- a/packages/backend/src/server/api/mastodon/endpoints/search.ts +++ b/packages/backend/src/server/api/mastodon/endpoints/search.ts @@ -1,8 +1,8 @@ -import megalodon, { MegalodonInterface } from "@calckey/megalodon"; +import megalodon, { MegalodonInterface } from "@firefish/megalodon"; import Router from "@koa/router"; import { getClient } from "../ApiMastodonCompatibleService.js"; import axios from "axios"; -import { Converter } from "@calckey/megalodon"; +import { Converter } from "@firefish/megalodon"; import { convertTimelinesArgsId, limitToInt } from "./timeline.js"; import { convertAccount, convertStatus } from "../converters.js"; diff --git a/packages/backend/src/server/api/mastodon/endpoints/status.ts b/packages/backend/src/server/api/mastodon/endpoints/status.ts index a479140e0..52841f689 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[]"]) @@ -76,7 +76,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) { @@ -91,7 +91,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) { @@ -113,7 +113,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)), @@ -161,7 +161,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) { @@ -186,7 +186,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; @@ -208,7 +208,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); @@ -228,7 +228,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) { @@ -247,7 +247,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) { @@ -266,7 +266,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) { @@ -285,7 +285,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) { @@ -304,7 +304,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) { @@ -323,7 +323,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) { @@ -339,7 +339,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) { @@ -354,7 +354,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); @@ -370,7 +370,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) { @@ -387,7 +387,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 b8ef0929e..04cdadd5b 100644 --- a/packages/backend/src/server/api/mastodon/endpoints/timeline.ts +++ b/packages/backend/src/server/api/mastodon/endpoints/timeline.ts @@ -1,5 +1,5 @@ import Router from "@koa/router"; -import megalodon, { Entity, MegalodonInterface } from "@calckey/megalodon"; +import megalodon, { Entity, MegalodonInterface } from "@firefish/megalodon"; import { getClient } from "../ApiMastodonCompatibleService.js"; import { statusModel } from "./status.js"; import Autolinker from "autolinker"; @@ -33,11 +33,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; } @@ -170,7 +170,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)), ); let resp = data.data.map((status) => convertStatus(status)); @@ -221,7 +221,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) { @@ -254,7 +254,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); @@ -274,7 +274,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) { @@ -293,7 +293,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)); @@ -313,9 +313,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; @@ -335,9 +335,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..2ab1689c0 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://codeberg.org/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://codeberg.org/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/api/stream/index.ts b/packages/backend/src/server/api/stream/index.ts index e268b580f..09f9b03a9 100644 --- a/packages/backend/src/server/api/stream/index.ts +++ b/packages/backend/src/server/api/stream/index.ts @@ -25,7 +25,7 @@ import { readNotification } from "../common/read-notification.js"; import channels from "./channels/index.js"; import type Channel from "./channel.js"; import type { StreamEventEmitter, StreamMessages } from "./types.js"; -import { Converter } from "@calckey/megalodon"; +import { Converter } from "@firefish/megalodon"; import { getClient } from "../mastodon/ApiMastodonCompatibleService.js"; import { toTextWithReaction } from "../mastodon/endpoints/timeline.js"; diff --git a/packages/backend/src/server/index.ts b/packages/backend/src/server/index.ts index 95d570eb3..346cd1890 100644 --- a/packages/backend/src/server/index.ts +++ b/packages/backend/src/server/index.ts @@ -21,7 +21,7 @@ import { createTemp } from "@/misc/create-temp.js"; import { publishMainStream } from "@/services/stream.js"; import * as Acct from "@/misc/acct.js"; import { envOption } from "@/env.js"; -import megalodon, { MegalodonInterface } from "@calckey/megalodon"; +import megalodon, { MegalodonInterface } from "@firefish/megalodon"; import activityPub from "./activitypub.js"; import nodeinfo from "./nodeinfo.js"; import wellKnown from "./well-known.js"; diff --git a/packages/backend/src/server/nodeinfo.ts b/packages/backend/src/server/nodeinfo.ts index dbfb28ff6..b4eb166f7 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 d3b7c3b82..580334945 100644 --- a/packages/backend/src/server/web/boot.js +++ b/packages/backend/src/server/web/boot.js @@ -180,7 +180,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 9cbeb28ae..a9a2734b5 100644 --- a/packages/backend/src/server/web/feed.ts +++ b/packages/backend/src/server/web/feed.ts @@ -26,7 +26,7 @@ export default async function (user: User) { 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/views/base.pug b/packages/backend/src/server/web/views/base.pug index 91f4d6606..49089fff2 100644 --- a/packages/backend/src/server/web/views/base.pug +++ b/packages/backend/src/server/web/views/base.pug @@ -14,9 +14,9 @@ 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://codeberg.org/firefish/firefish html @@ -24,13 +24,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 +47,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 +57,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') 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/README.md b/packages/calckey-js/README.md index 0aef8d6b0..1d68cc771 100644 --- a/packages/calckey-js/README.md +++ b/packages/calckey-js/README.md @@ -1,8 +1,8 @@ -# Calckey.js +# Firefish.js -Fork of Misskey.js for Calckey +Fork of Misskey.js for Firefish -https://www.npmjs.com/package/calckey-js +https://www.npmjs.com/package/firefish-js To fully build, run `pnpm i && pnpm run render`. diff --git a/packages/calckey-js/etc/calckey-js.api.json b/packages/calckey-js/etc/calckey-js.api.json index 61ab4e247..8cb56a2d7 100644 --- a/packages/calckey-js/etc/calckey-js.api.json +++ b/packages/calckey-js/etc/calckey-js.api.json @@ -161,20 +161,20 @@ } }, "kind": "Package", - "canonicalReference": "calckey-js!", + "canonicalReference": "firefish-js!", "docComment": "", - "name": "calckey-js", + "name": "firefish-js", "preserveMemberOrder": false, "members": [ { "kind": "EntryPoint", - "canonicalReference": "calckey-js!", + "canonicalReference": "firefish-js!", "name": "", "preserveMemberOrder": false, "members": [ { "kind": "TypeAlias", - "canonicalReference": "calckey-js!Acct:type", + "canonicalReference": "firefish-js!Acct:type", "docComment": "", "excerptTokens": [ { @@ -200,7 +200,7 @@ }, { "kind": "Namespace", - "canonicalReference": "calckey-js!api:namespace", + "canonicalReference": "firefish-js!api:namespace", "docComment": "", "excerptTokens": [], "fileUrlPath": "src/index.ts", @@ -210,7 +210,7 @@ "members": [ { "kind": "Class", - "canonicalReference": "calckey-js!api.APIClient:class", + "canonicalReference": "firefish-js!api.APIClient:class", "docComment": "", "excerptTokens": [ { @@ -226,7 +226,7 @@ "members": [ { "kind": "Constructor", - "canonicalReference": "calckey-js!api.APIClient:constructor(1)", + "canonicalReference": "firefish-js!api.APIClient:constructor(1)", "docComment": "/**\n * Constructs a new instance of the `APIClient` class\n */\n", "excerptTokens": [ { @@ -240,7 +240,7 @@ { "kind": "Reference", "text": "APIClient", - "canonicalReference": "calckey-js!api.APIClient:class" + "canonicalReference": "firefish-js!api.APIClient:class" }, { "kind": "Content", @@ -249,7 +249,7 @@ { "kind": "Reference", "text": "APIClient", - "canonicalReference": "calckey-js!api.APIClient:class" + "canonicalReference": "firefish-js!api.APIClient:class" }, { "kind": "Content", @@ -258,7 +258,7 @@ { "kind": "Reference", "text": "APIClient", - "canonicalReference": "calckey-js!api.APIClient:class" + "canonicalReference": "firefish-js!api.APIClient:class" }, { "kind": "Content", @@ -285,7 +285,7 @@ }, { "kind": "Property", - "canonicalReference": "calckey-js!api.APIClient#credential:member", + "canonicalReference": "firefish-js!api.APIClient#credential:member", "docComment": "", "excerptTokens": [ { @@ -315,7 +315,7 @@ }, { "kind": "Property", - "canonicalReference": "calckey-js!api.APIClient#fetch:member", + "canonicalReference": "firefish-js!api.APIClient#fetch:member", "docComment": "", "excerptTokens": [ { @@ -325,7 +325,7 @@ { "kind": "Reference", "text": "FetchLike", - "canonicalReference": "calckey-js!api.FetchLike:type" + "canonicalReference": "firefish-js!api.FetchLike:type" }, { "kind": "Content", @@ -346,7 +346,7 @@ }, { "kind": "Property", - "canonicalReference": "calckey-js!api.APIClient#origin:member", + "canonicalReference": "firefish-js!api.APIClient#origin:member", "docComment": "", "excerptTokens": [ { @@ -376,7 +376,7 @@ }, { "kind": "Method", - "canonicalReference": "calckey-js!api.APIClient#request:member(1)", + "canonicalReference": "firefish-js!api.APIClient#request:member(1)", "docComment": "", "excerptTokens": [ { @@ -390,7 +390,7 @@ { "kind": "Reference", "text": "Endpoints", - "canonicalReference": "calckey-js!Endpoints:type" + "canonicalReference": "firefish-js!Endpoints:type" }, { "kind": "Content", @@ -399,7 +399,7 @@ { "kind": "Reference", "text": "Endpoints", - "canonicalReference": "calckey-js!Endpoints:type" + "canonicalReference": "firefish-js!Endpoints:type" }, { "kind": "Content", @@ -445,7 +445,7 @@ { "kind": "Reference", "text": "Endpoints", - "canonicalReference": "calckey-js!Endpoints:type" + "canonicalReference": "firefish-js!Endpoints:type" }, { "kind": "Content", @@ -454,7 +454,7 @@ { "kind": "Reference", "text": "IsCaseMatched", - "canonicalReference": "calckey-js!~IsCaseMatched:type" + "canonicalReference": "firefish-js!~IsCaseMatched:type" }, { "kind": "Content", @@ -463,7 +463,7 @@ { "kind": "Reference", "text": "GetCaseResult", - "canonicalReference": "calckey-js!~GetCaseResult:type" + "canonicalReference": "firefish-js!~GetCaseResult:type" }, { "kind": "Content", @@ -472,7 +472,7 @@ { "kind": "Reference", "text": "IsCaseMatched", - "canonicalReference": "calckey-js!~IsCaseMatched:type" + "canonicalReference": "firefish-js!~IsCaseMatched:type" }, { "kind": "Content", @@ -481,7 +481,7 @@ { "kind": "Reference", "text": "GetCaseResult", - "canonicalReference": "calckey-js!~GetCaseResult:type" + "canonicalReference": "firefish-js!~GetCaseResult:type" }, { "kind": "Content", @@ -490,7 +490,7 @@ { "kind": "Reference", "text": "IsCaseMatched", - "canonicalReference": "calckey-js!~IsCaseMatched:type" + "canonicalReference": "firefish-js!~IsCaseMatched:type" }, { "kind": "Content", @@ -499,7 +499,7 @@ { "kind": "Reference", "text": "GetCaseResult", - "canonicalReference": "calckey-js!~GetCaseResult:type" + "canonicalReference": "firefish-js!~GetCaseResult:type" }, { "kind": "Content", @@ -508,7 +508,7 @@ { "kind": "Reference", "text": "IsCaseMatched", - "canonicalReference": "calckey-js!~IsCaseMatched:type" + "canonicalReference": "firefish-js!~IsCaseMatched:type" }, { "kind": "Content", @@ -517,7 +517,7 @@ { "kind": "Reference", "text": "GetCaseResult", - "canonicalReference": "calckey-js!~GetCaseResult:type" + "canonicalReference": "firefish-js!~GetCaseResult:type" }, { "kind": "Content", @@ -526,7 +526,7 @@ { "kind": "Reference", "text": "IsCaseMatched", - "canonicalReference": "calckey-js!~IsCaseMatched:type" + "canonicalReference": "firefish-js!~IsCaseMatched:type" }, { "kind": "Content", @@ -535,7 +535,7 @@ { "kind": "Reference", "text": "GetCaseResult", - "canonicalReference": "calckey-js!~GetCaseResult:type" + "canonicalReference": "firefish-js!~GetCaseResult:type" }, { "kind": "Content", @@ -544,7 +544,7 @@ { "kind": "Reference", "text": "IsCaseMatched", - "canonicalReference": "calckey-js!~IsCaseMatched:type" + "canonicalReference": "firefish-js!~IsCaseMatched:type" }, { "kind": "Content", @@ -553,7 +553,7 @@ { "kind": "Reference", "text": "GetCaseResult", - "canonicalReference": "calckey-js!~GetCaseResult:type" + "canonicalReference": "firefish-js!~GetCaseResult:type" }, { "kind": "Content", @@ -562,7 +562,7 @@ { "kind": "Reference", "text": "IsCaseMatched", - "canonicalReference": "calckey-js!~IsCaseMatched:type" + "canonicalReference": "firefish-js!~IsCaseMatched:type" }, { "kind": "Content", @@ -571,7 +571,7 @@ { "kind": "Reference", "text": "GetCaseResult", - "canonicalReference": "calckey-js!~GetCaseResult:type" + "canonicalReference": "firefish-js!~GetCaseResult:type" }, { "kind": "Content", @@ -580,7 +580,7 @@ { "kind": "Reference", "text": "IsCaseMatched", - "canonicalReference": "calckey-js!~IsCaseMatched:type" + "canonicalReference": "firefish-js!~IsCaseMatched:type" }, { "kind": "Content", @@ -589,7 +589,7 @@ { "kind": "Reference", "text": "GetCaseResult", - "canonicalReference": "calckey-js!~GetCaseResult:type" + "canonicalReference": "firefish-js!~GetCaseResult:type" }, { "kind": "Content", @@ -598,7 +598,7 @@ { "kind": "Reference", "text": "IsCaseMatched", - "canonicalReference": "calckey-js!~IsCaseMatched:type" + "canonicalReference": "firefish-js!~IsCaseMatched:type" }, { "kind": "Content", @@ -607,7 +607,7 @@ { "kind": "Reference", "text": "GetCaseResult", - "canonicalReference": "calckey-js!~GetCaseResult:type" + "canonicalReference": "firefish-js!~GetCaseResult:type" }, { "kind": "Content", @@ -616,7 +616,7 @@ { "kind": "Reference", "text": "IsCaseMatched", - "canonicalReference": "calckey-js!~IsCaseMatched:type" + "canonicalReference": "firefish-js!~IsCaseMatched:type" }, { "kind": "Content", @@ -625,7 +625,7 @@ { "kind": "Reference", "text": "GetCaseResult", - "canonicalReference": "calckey-js!~GetCaseResult:type" + "canonicalReference": "firefish-js!~GetCaseResult:type" }, { "kind": "Content", @@ -634,7 +634,7 @@ { "kind": "Reference", "text": "Endpoints", - "canonicalReference": "calckey-js!Endpoints:type" + "canonicalReference": "firefish-js!Endpoints:type" }, { "kind": "Content", @@ -643,7 +643,7 @@ { "kind": "Reference", "text": "Endpoints", - "canonicalReference": "calckey-js!Endpoints:type" + "canonicalReference": "firefish-js!Endpoints:type" }, { "kind": "Content", @@ -721,7 +721,7 @@ }, { "kind": "TypeAlias", - "canonicalReference": "calckey-js!api.APIError:type", + "canonicalReference": "firefish-js!api.APIError:type", "docComment": "", "excerptTokens": [ { @@ -756,7 +756,7 @@ }, { "kind": "TypeAlias", - "canonicalReference": "calckey-js!api.FetchLike:type", + "canonicalReference": "firefish-js!api.FetchLike:type", "docComment": "", "excerptTokens": [ { @@ -818,7 +818,7 @@ }, { "kind": "Function", - "canonicalReference": "calckey-js!api.isAPIError:function(1)", + "canonicalReference": "firefish-js!api.isAPIError:function(1)", "docComment": "", "excerptTokens": [ { @@ -836,7 +836,7 @@ { "kind": "Reference", "text": "reason", - "canonicalReference": "calckey-js!~reason" + "canonicalReference": "firefish-js!~reason" }, { "kind": "Content", @@ -845,7 +845,7 @@ { "kind": "Reference", "text": "APIError", - "canonicalReference": "calckey-js!api.APIError:type" + "canonicalReference": "firefish-js!api.APIError:type" }, { "kind": "Content", @@ -875,7 +875,7 @@ }, { "kind": "Class", - "canonicalReference": "calckey-js!ChannelConnection:class", + "canonicalReference": "firefish-js!ChannelConnection:class", "docComment": "", "excerptTokens": [ { @@ -885,7 +885,7 @@ { "kind": "Reference", "text": "AnyOf", - "canonicalReference": "calckey-js!~AnyOf:type" + "canonicalReference": "firefish-js!~AnyOf:type" }, { "kind": "Content", @@ -894,7 +894,7 @@ { "kind": "Reference", "text": "Channels", - "canonicalReference": "calckey-js!Channels:type" + "canonicalReference": "firefish-js!Channels:type" }, { "kind": "Content", @@ -947,7 +947,7 @@ "members": [ { "kind": "Constructor", - "canonicalReference": "calckey-js!ChannelConnection:constructor(1)", + "canonicalReference": "firefish-js!ChannelConnection:constructor(1)", "docComment": "/**\n * Constructs a new instance of the `Connection` class\n */\n", "excerptTokens": [ { @@ -957,7 +957,7 @@ { "kind": "Reference", "text": "Stream", - "canonicalReference": "calckey-js!Stream:class" + "canonicalReference": "firefish-js!Stream:class" }, { "kind": "Content", @@ -1012,7 +1012,7 @@ }, { "kind": "Property", - "canonicalReference": "calckey-js!ChannelConnection#channel:member", + "canonicalReference": "firefish-js!ChannelConnection#channel:member", "docComment": "", "excerptTokens": [ { @@ -1042,7 +1042,7 @@ }, { "kind": "Method", - "canonicalReference": "calckey-js!ChannelConnection#dispose:member(1)", + "canonicalReference": "firefish-js!ChannelConnection#dispose:member(1)", "docComment": "", "excerptTokens": [ { @@ -1073,7 +1073,7 @@ }, { "kind": "Property", - "canonicalReference": "calckey-js!ChannelConnection#id:member", + "canonicalReference": "firefish-js!ChannelConnection#id:member", "docComment": "", "excerptTokens": [ { @@ -1103,7 +1103,7 @@ }, { "kind": "Property", - "canonicalReference": "calckey-js!ChannelConnection#inCount:member", + "canonicalReference": "firefish-js!ChannelConnection#inCount:member", "docComment": "", "excerptTokens": [ { @@ -1133,7 +1133,7 @@ }, { "kind": "Property", - "canonicalReference": "calckey-js!ChannelConnection#name:member", + "canonicalReference": "firefish-js!ChannelConnection#name:member", "docComment": "", "excerptTokens": [ { @@ -1163,7 +1163,7 @@ }, { "kind": "Property", - "canonicalReference": "calckey-js!ChannelConnection#outCount:member", + "canonicalReference": "firefish-js!ChannelConnection#outCount:member", "docComment": "", "excerptTokens": [ { @@ -1193,7 +1193,7 @@ }, { "kind": "Method", - "canonicalReference": "calckey-js!ChannelConnection#send:member(1)", + "canonicalReference": "firefish-js!ChannelConnection#send:member(1)", "docComment": "", "excerptTokens": [ { @@ -1278,7 +1278,7 @@ }, { "kind": "Property", - "canonicalReference": "calckey-js!ChannelConnection#stream:member", + "canonicalReference": "firefish-js!ChannelConnection#stream:member", "docComment": "", "excerptTokens": [ { @@ -1288,7 +1288,7 @@ { "kind": "Reference", "text": "Stream", - "canonicalReference": "calckey-js!Stream:class" + "canonicalReference": "firefish-js!Stream:class" }, { "kind": "Content", @@ -1316,7 +1316,7 @@ }, { "kind": "TypeAlias", - "canonicalReference": "calckey-js!Channels:type", + "canonicalReference": "firefish-js!Channels:type", "docComment": "", "excerptTokens": [ { @@ -1330,7 +1330,7 @@ { "kind": "Reference", "text": "Notification", - "canonicalReference": "calckey-js!entities.Notification_2:type" + "canonicalReference": "firefish-js!entities.Notification_2:type" }, { "kind": "Content", @@ -1339,7 +1339,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -1348,7 +1348,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -1357,7 +1357,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -1366,7 +1366,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -1375,7 +1375,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -1384,7 +1384,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -1393,7 +1393,7 @@ { "kind": "Reference", "text": "MeDetailed", - "canonicalReference": "calckey-js!entities.MeDetailed:type" + "canonicalReference": "firefish-js!entities.MeDetailed:type" }, { "kind": "Content", @@ -1402,7 +1402,7 @@ { "kind": "Reference", "text": "PageEvent", - "canonicalReference": "calckey-js!entities.PageEvent:type" + "canonicalReference": "firefish-js!entities.PageEvent:type" }, { "kind": "Content", @@ -1411,7 +1411,7 @@ { "kind": "Reference", "text": "DriveFile", - "canonicalReference": "calckey-js!entities.DriveFile:type" + "canonicalReference": "firefish-js!entities.DriveFile:type" }, { "kind": "Content", @@ -1420,7 +1420,7 @@ { "kind": "Reference", "text": "Notification", - "canonicalReference": "calckey-js!entities.Notification_2:type" + "canonicalReference": "firefish-js!entities.Notification_2:type" }, { "kind": "Content", @@ -1429,7 +1429,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -1438,7 +1438,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -1447,7 +1447,7 @@ { "kind": "Reference", "text": "MessagingMessage", - "canonicalReference": "calckey-js!entities.MessagingMessage:type" + "canonicalReference": "firefish-js!entities.MessagingMessage:type" }, { "kind": "Content", @@ -1456,7 +1456,7 @@ { "kind": "Reference", "text": "MessagingMessage", - "canonicalReference": "calckey-js!entities.MessagingMessage:type" + "canonicalReference": "firefish-js!entities.MessagingMessage:type" }, { "kind": "Content", @@ -1465,7 +1465,7 @@ { "kind": "Reference", "text": "Antenna", - "canonicalReference": "calckey-js!entities.Antenna:type" + "canonicalReference": "firefish-js!entities.Antenna:type" }, { "kind": "Content", @@ -1474,7 +1474,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -1483,7 +1483,7 @@ { "kind": "Reference", "text": "FIXME", - "canonicalReference": "calckey-js!~FIXME:type" + "canonicalReference": "firefish-js!~FIXME:type" }, { "kind": "Content", @@ -1492,7 +1492,7 @@ { "kind": "Reference", "text": "FIXME", - "canonicalReference": "calckey-js!~FIXME:type" + "canonicalReference": "firefish-js!~FIXME:type" }, { "kind": "Content", @@ -1501,7 +1501,7 @@ { "kind": "Reference", "text": "DriveFile", - "canonicalReference": "calckey-js!entities.DriveFile:type" + "canonicalReference": "firefish-js!entities.DriveFile:type" }, { "kind": "Content", @@ -1510,7 +1510,7 @@ { "kind": "Reference", "text": "Antenna", - "canonicalReference": "calckey-js!entities.Antenna:type" + "canonicalReference": "firefish-js!entities.Antenna:type" }, { "kind": "Content", @@ -1519,7 +1519,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -1528,7 +1528,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -1537,7 +1537,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -1546,7 +1546,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -1555,7 +1555,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -1564,7 +1564,7 @@ { "kind": "Reference", "text": "Antenna", - "canonicalReference": "calckey-js!entities.Antenna:type" + "canonicalReference": "firefish-js!entities.Antenna:type" }, { "kind": "Content", @@ -1573,7 +1573,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -1582,7 +1582,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -1591,7 +1591,7 @@ { "kind": "Reference", "text": "UserGroup", - "canonicalReference": "calckey-js!entities.UserGroup:type" + "canonicalReference": "firefish-js!entities.UserGroup:type" }, { "kind": "Content", @@ -1600,7 +1600,7 @@ { "kind": "Reference", "text": "MessagingMessage", - "canonicalReference": "calckey-js!entities.MessagingMessage:type" + "canonicalReference": "firefish-js!entities.MessagingMessage:type" }, { "kind": "Content", @@ -1609,7 +1609,7 @@ { "kind": "Reference", "text": "MessagingMessage", - "canonicalReference": "calckey-js!entities.MessagingMessage:type" + "canonicalReference": "firefish-js!entities.MessagingMessage:type" }, { "kind": "Content", @@ -1618,7 +1618,7 @@ { "kind": "Reference", "text": "MessagingMessage", - "canonicalReference": "calckey-js!entities.MessagingMessage:type" + "canonicalReference": "firefish-js!entities.MessagingMessage:type" }, { "kind": "Content", @@ -1627,7 +1627,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -1636,7 +1636,7 @@ { "kind": "Reference", "text": "MessagingMessage", - "canonicalReference": "calckey-js!entities.MessagingMessage:type" + "canonicalReference": "firefish-js!entities.MessagingMessage:type" }, { "kind": "Content", @@ -1645,7 +1645,7 @@ { "kind": "Reference", "text": "FIXME", - "canonicalReference": "calckey-js!~FIXME:type" + "canonicalReference": "firefish-js!~FIXME:type" }, { "kind": "Content", @@ -1654,7 +1654,7 @@ { "kind": "Reference", "text": "FIXME", - "canonicalReference": "calckey-js!~FIXME:type" + "canonicalReference": "firefish-js!~FIXME:type" }, { "kind": "Content", @@ -1675,7 +1675,7 @@ }, { "kind": "TypeAlias", - "canonicalReference": "calckey-js!Endpoints:type", + "canonicalReference": "firefish-js!Endpoints:type", "docComment": "", "excerptTokens": [ { @@ -1689,7 +1689,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -1698,7 +1698,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -1707,7 +1707,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -1716,7 +1716,7 @@ { "kind": "Reference", "text": "NoParams", - "canonicalReference": "calckey-js!~NoParams:type" + "canonicalReference": "firefish-js!~NoParams:type" }, { "kind": "Content", @@ -1725,7 +1725,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -1734,7 +1734,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -1743,7 +1743,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -1752,7 +1752,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -1761,7 +1761,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -1770,7 +1770,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -1779,7 +1779,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -1788,7 +1788,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -1797,7 +1797,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -1806,7 +1806,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -1815,7 +1815,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -1824,7 +1824,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -1833,7 +1833,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -1842,7 +1842,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -1851,7 +1851,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -1860,7 +1860,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -1869,7 +1869,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -1878,7 +1878,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -1887,7 +1887,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -1896,7 +1896,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -1905,7 +1905,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -1914,7 +1914,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -1923,7 +1923,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -1932,7 +1932,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -1941,7 +1941,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -1950,7 +1950,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -1959,7 +1959,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -1968,7 +1968,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -1977,7 +1977,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -1986,7 +1986,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -1995,7 +1995,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2004,7 +2004,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2013,7 +2013,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2022,7 +2022,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2031,7 +2031,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2040,7 +2040,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2049,7 +2049,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2058,7 +2058,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2067,7 +2067,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2076,7 +2076,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2085,7 +2085,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2094,7 +2094,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2103,7 +2103,7 @@ { "kind": "Reference", "text": "Ad", - "canonicalReference": "calckey-js!entities.Ad:type" + "canonicalReference": "firefish-js!entities.Ad:type" }, { "kind": "Content", @@ -2112,7 +2112,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2121,7 +2121,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2130,7 +2130,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2139,7 +2139,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2148,7 +2148,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2157,7 +2157,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2166,7 +2166,7 @@ { "kind": "Reference", "text": "Announcement", - "canonicalReference": "calckey-js!entities.Announcement:type" + "canonicalReference": "firefish-js!entities.Announcement:type" }, { "kind": "Content", @@ -2175,7 +2175,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2184,7 +2184,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2193,7 +2193,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2202,7 +2202,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2211,7 +2211,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2220,7 +2220,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2229,7 +2229,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2238,7 +2238,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2247,7 +2247,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2256,7 +2256,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2265,7 +2265,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2274,7 +2274,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2283,7 +2283,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2292,7 +2292,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2301,7 +2301,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2310,7 +2310,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2319,7 +2319,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2328,7 +2328,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2337,7 +2337,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2346,7 +2346,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2355,7 +2355,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2364,7 +2364,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2373,7 +2373,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2382,7 +2382,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2391,7 +2391,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2400,7 +2400,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2409,7 +2409,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2418,7 +2418,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2427,7 +2427,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2436,7 +2436,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2445,7 +2445,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2454,7 +2454,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2463,7 +2463,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2472,7 +2472,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2481,7 +2481,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2490,7 +2490,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2499,7 +2499,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2508,7 +2508,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2517,7 +2517,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2526,7 +2526,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2535,7 +2535,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2544,7 +2544,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2553,7 +2553,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2562,7 +2562,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2571,7 +2571,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2580,7 +2580,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2589,7 +2589,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2598,7 +2598,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2607,7 +2607,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2616,7 +2616,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2625,7 +2625,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2634,7 +2634,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2643,7 +2643,7 @@ { "kind": "Reference", "text": "Announcement", - "canonicalReference": "calckey-js!entities.Announcement:type" + "canonicalReference": "firefish-js!entities.Announcement:type" }, { "kind": "Content", @@ -2652,7 +2652,7 @@ { "kind": "Reference", "text": "Announcement", - "canonicalReference": "calckey-js!entities.Announcement:type" + "canonicalReference": "firefish-js!entities.Announcement:type" }, { "kind": "Content", @@ -2661,7 +2661,7 @@ { "kind": "Reference", "text": "Announcement", - "canonicalReference": "calckey-js!entities.Announcement:type" + "canonicalReference": "firefish-js!entities.Announcement:type" }, { "kind": "Content", @@ -2670,7 +2670,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2679,7 +2679,7 @@ { "kind": "Reference", "text": "Antenna", - "canonicalReference": "calckey-js!entities.Antenna:type" + "canonicalReference": "firefish-js!entities.Antenna:type" }, { "kind": "Content", @@ -2688,7 +2688,7 @@ { "kind": "Reference", "text": "Antenna", - "canonicalReference": "calckey-js!entities.Antenna:type" + "canonicalReference": "firefish-js!entities.Antenna:type" }, { "kind": "Content", @@ -2697,7 +2697,7 @@ { "kind": "Reference", "text": "NoParams", - "canonicalReference": "calckey-js!~NoParams:type" + "canonicalReference": "firefish-js!~NoParams:type" }, { "kind": "Content", @@ -2706,7 +2706,7 @@ { "kind": "Reference", "text": "Antenna", - "canonicalReference": "calckey-js!entities.Antenna:type" + "canonicalReference": "firefish-js!entities.Antenna:type" }, { "kind": "Content", @@ -2715,7 +2715,7 @@ { "kind": "Reference", "text": "Antenna", - "canonicalReference": "calckey-js!entities.Antenna:type" + "canonicalReference": "firefish-js!entities.Antenna:type" }, { "kind": "Content", @@ -2724,7 +2724,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -2733,7 +2733,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -2742,7 +2742,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -2751,7 +2751,7 @@ { "kind": "Reference", "text": "Antenna", - "canonicalReference": "calckey-js!entities.Antenna:type" + "canonicalReference": "firefish-js!entities.Antenna:type" }, { "kind": "Content", @@ -2760,7 +2760,7 @@ { "kind": "Reference", "text": "Antenna", - "canonicalReference": "calckey-js!entities.Antenna:type" + "canonicalReference": "firefish-js!entities.Antenna:type" }, { "kind": "Content", @@ -2769,7 +2769,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2778,7 +2778,7 @@ { "kind": "Reference", "text": "Antenna", - "canonicalReference": "calckey-js!entities.Antenna:type" + "canonicalReference": "firefish-js!entities.Antenna:type" }, { "kind": "Content", @@ -2787,7 +2787,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2796,7 +2796,7 @@ { "kind": "Reference", "text": "Antenna", - "canonicalReference": "calckey-js!entities.Antenna:type" + "canonicalReference": "firefish-js!entities.Antenna:type" }, { "kind": "Content", @@ -2814,7 +2814,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -2823,7 +2823,7 @@ { "kind": "Reference", "text": "UserDetailed", - "canonicalReference": "calckey-js!entities.UserDetailed:type" + "canonicalReference": "firefish-js!entities.UserDetailed:type" }, { "kind": "Content", @@ -2832,7 +2832,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2841,7 +2841,7 @@ { "kind": "Reference", "text": "App", - "canonicalReference": "calckey-js!entities.App:type" + "canonicalReference": "firefish-js!entities.App:type" }, { "kind": "Content", @@ -2850,7 +2850,7 @@ { "kind": "Reference", "text": "App", - "canonicalReference": "calckey-js!entities.App:type" + "canonicalReference": "firefish-js!entities.App:type" }, { "kind": "Content", @@ -2859,7 +2859,7 @@ { "kind": "Reference", "text": "App", - "canonicalReference": "calckey-js!entities.App:type" + "canonicalReference": "firefish-js!entities.App:type" }, { "kind": "Content", @@ -2868,7 +2868,7 @@ { "kind": "Reference", "text": "AuthSession", - "canonicalReference": "calckey-js!entities.AuthSession:type" + "canonicalReference": "firefish-js!entities.AuthSession:type" }, { "kind": "Content", @@ -2877,7 +2877,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -2886,7 +2886,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -2895,7 +2895,7 @@ { "kind": "Reference", "text": "UserDetailed", - "canonicalReference": "calckey-js!entities.UserDetailed:type" + "canonicalReference": "firefish-js!entities.UserDetailed:type" }, { "kind": "Content", @@ -2904,7 +2904,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -2913,7 +2913,7 @@ { "kind": "Reference", "text": "UserDetailed", - "canonicalReference": "calckey-js!entities.UserDetailed:type" + "canonicalReference": "firefish-js!entities.UserDetailed:type" }, { "kind": "Content", @@ -2922,7 +2922,7 @@ { "kind": "Reference", "text": "Blocking", - "canonicalReference": "calckey-js!entities.Blocking:type" + "canonicalReference": "firefish-js!entities.Blocking:type" }, { "kind": "Content", @@ -2931,7 +2931,7 @@ { "kind": "Reference", "text": "Blocking", - "canonicalReference": "calckey-js!entities.Blocking:type" + "canonicalReference": "firefish-js!entities.Blocking:type" }, { "kind": "Content", @@ -2940,7 +2940,7 @@ { "kind": "Reference", "text": "Blocking", - "canonicalReference": "calckey-js!entities.Blocking:type" + "canonicalReference": "firefish-js!entities.Blocking:type" }, { "kind": "Content", @@ -2949,7 +2949,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2958,7 +2958,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2967,7 +2967,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2976,7 +2976,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2985,7 +2985,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -2994,7 +2994,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -3003,7 +3003,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -3012,7 +3012,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -3021,7 +3021,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -3030,7 +3030,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -3039,7 +3039,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -3048,7 +3048,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -3057,7 +3057,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -3066,7 +3066,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -3075,7 +3075,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -3084,7 +3084,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -3093,7 +3093,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -3102,7 +3102,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -3111,7 +3111,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -3120,7 +3120,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -3129,7 +3129,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -3138,7 +3138,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -3147,7 +3147,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -3156,7 +3156,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -3165,7 +3165,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -3174,7 +3174,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -3183,7 +3183,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -3192,7 +3192,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -3201,7 +3201,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -3210,7 +3210,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -3219,7 +3219,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -3228,7 +3228,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -3237,7 +3237,7 @@ { "kind": "Reference", "text": "Clip", - "canonicalReference": "calckey-js!entities.Clip:type" + "canonicalReference": "firefish-js!entities.Clip:type" }, { "kind": "Content", @@ -3246,7 +3246,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -3255,7 +3255,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -3264,7 +3264,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -3273,7 +3273,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -3282,7 +3282,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -3291,7 +3291,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -3300,7 +3300,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -3309,7 +3309,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -3318,7 +3318,7 @@ { "kind": "Reference", "text": "NoParams", - "canonicalReference": "calckey-js!~NoParams:type" + "canonicalReference": "firefish-js!~NoParams:type" }, { "kind": "Content", @@ -3327,7 +3327,7 @@ { "kind": "Reference", "text": "DriveFolder", - "canonicalReference": "calckey-js!entities.DriveFolder:type" + "canonicalReference": "firefish-js!entities.DriveFolder:type" }, { "kind": "Content", @@ -3336,7 +3336,7 @@ { "kind": "Reference", "text": "DriveFile", - "canonicalReference": "calckey-js!entities.DriveFile:type" + "canonicalReference": "firefish-js!entities.DriveFile:type" }, { "kind": "Content", @@ -3345,7 +3345,7 @@ { "kind": "Reference", "text": "DriveFile", - "canonicalReference": "calckey-js!entities.DriveFile:type" + "canonicalReference": "firefish-js!entities.DriveFile:type" }, { "kind": "Content", @@ -3354,7 +3354,7 @@ { "kind": "Reference", "text": "DriveFile", - "canonicalReference": "calckey-js!entities.DriveFile:type" + "canonicalReference": "firefish-js!entities.DriveFile:type" }, { "kind": "Content", @@ -3363,7 +3363,7 @@ { "kind": "Reference", "text": "DriveFile", - "canonicalReference": "calckey-js!entities.DriveFile:type" + "canonicalReference": "firefish-js!entities.DriveFile:type" }, { "kind": "Content", @@ -3372,7 +3372,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -3381,7 +3381,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -3390,7 +3390,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -3399,7 +3399,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -3408,7 +3408,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -3417,7 +3417,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -3426,7 +3426,7 @@ { "kind": "Reference", "text": "DriveFile", - "canonicalReference": "calckey-js!entities.DriveFile:type" + "canonicalReference": "firefish-js!entities.DriveFile:type" }, { "kind": "Content", @@ -3435,7 +3435,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -3444,7 +3444,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -3453,7 +3453,7 @@ { "kind": "Reference", "text": "DriveFolder", - "canonicalReference": "calckey-js!entities.DriveFolder:type" + "canonicalReference": "firefish-js!entities.DriveFolder:type" }, { "kind": "Content", @@ -3462,7 +3462,7 @@ { "kind": "Reference", "text": "DriveFile", - "canonicalReference": "calckey-js!entities.DriveFile:type" + "canonicalReference": "firefish-js!entities.DriveFile:type" }, { "kind": "Content", @@ -3471,7 +3471,7 @@ { "kind": "Reference", "text": "DriveFile", - "canonicalReference": "calckey-js!entities.DriveFile:type" + "canonicalReference": "firefish-js!entities.DriveFile:type" }, { "kind": "Content", @@ -3480,7 +3480,7 @@ { "kind": "Reference", "text": "DriveFile", - "canonicalReference": "calckey-js!entities.DriveFile:type" + "canonicalReference": "firefish-js!entities.DriveFile:type" }, { "kind": "Content", @@ -3489,7 +3489,7 @@ { "kind": "Reference", "text": "DriveFile", - "canonicalReference": "calckey-js!entities.DriveFile:type" + "canonicalReference": "firefish-js!entities.DriveFile:type" }, { "kind": "Content", @@ -3498,7 +3498,7 @@ { "kind": "Reference", "text": "DriveFolder", - "canonicalReference": "calckey-js!entities.DriveFolder:type" + "canonicalReference": "firefish-js!entities.DriveFolder:type" }, { "kind": "Content", @@ -3507,7 +3507,7 @@ { "kind": "Reference", "text": "DriveFile", - "canonicalReference": "calckey-js!entities.DriveFile:type" + "canonicalReference": "firefish-js!entities.DriveFile:type" }, { "kind": "Content", @@ -3516,7 +3516,7 @@ { "kind": "Reference", "text": "DriveFolder", - "canonicalReference": "calckey-js!entities.DriveFolder:type" + "canonicalReference": "firefish-js!entities.DriveFolder:type" }, { "kind": "Content", @@ -3525,7 +3525,7 @@ { "kind": "Reference", "text": "DriveFolder", - "canonicalReference": "calckey-js!entities.DriveFolder:type" + "canonicalReference": "firefish-js!entities.DriveFolder:type" }, { "kind": "Content", @@ -3534,7 +3534,7 @@ { "kind": "Reference", "text": "DriveFile", - "canonicalReference": "calckey-js!entities.DriveFile:type" + "canonicalReference": "firefish-js!entities.DriveFile:type" }, { "kind": "Content", @@ -3543,7 +3543,7 @@ { "kind": "Reference", "text": "DriveFile", - "canonicalReference": "calckey-js!entities.DriveFile:type" + "canonicalReference": "firefish-js!entities.DriveFile:type" }, { "kind": "Content", @@ -3552,7 +3552,7 @@ { "kind": "Reference", "text": "DriveFolder", - "canonicalReference": "calckey-js!entities.DriveFolder:type" + "canonicalReference": "firefish-js!entities.DriveFolder:type" }, { "kind": "Content", @@ -3561,7 +3561,7 @@ { "kind": "Reference", "text": "DriveFolder", - "canonicalReference": "calckey-js!entities.DriveFolder:type" + "canonicalReference": "firefish-js!entities.DriveFolder:type" }, { "kind": "Content", @@ -3570,7 +3570,7 @@ { "kind": "Reference", "text": "DriveFolder", - "canonicalReference": "calckey-js!entities.DriveFolder:type" + "canonicalReference": "firefish-js!entities.DriveFolder:type" }, { "kind": "Content", @@ -3579,7 +3579,7 @@ { "kind": "Reference", "text": "DriveFolder", - "canonicalReference": "calckey-js!entities.DriveFolder:type" + "canonicalReference": "firefish-js!entities.DriveFolder:type" }, { "kind": "Content", @@ -3588,7 +3588,7 @@ { "kind": "Reference", "text": "DriveFolder", - "canonicalReference": "calckey-js!entities.DriveFolder:type" + "canonicalReference": "firefish-js!entities.DriveFolder:type" }, { "kind": "Content", @@ -3597,7 +3597,7 @@ { "kind": "Reference", "text": "DriveFolder", - "canonicalReference": "calckey-js!entities.DriveFolder:type" + "canonicalReference": "firefish-js!entities.DriveFolder:type" }, { "kind": "Content", @@ -3606,7 +3606,7 @@ { "kind": "Reference", "text": "DriveFolder", - "canonicalReference": "calckey-js!entities.DriveFolder:type" + "canonicalReference": "firefish-js!entities.DriveFolder:type" }, { "kind": "Content", @@ -3615,7 +3615,7 @@ { "kind": "Reference", "text": "DriveFolder", - "canonicalReference": "calckey-js!entities.DriveFolder:type" + "canonicalReference": "firefish-js!entities.DriveFolder:type" }, { "kind": "Content", @@ -3624,7 +3624,7 @@ { "kind": "Reference", "text": "DriveFolder", - "canonicalReference": "calckey-js!entities.DriveFolder:type" + "canonicalReference": "firefish-js!entities.DriveFolder:type" }, { "kind": "Content", @@ -3633,7 +3633,7 @@ { "kind": "Reference", "text": "DriveFolder", - "canonicalReference": "calckey-js!entities.DriveFolder:type" + "canonicalReference": "firefish-js!entities.DriveFolder:type" }, { "kind": "Content", @@ -3642,7 +3642,7 @@ { "kind": "Reference", "text": "DriveFolder", - "canonicalReference": "calckey-js!entities.DriveFolder:type" + "canonicalReference": "firefish-js!entities.DriveFolder:type" }, { "kind": "Content", @@ -3651,7 +3651,7 @@ { "kind": "Reference", "text": "DriveFile", - "canonicalReference": "calckey-js!entities.DriveFile:type" + "canonicalReference": "firefish-js!entities.DriveFile:type" }, { "kind": "Content", @@ -3660,7 +3660,7 @@ { "kind": "Reference", "text": "DriveFile", - "canonicalReference": "calckey-js!entities.DriveFile:type" + "canonicalReference": "firefish-js!entities.DriveFile:type" }, { "kind": "Content", @@ -3669,7 +3669,7 @@ { "kind": "Reference", "text": "DriveFile", - "canonicalReference": "calckey-js!entities.DriveFile:type" + "canonicalReference": "firefish-js!entities.DriveFile:type" }, { "kind": "Content", @@ -3678,7 +3678,7 @@ { "kind": "Reference", "text": "DriveFile", - "canonicalReference": "calckey-js!entities.DriveFile:type" + "canonicalReference": "firefish-js!entities.DriveFile:type" }, { "kind": "Content", @@ -3687,7 +3687,7 @@ { "kind": "Reference", "text": "NoParams", - "canonicalReference": "calckey-js!~NoParams:type" + "canonicalReference": "firefish-js!~NoParams:type" }, { "kind": "Content", @@ -3696,7 +3696,7 @@ { "kind": "Reference", "text": "Following", - "canonicalReference": "calckey-js!entities.Following:type" + "canonicalReference": "firefish-js!entities.Following:type" }, { "kind": "Content", @@ -3705,7 +3705,7 @@ { "kind": "Reference", "text": "Following", - "canonicalReference": "calckey-js!entities.Following:type" + "canonicalReference": "firefish-js!entities.Following:type" }, { "kind": "Content", @@ -3714,7 +3714,7 @@ { "kind": "Reference", "text": "FollowingFolloweePopulated", - "canonicalReference": "calckey-js!entities.FollowingFolloweePopulated:type" + "canonicalReference": "firefish-js!entities.FollowingFolloweePopulated:type" }, { "kind": "Content", @@ -3723,7 +3723,7 @@ { "kind": "Reference", "text": "Following", - "canonicalReference": "calckey-js!entities.Following:type" + "canonicalReference": "firefish-js!entities.Following:type" }, { "kind": "Content", @@ -3732,7 +3732,7 @@ { "kind": "Reference", "text": "Following", - "canonicalReference": "calckey-js!entities.Following:type" + "canonicalReference": "firefish-js!entities.Following:type" }, { "kind": "Content", @@ -3741,7 +3741,7 @@ { "kind": "Reference", "text": "FollowingFolloweePopulated", - "canonicalReference": "calckey-js!entities.FollowingFolloweePopulated:type" + "canonicalReference": "firefish-js!entities.FollowingFolloweePopulated:type" }, { "kind": "Content", @@ -3750,7 +3750,7 @@ { "kind": "Reference", "text": "Instance", - "canonicalReference": "calckey-js!entities.Instance:type" + "canonicalReference": "firefish-js!entities.Instance:type" }, { "kind": "Content", @@ -3759,7 +3759,7 @@ { "kind": "Reference", "text": "Instance", - "canonicalReference": "calckey-js!entities.Instance:type" + "canonicalReference": "firefish-js!entities.Instance:type" }, { "kind": "Content", @@ -3768,7 +3768,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -3777,7 +3777,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -3786,7 +3786,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -3795,7 +3795,7 @@ { "kind": "Reference", "text": "UserDetailed", - "canonicalReference": "calckey-js!entities.UserDetailed:type" + "canonicalReference": "firefish-js!entities.UserDetailed:type" }, { "kind": "Content", @@ -3804,7 +3804,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -3813,7 +3813,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -3822,7 +3822,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -3831,7 +3831,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -3840,7 +3840,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -3849,7 +3849,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -3858,7 +3858,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -3867,7 +3867,7 @@ { "kind": "Reference", "text": "NoParams", - "canonicalReference": "calckey-js!~NoParams:type" + "canonicalReference": "firefish-js!~NoParams:type" }, { "kind": "Content", @@ -3876,7 +3876,7 @@ { "kind": "Reference", "text": "FollowRequest", - "canonicalReference": "calckey-js!entities.FollowRequest:type" + "canonicalReference": "firefish-js!entities.FollowRequest:type" }, { "kind": "Content", @@ -3885,7 +3885,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -3894,7 +3894,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -3903,7 +3903,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -3912,7 +3912,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -3921,7 +3921,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -3930,7 +3930,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -3939,7 +3939,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -3948,7 +3948,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -3957,7 +3957,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -3966,7 +3966,7 @@ { "kind": "Reference", "text": "GalleryPost", - "canonicalReference": "calckey-js!entities.GalleryPost:type" + "canonicalReference": "firefish-js!entities.GalleryPost:type" }, { "kind": "Content", @@ -3975,7 +3975,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -3984,7 +3984,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -3993,7 +3993,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4002,7 +4002,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4011,7 +4011,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4020,7 +4020,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4029,7 +4029,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4038,7 +4038,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4047,7 +4047,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4056,7 +4056,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4065,7 +4065,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4074,7 +4074,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4083,7 +4083,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4092,7 +4092,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4101,7 +4101,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4110,7 +4110,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4119,7 +4119,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4128,7 +4128,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4137,7 +4137,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4146,7 +4146,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4155,7 +4155,7 @@ { "kind": "Reference", "text": "NoParams", - "canonicalReference": "calckey-js!~NoParams:type" + "canonicalReference": "firefish-js!~NoParams:type" }, { "kind": "Content", @@ -4164,7 +4164,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4173,7 +4173,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4182,7 +4182,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4191,7 +4191,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4200,7 +4200,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4209,7 +4209,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4218,7 +4218,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4227,7 +4227,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4236,7 +4236,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4245,7 +4245,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4254,7 +4254,7 @@ { "kind": "Reference", "text": "NoParams", - "canonicalReference": "calckey-js!~NoParams:type" + "canonicalReference": "firefish-js!~NoParams:type" }, { "kind": "Content", @@ -4263,7 +4263,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -4272,7 +4272,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4281,7 +4281,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4290,7 +4290,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4299,7 +4299,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4308,7 +4308,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4317,7 +4317,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4326,7 +4326,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4335,7 +4335,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4344,7 +4344,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4353,7 +4353,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4362,7 +4362,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4371,7 +4371,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4380,7 +4380,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4389,7 +4389,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4398,7 +4398,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4407,7 +4407,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4416,7 +4416,7 @@ { "kind": "Reference", "text": "NoteFavorite", - "canonicalReference": "calckey-js!entities.NoteFavorite:type" + "canonicalReference": "firefish-js!entities.NoteFavorite:type" }, { "kind": "Content", @@ -4425,7 +4425,7 @@ { "kind": "Reference", "text": "NoteFavorite", - "canonicalReference": "calckey-js!entities.NoteFavorite:type" + "canonicalReference": "firefish-js!entities.NoteFavorite:type" }, { "kind": "Content", @@ -4434,7 +4434,7 @@ { "kind": "Reference", "text": "NoteFavorite", - "canonicalReference": "calckey-js!entities.NoteFavorite:type" + "canonicalReference": "firefish-js!entities.NoteFavorite:type" }, { "kind": "Content", @@ -4443,7 +4443,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4452,7 +4452,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4461,7 +4461,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4470,7 +4470,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4479,7 +4479,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4488,7 +4488,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4497,7 +4497,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4506,7 +4506,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4515,7 +4515,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4524,7 +4524,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4533,7 +4533,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4542,7 +4542,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4551,7 +4551,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4560,7 +4560,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4569,7 +4569,7 @@ { "kind": "Reference", "text": "Notification", - "canonicalReference": "calckey-js!entities.Notification_2:type" + "canonicalReference": "firefish-js!entities.Notification_2:type" }, { "kind": "Content", @@ -4578,7 +4578,7 @@ { "kind": "Reference", "text": "Notification", - "canonicalReference": "calckey-js!entities.Notification_2:type" + "canonicalReference": "firefish-js!entities.Notification_2:type" }, { "kind": "Content", @@ -4587,7 +4587,7 @@ { "kind": "Reference", "text": "Notification", - "canonicalReference": "calckey-js!entities.Notification_2:type" + "canonicalReference": "firefish-js!entities.Notification_2:type" }, { "kind": "Content", @@ -4596,7 +4596,7 @@ { "kind": "Reference", "text": "Notification", - "canonicalReference": "calckey-js!entities.Notification_2:type" + "canonicalReference": "firefish-js!entities.Notification_2:type" }, { "kind": "Content", @@ -4605,7 +4605,7 @@ { "kind": "Reference", "text": "Notification", - "canonicalReference": "calckey-js!entities.Notification_2:type" + "canonicalReference": "firefish-js!entities.Notification_2:type" }, { "kind": "Content", @@ -4614,7 +4614,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4623,7 +4623,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4632,7 +4632,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4641,7 +4641,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4650,7 +4650,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -4659,7 +4659,7 @@ { "kind": "Reference", "text": "MeDetailed", - "canonicalReference": "calckey-js!entities.MeDetailed:type" + "canonicalReference": "firefish-js!entities.MeDetailed:type" }, { "kind": "Content", @@ -4668,7 +4668,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4677,7 +4677,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4686,7 +4686,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4695,7 +4695,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4704,7 +4704,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4713,7 +4713,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4731,7 +4731,7 @@ { "kind": "Reference", "text": "DateString", - "canonicalReference": "calckey-js!entities.DateString:type" + "canonicalReference": "firefish-js!entities.DateString:type" }, { "kind": "Content", @@ -4749,7 +4749,7 @@ { "kind": "Reference", "text": "NoParams", - "canonicalReference": "calckey-js!~NoParams:type" + "canonicalReference": "firefish-js!~NoParams:type" }, { "kind": "Content", @@ -4758,7 +4758,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4767,7 +4767,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4776,7 +4776,7 @@ { "kind": "Reference", "text": "Signin", - "canonicalReference": "calckey-js!entities.Signin:type" + "canonicalReference": "firefish-js!entities.Signin:type" }, { "kind": "Content", @@ -4785,7 +4785,7 @@ { "kind": "Reference", "text": "Signin", - "canonicalReference": "calckey-js!entities.Signin:type" + "canonicalReference": "firefish-js!entities.Signin:type" }, { "kind": "Content", @@ -4794,7 +4794,7 @@ { "kind": "Reference", "text": "Signin", - "canonicalReference": "calckey-js!entities.Signin:type" + "canonicalReference": "firefish-js!entities.Signin:type" }, { "kind": "Content", @@ -4803,7 +4803,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -4812,7 +4812,7 @@ { "kind": "Reference", "text": "MeDetailed", - "canonicalReference": "calckey-js!entities.MeDetailed:type" + "canonicalReference": "firefish-js!entities.MeDetailed:type" }, { "kind": "Content", @@ -4821,7 +4821,7 @@ { "kind": "Reference", "text": "MeDetailed", - "canonicalReference": "calckey-js!entities.MeDetailed:type" + "canonicalReference": "firefish-js!entities.MeDetailed:type" }, { "kind": "Content", @@ -4830,7 +4830,7 @@ { "kind": "Reference", "text": "DriveFile", - "canonicalReference": "calckey-js!entities.DriveFile:type" + "canonicalReference": "firefish-js!entities.DriveFile:type" }, { "kind": "Content", @@ -4839,7 +4839,7 @@ { "kind": "Reference", "text": "DriveFile", - "canonicalReference": "calckey-js!entities.DriveFile:type" + "canonicalReference": "firefish-js!entities.DriveFile:type" }, { "kind": "Content", @@ -4848,7 +4848,7 @@ { "kind": "Reference", "text": "Notification", - "canonicalReference": "calckey-js!entities.Notification_2:type" + "canonicalReference": "firefish-js!entities.Notification_2:type" }, { "kind": "Content", @@ -4857,7 +4857,7 @@ { "kind": "Reference", "text": "MeDetailed", - "canonicalReference": "calckey-js!entities.MeDetailed:type" + "canonicalReference": "firefish-js!entities.MeDetailed:type" }, { "kind": "Content", @@ -4866,7 +4866,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4875,7 +4875,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4884,7 +4884,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4893,7 +4893,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4902,7 +4902,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4911,7 +4911,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4920,7 +4920,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4929,7 +4929,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4938,7 +4938,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4947,7 +4947,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4956,7 +4956,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4965,7 +4965,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4974,7 +4974,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4983,7 +4983,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -4992,7 +4992,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -5001,7 +5001,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -5010,7 +5010,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -5019,7 +5019,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -5028,7 +5028,7 @@ { "kind": "Reference", "text": "MessagingMessage", - "canonicalReference": "calckey-js!entities.MessagingMessage:type" + "canonicalReference": "firefish-js!entities.MessagingMessage:type" }, { "kind": "Content", @@ -5037,7 +5037,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -5046,7 +5046,7 @@ { "kind": "Reference", "text": "UserGroup", - "canonicalReference": "calckey-js!entities.UserGroup:type" + "canonicalReference": "firefish-js!entities.UserGroup:type" }, { "kind": "Content", @@ -5055,7 +5055,7 @@ { "kind": "Reference", "text": "MessagingMessage", - "canonicalReference": "calckey-js!entities.MessagingMessage:type" + "canonicalReference": "firefish-js!entities.MessagingMessage:type" }, { "kind": "Content", @@ -5064,7 +5064,7 @@ { "kind": "Reference", "text": "MessagingMessage", - "canonicalReference": "calckey-js!entities.MessagingMessage:type" + "canonicalReference": "firefish-js!entities.MessagingMessage:type" }, { "kind": "Content", @@ -5073,7 +5073,7 @@ { "kind": "Reference", "text": "MessagingMessage", - "canonicalReference": "calckey-js!entities.MessagingMessage:type" + "canonicalReference": "firefish-js!entities.MessagingMessage:type" }, { "kind": "Content", @@ -5082,7 +5082,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -5091,7 +5091,7 @@ { "kind": "Reference", "text": "UserGroup", - "canonicalReference": "calckey-js!entities.UserGroup:type" + "canonicalReference": "firefish-js!entities.UserGroup:type" }, { "kind": "Content", @@ -5100,7 +5100,7 @@ { "kind": "Reference", "text": "DriveFile", - "canonicalReference": "calckey-js!entities.DriveFile:type" + "canonicalReference": "firefish-js!entities.DriveFile:type" }, { "kind": "Content", @@ -5109,7 +5109,7 @@ { "kind": "Reference", "text": "MessagingMessage", - "canonicalReference": "calckey-js!entities.MessagingMessage:type" + "canonicalReference": "firefish-js!entities.MessagingMessage:type" }, { "kind": "Content", @@ -5118,7 +5118,7 @@ { "kind": "Reference", "text": "MessagingMessage", - "canonicalReference": "calckey-js!entities.MessagingMessage:type" + "canonicalReference": "firefish-js!entities.MessagingMessage:type" }, { "kind": "Content", @@ -5127,7 +5127,7 @@ { "kind": "Reference", "text": "MessagingMessage", - "canonicalReference": "calckey-js!entities.MessagingMessage:type" + "canonicalReference": "firefish-js!entities.MessagingMessage:type" }, { "kind": "Content", @@ -5136,7 +5136,7 @@ { "kind": "Reference", "text": "DetailedInstanceMetadata", - "canonicalReference": "calckey-js!entities.DetailedInstanceMetadata:type" + "canonicalReference": "firefish-js!entities.DetailedInstanceMetadata:type" }, { "kind": "Content", @@ -5145,7 +5145,7 @@ { "kind": "Reference", "text": "LiteInstanceMetadata", - "canonicalReference": "calckey-js!entities.LiteInstanceMetadata:type" + "canonicalReference": "firefish-js!entities.LiteInstanceMetadata:type" }, { "kind": "Content", @@ -5154,7 +5154,7 @@ { "kind": "Reference", "text": "LiteInstanceMetadata", - "canonicalReference": "calckey-js!entities.LiteInstanceMetadata:type" + "canonicalReference": "firefish-js!entities.LiteInstanceMetadata:type" }, { "kind": "Content", @@ -5163,7 +5163,7 @@ { "kind": "Reference", "text": "DetailedInstanceMetadata", - "canonicalReference": "calckey-js!entities.DetailedInstanceMetadata:type" + "canonicalReference": "firefish-js!entities.DetailedInstanceMetadata:type" }, { "kind": "Content", @@ -5172,7 +5172,7 @@ { "kind": "Reference", "text": "LiteInstanceMetadata", - "canonicalReference": "calckey-js!entities.LiteInstanceMetadata:type" + "canonicalReference": "firefish-js!entities.LiteInstanceMetadata:type" }, { "kind": "Content", @@ -5181,7 +5181,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -5190,7 +5190,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -5199,7 +5199,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -5208,7 +5208,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -5217,7 +5217,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -5226,7 +5226,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -5235,7 +5235,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -5244,7 +5244,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -5253,7 +5253,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -5262,7 +5262,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -5271,7 +5271,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -5280,7 +5280,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -5289,7 +5289,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -5298,7 +5298,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -5307,7 +5307,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -5316,7 +5316,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -5325,7 +5325,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -5334,7 +5334,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -5343,7 +5343,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -5352,7 +5352,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -5361,7 +5361,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -5370,7 +5370,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -5379,7 +5379,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -5388,7 +5388,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -5397,7 +5397,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -5406,7 +5406,7 @@ { "kind": "Reference", "text": "NoteSubmitReq", - "canonicalReference": "calckey-js!~NoteSubmitReq:type" + "canonicalReference": "firefish-js!~NoteSubmitReq:type" }, { "kind": "Content", @@ -5415,7 +5415,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -5424,7 +5424,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -5433,7 +5433,7 @@ { "kind": "Reference", "text": "NoteSubmitReq", - "canonicalReference": "calckey-js!~NoteSubmitReq:type" + "canonicalReference": "firefish-js!~NoteSubmitReq:type" }, { "kind": "Content", @@ -5442,7 +5442,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -5451,7 +5451,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -5460,7 +5460,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -5469,7 +5469,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -5478,7 +5478,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -5487,7 +5487,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -5496,7 +5496,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -5505,7 +5505,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -5514,7 +5514,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -5523,7 +5523,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -5532,7 +5532,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -5541,7 +5541,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -5550,7 +5550,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -5559,7 +5559,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -5568,7 +5568,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -5577,7 +5577,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -5586,7 +5586,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -5595,7 +5595,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -5604,7 +5604,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -5613,7 +5613,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -5622,7 +5622,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -5631,7 +5631,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -5640,7 +5640,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -5649,7 +5649,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -5658,7 +5658,7 @@ { "kind": "Reference", "text": "NoteReaction", - "canonicalReference": "calckey-js!entities.NoteReaction:type" + "canonicalReference": "firefish-js!entities.NoteReaction:type" }, { "kind": "Content", @@ -5667,7 +5667,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -5676,7 +5676,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -5685,7 +5685,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -5694,7 +5694,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -5703,7 +5703,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -5712,7 +5712,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -5721,7 +5721,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -5730,7 +5730,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -5739,7 +5739,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -5748,7 +5748,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -5757,7 +5757,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -5766,7 +5766,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -5775,7 +5775,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -5784,7 +5784,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -5793,7 +5793,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -5802,7 +5802,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -5811,7 +5811,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -5820,7 +5820,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -5829,7 +5829,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -5838,7 +5838,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -5847,7 +5847,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -5856,7 +5856,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -5865,7 +5865,7 @@ { "kind": "Reference", "text": "UserList", - "canonicalReference": "calckey-js!entities.UserList:type" + "canonicalReference": "firefish-js!entities.UserList:type" }, { "kind": "Content", @@ -5874,7 +5874,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -5883,7 +5883,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -5892,7 +5892,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -5901,7 +5901,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -5910,7 +5910,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -5919,7 +5919,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -5928,7 +5928,7 @@ { "kind": "Reference", "text": "NoParams", - "canonicalReference": "calckey-js!~NoParams:type" + "canonicalReference": "firefish-js!~NoParams:type" }, { "kind": "Content", @@ -5937,7 +5937,7 @@ { "kind": "Reference", "text": "Notification", - "canonicalReference": "calckey-js!entities.Notification_2:type" + "canonicalReference": "firefish-js!entities.Notification_2:type" }, { "kind": "Content", @@ -5946,7 +5946,7 @@ { "kind": "Reference", "text": "Page", - "canonicalReference": "calckey-js!entities.Page:type" + "canonicalReference": "firefish-js!entities.Page:type" }, { "kind": "Content", @@ -5955,7 +5955,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -5964,7 +5964,7 @@ { "kind": "Reference", "text": "Page", - "canonicalReference": "calckey-js!entities.Page:type" + "canonicalReference": "firefish-js!entities.Page:type" }, { "kind": "Content", @@ -5973,7 +5973,7 @@ { "kind": "Reference", "text": "Page", - "canonicalReference": "calckey-js!entities.Page:type" + "canonicalReference": "firefish-js!entities.Page:type" }, { "kind": "Content", @@ -5982,7 +5982,7 @@ { "kind": "Reference", "text": "NoParams", - "canonicalReference": "calckey-js!~NoParams:type" + "canonicalReference": "firefish-js!~NoParams:type" }, { "kind": "Content", @@ -5991,7 +5991,7 @@ { "kind": "Reference", "text": "Page", - "canonicalReference": "calckey-js!entities.Page:type" + "canonicalReference": "firefish-js!entities.Page:type" }, { "kind": "Content", @@ -6000,7 +6000,7 @@ { "kind": "Reference", "text": "Page", - "canonicalReference": "calckey-js!entities.Page:type" + "canonicalReference": "firefish-js!entities.Page:type" }, { "kind": "Content", @@ -6009,7 +6009,7 @@ { "kind": "Reference", "text": "Page", - "canonicalReference": "calckey-js!entities.Page:type" + "canonicalReference": "firefish-js!entities.Page:type" }, { "kind": "Content", @@ -6018,7 +6018,7 @@ { "kind": "Reference", "text": "Page", - "canonicalReference": "calckey-js!entities.Page:type" + "canonicalReference": "firefish-js!entities.Page:type" }, { "kind": "Content", @@ -6027,7 +6027,7 @@ { "kind": "Reference", "text": "Page", - "canonicalReference": "calckey-js!entities.Page:type" + "canonicalReference": "firefish-js!entities.Page:type" }, { "kind": "Content", @@ -6036,7 +6036,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -6045,7 +6045,7 @@ { "kind": "Reference", "text": "NoParams", - "canonicalReference": "calckey-js!~NoParams:type" + "canonicalReference": "firefish-js!~NoParams:type" }, { "kind": "Content", @@ -6054,7 +6054,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -6063,7 +6063,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -6072,7 +6072,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -6081,7 +6081,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -6090,7 +6090,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -6099,7 +6099,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -6108,7 +6108,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -6117,7 +6117,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -6126,7 +6126,7 @@ { "kind": "Reference", "text": "NoParams", - "canonicalReference": "calckey-js!~NoParams:type" + "canonicalReference": "firefish-js!~NoParams:type" }, { "kind": "Content", @@ -6135,7 +6135,7 @@ { "kind": "Reference", "text": "Stats", - "canonicalReference": "calckey-js!entities.Stats:type" + "canonicalReference": "firefish-js!entities.Stats:type" }, { "kind": "Content", @@ -6144,7 +6144,7 @@ { "kind": "Reference", "text": "NoParams", - "canonicalReference": "calckey-js!~NoParams:type" + "canonicalReference": "firefish-js!~NoParams:type" }, { "kind": "Content", @@ -6153,7 +6153,7 @@ { "kind": "Reference", "text": "ServerInfo", - "canonicalReference": "calckey-js!entities.ServerInfo:type" + "canonicalReference": "firefish-js!entities.ServerInfo:type" }, { "kind": "Content", @@ -6162,7 +6162,7 @@ { "kind": "Reference", "text": "NoParams", - "canonicalReference": "calckey-js!~NoParams:type" + "canonicalReference": "firefish-js!~NoParams:type" }, { "kind": "Content", @@ -6171,7 +6171,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -6180,7 +6180,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -6189,7 +6189,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -6198,7 +6198,7 @@ { "kind": "Reference", "text": "UserSorting", - "canonicalReference": "calckey-js!entities.UserSorting:type" + "canonicalReference": "firefish-js!entities.UserSorting:type" }, { "kind": "Content", @@ -6207,7 +6207,7 @@ { "kind": "Reference", "text": "OriginType", - "canonicalReference": "calckey-js!entities.OriginType:type" + "canonicalReference": "firefish-js!entities.OriginType:type" }, { "kind": "Content", @@ -6216,7 +6216,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -6225,7 +6225,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -6234,7 +6234,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -6243,7 +6243,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -6252,7 +6252,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -6261,7 +6261,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -6270,7 +6270,7 @@ { "kind": "Reference", "text": "Following", - "canonicalReference": "calckey-js!entities.Following:type" + "canonicalReference": "firefish-js!entities.Following:type" }, { "kind": "Content", @@ -6279,7 +6279,7 @@ { "kind": "Reference", "text": "Following", - "canonicalReference": "calckey-js!entities.Following:type" + "canonicalReference": "firefish-js!entities.Following:type" }, { "kind": "Content", @@ -6288,7 +6288,7 @@ { "kind": "Reference", "text": "FollowingFollowerPopulated", - "canonicalReference": "calckey-js!entities.FollowingFollowerPopulated:type" + "canonicalReference": "firefish-js!entities.FollowingFollowerPopulated:type" }, { "kind": "Content", @@ -6297,7 +6297,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -6306,7 +6306,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -6315,7 +6315,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -6324,7 +6324,7 @@ { "kind": "Reference", "text": "Following", - "canonicalReference": "calckey-js!entities.Following:type" + "canonicalReference": "firefish-js!entities.Following:type" }, { "kind": "Content", @@ -6333,7 +6333,7 @@ { "kind": "Reference", "text": "Following", - "canonicalReference": "calckey-js!entities.Following:type" + "canonicalReference": "firefish-js!entities.Following:type" }, { "kind": "Content", @@ -6342,7 +6342,7 @@ { "kind": "Reference", "text": "FollowingFolloweePopulated", - "canonicalReference": "calckey-js!entities.FollowingFolloweePopulated:type" + "canonicalReference": "firefish-js!entities.FollowingFolloweePopulated:type" }, { "kind": "Content", @@ -6351,7 +6351,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -6360,7 +6360,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -6369,7 +6369,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -6378,7 +6378,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -6387,7 +6387,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -6396,7 +6396,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -6405,7 +6405,7 @@ { "kind": "Reference", "text": "UserGroup", - "canonicalReference": "calckey-js!entities.UserGroup:type" + "canonicalReference": "firefish-js!entities.UserGroup:type" }, { "kind": "Content", @@ -6414,7 +6414,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -6423,7 +6423,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -6432,7 +6432,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -6441,7 +6441,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -6450,7 +6450,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -6459,7 +6459,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -6468,7 +6468,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -6477,7 +6477,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -6486,7 +6486,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -6495,7 +6495,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -6504,7 +6504,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -6513,7 +6513,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -6522,7 +6522,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -6531,7 +6531,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -6540,7 +6540,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -6549,7 +6549,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -6558,7 +6558,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -6567,7 +6567,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -6576,7 +6576,7 @@ { "kind": "Reference", "text": "UserList", - "canonicalReference": "calckey-js!entities.UserList:type" + "canonicalReference": "firefish-js!entities.UserList:type" }, { "kind": "Content", @@ -6585,7 +6585,7 @@ { "kind": "Reference", "text": "UserList", - "canonicalReference": "calckey-js!entities.UserList:type" + "canonicalReference": "firefish-js!entities.UserList:type" }, { "kind": "Content", @@ -6594,7 +6594,7 @@ { "kind": "Reference", "text": "NoParams", - "canonicalReference": "calckey-js!~NoParams:type" + "canonicalReference": "firefish-js!~NoParams:type" }, { "kind": "Content", @@ -6603,7 +6603,7 @@ { "kind": "Reference", "text": "UserList", - "canonicalReference": "calckey-js!entities.UserList:type" + "canonicalReference": "firefish-js!entities.UserList:type" }, { "kind": "Content", @@ -6612,7 +6612,7 @@ { "kind": "Reference", "text": "UserList", - "canonicalReference": "calckey-js!entities.UserList:type" + "canonicalReference": "firefish-js!entities.UserList:type" }, { "kind": "Content", @@ -6621,7 +6621,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -6630,7 +6630,7 @@ { "kind": "Reference", "text": "UserList", - "canonicalReference": "calckey-js!entities.UserList:type" + "canonicalReference": "firefish-js!entities.UserList:type" }, { "kind": "Content", @@ -6639,7 +6639,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -6648,7 +6648,7 @@ { "kind": "Reference", "text": "UserList", - "canonicalReference": "calckey-js!entities.UserList:type" + "canonicalReference": "firefish-js!entities.UserList:type" }, { "kind": "Content", @@ -6657,7 +6657,7 @@ { "kind": "Reference", "text": "UserList", - "canonicalReference": "calckey-js!entities.UserList:type" + "canonicalReference": "firefish-js!entities.UserList:type" }, { "kind": "Content", @@ -6666,7 +6666,7 @@ { "kind": "Reference", "text": "UserList", - "canonicalReference": "calckey-js!entities.UserList:type" + "canonicalReference": "firefish-js!entities.UserList:type" }, { "kind": "Content", @@ -6675,7 +6675,7 @@ { "kind": "Reference", "text": "UserList", - "canonicalReference": "calckey-js!entities.UserList:type" + "canonicalReference": "firefish-js!entities.UserList:type" }, { "kind": "Content", @@ -6684,7 +6684,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -6693,7 +6693,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -6702,7 +6702,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -6711,7 +6711,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -6720,7 +6720,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -6729,7 +6729,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -6738,7 +6738,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -6747,7 +6747,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -6756,7 +6756,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -6765,7 +6765,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -6774,7 +6774,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -6783,7 +6783,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -6792,7 +6792,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -6801,7 +6801,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -6810,7 +6810,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -6819,7 +6819,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -6828,7 +6828,7 @@ { "kind": "Reference", "text": "ShowUserReq", - "canonicalReference": "calckey-js!~ShowUserReq:type" + "canonicalReference": "firefish-js!~ShowUserReq:type" }, { "kind": "Content", @@ -6837,7 +6837,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -6846,7 +6846,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -6855,7 +6855,7 @@ { "kind": "Reference", "text": "UserDetailed", - "canonicalReference": "calckey-js!entities.UserDetailed:type" + "canonicalReference": "firefish-js!entities.UserDetailed:type" }, { "kind": "Content", @@ -6864,7 +6864,7 @@ { "kind": "Reference", "text": "UserDetailed", - "canonicalReference": "calckey-js!entities.UserDetailed:type" + "canonicalReference": "firefish-js!entities.UserDetailed:type" }, { "kind": "Content", @@ -6873,7 +6873,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -6882,7 +6882,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO:type" + "canonicalReference": "firefish-js!~TODO:type" }, { "kind": "Content", @@ -6903,7 +6903,7 @@ }, { "kind": "Namespace", - "canonicalReference": "calckey-js!entities:namespace", + "canonicalReference": "firefish-js!entities:namespace", "docComment": "", "excerptTokens": [], "fileUrlPath": "src/index.ts", @@ -6913,7 +6913,7 @@ "members": [ { "kind": "TypeAlias", - "canonicalReference": "calckey-js!entities.Ad:type", + "canonicalReference": "firefish-js!entities.Ad:type", "docComment": "", "excerptTokens": [ { @@ -6923,7 +6923,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO_2:type" + "canonicalReference": "firefish-js!~TODO_2:type" }, { "kind": "Content", @@ -6940,7 +6940,7 @@ }, { "kind": "TypeAlias", - "canonicalReference": "calckey-js!entities.Announcement:type", + "canonicalReference": "firefish-js!entities.Announcement:type", "docComment": "", "excerptTokens": [ { @@ -6954,7 +6954,7 @@ { "kind": "Reference", "text": "ID", - "canonicalReference": "calckey-js!entities.ID:type" + "canonicalReference": "firefish-js!entities.ID:type" }, { "kind": "Content", @@ -6963,7 +6963,7 @@ { "kind": "Reference", "text": "DateString", - "canonicalReference": "calckey-js!entities.DateString:type" + "canonicalReference": "firefish-js!entities.DateString:type" }, { "kind": "Content", @@ -6972,7 +6972,7 @@ { "kind": "Reference", "text": "DateString", - "canonicalReference": "calckey-js!entities.DateString:type" + "canonicalReference": "firefish-js!entities.DateString:type" }, { "kind": "Content", @@ -6993,7 +6993,7 @@ }, { "kind": "TypeAlias", - "canonicalReference": "calckey-js!entities.Antenna:type", + "canonicalReference": "firefish-js!entities.Antenna:type", "docComment": "", "excerptTokens": [ { @@ -7007,7 +7007,7 @@ { "kind": "Reference", "text": "ID", - "canonicalReference": "calckey-js!entities.ID:type" + "canonicalReference": "firefish-js!entities.ID:type" }, { "kind": "Content", @@ -7016,7 +7016,7 @@ { "kind": "Reference", "text": "DateString", - "canonicalReference": "calckey-js!entities.DateString:type" + "canonicalReference": "firefish-js!entities.DateString:type" }, { "kind": "Content", @@ -7025,7 +7025,7 @@ { "kind": "Reference", "text": "ID", - "canonicalReference": "calckey-js!entities.ID:type" + "canonicalReference": "firefish-js!entities.ID:type" }, { "kind": "Content", @@ -7034,7 +7034,7 @@ { "kind": "Reference", "text": "ID", - "canonicalReference": "calckey-js!entities.ID:type" + "canonicalReference": "firefish-js!entities.ID:type" }, { "kind": "Content", @@ -7055,7 +7055,7 @@ }, { "kind": "TypeAlias", - "canonicalReference": "calckey-js!entities.App:type", + "canonicalReference": "firefish-js!entities.App:type", "docComment": "", "excerptTokens": [ { @@ -7065,7 +7065,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO_2:type" + "canonicalReference": "firefish-js!~TODO_2:type" }, { "kind": "Content", @@ -7082,7 +7082,7 @@ }, { "kind": "TypeAlias", - "canonicalReference": "calckey-js!entities.AuthSession:type", + "canonicalReference": "firefish-js!entities.AuthSession:type", "docComment": "", "excerptTokens": [ { @@ -7096,7 +7096,7 @@ { "kind": "Reference", "text": "ID", - "canonicalReference": "calckey-js!entities.ID:type" + "canonicalReference": "firefish-js!entities.ID:type" }, { "kind": "Content", @@ -7105,7 +7105,7 @@ { "kind": "Reference", "text": "App", - "canonicalReference": "calckey-js!entities.App:type" + "canonicalReference": "firefish-js!entities.App:type" }, { "kind": "Content", @@ -7126,7 +7126,7 @@ }, { "kind": "TypeAlias", - "canonicalReference": "calckey-js!entities.Blocking:type", + "canonicalReference": "firefish-js!entities.Blocking:type", "docComment": "", "excerptTokens": [ { @@ -7140,7 +7140,7 @@ { "kind": "Reference", "text": "ID", - "canonicalReference": "calckey-js!entities.ID:type" + "canonicalReference": "firefish-js!entities.ID:type" }, { "kind": "Content", @@ -7149,7 +7149,7 @@ { "kind": "Reference", "text": "DateString", - "canonicalReference": "calckey-js!entities.DateString:type" + "canonicalReference": "firefish-js!entities.DateString:type" }, { "kind": "Content", @@ -7158,7 +7158,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -7167,7 +7167,7 @@ { "kind": "Reference", "text": "UserDetailed", - "canonicalReference": "calckey-js!entities.UserDetailed:type" + "canonicalReference": "firefish-js!entities.UserDetailed:type" }, { "kind": "Content", @@ -7188,7 +7188,7 @@ }, { "kind": "TypeAlias", - "canonicalReference": "calckey-js!entities.Channel:type", + "canonicalReference": "firefish-js!entities.Channel:type", "docComment": "", "excerptTokens": [ { @@ -7202,7 +7202,7 @@ { "kind": "Reference", "text": "ID", - "canonicalReference": "calckey-js!entities.ID:type" + "canonicalReference": "firefish-js!entities.ID:type" }, { "kind": "Content", @@ -7223,7 +7223,7 @@ }, { "kind": "TypeAlias", - "canonicalReference": "calckey-js!entities.Clip:type", + "canonicalReference": "firefish-js!entities.Clip:type", "docComment": "", "excerptTokens": [ { @@ -7233,7 +7233,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO_2:type" + "canonicalReference": "firefish-js!~TODO_2:type" }, { "kind": "Content", @@ -7250,7 +7250,7 @@ }, { "kind": "TypeAlias", - "canonicalReference": "calckey-js!entities.CustomEmoji:type", + "canonicalReference": "firefish-js!entities.CustomEmoji:type", "docComment": "", "excerptTokens": [ { @@ -7276,7 +7276,7 @@ }, { "kind": "TypeAlias", - "canonicalReference": "calckey-js!entities.DateString:type", + "canonicalReference": "firefish-js!entities.DateString:type", "docComment": "", "excerptTokens": [ { @@ -7302,7 +7302,7 @@ }, { "kind": "TypeAlias", - "canonicalReference": "calckey-js!entities.DetailedInstanceMetadata:type", + "canonicalReference": "firefish-js!entities.DetailedInstanceMetadata:type", "docComment": "", "excerptTokens": [ { @@ -7312,7 +7312,7 @@ { "kind": "Reference", "text": "LiteInstanceMetadata", - "canonicalReference": "calckey-js!entities.LiteInstanceMetadata:type" + "canonicalReference": "firefish-js!entities.LiteInstanceMetadata:type" }, { "kind": "Content", @@ -7342,7 +7342,7 @@ }, { "kind": "TypeAlias", - "canonicalReference": "calckey-js!entities.DriveFile:type", + "canonicalReference": "firefish-js!entities.DriveFile:type", "docComment": "", "excerptTokens": [ { @@ -7356,7 +7356,7 @@ { "kind": "Reference", "text": "ID", - "canonicalReference": "calckey-js!entities.ID:type" + "canonicalReference": "firefish-js!entities.ID:type" }, { "kind": "Content", @@ -7365,7 +7365,7 @@ { "kind": "Reference", "text": "DateString", - "canonicalReference": "calckey-js!entities.DateString:type" + "canonicalReference": "firefish-js!entities.DateString:type" }, { "kind": "Content", @@ -7395,7 +7395,7 @@ }, { "kind": "TypeAlias", - "canonicalReference": "calckey-js!entities.DriveFolder:type", + "canonicalReference": "firefish-js!entities.DriveFolder:type", "docComment": "", "excerptTokens": [ { @@ -7405,7 +7405,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO_2:type" + "canonicalReference": "firefish-js!~TODO_2:type" }, { "kind": "Content", @@ -7422,7 +7422,7 @@ }, { "kind": "TypeAlias", - "canonicalReference": "calckey-js!entities.Following:type", + "canonicalReference": "firefish-js!entities.Following:type", "docComment": "", "excerptTokens": [ { @@ -7436,7 +7436,7 @@ { "kind": "Reference", "text": "ID", - "canonicalReference": "calckey-js!entities.ID:type" + "canonicalReference": "firefish-js!entities.ID:type" }, { "kind": "Content", @@ -7445,7 +7445,7 @@ { "kind": "Reference", "text": "DateString", - "canonicalReference": "calckey-js!entities.DateString:type" + "canonicalReference": "firefish-js!entities.DateString:type" }, { "kind": "Content", @@ -7454,7 +7454,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -7463,7 +7463,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -7484,7 +7484,7 @@ }, { "kind": "TypeAlias", - "canonicalReference": "calckey-js!entities.FollowingFolloweePopulated:type", + "canonicalReference": "firefish-js!entities.FollowingFolloweePopulated:type", "docComment": "", "excerptTokens": [ { @@ -7494,7 +7494,7 @@ { "kind": "Reference", "text": "Following", - "canonicalReference": "calckey-js!entities.Following:type" + "canonicalReference": "firefish-js!entities.Following:type" }, { "kind": "Content", @@ -7503,7 +7503,7 @@ { "kind": "Reference", "text": "UserDetailed", - "canonicalReference": "calckey-js!entities.UserDetailed:type" + "canonicalReference": "firefish-js!entities.UserDetailed:type" }, { "kind": "Content", @@ -7524,7 +7524,7 @@ }, { "kind": "TypeAlias", - "canonicalReference": "calckey-js!entities.FollowingFollowerPopulated:type", + "canonicalReference": "firefish-js!entities.FollowingFollowerPopulated:type", "docComment": "", "excerptTokens": [ { @@ -7534,7 +7534,7 @@ { "kind": "Reference", "text": "Following", - "canonicalReference": "calckey-js!entities.Following:type" + "canonicalReference": "firefish-js!entities.Following:type" }, { "kind": "Content", @@ -7543,7 +7543,7 @@ { "kind": "Reference", "text": "UserDetailed", - "canonicalReference": "calckey-js!entities.UserDetailed:type" + "canonicalReference": "firefish-js!entities.UserDetailed:type" }, { "kind": "Content", @@ -7564,7 +7564,7 @@ }, { "kind": "TypeAlias", - "canonicalReference": "calckey-js!entities.FollowRequest:type", + "canonicalReference": "firefish-js!entities.FollowRequest:type", "docComment": "", "excerptTokens": [ { @@ -7578,7 +7578,7 @@ { "kind": "Reference", "text": "ID", - "canonicalReference": "calckey-js!entities.ID:type" + "canonicalReference": "firefish-js!entities.ID:type" }, { "kind": "Content", @@ -7587,7 +7587,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -7596,7 +7596,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -7617,7 +7617,7 @@ }, { "kind": "TypeAlias", - "canonicalReference": "calckey-js!entities.GalleryPost:type", + "canonicalReference": "firefish-js!entities.GalleryPost:type", "docComment": "", "excerptTokens": [ { @@ -7627,7 +7627,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO_2:type" + "canonicalReference": "firefish-js!~TODO_2:type" }, { "kind": "Content", @@ -7644,7 +7644,7 @@ }, { "kind": "TypeAlias", - "canonicalReference": "calckey-js!entities.ID:type", + "canonicalReference": "firefish-js!entities.ID:type", "docComment": "", "excerptTokens": [ { @@ -7670,7 +7670,7 @@ }, { "kind": "TypeAlias", - "canonicalReference": "calckey-js!entities.Instance:type", + "canonicalReference": "firefish-js!entities.Instance:type", "docComment": "", "excerptTokens": [ { @@ -7684,7 +7684,7 @@ { "kind": "Reference", "text": "ID", - "canonicalReference": "calckey-js!entities.ID:type" + "canonicalReference": "firefish-js!entities.ID:type" }, { "kind": "Content", @@ -7693,7 +7693,7 @@ { "kind": "Reference", "text": "DateString", - "canonicalReference": "calckey-js!entities.DateString:type" + "canonicalReference": "firefish-js!entities.DateString:type" }, { "kind": "Content", @@ -7702,7 +7702,7 @@ { "kind": "Reference", "text": "DateString", - "canonicalReference": "calckey-js!entities.DateString:type" + "canonicalReference": "firefish-js!entities.DateString:type" }, { "kind": "Content", @@ -7711,7 +7711,7 @@ { "kind": "Reference", "text": "DateString", - "canonicalReference": "calckey-js!entities.DateString:type" + "canonicalReference": "firefish-js!entities.DateString:type" }, { "kind": "Content", @@ -7720,7 +7720,7 @@ { "kind": "Reference", "text": "DateString", - "canonicalReference": "calckey-js!entities.DateString:type" + "canonicalReference": "firefish-js!entities.DateString:type" }, { "kind": "Content", @@ -7729,7 +7729,7 @@ { "kind": "Reference", "text": "DateString", - "canonicalReference": "calckey-js!entities.DateString:type" + "canonicalReference": "firefish-js!entities.DateString:type" }, { "kind": "Content", @@ -7750,7 +7750,7 @@ }, { "kind": "TypeAlias", - "canonicalReference": "calckey-js!entities.InstanceMetadata:type", + "canonicalReference": "firefish-js!entities.InstanceMetadata:type", "docComment": "", "excerptTokens": [ { @@ -7764,7 +7764,7 @@ { "kind": "Reference", "text": "LiteInstanceMetadata", - "canonicalReference": "calckey-js!entities.LiteInstanceMetadata:type" + "canonicalReference": "firefish-js!entities.LiteInstanceMetadata:type" }, { "kind": "Content", @@ -7773,7 +7773,7 @@ { "kind": "Reference", "text": "DetailedInstanceMetadata", - "canonicalReference": "calckey-js!entities.DetailedInstanceMetadata:type" + "canonicalReference": "firefish-js!entities.DetailedInstanceMetadata:type" }, { "kind": "Content", @@ -7790,7 +7790,7 @@ }, { "kind": "TypeAlias", - "canonicalReference": "calckey-js!entities.LiteInstanceMetadata:type", + "canonicalReference": "firefish-js!entities.LiteInstanceMetadata:type", "docComment": "", "excerptTokens": [ { @@ -7804,7 +7804,7 @@ { "kind": "Reference", "text": "CustomEmoji", - "canonicalReference": "calckey-js!entities.CustomEmoji:type" + "canonicalReference": "firefish-js!entities.CustomEmoji:type" }, { "kind": "Content", @@ -7813,7 +7813,7 @@ { "kind": "Reference", "text": "ID", - "canonicalReference": "calckey-js!entities.ID:type" + "canonicalReference": "firefish-js!entities.ID:type" }, { "kind": "Content", @@ -7834,7 +7834,7 @@ }, { "kind": "TypeAlias", - "canonicalReference": "calckey-js!entities.MeDetailed:type", + "canonicalReference": "firefish-js!entities.MeDetailed:type", "docComment": "", "excerptTokens": [ { @@ -7844,7 +7844,7 @@ { "kind": "Reference", "text": "UserDetailed", - "canonicalReference": "calckey-js!entities.UserDetailed:type" + "canonicalReference": "firefish-js!entities.UserDetailed:type" }, { "kind": "Content", @@ -7853,7 +7853,7 @@ { "kind": "Reference", "text": "DriveFile", - "canonicalReference": "calckey-js!entities.DriveFile:type" + "canonicalReference": "firefish-js!entities.DriveFile:type" }, { "kind": "Content", @@ -7862,7 +7862,7 @@ { "kind": "Reference", "text": "DriveFile", - "canonicalReference": "calckey-js!entities.DriveFile:type" + "canonicalReference": "firefish-js!entities.DriveFile:type" }, { "kind": "Content", @@ -7892,7 +7892,7 @@ }, { "kind": "TypeAlias", - "canonicalReference": "calckey-js!entities.MessagingMessage:type", + "canonicalReference": "firefish-js!entities.MessagingMessage:type", "docComment": "", "excerptTokens": [ { @@ -7906,7 +7906,7 @@ { "kind": "Reference", "text": "ID", - "canonicalReference": "calckey-js!entities.ID:type" + "canonicalReference": "firefish-js!entities.ID:type" }, { "kind": "Content", @@ -7915,7 +7915,7 @@ { "kind": "Reference", "text": "DateString", - "canonicalReference": "calckey-js!entities.DateString:type" + "canonicalReference": "firefish-js!entities.DateString:type" }, { "kind": "Content", @@ -7924,7 +7924,7 @@ { "kind": "Reference", "text": "DriveFile", - "canonicalReference": "calckey-js!entities.DriveFile:type" + "canonicalReference": "firefish-js!entities.DriveFile:type" }, { "kind": "Content", @@ -7933,7 +7933,7 @@ { "kind": "Reference", "text": "DriveFile", - "canonicalReference": "calckey-js!entities.DriveFile:type" + "canonicalReference": "firefish-js!entities.DriveFile:type" }, { "kind": "Content", @@ -7942,7 +7942,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -7951,7 +7951,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -7960,7 +7960,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -7969,7 +7969,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -7978,7 +7978,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -7987,7 +7987,7 @@ { "kind": "Reference", "text": "UserGroup", - "canonicalReference": "calckey-js!entities.UserGroup:type" + "canonicalReference": "firefish-js!entities.UserGroup:type" }, { "kind": "Content", @@ -7996,7 +7996,7 @@ { "kind": "Reference", "text": "UserGroup", - "canonicalReference": "calckey-js!entities.UserGroup:type" + "canonicalReference": "firefish-js!entities.UserGroup:type" }, { "kind": "Content", @@ -8017,7 +8017,7 @@ }, { "kind": "TypeAlias", - "canonicalReference": "calckey-js!entities.Note:type", + "canonicalReference": "firefish-js!entities.Note:type", "docComment": "", "excerptTokens": [ { @@ -8031,7 +8031,7 @@ { "kind": "Reference", "text": "ID", - "canonicalReference": "calckey-js!entities.ID:type" + "canonicalReference": "firefish-js!entities.ID:type" }, { "kind": "Content", @@ -8040,7 +8040,7 @@ { "kind": "Reference", "text": "DateString", - "canonicalReference": "calckey-js!entities.DateString:type" + "canonicalReference": "firefish-js!entities.DateString:type" }, { "kind": "Content", @@ -8049,7 +8049,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -8058,7 +8058,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -8067,7 +8067,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -8076,7 +8076,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -8085,7 +8085,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -8094,7 +8094,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -8103,7 +8103,7 @@ { "kind": "Reference", "text": "DriveFile", - "canonicalReference": "calckey-js!entities.DriveFile:type" + "canonicalReference": "firefish-js!entities.DriveFile:type" }, { "kind": "Content", @@ -8112,7 +8112,7 @@ { "kind": "Reference", "text": "DriveFile", - "canonicalReference": "calckey-js!entities.DriveFile:type" + "canonicalReference": "firefish-js!entities.DriveFile:type" }, { "kind": "Content", @@ -8121,7 +8121,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -8130,7 +8130,7 @@ { "kind": "Reference", "text": "Channel", - "canonicalReference": "calckey-js!entities.Channel:type" + "canonicalReference": "firefish-js!entities.Channel:type" }, { "kind": "Content", @@ -8148,7 +8148,7 @@ { "kind": "Reference", "text": "DateString", - "canonicalReference": "calckey-js!entities.DateString:type" + "canonicalReference": "firefish-js!entities.DateString:type" }, { "kind": "Content", @@ -8157,7 +8157,7 @@ { "kind": "Reference", "text": "DateString", - "canonicalReference": "calckey-js!entities.DateString:type" + "canonicalReference": "firefish-js!entities.DateString:type" }, { "kind": "Content", @@ -8178,7 +8178,7 @@ }, { "kind": "TypeAlias", - "canonicalReference": "calckey-js!entities.NoteFavorite:type", + "canonicalReference": "firefish-js!entities.NoteFavorite:type", "docComment": "", "excerptTokens": [ { @@ -8192,7 +8192,7 @@ { "kind": "Reference", "text": "ID", - "canonicalReference": "calckey-js!entities.ID:type" + "canonicalReference": "firefish-js!entities.ID:type" }, { "kind": "Content", @@ -8201,7 +8201,7 @@ { "kind": "Reference", "text": "DateString", - "canonicalReference": "calckey-js!entities.DateString:type" + "canonicalReference": "firefish-js!entities.DateString:type" }, { "kind": "Content", @@ -8210,7 +8210,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -8219,7 +8219,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -8240,7 +8240,7 @@ }, { "kind": "TypeAlias", - "canonicalReference": "calckey-js!entities.NoteReaction:type", + "canonicalReference": "firefish-js!entities.NoteReaction:type", "docComment": "", "excerptTokens": [ { @@ -8254,7 +8254,7 @@ { "kind": "Reference", "text": "ID", - "canonicalReference": "calckey-js!entities.ID:type" + "canonicalReference": "firefish-js!entities.ID:type" }, { "kind": "Content", @@ -8263,7 +8263,7 @@ { "kind": "Reference", "text": "DateString", - "canonicalReference": "calckey-js!entities.DateString:type" + "canonicalReference": "firefish-js!entities.DateString:type" }, { "kind": "Content", @@ -8272,7 +8272,7 @@ { "kind": "Reference", "text": "UserLite", - "canonicalReference": "calckey-js!entities.UserLite:type" + "canonicalReference": "firefish-js!entities.UserLite:type" }, { "kind": "Content", @@ -8293,7 +8293,7 @@ }, { "kind": "TypeAlias", - "canonicalReference": "calckey-js!entities.Notification:type", + "canonicalReference": "firefish-js!entities.Notification:type", "docComment": "", "excerptTokens": [ { @@ -8307,7 +8307,7 @@ { "kind": "Reference", "text": "ID", - "canonicalReference": "calckey-js!entities.ID:type" + "canonicalReference": "firefish-js!entities.ID:type" }, { "kind": "Content", @@ -8316,7 +8316,7 @@ { "kind": "Reference", "text": "DateString", - "canonicalReference": "calckey-js!entities.DateString:type" + "canonicalReference": "firefish-js!entities.DateString:type" }, { "kind": "Content", @@ -8325,7 +8325,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -8334,7 +8334,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -8343,7 +8343,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -8352,7 +8352,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -8361,7 +8361,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -8370,7 +8370,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -8379,7 +8379,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -8388,7 +8388,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -8397,7 +8397,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -8406,7 +8406,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -8415,7 +8415,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -8424,7 +8424,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -8433,7 +8433,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -8442,7 +8442,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -8451,7 +8451,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -8460,7 +8460,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -8469,7 +8469,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -8478,7 +8478,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -8487,7 +8487,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -8496,7 +8496,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -8505,7 +8505,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -8514,7 +8514,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -8523,7 +8523,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -8532,7 +8532,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -8541,7 +8541,7 @@ { "kind": "Reference", "text": "UserGroup", - "canonicalReference": "calckey-js!entities.UserGroup:type" + "canonicalReference": "firefish-js!entities.UserGroup:type" }, { "kind": "Content", @@ -8550,7 +8550,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -8559,7 +8559,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -8580,7 +8580,7 @@ }, { "kind": "TypeAlias", - "canonicalReference": "calckey-js!entities.OriginType:type", + "canonicalReference": "firefish-js!entities.OriginType:type", "docComment": "", "excerptTokens": [ { @@ -8606,7 +8606,7 @@ }, { "kind": "TypeAlias", - "canonicalReference": "calckey-js!entities.Page:type", + "canonicalReference": "firefish-js!entities.Page:type", "docComment": "", "excerptTokens": [ { @@ -8620,7 +8620,7 @@ { "kind": "Reference", "text": "ID", - "canonicalReference": "calckey-js!entities.ID:type" + "canonicalReference": "firefish-js!entities.ID:type" }, { "kind": "Content", @@ -8629,7 +8629,7 @@ { "kind": "Reference", "text": "DateString", - "canonicalReference": "calckey-js!entities.DateString:type" + "canonicalReference": "firefish-js!entities.DateString:type" }, { "kind": "Content", @@ -8638,7 +8638,7 @@ { "kind": "Reference", "text": "DateString", - "canonicalReference": "calckey-js!entities.DateString:type" + "canonicalReference": "firefish-js!entities.DateString:type" }, { "kind": "Content", @@ -8647,7 +8647,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -8656,7 +8656,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -8683,7 +8683,7 @@ { "kind": "Reference", "text": "DriveFile", - "canonicalReference": "calckey-js!entities.DriveFile:type" + "canonicalReference": "firefish-js!entities.DriveFile:type" }, { "kind": "Content", @@ -8692,7 +8692,7 @@ { "kind": "Reference", "text": "DriveFile", - "canonicalReference": "calckey-js!entities.DriveFile:type" + "canonicalReference": "firefish-js!entities.DriveFile:type" }, { "kind": "Content", @@ -8713,7 +8713,7 @@ }, { "kind": "TypeAlias", - "canonicalReference": "calckey-js!entities.PageEvent:type", + "canonicalReference": "firefish-js!entities.PageEvent:type", "docComment": "", "excerptTokens": [ { @@ -8727,7 +8727,7 @@ { "kind": "Reference", "text": "Page", - "canonicalReference": "calckey-js!entities.Page:type" + "canonicalReference": "firefish-js!entities.Page:type" }, { "kind": "Content", @@ -8736,7 +8736,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -8745,7 +8745,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -8766,7 +8766,7 @@ }, { "kind": "TypeAlias", - "canonicalReference": "calckey-js!entities.ServerInfo:type", + "canonicalReference": "firefish-js!entities.ServerInfo:type", "docComment": "", "excerptTokens": [ { @@ -8792,7 +8792,7 @@ }, { "kind": "TypeAlias", - "canonicalReference": "calckey-js!entities.Signin:type", + "canonicalReference": "firefish-js!entities.Signin:type", "docComment": "", "excerptTokens": [ { @@ -8806,7 +8806,7 @@ { "kind": "Reference", "text": "ID", - "canonicalReference": "calckey-js!entities.ID:type" + "canonicalReference": "firefish-js!entities.ID:type" }, { "kind": "Content", @@ -8815,7 +8815,7 @@ { "kind": "Reference", "text": "DateString", - "canonicalReference": "calckey-js!entities.DateString:type" + "canonicalReference": "firefish-js!entities.DateString:type" }, { "kind": "Content", @@ -8845,7 +8845,7 @@ }, { "kind": "TypeAlias", - "canonicalReference": "calckey-js!entities.Stats:type", + "canonicalReference": "firefish-js!entities.Stats:type", "docComment": "", "excerptTokens": [ { @@ -8871,7 +8871,7 @@ }, { "kind": "TypeAlias", - "canonicalReference": "calckey-js!entities.User:type", + "canonicalReference": "firefish-js!entities.User:type", "docComment": "", "excerptTokens": [ { @@ -8881,7 +8881,7 @@ { "kind": "Reference", "text": "UserLite", - "canonicalReference": "calckey-js!entities.UserLite:type" + "canonicalReference": "firefish-js!entities.UserLite:type" }, { "kind": "Content", @@ -8890,7 +8890,7 @@ { "kind": "Reference", "text": "UserDetailed", - "canonicalReference": "calckey-js!entities.UserDetailed:type" + "canonicalReference": "firefish-js!entities.UserDetailed:type" }, { "kind": "Content", @@ -8907,7 +8907,7 @@ }, { "kind": "TypeAlias", - "canonicalReference": "calckey-js!entities.UserDetailed:type", + "canonicalReference": "firefish-js!entities.UserDetailed:type", "docComment": "", "excerptTokens": [ { @@ -8917,7 +8917,7 @@ { "kind": "Reference", "text": "UserLite", - "canonicalReference": "calckey-js!entities.UserLite:type" + "canonicalReference": "firefish-js!entities.UserLite:type" }, { "kind": "Content", @@ -8926,7 +8926,7 @@ { "kind": "Reference", "text": "DateString", - "canonicalReference": "calckey-js!entities.DateString:type" + "canonicalReference": "firefish-js!entities.DateString:type" }, { "kind": "Content", @@ -8935,7 +8935,7 @@ { "kind": "Reference", "text": "DateString", - "canonicalReference": "calckey-js!entities.DateString:type" + "canonicalReference": "firefish-js!entities.DateString:type" }, { "kind": "Content", @@ -8944,7 +8944,7 @@ { "kind": "Reference", "text": "ID", - "canonicalReference": "calckey-js!entities.ID:type" + "canonicalReference": "firefish-js!entities.ID:type" }, { "kind": "Content", @@ -8953,7 +8953,7 @@ { "kind": "Reference", "text": "Note", - "canonicalReference": "calckey-js!entities.Note:type" + "canonicalReference": "firefish-js!entities.Note:type" }, { "kind": "Content", @@ -8962,7 +8962,7 @@ { "kind": "Reference", "text": "Page", - "canonicalReference": "calckey-js!entities.Page:type" + "canonicalReference": "firefish-js!entities.Page:type" }, { "kind": "Content", @@ -8971,7 +8971,7 @@ { "kind": "Reference", "text": "DateString", - "canonicalReference": "calckey-js!entities.DateString:type" + "canonicalReference": "firefish-js!entities.DateString:type" }, { "kind": "Content", @@ -8992,7 +8992,7 @@ }, { "kind": "TypeAlias", - "canonicalReference": "calckey-js!entities.UserGroup:type", + "canonicalReference": "firefish-js!entities.UserGroup:type", "docComment": "", "excerptTokens": [ { @@ -9002,7 +9002,7 @@ { "kind": "Reference", "text": "TODO", - "canonicalReference": "calckey-js!~TODO_2:type" + "canonicalReference": "firefish-js!~TODO_2:type" }, { "kind": "Content", @@ -9019,7 +9019,7 @@ }, { "kind": "TypeAlias", - "canonicalReference": "calckey-js!entities.UserList:type", + "canonicalReference": "firefish-js!entities.UserList:type", "docComment": "", "excerptTokens": [ { @@ -9033,7 +9033,7 @@ { "kind": "Reference", "text": "ID", - "canonicalReference": "calckey-js!entities.ID:type" + "canonicalReference": "firefish-js!entities.ID:type" }, { "kind": "Content", @@ -9042,7 +9042,7 @@ { "kind": "Reference", "text": "DateString", - "canonicalReference": "calckey-js!entities.DateString:type" + "canonicalReference": "firefish-js!entities.DateString:type" }, { "kind": "Content", @@ -9051,7 +9051,7 @@ { "kind": "Reference", "text": "User", - "canonicalReference": "calckey-js!entities.User:type" + "canonicalReference": "firefish-js!entities.User:type" }, { "kind": "Content", @@ -9072,7 +9072,7 @@ }, { "kind": "TypeAlias", - "canonicalReference": "calckey-js!entities.UserLite:type", + "canonicalReference": "firefish-js!entities.UserLite:type", "docComment": "", "excerptTokens": [ { @@ -9086,7 +9086,7 @@ { "kind": "Reference", "text": "ID", - "canonicalReference": "calckey-js!entities.ID:type" + "canonicalReference": "firefish-js!entities.ID:type" }, { "kind": "Content", @@ -9095,7 +9095,7 @@ { "kind": "Reference", "text": "Instance", - "canonicalReference": "calckey-js!entities.Instance:type" + "canonicalReference": "firefish-js!entities.Instance:type" }, { "kind": "Content", @@ -9104,7 +9104,7 @@ { "kind": "Reference", "text": "Instance", - "canonicalReference": "calckey-js!entities.Instance:type" + "canonicalReference": "firefish-js!entities.Instance:type" }, { "kind": "Content", @@ -9113,7 +9113,7 @@ { "kind": "Reference", "text": "Instance", - "canonicalReference": "calckey-js!entities.Instance:type" + "canonicalReference": "firefish-js!entities.Instance:type" }, { "kind": "Content", @@ -9122,7 +9122,7 @@ { "kind": "Reference", "text": "Instance", - "canonicalReference": "calckey-js!entities.Instance:type" + "canonicalReference": "firefish-js!entities.Instance:type" }, { "kind": "Content", @@ -9131,7 +9131,7 @@ { "kind": "Reference", "text": "Instance", - "canonicalReference": "calckey-js!entities.Instance:type" + "canonicalReference": "firefish-js!entities.Instance:type" }, { "kind": "Content", @@ -9140,7 +9140,7 @@ { "kind": "Reference", "text": "Instance", - "canonicalReference": "calckey-js!entities.Instance:type" + "canonicalReference": "firefish-js!entities.Instance:type" }, { "kind": "Content", @@ -9161,7 +9161,7 @@ }, { "kind": "TypeAlias", - "canonicalReference": "calckey-js!entities.UserSorting:type", + "canonicalReference": "firefish-js!entities.UserSorting:type", "docComment": "", "excerptTokens": [ { @@ -9189,7 +9189,7 @@ }, { "kind": "Variable", - "canonicalReference": "calckey-js!ffVisibility:var", + "canonicalReference": "firefish-js!ffVisibility:var", "docComment": "", "excerptTokens": [ { @@ -9212,7 +9212,7 @@ }, { "kind": "Variable", - "canonicalReference": "calckey-js!mutedNoteReasons:var", + "canonicalReference": "firefish-js!mutedNoteReasons:var", "docComment": "", "excerptTokens": [ { @@ -9235,7 +9235,7 @@ }, { "kind": "Variable", - "canonicalReference": "calckey-js!noteVisibilities:var", + "canonicalReference": "firefish-js!noteVisibilities:var", "docComment": "", "excerptTokens": [ { @@ -9258,7 +9258,7 @@ }, { "kind": "Variable", - "canonicalReference": "calckey-js!notificationTypes:var", + "canonicalReference": "firefish-js!notificationTypes:var", "docComment": "", "excerptTokens": [ { @@ -9281,7 +9281,7 @@ }, { "kind": "Variable", - "canonicalReference": "calckey-js!permissions:var", + "canonicalReference": "firefish-js!permissions:var", "docComment": "", "excerptTokens": [ { @@ -9304,7 +9304,7 @@ }, { "kind": "Class", - "canonicalReference": "calckey-js!Stream:class", + "canonicalReference": "firefish-js!Stream:class", "docComment": "", "excerptTokens": [ { @@ -9323,7 +9323,7 @@ { "kind": "Reference", "text": "StreamEvents", - "canonicalReference": "calckey-js!~StreamEvents:type" + "canonicalReference": "firefish-js!~StreamEvents:type" }, { "kind": "Content", @@ -9342,7 +9342,7 @@ "members": [ { "kind": "Constructor", - "canonicalReference": "calckey-js!Stream:constructor(1)", + "canonicalReference": "firefish-js!Stream:constructor(1)", "docComment": "/**\n * Constructs a new instance of the `Stream` class\n */\n", "excerptTokens": [ { @@ -9406,7 +9406,7 @@ }, { "kind": "Method", - "canonicalReference": "calckey-js!Stream#close:member(1)", + "canonicalReference": "firefish-js!Stream#close:member(1)", "docComment": "", "excerptTokens": [ { @@ -9437,7 +9437,7 @@ }, { "kind": "Method", - "canonicalReference": "calckey-js!Stream#disconnectToChannel:member(1)", + "canonicalReference": "firefish-js!Stream#disconnectToChannel:member(1)", "docComment": "", "excerptTokens": [ { @@ -9447,7 +9447,7 @@ { "kind": "Reference", "text": "NonSharedConnection", - "canonicalReference": "calckey-js!~NonSharedConnection:class" + "canonicalReference": "firefish-js!~NonSharedConnection:class" }, { "kind": "Content", @@ -9486,7 +9486,7 @@ }, { "kind": "Method", - "canonicalReference": "calckey-js!Stream#removeSharedConnection:member(1)", + "canonicalReference": "firefish-js!Stream#removeSharedConnection:member(1)", "docComment": "", "excerptTokens": [ { @@ -9496,7 +9496,7 @@ { "kind": "Reference", "text": "SharedConnection", - "canonicalReference": "calckey-js!~SharedConnection:class" + "canonicalReference": "firefish-js!~SharedConnection:class" }, { "kind": "Content", @@ -9535,7 +9535,7 @@ }, { "kind": "Method", - "canonicalReference": "calckey-js!Stream#removeSharedConnectionPool:member(1)", + "canonicalReference": "firefish-js!Stream#removeSharedConnectionPool:member(1)", "docComment": "", "excerptTokens": [ { @@ -9545,7 +9545,7 @@ { "kind": "Reference", "text": "Pool", - "canonicalReference": "calckey-js!~Pool:class" + "canonicalReference": "firefish-js!~Pool:class" }, { "kind": "Content", @@ -9584,7 +9584,7 @@ }, { "kind": "Method", - "canonicalReference": "calckey-js!Stream#send:member(1)", + "canonicalReference": "firefish-js!Stream#send:member(1)", "docComment": "", "excerptTokens": [ { @@ -9648,7 +9648,7 @@ }, { "kind": "Property", - "canonicalReference": "calckey-js!Stream#state:member", + "canonicalReference": "firefish-js!Stream#state:member", "docComment": "", "excerptTokens": [ { @@ -9678,7 +9678,7 @@ }, { "kind": "Method", - "canonicalReference": "calckey-js!Stream#useChannel:member(1)", + "canonicalReference": "firefish-js!Stream#useChannel:member(1)", "docComment": "", "excerptTokens": [ { @@ -9692,7 +9692,7 @@ { "kind": "Reference", "text": "Channels", - "canonicalReference": "calckey-js!Channels:type" + "canonicalReference": "firefish-js!Channels:type" }, { "kind": "Content", @@ -9709,7 +9709,7 @@ { "kind": "Reference", "text": "Channels", - "canonicalReference": "calckey-js!Channels:type" + "canonicalReference": "firefish-js!Channels:type" }, { "kind": "Content", @@ -9730,7 +9730,7 @@ { "kind": "Reference", "text": "Connection", - "canonicalReference": "calckey-js!ChannelConnection:class" + "canonicalReference": "firefish-js!ChannelConnection:class" }, { "kind": "Content", @@ -9739,7 +9739,7 @@ { "kind": "Reference", "text": "Channels", - "canonicalReference": "calckey-js!Channels:type" + "canonicalReference": "firefish-js!Channels:type" }, { "kind": "Content", diff --git a/packages/calckey-js/etc/calckey-js.api.md b/packages/calckey-js/etc/calckey-js.api.md index bb441fef8..08a001de2 100644 --- a/packages/calckey-js/etc/calckey-js.api.md +++ b/packages/calckey-js/etc/calckey-js.api.md @@ -1,4 +1,4 @@ -## API Report File for "calckey-js" +## API Report File for "firefish-js" > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/). diff --git a/packages/calckey-js/markdown/calckey-js.acct.md b/packages/calckey-js/markdown/calckey-js.acct.md index 2535e0e9a..6779aed15 100644 --- a/packages/calckey-js/markdown/calckey-js.acct.md +++ b/packages/calckey-js/markdown/calckey-js.acct.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [Acct](./calckey-js.acct.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [Acct](./firefish-js.acct.md) ## Acct type diff --git a/packages/calckey-js/markdown/calckey-js.api.apiclient._constructor_.md b/packages/calckey-js/markdown/calckey-js.api.apiclient._constructor_.md index ed4c03eff..f9af10bc4 100644 --- a/packages/calckey-js/markdown/calckey-js.api.apiclient._constructor_.md +++ b/packages/calckey-js/markdown/calckey-js.api.apiclient._constructor_.md @@ -1,6 +1,6 @@ -[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) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [api](./firefish-js.api.md) > [APIClient](./firefish-js.api.apiclient.md) > [(constructor)](./firefish-js.api.apiclient._constructor_.md) ## api.APIClient.(constructor) @@ -20,5 +20,5 @@ constructor(opts: { | 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; } | | +| opts | { origin: [APIClient](./firefish-js.api.apiclient.md)\["origin"\]; credential?: [APIClient](./firefish-js.api.apiclient.md)\["credential"\]; fetch?: [APIClient](./firefish-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 index 2c14d244a..323203aac 100644 --- a/packages/calckey-js/markdown/calckey-js.api.apiclient.credential.md +++ b/packages/calckey-js/markdown/calckey-js.api.apiclient.credential.md @@ -1,6 +1,6 @@ -[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) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [api](./firefish-js.api.md) > [APIClient](./firefish-js.api.apiclient.md) > [credential](./firefish-js.api.apiclient.credential.md) ## api.APIClient.credential property diff --git a/packages/calckey-js/markdown/calckey-js.api.apiclient.fetch.md b/packages/calckey-js/markdown/calckey-js.api.apiclient.fetch.md index c7108c23d..ee2ad9b8d 100644 --- a/packages/calckey-js/markdown/calckey-js.api.apiclient.fetch.md +++ b/packages/calckey-js/markdown/calckey-js.api.apiclient.fetch.md @@ -1,6 +1,6 @@ -[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) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [api](./firefish-js.api.md) > [APIClient](./firefish-js.api.apiclient.md) > [fetch](./firefish-js.api.apiclient.fetch.md) ## api.APIClient.fetch property diff --git a/packages/calckey-js/markdown/calckey-js.api.apiclient.md b/packages/calckey-js/markdown/calckey-js.api.apiclient.md index 92dff826f..077e8f295 100644 --- a/packages/calckey-js/markdown/calckey-js.api.apiclient.md +++ b/packages/calckey-js/markdown/calckey-js.api.apiclient.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [api](./calckey-js.api.md) > [APIClient](./calckey-js.api.apiclient.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [api](./firefish-js.api.md) > [APIClient](./firefish-js.api.apiclient.md) ## api.APIClient class @@ -14,19 +14,19 @@ export declare class APIClient | Constructor | Modifiers | Description | | --- | --- | --- | -| [(constructor)(opts)](./calckey-js.api.apiclient._constructor_.md) | | Constructs a new instance of the APIClient class | +| [(constructor)(opts)](./firefish-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 | | +| [credential](./firefish-js.api.apiclient.credential.md) | | string \| null \| undefined | | +| [fetch](./firefish-js.api.apiclient.fetch.md) | | [FetchLike](./firefish-js.api.fetchlike.md) | | +| [origin](./firefish-js.api.apiclient.origin.md) | | string | | ## Methods | Method | Modifiers | Description | | --- | --- | --- | -| [request(endpoint, params, credential)](./calckey-js.api.apiclient.request.md) | | | +| [request(endpoint, params, credential)](./firefish-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 index 1f6a4be91..74eff2e1f 100644 --- a/packages/calckey-js/markdown/calckey-js.api.apiclient.origin.md +++ b/packages/calckey-js/markdown/calckey-js.api.apiclient.origin.md @@ -1,6 +1,6 @@ -[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) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [api](./firefish-js.api.md) > [APIClient](./firefish-js.api.apiclient.md) > [origin](./firefish-js.api.apiclient.origin.md) ## api.APIClient.origin property diff --git a/packages/calckey-js/markdown/calckey-js.api.apiclient.request.md b/packages/calckey-js/markdown/calckey-js.api.apiclient.request.md index a33001177..1d387fb33 100644 --- a/packages/calckey-js/markdown/calckey-js.api.apiclient.request.md +++ b/packages/calckey-js/markdown/calckey-js.api.apiclient.request.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [api](./calckey-js.api.md) > [APIClient](./calckey-js.api.apiclient.md) > [request](./calckey-js.api.apiclient.request.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [api](./firefish-js.api.md) > [APIClient](./firefish-js.api.apiclient.md) > [request](./firefish-js.api.apiclient.request.md) ## api.APIClient.request() method @@ -53,5 +53,5 @@ request( **Returns:** -Promise< [Endpoints](./calckey-js.endpoints.md)\[E\]\["res"\] extends { $switch: { $cases: \[any, any\]\[\]; $default: any; }; } ? IsCaseMatched<E, P, 0> extends true ? GetCaseResult<E, P, 0> : IsCaseMatched<E, P, 1> extends true ? GetCaseResult<E, P, 1> : IsCaseMatched<E, P, 2> extends true ? GetCaseResult<E, P, 2> : IsCaseMatched<E, P, 3> extends true ? GetCaseResult<E, P, 3> : IsCaseMatched<E, P, 4> extends true ? GetCaseResult<E, P, 4> : IsCaseMatched<E, P, 5> extends true ? GetCaseResult<E, P, 5> : IsCaseMatched<E, P, 6> extends true ? GetCaseResult<E, P, 6> : IsCaseMatched<E, P, 7> extends true ? GetCaseResult<E, P, 7> : IsCaseMatched<E, P, 8> extends true ? GetCaseResult<E, P, 8> : IsCaseMatched<E, P, 9> extends true ? GetCaseResult<E, P, 9> : [Endpoints](./calckey-js.endpoints.md)\[E\]\["res"\]\["$switch"\]\["$default"\] : [Endpoints](./calckey-js.endpoints.md)\[E\]\["res"\] > +Promise< [Endpoints](./firefish-js.endpoints.md)\[E\]\["res"\] extends { $switch: { $cases: \[any, any\]\[\]; $default: any; }; } ? IsCaseMatched<E, P, 0> extends true ? GetCaseResult<E, P, 0> : IsCaseMatched<E, P, 1> extends true ? GetCaseResult<E, P, 1> : IsCaseMatched<E, P, 2> extends true ? GetCaseResult<E, P, 2> : IsCaseMatched<E, P, 3> extends true ? GetCaseResult<E, P, 3> : IsCaseMatched<E, P, 4> extends true ? GetCaseResult<E, P, 4> : IsCaseMatched<E, P, 5> extends true ? GetCaseResult<E, P, 5> : IsCaseMatched<E, P, 6> extends true ? GetCaseResult<E, P, 6> : IsCaseMatched<E, P, 7> extends true ? GetCaseResult<E, P, 7> : IsCaseMatched<E, P, 8> extends true ? GetCaseResult<E, P, 8> : IsCaseMatched<E, P, 9> extends true ? GetCaseResult<E, P, 9> : [Endpoints](./firefish-js.endpoints.md)\[E\]\["res"\]\["$switch"\]\["$default"\] : [Endpoints](./firefish-js.endpoints.md)\[E\]\["res"\] > diff --git a/packages/calckey-js/markdown/calckey-js.api.apierror.md b/packages/calckey-js/markdown/calckey-js.api.apierror.md index 7927cfd89..7eb3bb2d8 100644 --- a/packages/calckey-js/markdown/calckey-js.api.apierror.md +++ b/packages/calckey-js/markdown/calckey-js.api.apierror.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [api](./calckey-js.api.md) > [APIError](./calckey-js.api.apierror.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [api](./firefish-js.api.md) > [APIError](./firefish-js.api.apierror.md) ## api.APIError type diff --git a/packages/calckey-js/markdown/calckey-js.api.fetchlike.md b/packages/calckey-js/markdown/calckey-js.api.fetchlike.md index 9ec29fa2d..8edc80de2 100644 --- a/packages/calckey-js/markdown/calckey-js.api.fetchlike.md +++ b/packages/calckey-js/markdown/calckey-js.api.fetchlike.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [api](./calckey-js.api.md) > [FetchLike](./calckey-js.api.fetchlike.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [api](./firefish-js.api.md) > [FetchLike](./firefish-js.api.fetchlike.md) ## api.FetchLike type diff --git a/packages/calckey-js/markdown/calckey-js.api.isapierror.md b/packages/calckey-js/markdown/calckey-js.api.isapierror.md index 965bf9ce2..ea31e0c9f 100644 --- a/packages/calckey-js/markdown/calckey-js.api.isapierror.md +++ b/packages/calckey-js/markdown/calckey-js.api.isapierror.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [api](./calckey-js.api.md) > [isAPIError](./calckey-js.api.isapierror.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [api](./firefish-js.api.md) > [isAPIError](./firefish-js.api.isapierror.md) ## api.isAPIError() function @@ -18,5 +18,5 @@ export declare function isAPIError(reason: any): reason is APIError; **Returns:** -reason is [APIError](./calckey-js.api.apierror.md) +reason is [APIError](./firefish-js.api.apierror.md) diff --git a/packages/calckey-js/markdown/calckey-js.api.md b/packages/calckey-js/markdown/calckey-js.api.md index eee1920ab..c0dbed535 100644 --- a/packages/calckey-js/markdown/calckey-js.api.md +++ b/packages/calckey-js/markdown/calckey-js.api.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [api](./calckey-js.api.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [api](./firefish-js.api.md) ## api namespace @@ -8,18 +8,18 @@ | Class | Description | | --- | --- | -| [APIClient](./calckey-js.api.apiclient.md) | | +| [APIClient](./firefish-js.api.apiclient.md) | | ## Functions | Function | Description | | --- | --- | -| [isAPIError(reason)](./calckey-js.api.isapierror.md) | | +| [isAPIError(reason)](./firefish-js.api.isapierror.md) | | ## Type Aliases | Type Alias | Description | | --- | --- | -| [APIError](./calckey-js.api.apierror.md) | | -| [FetchLike](./calckey-js.api.fetchlike.md) | | +| [APIError](./firefish-js.api.apierror.md) | | +| [FetchLike](./firefish-js.api.fetchlike.md) | | diff --git a/packages/calckey-js/markdown/calckey-js.channelconnection._constructor_.md b/packages/calckey-js/markdown/calckey-js.channelconnection._constructor_.md index 65f7c3eee..4705c0627 100644 --- a/packages/calckey-js/markdown/calckey-js.channelconnection._constructor_.md +++ b/packages/calckey-js/markdown/calckey-js.channelconnection._constructor_.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [ChannelConnection](./calckey-js.channelconnection.md) > [(constructor)](./calckey-js.channelconnection._constructor_.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [ChannelConnection](./firefish-js.channelconnection.md) > [(constructor)](./firefish-js.channelconnection._constructor_.md) ## ChannelConnection.(constructor) @@ -16,7 +16,7 @@ constructor(stream: Stream, channel: string, name?: string); | Parameter | Type | Description | | --- | --- | --- | -| stream | [Stream](./calckey-js.stream.md) | | +| stream | [Stream](./firefish-js.stream.md) | | | channel | string | | | name | string | _(Optional)_ | diff --git a/packages/calckey-js/markdown/calckey-js.channelconnection.channel.md b/packages/calckey-js/markdown/calckey-js.channelconnection.channel.md index bbf36efce..71569bac5 100644 --- a/packages/calckey-js/markdown/calckey-js.channelconnection.channel.md +++ b/packages/calckey-js/markdown/calckey-js.channelconnection.channel.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [ChannelConnection](./calckey-js.channelconnection.md) > [channel](./calckey-js.channelconnection.channel.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [ChannelConnection](./firefish-js.channelconnection.md) > [channel](./firefish-js.channelconnection.channel.md) ## ChannelConnection.channel property diff --git a/packages/calckey-js/markdown/calckey-js.channelconnection.dispose.md b/packages/calckey-js/markdown/calckey-js.channelconnection.dispose.md index 847e7dfae..d968d4ad9 100644 --- a/packages/calckey-js/markdown/calckey-js.channelconnection.dispose.md +++ b/packages/calckey-js/markdown/calckey-js.channelconnection.dispose.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [ChannelConnection](./calckey-js.channelconnection.md) > [dispose](./calckey-js.channelconnection.dispose.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [ChannelConnection](./firefish-js.channelconnection.md) > [dispose](./firefish-js.channelconnection.dispose.md) ## ChannelConnection.dispose() method diff --git a/packages/calckey-js/markdown/calckey-js.channelconnection.id.md b/packages/calckey-js/markdown/calckey-js.channelconnection.id.md index b145ffa06..1f4f9896f 100644 --- a/packages/calckey-js/markdown/calckey-js.channelconnection.id.md +++ b/packages/calckey-js/markdown/calckey-js.channelconnection.id.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [ChannelConnection](./calckey-js.channelconnection.md) > [id](./calckey-js.channelconnection.id.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [ChannelConnection](./firefish-js.channelconnection.md) > [id](./firefish-js.channelconnection.id.md) ## ChannelConnection.id property diff --git a/packages/calckey-js/markdown/calckey-js.channelconnection.incount.md b/packages/calckey-js/markdown/calckey-js.channelconnection.incount.md index b7ef319e2..e53cecf6f 100644 --- a/packages/calckey-js/markdown/calckey-js.channelconnection.incount.md +++ b/packages/calckey-js/markdown/calckey-js.channelconnection.incount.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [ChannelConnection](./calckey-js.channelconnection.md) > [inCount](./calckey-js.channelconnection.incount.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [ChannelConnection](./firefish-js.channelconnection.md) > [inCount](./firefish-js.channelconnection.incount.md) ## ChannelConnection.inCount property diff --git a/packages/calckey-js/markdown/calckey-js.channelconnection.md b/packages/calckey-js/markdown/calckey-js.channelconnection.md index 0429baa80..68e77916e 100644 --- a/packages/calckey-js/markdown/calckey-js.channelconnection.md +++ b/packages/calckey-js/markdown/calckey-js.channelconnection.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [ChannelConnection](./calckey-js.channelconnection.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [ChannelConnection](./firefish-js.channelconnection.md) ## ChannelConnection class @@ -17,23 +17,23 @@ export declare abstract class Connection< | Constructor | Modifiers | Description | | --- | --- | --- | -| [(constructor)(stream, channel, name)](./calckey-js.channelconnection._constructor_.md) | | Constructs a new instance of the Connection class | +| [(constructor)(stream, channel, name)](./firefish-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) | | +| [channel](./firefish-js.channelconnection.channel.md) | | string | | +| [id](./firefish-js.channelconnection.id.md) | abstract | string | | +| [inCount](./firefish-js.channelconnection.incount.md) | | number | | +| [name?](./firefish-js.channelconnection.name.md) | | string | _(Optional)_ | +| [outCount](./firefish-js.channelconnection.outcount.md) | | number | | +| [stream](./firefish-js.channelconnection.stream.md) | protected | [Stream](./firefish-js.stream.md) | | ## Methods | Method | Modifiers | Description | | --- | --- | --- | -| [dispose()](./calckey-js.channelconnection.dispose.md) | abstract | | -| [send(type, body)](./calckey-js.channelconnection.send.md) | | | +| [dispose()](./firefish-js.channelconnection.dispose.md) | abstract | | +| [send(type, body)](./firefish-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 index b364bdf84..77acd5ea5 100644 --- a/packages/calckey-js/markdown/calckey-js.channelconnection.name.md +++ b/packages/calckey-js/markdown/calckey-js.channelconnection.name.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [ChannelConnection](./calckey-js.channelconnection.md) > [name](./calckey-js.channelconnection.name.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [ChannelConnection](./firefish-js.channelconnection.md) > [name](./firefish-js.channelconnection.name.md) ## ChannelConnection.name property diff --git a/packages/calckey-js/markdown/calckey-js.channelconnection.outcount.md b/packages/calckey-js/markdown/calckey-js.channelconnection.outcount.md index e30075768..ec79be633 100644 --- a/packages/calckey-js/markdown/calckey-js.channelconnection.outcount.md +++ b/packages/calckey-js/markdown/calckey-js.channelconnection.outcount.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [ChannelConnection](./calckey-js.channelconnection.md) > [outCount](./calckey-js.channelconnection.outcount.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [ChannelConnection](./firefish-js.channelconnection.md) > [outCount](./firefish-js.channelconnection.outcount.md) ## ChannelConnection.outCount property diff --git a/packages/calckey-js/markdown/calckey-js.channelconnection.send.md b/packages/calckey-js/markdown/calckey-js.channelconnection.send.md index 2ee5c2015..75b869e86 100644 --- a/packages/calckey-js/markdown/calckey-js.channelconnection.send.md +++ b/packages/calckey-js/markdown/calckey-js.channelconnection.send.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [ChannelConnection](./calckey-js.channelconnection.md) > [send](./calckey-js.channelconnection.send.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [ChannelConnection](./firefish-js.channelconnection.md) > [send](./firefish-js.channelconnection.send.md) ## ChannelConnection.send() method diff --git a/packages/calckey-js/markdown/calckey-js.channelconnection.stream.md b/packages/calckey-js/markdown/calckey-js.channelconnection.stream.md index 2e1fc584c..a36829797 100644 --- a/packages/calckey-js/markdown/calckey-js.channelconnection.stream.md +++ b/packages/calckey-js/markdown/calckey-js.channelconnection.stream.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [ChannelConnection](./calckey-js.channelconnection.md) > [stream](./calckey-js.channelconnection.stream.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [ChannelConnection](./firefish-js.channelconnection.md) > [stream](./firefish-js.channelconnection.stream.md) ## ChannelConnection.stream property diff --git a/packages/calckey-js/markdown/calckey-js.channels.md b/packages/calckey-js/markdown/calckey-js.channels.md index 952a79f04..555047e3e 100644 --- a/packages/calckey-js/markdown/calckey-js.channels.md +++ b/packages/calckey-js/markdown/calckey-js.channels.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [Channels](./calckey-js.channels.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [Channels](./firefish-js.channels.md) ## Channels type @@ -139,5 +139,5 @@ export declare type Channels = { }; }; ``` -**References:** [Note](./calckey-js.entities.note.md), [User](./calckey-js.entities.user.md), [MeDetailed](./calckey-js.entities.medetailed.md), [PageEvent](./calckey-js.entities.pageevent.md), [DriveFile](./calckey-js.entities.drivefile.md), [MessagingMessage](./calckey-js.entities.messagingmessage.md), [Antenna](./calckey-js.entities.antenna.md), [UserGroup](./calckey-js.entities.usergroup.md) +**References:** [Note](./firefish-js.entities.note.md), [User](./firefish-js.entities.user.md), [MeDetailed](./firefish-js.entities.medetailed.md), [PageEvent](./firefish-js.entities.pageevent.md), [DriveFile](./firefish-js.entities.drivefile.md), [MessagingMessage](./firefish-js.entities.messagingmessage.md), [Antenna](./firefish-js.entities.antenna.md), [UserGroup](./firefish-js.entities.usergroup.md) diff --git a/packages/calckey-js/markdown/calckey-js.endpoints.md b/packages/calckey-js/markdown/calckey-js.endpoints.md index c38a93683..4d2162d57 100644 --- a/packages/calckey-js/markdown/calckey-js.endpoints.md +++ b/packages/calckey-js/markdown/calckey-js.endpoints.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [Endpoints](./calckey-js.endpoints.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [Endpoints](./firefish-js.endpoints.md) ## Endpoints type @@ -1907,5 +1907,5 @@ export declare type Endpoints = { }; }; ``` -**References:** [User](./calckey-js.entities.user.md), [Ad](./calckey-js.entities.ad.md), [Announcement](./calckey-js.entities.announcement.md), [Antenna](./calckey-js.entities.antenna.md), [Note](./calckey-js.entities.note.md), [UserDetailed](./calckey-js.entities.userdetailed.md), [App](./calckey-js.entities.app.md), [AuthSession](./calckey-js.entities.authsession.md), [Blocking](./calckey-js.entities.blocking.md), [Clip](./calckey-js.entities.clip.md), [DriveFolder](./calckey-js.entities.drivefolder.md), [DriveFile](./calckey-js.entities.drivefile.md), [Following](./calckey-js.entities.following.md), [FollowingFolloweePopulated](./calckey-js.entities.followingfolloweepopulated.md), [Instance](./calckey-js.entities.instance.md), [FollowRequest](./calckey-js.entities.followrequest.md), [GalleryPost](./calckey-js.entities.gallerypost.md), [NoteFavorite](./calckey-js.entities.notefavorite.md), [MeDetailed](./calckey-js.entities.medetailed.md), [DateString](./calckey-js.entities.datestring.md), [Signin](./calckey-js.entities.signin.md), [MessagingMessage](./calckey-js.entities.messagingmessage.md), [UserGroup](./calckey-js.entities.usergroup.md), [DetailedInstanceMetadata](./calckey-js.entities.detailedinstancemetadata.md), [LiteInstanceMetadata](./calckey-js.entities.liteinstancemetadata.md), [NoteReaction](./calckey-js.entities.notereaction.md), [UserList](./calckey-js.entities.userlist.md), [Page](./calckey-js.entities.page.md), [Stats](./calckey-js.entities.stats.md), [ServerInfo](./calckey-js.entities.serverinfo.md), [UserSorting](./calckey-js.entities.usersorting.md), [OriginType](./calckey-js.entities.origintype.md), [FollowingFollowerPopulated](./calckey-js.entities.followingfollowerpopulated.md) +**References:** [User](./firefish-js.entities.user.md), [Ad](./firefish-js.entities.ad.md), [Announcement](./firefish-js.entities.announcement.md), [Antenna](./firefish-js.entities.antenna.md), [Note](./firefish-js.entities.note.md), [UserDetailed](./firefish-js.entities.userdetailed.md), [App](./firefish-js.entities.app.md), [AuthSession](./firefish-js.entities.authsession.md), [Blocking](./firefish-js.entities.blocking.md), [Clip](./firefish-js.entities.clip.md), [DriveFolder](./firefish-js.entities.drivefolder.md), [DriveFile](./firefish-js.entities.drivefile.md), [Following](./firefish-js.entities.following.md), [FollowingFolloweePopulated](./firefish-js.entities.followingfolloweepopulated.md), [Instance](./firefish-js.entities.instance.md), [FollowRequest](./firefish-js.entities.followrequest.md), [GalleryPost](./firefish-js.entities.gallerypost.md), [NoteFavorite](./firefish-js.entities.notefavorite.md), [MeDetailed](./firefish-js.entities.medetailed.md), [DateString](./firefish-js.entities.datestring.md), [Signin](./firefish-js.entities.signin.md), [MessagingMessage](./firefish-js.entities.messagingmessage.md), [UserGroup](./firefish-js.entities.usergroup.md), [DetailedInstanceMetadata](./firefish-js.entities.detailedinstancemetadata.md), [LiteInstanceMetadata](./firefish-js.entities.liteinstancemetadata.md), [NoteReaction](./firefish-js.entities.notereaction.md), [UserList](./firefish-js.entities.userlist.md), [Page](./firefish-js.entities.page.md), [Stats](./firefish-js.entities.stats.md), [ServerInfo](./firefish-js.entities.serverinfo.md), [UserSorting](./firefish-js.entities.usersorting.md), [OriginType](./firefish-js.entities.origintype.md), [FollowingFollowerPopulated](./firefish-js.entities.followingfollowerpopulated.md) diff --git a/packages/calckey-js/markdown/calckey-js.entities.ad.md b/packages/calckey-js/markdown/calckey-js.entities.ad.md index 83bc86e48..9b3ef29e1 100644 --- a/packages/calckey-js/markdown/calckey-js.entities.ad.md +++ b/packages/calckey-js/markdown/calckey-js.entities.ad.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [Ad](./calckey-js.entities.ad.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [entities](./firefish-js.entities.md) > [Ad](./firefish-js.entities.ad.md) ## entities.Ad type diff --git a/packages/calckey-js/markdown/calckey-js.entities.announcement.md b/packages/calckey-js/markdown/calckey-js.entities.announcement.md index 09d572a58..fba76c227 100644 --- a/packages/calckey-js/markdown/calckey-js.entities.announcement.md +++ b/packages/calckey-js/markdown/calckey-js.entities.announcement.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [Announcement](./calckey-js.entities.announcement.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [entities](./firefish-js.entities.md) > [Announcement](./firefish-js.entities.announcement.md) ## entities.Announcement type @@ -17,5 +17,5 @@ export declare type Announcement = { isRead?: boolean; }; ``` -**References:** [ID](./calckey-js.entities.id.md), [DateString](./calckey-js.entities.datestring.md) +**References:** [ID](./firefish-js.entities.id.md), [DateString](./firefish-js.entities.datestring.md) diff --git a/packages/calckey-js/markdown/calckey-js.entities.antenna.md b/packages/calckey-js/markdown/calckey-js.entities.antenna.md index 7f05d15a8..c92eca849 100644 --- a/packages/calckey-js/markdown/calckey-js.entities.antenna.md +++ b/packages/calckey-js/markdown/calckey-js.entities.antenna.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [Antenna](./calckey-js.entities.antenna.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [entities](./firefish-js.entities.md) > [Antenna](./firefish-js.entities.antenna.md) ## entities.Antenna type @@ -25,5 +25,5 @@ export declare type Antenna = { hasUnreadNote: boolean; }; ``` -**References:** [ID](./calckey-js.entities.id.md), [DateString](./calckey-js.entities.datestring.md) +**References:** [ID](./firefish-js.entities.id.md), [DateString](./firefish-js.entities.datestring.md) diff --git a/packages/calckey-js/markdown/calckey-js.entities.app.md b/packages/calckey-js/markdown/calckey-js.entities.app.md index 4f31281e3..bef377f53 100644 --- a/packages/calckey-js/markdown/calckey-js.entities.app.md +++ b/packages/calckey-js/markdown/calckey-js.entities.app.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [App](./calckey-js.entities.app.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [entities](./firefish-js.entities.md) > [App](./firefish-js.entities.app.md) ## entities.App type diff --git a/packages/calckey-js/markdown/calckey-js.entities.authsession.md b/packages/calckey-js/markdown/calckey-js.entities.authsession.md index 36ff40964..d43848ac3 100644 --- a/packages/calckey-js/markdown/calckey-js.entities.authsession.md +++ b/packages/calckey-js/markdown/calckey-js.entities.authsession.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [AuthSession](./calckey-js.entities.authsession.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [entities](./firefish-js.entities.md) > [AuthSession](./firefish-js.entities.authsession.md) ## entities.AuthSession type @@ -13,5 +13,5 @@ export declare type AuthSession = { token: string; }; ``` -**References:** [ID](./calckey-js.entities.id.md), [App](./calckey-js.entities.app.md) +**References:** [ID](./firefish-js.entities.id.md), [App](./firefish-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 index 6769b6475..189692fb9 100644 --- a/packages/calckey-js/markdown/calckey-js.entities.blocking.md +++ b/packages/calckey-js/markdown/calckey-js.entities.blocking.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [Blocking](./calckey-js.entities.blocking.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [entities](./firefish-js.entities.md) > [Blocking](./firefish-js.entities.blocking.md) ## entities.Blocking type @@ -14,5 +14,5 @@ export declare type Blocking = { 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) +**References:** [ID](./firefish-js.entities.id.md), [DateString](./firefish-js.entities.datestring.md), [User](./firefish-js.entities.user.md), [UserDetailed](./firefish-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 index 6f7d5f3b8..002716f8e 100644 --- a/packages/calckey-js/markdown/calckey-js.entities.channel.md +++ b/packages/calckey-js/markdown/calckey-js.entities.channel.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [Channel](./calckey-js.entities.channel.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [entities](./firefish-js.entities.md) > [Channel](./firefish-js.entities.channel.md) ## entities.Channel type @@ -11,5 +11,5 @@ export declare type Channel = { id: ID; }; ``` -**References:** [ID](./calckey-js.entities.id.md) +**References:** [ID](./firefish-js.entities.id.md) diff --git a/packages/calckey-js/markdown/calckey-js.entities.clip.md b/packages/calckey-js/markdown/calckey-js.entities.clip.md index 69607fb49..41979bc70 100644 --- a/packages/calckey-js/markdown/calckey-js.entities.clip.md +++ b/packages/calckey-js/markdown/calckey-js.entities.clip.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [Clip](./calckey-js.entities.clip.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [entities](./firefish-js.entities.md) > [Clip](./firefish-js.entities.clip.md) ## entities.Clip type diff --git a/packages/calckey-js/markdown/calckey-js.entities.customemoji.md b/packages/calckey-js/markdown/calckey-js.entities.customemoji.md index 834eb0ec2..4a0b1925b 100644 --- a/packages/calckey-js/markdown/calckey-js.entities.customemoji.md +++ b/packages/calckey-js/markdown/calckey-js.entities.customemoji.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [CustomEmoji](./calckey-js.entities.customemoji.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [entities](./firefish-js.entities.md) > [CustomEmoji](./firefish-js.entities.customemoji.md) ## entities.CustomEmoji type diff --git a/packages/calckey-js/markdown/calckey-js.entities.datestring.md b/packages/calckey-js/markdown/calckey-js.entities.datestring.md index 20204330c..39a9873e5 100644 --- a/packages/calckey-js/markdown/calckey-js.entities.datestring.md +++ b/packages/calckey-js/markdown/calckey-js.entities.datestring.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [DateString](./calckey-js.entities.datestring.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [entities](./firefish-js.entities.md) > [DateString](./firefish-js.entities.datestring.md) ## entities.DateString type diff --git a/packages/calckey-js/markdown/calckey-js.entities.detailedinstancemetadata.md b/packages/calckey-js/markdown/calckey-js.entities.detailedinstancemetadata.md index 920e0bca9..7629502d3 100644 --- a/packages/calckey-js/markdown/calckey-js.entities.detailedinstancemetadata.md +++ b/packages/calckey-js/markdown/calckey-js.entities.detailedinstancemetadata.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [DetailedInstanceMetadata](./calckey-js.entities.detailedinstancemetadata.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [entities](./firefish-js.entities.md) > [DetailedInstanceMetadata](./firefish-js.entities.detailedinstancemetadata.md) ## entities.DetailedInstanceMetadata type @@ -11,5 +11,5 @@ export declare type DetailedInstanceMetadata = LiteInstanceMetadata & { features: Record; }; ``` -**References:** [LiteInstanceMetadata](./calckey-js.entities.liteinstancemetadata.md) +**References:** [LiteInstanceMetadata](./firefish-js.entities.liteinstancemetadata.md) diff --git a/packages/calckey-js/markdown/calckey-js.entities.drivefile.md b/packages/calckey-js/markdown/calckey-js.entities.drivefile.md index eec361a9b..1393b5c63 100644 --- a/packages/calckey-js/markdown/calckey-js.entities.drivefile.md +++ b/packages/calckey-js/markdown/calckey-js.entities.drivefile.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [DriveFile](./calckey-js.entities.drivefile.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [entities](./firefish-js.entities.md) > [DriveFile](./firefish-js.entities.drivefile.md) ## entities.DriveFile type @@ -22,5 +22,5 @@ export declare type DriveFile = { properties: Record; }; ``` -**References:** [ID](./calckey-js.entities.id.md), [DateString](./calckey-js.entities.datestring.md) +**References:** [ID](./firefish-js.entities.id.md), [DateString](./firefish-js.entities.datestring.md) diff --git a/packages/calckey-js/markdown/calckey-js.entities.drivefolder.md b/packages/calckey-js/markdown/calckey-js.entities.drivefolder.md index 4d8c68e8b..dbbefb120 100644 --- a/packages/calckey-js/markdown/calckey-js.entities.drivefolder.md +++ b/packages/calckey-js/markdown/calckey-js.entities.drivefolder.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [DriveFolder](./calckey-js.entities.drivefolder.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [entities](./firefish-js.entities.md) > [DriveFolder](./firefish-js.entities.drivefolder.md) ## entities.DriveFolder type diff --git a/packages/calckey-js/markdown/calckey-js.entities.following.md b/packages/calckey-js/markdown/calckey-js.entities.following.md index 2c495d2fe..f5423fb87 100644 --- a/packages/calckey-js/markdown/calckey-js.entities.following.md +++ b/packages/calckey-js/markdown/calckey-js.entities.following.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [Following](./calckey-js.entities.following.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [entities](./firefish-js.entities.md) > [Following](./firefish-js.entities.following.md) ## entities.Following type @@ -14,5 +14,5 @@ export declare type Following = { followeeId: User["id"]; }; ``` -**References:** [ID](./calckey-js.entities.id.md), [DateString](./calckey-js.entities.datestring.md), [User](./calckey-js.entities.user.md) +**References:** [ID](./firefish-js.entities.id.md), [DateString](./firefish-js.entities.datestring.md), [User](./firefish-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 index f0000326a..85ed36bf4 100644 --- a/packages/calckey-js/markdown/calckey-js.entities.followingfolloweepopulated.md +++ b/packages/calckey-js/markdown/calckey-js.entities.followingfolloweepopulated.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [FollowingFolloweePopulated](./calckey-js.entities.followingfolloweepopulated.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [entities](./firefish-js.entities.md) > [FollowingFolloweePopulated](./firefish-js.entities.followingfolloweepopulated.md) ## entities.FollowingFolloweePopulated type @@ -11,5 +11,5 @@ export declare type FollowingFolloweePopulated = Following & { followee: UserDetailed; }; ``` -**References:** [Following](./calckey-js.entities.following.md), [UserDetailed](./calckey-js.entities.userdetailed.md) +**References:** [Following](./firefish-js.entities.following.md), [UserDetailed](./firefish-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 index 6f9860af8..50d28b598 100644 --- a/packages/calckey-js/markdown/calckey-js.entities.followingfollowerpopulated.md +++ b/packages/calckey-js/markdown/calckey-js.entities.followingfollowerpopulated.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [FollowingFollowerPopulated](./calckey-js.entities.followingfollowerpopulated.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [entities](./firefish-js.entities.md) > [FollowingFollowerPopulated](./firefish-js.entities.followingfollowerpopulated.md) ## entities.FollowingFollowerPopulated type @@ -11,5 +11,5 @@ export declare type FollowingFollowerPopulated = Following & { follower: UserDetailed; }; ``` -**References:** [Following](./calckey-js.entities.following.md), [UserDetailed](./calckey-js.entities.userdetailed.md) +**References:** [Following](./firefish-js.entities.following.md), [UserDetailed](./firefish-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 index d7ff6bbef..8fbd54b1c 100644 --- a/packages/calckey-js/markdown/calckey-js.entities.followrequest.md +++ b/packages/calckey-js/markdown/calckey-js.entities.followrequest.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [FollowRequest](./calckey-js.entities.followrequest.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [entities](./firefish-js.entities.md) > [FollowRequest](./firefish-js.entities.followrequest.md) ## entities.FollowRequest type @@ -13,5 +13,5 @@ export declare type FollowRequest = { followee: User; }; ``` -**References:** [ID](./calckey-js.entities.id.md), [User](./calckey-js.entities.user.md) +**References:** [ID](./firefish-js.entities.id.md), [User](./firefish-js.entities.user.md) diff --git a/packages/calckey-js/markdown/calckey-js.entities.gallerypost.md b/packages/calckey-js/markdown/calckey-js.entities.gallerypost.md index a079955a9..057366a8e 100644 --- a/packages/calckey-js/markdown/calckey-js.entities.gallerypost.md +++ b/packages/calckey-js/markdown/calckey-js.entities.gallerypost.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [GalleryPost](./calckey-js.entities.gallerypost.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [entities](./firefish-js.entities.md) > [GalleryPost](./firefish-js.entities.gallerypost.md) ## entities.GalleryPost type diff --git a/packages/calckey-js/markdown/calckey-js.entities.id.md b/packages/calckey-js/markdown/calckey-js.entities.id.md index bf6e7f291..4cc166f98 100644 --- a/packages/calckey-js/markdown/calckey-js.entities.id.md +++ b/packages/calckey-js/markdown/calckey-js.entities.id.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [ID](./calckey-js.entities.id.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [entities](./firefish-js.entities.md) > [ID](./firefish-js.entities.id.md) ## entities.ID type diff --git a/packages/calckey-js/markdown/calckey-js.entities.instance.md b/packages/calckey-js/markdown/calckey-js.entities.instance.md index 7e0fb6cc6..6b78533b0 100644 --- a/packages/calckey-js/markdown/calckey-js.entities.instance.md +++ b/packages/calckey-js/markdown/calckey-js.entities.instance.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [Instance](./calckey-js.entities.instance.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [entities](./firefish-js.entities.md) > [Instance](./firefish-js.entities.instance.md) ## entities.Instance type @@ -36,5 +36,5 @@ export declare type Instance = { infoUpdatedAt: DateString | null; }; ``` -**References:** [ID](./calckey-js.entities.id.md), [DateString](./calckey-js.entities.datestring.md) +**References:** [ID](./firefish-js.entities.id.md), [DateString](./firefish-js.entities.datestring.md) diff --git a/packages/calckey-js/markdown/calckey-js.entities.instancemetadata.md b/packages/calckey-js/markdown/calckey-js.entities.instancemetadata.md index 54e399e4e..c7e6f8a44 100644 --- a/packages/calckey-js/markdown/calckey-js.entities.instancemetadata.md +++ b/packages/calckey-js/markdown/calckey-js.entities.instancemetadata.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [InstanceMetadata](./calckey-js.entities.instancemetadata.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [entities](./firefish-js.entities.md) > [InstanceMetadata](./firefish-js.entities.instancemetadata.md) ## entities.InstanceMetadata type @@ -11,5 +11,5 @@ export declare type InstanceMetadata = | LiteInstanceMetadata | DetailedInstanceMetadata; ``` -**References:** [LiteInstanceMetadata](./calckey-js.entities.liteinstancemetadata.md), [DetailedInstanceMetadata](./calckey-js.entities.detailedinstancemetadata.md) +**References:** [LiteInstanceMetadata](./firefish-js.entities.liteinstancemetadata.md), [DetailedInstanceMetadata](./firefish-js.entities.detailedinstancemetadata.md) diff --git a/packages/calckey-js/markdown/calckey-js.entities.liteinstancemetadata.md b/packages/calckey-js/markdown/calckey-js.entities.liteinstancemetadata.md index 51d21efcc..f1af7e7b3 100644 --- a/packages/calckey-js/markdown/calckey-js.entities.liteinstancemetadata.md +++ b/packages/calckey-js/markdown/calckey-js.entities.liteinstancemetadata.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [LiteInstanceMetadata](./calckey-js.entities.liteinstancemetadata.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [entities](./firefish-js.entities.md) > [LiteInstanceMetadata](./firefish-js.entities.liteinstancemetadata.md) ## entities.LiteInstanceMetadata type @@ -42,5 +42,5 @@ export declare type LiteInstanceMetadata = { }[]; }; ``` -**References:** [CustomEmoji](./calckey-js.entities.customemoji.md), [ID](./calckey-js.entities.id.md) +**References:** [CustomEmoji](./firefish-js.entities.customemoji.md), [ID](./firefish-js.entities.id.md) diff --git a/packages/calckey-js/markdown/calckey-js.entities.md b/packages/calckey-js/markdown/calckey-js.entities.md index a909f1f36..260bb8a8a 100644 --- a/packages/calckey-js/markdown/calckey-js.entities.md +++ b/packages/calckey-js/markdown/calckey-js.entities.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [entities](./firefish-js.entities.md) ## entities namespace @@ -8,44 +8,44 @@ | 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) | | +| [Ad](./firefish-js.entities.ad.md) | | +| [Announcement](./firefish-js.entities.announcement.md) | | +| [Antenna](./firefish-js.entities.antenna.md) | | +| [App](./firefish-js.entities.app.md) | | +| [AuthSession](./firefish-js.entities.authsession.md) | | +| [Blocking](./firefish-js.entities.blocking.md) | | +| [Channel](./firefish-js.entities.channel.md) | | +| [Clip](./firefish-js.entities.clip.md) | | +| [CustomEmoji](./firefish-js.entities.customemoji.md) | | +| [DateString](./firefish-js.entities.datestring.md) | | +| [DetailedInstanceMetadata](./firefish-js.entities.detailedinstancemetadata.md) | | +| [DriveFile](./firefish-js.entities.drivefile.md) | | +| [DriveFolder](./firefish-js.entities.drivefolder.md) | | +| [Following](./firefish-js.entities.following.md) | | +| [FollowingFolloweePopulated](./firefish-js.entities.followingfolloweepopulated.md) | | +| [FollowingFollowerPopulated](./firefish-js.entities.followingfollowerpopulated.md) | | +| [FollowRequest](./firefish-js.entities.followrequest.md) | | +| [GalleryPost](./firefish-js.entities.gallerypost.md) | | +| [ID](./firefish-js.entities.id.md) | | +| [Instance](./firefish-js.entities.instance.md) | | +| [InstanceMetadata](./firefish-js.entities.instancemetadata.md) | | +| [LiteInstanceMetadata](./firefish-js.entities.liteinstancemetadata.md) | | +| [MeDetailed](./firefish-js.entities.medetailed.md) | | +| [MessagingMessage](./firefish-js.entities.messagingmessage.md) | | +| [Note](./firefish-js.entities.note.md) | | +| [NoteFavorite](./firefish-js.entities.notefavorite.md) | | +| [NoteReaction](./firefish-js.entities.notereaction.md) | | +| [Notification](./firefish-js.entities.notification.md) | | +| [OriginType](./firefish-js.entities.origintype.md) | | +| [Page](./firefish-js.entities.page.md) | | +| [PageEvent](./firefish-js.entities.pageevent.md) | | +| [ServerInfo](./firefish-js.entities.serverinfo.md) | | +| [Signin](./firefish-js.entities.signin.md) | | +| [Stats](./firefish-js.entities.stats.md) | | +| [User](./firefish-js.entities.user.md) | | +| [UserDetailed](./firefish-js.entities.userdetailed.md) | | +| [UserGroup](./firefish-js.entities.usergroup.md) | | +| [UserList](./firefish-js.entities.userlist.md) | | +| [UserLite](./firefish-js.entities.userlite.md) | | +| [UserSorting](./firefish-js.entities.usersorting.md) | | diff --git a/packages/calckey-js/markdown/calckey-js.entities.medetailed.md b/packages/calckey-js/markdown/calckey-js.entities.medetailed.md index 625722acb..252f698e9 100644 --- a/packages/calckey-js/markdown/calckey-js.entities.medetailed.md +++ b/packages/calckey-js/markdown/calckey-js.entities.medetailed.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [MeDetailed](./calckey-js.entities.medetailed.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [entities](./firefish-js.entities.md) > [MeDetailed](./firefish-js.entities.medetailed.md) ## entities.MeDetailed type @@ -36,5 +36,5 @@ export declare type MeDetailed = UserDetailed & { [other: string]: any; }; ``` -**References:** [UserDetailed](./calckey-js.entities.userdetailed.md), [DriveFile](./calckey-js.entities.drivefile.md) +**References:** [UserDetailed](./firefish-js.entities.userdetailed.md), [DriveFile](./firefish-js.entities.drivefile.md) diff --git a/packages/calckey-js/markdown/calckey-js.entities.messagingmessage.md b/packages/calckey-js/markdown/calckey-js.entities.messagingmessage.md index ab810b79a..41869577e 100644 --- a/packages/calckey-js/markdown/calckey-js.entities.messagingmessage.md +++ b/packages/calckey-js/markdown/calckey-js.entities.messagingmessage.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [MessagingMessage](./calckey-js.entities.messagingmessage.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [entities](./firefish-js.entities.md) > [MessagingMessage](./firefish-js.entities.messagingmessage.md) ## entities.MessagingMessage type @@ -23,5 +23,5 @@ export declare type MessagingMessage = { groupId: UserGroup["id"] | null; }; ``` -**References:** [ID](./calckey-js.entities.id.md), [DateString](./calckey-js.entities.datestring.md), [DriveFile](./calckey-js.entities.drivefile.md), [User](./calckey-js.entities.user.md), [UserGroup](./calckey-js.entities.usergroup.md) +**References:** [ID](./firefish-js.entities.id.md), [DateString](./firefish-js.entities.datestring.md), [DriveFile](./firefish-js.entities.drivefile.md), [User](./firefish-js.entities.user.md), [UserGroup](./firefish-js.entities.usergroup.md) diff --git a/packages/calckey-js/markdown/calckey-js.entities.note.md b/packages/calckey-js/markdown/calckey-js.entities.note.md index c648a7d05..0d17b96c7 100644 --- a/packages/calckey-js/markdown/calckey-js.entities.note.md +++ b/packages/calckey-js/markdown/calckey-js.entities.note.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [Note](./calckey-js.entities.note.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [entities](./firefish-js.entities.md) > [Note](./firefish-js.entities.note.md) ## entities.Note type @@ -47,5 +47,5 @@ export declare type Note = { isHidden?: boolean; }; ``` -**References:** [ID](./calckey-js.entities.id.md), [DateString](./calckey-js.entities.datestring.md), [User](./calckey-js.entities.user.md), [Note](./calckey-js.entities.note.md), [DriveFile](./calckey-js.entities.drivefile.md), [Channel](./calckey-js.entities.channel.md) +**References:** [ID](./firefish-js.entities.id.md), [DateString](./firefish-js.entities.datestring.md), [User](./firefish-js.entities.user.md), [Note](./firefish-js.entities.note.md), [DriveFile](./firefish-js.entities.drivefile.md), [Channel](./firefish-js.entities.channel.md) diff --git a/packages/calckey-js/markdown/calckey-js.entities.notefavorite.md b/packages/calckey-js/markdown/calckey-js.entities.notefavorite.md index e61a82691..c5331fbbe 100644 --- a/packages/calckey-js/markdown/calckey-js.entities.notefavorite.md +++ b/packages/calckey-js/markdown/calckey-js.entities.notefavorite.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [NoteFavorite](./calckey-js.entities.notefavorite.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [entities](./firefish-js.entities.md) > [NoteFavorite](./firefish-js.entities.notefavorite.md) ## entities.NoteFavorite type @@ -14,5 +14,5 @@ export declare type NoteFavorite = { note: Note; }; ``` -**References:** [ID](./calckey-js.entities.id.md), [DateString](./calckey-js.entities.datestring.md), [Note](./calckey-js.entities.note.md) +**References:** [ID](./firefish-js.entities.id.md), [DateString](./firefish-js.entities.datestring.md), [Note](./firefish-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 index c458b9ae7..c17614e36 100644 --- a/packages/calckey-js/markdown/calckey-js.entities.notereaction.md +++ b/packages/calckey-js/markdown/calckey-js.entities.notereaction.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [NoteReaction](./calckey-js.entities.notereaction.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [entities](./firefish-js.entities.md) > [NoteReaction](./firefish-js.entities.notereaction.md) ## entities.NoteReaction type @@ -14,5 +14,5 @@ export declare type NoteReaction = { type: string; }; ``` -**References:** [ID](./calckey-js.entities.id.md), [DateString](./calckey-js.entities.datestring.md), [UserLite](./calckey-js.entities.userlite.md) +**References:** [ID](./firefish-js.entities.id.md), [DateString](./firefish-js.entities.datestring.md), [UserLite](./firefish-js.entities.userlite.md) diff --git a/packages/calckey-js/markdown/calckey-js.entities.notification.md b/packages/calckey-js/markdown/calckey-js.entities.notification.md index 9d8af4dff..700aed0f1 100644 --- a/packages/calckey-js/markdown/calckey-js.entities.notification.md +++ b/packages/calckey-js/markdown/calckey-js.entities.notification.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [Notification](./calckey-js.entities.notification.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [entities](./firefish-js.entities.md) > [Notification](./firefish-js.entities.notification.md) ## entities.Notification type @@ -78,5 +78,5 @@ export declare type Notification = { } ); ``` -**References:** [ID](./calckey-js.entities.id.md), [DateString](./calckey-js.entities.datestring.md), [User](./calckey-js.entities.user.md), [Note](./calckey-js.entities.note.md), [UserGroup](./calckey-js.entities.usergroup.md) +**References:** [ID](./firefish-js.entities.id.md), [DateString](./firefish-js.entities.datestring.md), [User](./firefish-js.entities.user.md), [Note](./firefish-js.entities.note.md), [UserGroup](./firefish-js.entities.usergroup.md) diff --git a/packages/calckey-js/markdown/calckey-js.entities.origintype.md b/packages/calckey-js/markdown/calckey-js.entities.origintype.md index f00c0b915..f0b613418 100644 --- a/packages/calckey-js/markdown/calckey-js.entities.origintype.md +++ b/packages/calckey-js/markdown/calckey-js.entities.origintype.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [OriginType](./calckey-js.entities.origintype.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [entities](./firefish-js.entities.md) > [OriginType](./firefish-js.entities.origintype.md) ## entities.OriginType type diff --git a/packages/calckey-js/markdown/calckey-js.entities.page.md b/packages/calckey-js/markdown/calckey-js.entities.page.md index 3a24e4512..92fddd794 100644 --- a/packages/calckey-js/markdown/calckey-js.entities.page.md +++ b/packages/calckey-js/markdown/calckey-js.entities.page.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [Page](./calckey-js.entities.page.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [entities](./firefish-js.entities.md) > [Page](./firefish-js.entities.page.md) ## entities.Page type @@ -29,5 +29,5 @@ export declare type Page = { isLiked?: boolean; }; ``` -**References:** [ID](./calckey-js.entities.id.md), [DateString](./calckey-js.entities.datestring.md), [User](./calckey-js.entities.user.md), [DriveFile](./calckey-js.entities.drivefile.md) +**References:** [ID](./firefish-js.entities.id.md), [DateString](./firefish-js.entities.datestring.md), [User](./firefish-js.entities.user.md), [DriveFile](./firefish-js.entities.drivefile.md) diff --git a/packages/calckey-js/markdown/calckey-js.entities.pageevent.md b/packages/calckey-js/markdown/calckey-js.entities.pageevent.md index f3cba2591..8ce209a3d 100644 --- a/packages/calckey-js/markdown/calckey-js.entities.pageevent.md +++ b/packages/calckey-js/markdown/calckey-js.entities.pageevent.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [PageEvent](./calckey-js.entities.pageevent.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [entities](./firefish-js.entities.md) > [PageEvent](./firefish-js.entities.pageevent.md) ## entities.PageEvent type @@ -15,5 +15,5 @@ export declare type PageEvent = { user: User; }; ``` -**References:** [Page](./calckey-js.entities.page.md), [User](./calckey-js.entities.user.md) +**References:** [Page](./firefish-js.entities.page.md), [User](./firefish-js.entities.user.md) diff --git a/packages/calckey-js/markdown/calckey-js.entities.serverinfo.md b/packages/calckey-js/markdown/calckey-js.entities.serverinfo.md index 9c2aadedc..3c7e10980 100644 --- a/packages/calckey-js/markdown/calckey-js.entities.serverinfo.md +++ b/packages/calckey-js/markdown/calckey-js.entities.serverinfo.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [ServerInfo](./calckey-js.entities.serverinfo.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [entities](./firefish-js.entities.md) > [ServerInfo](./firefish-js.entities.serverinfo.md) ## entities.ServerInfo type diff --git a/packages/calckey-js/markdown/calckey-js.entities.signin.md b/packages/calckey-js/markdown/calckey-js.entities.signin.md index 56d7f26ad..8c67d7c08 100644 --- a/packages/calckey-js/markdown/calckey-js.entities.signin.md +++ b/packages/calckey-js/markdown/calckey-js.entities.signin.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [Signin](./calckey-js.entities.signin.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [entities](./firefish-js.entities.md) > [Signin](./firefish-js.entities.signin.md) ## entities.Signin type @@ -15,5 +15,5 @@ export declare type Signin = { success: boolean; }; ``` -**References:** [ID](./calckey-js.entities.id.md), [DateString](./calckey-js.entities.datestring.md) +**References:** [ID](./firefish-js.entities.id.md), [DateString](./firefish-js.entities.datestring.md) diff --git a/packages/calckey-js/markdown/calckey-js.entities.stats.md b/packages/calckey-js/markdown/calckey-js.entities.stats.md index 1067e1a27..36cce7da7 100644 --- a/packages/calckey-js/markdown/calckey-js.entities.stats.md +++ b/packages/calckey-js/markdown/calckey-js.entities.stats.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [Stats](./calckey-js.entities.stats.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [entities](./firefish-js.entities.md) > [Stats](./firefish-js.entities.stats.md) ## entities.Stats type diff --git a/packages/calckey-js/markdown/calckey-js.entities.user.md b/packages/calckey-js/markdown/calckey-js.entities.user.md index 663daaaf3..b3795a135 100644 --- a/packages/calckey-js/markdown/calckey-js.entities.user.md +++ b/packages/calckey-js/markdown/calckey-js.entities.user.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [User](./calckey-js.entities.user.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [entities](./firefish-js.entities.md) > [User](./firefish-js.entities.user.md) ## entities.User type @@ -9,5 +9,5 @@ ```typescript export declare type User = UserLite | UserDetailed; ``` -**References:** [UserLite](./calckey-js.entities.userlite.md), [UserDetailed](./calckey-js.entities.userdetailed.md) +**References:** [UserLite](./firefish-js.entities.userlite.md), [UserDetailed](./firefish-js.entities.userdetailed.md) diff --git a/packages/calckey-js/markdown/calckey-js.entities.userdetailed.md b/packages/calckey-js/markdown/calckey-js.entities.userdetailed.md index cce30a85c..839f0105a 100644 --- a/packages/calckey-js/markdown/calckey-js.entities.userdetailed.md +++ b/packages/calckey-js/markdown/calckey-js.entities.userdetailed.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [UserDetailed](./calckey-js.entities.userdetailed.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [entities](./firefish-js.entities.md) > [UserDetailed](./firefish-js.entities.userdetailed.md) ## entities.UserDetailed type @@ -52,5 +52,5 @@ export declare type UserDetailed = UserLite & { url: string | null; }; ``` -**References:** [UserLite](./calckey-js.entities.userlite.md), [DateString](./calckey-js.entities.datestring.md), [ID](./calckey-js.entities.id.md), [Note](./calckey-js.entities.note.md), [Page](./calckey-js.entities.page.md) +**References:** [UserLite](./firefish-js.entities.userlite.md), [DateString](./firefish-js.entities.datestring.md), [ID](./firefish-js.entities.id.md), [Note](./firefish-js.entities.note.md), [Page](./firefish-js.entities.page.md) diff --git a/packages/calckey-js/markdown/calckey-js.entities.usergroup.md b/packages/calckey-js/markdown/calckey-js.entities.usergroup.md index 16bb9076b..bffa8e9f0 100644 --- a/packages/calckey-js/markdown/calckey-js.entities.usergroup.md +++ b/packages/calckey-js/markdown/calckey-js.entities.usergroup.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [UserGroup](./calckey-js.entities.usergroup.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [entities](./firefish-js.entities.md) > [UserGroup](./firefish-js.entities.usergroup.md) ## entities.UserGroup type diff --git a/packages/calckey-js/markdown/calckey-js.entities.userlist.md b/packages/calckey-js/markdown/calckey-js.entities.userlist.md index 6ba539c66..d049f0899 100644 --- a/packages/calckey-js/markdown/calckey-js.entities.userlist.md +++ b/packages/calckey-js/markdown/calckey-js.entities.userlist.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [UserList](./calckey-js.entities.userlist.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [entities](./firefish-js.entities.md) > [UserList](./firefish-js.entities.userlist.md) ## entities.UserList type @@ -14,5 +14,5 @@ export declare type UserList = { userIds: User["id"][]; }; ``` -**References:** [ID](./calckey-js.entities.id.md), [DateString](./calckey-js.entities.datestring.md), [User](./calckey-js.entities.user.md) +**References:** [ID](./firefish-js.entities.id.md), [DateString](./firefish-js.entities.datestring.md), [User](./firefish-js.entities.user.md) diff --git a/packages/calckey-js/markdown/calckey-js.entities.userlite.md b/packages/calckey-js/markdown/calckey-js.entities.userlite.md index 157b7b48a..0111a39a6 100644 --- a/packages/calckey-js/markdown/calckey-js.entities.userlite.md +++ b/packages/calckey-js/markdown/calckey-js.entities.userlite.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [UserLite](./calckey-js.entities.userlite.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [entities](./firefish-js.entities.md) > [UserLite](./firefish-js.entities.userlite.md) ## entities.UserLite type @@ -31,5 +31,5 @@ export declare type UserLite = { }; }; ``` -**References:** [ID](./calckey-js.entities.id.md), [Instance](./calckey-js.entities.instance.md) +**References:** [ID](./firefish-js.entities.id.md), [Instance](./firefish-js.entities.instance.md) diff --git a/packages/calckey-js/markdown/calckey-js.entities.usersorting.md b/packages/calckey-js/markdown/calckey-js.entities.usersorting.md index 54c3e9783..be9ebb81d 100644 --- a/packages/calckey-js/markdown/calckey-js.entities.usersorting.md +++ b/packages/calckey-js/markdown/calckey-js.entities.usersorting.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [UserSorting](./calckey-js.entities.usersorting.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [entities](./firefish-js.entities.md) > [UserSorting](./firefish-js.entities.usersorting.md) ## entities.UserSorting type diff --git a/packages/calckey-js/markdown/calckey-js.ffvisibility.md b/packages/calckey-js/markdown/calckey-js.ffvisibility.md index df08c489c..9cee2dc38 100644 --- a/packages/calckey-js/markdown/calckey-js.ffvisibility.md +++ b/packages/calckey-js/markdown/calckey-js.ffvisibility.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [ffVisibility](./calckey-js.ffvisibility.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [ffVisibility](./firefish-js.ffvisibility.md) ## ffVisibility variable diff --git a/packages/calckey-js/markdown/calckey-js.md b/packages/calckey-js/markdown/calckey-js.md index 1674ddd5a..03e051918 100644 --- a/packages/calckey-js/markdown/calckey-js.md +++ b/packages/calckey-js/markdown/calckey-js.md @@ -1,43 +1,43 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) -## calckey-js package +## firefish-js package ## Classes | Class | Description | | --- | --- | -| [Stream](./calckey-js.stream.md) | | +| [Stream](./firefish-js.stream.md) | | ## Abstract Classes | Abstract Class | Description | | --- | --- | -| [ChannelConnection](./calckey-js.channelconnection.md) | | +| [ChannelConnection](./firefish-js.channelconnection.md) | | ## Namespaces | Namespace | Description | | --- | --- | -| [api](./calckey-js.api.md) | | -| [entities](./calckey-js.entities.md) | | +| [api](./firefish-js.api.md) | | +| [entities](./firefish-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) | | +| [ffVisibility](./firefish-js.ffvisibility.md) | | +| [mutedNoteReasons](./firefish-js.mutednotereasons.md) | | +| [noteVisibilities](./firefish-js.notevisibilities.md) | | +| [notificationTypes](./firefish-js.notificationtypes.md) | | +| [permissions](./firefish-js.permissions.md) | | ## Type Aliases | Type Alias | Description | | --- | --- | -| [Acct](./calckey-js.acct.md) | | -| [Channels](./calckey-js.channels.md) | | -| [Endpoints](./calckey-js.endpoints.md) | | +| [Acct](./firefish-js.acct.md) | | +| [Channels](./firefish-js.channels.md) | | +| [Endpoints](./firefish-js.endpoints.md) | | diff --git a/packages/calckey-js/markdown/calckey-js.mutednotereasons.md b/packages/calckey-js/markdown/calckey-js.mutednotereasons.md index c518ae870..537d897ce 100644 --- a/packages/calckey-js/markdown/calckey-js.mutednotereasons.md +++ b/packages/calckey-js/markdown/calckey-js.mutednotereasons.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [mutedNoteReasons](./calckey-js.mutednotereasons.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [mutedNoteReasons](./firefish-js.mutednotereasons.md) ## mutedNoteReasons variable diff --git a/packages/calckey-js/markdown/calckey-js.notevisibilities.md b/packages/calckey-js/markdown/calckey-js.notevisibilities.md index a18247abb..c39e4075c 100644 --- a/packages/calckey-js/markdown/calckey-js.notevisibilities.md +++ b/packages/calckey-js/markdown/calckey-js.notevisibilities.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [noteVisibilities](./calckey-js.notevisibilities.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [noteVisibilities](./firefish-js.notevisibilities.md) ## noteVisibilities variable diff --git a/packages/calckey-js/markdown/calckey-js.notificationtypes.md b/packages/calckey-js/markdown/calckey-js.notificationtypes.md index 01d9ae352..49ae568d5 100644 --- a/packages/calckey-js/markdown/calckey-js.notificationtypes.md +++ b/packages/calckey-js/markdown/calckey-js.notificationtypes.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [notificationTypes](./calckey-js.notificationtypes.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [notificationTypes](./firefish-js.notificationtypes.md) ## notificationTypes variable diff --git a/packages/calckey-js/markdown/calckey-js.permissions.md b/packages/calckey-js/markdown/calckey-js.permissions.md index 6adcb917c..937a41de1 100644 --- a/packages/calckey-js/markdown/calckey-js.permissions.md +++ b/packages/calckey-js/markdown/calckey-js.permissions.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [permissions](./calckey-js.permissions.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [permissions](./firefish-js.permissions.md) ## permissions variable diff --git a/packages/calckey-js/markdown/calckey-js.stream._constructor_.md b/packages/calckey-js/markdown/calckey-js.stream._constructor_.md index c6ab76498..908972661 100644 --- a/packages/calckey-js/markdown/calckey-js.stream._constructor_.md +++ b/packages/calckey-js/markdown/calckey-js.stream._constructor_.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [Stream](./calckey-js.stream.md) > [(constructor)](./calckey-js.stream._constructor_.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [Stream](./firefish-js.stream.md) > [(constructor)](./firefish-js.stream._constructor_.md) ## Stream.(constructor) diff --git a/packages/calckey-js/markdown/calckey-js.stream.close.md b/packages/calckey-js/markdown/calckey-js.stream.close.md index 222c4ae8a..c37d8c045 100644 --- a/packages/calckey-js/markdown/calckey-js.stream.close.md +++ b/packages/calckey-js/markdown/calckey-js.stream.close.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [Stream](./calckey-js.stream.md) > [close](./calckey-js.stream.close.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [Stream](./firefish-js.stream.md) > [close](./firefish-js.stream.close.md) ## Stream.close() method diff --git a/packages/calckey-js/markdown/calckey-js.stream.disconnecttochannel.md b/packages/calckey-js/markdown/calckey-js.stream.disconnecttochannel.md index 2403a0d5d..c3944ecc8 100644 --- a/packages/calckey-js/markdown/calckey-js.stream.disconnecttochannel.md +++ b/packages/calckey-js/markdown/calckey-js.stream.disconnecttochannel.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [Stream](./calckey-js.stream.md) > [disconnectToChannel](./calckey-js.stream.disconnecttochannel.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [Stream](./firefish-js.stream.md) > [disconnectToChannel](./firefish-js.stream.disconnecttochannel.md) ## Stream.disconnectToChannel() method diff --git a/packages/calckey-js/markdown/calckey-js.stream.md b/packages/calckey-js/markdown/calckey-js.stream.md index 6c44402f5..91c8bb650 100644 --- a/packages/calckey-js/markdown/calckey-js.stream.md +++ b/packages/calckey-js/markdown/calckey-js.stream.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [Stream](./calckey-js.stream.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [Stream](./firefish-js.stream.md) ## Stream class @@ -15,22 +15,22 @@ export default class Stream extends EventEmitter | Constructor | Modifiers | Description | | --- | --- | --- | -| [(constructor)(origin, user, options)](./calckey-js.stream._constructor_.md) | | Constructs a new instance of the Stream class | +| [(constructor)(origin, user, options)](./firefish-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" | | +| [state](./firefish-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) | | | +| [close()](./firefish-js.stream.close.md) | | | +| [disconnectToChannel(connection)](./firefish-js.stream.disconnecttochannel.md) | | | +| [removeSharedConnection(connection)](./firefish-js.stream.removesharedconnection.md) | | | +| [removeSharedConnectionPool(pool)](./firefish-js.stream.removesharedconnectionpool.md) | | | +| [send(typeOrPayload, payload)](./firefish-js.stream.send.md) | | | +| [useChannel(channel, params, name)](./firefish-js.stream.usechannel.md) | | | diff --git a/packages/calckey-js/markdown/calckey-js.stream.removesharedconnection.md b/packages/calckey-js/markdown/calckey-js.stream.removesharedconnection.md index b52ce862e..cddf982fa 100644 --- a/packages/calckey-js/markdown/calckey-js.stream.removesharedconnection.md +++ b/packages/calckey-js/markdown/calckey-js.stream.removesharedconnection.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [Stream](./calckey-js.stream.md) > [removeSharedConnection](./calckey-js.stream.removesharedconnection.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [Stream](./firefish-js.stream.md) > [removeSharedConnection](./firefish-js.stream.removesharedconnection.md) ## Stream.removeSharedConnection() method diff --git a/packages/calckey-js/markdown/calckey-js.stream.removesharedconnectionpool.md b/packages/calckey-js/markdown/calckey-js.stream.removesharedconnectionpool.md index aa9915373..fd56dd287 100644 --- a/packages/calckey-js/markdown/calckey-js.stream.removesharedconnectionpool.md +++ b/packages/calckey-js/markdown/calckey-js.stream.removesharedconnectionpool.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [Stream](./calckey-js.stream.md) > [removeSharedConnectionPool](./calckey-js.stream.removesharedconnectionpool.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [Stream](./firefish-js.stream.md) > [removeSharedConnectionPool](./firefish-js.stream.removesharedconnectionpool.md) ## Stream.removeSharedConnectionPool() method diff --git a/packages/calckey-js/markdown/calckey-js.stream.send.md b/packages/calckey-js/markdown/calckey-js.stream.send.md index d8e03032d..4defb4d18 100644 --- a/packages/calckey-js/markdown/calckey-js.stream.send.md +++ b/packages/calckey-js/markdown/calckey-js.stream.send.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [Stream](./calckey-js.stream.md) > [send](./calckey-js.stream.send.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [Stream](./firefish-js.stream.md) > [send](./firefish-js.stream.send.md) ## Stream.send() method diff --git a/packages/calckey-js/markdown/calckey-js.stream.state.md b/packages/calckey-js/markdown/calckey-js.stream.state.md index 82c2e3c3e..4ad898f87 100644 --- a/packages/calckey-js/markdown/calckey-js.stream.state.md +++ b/packages/calckey-js/markdown/calckey-js.stream.state.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [Stream](./calckey-js.stream.md) > [state](./calckey-js.stream.state.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [Stream](./firefish-js.stream.md) > [state](./firefish-js.stream.state.md) ## Stream.state property diff --git a/packages/calckey-js/markdown/calckey-js.stream.usechannel.md b/packages/calckey-js/markdown/calckey-js.stream.usechannel.md index b3c4abbf7..791ac17a3 100644 --- a/packages/calckey-js/markdown/calckey-js.stream.usechannel.md +++ b/packages/calckey-js/markdown/calckey-js.stream.usechannel.md @@ -1,6 +1,6 @@ -[Home](./index.md) > [calckey-js](./calckey-js.md) > [Stream](./calckey-js.stream.md) > [useChannel](./calckey-js.stream.usechannel.md) +[Home](./index.md) > [firefish-js](./firefish-js.md) > [Stream](./firefish-js.stream.md) > [useChannel](./firefish-js.stream.usechannel.md) ## Stream.useChannel() method @@ -19,10 +19,10 @@ useChannel( | Parameter | Type | Description | | --- | --- | --- | | channel | C | | -| params | [Channels](./calckey-js.channels.md)\[C\]\["params"\] | _(Optional)_ | +| params | [Channels](./firefish-js.channels.md)\[C\]\["params"\] | _(Optional)_ | | name | string | _(Optional)_ | **Returns:** -[Connection](./calckey-js.channelconnection.md)<[Channels](./calckey-js.channels.md)\[C\]> +[Connection](./firefish-js.channelconnection.md)<[Channels](./firefish-js.channels.md)\[C\]> diff --git a/packages/calckey-js/markdown/index.md b/packages/calckey-js/markdown/index.md index 73dd95deb..0eebad983 100644 --- a/packages/calckey-js/markdown/index.md +++ b/packages/calckey-js/markdown/index.md @@ -8,5 +8,5 @@ | Package | Description | | --- | --- | -| [calckey-js](./calckey-js.md) | | +| [firefish-js](./firefish-js.md) | | diff --git a/packages/calckey-js/package.json b/packages/calckey-js/package.json index fdb253f45..68dcdb72c 100644 --- a/packages/calckey-js/package.json +++ b/packages/calckey-js/package.json @@ -1,12 +1,12 @@ { - "name": "calckey-js", + "name": "firefish-js", "version": "0.0.24", - "description": "Calckey SDK for JavaScript", + "description": "Firefish SDK for JavaScript", "main": "./built/index.js", "types": "./built/index.d.ts", "scripts": { "build": "pnpm swc src -d built -D", - "render": "pnpm run build && pnpm run api && pnpm run api-prod && cp temp/calckey-js.api.json etc/ && pnpm run api-doc", + "render": "pnpm run build && pnpm run api && pnpm run api-prod && cp temp/firefish-js.api.json etc/ && pnpm run api-doc", "tsd": "tsc && tsd", "api": "pnpm api-extractor run --local --verbose", "api-prod": "pnpm api-extractor run --verbose", @@ -18,7 +18,7 @@ }, "repository": { "type": "git", - "url": "https://codeberg.org/calckey/calckey.git" + "url": "https://codeberg.org/firefish/firefish.git" }, "devDependencies": { "@microsoft/api-extractor": "^7.36.0", diff --git a/packages/calckey-js/test-d/api.ts b/packages/calckey-js/test-d/api.ts index 82dbae245..39166879d 100644 --- a/packages/calckey-js/test-d/api.ts +++ b/packages/calckey-js/test-d/api.ts @@ -4,7 +4,7 @@ import * as Misskey from "../src"; describe("API", () => { test("success", async () => { const cli = new Misskey.api.APIClient({ - origin: "https://calckey.test", + origin: "https://firefish.test", credential: "TOKEN", }); const res = await cli.request("meta", { detail: true }); @@ -13,7 +13,7 @@ describe("API", () => { test("conditional respose type (meta)", async () => { const cli = new Misskey.api.APIClient({ - origin: "https://calckey.test", + origin: "https://firefish.test", credential: "TOKEN", }); @@ -35,7 +35,7 @@ describe("API", () => { test("conditional respose type (users/show)", async () => { const cli = new Misskey.api.APIClient({ - origin: "https://calckey.test", + origin: "https://firefish.test", credential: "TOKEN", }); diff --git a/packages/calckey-js/test-d/streaming.ts b/packages/calckey-js/test-d/streaming.ts index f9c414da7..b1eb19e4e 100644 --- a/packages/calckey-js/test-d/streaming.ts +++ b/packages/calckey-js/test-d/streaming.ts @@ -3,7 +3,7 @@ import * as Misskey from "../src"; describe("Streaming", () => { test("emit type", async () => { - const stream = new Misskey.Stream("https://calckey.test", { + const stream = new Misskey.Stream("https://firefish.test", { token: "TOKEN", }); const mainChannel = stream.useChannel("main"); @@ -13,7 +13,7 @@ describe("Streaming", () => { }); test("params type", async () => { - const stream = new Misskey.Stream("https://calckey.test", { + const stream = new Misskey.Stream("https://firefish.test", { token: "TOKEN", }); // TODO: 「stream.useChannel の第二引数として受け入れる型が diff --git a/packages/calckey-js/test/api.ts b/packages/calckey-js/test/api.ts index 5de41e1ed..d3f2ed436 100644 --- a/packages/calckey-js/test/api.ts +++ b/packages/calckey-js/test/api.ts @@ -20,7 +20,7 @@ describe("API", () => { fetchMock.resetMocks(); fetchMock.mockResponse(async (req) => { const body = await req.json(); - if (req.method === "POST" && req.url === "https://calckey.test/api/i") { + if (req.method === "POST" && req.url === "https://firefish.test/api/i") { if (body.i === "TOKEN") { return JSON.stringify({ id: "foo" }); } else { @@ -32,7 +32,7 @@ describe("API", () => { }); const cli = new APIClient({ - origin: "https://calckey.test", + origin: "https://firefish.test", credential: "TOKEN", }); @@ -43,7 +43,7 @@ describe("API", () => { }); expect(getFetchCall(fetchMock.mock.calls[0])).toEqual({ - url: "https://calckey.test/api/i", + url: "https://firefish.test/api/i", method: "POST", body: { i: "TOKEN" }, }); @@ -55,7 +55,7 @@ describe("API", () => { const body = await req.json(); if ( req.method === "POST" && - req.url === "https://calckey.test/api/notes/show" + req.url === "https://firefish.test/api/notes/show" ) { if (body.i === "TOKEN" && body.noteId === "aaaaa") { return JSON.stringify({ id: "foo" }); @@ -68,7 +68,7 @@ describe("API", () => { }); const cli = new APIClient({ - origin: "https://calckey.test", + origin: "https://firefish.test", credential: "TOKEN", }); @@ -79,7 +79,7 @@ describe("API", () => { }); expect(getFetchCall(fetchMock.mock.calls[0])).toEqual({ - url: "https://calckey.test/api/notes/show", + url: "https://firefish.test/api/notes/show", method: "POST", body: { i: "TOKEN", noteId: "aaaaa" }, }); @@ -90,7 +90,7 @@ describe("API", () => { fetchMock.mockResponse(async (req) => { if ( req.method === "POST" && - req.url === "https://calckey.test/api/reset-password" + req.url === "https://firefish.test/api/reset-password" ) { return { status: 204 }; } else { @@ -99,7 +99,7 @@ describe("API", () => { }); const cli = new APIClient({ - origin: "https://calckey.test", + origin: "https://firefish.test", credential: "TOKEN", }); @@ -111,7 +111,7 @@ describe("API", () => { expect(res).toEqual(null); expect(getFetchCall(fetchMock.mock.calls[0])).toEqual({ - url: "https://calckey.test/api/reset-password", + url: "https://firefish.test/api/reset-password", method: "POST", body: { i: "TOKEN", token: "aaa", password: "aaa" }, }); @@ -121,7 +121,7 @@ describe("API", () => { fetchMock.resetMocks(); fetchMock.mockResponse(async (req) => { const body = await req.json(); - if (req.method === "POST" && req.url === "https://calckey.test/api/i") { + if (req.method === "POST" && req.url === "https://firefish.test/api/i") { if (typeof body.i === "string") { return JSON.stringify({ id: "foo" }); } else { @@ -143,7 +143,7 @@ describe("API", () => { try { const cli = new APIClient({ - origin: "https://calckey.test", + origin: "https://firefish.test", credential: "TOKEN", }); @@ -172,7 +172,7 @@ describe("API", () => { try { const cli = new APIClient({ - origin: "https://calckey.test", + origin: "https://firefish.test", credential: "TOKEN", }); @@ -189,7 +189,7 @@ describe("API", () => { try { const cli = new APIClient({ - origin: "https://calckey.test", + origin: "https://firefish.test", credential: "TOKEN", }); @@ -210,7 +210,7 @@ describe("API", () => { try { const cli = new APIClient({ - origin: "https://calckey.test", + origin: "https://firefish.test", credential: "TOKEN", }); diff --git a/packages/calckey-js/test/streaming.ts b/packages/calckey-js/test/streaming.ts index 1a3a71374..66f3c90b1 100644 --- a/packages/calckey-js/test/streaming.ts +++ b/packages/calckey-js/test/streaming.ts @@ -3,8 +3,8 @@ import Stream from "../src/streaming"; describe("Streaming", () => { test("useChannel", async () => { - const server = new WS("wss://calckey.test/streaming"); - const stream = new Stream("https://calckey.test", { token: "TOKEN" }); + const server = new WS("wss://firefish.test/streaming"); + const stream = new Stream("https://firefish.test", { token: "TOKEN" }); const mainChannelReceived: any[] = []; const main = stream.useChannel("main"); main.on("meUpdated", (payload) => { @@ -44,8 +44,8 @@ describe("Streaming", () => { }); test("useChannel with parameters", async () => { - const server = new WS("wss://calckey.test/streaming"); - const stream = new Stream("https://calckey.test", { token: "TOKEN" }); + const server = new WS("wss://firefish.test/streaming"); + const stream = new Stream("https://firefish.test", { token: "TOKEN" }); const messagingChannelReceived: any[] = []; const messaging = stream.useChannel("messaging", { otherparty: "aaa" }); messaging.on("message", (payload) => { @@ -86,8 +86,8 @@ describe("Streaming", () => { }); test("ちゃんとチャンネルごとにidが異なる", async () => { - const server = new WS("wss://calckey.test/streaming"); - const stream = new Stream("https://calckey.test", { token: "TOKEN" }); + const server = new WS("wss://firefish.test/streaming"); + const stream = new Stream("https://firefish.test", { token: "TOKEN" }); stream.useChannel("messaging", { otherparty: "aaa" }); stream.useChannel("messaging", { otherparty: "bbb" }); @@ -111,8 +111,8 @@ describe("Streaming", () => { }); test("Connection#send", async () => { - const server = new WS("wss://calckey.test/streaming"); - const stream = new Stream("https://calckey.test", { token: "TOKEN" }); + const server = new WS("wss://firefish.test/streaming"); + const stream = new Stream("https://firefish.test", { token: "TOKEN" }); const messaging = stream.useChannel("messaging", { otherparty: "aaa" }); messaging.send("read", { id: "aaa" }); @@ -136,8 +136,8 @@ describe("Streaming", () => { }); test("Connection#dispose", async () => { - const server = new WS("wss://calckey.test/streaming"); - const stream = new Stream("https://calckey.test", { token: "TOKEN" }); + const server = new WS("wss://firefish.test/streaming"); + const stream = new Stream("https://firefish.test", { token: "TOKEN" }); const mainChannelReceived: any[] = []; const main = stream.useChannel("main"); main.on("meUpdated", (payload) => { diff --git a/packages/client/package.json b/packages/client/package.json index 2ec569381..2bf95db6c 100644 --- a/packages/client/package.json +++ b/packages/client/package.json @@ -32,7 +32,7 @@ "blurhash": "1.1.5", "broadcast-channel": "4.19.1", "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 6d858292a..958dafe9d 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 19b8ba526..50f390a49 100644 --- a/packages/client/src/components/MkAbuseReportWindow.vue +++ b/packages/client/src/components/MkAbuseReportWindow.vue @@ -41,7 +41,7 @@