From 249f5da2693a12777c19289995b76a5778970c75 Mon Sep 17 00:00:00 2001 From: warrows Date: Wed, 10 May 2023 12:28:50 +0200 Subject: [PATCH 01/81] Doc : Add apache2 basic configuration to documentation Signed-off-by: warrows --- README.md | 15 +++++++++++++-- calckey.apache.conf | 13 +++++++++++++ 2 files changed, 26 insertions(+), 2 deletions(-) create mode 100644 calckey.apache.conf diff --git a/README.md b/README.md index d8fd284679..902bd5feeb 100644 --- a/README.md +++ b/README.md @@ -138,13 +138,24 @@ psql postgres -c "create database calckey with encoding = 'UTF8';" For migrating from Misskey v13, Misskey v12, and Foundkey, read [this document](https://codeberg.org/calckey/calckey/src/branch/develop/docs/migrate.md). -## 🍀 NGINX +## Web proxy + +Choose between NGINX or Apache (we recommend NGINX) + +### 🍀 NGINX - Run `sudo cp ./calckey.nginx.conf /etc/nginx/sites-available/ && cd /etc/nginx/sites-available/` - Edit `calckey.nginx.conf` to reflect your instance properly - Run `sudo cp ./calckey.nginx.conf ../sites-enabled/` - Run `sudo nginx -t` to validate that the config is valid, then restart the NGINX service. +### Apache 2 + +- Run `sudo cp ./calckey.apache.conf /etc/apache2/sites-available/ && cd /etc/apache2/sites-available/` +- Edit `calckey.apache.conf` to reflect your instance properly +- Run `sudo a2ensite calckey.apache` to enable the site +- Run `sudo service apache2 restart` to reload apache2 configuration + ## 🚀 Build and launch! @@ -164,7 +175,7 @@ pm2 start "NODE_ENV=production pnpm run start" --name Calckey - 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. -- I'd recommend you use a S3 Bucket/CDN for Object Storage, especially if you use Docker. +- 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. - For translations, make a [DeepL](https://deepl.com) account and generate an API key, then put it into Control Panel > General > DeepL Translation. diff --git a/calckey.apache.conf b/calckey.apache.conf new file mode 100644 index 0000000000..b0c69d51df --- /dev/null +++ b/calckey.apache.conf @@ -0,0 +1,13 @@ +# Replace example.tld with your domain + + + ServerName example.tld + # For WebSocket + ProxyPass "/streaming" "ws://127.0.0.1:3000/streaming/" + # Proxy to Node + ProxyPass "/" "http://127.0.0.1:3000/" + ProxyPassReverse "/" "http://127.0.0.1:3000/" + ProxyPreserveHost On + # For files proxy + AllowEncodedSlashes On + \ No newline at end of file From 0fbae5f9ab2410c9859eb90a0a417d09f203d595 Mon Sep 17 00:00:00 2001 From: warrows Date: Wed, 10 May 2023 12:34:24 +0200 Subject: [PATCH 02/81] Doc : Tell admins to use a symoblic link instead of copying nginx conf Signed-off-by: warrows --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 902bd5feeb..55ce4f660d 100644 --- a/README.md +++ b/README.md @@ -146,7 +146,7 @@ Choose between NGINX or Apache (we recommend NGINX) - Run `sudo cp ./calckey.nginx.conf /etc/nginx/sites-available/ && cd /etc/nginx/sites-available/` - Edit `calckey.nginx.conf` to reflect your instance properly -- Run `sudo cp ./calckey.nginx.conf ../sites-enabled/` +- Run `sudo ln -s ./calckey.nginx.conf ../sites-enabled/calckey.nginx.conf` - Run `sudo nginx -t` to validate that the config is valid, then restart the NGINX service. ### Apache 2 From 6616f246a4eaef78f2ea6e81d13d5de001fce942 Mon Sep 17 00:00:00 2001 From: ThatOneCalculator Date: Wed, 10 May 2023 17:08:16 -0700 Subject: [PATCH 03/81] docs: cleanup apache --- README.md | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 55ce4f660d..68e2489b87 100644 --- a/README.md +++ b/README.md @@ -74,16 +74,14 @@ If you have access to a server that supports one of the sources below, I recomme - Install with [nvm](https://github.com/nvm-sh/nvm) - 🐘 At least [PostgreSQL](https://www.postgresql.org/) v12 - ðŸą At least [Redis](https://redis.io/) v6 (v7 recommend) +- Web Proxy (one of the following) + - 🍀 Nginx (recommended) + - ðŸŠķ Apache ### 😗 Optional dependencies - [FFmpeg](https://ffmpeg.org/) for video transcoding - [ElasticSearch](https://www.elastic.co/elasticsearch/) for full-text search - - OpenSearch/Sonic are not supported as of right now -- Management (choose one of the following) - - 🛰ïļ [pm2](https://pm2.io/) - - ðŸģ [Docker](https://docker.com) - - Service manager (systemd, openrc, etc) ### 🏗ïļ Build dependencies @@ -138,18 +136,16 @@ psql postgres -c "create database calckey with encoding = 'UTF8';" For migrating from Misskey v13, Misskey v12, and Foundkey, read [this document](https://codeberg.org/calckey/calckey/src/branch/develop/docs/migrate.md). -## Web proxy +## 🌐 Web proxy -Choose between NGINX or Apache (we recommend NGINX) - -### 🍀 NGINX +### 🍀 Nginx (recommended) - Run `sudo cp ./calckey.nginx.conf /etc/nginx/sites-available/ && cd /etc/nginx/sites-available/` - Edit `calckey.nginx.conf` to reflect your instance properly - Run `sudo ln -s ./calckey.nginx.conf ../sites-enabled/calckey.nginx.conf` - Run `sudo nginx -t` to validate that the config is valid, then restart the NGINX service. -### Apache 2 +### ðŸŠķ Apache - Run `sudo cp ./calckey.apache.conf /etc/apache2/sites-available/ && cd /etc/apache2/sites-available/` - Edit `calckey.apache.conf` to reflect your instance properly From eec54dd6f7febb8d9bed056caf6d9ceedc385738 Mon Sep 17 00:00:00 2001 From: ThatOneCalculator Date: Sun, 2 Jul 2023 15:17:58 -0700 Subject: [PATCH 04/81] ascii art --- packages/backend/src/boot/master.ts | 12 ++++++------ scripts/build-greet.js | 16 +++++++++------- 2 files changed, 15 insertions(+), 13 deletions(-) diff --git a/packages/backend/src/boot/master.ts b/packages/backend/src/boot/master.ts index bee8c8b0cd..9d124d1f05 100644 --- a/packages/backend/src/boot/master.ts +++ b/packages/backend/src/boot/master.ts @@ -29,7 +29,7 @@ const themeColor = chalk.hex("#31748f"); function greet() { if (!envOption.quiet) { - //#region Calckey logo + //#region Firefish logo const v = `v${meta.version}`; console.log(themeColor(" ___ _ _ ")); console.log(themeColor(" / __\\__ _| | ___| | _____ _ _ ")); @@ -40,7 +40,7 @@ function greet() { //#endregion console.log( - " Calckey is an open-source decentralized microblogging platform.", + " Firefish is an open-source decentralized microblogging platform.", ); console.log( chalk.rgb( @@ -48,7 +48,7 @@ function greet() { 136, 0, )( - " If you like Calckey, please consider starring or contributing to the repo. https://codeberg.org/calckey/calckey", + " If you like Firefish, please consider starring or contributing to the repo. https://codeberg.org/firefish/firefish", ), ); @@ -58,8 +58,8 @@ function greet() { ); } - bootLogger.info("Welcome to Calckey!"); - bootLogger.info(`Calckey v${meta.version}`, null, true); + bootLogger.info("Welcome to Firefish!"); + bootLogger.info(`Firefish v${meta.version}`, null, true); } /** @@ -81,7 +81,7 @@ export async function masterMain() { process.exit(1); } - bootLogger.succ("Calckey initialized"); + bootLogger.succ("Firefish initialized"); if (!envOption.disableClustering) { await spawnWorkers(config.clusterLimit); diff --git a/scripts/build-greet.js b/scripts/build-greet.js index 4b119b0c9f..6732330e99 100644 --- a/scripts/build-greet.js +++ b/scripts/build-greet.js @@ -1,14 +1,16 @@ const chalk = require("chalk"); const themeColor = chalk.hex("#31748f"); -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("█▄▄▄█ █▄▄▄█▄▄▄█ █▄█▄▄▄▄▄▄▄█▄▄▄█ █▄▄▄█▄▄▄▄▄▄▄█▄▄█ █▄▄█ ▀▄▄▄▄▄▄▀")); -console.log(" Currently building Calckey!"); + +console.log(" Currently building Firefish!"); console.log( chalk.rgb(255, 136, 0)(" Hang on for a moment, as this may take a while."), ); From 6da5a5b89b49393057f0ac78917e770bbf9d4304 Mon Sep 17 00:00:00 2001 From: ThatOneCalculator Date: Sun, 2 Jul 2023 15:18:30 -0700 Subject: [PATCH 05/81] find and replace --- .config/devenv.yml | 6 +- .config/docker_example.env | 6 +- .config/example.yml | 16 +- .config/helm_values_example.yml | 2 +- .woodpecker/dockerHubRelease.yml | 2 +- .woodpecker/dockerHubReleaseCandidate.yml | 2 +- .woodpecker/dockerHubTag.yml | 2 +- .woodpecker/testDocker.yml | 2 +- CODE_OF_CONDUCT.md | 2 +- CONTRIBUTING.md | 12 +- COPYING | 2 +- Dockerfile | 28 +- CALCKEY.md => FIREFISH.md | 8 +- README.md | 104 +- SECURITY.md | 4 +- chart/Chart.yaml | 4 +- chart/README.md | 68 +- chart/templates/NOTES.txt | 8 +- chart/templates/_helpers.tpl | 84 +- chart/templates/deployment.yaml | 14 +- chart/templates/hpa.yaml | 6 +- chart/templates/ingress.yaml | 4 +- chart/templates/job-db-migrate.yaml | 12 +- chart/templates/secret-config.yaml | 6 +- chart/templates/service.yaml | 6 +- chart/templates/serviceaccount.yaml | 4 +- chart/templates/tests/test-connection.yaml | 6 +- chart/values.yaml | 14 +- cliff.toml | 2 +- dev/docker-compose.yml.example | 12 +- docker-compose.yml | 12 +- docs/api-doc.md | 4 +- docs/development.md | 22 +- docs/docker.md | 16 +- docs/kubernetes.md | 26 +- docs/migrate.md | 20 +- flake.nix | 12 +- issue_template/bug.yaml | 20 +- issue_template/feature.yaml | 20 +- locales/ar-SA.yml | 10 +- locales/bn-BD.yml | 22 +- locales/ca-ES.yml | 48 +- locales/cs-CZ.yml | 8 +- locales/da-DK.yml | 4 +- locales/de-DE.yml | 48 +- locales/el-GR.yml | 10 +- locales/en-US.yml | 48 +- locales/es-ES.yml | 40 +- locales/fi.yml | 18 +- locales/fr-FR.yml | 34 +- locales/id-ID.yml | 32 +- locales/it-IT.yml | 30 +- locales/ja-JP.yml | 44 +- locales/ja-KS.yml | 2 +- locales/kn-IN.yml | 2 +- locales/ko-KR.yml | 6 +- locales/nl-NL.yml | 10 +- locales/pl-PL.yml | 44 +- locales/pt-PT.yml | 8 +- locales/pt_BR.yml | 4 +- locales/ro-RO.yml | 10 +- locales/ru-RU.yml | 34 +- locales/sk-SK.yml | 30 +- locales/sv-SE.yml | 4 +- locales/th-TH.yml | 24 +- locales/tr-TR.yml | 2 +- locales/uk-UA.yml | 26 +- locales/vi-VN.yml | 28 +- locales/zh-CN.yml | 16 +- locales/zh-TW.yml | 38 +- package.json | 4 +- packages/README.md | 4 +- packages/backend/assets/redoc.html | 2 +- .../migration/1557761316509-AddSomeUrls.js | 4 +- .../backend/migration/1658203170545calckey.js | 8 +- .../migration/1658981842728FixCalckey.js | 12 +- .../migration/1668831378728FixCalckeyAgain.js | 4 +- .../1671388343000-CalckeyRepoMove.js | 14 +- .../migration/1679269929000-fix-repo.js | 8 +- .../backend/native-utils/src/mastodon_api.rs | 4 +- .../native-utils/src/model/schema/app.rs | 2 +- packages/backend/package.json | 4 +- packages/backend/src/boot/index.ts | 4 +- packages/backend/src/boot/master.ts | 13 +- packages/backend/src/config/load.ts | 2 +- packages/backend/src/misc/fetch-meta.ts | 4 +- packages/backend/src/models/entities/meta.ts | 6 +- .../src/models/schema/federation-instance.ts | 4 +- packages/backend/src/models/schema/hashtag.ts | 2 +- .../src/queue/processors/webhook-deliver.ts | 8 +- .../src/remote/activitypub/models/image.ts | 4 +- .../src/remote/activitypub/models/note.ts | 6 +- .../src/remote/activitypub/models/person.ts | 8 +- packages/backend/src/server/api/endpoints.ts | 2 +- .../server/api/endpoints/latest-version.ts | 2 +- .../backend/src/server/api/endpoints/meta.ts | 6 +- .../src/server/api/endpoints/patrons.ts | 4 +- .../src/server/api/endpoints/release.ts | 2 +- .../mastodon/ApiMastodonCompatibleService.ts | 4 +- .../src/server/api/mastodon/converters.ts | 2 +- .../server/api/mastodon/endpoints/account.ts | 26 +- .../src/server/api/mastodon/endpoints/auth.ts | 2 +- .../server/api/mastodon/endpoints/filter.ts | 8 +- .../src/server/api/mastodon/endpoints/meta.ts | 10 +- .../api/mastodon/endpoints/notifications.ts | 6 +- .../server/api/mastodon/endpoints/search.ts | 4 +- .../server/api/mastodon/endpoints/status.ts | 34 +- .../server/api/mastodon/endpoints/timeline.ts | 26 +- .../src/server/api/openapi/gen-spec.ts | 6 +- .../backend/src/server/api/stream/index.ts | 2 +- packages/backend/src/server/index.ts | 2 +- packages/backend/src/server/nodeinfo.ts | 4 +- packages/backend/src/server/web/bios.css | 2 +- packages/backend/src/server/web/boot.js | 2 +- packages/backend/src/server/web/cli.css | 2 +- packages/backend/src/server/web/feed.ts | 2 +- packages/backend/src/server/web/manifest.json | 4 +- packages/backend/src/server/web/manifest.ts | 4 +- .../backend/src/server/web/views/base.pug | 12 +- .../backend/src/server/web/views/bios.pug | 6 +- packages/backend/src/server/web/views/cli.pug | 6 +- .../backend/src/server/web/views/flush.pug | 6 +- packages/backend/src/services/logger.ts | 2 +- packages/backend/test/mfm.ts | 26 +- packages/backend/test/utils.ts | 2 +- packages/calckey-js/README.md | 6 +- packages/calckey-js/etc/calckey-js.api.json | 1750 ++++++++--------- packages/calckey-js/etc/calckey-js.api.md | 2 +- .../calckey-js/markdown/calckey-js.acct.md | 2 +- .../calckey-js.api.apiclient._constructor_.md | 4 +- .../calckey-js.api.apiclient.credential.md | 2 +- .../calckey-js.api.apiclient.fetch.md | 2 +- .../markdown/calckey-js.api.apiclient.md | 12 +- .../calckey-js.api.apiclient.origin.md | 2 +- .../calckey-js.api.apiclient.request.md | 4 +- .../markdown/calckey-js.api.apierror.md | 2 +- .../markdown/calckey-js.api.fetchlike.md | 2 +- .../markdown/calckey-js.api.isapierror.md | 4 +- .../calckey-js/markdown/calckey-js.api.md | 10 +- ...ckey-js.channelconnection._constructor_.md | 4 +- .../calckey-js.channelconnection.channel.md | 2 +- .../calckey-js.channelconnection.dispose.md | 2 +- .../calckey-js.channelconnection.id.md | 2 +- .../calckey-js.channelconnection.incount.md | 2 +- .../markdown/calckey-js.channelconnection.md | 20 +- .../calckey-js.channelconnection.name.md | 2 +- .../calckey-js.channelconnection.outcount.md | 2 +- .../calckey-js.channelconnection.send.md | 2 +- .../calckey-js.channelconnection.stream.md | 2 +- .../markdown/calckey-js.channels.md | 4 +- .../markdown/calckey-js.endpoints.md | 4 +- .../markdown/calckey-js.entities.ad.md | 2 +- .../calckey-js.entities.announcement.md | 4 +- .../markdown/calckey-js.entities.antenna.md | 4 +- .../markdown/calckey-js.entities.app.md | 2 +- .../calckey-js.entities.authsession.md | 4 +- .../markdown/calckey-js.entities.blocking.md | 4 +- .../markdown/calckey-js.entities.channel.md | 4 +- .../markdown/calckey-js.entities.clip.md | 2 +- .../calckey-js.entities.customemoji.md | 2 +- .../calckey-js.entities.datestring.md | 2 +- ...ey-js.entities.detailedinstancemetadata.md | 4 +- .../markdown/calckey-js.entities.drivefile.md | 4 +- .../calckey-js.entities.drivefolder.md | 2 +- .../markdown/calckey-js.entities.following.md | 4 +- ...-js.entities.followingfolloweepopulated.md | 4 +- ...-js.entities.followingfollowerpopulated.md | 4 +- .../calckey-js.entities.followrequest.md | 4 +- .../calckey-js.entities.gallerypost.md | 2 +- .../markdown/calckey-js.entities.id.md | 2 +- .../markdown/calckey-js.entities.instance.md | 4 +- .../calckey-js.entities.instancemetadata.md | 4 +- ...alckey-js.entities.liteinstancemetadata.md | 4 +- .../markdown/calckey-js.entities.md | 82 +- .../calckey-js.entities.medetailed.md | 4 +- .../calckey-js.entities.messagingmessage.md | 4 +- .../markdown/calckey-js.entities.note.md | 4 +- .../calckey-js.entities.notefavorite.md | 4 +- .../calckey-js.entities.notereaction.md | 4 +- .../calckey-js.entities.notification.md | 4 +- .../calckey-js.entities.origintype.md | 2 +- .../markdown/calckey-js.entities.page.md | 4 +- .../markdown/calckey-js.entities.pageevent.md | 4 +- .../calckey-js.entities.serverinfo.md | 2 +- .../markdown/calckey-js.entities.signin.md | 4 +- .../markdown/calckey-js.entities.stats.md | 2 +- .../markdown/calckey-js.entities.user.md | 4 +- .../calckey-js.entities.userdetailed.md | 4 +- .../markdown/calckey-js.entities.usergroup.md | 2 +- .../markdown/calckey-js.entities.userlist.md | 4 +- .../markdown/calckey-js.entities.userlite.md | 4 +- .../calckey-js.entities.usersorting.md | 2 +- .../markdown/calckey-js.ffvisibility.md | 2 +- packages/calckey-js/markdown/calckey-js.md | 28 +- .../markdown/calckey-js.mutednotereasons.md | 2 +- .../markdown/calckey-js.notevisibilities.md | 2 +- .../markdown/calckey-js.notificationtypes.md | 2 +- .../markdown/calckey-js.permissions.md | 2 +- .../calckey-js.stream._constructor_.md | 2 +- .../markdown/calckey-js.stream.close.md | 2 +- .../calckey-js.stream.disconnecttochannel.md | 2 +- .../calckey-js/markdown/calckey-js.stream.md | 18 +- ...alckey-js.stream.removesharedconnection.md | 2 +- ...ey-js.stream.removesharedconnectionpool.md | 2 +- .../markdown/calckey-js.stream.send.md | 2 +- .../markdown/calckey-js.stream.state.md | 2 +- .../markdown/calckey-js.stream.usechannel.md | 6 +- packages/calckey-js/markdown/index.md | 2 +- packages/calckey-js/package.json | 8 +- packages/calckey-js/test-d/api.ts | 6 +- packages/calckey-js/test-d/streaming.ts | 4 +- packages/calckey-js/test/api.ts | 28 +- packages/calckey-js/test/streaming.ts | 20 +- packages/client/package.json | 2 +- packages/client/src/account.ts | 2 +- .../src/components/MkAbuseReportWindow.vue | 2 +- .../client/src/components/MkChatPreview.vue | 2 +- .../client/src/components/MkCropperDialog.vue | 2 +- packages/client/src/components/MkCwButton.vue | 2 +- packages/client/src/components/MkDialog.vue | 2 +- .../client/src/components/MkDrive.file.vue | 2 +- .../client/src/components/MkDrive.folder.vue | 2 +- .../src/components/MkDrive.navFolder.vue | 2 +- packages/client/src/components/MkDrive.vue | 2 +- .../src/components/MkDriveFileThumbnail.vue | 2 +- .../src/components/MkDriveSelectDialog.vue | 2 +- .../client/src/components/MkDriveWindow.vue | 2 +- .../client/src/components/MkEmojiPicker.vue | 2 +- .../src/components/MkFeaturedPhotos.vue | 2 +- .../src/components/MkFileListForAdmin.vue | 2 +- .../client/src/components/MkFollowButton.vue | 2 +- .../client/src/components/MkImageViewer.vue | 2 +- .../src/components/MkInstanceCardMini.vue | 4 +- .../src/components/MkInstanceSelectDialog.vue | 2 +- .../src/components/MkInstanceTicker.vue | 2 +- .../client/src/components/MkMediaBanner.vue | 2 +- .../client/src/components/MkMediaImage.vue | 2 +- .../client/src/components/MkMediaList.vue | 2 +- .../client/src/components/MkMediaVideo.vue | 2 +- packages/client/src/components/MkNote.vue | 2 +- .../client/src/components/MkNoteDetailed.vue | 4 +- .../client/src/components/MkNoteHeader.vue | 2 +- .../client/src/components/MkNoteSimple.vue | 2 +- packages/client/src/components/MkNoteSub.vue | 2 +- .../client/src/components/MkNotification.vue | 2 +- .../MkNotificationSettingWindow.vue | 2 +- .../client/src/components/MkNotifications.vue | 2 +- .../client/src/components/MkPagination.vue | 2 +- packages/client/src/components/MkPoll.vue | 2 +- packages/client/src/components/MkPostForm.vue | 4 +- .../src/components/MkPostFormDialog.vue | 2 +- .../client/src/components/MkQuoteButton.vue | 2 +- .../client/src/components/MkReactedUsers.vue | 2 +- .../components/MkReactionsViewer.reaction.vue | 2 +- .../src/components/MkReactionsViewer.vue | 2 +- .../client/src/components/MkRenoteButton.vue | 2 +- packages/client/src/components/MkSample.vue | 8 +- packages/client/src/components/MkSignup.vue | 2 +- .../client/src/components/MkStarButton.vue | 2 +- .../src/components/MkStarButtonNoEmoji.vue | 2 +- .../src/components/MkSubNoteContent.vue | 2 +- .../src/components/MkTokenGenerateWindow.vue | 2 +- .../client/src/components/MkUserCardMini.vue | 2 +- packages/client/src/components/MkUserInfo.vue | 2 +- .../src/components/MkUserOnlineIndicator.vue | 2 +- .../client/src/components/MkUserPreview.vue | 4 +- .../src/components/MkUserSelectDialog.vue | 2 +- .../components/MkUserSelectLocalDialog.vue | 2 +- .../src/components/MkVisibilityPicker.vue | 2 +- .../client/src/components/global/MkAcct.vue | 2 +- .../client/src/components/global/MkAvatar.vue | 2 +- .../client/src/components/global/MkEmoji.vue | 2 +- .../src/components/global/MkUserName.vue | 2 +- packages/client/src/config.ts | 2 +- packages/client/src/filters/user.ts | 4 +- packages/client/src/init.ts | 4 +- packages/client/src/instance.ts | 2 +- packages/client/src/os.ts | 2 +- packages/client/src/pages/_error_.vue | 2 +- packages/client/src/pages/about-calckey.vue | 32 +- packages/client/src/pages/about.vue | 4 +- packages/client/src/pages/admin/files.vue | 2 +- packages/client/src/pages/admin/index.vue | 2 +- .../client/src/pages/admin/overview.user.vue | 2 +- packages/client/src/pages/api-console.vue | 2 +- packages/client/src/pages/clip.vue | 2 +- packages/client/src/pages/follow.vue | 2 +- packages/client/src/pages/instance-info.vue | 6 +- packages/client/src/pages/messaging/index.vue | 2 +- .../pages/messaging/messaging-room.form.vue | 2 +- .../messaging/messaging-room.message.vue | 2 +- .../src/pages/messaging/messaging-room.vue | 4 +- packages/client/src/pages/mfm-cheat-sheet.vue | 2 +- .../client/src/pages/my-antennas/editor.vue | 2 +- packages/client/src/pages/note.vue | 4 +- packages/client/src/pages/notifications.vue | 2 +- .../client/src/pages/settings/general.vue | 2 +- .../src/pages/settings/import-export.vue | 4 +- .../client/src/pages/settings/migration.vue | 2 +- .../src/pages/settings/notifications.vue | 2 +- packages/client/src/pages/share.vue | 6 +- packages/client/src/pages/user-info.vue | 2 +- packages/client/src/pages/user/clips.vue | 2 +- .../client/src/pages/user/follow-list.vue | 2 +- packages/client/src/pages/user/followers.vue | 4 +- packages/client/src/pages/user/following.vue | 4 +- packages/client/src/pages/user/gallery.vue | 2 +- packages/client/src/pages/user/home.vue | 2 +- .../client/src/pages/user/index.activity.vue | 2 +- .../client/src/pages/user/index.photos.vue | 2 +- .../client/src/pages/user/index.timeline.vue | 2 +- packages/client/src/pages/user/index.vue | 4 +- packages/client/src/pages/user/pages.vue | 2 +- packages/client/src/pages/user/reactions.vue | 2 +- .../client/src/pages/welcome.entrance.a.vue | 2 +- .../client/src/pages/welcome.entrance.b.vue | 2 +- .../client/src/pages/welcome.entrance.c.vue | 2 +- packages/client/src/pages/welcome.setup.vue | 2 +- packages/client/src/router.ts | 4 +- .../client/src/scripts/gen-search-query.ts | 2 +- packages/client/src/scripts/get-note-menu.ts | 2 +- .../client/src/scripts/get-note-summary.ts | 2 +- packages/client/src/scripts/get-user-menu.ts | 2 +- packages/client/src/scripts/helpMenu.ts | 4 +- packages/client/src/scripts/lookup-user.ts | 2 +- packages/client/src/scripts/page-metadata.ts | 2 +- packages/client/src/scripts/select-file.ts | 2 +- packages/client/src/scripts/upload.ts | 2 +- .../client/src/scripts/use-note-capture.ts | 2 +- packages/client/src/stream.ts | 2 +- packages/client/src/themes/_dark.json5 | 2 +- packages/client/src/themes/_light.json5 | 2 +- packages/client/src/types/menu.ts | 2 +- packages/client/src/ui/_common_/navbar.vue | 4 +- .../src/ui/_common_/statusbar-federation.vue | 2 +- .../src/ui/_common_/statusbar-user-list.vue | 2 +- packages/client/src/ui/deck/deck-store.ts | 2 +- packages/client/src/ui/universal.vue | 2 +- packages/client/src/ui/visitor/a.vue | 4 +- packages/client/src/ui/visitor/b.vue | 4 +- packages/client/src/ui/visitor/kanban.vue | 4 +- packages/client/vite.config.ts | 2 +- packages/sw/package.json | 2 +- packages/sw/src/filters/user.ts | 4 +- packages/sw/src/scripts/operations.ts | 2 +- packages/sw/src/types.ts | 2 +- packages/sw/webpack.config.js | 2 +- patrons.json | 70 +- pnpm-lock.yaml | 18 +- pnpm-workspace.yaml | 2 +- pull_request_template.yml | 6 +- rome.json | 2 +- scripts/clean-all.js | 4 +- scripts/clean.js | 2 +- 354 files changed, 2156 insertions(+), 2155 deletions(-) rename CALCKEY.md => FIREFISH.md (94%) diff --git a/.config/devenv.yml b/.config/devenv.yml index 6c60f338ae..65b819b569 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 fdd7e31088..25314d7edc 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 51d380e7e7..c743e2c58c 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 b600eb8aa9..5c86acca3e 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 bcb6df4904..77b1197dc0 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 48bd39525f..dd0d9354d8 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 5543ae2340..4ff3f05022 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 e3fdf0eb93..8c5e2cf9df 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 143c63d29c..4f215e8299 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 b75dc9f35f..b85a9360d5 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 fb483b5235..0f05a98cfc 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 e11cb2bf44..1d985954f2 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 5a8bbd8ff7..334d1bffb3 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 f66d14a324..add77b650a 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 848fa7cb7c..2f26af6b64 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 820c2313ae..3bcd2adeaa 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 1bcbd87537..235c3c5c6c 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 d3e4f2f208..e84ee93cf4 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 81009ed017..a7b4b9d328 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 9b0c60694d..ca63167632 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 4cdd2b6255..db19534a87 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 212c40e4b2..65caa43e89 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 e006aef3bd..1aedeab5b1 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 2dad134c56..9f683cfcd8 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 d46067a406..f49d9cd5d7 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 f269ad028b..d8db3a3ae2 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 b8db3d9a17..7abe03611a 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 84c0536e5d..3bb050441a 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 394b845774..44caf8030b 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 db235f7a7e..21779a57bf 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 abb1882ea5..720cb63271 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 4051144de1..04fbaffd44 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 6d6c0ea8d2..31e6bf9994 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 0c625a4b3d..b8a243a38a 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 5cb6e5d831..5ec6b46ad2 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 7e9653e70f..5a478c90a8 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 8553456ea1..60e2d54a25 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 d0c80d7534..5d7e5e8060 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 9797113276..703e633ece 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 7e97a99ebc..30a5918355 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 e3fbf8cb9b..64fba2512b 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 a269a0d008..85cd181e55 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 e6394f3ee6..7c639663f5 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 f0e6523ebb..3a17f60993 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 9e3a07654f..c3b7d0bab3 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 d444882b44..cb7fd98315 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 d493f332f5..1305cda332 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 0bd874f331..836eb8d46b 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 9646231f47..de25de03fe 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 5291d16932..fe1ac34fb6 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 17bebe99cf..50af141511 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 bdf7cab541..09848ed672 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 fa3c3f1cc1..20a10f0078 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 8a9b91486e..b05bb9c904 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 77614812e7..04b4ef6e2e 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 2c8e548bde..9e44438674 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 45bc36278a..c25db0d29a 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 571f6af951..0d7aa570e4 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 3e15beebba..1a2deecd6d 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 2cc22c86ab..cdfbca1467 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 ba51950e34..6ecbd89381 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 8b3e05a17e..b4274fbbe6 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 dce23d7558..8ff951c56d 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 6523ce068f..dea1853299 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 9666737ee2..cd318e0873 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 7dee4fd302..ef44f61f83 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 712c0fd03e..b2d32cb230 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 ddd79084fc..f1e6c2254e 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 6870571be8..17dc7c8a1e 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 c615bcdcc5..ec5e8b8c06 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 3408ce50f9..8437fd2230 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 7d7c03e0b5..75e38a4940 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 6f48c17660..403af4bbfa 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 9365643bb0..9839fe010b 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 95c3f05d3d..b2f67f56d1 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 1a0305538d..96dfd77ac3 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 c65dd54cd7..33db2b15a7 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 60550f0446..e11ddcb435 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 3571da4f51..2abcd71bb9 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 3016acd54f..c7720e1f7c 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 682b82ec07..e932f2f678 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 b584a56910..4be4ad51ae 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 e4f2ed7b1b..c78d888383 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 9d124d1f05..f670c6b111 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 9b8ee5edbb..2185cda118 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 b5426e31ae..b3a5e30ae4 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 dd3c5b3b72..6c7482406b 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 f793d40f62..7a8af7f51d 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 dacc515070..479ab88f92 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 0a54ae7d89..286b401ba7 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 b5eece0f6e..67652d57de 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 a3141e388a..391f669f3f 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 f8208e6d7b..c04b1c0c97 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 2cb3b30d10..311a196184 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 72e84ae044..1cf259c881 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 673a0266c8..552ff01954 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 353cba1dc0..63c4b78a25 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 e5ebbb79a6..a208d87c9d 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 df85f21624..6b74c57ea7 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 825d0f5183..7c56aed7cf 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 deb5dac309..2086623182 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 e2cfc47aff..70c3742929 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 c99031b0c7..d4ae2c3280 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 c68a09585f..02a37bf6c7 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 ac091855f4..62371227bf 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 e1aec3488b..dca3671952 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 a479140e08..52841f6895 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 b8ef0929ee..04cdadd5b8 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 683ffc6223..2ab1689c0a 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 e268b580f5..09f9b03a9d 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 95d570eb3d..346cd1890b 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 dbfb28ff6a..b4eb166f77 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 e79fc0657b..d6a1285e94 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 d3b7c3b823..5803349450 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 460a7b7f31..740a2aa1a2 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 9cbeb28ae1..a9a2734b5e 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 647a5d4371..7f70ac2c97 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 31acc42f6b..6ca9791ba0 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 91f4d6606f..49089fff2a 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 408ebb27b1..c310ddd5d8 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 2abd5ae950..08ae481acf 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 c3de247270..e9866587e5 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 86e1d10d32..146dae2ea8 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 ef02e64b91..1fc521c3db 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 f3f68b2609..79d622b54b 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 0aef8d6b0d..1d68cc7713 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 61ab4e2473..8cb56a2d70 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 bb441fef87..08a001de27 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 2535e0e9a8..6779aed150 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 ed4c03effc..f9af10bc40 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 2c14d244a3..323203aac1 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 c7108c23db..ee2ad9b8de 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 92dff826fa..077e8f2957 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 1f6a4be912..74eff2e1fd 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 a330011777..1d387fb33e 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 7927cfd895..7eb3bb2d80 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 9ec29fa2d5..8edc80de29 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 965bf9ce27..ea31e0c9fb 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 eee1920abc..c0dbed5355 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 65f7c3eee0..4705c06275 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 bbf36efced..71569bac51 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 847e7dfae4..d968d4ad98 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 b145ffa067..1f4f9896f4 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 b7ef319e2d..e53cecf6fd 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 0429baa805..68e77916e6 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 b364bdf844..77acd5ea58 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 e300757688..ec79be6339 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 2ee5c20159..75b869e866 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 2e1fc584c2..a36829797d 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 952a79f044..555047e3e0 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 c38a936836..4d2162d571 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 83bc86e489..9b3ef29e12 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 09d572a584..fba76c2279 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 7f05d15a82..c92eca8496 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 4f31281e37..bef377f53b 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 36ff409649..d43848ac31 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 6769b6475f..189692fb92 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 6f7d5f3b8f..002716f8e3 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 69607fb497..41979bc70a 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 834eb0ec22..4a0b1925b0 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 20204330cb..39a9873e56 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 920e0bca94..7629502d39 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 eec361a9b8..1393b5c63b 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 4d8c68e8bb..dbbefb1205 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 2c495d2fea..f5423fb876 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 f0000326a8..85ed36bf4b 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 6f9860af8c..50d28b5984 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 d7ff6bbef2..8fbd54b1c0 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 a079955a91..057366a8e4 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 bf6e7f2911..4cc166f980 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 7e0fb6cc6c..6b78533b0f 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 54e399e4ee..c7e6f8a44d 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 51d21efcc9..f1af7e7b35 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 a909f1f36a..260bb8a8a1 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 625722acbe..252f698e93 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 ab810b79a4..41869577ec 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 c648a7d053..0d17b96c7d 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 e61a826915..c5331fbbe0 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 c458b9ae73..c17614e363 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 9d8af4dff5..700aed0f1c 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 f00c0b915b..f0b6134189 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 3a24e45120..92fddd7946 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 f3cba25919..8ce209a3d2 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 9c2aadedc1..3c7e10980d 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 56d7f26ad3..8c67d7c083 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 1067e1a27d..36cce7da7c 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 663daaaf38..b3795a1355 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 cce30a85c9..839f0105a5 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 16bb9076bf..bffa8e9f01 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 6ba539c662..d049f0899e 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 157b7b48a2..0111a39a6a 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 54c3e9783f..be9ebb81d1 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 df08c489c7..9cee2dc387 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 1674ddd5a6..03e0519189 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 c518ae8704..537d897ce6 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 a18247abb1..c39e4075cc 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 01d9ae3524..49ae568d52 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 6adcb917c7..937a41de1e 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 c6ab764983..908972661d 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 222c4ae8ac..c37d8c0459 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 2403a0d5de..c3944ecc87 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 6c44402f56..91c8bb6508 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 b52ce862e3..cddf982fab 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 aa99153734..fd56dd287c 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 d8e03032d5..4defb4d187 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 82c2e3c3ed..4ad898f878 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 b3c4abbf7c..791ac17a35 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 73dd95deb3..0eebad9831 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 fdb253f454..68dcdb72cf 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 82dbae245c..39166879d8 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 f9c414da70..b1eb19e4ed 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 5de41e1ed1..d3f2ed436e 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 1a3a71374a..66f3c90b11 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 2ec569381d..2bf95db6c8 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 6d858292a5..958dafe9d0 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 19b8ba5264..50f390a499 100644 --- a/packages/client/src/components/MkAbuseReportWindow.vue +++ b/packages/client/src/components/MkAbuseReportWindow.vue @@ -41,7 +41,7 @@ diff --git a/packages/client/src/pages/about-firefish.vue b/packages/client/src/pages/about-firefish.vue new file mode 100644 index 0000000000..f95f9a9641 --- /dev/null +++ b/packages/client/src/pages/about-firefish.vue @@ -0,0 +1,306 @@ + + + + + diff --git a/packages/client/src/pages/about.vue b/packages/client/src/pages/about.vue index b3572d50b2..06436cde33 100644 --- a/packages/client/src/pages/about.vue +++ b/packages/client/src/pages/about.vue @@ -63,7 +63,7 @@ {{ - i18n.ts.aboutMisskey + i18n.ts.aboutFirefish }} @@ -102,7 +102,7 @@ > {{ - i18n.t("_aboutMisskey.donateHost", { + i18n.t("_aboutFirefish.donateHost", { host: $instance.name || host, }) }} diff --git a/packages/client/src/pages/messaging/index.vue b/packages/client/src/pages/messaging/index.vue index 59ef020941..111bf537c5 100644 --- a/packages/client/src/pages/messaging/index.vue +++ b/packages/client/src/pages/messaging/index.vue @@ -89,7 +89,7 @@ diff --git a/packages/client/src/components/MkContextMenu.vue b/packages/client/src/components/MkContextMenu.vue index a215477807..33506b96fd 100644 --- a/packages/client/src/components/MkContextMenu.vue +++ b/packages/client/src/components/MkContextMenu.vue @@ -57,15 +57,11 @@ onMounted(() => { rootEl.style.top = `${top}px`; rootEl.style.left = `${left}px`; - for (const el of Array.from(document.querySelectorAll("body *"))) { - el.addEventListener("mousedown", onMousedown); - } + document.body.addEventListener("mousedown", onMousedown); }); onBeforeUnmount(() => { - for (const el of Array.from(document.querySelectorAll("body *"))) { - el.removeEventListener("mousedown", onMousedown); - } + document.body.removeEventListener("mousedown", onMousedown); }); function onMousedown(evt: Event) { From 15ffb8cf405c1cda3695ec203e69f699fb0fecd4 Mon Sep 17 00:00:00 2001 From: Kainoa Kanter Date: Mon, 17 Jul 2023 05:31:34 +0000 Subject: [PATCH 16/81] =?UTF-8?q?feat:=20=E2=9C=A8=20verify=20links=20with?= =?UTF-8?q?=20rel=3Dme=20(#10506)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds Mastodon-style `rel=me` link verification, and creates a background job to verify said links Closes #9341 ![image](/attachments/861e01eb-660f-4c62-8d83-d824cb79da48) Co-authored-by: ThatOneCalculator Co-authored-by: Namekuji Reviewed-on: https://codeberg.org/calckey/calckey/pulls/10506 --- .gitignore | 3 +- CALCKEY.md | 2 +- locales/ar-SA.yml | 1 - locales/bn-BD.yml | 2 +- locales/ca-ES.yml | 4 +- locales/de-DE.yml | 2 +- locales/en-US.yml | 7 ++- locales/es-ES.yml | 2 +- locales/fr-FR.yml | 2 +- locales/id-ID.yml | 2 +- locales/it-IT.yml | 2 +- locales/ja-JP.yml | 2 +- locales/ko-KR.yml | 2 +- locales/pl-PL.yml | 2 +- locales/ru-RU.yml | 2 +- locales/sk-SK.yml | 2 +- locales/tr-TR.yml | 2 +- locales/uk-UA.yml | 2 +- locales/vi-VN.yml | 2 +- locales/zh-CN.yml | 2 +- locales/zh-TW.yml | 2 +- .../src/models/entities/user-profile.ts | 1 + packages/backend/src/queue/index.ts | 10 +++++ .../src/queue/processors/system/index.ts | 2 + .../queue/processors/system/verify-links.ts | 44 +++++++++++++++++++ .../src/server/api/endpoints/i/update.ts | 43 ++++++++++++++---- packages/backend/src/services/fetch-rel-me.ts | 33 ++++++++++++++ packages/calckey-js/src/entities.ts | 6 ++- .../client/src/pages/settings/profile.vue | 7 ++- packages/client/src/pages/user/home.vue | 13 ++++++ .../megalodon/src/misskey/entities/field.ts | 1 + 31 files changed, 176 insertions(+), 33 deletions(-) create mode 100644 packages/backend/src/queue/processors/system/verify-links.ts create mode 100644 packages/backend/src/services/fetch-rel-me.ts diff --git a/.gitignore b/.gitignore index 6bf2ea1b14..ce9e4f8a1e 100644 --- a/.gitignore +++ b/.gitignore @@ -27,7 +27,7 @@ coverage !/.config/helm_values_example.yml !/.config/LICENSE -#docker dev config +# docker dev config /dev/docker-compose.yml # misskey @@ -46,6 +46,7 @@ files ormconfig.json packages/backend/assets/instance.css packages/backend/assets/sounds/None.mp3 +packages/backend/assets/LICENSE !packages/backend/src/db diff --git a/CALCKEY.md b/CALCKEY.md index bb28e5bbf4..e561c3a5a6 100644 --- a/CALCKEY.md +++ b/CALCKEY.md @@ -16,7 +16,6 @@ ## Work in progress -- Link verification - Better Messaging UI - Better API Documentation - Remote follow button @@ -118,6 +117,7 @@ - Non-mangled unicode emojis - Skin tone selection support - [DragonflyDB](https://dragonflydb.io/) support as a Redis alternative +- Link verification ## Implemented (remote) diff --git a/locales/ar-SA.yml b/locales/ar-SA.yml index 7e97a99ebc..59dda2bcfa 100644 --- a/locales/ar-SA.yml +++ b/locales/ar-SA.yml @@ -1179,7 +1179,6 @@ _profile: youCanIncludeHashtags: "ŲŠŲ…ŲƒŲ†Ųƒ ØĢŲŠØķŲ‹Ø§ ØĨØķاŲØĐ ŲˆØģŲˆŲ… ØĨŲ„Ų‰ ØģŲŠØąØŠŲƒ اŲ„ØŠØđØąŲŠŲŲŠØĐ." metadata: "Ų…ØđŲ„ŲˆŲ…ا؊ ØĨØķاŲŲŠØĐ" metadataEdit: "ØđØŊŲ‘Ų„ اŲ„Ų…ØđŲ„ŲˆŲ…ا؊ اŲ„ØĨØķاŲŲŠØĐ" - metadataDescription: "ŲŠŲŲ…ŲƒŲ†Ųƒ ØđØąØķ 4 Ø­Ų‚ŲˆŲ„ Ų…ØđŲ„ŲˆŲ…ا؊ ŲŲŠ Ų…Ų„ŲŲƒ اŲ„ØīØŪØĩŲŠ" metadataLabel: "اŲ„ØŠØģŲ…ŲŠØĐ" metadataContent: "اŲ„Ų…ح؊ŲˆŲ‰" changeAvatar: "ØšŲŠŲ‘Øą اŲ„ØĩŲˆØąØĐ Ø§Ų„ØąŲ…ØēŲŠØĐ" diff --git a/locales/bn-BD.yml b/locales/bn-BD.yml index e3fbf8cb9b..2f37a02a2e 100644 --- a/locales/bn-BD.yml +++ b/locales/bn-BD.yml @@ -1268,7 +1268,7 @@ _profile: youCanIncludeHashtags: "āĶđā§āĶŊāĶūāĶķāĶŸā§āĶŊāĶūāĶ— āĶ…āĶĻā§āĶĪāĶ°ā§āĶ­ā§āĶ•ā§āĶĪ āĶ•āĶ°āĶū āĶŊā§‡āĶĪā§‡ āĶŠāĶūāĶ°ā§‡āĨĪ" metadata: "āĶ…āĶĪāĶŋāĶ°āĶŋāĶ•ā§āĶĪ āĶĪāĶĨā§āĶŊ" metadataEdit: "āĶ…āĶĪāĶŋāĶ°āĶŋāĶ•ā§āĶĪ āĶĪāĶĨā§āĶŊ āĶļāĶŪā§āĶŠāĶūāĶĶāĶĻāĶū āĶ•āĶ°ā§āĶĻ" - metadataDescription: "āĶ†āĶŠāĶĻāĶŋ āĶ†āĶŠāĶĻāĶūāĶ° āĶŠā§āĶ°ā§‹āĶŦāĶūāĶ‡āĶēā§‡ āĶāĶ•āĶŸāĶŋ āĶŸā§‡āĶŽāĶŋāĶē āĶđāĶŋāĶļāĶūāĶŽā§‡ āĶšāĶūāĶ°āĶŸāĶŋ āĶ…āĶĪāĶŋāĶ°āĶŋāĶ•ā§āĶĪ āĶĪāĶĨā§āĶŊ āĶĶā§‡āĶ–āĶūāĶĪā§‡ āĶŠāĶūāĶ°ā§‡āĶĻāĨĪ" + metadataDescription: "āĶ†āĶŠāĶĻāĶŋ āĶ†āĶŠāĶĻāĶūāĶ° āĶŠā§āĶ°ā§‹āĶŦāĶūāĶ‡āĶēā§‡ āĶāĶ•āĶŸāĶŋ āĶŸā§‡āĶŽāĶŋāĶē āĶđāĶŋāĶļāĶūāĶŽā§‡ āĶšāĶūāĶ°āĶŸāĶŋ āĶ…āĶĪāĶŋāĶ°āĶŋāĶ•ā§āĶĪ āĶĪāĶĨā§āĶŊ āĶĶā§‡āĶ–āĶūāĶĪā§‡ āĶŠāĶūāĶ°ā§‡āĶĻāĨĪ. āĶ†āĶŠāĶĻāĶŋ āĶ†āĶŠāĶĻāĶūāĶ° āĶŠā§āĶ°ā§‹āĶŦāĶūāĶ‡āĶēā§‡ āĶēāĶŋāĶ™ā§āĶ•āĶŸāĶŋ āĶŊāĶūāĶšāĶūāĶ‡ āĶ•āĶ°āĶĪā§‡ {rel} āĶāĶ° āĶļāĶūāĶĨā§‡ āĶāĶ•āĶŸāĶŋ {a} āĶŸā§āĶŊāĶūāĶ— āĶŽāĶū {l} āĶŸā§āĶŊāĶūāĶ— āĶŊā§‹āĶ— āĶ•āĶ°āĶĪā§‡ āĶŠāĶūāĶ°ā§‡āĶĻ!" metadataLabel: "āĶēā§‡āĶŽā§‡āĶē" metadataContent: "āĶŽāĶŋāĶ·āĶŊāĶžāĶŽāĶļā§āĶĪā§" changeAvatar: "āĶ…ā§āĶŊāĶūāĶ­āĶūāĶŸāĶūāĶ° āĶŠāĶ°āĶŋāĶŽāĶ°ā§āĶĪāĶĻ āĶ•āĶ°ā§āĶĻ" diff --git a/locales/ca-ES.yml b/locales/ca-ES.yml index 8fb57e8797..b4cf428526 100644 --- a/locales/ca-ES.yml +++ b/locales/ca-ES.yml @@ -409,8 +409,8 @@ _profile: locationDescription: Si primer introduÃŊu la vostra ciutat, es mostrarà l'hora local a altres usuaris. name: Nom - metadataDescription: Fent servir aixÃē, podràs mostrar camps d'informaciÃģ addicionals - al vostre perfil. + metadataDescription: "Fent servir aixÃē, podràs mostrar camps d'informaciÃģ addicionals + al vostre perfil. Podeu afegir una etiqueta {a} o una etiqueta {l} amb {rel} per verificar l'enllaç al vostre perfil." _exportOrImport: followingList: "Usuaris que segueixes" muteList: "Silencia" diff --git a/locales/de-DE.yml b/locales/de-DE.yml index 9e3a07654f..c2c89f15c0 100644 --- a/locales/de-DE.yml +++ b/locales/de-DE.yml @@ -1551,7 +1551,7 @@ _profile: metadata: "ZusÃĪtzliche Informationen" metadataEdit: "ZusÃĪtzliche Informationen bearbeiten" metadataDescription: "Hierdurch kannst du auf deinem Profil zusÃĪtzliche InformationsblÃķcke - anzeigen lassen." + anzeigen lassen. Sie kÃķnnen ein {a}-Tag oder ein {l}-Tag mit {rel} hinzufÞgen, um den Link in Ihrem Profil zu ÞberprÞfen!" metadataLabel: "Beschriftung" metadataContent: "Inhalt" changeAvatar: "Profilbild ÃĪndern" diff --git a/locales/en-US.yml b/locales/en-US.yml index 76bc5c24a9..eeafa6ffdc 100644 --- a/locales/en-US.yml +++ b/locales/en-US.yml @@ -1124,6 +1124,7 @@ remindMeLater: "Maybe later" removeQuote: "Remove quote" removeRecipient: "Remove recipient" removeMember: "Remove member" +verifiedLink: "Verified link" _sensitiveMediaDetection: description: "Reduces the effort of server moderation through automatically recognizing @@ -1676,8 +1677,10 @@ _profile: youCanIncludeHashtags: "You can also include hashtags in your bio." metadata: "Additional Information" metadataEdit: "Edit additional Information" - metadataDescription: "Using these, you can display additional information fields - in your profile." + metadataDescription: + "Using these, you can display additional information fields + in your profile. You can add an {a} tag or {l} tag with {rel} + to verify the link on your profile!" metadataLabel: "Label" metadataContent: "Content" changeAvatar: "Change avatar" diff --git a/locales/es-ES.yml b/locales/es-ES.yml index faf9ba2820..f5c0025056 100644 --- a/locales/es-ES.yml +++ b/locales/es-ES.yml @@ -1475,7 +1475,7 @@ _profile: youCanIncludeHashtags: "Puedes aÃąadir hashtags" metadata: "informaciÃģn adicional" metadataEdit: "Editar informaciÃģn adicional" - metadataDescription: "Muestra la informaciÃģn adicional en el perfil" + metadataDescription: "Muestra la informaciÃģn adicional en el perfil. ÂĄPuede agregar una etiqueta {a} o una etiqueta {l} con {rel} para verificar el enlace en su perfil!" metadataLabel: "Etiqueta" metadataContent: "Contenido" changeAvatar: "Cambiar avatar" diff --git a/locales/fr-FR.yml b/locales/fr-FR.yml index f81ef4520a..660be0347a 100644 --- a/locales/fr-FR.yml +++ b/locales/fr-FR.yml @@ -1413,7 +1413,7 @@ _profile: metadata: "Informations supplÃĐmentaires" metadataEdit: "Éditer les informations supplÃĐmentaires" metadataDescription: "Vous pouvez afficher jusqu'à quatre informations supplÃĐmentaires - dans votre profil." + dans votre profil. Vous pouvez ajouter une balise {a} ou une balise {l} avec {rel} pour vÃĐrifier le lien sur votre profil!" metadataLabel: "Étiquette" metadataContent: "Contenu" changeAvatar: "Changer l'image de profil" diff --git a/locales/id-ID.yml b/locales/id-ID.yml index 17bebe99cf..6aaa726dba 100644 --- a/locales/id-ID.yml +++ b/locales/id-ID.yml @@ -1399,7 +1399,7 @@ _profile: metadata: "Informasi tambahan" metadataEdit: "Sunting informasi tambahan" metadataDescription: "Kamu dapat menampilkan hingga 4 bagian informasi tambahan\ - \ ke dalam profilmu." + \ ke dalam profilmu. Anda dapat menambahkan tag {a} atau tag {l} dengan {rel} untuk memverifikasi tautan di profil Anda!" metadataLabel: "Label" metadataContent: "Isi" changeAvatar: "Ubah avatar" diff --git a/locales/it-IT.yml b/locales/it-IT.yml index bdf7cab541..93dd5fcf3c 100644 --- a/locales/it-IT.yml +++ b/locales/it-IT.yml @@ -1266,7 +1266,7 @@ _profile: metadata: "Informazioni aggiuntive" metadataEdit: "Modifica informazioni aggiuntive" metadataDescription: "Puoi pubblicare fino a quattro informazioni aggiuntive sul - profilo." + profilo. Puoi aggiungere un tag {a} o {l} con {rel} per verificare il link sul tuo profilo!" metadataLabel: "Etichetta" metadataContent: "Contenuto" changeAvatar: "Modifica immagine profilo" diff --git a/locales/ja-JP.yml b/locales/ja-JP.yml index 1043e35248..755afa8d3a 100644 --- a/locales/ja-JP.yml +++ b/locales/ja-JP.yml @@ -1491,7 +1491,7 @@ _profile: youCanIncludeHashtags: "ハッシãƒĨã‚ŋグをåŦめられãūす。" metadata: "čŋ―åŠ æƒ…å ą" metadataEdit: "čŋ―åŠ æƒ…å ąã‚’į·Ļ集" - metadataDescription: "プロフã‚ĢマãƒŦãŦčĄĻãĻしãĶčŋ―åŠ æƒ…å ąã‚’čĄĻįĪšã§ããūす。" + metadataDescription: "プロフã‚ĢマãƒŦãŦčĄĻãĻしãĶčŋ―åŠ æƒ…å ąã‚’čĄĻįĪšã§ããūす。{a}ã‚ŋグãūたãŊ{l}ã‚ŋグを{rel}ãĻãĻもãŦčŋ―加するãĻ、プロフã‚ĢマãƒŦãŪナãƒģã‚ŊをįĒščŠã§ããūす。" metadataLabel: "ãƒĐベãƒŦ" metadataContent: "内åŪđ" changeAvatar: "ã‚Ēバã‚ŋマį”ŧ像をåĪ‰æ›ī" diff --git a/locales/ko-KR.yml b/locales/ko-KR.yml index 2c8e548bde..459274166c 100644 --- a/locales/ko-KR.yml +++ b/locales/ko-KR.yml @@ -1319,7 +1319,7 @@ _profile: youCanIncludeHashtags: "í•īė‹œ 태ę·ļëĨž 폎í•Ļ할 ėˆ˜ ėžˆėŠĩ니ë‹Ī." metadata: "ėķ”ę°€ ė •ëģī" metadataEdit: "ėķ”ę°€ ė •ëģī íŽļė§‘" - metadataDescription: "프로필ė— ėķ”ę°€ ė •ëģīëĨž 표ė‹œí•  ėˆ˜ ėžˆė–īėš”" + metadataDescription: "프로필ė— ėķ”ę°€ ė •ëģīëĨž 표ė‹œí•  ėˆ˜ ėžˆė–īėš”. {rel}ęģž í•Ļęŧ˜ {a} 태ę·ļ 또는 {l} 태ę·ļëĨž ėķ”ę°€í•˜ė—Ž 프로필ė˜ 링큎ëĨž 확ėļ할 ėˆ˜ ėžˆėŠĩ니ë‹Ī!" metadataLabel: "띞ëēĻ" metadataContent: "ë‚īėšĐ" changeAvatar: "ė•„바타 ėīëŊļė§€ ëģ€ęē―" diff --git a/locales/pl-PL.yml b/locales/pl-PL.yml index 571f6af951..58624303c7 100644 --- a/locales/pl-PL.yml +++ b/locales/pl-PL.yml @@ -1404,7 +1404,7 @@ _profile: metadata: "Dodatkowe informacje" metadataEdit: "Edytuj dodatkowe informacje" metadataDescription: "MoÅžesz wyświetlać do czterech sekcji dodatkowych informacji - na swoim profilu." + na swoim profilu. MoÅžesz dodać tag {a} lub tag {l} z {rel}, aby zweryfikować link w swoim profilu!" metadataLabel: "Etykieta" metadataContent: "Treść" changeAvatar: "Zmień awatar" diff --git a/locales/ru-RU.yml b/locales/ru-RU.yml index bfef68d106..643a84eef0 100644 --- a/locales/ru-RU.yml +++ b/locales/ru-RU.yml @@ -1398,7 +1398,7 @@ _profile: youCanIncludeHashtags: "МÐūÐķÐĩŅ‚Ðĩ ÐļŅÐŋÐūÐŧŅŒÐ·ÐūÐēаŅ‚ŅŒ зÐīÐĩŅŅŒ Ņ…ŅŅˆŅ‚ÐĩÐģÐļ." metadata: "ДÐūÐŋÐūÐŧÐ―ÐļŅ‚ÐĩÐŧŅŒÐ―Ņ‹Ðĩ ŅÐēÐĩÐīÐĩÐ―ÐļŅ" metadataEdit: "РÐĩÐīаКŅ‚ÐļŅ€ÐūÐēаŅ‚ŅŒ ÐīÐūÐŋÐūÐŧÐ―ÐļŅ‚ÐĩÐŧŅŒÐ―Ņ‹Ðĩ ŅÐēÐĩÐīÐĩÐ―ÐļŅ" - metadataDescription: "МÐūÐķÐ―Ðū ÐīÐūÐąÐ°ÐēÐļŅ‚ŅŒ ÐīÐū Ņ‡ÐĩŅ‚Ņ‹Ņ€Ņ‘Ņ… ÐīÐūÐŋÐūÐŧÐ―ÐļŅ‚ÐĩÐŧŅŒÐ―Ņ‹Ņ… ÐģŅ€Ð°Ņ„ Ðē ÐŋŅ€ÐūŅ„ÐļÐŧŅŒ." + metadataDescription: "МÐūÐķÐ―Ðū ÐīÐūÐąÐ°ÐēÐļŅ‚ŅŒ ÐīÐū Ņ‡ÐĩŅ‚Ņ‹Ņ€Ņ‘Ņ… ÐīÐūÐŋÐūÐŧÐ―ÐļŅ‚ÐĩÐŧŅŒÐ―Ņ‹Ņ… ÐģŅ€Ð°Ņ„ Ðē ÐŋŅ€ÐūŅ„ÐļÐŧŅŒ. ВŅ‹ ОÐūÐķÐĩŅ‚Ðĩ ÐīÐūÐąÐ°ÐēÐļŅ‚ŅŒ Ņ‚ÐĩÐģ {a} ÐļÐŧÐļ Ņ‚ÐĩÐģ {l} Ņ {rel}, Ņ‡Ņ‚ÐūÐąŅ‹ ÐŋÐūÐīŅ‚ÐēÐĩŅ€ÐīÐļŅ‚ŅŒ ŅŅŅ‹ÐŧКŅƒ Ðē ŅÐēÐūÐĩО ÐŋŅ€ÐūŅ„ÐļÐŧÐĩ!" metadataLabel: "МÐĩŅ‚Ка" metadataContent: "ÐĄÐūÐīÐĩŅ€ÐķÐļОÐūÐĩ" changeAvatar: "ПÐūОÐĩÐ―ŅŅ‚ŅŒ аÐēаŅ‚аŅ€" diff --git a/locales/sk-SK.yml b/locales/sk-SK.yml index dce23d7558..046e67aec9 100644 --- a/locales/sk-SK.yml +++ b/locales/sk-SK.yml @@ -1337,7 +1337,7 @@ _profile: youCanIncludeHashtags: "Vo svojom bio mÃīÅūete maÅĨ aj hashtagy." metadata: "DodatočnÃĐ informÃĄcie" metadataEdit: "UpraviÅĨ dodatočnÃĐ informÃĄcie" - metadataDescription: "Vo svojom profile mÃīÅūete uviesÅĨ aÅū ÅĄtyri dodatočnÃĐ informačnÃĐ polia." + metadataDescription: "Vo svojom profile mÃīÅūete uviesÅĨ aÅū ÅĄtyri dodatočnÃĐ informačnÃĐ polia. Dodate lahko oznako {a} ali oznako {l} z {rel}, da preverite povezavo v svojem profile!" metadataLabel: "Popisok" metadataContent: "Obsah" changeAvatar: "ZmeniÅĨ avatara" diff --git a/locales/tr-TR.yml b/locales/tr-TR.yml index a3021221de..f73d693a80 100644 --- a/locales/tr-TR.yml +++ b/locales/tr-TR.yml @@ -182,7 +182,7 @@ _profile: gÃķsterecektir. youCanIncludeHashtags: HakkÄąmdan'da etiket kullanabilirsin. description: HakkÄąmda - metadataDescription: BunlarÄą kullanarak profilinizde ek bilgi alanlarÄą gÃķrÞntÞleyebilirsiniz. + metadataDescription: 'BunlarÄą kullanarak profilinizde ek bilgi alanlarÄą gÃķrÞntÞleyebilirsiniz. Profilinizdeki bağlantÄąyÄą doğrulamak için {rel} ile bir {a} etiketi veya {l} etiketi ekleyebilirsiniz!' metadata: Ek Bilgi metadataContent: İçerik metadataLabel: Etiket diff --git a/locales/uk-UA.yml b/locales/uk-UA.yml index 78aaf2bbd1..b182bf62dc 100644 --- a/locales/uk-UA.yml +++ b/locales/uk-UA.yml @@ -1277,7 +1277,7 @@ _profile: metadata: "ДÐūÐīаŅ‚КÐūÐēа Ņ–Ð―Ņ„ÐūŅ€ÐžÐ°Ņ†Ņ–Ņ" metadataEdit: "РÐĩÐīаÐģŅƒÐēаŅ‚Ðļ ÐīÐūÐīаŅ‚КÐūÐēŅƒ Ņ–Ð―Ņ„ÐūŅ€ÐžÐ°Ņ†Ņ–ŅŽ" metadataDescription: "ВÐļ ОÐūÐķÐĩŅ‚Ðĩ ÐēКазаŅ‚Ðļ ÐīÐū Ņ‡ÐūŅ‚ÐļŅ€ŅŒÐūŅ… ÐŋŅƒÐ―КŅ‚Ņ–Ðē ÐīÐūÐīаŅ‚КÐūÐēÐūŅ— Ņ–Ð―Ņ„ÐūŅ€ÐžÐ°Ņ†Ņ–Ņ— - Ņƒ ŅÐēÐūŅ”ОŅƒ ÐŋŅ€ÐūŅ„Ņ–ÐŧŅ–." + Ņƒ ŅÐēÐūŅ”ОŅƒ ÐŋŅ€ÐūŅ„Ņ–ÐŧŅ–. ВÐļ ОÐūÐķÐĩŅ‚Ðĩ ÐīÐūÐīаŅ‚Ðļ Ņ‚ÐĩÐģ {a} Ð°ÐąÐū {l} за ÐīÐūÐŋÐūОÐūÐģÐūŅŽ {rel}, Ņ‰ÐūÐą ÐŋŅ–ÐīŅ‚ÐēÐĩŅ€ÐīÐļŅ‚Ðļ ÐŋÐūŅÐļÐŧÐ°Ð―Ð―Ņ Ņƒ ŅÐēÐūŅ”ОŅƒ ÐŋŅ€ÐūŅ„Ņ–ÐŧŅ–!" metadataLabel: "НазÐēа" metadataContent: "ВОŅ–ŅŅ‚" changeAvatar: "ЗОŅ–Ð―ÐļŅ‚Ðļ аÐēаŅ‚аŅ€" diff --git a/locales/vi-VN.yml b/locales/vi-VN.yml index ddd79084fc..40b3909cec 100644 --- a/locales/vi-VN.yml +++ b/locales/vi-VN.yml @@ -1342,7 +1342,7 @@ _profile: youCanIncludeHashtags: "Bᚥn cÃģ tháŧƒ dÃđng hashtag trong tiáŧƒu sáŧ­." metadata: "ThÃīng tin báŧ• sung" metadataEdit: "Sáŧ­a thÃīng tin báŧ• sung" - metadataDescription: "Sáŧ­ dáŧĨng phᚧn này, bᚥn cÃģ tháŧƒ hiáŧƒn tháŧ‹ cÃĄc máŧĨc thÃīng tin báŧ• sung trong háŧ“ sÆĄ cáŧ§a mÃŽnh." + metadataDescription: "Sáŧ­ dáŧĨng phᚧn này, bᚥn cÃģ tháŧƒ hiáŧƒn tháŧ‹ cÃĄc máŧĨc thÃīng tin báŧ• sung trong háŧ“ sÆĄ cáŧ§a mÃŽnh. Bᚥn cÃģ tháŧƒ thÊm thášŧ {a} hoáš·c thášŧ {l} váŧ›i {rel} đáŧƒ xÃĄc minh liÊn kášŋt trÊn tiáŧƒu sáŧ­ cáŧ§a mÃŽnh!" metadataLabel: "NhÃĢn" metadataContent: "Náŧ™i dung" changeAvatar: "Đáŧ•i ášĢnh đṡi diáŧ‡n" diff --git a/locales/zh-CN.yml b/locales/zh-CN.yml index 36453551da..a0353e0ec8 100644 --- a/locales/zh-CN.yml +++ b/locales/zh-CN.yml @@ -1402,7 +1402,7 @@ _profile: youCanIncludeHashtags: "æ‚ĻåŊäŧĨ包åŦäļ€äļŠčŊéĒ˜æ ‡į­ū。" metadata: "附加äŋĄæŊ" metadataEdit: "附加äŋĄæŊįž–čū‘" - metadataDescription: "ä―ŋį”Ļčŋ™äš›ïžŒæ‚ĻåŊäŧĨåœĻæ‚Ļįš„äļŠäšščĩ„æ–™äļ­æ˜ūįĪšå…ķåŪƒäŋĄæŊ字æŪĩ。" + metadataDescription: "ä―ŋį”Ļčŋ™äš›ïžŒæ‚ĻåŊäŧĨåœĻæ‚Ļįš„äļŠäšščĩ„æ–™äļ­æ˜ūįĪšå…ķåŪƒäŋĄæŊ字æŪĩ。æ‚ĻåŊäŧĨæ·ŧ加åļĶ有 {rel} įš„ {a} 标į­ū或 {l} 标į­ūæĨ驌čŊæ‚ĻäļŠäšščĩ„æ–™äļŠįš„é“ūæŽĨ" metadataLabel: "标į­ū" metadataContent: "内åŪđ" changeAvatar: "äŋŪæ”đåĪī像" diff --git a/locales/zh-TW.yml b/locales/zh-TW.yml index d1bad4ad1d..2ea2c4a43c 100644 --- a/locales/zh-TW.yml +++ b/locales/zh-TW.yml @@ -1361,7 +1361,7 @@ _profile: youCanIncludeHashtags: "ä― äđŸåŊäŧĨåœĻ「關斞我」äļ­åŠ äļŠ #tag。" metadata: "é€ē階čģ‡čĻŠ" metadataEdit: "į·ĻčžŊé€ē階čģ‡čĻŠ" - metadataDescription: "åŊäŧĨåœĻ個䚚čģ‡æ–™äļ­äŧĨčĄĻæ žå―Ē垏éĄŊįĪšå…ķäŧ–čģ‡čĻŠã€‚" + metadataDescription: "åŊäŧĨåœĻ個䚚čģ‡æ–™äļ­äŧĨčĄĻæ žå―Ē垏éĄŊįĪšå…ķäŧ–čģ‡čĻŠã€‚æ‚ĻåŊäŧĨæ·ŧ加åļķ有 {rel} įš„ {a} æĻ™įąĪ或 {l} æĻ™įąĪäū†éЗ證æ‚Ļ個䚚čģ‡æ–™äļŠįš„鏈æŽĨ" metadataLabel: "æĻ™įąĪ" metadataContent: "内åŪđ" changeAvatar: "æ›ī換åĪ§é ­čēž" diff --git a/packages/backend/src/models/entities/user-profile.ts b/packages/backend/src/models/entities/user-profile.ts index 119eecdc73..002247d3a3 100644 --- a/packages/backend/src/models/entities/user-profile.ts +++ b/packages/backend/src/models/entities/user-profile.ts @@ -51,6 +51,7 @@ export class UserProfile { public fields: { name: string; value: string; + verified?: boolean; }[]; @Column("varchar", { diff --git a/packages/backend/src/queue/index.ts b/packages/backend/src/queue/index.ts index d7580a4f62..93aed7cb8b 100644 --- a/packages/backend/src/queue/index.ts +++ b/packages/backend/src/queue/index.ts @@ -576,6 +576,16 @@ export default function () { { removeOnComplete: true, removeOnFail: true }, ); + systemQueue.add( + "verifyLinks", + {}, + { + repeat: { cron: "0 0 * * 0" }, + removeOnComplete: true, + removeOnFail: true, + }, + ); + processSystemQueue(systemQueue); } diff --git a/packages/backend/src/queue/processors/system/index.ts b/packages/backend/src/queue/processors/system/index.ts index 53321de5f9..697d24d067 100644 --- a/packages/backend/src/queue/processors/system/index.ts +++ b/packages/backend/src/queue/processors/system/index.ts @@ -5,6 +5,7 @@ import { cleanCharts } from "./clean-charts.js"; import { checkExpiredMutings } from "./check-expired-mutings.js"; import { clean } from "./clean.js"; import { setLocalEmojiSizes } from "./local-emoji-size.js"; +import { verifyLinks } from "./verify-links.js"; const jobs = { tickCharts, @@ -13,6 +14,7 @@ const jobs = { checkExpiredMutings, clean, setLocalEmojiSizes, + verifyLinks, } as Record< string, | Bull.ProcessCallbackFunction> diff --git a/packages/backend/src/queue/processors/system/verify-links.ts b/packages/backend/src/queue/processors/system/verify-links.ts new file mode 100644 index 0000000000..3ddda9baf4 --- /dev/null +++ b/packages/backend/src/queue/processors/system/verify-links.ts @@ -0,0 +1,44 @@ +import type Bull from "bull"; + +import { UserProfiles } from "@/models/index.js"; +import { Not } from "typeorm"; +import { queueLogger } from "../../logger.js"; +import { verifyLink } from "@/services/fetch-rel-me.js"; +import config from "@/config/index.js"; + +const logger = queueLogger.createSubLogger("verify-links"); + +export async function verifyLinks( + job: Bull.Job>, + done: any, +): Promise { + logger.info("Verifying links..."); + + const usersToVerify = await UserProfiles.findBy({ + fields: Not(null), + userHost: "", + }); + for (const user of usersToVerify) { + for (const field of user.fields) { + if (!field || field.name === "" || field.value === "") { + continue; + } + if (field.value.startsWith("http") && user.user?.username) { + field.verified = await verifyLink(field.value, user.user.username); + } + } + if (user.fields.length > 0) { + try { + await UserProfiles.update(user.userId, { + fields: user.fields, + }); + } catch (e) { + logger.error(`Failed to update user ${user.userId} ${e}`); + done(e); + } + } + } + + logger.succ("All links successfully verified."); + done(); +} diff --git a/packages/backend/src/server/api/endpoints/i/update.ts b/packages/backend/src/server/api/endpoints/i/update.ts index 0637251a6b..6d3bde2b8d 100644 --- a/packages/backend/src/server/api/endpoints/i/update.ts +++ b/packages/backend/src/server/api/endpoints/i/update.ts @@ -12,7 +12,9 @@ import type { UserProfile } from "@/models/entities/user-profile.js"; import { notificationTypes } from "@/types.js"; import { normalizeForSearch } from "@/misc/normalize-for-search.js"; import { langmap } from "@/misc/langmap.js"; +import { verifyLink } from "@/services/fetch-rel-me.js"; import { ApiError } from "../../error.js"; +import config from "@/config/index.js"; import define from "../../define.js"; export const meta = { @@ -58,6 +60,18 @@ export const meta = { code: "INVALID_REGEXP", id: "0d786918-10df-41cd-8f33-8dec7d9a89a5", }, + + invalidFieldName: { + message: "Invalid field name.", + code: "INVALID_FIELD_NAME", + id: "8f81972e-8b53-4d30-b0d2-efb026dda673", + }, + + invalidFieldValue: { + message: "Invalid field value.", + code: "INVALID_FIELD_VALUE", + id: "aede7444-244b-11ee-be56-0242ac120002", + }, }, res: { @@ -234,16 +248,29 @@ export default define(meta, paramDef, async (ps, _user, token) => { } if (ps.fields) { + for (const field of ps.fields) { + if (!field || field.name === "" || field.value === "") { + continue; + } + if (typeof field.name !== "string" || field.name === "") { + throw new ApiError(meta.errors.invalidFieldName); + } + if (typeof field.value !== "string" || field.value === "") { + throw new ApiError(meta.errors.invalidFieldValue); + } + if (field.value.startsWith("http")) { + field.verified = await verifyLink(field.value, user.username); + } + } + profileUpdates.fields = ps.fields - .filter( - (x) => - typeof x.name === "string" && - x.name !== "" && - typeof x.value === "string" && - x.value !== "", - ) + .filter((x) => Object.keys(x).length !== 0) .map((x) => { - return { name: x.name, value: x.value }; + return { + name: x.name, + value: x.value, + verified: x.verified, + }; }); } diff --git a/packages/backend/src/services/fetch-rel-me.ts b/packages/backend/src/services/fetch-rel-me.ts new file mode 100644 index 0000000000..7b450c229c --- /dev/null +++ b/packages/backend/src/services/fetch-rel-me.ts @@ -0,0 +1,33 @@ +import { getHtml } from "@/misc/fetch.js"; +import { JSDOM } from "jsdom"; +import config from "@/config/index.js"; + +async function getRelMeLinks(url: string): Promise { + try { + const html = await getHtml(url); + const dom = new JSDOM(html); + const relMeLinks = [ + ...dom.window.document.querySelectorAll("a[rel='me']"), + ...dom.window.document.querySelectorAll("link[rel='me']"), + ].map((a) => (a as HTMLAnchorElement | HTMLLinkElement).href); + return relMeLinks; + } catch { + return []; + } +} + +export async function verifyLink(link: string, username: string): Promise { + let verified = false; + if (link.startsWith("http")) { + const relMeLinks = await getRelMeLinks(link); + verified = relMeLinks.some((href) => + new RegExp( + `^https?:\/\/${config.host.replace( + /[.*+\-?^${}()|[\]\\]/g, + "\\$&", + )}\/@${username.replace(/[.*+\-?^${}()|[\]\\]/g, "\\$&")}$`, + ).test(href), + ); + } + return verified; +} diff --git a/packages/calckey-js/src/entities.ts b/packages/calckey-js/src/entities.ts index 5a581a54cd..346830e0f7 100644 --- a/packages/calckey-js/src/entities.ts +++ b/packages/calckey-js/src/entities.ts @@ -38,7 +38,11 @@ export type UserDetailed = UserLite & { createdAt: DateString; description: string | null; ffVisibility: "public" | "followers" | "private"; - fields: { name: string; value: string }[]; + fields: { + name: string; + value: string; + verified?: boolean; + }[]; followersCount: number; followingCount: number; hasPendingFollowRequestFromYou: boolean; diff --git a/packages/client/src/pages/settings/profile.vue b/packages/client/src/pages/settings/profile.vue index 9b5a079f9f..04051d8a12 100644 --- a/packages/client/src/pages/settings/profile.vue +++ b/packages/client/src/pages/settings/profile.vue @@ -126,7 +126,11 @@ @@ -173,6 +177,7 @@ import { i18n } from "@/i18n"; import { $i } from "@/account"; import { langmap } from "@/scripts/langmap"; import { definePageMetadata } from "@/scripts/page-metadata"; +import { host } from "@/config"; const profile = reactive({ name: $i?.name, diff --git a/packages/client/src/pages/user/home.vue b/packages/client/src/pages/user/home.vue index 9d643c0b6f..9192d1691a 100644 --- a/packages/client/src/pages/user/home.vue +++ b/packages/client/src/pages/user/home.vue @@ -288,10 +288,17 @@
+ { margin-bottom: 8px; } + &.verified { + background-color: var(--hover); + border-radius: 10px; + color: var(--badge) !important; + } + > .name { width: 30%; overflow: hidden; diff --git a/packages/megalodon/src/misskey/entities/field.ts b/packages/megalodon/src/misskey/entities/field.ts index f56d21b63c..57a2eb43d9 100644 --- a/packages/megalodon/src/misskey/entities/field.ts +++ b/packages/megalodon/src/misskey/entities/field.ts @@ -2,5 +2,6 @@ namespace MisskeyEntity { export type Field = { name: string value: string + verified?: string } } From e399ed43e4193d8b14f8e769c7f8e7980f8c090a Mon Sep 17 00:00:00 2001 From: Xalis Ratt Date: Sun, 16 Jul 2023 09:53:16 +0000 Subject: [PATCH 17/81] chore: Translated using Weblate (Ukrainian) Currently translated at 100.0% (1831 of 1831 strings) Translation: Calckey/locales Translate-URL: https://hosted.weblate.org/projects/calckey/locales/uk/ --- locales/uk-UA.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/locales/uk-UA.yml b/locales/uk-UA.yml index 78aaf2bbd1..ee195ed1c0 100644 --- a/locales/uk-UA.yml +++ b/locales/uk-UA.yml @@ -1250,7 +1250,7 @@ _poll: _visibility: public: "ПŅƒÐąÐŧŅ–Ņ‡Ð―ÐļÐđ" publicDescription: "ВаŅˆ заÐŋÐļŅ ÐąŅƒÐīÐĩ ÐēÐļÐīÐ―Ðū Ðē ŅƒŅŅ–Ņ… ÐŋŅƒÐąÐŧŅ–Ņ‡Ð―ÐļŅ… ŅŅ‚Ņ€Ņ–Ņ‡ÐšÐ°Ņ…" - home: "ÐĄÐšŅ€ÐļŅ‚ÐļÐđ" + home: "ДÐūОаŅˆÐ―Ņ–Ðđ" homeDescription: "ЛÐļŅˆÐĩ Ð―Ð° ÐīÐūОаŅˆÐ―Ņ–Ðđ ŅŅ‚Ņ€Ņ–Ņ‡Ņ†Ņ–" followers: "ПŅ–ÐīÐŋÐļŅÐ―ÐļКÐļ" followersDescription: "ЗŅ€ÐūÐąÐļŅ‚Ðļ ÐēÐļÐīÐļОÐļО Ņ‚Ņ–ÐŧŅŒÐšÐļ ÐīÐŧŅ ÐēаŅˆÐļŅ… ÐŋŅ–ÐīÐŋÐļŅÐ―ÐļКŅ–Ðē Ņ– зÐģаÐīÐ°Ð―ÐļŅ… КÐūŅ€ÐļŅŅ‚ŅƒÐēаŅ‡Ņ–Ðē" From 5104c512832875a8daf5bd84310701715e206421 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=AA=A0=E8=AA=A0-ChengCheng?= Date: Sun, 16 Jul 2023 11:02:41 +0000 Subject: [PATCH 18/81] chore: Translated using Weblate (Chinese (Traditional)) Currently translated at 95.5% (1750 of 1831 strings) Translation: Calckey/locales Translate-URL: https://hosted.weblate.org/projects/calckey/locales/zh_Hant/ --- locales/zh-TW.yml | 44 ++++++++++++++++++++++++++++++++++++++------ 1 file changed, 38 insertions(+), 6 deletions(-) diff --git a/locales/zh-TW.yml b/locales/zh-TW.yml index d1bad4ad1d..cbc0a8202a 100644 --- a/locales/zh-TW.yml +++ b/locales/zh-TW.yml @@ -984,6 +984,12 @@ _aboutMisskey: donate: "čīŠåŠĐCalckey" morePatrons: "還有čĻąčĻąåĪšåĪšåđŦåŠĐ我們įš„å…ķäŧ–䚚非åļļæ„ŸčŽä― å€‘ã€‚ ðŸĨ°" patrons: "čīŠåŠĐ者" + patronsList: æŒ‰æ™‚é–“é †åšåˆ—å‡šïžŒč€Œäļæ˜Ŋ按čīŠåŠĐčĶæĻĄåˆ—凚。ä―ŋį”ĻäļŠéĒįš„é€ĢįĩčīŠåŠĐåœĻ這čĢĄįēåū—éĄŊįĪšæ‚Ļ名字įš„æĐŸæœƒïž + sponsors: Calckey čīŠåŠĐč€…å€‘ + donateTitle: čĶšåū— Calckey æĢ’å—Ž? + pleaseDonateToCalckey: čŦ‹č€ƒæ…Ū向 Calckey čīŠåŠĐäŧĨæ”Ŋ持å…ķį™žåą•ã€‚ + pleaseDonateToHost: 還čŦ‹č€ƒæ…Ū捐čīˆįĩĶæ‚ĻåœĻä―ŋį”Ļįš„䞚服å™Ļ {host}äŧĨæ”ŊæīéūåĪ§įš„運į‡ŸæˆæœŽã€‚ + donateHost: čīŠåŠĐįĩĶ {host} _nsfw: respect: "éšąč—æ•æ„Ÿå…§åŪđ" ignore: "äļéšąč—æ•æ„Ÿå…§åŪđ" @@ -1060,6 +1066,8 @@ _mfm: position: ä―į―Ū alwaysPlay: č‡Šå‹•æ’­æ”ū所有MFM動į•Ŧ positionDescription: 按指åŪšæ•ļ量į§ŧ動內åŪđ。 + advancedDescription: åĶ‚æžœįĶį”Ļ則僅允čĻąåŸšæœŽæĻ™čĻ˜ïžŒé™Ī非æ­ĢåœĻ播æ”ū MFM 動į•Ŧ + advanced: éŦ˜įīšMFM _instanceTicker: none: "隱藏" remote: "向遠įŦŊä―ŋį”Ļ者éĄŊįĪš" @@ -1202,14 +1210,14 @@ _tutorial: step1_1: "æ­ĄčŋŽïž" step1_2: "čŪ“æˆ‘å€‘æŠŠä― åŪ‰æŽ’åĨ―ã€‚ä― åūˆåŋŦå°ąæœƒå•Ÿå‹•äļĶé‹čĄŒïž" step2_1: "éĶ–先čŦ‹åŪŒæˆä― įš„個䚚čģ‡æ–™ã€‚" - step2_2: "通過提äū›äļ€äš›é—œæ–žä― č‡Šå·ąįš„čģ‡æ–™ïžŒå…ķäŧ–䚚會æ›īåŪđ易䚆č§Ģäŧ–們æ˜ŊåĶæƒģįœ‹åˆ°ä― įš„åļ–子或關æģĻä― ã€‚" + step2_2: "通過提äū›äļ€äš›é—œæ–žä― č‡Šå·ąįš„čģ‡æ–™ïžŒå…ķäŧ–䚚會æ›īåŪđ易䚆č§Ģäŧ–們æ˜ŊåĶæƒģįœ‹åˆ°ä― įš„čēžæ–‡æˆ–é—œæģĻä― ã€‚" step3_1: "įūåœĻæ˜Ŋ時候čŋ―éšĻäļ€äš›äššäš†ïž" step3_2: "ä― įš„äļŧ頁和įĪūäšĪ時間į·šæ˜ŊåŸšæ–žä― æ‰€čŋ―čđĪįš„䚚所äŧĨčĐĶč‘—å…ˆčŋ―čđĪåđū個åļģæˆķ。\néŧžæ“Šå€‹äšščģ‡æ–™åģäļŠč§’įš„åŠ č™Ÿåœˆå°ąåŊäŧĨ關æģĻåŪƒã€‚" step4_1: "čŪ“我們凚åŽŧæ‰ūä― ã€‚" step4_2: "對斞äŧ–們įš„įŽŽäļ€æĒäŋĄæŊïžŒæœ‰äš›äššå–œæ­Ąåš {introduction} 或äļ€å€‹į°Ąå–Ūįš„ \"hello world!\"" step5_1: "時間į·šïžŒåˆ°č™•éƒ―æ˜Ŋ時間į·šïž" step5_2: "æ‚Ļįš„䞚服å™Ļå·ē啟į”Ļ乆{timelines}個時間į·šã€‚" - step5_3: "éĶ–頁 {icon} 時間į·šæ˜ŊéĄŊįĪšä― čŋ―čđĪįš„åļģ號įš„åļ–子。" + step5_3: "éĶ–頁 {icon} 時間į·šæ˜ŊéĄŊįĪšä― čŋ―čđĪįš„åļģ號įš„čēžæ–‡ã€‚" step5_4: "朎地 {icon} 時間į·šæ˜Ŋä― åŊäŧĨįœ‹åˆ°äžšæœå™Ļäļ­æ‰€æœ‰å…ķäŧ–į”Ļæˆķįš„čēžæ–‡įš„時間į·šã€‚" step5_5: "įĪūäšĪ {icon} 時間į·šæ˜Ŋä― įš„ éĶ–頁時間į·š 和 朎地時間į·š įš„įĩåˆéŦ”。" step5_6: "æŽĻč–Ķ {icon} 時間į·šæ˜ŊéĄŊįĪšä― įš„䞚服å™ĻįŪĄį†å“ĄæŽĻč–Ķįš„čēžæ–‡ã€‚" @@ -1820,12 +1828,12 @@ _experiments: title: čĐĶéĐ—åŠŸčƒ― findOtherInstance: æ‰ūæ‰ūåĶäļ€å€‹äžšæœå™Ļ noGraze: į€čĶ―å™Ļæ“īåą• "Graze for Mastodon" æœƒčˆ‡Calckeyį™žį”ŸčĄįŠïžŒčŦ‹åœį”ĻčĐēæ“īåą•ã€‚ -userSaysSomethingReasonRenote: '{name} č―‰å‚ģ䚆包åŦ {reason} įš„åļ–子' +userSaysSomethingReasonRenote: '{name} č―‰å‚ģ䚆包åŦ {reason} įš„čēžæ–‡' pushNotificationNotSupported: ä― įš„į€čĶ―å™Ļ或䞚服å™Ļäļæ”ŊæīæŽĻ送通įŸĨ accessibility: 辔åŠĐåŠŸčƒ― -userSaysSomethingReasonReply: '{name} 回åūĐ䚆包åŦ {reason} įš„åļ–子' +userSaysSomethingReasonReply: '{name} 回čĶ†äš†åŒ…åŦ {reason} įš„čēžæ–‡' hiddenTags: 隱藏äļŧ題æĻ™įąĪ -indexPosts: įīĒåž•åļ–子 +indexPosts: įīĒåž•čēžæ–‡ indexNotice: įūåœĻ開始įīĒ垕。 這åŊčƒ―éœ€čĶäļ€æŪĩ時間čŦ‹äļčĶåœĻäļ€å€‹å°æ™‚å…§é‡å•Ÿä― įš„䞚服å™Ļ。 deleted: å·ē刊é™Ī editNote: į·ĻčžŊį­†čĻ˜ @@ -1861,9 +1869,33 @@ audio: éŸģčĻŠ sendPushNotificationReadMessageCaption: 包åŦ文朎 “{emptyPushNotificationMessage}” įš„通įŸĨ將éĄŊįĪšäļ€å°æŪĩ時間。 這åŊčƒ―æœƒåĒžåŠ æ‚ĻčĻ­å‚™įš„é›ŧæą ä―ŋį”Ļ量åĶ‚æžœéĐį”Ļ。 channelFederationWarn: é ŧé“åŠŸčƒ―å°šæœŠčˆ‡čŊé‚ĶåŪ‡åŪ™é€Ģ動 -swipeOnMobile: 允čĻąåœĻ頁éĒäđ‹é–“æŧ‘å‹• +swipeOnMobile: 允čĻąäŧĨæŧ‘å‹•åœĻ頁éĒäđ‹é–“切換 sendPushNotificationReadMessage: 閱čŪ€į›ļ關通įŸĨ或æķˆæŊåūŒåˆŠé™ĪæŽĻ送通įŸĨ image: 圖į‰‡ seperateRenoteQuote: 分åˆĨįĻįŦ‹įš„č―‰å‚ģ及垕į”Ļ按鈕 clipsDesc: æ‘˜éŒ„å°ąåƒäļ€å€‹åŊäŧĨ分äšŦįš„æ›ļįąĪ。 ä― åŊäŧĨåūžæŊå€‹čēžæ–‡įš„čœå–Ūå‰ĩåŧšæ–°æ‘˜éŒ„或將čēžæ–‡åŠ å…Ĩå·ē有įš„摘錄。 noteId: čēžæ–‡ ID +sendModMail: į™žé€åŊĐæ ļ通įŸĨ +enableIdenticonGeneration: 啟į”ĻįĒŽį‰‡į”Ÿæˆ +enableServerMachineStats: 啟į”Ļ䞚服å™ĻįĄŽéŦ”įĩąčĻˆčģ‡čĻŠ +reactionPickerSkinTone: éĶ–éļčĄĻ情įŽĶ號膚č‰ē +indexFromDescription: į•™įĐšäŧĨįīĒåž•æŊå€‹čēžæ–‡ +preventAiLearning: é˜ēæ­Ē AI æПå™Ļ䚚抓取 +preventAiLearningDescription: čŦ‹æą‚įŽŽäļ‰æ–đ AI 詞čĻ€æĻĄåž‹äļčĶį ”įĐķæ‚ĻäļŠå‚ģįš„å…§åŪđäū‹åĶ‚čēžæ–‡å’Œåœ–像。 +indexFrom: åūžčēžæ–‡ ID 開始įš„įīĒåž• +isLocked: čĐēåļģæˆķå·ēįēåū—äŧĨäļ‹æ‰đ准 +isModerator: æŋäļŧ +isAdmin: įŪĄį†å“Ą +isPatron: Calckey 項į›ŪčīŠåŠĐ者 +silencedWarning: éĄŊįĪšæ­Ī頁éĒæ˜Ŋ因į‚šé€™äš›ä―ŋį”Ļ者äū†č‡Šæ‚Ļ䞚服å™ĻįŪĄį†å“Ąå·ē靜éŸģįš„䞚服å™Ļ因æ­Īäŧ–們åŊčƒ―æ˜Ŋ垃åœūčĻŠæŊ。 +signupsDisabled: čĐē䞚服å™ĻäļŠįš„čĻŧ冊į•ķ前å·ēčĒŦįĶį”ĻïžŒä―†æ‚ĻéšĻ時åŊäŧĨåœĻåĶäļ€å°äžšæœå™ĻäļŠčĻŧ冊或æ˜Ŋæ‚Ļ有čĐē䞚服å™Ļįš„é‚€čŦ‹įĒžïžŒčŦ‹åœĻäļ‹éĒčžļå…Ĩ。 +showPopup: é€šéŽå―ˆå‡šåžčĶ–įŠ—通įŸĨį”Ļæˆķ +showWithSparkles: 閃閃į™žå…‰įš„éĄŊįĪš +youHaveUnreadAnnouncements: æ‚Ļ有朊čŪ€įš„å…Žå‘Š +donationLink: é€Ģįĩåˆ°čīŠåŠĐ頁éĒ +neverShow: äļå†éĄŊįĪš +remindMeLater: åŊčƒ―äđ‹åūŒ +removeQuote: 删é™Īåž•į”Ļ +removeRecipient: 刊é™Īæ”ķäŧķ者 +removeMember: 刊é™Īæˆå“Ą +isBot: æ­Īåļģæˆķæ˜ŊæПå™Ļäšš From 00d1c034d513e28ace63b0ce074c7bd04a846196 Mon Sep 17 00:00:00 2001 From: Syuilo Date: Sun, 16 Jul 2023 22:51:50 -0700 Subject: [PATCH 19/81] =?UTF-8?q?fix:=20=F0=9F=90=9B=20Scrolling=20Issue?= =?UTF-8?q?=20in=20Safari=20for=20Top=20and=20Bottom=20Bars?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/client/src/ui/deck.vue | 21 +++++++++++++++++++++ packages/client/src/ui/universal.vue | 21 +++++++++++++++++++++ 2 files changed, 42 insertions(+) diff --git a/packages/client/src/ui/deck.vue b/packages/client/src/ui/deck.vue index 6fdcfb28dd..9037ad1561 100644 --- a/packages/client/src/ui/deck.vue +++ b/packages/client/src/ui/deck.vue @@ -384,6 +384,27 @@ async function deleteProfile() { } + + + - - From aa24a3c172bfdc32bf1d6c8a5ba64ab911663a7e Mon Sep 17 00:00:00 2001 From: ThatOneCalculator Date: Wed, 19 Jul 2023 08:58:59 -0700 Subject: [PATCH 51/81] links --- CHANGELOG.md | 2 +- FIREFISH.md | 2 +- docs/migrate.md | 8 ++++---- .../backend/src/server/api/endpoints/patrons.ts | 2 +- .../backend/src/server/api/endpoints/release.ts | 2 +- release.json | 4 ++-- rename.sh | 13 ------------- 7 files changed, 10 insertions(+), 23 deletions(-) delete mode 100755 rename.sh diff --git a/CHANGELOG.md b/CHANGELOG.md index b9a998f627..c75d1f2479 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -All changes from v13.0.0 onwards, for a full list of differences read CALCKEY.md +All changes from v13.0.0 onwards, for a list of differences read FIREFISH.md ## [14.0.0-rc3] - 2023-06-24 diff --git a/FIREFISH.md b/FIREFISH.md index 92611af6b0..cd5f85ecbb 100644 --- a/FIREFISH.md +++ b/FIREFISH.md @@ -118,7 +118,7 @@ - Skin tone selection support - [DragonflyDB](https://dragonflydb.io/) support as a Redis alternative - Link verification -- Importing posts from other Calckey/Misskey/Mastodon/Akkoma/Pleroma instances +- Importing posts from other Firefish/Misskey/Mastodon/Akkoma/Pleroma instances ## Implemented (remote) diff --git a/docs/migrate.md b/docs/migrate.md index 329368fae0..005c911215 100644 --- a/docs/migrate.md +++ b/docs/migrate.md @@ -14,8 +14,8 @@ Tested with Misskey v13.11.3. If your Misskey v13 is older, we recommend updating your Misskey to v13.11.3. ```sh -wget -O mkv13.patch https://gitlab.prometheus.systems/firefish/firefish/raw/branch/develop/docs/mkv13.patch -wget -O mkv13_restore.patch https://gitlab.prometheus.systems/firefish/firefish/raw/branch/develop/docs/mkv13_restore.patch +wget -O mkv13.patch https://gitlab.prometheus.systems/firefish/firefish/-/raw/develop/docs/mkv13.patch +wget -O mkv13_restore.patch https://gitlab.prometheus.systems/firefish/firefish/-/raw/develop/docs/mkv13_restore.patch git apply mkv13.patch mkv13_restore.patch cd packages/backend @@ -33,7 +33,7 @@ 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://gitlab.prometheus.systems/firefish/firefish/raw/branch/develop/docs/renote_muting.patch +wget -O renote_muting.patch https://gitlab.prometheus.systems/firefish/firefish/-/raw/develop/docs/renote_muting.patch git apply renote_muting.patch pnpm install @@ -81,7 +81,7 @@ NODE_ENV=production pnpm run migrate ## FoundKey ```sh -wget -O fk.patch https://codeberg.org/calckey/calckey/raw/branch/develop/docs/fk.patch +wget -O fk.patch https://gitlab.prometheus.systems/firefish/firefish/-/raw/develop/docs/fk.patch git apply fk.patch cd packages/backend diff --git a/packages/backend/src/server/api/endpoints/patrons.ts b/packages/backend/src/server/api/endpoints/patrons.ts index 510fedcaef..b5feea20e8 100644 --- a/packages/backend/src/server/api/endpoints/patrons.ts +++ b/packages/backend/src/server/api/endpoints/patrons.ts @@ -36,7 +36,7 @@ export default define(meta, paramDef, async (ps) => { }; patrons = await fetch( - "https://gitlab.prometheus.systems/firefish/firefish/raw/branch/develop/patrons.json", + "https://gitlab.prometheus.systems/firefish/firefish/-/raw/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 9175110702..620bb23d69 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://gitlab.prometheus.systems/firefish/firefish/raw/branch/develop/release.json", + "https://gitlab.prometheus.systems/firefish/firefish/-/raw/develop/release.json", ) .then((response) => response.json()) .then((data) => { diff --git a/release.json b/release.json index 89f9752ffe..112dcc5769 100644 --- a/release.json +++ b/release.json @@ -1,5 +1,5 @@ { - "version": "13.1.3", - "notes": "This release candidate has the following changes:\nâ€Ē Better blocking/muting\nâ€Ē Better user refreshing\nâ€Ē New help menu with app list (More! > Help)\nâ€Ē New headerbar style\nâ€Ē Bug + security fixes and performance improvements", + "version": "1.0.0", + "notes": "Welcome to Firefish!", "screenshots": [] } diff --git a/rename.sh b/rename.sh deleted file mode 100755 index 5057bf1aa6..0000000000 --- a/rename.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/bash - -# Change directories -find . -type d -name '*calckey*' | while read dir; do - newdir=$(echo "$dir" | perl -pe 's/calckey/firefish/g') - mv "$dir" "$newdir" -done - -# Change files -find . -type f -name '*calckey*' | while read file; do - newfile=$(echo "$file" | perl -pe 's/calckey/firefish/g') - mv "$file" "$newfile" -done From 4ef22c0abf43b0e4fc765113fe504daa79ce2c33 Mon Sep 17 00:00:00 2001 From: ThatOneCalculator Date: Wed, 19 Jul 2023 09:33:02 -0700 Subject: [PATCH 52/81] pnpm 8.6.9 --- package.json | 2 +- pnpm-lock.yaml | 130 ++++++++++++++++++++++++------------------------- 2 files changed, 66 insertions(+), 66 deletions(-) diff --git a/package.json b/package.json index 8c29b5ba77..6c1e5c6743 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "type": "git", "url": "https://gitlab.prometheus.systems/firefish/firefish.git" }, - "packageManager": "pnpm@8.6.7", + "packageManager": "pnpm@8.6.9", "private": true, "scripts": { "rebuild": "pnpm run clean && pnpm node ./scripts/build-greet.js && pnpm -r --parallel run build && pnpm run gulp", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index d58f103d19..b4996f1057 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -156,9 +156,6 @@ importers: cacheable-lookup: specifier: 7.0.0 version: 7.0.0 - firefish-js: - specifier: workspace:* - version: link:../firefish-js cbor: specifier: 8.1.0 version: 8.1.0 @@ -198,6 +195,9 @@ importers: file-type: specifier: 17.1.6 version: 17.1.6 + firefish-js: + specifier: workspace:* + version: link:../firefish-js fluent-ffmpeg: specifier: 2.1.2 version: 2.1.2 @@ -618,65 +618,6 @@ importers: specifier: 5.1.1 version: 5.1.1 - packages/firefish-js: - dependencies: - eventemitter3: - specifier: ^4.0.7 - version: 4.0.7 - reconnecting-websocket: - specifier: ^4.4.0 - version: 4.4.0 - semver: - specifier: ^7.3.8 - version: 7.5.4 - optionalDependencies: - '@swc/core-android-arm64': - specifier: 1.3.11 - version: 1.3.11 - devDependencies: - '@microsoft/api-documenter': - specifier: ^7.22.21 - version: 7.22.21(@types/node@20.3.1) - '@microsoft/api-extractor': - specifier: ^7.36.0 - version: 7.36.0(@types/node@20.3.1) - '@swc/cli': - specifier: ^0.1.62 - version: 0.1.62(@swc/core@1.3.68)(chokidar@3.3.1) - '@swc/core': - specifier: ^1.3.62 - version: 1.3.68 - '@types/jest': - specifier: ^27.4.0 - version: 27.4.0 - '@types/node': - specifier: 20.3.1 - version: 20.3.1 - jest: - specifier: ^27.4.5 - version: 27.4.5(ts-node@10.4.0) - jest-fetch-mock: - specifier: ^3.0.3 - version: 3.0.3 - jest-websocket-mock: - specifier: ^2.2.1 - version: 2.2.1(mock-socket@9.0.8) - mock-socket: - specifier: ^9.0.8 - version: 9.0.8 - ts-jest: - specifier: ^27.1.2 - version: 27.1.2(@babel/core@7.22.9)(@types/jest@27.4.0)(jest@27.4.5)(typescript@5.1.3) - ts-node: - specifier: 10.4.0 - version: 10.4.0(@swc/core@1.3.68)(@types/node@20.3.1)(typescript@5.1.3) - tsd: - specifier: ^0.28.1 - version: 0.28.1 - typescript: - specifier: 5.1.3 - version: 5.1.3 - packages/client: devDependencies: '@discordapp/twemoji': @@ -757,9 +698,6 @@ importers: browser-image-resizer: specifier: github:misskey-dev/browser-image-resizer version: github.com/misskey-dev/browser-image-resizer/56f504427ad7f6500e141a6d9f3aee42023d7f3e - firefish-js: - specifier: workspace:* - version: link:../firefish-js chart.js: specifier: 4.3.0 version: 4.3.0 @@ -811,6 +749,9 @@ importers: fast-blurhash: specifier: ^1.1.2 version: 1.1.2 + firefish-js: + specifier: workspace:* + version: link:../firefish-js focus-trap: specifier: ^7.5.2 version: 7.5.2 @@ -944,6 +885,65 @@ importers: specifier: 2.0.0-alpha.2 version: 2.0.0-alpha.2(vue@3.3.4) + packages/firefish-js: + dependencies: + eventemitter3: + specifier: ^4.0.7 + version: 4.0.7 + reconnecting-websocket: + specifier: ^4.4.0 + version: 4.4.0 + semver: + specifier: ^7.3.8 + version: 7.5.4 + optionalDependencies: + '@swc/core-android-arm64': + specifier: 1.3.11 + version: 1.3.11 + devDependencies: + '@microsoft/api-documenter': + specifier: ^7.22.21 + version: 7.22.21(@types/node@20.3.1) + '@microsoft/api-extractor': + specifier: ^7.36.0 + version: 7.36.0(@types/node@20.3.1) + '@swc/cli': + specifier: ^0.1.62 + version: 0.1.62(@swc/core@1.3.68)(chokidar@3.3.1) + '@swc/core': + specifier: ^1.3.62 + version: 1.3.68 + '@types/jest': + specifier: ^27.4.0 + version: 27.4.0 + '@types/node': + specifier: 20.3.1 + version: 20.3.1 + jest: + specifier: ^27.4.5 + version: 27.4.5(ts-node@10.4.0) + jest-fetch-mock: + specifier: ^3.0.3 + version: 3.0.3 + jest-websocket-mock: + specifier: ^2.2.1 + version: 2.2.1(mock-socket@9.0.8) + mock-socket: + specifier: ^9.0.8 + version: 9.0.8 + ts-jest: + specifier: ^27.1.2 + version: 27.1.2(@babel/core@7.22.9)(@types/jest@27.4.0)(jest@27.4.5)(typescript@5.1.3) + ts-node: + specifier: 10.4.0 + version: 10.4.0(@swc/core@1.3.68)(@types/node@20.3.1)(typescript@5.1.3) + tsd: + specifier: ^0.28.1 + version: 0.28.1 + typescript: + specifier: 5.1.3 + version: 5.1.3 + packages/megalodon: dependencies: '@types/oauth': From 91033ab90a85fde66c2aa70d3399d13d6be6fbd4 Mon Sep 17 00:00:00 2001 From: ThatOneCalculator Date: Wed, 19 Jul 2023 09:37:11 -0700 Subject: [PATCH 53/81] fix: import --- packages/client/src/components/MkDialog.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/client/src/components/MkDialog.vue b/packages/client/src/components/MkDialog.vue index 2f51d3b1b2..9be70fa14a 100644 --- a/packages/client/src/components/MkDialog.vue +++ b/packages/client/src/components/MkDialog.vue @@ -200,7 +200,7 @@ - + From 8de79198a13df800bf2b3ce97c1952b50c27dce4 Mon Sep 17 00:00:00 2001 From: ThatOneCalculator Date: Thu, 20 Jul 2023 23:31:51 -0700 Subject: [PATCH 71/81] fix: :adhesive_bandage: version manifest assets based on instance version --- packages/backend/src/server/web/manifest.json | 12 ++++++------ packages/backend/src/server/web/manifest.ts | 8 +++++++- 2 files changed, 13 insertions(+), 7 deletions(-) diff --git a/packages/backend/src/server/web/manifest.json b/packages/backend/src/server/web/manifest.json index 54d2344c13..350710afea 100644 --- a/packages/backend/src/server/web/manifest.json +++ b/packages/backend/src/server/web/manifest.json @@ -9,25 +9,25 @@ "orientation": "portrait-primary", "icons": [ { - "src": "/static-assets/icons/192.png?v=2", + "src": "/static-assets/icons/192.png", "sizes": "192x192", "type": "image/png", "purpose": "any" }, { - "src": "/static-assets/icons/512.png?v=2", + "src": "/static-assets/icons/512.png", "sizes": "512x512", "type": "image/png", "purpose": "any" }, { - "src": "/static-assets/icons/maskable.png?v=2", + "src": "/static-assets/icons/maskable.png", "sizes": "512x512", "type": "image/png", "purpose": "maskable" }, { - "src": "/static-assets/icons/monochrome.png?v=2", + "src": "/static-assets/icons/monochrome.png", "sizes": "512x512", "type": "image/png", "purpose": "monochrome" @@ -43,14 +43,14 @@ }, "screenshots": [ { - "src": "/static-assets/screenshots/1.webp?v=2", + "src": "/static-assets/screenshots/1.webp", "sizes": "1080x2340", "type": "image/webp", "platform": "narrow", "label": "Profile page" }, { - "src": "/static-assets/screenshots/2.webp?v=2", + "src": "/static-assets/screenshots/2.webp", "sizes": "1080x2340", "type": "image/webp", "platform": "narrow", diff --git a/packages/backend/src/server/web/manifest.ts b/packages/backend/src/server/web/manifest.ts index 6ca9791ba0..9128ee5166 100644 --- a/packages/backend/src/server/web/manifest.ts +++ b/packages/backend/src/server/web/manifest.ts @@ -1,5 +1,6 @@ import type Koa from "koa"; import { fetchMeta } from "@/misc/fetch-meta.js"; +import config from "@/config/index.js"; import manifest from "./manifest.json" assert { type: "json" }; export const manifestHandler = async (ctx: Koa.Context) => { @@ -12,7 +13,12 @@ export const manifestHandler = async (ctx: Koa.Context) => { res.short_name = instance.name || "Firefish"; res.name = instance.name || "Firefish"; if (instance.themeColor) res.theme_color = instance.themeColor; - + for (const icon of res.icons) { + icon.src = `${icon.src}?v=${config.version.replace(/[^0-9]/g, '')}`; + } + for (const screenshot of res.screenshots) { + screenshot.src = `${screenshot.src}?v=${config.version.replace(/[^0-9]/g, '')}`; + } ctx.set("Cache-Control", "max-age=300"); ctx.body = res; }; From e35b38302d4394bb8e821e9590bcad641847c1e7 Mon Sep 17 00:00:00 2001 From: ThatOneCalculator Date: Fri, 21 Jul 2023 09:44:29 -0700 Subject: [PATCH 72/81] refactor: :recycle: new git repo for real this time --- FIREFISH.md | 4 ++-- README.md | 8 +++---- RELEASE_NOTES.md | 6 +++--- docs/migrate.md | 14 ++++++------- issue_template/bug.yaml | 8 +++---- issue_template/feature.yaml | 8 +++---- package.json | 4 ++-- .../migration/1689957674000-firefish-repo.js | 21 +++++++++++++++++++ packages/backend/src/boot/master.ts | 2 +- packages/backend/src/models/entities/meta.ts | 4 ++-- .../backend/src/server/api/endpoints/meta.ts | 4 ++-- .../src/server/api/endpoints/patrons.ts | 2 +- .../src/server/api/endpoints/release.ts | 2 +- .../src/server/api/openapi/gen-spec.ts | 4 ++-- .../backend/src/server/web/views/base.pug | 2 +- packages/client/src/pages/about-firefish.vue | 4 ++-- packages/client/src/pages/admin/index.vue | 2 +- packages/firefish-js/package.json | 2 +- pull_request_template.yml | 2 +- 19 files changed, 62 insertions(+), 41 deletions(-) create mode 100644 packages/backend/migration/1689957674000-firefish-repo.js diff --git a/FIREFISH.md b/FIREFISH.md index f1a4863cb8..322bee6a1d 100644 --- a/FIREFISH.md +++ b/FIREFISH.md @@ -1,7 +1,7 @@ # All the changes to Firefish from stock Misskey > **Warning** -> 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! +> This list is incomplete. Please check the [Releases](https://git.joinfirefish.org/firefish/firefish/releases) and [Changelog](https://git.joinfirefish.org/firefish/firefish/src/branch/develop/CHANGELOG.md) for a more complete list of changes. There have been [>4000 commits (laggy link)](https://git.joinfirefish.org/firefish/firefish/compare/700a7110f7e34f314b070987aa761c451ec34efc...develop) since we forked Misskey! ## Planned @@ -85,7 +85,7 @@ - Undo renote button inside original note - Custom locales - Obliteration of Ai-chan -- Switch to [Firefish.js](https://codeberg.org/firefish/firefish.js) +- Switch to [Firefish.js](https://git.joinfirefish.org/firefish/firefish.js) - Woozy mode ðŸĨī - Improve blocking servers - Release notes diff --git a/README.md b/README.md index 7143b76194..99369ad801 100644 --- a/README.md +++ b/README.md @@ -91,8 +91,8 @@ If you have access to a server that supports one of the sources below, I recomme ## ðŸ›ģïļ Containerization -- [ðŸģ 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) +- [ðŸģ How to run Firefish with Docker](https://git.joinfirefish.org/firefish/firefish/-/blob/develop/docs/docker.md) +- [🛞 How to run Firefish with Kubernetes/Helm](https://git.joinfirefish.org/firefish/firefish/-/blob/develop/docs/kubernetes.md) ## 🧑‍ðŸ’ŧ Dependencies @@ -128,7 +128,7 @@ 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/firefish/firefish.git +git clone https://git.joinfirefish.org/firefish/firefish.git cd firefish/ ``` @@ -219,7 +219,7 @@ Please don't use ElasticSearch unless you already have an ElasticSearch setup an ## 🚚 Migrating from Misskey/FoundKey to Firefish -For migrating from Misskey v13, Misskey v12, and FoundKey, read [this document](https://codeberg.org/firefish/firefish/src/branch/develop/docs/migrate.md). +For migrating from Misskey v13, Misskey v12, and FoundKey, read [this document](https://git.joinfirefish.org/firefish/firefish/-/blob/develop/docs/migrate.md). ## 🌐 Web proxy diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 840bf0ac74..6dfe9de20f 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -2,13 +2,13 @@ Welcome to the new era of FIREFISH! - + # Changelog ## Major changes from last release candidate -- Firefish branding and [new repo](https://codeberg.org/firefish/firefish)! +- Firefish branding and [new repo](https://git.joinfirefish.org/firefish/firefish)! - Far better Mastodon API support - Edits are now non-experimental - Support for secondary cache server @@ -64,7 +64,7 @@ All of the above, plus: ## Set new repo and pull ```sh -git remote set-url origin https://codeberg.org/firefish/firefish.git +git remote set-url origin https://git.joinfirefish.org/firefish/firefish.git git pull --ff ``` diff --git a/docs/migrate.md b/docs/migrate.md index 4420a74e7d..3ead14027d 100644 --- a/docs/migrate.md +++ b/docs/migrate.md @@ -14,8 +14,8 @@ Tested with Misskey v13.11.3. If your Misskey v13 is older, we recommend updating your Misskey to v13.11.3. ```sh -wget -O mkv13.patch https://codeberg.org/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 +wget -O mkv13.patch https://git.joinfirefish.org/firefish/firefish/-/raw/develop/docs/mkv13.patch +wget -O mkv13_restore.patch https://git.joinfirefish.org/firefish/firefish/-/raw/develop/docs/mkv13_restore.patch git apply mkv13.patch mkv13_restore.patch cd packages/backend @@ -27,13 +27,13 @@ for i in $(seq 1 $NUM_MIGRATIONS); do pnpm typeorm migration:revert -d ormconfig cd ../../ -git remote set-url origin https://codeberg.org/firefish/firefish.git +git remote set-url origin https://git.joinfirefish.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/firefish/firefish/raw/branch/develop/docs/renote_muting.patch +wget -O renote_muting.patch https://git.joinfirefish.org/firefish/firefish/-/raw/develop/docs/renote_muting.patch git apply renote_muting.patch pnpm install @@ -69,7 +69,7 @@ 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/firefish/firefish.git +git remote set-url origin https://git.joinfirefish.org/firefish/firefish.git git fetch git checkout main # or beta or develop git pull --ff @@ -81,7 +81,7 @@ NODE_ENV=production pnpm run migrate ## FoundKey ```sh -wget -O fk.patch https://codeberg.org/firefish/firefish/raw/branch/develop/docs/fk.patch +wget -O fk.patch https://git.joinfirefish.org/firefish/firefish/-/raw/develop/docs/fk.patch git apply fk.patch cd packages/backend @@ -92,7 +92,7 @@ for i in $(seq 1 $NUM_MIGRATIONS); do npx typeorm migration:revert -d ormconfig.js done -git remote set-url origin https://codeberg.org/firefish/firefish.git +git remote set-url origin https://git.joinfirefish.org/firefish/firefish.git git fetch git checkout main # or beta or develop git pull --ff diff --git a/issue_template/bug.yaml b/issue_template/bug.yaml index 5d7e5e8060..ec0fc11cbb 100644 --- a/issue_template/bug.yaml +++ b/issue_template/bug.yaml @@ -7,7 +7,7 @@ contact_links: url: https://matrix.to/#/%23firefish:matrix.fedibird.com about: Having trouble with deployment? Ask the support chat. - name: 🔒 Resposible Disclosure - url: https://codeberg.org/firefish/firefish/src/branch/develop/SECURITY.md + url: https://git.joinfirefish.org/firefish/firefish/src/branch/develop/SECURITY.md about: Found a security vulnerability? Please disclose it responsibly. body: - type: markdown @@ -15,8 +15,8 @@ body: value: | 💖 Thanks for taking the time to fill out this bug report! 💁 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) + 🔒 Found a security vulnerability? [Please disclose it responsibly.](https://git.joinfirefish.org/firefish/firefish/src/branch/develop/SECURITY.md) + ðŸĪ By submitting this issue, you agree to follow our [Contribution Guidelines.](https://git.joinfirefish.org/firefish/firefish/src/branch/develop/CONTRIBUTING.md) - type: textarea id: what-happened attributes: @@ -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/firefish/firefish/src/branch/develop/CONTRIBUTING.md) + description: By submitting this issue, you agree to follow our [Contribution Guidelines](https://git.joinfirefish.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 703e633ece..aee9b2cade 100644 --- a/issue_template/feature.yaml +++ b/issue_template/feature.yaml @@ -7,7 +7,7 @@ contact_links: url: https://matrix.to/#/%23firefish:matrix.fedibird.com about: Having trouble with deployment? Ask the support chat. - name: 🔒 Resposible Disclosure - url: https://codeberg.org/firefish/firefish/src/branch/develop/SECURITY.md + url: https://git.joinfirefish.org/firefish/firefish/src/branch/develop/SECURITY.md about: Found a security vulnerability? Please disclose it responsibly. body: - type: markdown @@ -15,8 +15,8 @@ body: value: | 💖 Thanks for taking the time to fill out this feature request! 💁 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) + 🔒 Found a security vulnerability? [Please disclose it responsibly.](https://git.joinfirefish.org/firefish/firefish/src/branch/develop/SECURITY.md) + ðŸĪ By submitting this issue, you agree to follow our [Contribution Guidelines.](https://git.joinfirefish.org/firefish/firefish/src/branch/develop/CONTRIBUTING.md) - type: textarea id: what-feature attributes: @@ -53,7 +53,7 @@ body: id: terms attributes: label: Contribution Guidelines - description: By submitting this issue, you agree to follow our [Contribution Guidelines](https://codeberg.org/firefish/firefish/src/branch/develop/CONTRIBUTING.md) + description: By submitting this issue, you agree to follow our [Contribution Guidelines](https://git.joinfirefish.org/firefish/firefish/src/branch/develop/CONTRIBUTING.md) options: - label: I agree to follow this project's Contribution Guidelines required: true diff --git a/package.json b/package.json index 108b8c89c8..797e97ed43 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,10 @@ { "name": "firefish", - "version": "1.0.2", + "version": "1.0.3", "codename": "aqua", "repository": { "type": "git", - "url": "https://codeberg.org/firefish/firefish.git" + "url": "https://git.joinfirefish.org/firefish/firefish.git" }, "packageManager": "pnpm@8.6.9", "private": true, diff --git a/packages/backend/migration/1689957674000-firefish-repo.js b/packages/backend/migration/1689957674000-firefish-repo.js new file mode 100644 index 0000000000..fb45538ddf --- /dev/null +++ b/packages/backend/migration/1689957674000-firefish-repo.js @@ -0,0 +1,21 @@ +export class FirefishRepo1689957674000 { + name = "FirefishRepo1689957674000"; + + async up(queryRunner) { + await queryRunner.query( + `UPDATE meta SET "repositoryUrl" = 'https://git.joinfirefish.org/firefish/firefish'`, + ); + await queryRunner.query( + `UPDATE meta SET "feedbackUrl" = 'https://git.joinfirefish.org/firefish/firefish/issues'`, + ); + } + + async down(queryRunner) { + await queryRunner.query( + `UPDATE meta SET "repositoryUrl" = 'https://codeberg.org/firefish/firefish'`, + ); + await queryRunner.query( + `UPDATE meta SET "feedbackUrl" = 'https://codeberg.org/firefish/firefish/issues'`, + ); + } +} diff --git a/packages/backend/src/boot/master.ts b/packages/backend/src/boot/master.ts index f670c6b111..25731b7e2b 100644 --- a/packages/backend/src/boot/master.ts +++ b/packages/backend/src/boot/master.ts @@ -49,7 +49,7 @@ function greet() { 136, 0, )( - " If you like Firefish, please consider starring or contributing to the repo. https://codeberg.org/firefish/firefish", + " If you like Firefish, please consider starring or contributing to the repo. https://git.joinfirefish.org/firefish/firefish", ), ); diff --git a/packages/backend/src/models/entities/meta.ts b/packages/backend/src/models/entities/meta.ts index 817d4c30bf..9fbe30449b 100644 --- a/packages/backend/src/models/entities/meta.ts +++ b/packages/backend/src/models/entities/meta.ts @@ -436,14 +436,14 @@ export class Meta { @Column("varchar", { length: 512, - default: "https://codeberg.org/firefish/firefish", + default: "https://git.joinfirefish.org/firefish/firefish", nullable: false, }) public repositoryUrl: string; @Column("varchar", { length: 512, - default: "https://codeberg.org/firefish/firefish/issues/new", + default: "https://git.joinfirefish.org/firefish/firefish/issues/new", nullable: true, }) public feedbackUrl: string | null; diff --git a/packages/backend/src/server/api/endpoints/meta.ts b/packages/backend/src/server/api/endpoints/meta.ts index 84a6988012..15a4d4d487 100644 --- a/packages/backend/src/server/api/endpoints/meta.ts +++ b/packages/backend/src/server/api/endpoints/meta.ts @@ -68,13 +68,13 @@ export const meta = { type: "string", optional: false, nullable: false, - default: "https://codeberg.org/firefish/firefish", + default: "https://git.joinfirefish.org/firefish/firefish", }, feedbackUrl: { type: "string", optional: false, nullable: false, - default: "https://codeberg.org/firefish/firefish/issues", + default: "https://git.joinfirefish.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 cd93b5e3d0..d4793e1b94 100644 --- a/packages/backend/src/server/api/endpoints/patrons.ts +++ b/packages/backend/src/server/api/endpoints/patrons.ts @@ -36,7 +36,7 @@ export default define(meta, paramDef, async (ps) => { }; patrons = await fetch( - "https://codeberg.org/firefish/firefish/raw/branch/develop/patrons.json", + "https://git.joinfirefish.org/firefish/firefish/-/raw/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 a208d87c9d..bce1bc082c 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/firefish/firefish/raw/branch/develop/release.json", + "https://git.joinfirefish.org/firefish/firefish/-/raw/develop/release.json", ) .then((response) => response.json()) .then((data) => { diff --git a/packages/backend/src/server/api/openapi/gen-spec.ts b/packages/backend/src/server/api/openapi/gen-spec.ts index 2ab1689c0a..ee14f249f0 100644 --- a/packages/backend/src/server/api/openapi/gen-spec.ts +++ b/packages/backend/src/server/api/openapi/gen-spec.ts @@ -15,7 +15,7 @@ export function genOpenapiSpec() { externalDocs: { description: "Repository", - url: "https://codeberg.org/firefish/firefish", + url: "https://git.joinfirefish.org/firefish/firefish", }, servers: [ @@ -106,7 +106,7 @@ export function genOpenapiSpec() { description: desc, externalDocs: { description: "Source code", - url: `https://codeberg.org/firefish/firefish/src/branch/develop/packages/backend/src/server/api/endpoints/${endpoint.name}.ts`, + url: `https://git.joinfirefish.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/web/views/base.pug b/packages/backend/src/server/web/views/base.pug index 14e660cb3c..ee8bdc790a 100644 --- a/packages/backend/src/server/web/views/base.pug +++ b/packages/backend/src/server/web/views/base.pug @@ -17,7 +17,7 @@ doctype html Thank you for using Firefish! If you are reading this message... how about joining the development? - https://codeberg.org/firefish/firefish + https://git.joinfirefish.org/firefish/firefish html diff --git a/packages/client/src/pages/about-firefish.vue b/packages/client/src/pages/about-firefish.vue index 0b001ff035..079f6f0d84 100644 --- a/packages/client/src/pages/about-firefish.vue +++ b/packages/client/src/pages/about-firefish.vue @@ -57,7 +57,7 @@