Merge branch 'rebrand' into develop

This commit is contained in:
ThatOneCalculator 2023-07-19 08:55:26 -07:00
commit 8422807031
No known key found for this signature in database
GPG key ID: 8703CACD01000000
446 changed files with 3137 additions and 3223 deletions

View file

@ -1,4 +1,4 @@
Copyright 2023 Calckey Copyright 2023 Firefish
Licensed under the Apache License, Version 2.0 (the "License"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.

View file

@ -1,5 +1,5 @@
#━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ #━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
# Calckey configuration # Firefish configuration
#━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ #━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
# ┌─────┐ # ┌─────┐

View file

@ -5,10 +5,10 @@ db:
host: 127.0.0.1 host: 127.0.0.1
port: 5432 port: 5432
db: calckey db: firefish
user: calckey user: firefish
pass: calckey pass: firefish
redis: redis:
host: localhost host: localhost

View file

@ -1,4 +1,4 @@
# db settings # db settings
POSTGRES_PASSWORD=example-calckey-pass POSTGRES_PASSWORD=example-firefish-pass
POSTGRES_USER=example-calckey-user POSTGRES_USER=example-firefish-user
POSTGRES_DB=calckey POSTGRES_DB=firefish

View file

@ -1,5 +1,5 @@
#━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ #━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
# Calckey configuration # Firefish configuration
#━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ #━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
# After starting your server, please don't change the URL! Doing so will break federation. # 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 └─────────────────────────────────── #───┘ 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/ ------------+ # +----- 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 # An encrypted connection with HTTPS is highly recommended
# because tokens may be transferred in GET requests. # 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 port: 3000
# ┌──────────────────────────┐ # ┌──────────────────────────┐
@ -37,11 +37,11 @@ db:
port: 5432 port: 5432
#ssl: false #ssl: false
# Database name # Database name
db: calckey db: firefish
# Auth # Auth
user: example-calckey-user user: example-firefish-user
pass: example-calckey-pass pass: example-firefish-pass
# Whether disable Caching queries # Whether disable Caching queries
#disableCache: true #disableCache: true
@ -200,7 +200,7 @@ reservedUsernames: [
#━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ #━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
# Congrats, you've reached the end of the config file needed for most deployments! # Congrats, you've reached the end of the config file needed for most deployments!
# Enjoy your Calckey server! # Enjoy your Firefish server!
#━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ #━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

View file

@ -8,7 +8,7 @@ resources:
cpu: 1 cpu: 1
memory: 1Gi memory: 1Gi
calckey: firefish:
domain: example.tld domain: example.tld
smtp: smtp:
from_address: noreply@example.tld from_address: noreply@example.tld

View file

@ -1,3 +1,3 @@
[weblate] [weblate]
url = https://hosted.weblate.org/api/ url = https://hosted.weblate.org/api/
translation = calckey/locales translation = firefish/locales

View file

@ -2,7 +2,7 @@ pipeline:
publish-docker-latest: publish-docker-latest:
image: plugins/kaniko image: plugins/kaniko
settings: settings:
repo: thatonecalculator/calckey repo: thatonecalculator/firefish
tags: latest tags: latest
dockerfile: Dockerfile dockerfile: Dockerfile
username: username:

View file

@ -2,7 +2,7 @@ pipeline:
publish-docker-latest: publish-docker-latest:
image: plugins/kaniko image: plugins/kaniko
settings: settings:
repo: thatonecalculator/calckey repo: thatonecalculator/firefish
tags: rc tags: rc
dockerfile: Dockerfile dockerfile: Dockerfile
username: username:

View file

@ -2,7 +2,7 @@ pipeline:
publish-docker-tag: publish-docker-tag:
image: plugins/kaniko image: plugins/kaniko
settings: settings:
repo: thatonecalculator/calckey repo: thatonecalculator/firefish
# Uses the tag from git for the container tag # Uses the tag from git for the container tag
tags: ${CI_COMMIT_TAG} tags: ${CI_COMMIT_TAG}
dockerfile: Dockerfile dockerfile: Dockerfile

View file

@ -2,7 +2,7 @@ pipeline:
docker-build: docker-build:
image: plugins/kaniko image: plugins/kaniko
settings: settings:
repo: thatonecalculator/calckey repo: thatonecalculator/firefish
tags: test tags: test
dockerfile: Dockerfile dockerfile: Dockerfile
no_push: true no_push: true

View file

@ -62,7 +62,7 @@ representative at an online or offline event.
Instances of abusive, harassing, or otherwise unacceptable behavior may be Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported to the community leaders responsible for enforcement at reported to the community leaders responsible for enforcement at
@thatonecalculator on Codeberg, @thatonecalculator on Codeberg,
`@kainoa@calckey.social` on the Fediverse, `@kainoa@firefish.social` on the Fediverse,
or kainoa@t1c.dev via email. or kainoa@t1c.dev via email.
All complaints will be reviewed and investigated promptly and fairly. All complaints will be reviewed and investigated promptly and fairly.

View file

@ -1,26 +1,26 @@
# Contribution guide # 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) ## 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. If your language is not listed in Weblate, please open an issue.
You can contribute without knowing how to code by helping translate here: 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 ## Roadmap
See [CALCKEY.md](./CALCKEY.md) See [FIREFISH.md](./FIREFISH.md)
## Issues ## Issues
Before creating an issue, please check the following: Before creating an issue, please check the following:
- To avoid duplication, please search for similar issues before creating a new issue. - To avoid duplication, please search for similar issues before creating a new issue.
- Do not use Issues to ask questions or troubleshooting. - Do not use Issues to ask questions or troubleshooting.
- Issues should only be used to feature requests, suggestions, and bug tracking. - 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** > **Warning**
> Do not close issues that are about to be resolved. It should remain open until a commit that actually resolves it is merged. > Do not close issues that are about to be resolved. It should remain open until a commit that actually resolves it is merged.

View file

@ -18,7 +18,7 @@ And are distributed under The Apache License, Version 2.0, you should have recei
--- ---
Calckey includes several third-party open-source softwares and software libraries. Firefish includes several third-party open-source softwares and software libraries.
RsaSignature2017 implementation by Transmute Industries Inc RsaSignature2017 implementation by Transmute Industries Inc
License: MIT License: MIT

View file

@ -1,6 +1,6 @@
## Install dev and compilation dependencies, build files ## Install dev and compilation dependencies, build files
FROM alpine:3.18 as build FROM alpine:3.18 as build
WORKDIR /calckey WORKDIR /firefish
# Install compilation dependencies # Install compilation dependencies
RUN apk add --no-cache --no-progress git alpine-sdk python3 nodejs-current npm rust cargo vips 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/ COPY packages/backend/native-utils/migration/src/lib.rs packages/backend/native-utils/migration/src/
# Install cargo dependencies # 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 only the dependency-related files first, to cache efficiently
COPY package.json pnpm*.yaml ./ COPY package.json pnpm*.yaml ./
COPY packages/backend/package.json packages/backend/package.json COPY packages/backend/package.json packages/backend/package.json
COPY packages/client/package.json packages/client/package.json COPY packages/client/package.json packages/client/package.json
COPY packages/sw/package.json packages/sw/package.json COPY packages/sw/package.json packages/sw/package.json
COPY packages/calckey-js/package.json packages/calckey-js/package.json COPY packages/firefish-js/package.json packages/firefish-js/package.json
COPY packages/megalodon/package.json packages/megalodon/package.json COPY packages/megalodon/package.json packages/megalodon/package.json
COPY packages/backend/native-utils/package.json packages/backend/native-utils/package.json COPY packages/backend/native-utils/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-x64-musl/package.json packages/backend/native-utils/npm/linux-x64-musl/package.json
@ -44,30 +44,30 @@ RUN pnpm i --prod --frozen-lockfile
## Runtime container ## Runtime container
FROM alpine:3.18 FROM alpine:3.18
WORKDIR /calckey WORKDIR /firefish
# Install runtime dependencies # Install runtime dependencies
RUN apk add --no-cache --no-progress tini ffmpeg vips-dev zip unzip nodejs-current RUN apk add --no-cache --no-progress tini ffmpeg vips-dev zip unzip nodejs-current
COPY . ./ COPY . ./
COPY --from=build /calckey/packages/megalodon /calckey/packages/megalodon COPY --from=build /firefish/packages/megalodon /firefish/packages/megalodon
# Copy node modules # Copy node modules
COPY --from=build /calckey/node_modules /calckey/node_modules COPY --from=build /firefish/node_modules /firefish/node_modules
COPY --from=build /calckey/packages/backend/node_modules /calckey/packages/backend/node_modules COPY --from=build /firefish/packages/backend/node_modules /firefish/packages/backend/node_modules
COPY --from=build /calckey/packages/sw/node_modules /calckey/packages/sw/node_modules COPY --from=build /firefish/packages/sw/node_modules /firefish/packages/sw/node_modules
COPY --from=build /calckey/packages/client/node_modules /calckey/packages/client/node_modules COPY --from=build /firefish/packages/client/node_modules /firefish/packages/client/node_modules
COPY --from=build /calckey/packages/calckey-js/node_modules /calckey/packages/calckey-js/node_modules COPY --from=build /firefish/packages/firefish-js/node_modules /firefish/packages/firefish-js/node_modules
# Copy the finished compiled files # Copy the finished compiled files
COPY --from=build /calckey/built /calckey/built COPY --from=build /firefish/built /firefish/built
COPY --from=build /calckey/packages/backend/built /calckey/packages/backend/built COPY --from=build /firefish/packages/backend/built /firefish/packages/backend/built
COPY --from=build /calckey/packages/backend/assets/instance.css /calckey/packages/backend/assets/instance.css COPY --from=build /firefish/packages/backend/assets/instance.css /firefish/packages/backend/assets/instance.css
COPY --from=build /calckey/packages/backend/native-utils/built /calckey/packages/backend/native-utils/built COPY --from=build /firefish/packages/backend/native-utils/built /firefish/packages/backend/native-utils/built
RUN corepack enable && corepack prepare pnpm@latest --activate RUN corepack enable && corepack prepare pnpm@latest --activate
ENV NODE_ENV=production ENV NODE_ENV=production
VOLUME "/calckey/files" VOLUME "/firefish/files"
ENTRYPOINT [ "/sbin/tini", "--" ] ENTRYPOINT [ "/sbin/tini", "--" ]
CMD [ "pnpm", "run", "migrateandstart" ] CMD [ "pnpm", "run", "migrateandstart" ]

View file

@ -1,7 +1,7 @@
# All the changes to Calckey from stock Misskey # All the changes to Firefish from stock Misskey
> **Warning** > **Warning**
> This list is incomplete. Please check the [Releases](https://codeberg.org/calckey/calckey/releases) and [Changelog](https://codeberg.org/calckey/calckey/src/branch/develop/CHANGELOG.md) for a more complete list of changes. There have been [>4000 commits (laggy link)](https://codeberg.org/calckey/calckey/compare/700a7110f7e34f314b070987aa761c451ec34efc...develop) since we forked Misskey! > This list is incomplete. Please check the [Releases](https://gitlab.prometheus.systems/firefish/firefish/releases) and [Changelog](https://gitlab.prometheus.systems/firefish/firefish/src/branch/develop/CHANGELOG.md) for a more complete list of changes. There have been [>4000 commits (laggy link)](https://gitlab.prometheus.systems/firefish/firefish/compare/700a7110f7e34f314b070987aa761c451ec34efc...develop) since we forked Misskey!
## Planned ## Planned
@ -85,7 +85,7 @@
- Undo renote button inside original note - Undo renote button inside original note
- Custom locales - Custom locales
- Obliteration of Ai-chan - Obliteration of Ai-chan
- Switch to [Calckey.js](https://codeberg.org/calckey/calckey.js) - Switch to [Firefish.js](https://gitlab.prometheus.systems/firefish/firefish.js)
- Woozy mode 🥴 - Woozy mode 🥴
- Improve blocking servers - Improve blocking servers
- Release notes - Release notes
@ -102,7 +102,7 @@
- Sonic search - Sonic search
- Popular color schemes, including Nord, Gruvbox, and Catppuccin - Popular color schemes, including Nord, Gruvbox, and Catppuccin
- Non-nyaify cat mode - 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 - Improve Classic mode
- Proper Helm/Kubernetes config - Proper Helm/Kubernetes config
- Multiple boost visibilities - Multiple boost visibilities

108
README.md
View file

@ -1,30 +1,30 @@
<div align="center"> <div align="center">
<a href="https://calckey.org/"> <a href="https://firefish.org/">
<img src="./title_float.svg" alt="Calckey logo" style="border-radius:50%" width="400"/> <img src="./title_float.svg" alt="Firefish logo" style="border-radius:50%" width="400"/>
</a> </a>
**🌎 **[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/) [![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) [![status badge](https://ci.codeberg.org/api/badges/firefish/firefish/status.svg)](https://ci.codeberg.org/firefish/firefish)
[![opencollective badge](https://opencollective.com/calckey/tiers/badge.svg)](https://opencollective.com/Calckey) [![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) [![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/) [![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/calckey?logo=docker)](https://hub.docker.com/r/thatonecalculator/calckey) [![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) [![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-2.1-4baaaa.svg)](./CODE_OF_CONDUCT.md)
[![Codeberg badge](https://custom-icon-badges.demolab.com/badge/hosted%20on-codeberg-4793CC.svg?logo=codeberg&logoColor=white)](https://codeberg.org/calckey/calckey/) [![Codeberg badge](https://custom-icon-badges.demolab.com/badge/hosted%20on-codeberg-4793CC.svg?logo=codeberg&logoColor=white)](https://gitlab.prometheus.systems/firefish/firefish/)
</div> </div>
<div> <div>
<img src="https://pool.jortage.com/voringme/misskey/e7cd2a17-8b23-4e1e-b5cf-709480c623e2.png" align="right" height="320px" alt="Calc (the Calckey mascot) smoking a fat dart"/> <img src="https://pool.jortage.com/voringme/misskey/e7cd2a17-8b23-4e1e-b5cf-709480c623e2.png" align="right" height="320px" alt="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! - 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!
- Calckey adds many quality of life changes and bug fixes for users and server admins alike. - Firefish 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. - Read **[this document](./FIREFISH.md)** all for current and future differences.
- Notable differences: - Notable differences:
- Improved UI/UX (especially on mobile) - Improved UI/UX (especially on mobile)
- Post editing - Post editing
@ -41,7 +41,7 @@
- Backfill user information - Backfill user information
- Advanced search - Advanced search
- Many more user and admin settings - Many more user and admin settings
- [So much more!](./CALCKEY.md) - [So much more!](./FIREFISH.md)
</div> </div>
@ -51,30 +51,30 @@
### Want to get involved? Great! ### 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 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! - 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://calckey.org/contact/) - 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 ### All links
- 🌐 Homepage: <https://calckey.org> - 🌐 Homepage: <https://firefish.org>
- 💸 Donations: - 💸 Donations:
- OpenCollective: <https://opencollective.com/Calckey> - OpenCollective: <https://opencollective.com/Firefish>
- Liberapay: <https://liberapay.com/ThatOneCalculator> - Liberapay: <https://liberapay.com/ThatOneCalculator>
- Donate publicly to get your name on the Patron list! - Donate publicly to get your name on the Patron list!
- 🚢 Flagship server: <https://calckey.social> - 🚢 Flagship server: <https://firefish.social>
- 💁 Matrix support room: <https://matrix.to/#/#calckey:matrix.fedibird.com> - 💁 Matrix support room: <https://matrix.to/#/#firefish:matrix.fedibird.com>
- 📣 Official account: <https://i.calckey.cloud/@calckey> - 📣 Official account: <https://i.firefish.cloud/@firefish>
- 📜 Server list: <https://calckey.org/join> - 📜 Server list: <https://firefish.org/join>
- ✍️ Weblate: <https://hosted.weblate.org/engage/calckey/> - ✍️ Weblate: <https://hosted.weblate.org/engage/firefish/>
- ️️📬 Contact: <https://calckey.org/contact/> - ️️📬 Contact: <https://firefish.org/contact/>
# 🌠 Getting started # 🌠 Getting started
Want to just join a Calckey server? View the list here, pick one, and join: Want to just join a Firefish server? View the list here, pick one, and join:
### https://calckey.org/join ### https://firefish.org/join
--- ---
@ -86,12 +86,12 @@ This guide will work for both **starting from scratch** and **migrating from Mis
If you have access to a server that supports one of the sources below, I recommend you use it! Note that these methods *won't* allow you to migrate from Misskey without manual intervention. 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 ## 🛳️ Containerization
- [🐳 How to run Calckey with Docker](https://codeberg.org/calckey/calckey/src/branch/develop/docs/docker.md) - [🐳 How to run Firefish with Docker](https://gitlab.prometheus.systems/firefish/firefish/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 Kubernetes/Helm](https://gitlab.prometheus.systems/firefish/firefish/src/branch/develop/docs/kubernetes.md)
## 🧑‍💻 Dependencies ## 🧑‍💻 Dependencies
@ -127,8 +127,8 @@ If you have access to a server that supports one of the sources below, I recomme
## 👀 Get folder ready ## 👀 Get folder ready
```sh ```sh
git clone https://codeberg.org/calckey/calckey.git git clone https://gitlab.prometheus.systems/firefish/firefish.git
cd calckey/ cd firefish/
``` ```
> **Note** > **Note**
@ -154,23 +154,23 @@ pm2 install pm2-logrotate
``` ```
> **Note** > **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 ## 🐘 Create database
In PostgreSQL (`psql`), run the following command: In PostgreSQL (`psql`), run the following command:
```sql ```sql
CREATE DATABASE calckey WITH encoding = 'UTF8'; CREATE DATABASE firefish WITH encoding = 'UTF8';
``` ```
or run the following from the command line: or run the following from the command line:
```sh ```sh
psql postgres -c "create database calckey with encoding = 'UTF8';" psql postgres -c "create database firefish with encoding = 'UTF8';"
``` ```
In Calckey's directory, fill out the `db` section of `.config/default.yml` with the correct information, where the `db` key is `calckey`. In Firefish's directory, fill out the `db` section of `.config/default.yml` with the correct information, where the `db` key is `firefish`.
## 💰 Caching server ## 💰 Caching server
@ -187,7 +187,7 @@ Follow sonic's [installation guide](https://github.com/valeriansaliou/sonic#inst
> **Note** > **Note**
> If you use IPv4: in Sonic's directory, edit the `config.cfg` file to change `inet` to `"0.0.0.0:1491"`. > 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 ### Meilisearch
@ -195,11 +195,11 @@ Meilisearch is better suited for larger deployments. It's faster but uses far mo
Follow Meilisearch's [quick start guide](https://www.meilisearch.com/docs/learn/getting_started/quick_start) 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 ### 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 ## 💅 Customize
@ -216,17 +216,17 @@ Please don't use ElasticSearch unless you already have an ElasticSearch setup an
- Edit `.config/default.yml`, making sure to fill out required fields. - 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. - Also copy and edit `.config/docker_example.env` to `.config/docker.env` if you're using Docker.
## 🚚 Migrating from Misskey/FoundKey to Calckey ## 🚚 Migrating from Misskey/FoundKey to Firefish
For migrating from Misskey v13, Misskey v12, and FoundKey, read [this document](https://codeberg.org/calckey/calckey/src/branch/develop/docs/migrate.md). For migrating from Misskey v13, Misskey v12, and FoundKey, read [this document](https://gitlab.prometheus.systems/firefish/firefish/src/branch/develop/docs/migrate.md).
## 🌐 Web proxy ## 🌐 Web proxy
### 🍀 Nginx (recommended) ### 🍀 Nginx (recommended)
- Run `sudo cp ./calckey.nginx.conf /etc/nginx/sites-available/ && cd /etc/nginx/sites-available/` - Run `sudo cp ./firefish.nginx.conf /etc/nginx/sites-available/ && cd /etc/nginx/sites-available/`
- Edit `calckey.nginx.conf` to reflect your server properly - Edit `firefish.nginx.conf` to reflect your server properly
- Run `sudo ln -s ./calckey.nginx.conf ../sites-enabled/calckey.nginx.conf` - 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. - Run `sudo nginx -t` to validate that the config is valid, then restart the NGINX service.
### 🦦 Caddy ### 🦦 Caddy
@ -242,29 +242,29 @@ example.tld {
### 🪶 Apache ### 🪶 Apache
> **Warning** > **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/` - Run `sudo cp ./firefish.apache.conf /etc/apache2/sites-available/ && cd /etc/apache2/sites-available/`
- Edit `calckey.apache.conf` to reflect your server properly - Edit `firefish.apache.conf` to reflect your server properly
- Run `sudo a2ensite calckey.apache` to enable the site - Run `sudo a2ensite firefish.apache` to enable the site
- Run `sudo service apache2 restart` to reload apache2 configuration - Run `sudo service apache2 restart` to reload apache2 configuration
## 🚀 Build and launch! ## 🚀 Build and launch!
### 🐢 NodeJS + pm2 ### 🐢 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 ```sh
# git pull # git pull
pnpm install pnpm install
NODE_ENV=production pnpm run build && pnpm run migrate 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 ## 😉 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. - 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 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. - 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 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. - 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 push notifications, run `npx web-push generate-vapid-keys`, then put the public and private keys into Control Panel > General > ServiceWorker.
@ -272,6 +272,6 @@ pm2 start "NODE_ENV=production pnpm run start" --name Calckey
- To add another admin account: - To add another admin account:
- Go to the user's page > 3 Dots > About > Moderation > turn on "Moderator" - 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 - 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) - Run `UPDATE "user" SET "isAdmin" = true WHERE id='999999';` (replace `999999` with the copied ID)
- Restart your Calckey server - Restart your Firefish server

View file

@ -2,7 +2,7 @@
## Minor Security Issues ## 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). email to [kainoa@t1c.dev](mailto:kainoa@t1c.dev).
## High Security Issues ## 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 This will allow us to assess the risk, and make a fix available before we add a
bug report to the Codeberg repository. bug report to the Codeberg repository.
Thanks for helping make Calckey safe for everyone. Thanks for helping make Firefish safe for everyone.

View file

@ -1,6 +1,6 @@
apiVersion: v2 apiVersion: v2
name: calckey name: firefish
description: A fun, new, open way to experience social media https://calckey.org description: A fun, new, open way to experience social media https://firefish.org
# A chart can be either an 'application' or a 'library' chart. # A chart can be either an 'application' or a 'library' chart.
# #

View file

@ -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) ![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 ## Requirements
@ -21,39 +21,39 @@ A fun, new, open way to experience social media https://calckey.org
| autoscaling.maxReplicas | int | `100` | | | autoscaling.maxReplicas | int | `100` | |
| autoscaling.minReplicas | int | `1` | | | autoscaling.minReplicas | int | `1` | |
| autoscaling.targetCPUUtilizationPercentage | int | `80` | | | autoscaling.targetCPUUtilizationPercentage | int | `80` | |
| calckey.allowedPrivateNetworks | list | `[]` | If you want to allow calckey to connect to private ips, enter the cidrs here. | | firefish.allowedPrivateNetworks | list | `[]` | If you want to allow firefish to connect to private ips, enter the cidrs here. |
| calckey.deepl.authKey | string | `""` | | | firefish.deepl.authKey | string | `""` | |
| calckey.deepl.isPro | bool | `false` | | | firefish.deepl.isPro | bool | `false` | |
| calckey.deepl.managed | bool | `false` | | | firefish.deepl.managed | bool | `false` | |
| calckey.domain | string | `"calckey.local"` | | | firefish.domain | string | `"firefish.local"` | |
| calckey.isManagedHosting | bool | `true` | | | firefish.isManagedHosting | bool | `true` | |
| calckey.libreTranslate.apiKey | string | `""` | | | firefish.libreTranslate.apiKey | string | `""` | |
| calckey.libreTranslate.apiUrl | string | `""` | | | firefish.libreTranslate.apiUrl | string | `""` | |
| calckey.libreTranslate.managed | bool | `false` | | | firefish.libreTranslate.managed | bool | `false` | |
| calckey.objectStorage.access_key | string | `""` | | | firefish.objectStorage.access_key | string | `""` | |
| calckey.objectStorage.access_secret | string | `""` | | | firefish.objectStorage.access_secret | string | `""` | |
| calckey.objectStorage.baseUrl | string | `""` | | | firefish.objectStorage.baseUrl | string | `""` | |
| calckey.objectStorage.bucket | string | `""` | | | firefish.objectStorage.bucket | string | `""` | |
| calckey.objectStorage.endpoint | string | `""` | | | firefish.objectStorage.endpoint | string | `""` | |
| calckey.objectStorage.managed | bool | `true` | | | firefish.objectStorage.managed | bool | `true` | |
| calckey.objectStorage.prefix | string | `"files"` | | | firefish.objectStorage.prefix | string | `"files"` | |
| calckey.objectStorage.region | string | `""` | | | firefish.objectStorage.region | string | `""` | |
| calckey.reservedUsernames[0] | string | `"root"` | | | firefish.reservedUsernames[0] | string | `"root"` | |
| calckey.reservedUsernames[1] | string | `"admin"` | | | firefish.reservedUsernames[1] | string | `"admin"` | |
| calckey.reservedUsernames[2] | string | `"administrator"` | | | firefish.reservedUsernames[2] | string | `"administrator"` | |
| calckey.reservedUsernames[3] | string | `"me"` | | | firefish.reservedUsernames[3] | string | `"me"` | |
| calckey.reservedUsernames[4] | string | `"system"` | | | firefish.reservedUsernames[4] | string | `"system"` | |
| calckey.smtp.from_address | string | `"notifications@example.com"` | | | firefish.smtp.from_address | string | `"notifications@example.com"` | |
| calckey.smtp.login | string | `""` | | | firefish.smtp.login | string | `""` | |
| calckey.smtp.managed | bool | `true` | | | firefish.smtp.managed | bool | `true` | |
| calckey.smtp.password | string | `""` | | | firefish.smtp.password | string | `""` | |
| calckey.smtp.port | int | `587` | | | firefish.smtp.port | int | `587` | |
| calckey.smtp.server | string | `"smtp.mailgun.org"` | | | firefish.smtp.server | string | `"smtp.mailgun.org"` | |
| calckey.smtp.useImplicitSslTls | bool | `false` | | | 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 | | elasticsearch | object | `{"auth":{},"enabled":false,"hostname":"","port":9200,"ssl":false}` | https://github.com/bitnami/charts/tree/master/bitnami/elasticsearch#parameters |
| fullnameOverride | string | `""` | | | fullnameOverride | string | `""` | |
| image.pullPolicy | string | `"IfNotPresent"` | | | image.pullPolicy | string | `"IfNotPresent"` | |
| image.repository | string | `"docker.io/thatonecalculator/calckey"` | | | image.repository | string | `"docker.io/thatonecalculator/firefish"` | |
| image.tag | string | `""` | | | image.tag | string | `""` | |
| imagePullSecrets | list | `[]` | | | imagePullSecrets | list | `[]` | |
| ingress.annotations | object | `{}` | | | ingress.annotations | object | `{}` | |
@ -67,9 +67,9 @@ A fun, new, open way to experience social media https://calckey.org
| nodeSelector | object | `{}` | | | nodeSelector | object | `{}` | |
| podAnnotations | object | `{}` | | | podAnnotations | object | `{}` | |
| podSecurityContext | object | `{}` | | | podSecurityContext | object | `{}` | |
| postgresql.auth.database | string | `"calckey_production"` | | | postgresql.auth.database | string | `"firefish_production"` | |
| postgresql.auth.password | string | `""` | | | 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 | | 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.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` | | | redis.enabled | bool | `true` | |

View file

@ -6,16 +6,16 @@
{{- end }} {{- end }}
{{- end }} {{- end }}
{{- else if contains "NodePort" .Values.service.type }} {{- 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}") export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}")
echo http://$NODE_IP:$NODE_PORT echo http://$NODE_IP:$NODE_PORT
{{- else if contains "LoadBalancer" .Values.service.type }} {{- else if contains "LoadBalancer" .Values.service.type }}
NOTE: It may take a few minutes for the LoadBalancer IP to be available. 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" . }}' 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 "calckey.fullname" . }} --template "{{"{{ range (index .status.loadBalancer.ingress 0) }}{{.}}{{ end }}"}}") 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 }} echo http://$SERVICE_IP:{{ .Values.service.port }}
{{- else if contains "ClusterIP" .Values.service.type }} {{- 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}") 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" echo "Visit http://127.0.0.1:8080 to use your application"
kubectl --namespace {{ .Release.Namespace }} port-forward $POD_NAME 8080:$CONTAINER_PORT kubectl --namespace {{ .Release.Namespace }} port-forward $POD_NAME 8080:$CONTAINER_PORT

View file

@ -1,7 +1,7 @@
{{/* {{/*
Expand the name of the chart. Expand the name of the chart.
*/}} */}}
{{- define "calckey.name" -}} {{- define "firefish.name" -}}
{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" }} {{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" }}
{{- end }} {{- 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). 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. If release name contains chart name it will be used as a full name.
*/}} */}}
{{- define "calckey.fullname" -}} {{- define "firefish.fullname" -}}
{{- if .Values.fullnameOverride }} {{- if .Values.fullnameOverride }}
{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" }} {{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" }}
{{- else }} {{- 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. 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 "-" }} {{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }}
{{- end }} {{- end }}
{{/* {{/*
Common labels Common labels
*/}} */}}
{{- define "calckey.labels" -}} {{- define "firefish.labels" -}}
helm.sh/chart: {{ include "calckey.chart" . }} helm.sh/chart: {{ include "firefish.chart" . }}
{{ include "calckey.selectorLabels" . }} {{ include "firefish.selectorLabels" . }}
{{- if .Chart.AppVersion }} {{- if .Chart.AppVersion }}
app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} app.kubernetes.io/version: {{ .Chart.AppVersion | quote }}
{{- end }} {{- end }}
@ -45,17 +45,17 @@ app.kubernetes.io/managed-by: {{ .Release.Service }}
{{/* {{/*
Selector labels Selector labels
*/}} */}}
{{- define "calckey.selectorLabels" -}} {{- define "firefish.selectorLabels" -}}
app.kubernetes.io/name: {{ include "calckey.name" . }} app.kubernetes.io/name: {{ include "firefish.name" . }}
app.kubernetes.io/instance: {{ .Release.Name }} app.kubernetes.io/instance: {{ .Release.Name }}
{{- end }} {{- end }}
{{/* {{/*
Create the name of the service account to use Create the name of the service account to use
*/}} */}}
{{- define "calckey.serviceAccountName" -}} {{- define "firefish.serviceAccountName" -}}
{{- if .Values.serviceAccount.create }} {{- if .Values.serviceAccount.create }}
{{- default (include "calckey.fullname" .) .Values.serviceAccount.name }} {{- default (include "firefish.fullname" .) .Values.serviceAccount.name }}
{{- else }} {{- else }}
{{- default "default" .Values.serviceAccount.name }} {{- default "default" .Values.serviceAccount.name }}
{{- end }} {{- end }}
@ -65,31 +65,31 @@ Create the name of the service account to use
Create a default fully qualified name for dependent services. 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). 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 "-" -}} {{- printf "%s-%s" .Release.Name "elasticsearch" | trunc 63 | trimSuffix "-" -}}
{{- end -}} {{- end -}}
{{- define "calckey.redis.fullname" -}} {{- define "firefish.redis.fullname" -}}
{{- printf "%s-%s" .Release.Name "redis" | trunc 63 | trimSuffix "-" -}} {{- printf "%s-%s" .Release.Name "redis" | trunc 63 | trimSuffix "-" -}}
{{- end -}} {{- end -}}
{{- define "calckey.postgresql.fullname" -}} {{- define "firefish.postgresql.fullname" -}}
{{- printf "%s-%s" .Release.Name "postgresql" | trunc 63 | trimSuffix "-" -}} {{- printf "%s-%s" .Release.Name "postgresql" | trunc 63 | trimSuffix "-" -}}
{{- end -}} {{- end -}}
{{/* {{/*
config/default.yml content config/default.yml content
*/}} */}}
{{- define "calckey.configDir.default.yml" -}} {{- define "firefish.configDir.default.yml" -}}
#━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ #━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
# Calckey configuration # Firefish configuration
#━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ #━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
# ┌─────┐ # ┌─────┐
#───┘ URL └───────────────────────────────────────────────────── #───┘ URL └─────────────────────────────────────────────────────
# Final accessible URL seen by a user. # 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 # ONCE YOU HAVE STARTED THE INSTANCE, DO NOT CHANGE THE
# URL SETTINGS AFTER THAT! # URL SETTINGS AFTER THAT!
@ -118,7 +118,7 @@ port: 3000
db: db:
{{- if .Values.postgresql.enabled }} {{- if .Values.postgresql.enabled }}
host: {{ template "calckey.postgresql.fullname" . }} host: {{ template "firefish.postgresql.fullname" . }}
port: '5432' port: '5432'
{{- else }} {{- else }}
host: {{ .Values.postgresql.postgresqlHostname }} host: {{ .Values.postgresql.postgresqlHostname }}
@ -146,7 +146,7 @@ db:
redis: redis:
{{- if .Values.redis.enabled }} {{- if .Values.redis.enabled }}
host: {{ template "calckey.redis.fullname" . }}-master host: {{ template "firefish.redis.fullname" . }}-master
{{- else }} {{- else }}
host: {{ required "When the redis chart is disabled .Values.redis.hostname is required" .Values.redis.hostname }} host: {{ required "When the redis chart is disabled .Values.redis.hostname is required" .Values.redis.hostname }}
{{- end }} {{- end }}
@ -218,7 +218,7 @@ id: 'aid'
# Reserved usernames that only the administrator can register with # Reserved usernames that only the administrator can register with
reservedUsernames: reservedUsernames:
{{ .Values.calckey.reservedUsernames | toYaml }} {{ .Values.firefish.reservedUsernames | toYaml }}
# Whether disable HSTS # Whether disable HSTS
#disableHsts: true #disableHsts: true
@ -266,7 +266,7 @@ reservedUsernames:
#proxyRemoteFiles: true #proxyRemoteFiles: true
allowedPrivateNetworks: allowedPrivateNetworks:
{{ .Values.calckey.allowedPrivateNetworks | toYaml }} {{ .Values.firefish.allowedPrivateNetworks | toYaml }}
# TWA # TWA
#twa: #twa:
@ -286,34 +286,34 @@ allowedPrivateNetworks:
# If you mess this up, that's on you, you've been warned... # If you mess this up, that's on you, you've been warned...
#maxUserSignups: 100 #maxUserSignups: 100
isManagedHosting: {{ .Values.calckey.isManagedHosting }} isManagedHosting: {{ .Values.firefish.isManagedHosting }}
deepl: deepl:
managed: {{ .Values.calckey.deepl.managed }} managed: {{ .Values.firefish.deepl.managed }}
authKey: {{ .Values.calckey.deepl.authKey | quote}} authKey: {{ .Values.firefish.deepl.authKey | quote}}
isPro: {{ .Values.calckey.deepl.isPro }} isPro: {{ .Values.firefish.deepl.isPro }}
libreTranslate: libreTranslate:
managed: {{ .Values.calckey.libreTranslate.managed }} managed: {{ .Values.firefish.libreTranslate.managed }}
apiUrl: {{ .Values.calckey.libreTranslate.apiUrl | quote }} apiUrl: {{ .Values.firefish.libreTranslate.apiUrl | quote }}
apiKey: {{ .Values.calckey.libreTranslate.apiKey | quote }} apiKey: {{ .Values.firefish.libreTranslate.apiKey | quote }}
email: email:
managed: {{ .Values.calckey.smtp.managed }} managed: {{ .Values.firefish.smtp.managed }}
address: {{ .Values.calckey.smtp.from_address | quote }} address: {{ .Values.firefish.smtp.from_address | quote }}
host: {{ .Values.calckey.smtp.server | quote }} host: {{ .Values.firefish.smtp.server | quote }}
port: {{ .Values.calckey.smtp.port }} port: {{ .Values.firefish.smtp.port }}
user: {{ .Values.calckey.smtp.login | quote }} user: {{ .Values.firefish.smtp.login | quote }}
pass: {{ .Values.calckey.smtp.password | quote }} pass: {{ .Values.firefish.smtp.password | quote }}
useImplicitSslTls: {{ .Values.calckey.smtp.useImplicitSslTls }} useImplicitSslTls: {{ .Values.firefish.smtp.useImplicitSslTls }}
objectStorage: objectStorage:
managed: {{ .Values.calckey.objectStorage.managed }} managed: {{ .Values.firefish.objectStorage.managed }}
baseUrl: {{ .Values.calckey.objectStorage.baseUrl | quote }} baseUrl: {{ .Values.firefish.objectStorage.baseUrl | quote }}
bucket: {{ .Values.calckey.objectStorage.bucket | quote }} bucket: {{ .Values.firefish.objectStorage.bucket | quote }}
prefix: {{ .Values.calckey.objectStorage.prefix | quote }} prefix: {{ .Values.firefish.objectStorage.prefix | quote }}
endpoint: {{ .Values.calckey.objectStorage.endpoint | quote }} endpoint: {{ .Values.firefish.objectStorage.endpoint | quote }}
region: {{ .Values.calckey.objectStorage.region | quote }} region: {{ .Values.firefish.objectStorage.region | quote }}
accessKey: {{ .Values.calckey.objectStorage.access_key | quote }} accessKey: {{ .Values.firefish.objectStorage.access_key | quote }}
secretKey: {{ .Values.calckey.objectStorage.access_secret | quote }} secretKey: {{ .Values.firefish.objectStorage.access_secret | quote }}
useSsl: true useSsl: true
connnectOverProxy: false connnectOverProxy: false
setPublicReadOnUpload: true setPublicReadOnUpload: true

View file

@ -1,16 +1,16 @@
apiVersion: apps/v1 apiVersion: apps/v1
kind: Deployment kind: Deployment
metadata: metadata:
name: {{ include "calckey.fullname" . }} name: {{ include "firefish.fullname" . }}
labels: labels:
{{- include "calckey.labels" . | nindent 4 }} {{- include "firefish.labels" . | nindent 4 }}
spec: spec:
{{- if not .Values.autoscaling.enabled }} {{- if not .Values.autoscaling.enabled }}
replicas: {{ .Values.replicaCount }} replicas: {{ .Values.replicaCount }}
{{- end }} {{- end }}
selector: selector:
matchLabels: matchLabels:
{{- include "calckey.selectorLabels" . | nindent 6 }} {{- include "firefish.selectorLabels" . | nindent 6 }}
template: template:
metadata: metadata:
annotations: annotations:
@ -19,19 +19,19 @@ spec:
{{- toYaml . | nindent 8 }} {{- toYaml . | nindent 8 }}
{{- end }} {{- end }}
labels: labels:
{{- include "calckey.selectorLabels" . | nindent 8 }} {{- include "firefish.selectorLabels" . | nindent 8 }}
spec: spec:
{{- with .Values.imagePullSecrets }} {{- with .Values.imagePullSecrets }}
imagePullSecrets: imagePullSecrets:
{{- toYaml . | nindent 8 }} {{- toYaml . | nindent 8 }}
{{- end }} {{- end }}
serviceAccountName: {{ include "calckey.serviceAccountName" . }} serviceAccountName: {{ include "firefish.serviceAccountName" . }}
securityContext: securityContext:
{{- toYaml .Values.podSecurityContext | nindent 8 }} {{- toYaml .Values.podSecurityContext | nindent 8 }}
volumes: volumes:
- name: config-volume - name: config-volume
secret: secret:
secretName: {{ template "calckey.fullname" . }}-config secretName: {{ template "firefish.fullname" . }}-config
containers: containers:
- name: {{ .Chart.Name }} - name: {{ .Chart.Name }}
securityContext: securityContext:
@ -47,7 +47,7 @@ spec:
value: "production" value: "production"
volumeMounts: volumeMounts:
- name: config-volume - name: config-volume
mountPath: /calckey/.config mountPath: /firefish/.config
ports: ports:
- name: http - name: http
containerPort: 3000 containerPort: 3000

View file

@ -2,14 +2,14 @@
apiVersion: autoscaling/v2beta1 apiVersion: autoscaling/v2beta1
kind: HorizontalPodAutoscaler kind: HorizontalPodAutoscaler
metadata: metadata:
name: {{ include "calckey.fullname" . }} name: {{ include "firefish.fullname" . }}
labels: labels:
{{- include "calckey.labels" . | nindent 4 }} {{- include "firefish.labels" . | nindent 4 }}
spec: spec:
scaleTargetRef: scaleTargetRef:
apiVersion: apps/v1 apiVersion: apps/v1
kind: Deployment kind: Deployment
name: {{ include "calckey.fullname" . }} name: {{ include "firefish.fullname" . }}
minReplicas: {{ .Values.autoscaling.minReplicas }} minReplicas: {{ .Values.autoscaling.minReplicas }}
maxReplicas: {{ .Values.autoscaling.maxReplicas }} maxReplicas: {{ .Values.autoscaling.maxReplicas }}
metrics: metrics:

View file

@ -1,5 +1,5 @@
{{- if .Values.ingress.enabled -}} {{- if .Values.ingress.enabled -}}
{{- $fullName := include "calckey.fullname" . -}} {{- $fullName := include "firefish.fullname" . -}}
{{- $svcPort := .Values.service.port -}} {{- $svcPort := .Values.service.port -}}
{{- if and .Values.ingress.className (not (semverCompare ">=1.18-0" .Capabilities.KubeVersion.GitVersion)) }} {{- if and .Values.ingress.className (not (semverCompare ">=1.18-0" .Capabilities.KubeVersion.GitVersion)) }}
{{- if not (hasKey .Values.ingress.annotations "kubernetes.io/ingress.class") }} {{- if not (hasKey .Values.ingress.annotations "kubernetes.io/ingress.class") }}
@ -17,7 +17,7 @@ kind: Ingress
metadata: metadata:
name: {{ $fullName }} name: {{ $fullName }}
labels: labels:
{{- include "calckey.labels" . | nindent 4 }} {{- include "firefish.labels" . | nindent 4 }}
{{- with .Values.ingress.annotations }} {{- with .Values.ingress.annotations }}
annotations: annotations:
{{- toYaml . | nindent 4 }} {{- toYaml . | nindent 4 }}

View file

@ -1,9 +1,9 @@
apiVersion: batch/v1 apiVersion: batch/v1
kind: Job kind: Job
metadata: metadata:
name: {{ include "calckey.fullname" . }}-db-migrate name: {{ include "firefish.fullname" . }}-db-migrate
labels: labels:
{{- include "calckey.labels" . | nindent 4 }} {{- include "firefish.labels" . | nindent 4 }}
annotations: annotations:
"helm.sh/hook": post-install,pre-upgrade "helm.sh/hook": post-install,pre-upgrade
"helm.sh/hook-delete-policy": before-hook-creation,hook-succeeded "helm.sh/hook-delete-policy": before-hook-creation,hook-succeeded
@ -11,7 +11,7 @@ metadata:
spec: spec:
template: template:
metadata: metadata:
name: {{ include "calckey.fullname" . }}-db-migrate name: {{ include "firefish.fullname" . }}-db-migrate
{{- with .Values.podAnnotations }} {{- with .Values.podAnnotations }}
annotations: annotations:
{{- toYaml . | nindent 8 }} {{- toYaml . | nindent 8 }}
@ -22,13 +22,13 @@ spec:
imagePullSecrets: imagePullSecrets:
{{- toYaml . | nindent 8 }} {{- toYaml . | nindent 8 }}
{{- end }} {{- end }}
serviceAccountName: {{ include "calckey.serviceAccountName" . }} serviceAccountName: {{ include "firefish.serviceAccountName" . }}
securityContext: securityContext:
{{- toYaml .Values.podSecurityContext | nindent 8 }} {{- toYaml .Values.podSecurityContext | nindent 8 }}
volumes: volumes:
- name: config-volume - name: config-volume
secret: secret:
secretName: {{ template "calckey.fullname" . }}-config secretName: {{ template "firefish.fullname" . }}-config
containers: containers:
- name: {{ .Chart.Name }} - name: {{ .Chart.Name }}
securityContext: securityContext:
@ -44,7 +44,7 @@ spec:
value: "production" value: "production"
volumeMounts: volumeMounts:
- name: config-volume - name: config-volume
mountPath: /calckey/.config mountPath: /firefish/.config
{{- with .Values.nodeSelector }} {{- with .Values.nodeSelector }}
nodeSelector: nodeSelector:
{{- toYaml . | nindent 8 }} {{- toYaml . | nindent 8 }}

View file

@ -1,9 +1,9 @@
apiVersion: v1 apiVersion: v1
kind: Secret kind: Secret
metadata: metadata:
name: {{ template "calckey.fullname" . }}-config name: {{ template "firefish.fullname" . }}-config
labels: labels:
{{- include "calckey.labels" . | nindent 4 }} {{- include "firefish.labels" . | nindent 4 }}
type: Opaque type: Opaque
data: data:
default.yml: {{ include "calckey.configDir.default.yml" . | b64enc }} default.yml: {{ include "firefish.configDir.default.yml" . | b64enc }}

View file

@ -1,9 +1,9 @@
apiVersion: v1 apiVersion: v1
kind: Service kind: Service
metadata: metadata:
name: {{ include "calckey.fullname" . }} name: {{ include "firefish.fullname" . }}
labels: labels:
{{- include "calckey.labels" . | nindent 4 }} {{- include "firefish.labels" . | nindent 4 }}
spec: spec:
type: {{ .Values.service.type }} type: {{ .Values.service.type }}
ports: ports:
@ -12,4 +12,4 @@ spec:
protocol: TCP protocol: TCP
name: http name: http
selector: selector:
{{- include "calckey.selectorLabels" . | nindent 4 }} {{- include "firefish.selectorLabels" . | nindent 4 }}

View file

@ -2,9 +2,9 @@
apiVersion: v1 apiVersion: v1
kind: ServiceAccount kind: ServiceAccount
metadata: metadata:
name: {{ include "calckey.serviceAccountName" . }} name: {{ include "firefish.serviceAccountName" . }}
labels: labels:
{{- include "calckey.labels" . | nindent 4 }} {{- include "firefish.labels" . | nindent 4 }}
{{- with .Values.serviceAccount.annotations }} {{- with .Values.serviceAccount.annotations }}
annotations: annotations:
{{- toYaml . | nindent 4 }} {{- toYaml . | nindent 4 }}

View file

@ -1,9 +1,9 @@
apiVersion: v1 apiVersion: v1
kind: Pod kind: Pod
metadata: metadata:
name: "{{ include "calckey.fullname" . }}-test-connection" name: "{{ include "firefish.fullname" . }}-test-connection"
labels: labels:
{{- include "calckey.labels" . | nindent 4 }} {{- include "firefish.labels" . | nindent 4 }}
annotations: annotations:
"helm.sh/hook": test "helm.sh/hook": test
spec: spec:
@ -11,5 +11,5 @@ spec:
- name: wget - name: wget
image: busybox image: busybox
command: ['wget'] command: ['wget']
args: ['{{ include "calckey.fullname" . }}:{{ .Values.service.port }}'] args: ['{{ include "firefish.fullname" . }}:{{ .Values.service.port }}']
restartPolicy: Never restartPolicy: Never

View file

@ -1,18 +1,18 @@
# Default values for calckey. # Default values for firefish.
# This is a YAML-formatted file. # This is a YAML-formatted file.
# Declare variables to be passed into your templates. # Declare variables to be passed into your templates.
replicaCount: 1 replicaCount: 1
image: image:
repository: docker.io/thatonecalculator/calckey repository: docker.io/thatonecalculator/firefish
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion. # Overrides the image tag whose default is the chart appVersion.
tag: "" tag: ""
calckey: firefish:
isManagedHosting: true isManagedHosting: true
domain: calckey.local domain: firefish.local
deepl: deepl:
managed: false managed: false
@ -43,7 +43,7 @@ calckey:
endpoint: "" # e.g. "nyc3.digitaloceanspaces.com:443" endpoint: "" # e.g. "nyc3.digitaloceanspaces.com:443"
region: "" # e.g. "nyc3" 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: [] allowedPrivateNetworks: []
# - "10.0.0.0/8" # - "10.0.0.0/8"
@ -62,8 +62,8 @@ postgresql:
# postgresqlHostname: preexisting-postgresql # postgresqlHostname: preexisting-postgresql
# postgresqlPort: 5432 # postgresqlPort: 5432
auth: auth:
database: calckey_production database: firefish_production
username: calckey username: firefish
# you must set a password; the password generated by the postgresql chart will # you must set a password; the password generated by the postgresql chart will
# be rotated on each upgrade: # be rotated on each upgrade:
# https://github.com/bitnami/charts/tree/master/bitnami/postgresql#upgrade # https://github.com/bitnami/charts/tree/master/bitnami/postgresql#upgrade

View file

@ -4,7 +4,7 @@
# changelog header # changelog header
header = """ header = """
# Changelog\n # 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 # template for the changelog body
# https://tera.netlify.app/docs/#introduction # https://tera.netlify.app/docs/#introduction

View file

@ -1,4 +1,4 @@
Copyright 2023 Calckey Copyright 2023 Firefish
Licensed under the Apache License, Version 2.0 (the "License"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.

View file

@ -2,9 +2,9 @@ version: "3"
services: services:
web: web:
image: docker.io/thatonecalculator/calckey image: docker.io/thatonecalculator/firefish
build: .. build: ..
container_name: calckey_web container_name: firefish_web
restart: always restart: always
depends_on: depends_on:
- db - db
@ -16,12 +16,12 @@ services:
- network - network
# - web # - web
volumes: volumes:
- ../files:/calckey/files - ../files:/firefish/files
- ../.config:/calckey/.config:ro - ../.config:/firefish/.config:ro
redis: redis:
restart: always restart: always
container_name: calckey_redis container_name: firefish_redis
image: docker.io/redis:7.0-alpine image: docker.io/redis:7.0-alpine
networks: networks:
- network - network
@ -31,7 +31,7 @@ services:
db: db:
restart: always restart: always
image: docker.io/postgres:12.2-alpine image: docker.io/postgres:12.2-alpine
container_name: calckey_db container_name: firefish_db
networks: networks:
- network - network
env_file: env_file:

View file

@ -2,8 +2,8 @@ version: "3"
services: services:
web: web:
image: docker.io/thatonecalculator/calckey image: docker.io/thatonecalculator/firefish
container_name: calckey_web container_name: firefish_web
restart: unless-stopped restart: unless-stopped
depends_on: depends_on:
- db - db
@ -19,13 +19,13 @@ services:
environment: environment:
NODE_ENV: production NODE_ENV: production
volumes: volumes:
- ./files:/calckey/files - ./files:/firefish/files
- ./.config:/calckey/.config:ro - ./.config:/firefish/.config:ro
redis: redis:
restart: unless-stopped restart: unless-stopped
image: docker.io/redis:7.0-alpine image: docker.io/redis:7.0-alpine
container_name: calckey_redis container_name: firefish_redis
networks: networks:
- calcnet - calcnet
volumes: volumes:
@ -34,7 +34,7 @@ services:
db: db:
restart: unless-stopped restart: unless-stopped
image: docker.io/postgres:12.2-alpine image: docker.io/postgres:12.2-alpine
container_name: calckey_db container_name: firefish_db
networks: networks:
- calcnet - calcnet
env_file: env_file:

View file

@ -1,5 +1,5 @@
# API Documentation # 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).

View file

@ -1,7 +1,7 @@
# 🌎 Calckey Developer Docs # 🌎 Firefish Developer Docs
## Nix Dev Environment ## 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. 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 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) - 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 `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. - 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. - 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 Calckey banner printed in your second terminal, run `migrate` in the first. - 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. - Once migrations finish, open http://localhost:3000 in your web browser.
- You should now see the admin user creation screen! - 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` after that, run `direnv rebuild`
if there are any errors, you might have to change `flake.nix` 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 ### after changing a node version
in my case, i had to change the node version from 19, to 18 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: 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 > pnpm --filter backend run start
> backend@ start /mnt/.../calckey/packages/backend > backend@ start /mnt/.../firefish/packages/backend
> pnpm node ./built/index.js > pnpm node ./built/index.js
node:internal/modules/cjs/loader:1078 node:internal/modules/cjs/loader:1078
throw err; 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._resolveFilename (node:internal/modules/cjs/loader:1075:15)
at Module._load (node:internal/modules/cjs/loader:920:27) at Module._load (node:internal/modules/cjs/loader:920:27)
at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:81:12) 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 Node.js v18.16.0
undefined undefined
/mnt/.../calckey/packages/backend: /mnt/.../firefish/packages/backend:
ERR_PNPM_RECURSIVE_RUN_FIRST_FAIL backend@ start: `pnpm node ./built/index.js` ERR_PNPM_RECURSIVE_RUN_FIRST_FAIL backend@ start: `pnpm node ./built/index.js`
Exit status 1 Exit status 1
ELIFECYCLE Command failed with exit code 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. 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. 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)! then you're good to go and can run `migrate` (in another terminal)!
if you don't see the banner, if you don't see the banner,

View file

@ -1,14 +1,14 @@
# 🐳 Running a Calckey server with Docker # 🐳 Running a Firefish server with Docker
## Pre-built docker container ## Pre-built docker container
[thatonecalculator/calckey](https://hub.docker.com/r/thatonecalculator/calckey) [thatonecalculator/firefish](https://hub.docker.com/r/thatonecalculator/firefish)
## `docker-compose` ## `docker-compose`
There is a `docker-compose.yml` in the root of the project that you can use to build the container from source 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/docker.env (**db config settings**)
- .config/default.yml (**calckey server settings**) - .config/default.yml (**firefish server settings**)
## Configuring ## Configuring
@ -21,22 +21,22 @@ Rename the files:
then edit them according to your environment. 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: 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. - `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`, `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: *calckey_redis_1*) - `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` - `auth` will need to be configured in the *Sonic* section - cannot be the default `SecretPassword`
Everything else can be left as-is. Everything else can be left as-is.
## Running docker-compose ## 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: Copy `docker-compose.yml` and the `config/` to a directory, then run the **docker-compose** command:
`docker-compose up -d`. `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 ## Docker for development

View file

@ -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 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 ## Deployment
@ -17,29 +17,29 @@ helm dependency list $dir 2> /dev/null | tail +2 | head -n -1 | awk '{ print "he
cd ../ 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 ```shell
helm upgrade \ helm upgrade \
--install \ --install \
--namespace calckey \ --namespace firefish \
--create-namespace \ --create-namespace \
calckey chart/ \ firefish chart/ \
-f .config/helm_values.yml -f .config/helm_values.yml
``` ```
4. Watch your calckey server spin up: 4. Watch your firefish server spin up:
```shell ```shell
kubectl -n calckey get po -w kubectl -n firefish get po -w
``` ```
5. Initial the admin user and managed config: 5. Initial the admin user and managed config:
```shell ```shell
export CALCKEY_USERNAME="my_desired_admin_handle" && \ export firefish_USERNAME="my_desired_admin_handle" && \
export CALCKEY_PASSWORD="myDesiredInitialPassword" && \ export firefish_PASSWORD="myDesiredInitialPassword" && \
export CALCKEY_HOST="calckey.example.com" && \ export firefish_HOST="firefish.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') && \ 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: ${CALCKEY_TOKEN}" && \ echo "Save this token: ${firefish_TOKEN}" && \
curl -X POST -H "Authorization: Bearer $CALCKEY_TOKEN" https://$CALCKEY_HOST/api/admin/accounts/hosted curl -X POST -H "Authorization: Bearer $firefish_TOKEN" https://$firefish_HOST/api/admin/accounts/hosted
``` ```
6. Enjoy! 6. Enjoy!

View file

@ -1,4 +1,4 @@
# 🚚 Migrating from Misskey/FoundKey to Calckey # 🚚 Migrating from Misskey/FoundKey to Firefish
All the guides below assume you're starting in the root of the repo directory. All the guides below assume you're starting in the root of the repo directory.
@ -14,8 +14,8 @@ Tested with Misskey v13.11.3.
If your Misskey v13 is older, we recommend updating your Misskey to v13.11.3. If your Misskey v13 is older, we recommend updating your Misskey to v13.11.3.
```sh ```sh
wget -O mkv13.patch https://codeberg.org/calckey/calckey/raw/branch/develop/docs/mkv13.patch wget -O mkv13.patch https://gitlab.prometheus.systems/firefish/firefish/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_restore.patch https://gitlab.prometheus.systems/firefish/firefish/raw/branch/develop/docs/mkv13_restore.patch
git apply mkv13.patch mkv13_restore.patch git apply mkv13.patch mkv13_restore.patch
cd packages/backend cd packages/backend
@ -27,13 +27,13 @@ for i in $(seq 1 $NUM_MIGRATIONS); do pnpm typeorm migration:revert -d ormconfig
cd ../../ cd ../../
git remote set-url origin https://codeberg.org/calckey/calckey.git git remote set-url origin https://gitlab.prometheus.systems/firefish/firefish.git
git fetch origin git fetch origin
git stash push git stash push
rm -rf fluent-emojis misskey-assets rm -rf fluent-emojis misskey-assets
git switch main # or beta or develop git switch main # or beta or develop
git pull --ff git pull --ff
wget -O renote_muting.patch https://codeberg.org/calckey/calckey/raw/branch/develop/docs/renote_muting.patch wget -O renote_muting.patch https://gitlab.prometheus.systems/firefish/firefish/raw/branch/develop/docs/renote_muting.patch
git apply renote_muting.patch git apply renote_muting.patch
pnpm install pnpm install
@ -60,16 +60,16 @@ ALTER TABLE "instance" ADD COLUMN "latestStatus" character varying(512);
ALTER TABLE "instance" ADD COLUMN "lastCommunicatedAt" date; 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`. 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 ## Misskey v12.119 and before
```sh ```sh
git remote set-url origin https://codeberg.org/calckey/calckey.git git remote set-url origin https://gitlab.prometheus.systems/firefish/firefish.git
git fetch git fetch
git checkout main # or beta or develop git checkout main # or beta or develop
git pull --ff git pull --ff
@ -92,7 +92,7 @@ for i in $(seq 1 $NUM_MIGRATIONS); do
npx typeorm migration:revert -d ormconfig.js npx typeorm migration:revert -d ormconfig.js
done done
git remote set-url origin https://codeberg.org/calckey/calckey.git git remote set-url origin https://gitlab.prometheus.systems/firefish/firefish.git
git fetch git fetch
git checkout main # or beta or develop git checkout main # or beta or develop
git pull --ff git pull --ff
@ -103,4 +103,4 @@ NODE_ENV=production pnpm run migrate
## Reverse ## Reverse
You ***cannot*** migrate back to Misskey from Calckey due to re-hashing passwords on signin with argon2. You can migrate from Calckey to FoundKey, although this is not recommended due to FoundKey being end-of-life, and may have some problems with alt-text. You ***cannot*** migrate back to Misskey from Firefish due to re-hashing passwords on signin with argon2. You can migrate from Calckey to FoundKey, although this is not recommended due to FoundKey being end-of-life, and may have some problems with alt-text.

View file

@ -1,5 +1,5 @@
{ {
description = "Calckey development flake"; description = "Firefish development flake";
inputs = { inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable"; nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
@ -28,7 +28,7 @@
shells = { shells = {
# The default shell, used by nix-direnv # The default shell, used by nix-direnv
default = { default = {
name = "calckey-dev-shell"; name = "firefish-dev-shell";
# Add additional packages to our environment # Add additional packages to our environment
packages = [ packages = [
pkgs.nodePackages.pnpm pkgs.nodePackages.pnpm
@ -62,12 +62,12 @@
enable = true; enable = true;
package = pkgs.postgresql_12; package = pkgs.postgresql_12;
initialDatabases = [{ initialDatabases = [{
name = "calckey"; name = "firefish";
}]; }];
initialScript = '' initialScript = ''
CREATE USER calckey WITH PASSWORD 'calckey'; CREATE USER firefish WITH PASSWORD 'firefish';
ALTER USER calckey WITH SUPERUSER; ALTER USER firefish WITH SUPERUSER;
GRANT ALL ON DATABASE calckey TO calckey; GRANT ALL ON DATABASE firefish TO firefish;
''; '';
listen_addresses = "127.0.0.1"; listen_addresses = "127.0.0.1";
port = 5432; port = 5432;

View file

@ -4,19 +4,19 @@ title: "[Bug]: "
blank_issues_enabled: true blank_issues_enabled: true
contact_links: contact_links:
- name: 💁 Support Matrix - 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. about: Having trouble with deployment? Ask the support chat.
- name: 🔒 Resposible Disclosure - name: 🔒 Resposible Disclosure
url: https://codeberg.org/calckey/calckey/src/branch/develop/SECURITY.md url: https://gitlab.prometheus.systems/firefish/firefish/src/branch/develop/SECURITY.md
about: Found a security vulnerability? Please disclose it responsibly. about: Found a security vulnerability? Please disclose it responsibly.
body: body:
- type: markdown - type: markdown
attributes: attributes:
value: | value: |
💖 Thanks for taking the time to fill out this bug report! 💖 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) 💁 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/calckey/calckey/src/branch/develop/SECURITY.md) 🔒 Found a security vulnerability? [Please disclose it responsibly.](https://gitlab.prometheus.systems/firefish/firefish/src/branch/develop/SECURITY.md)
🤝 By submitting this issue, you agree to follow our [Contribution Guidelines.](https://codeberg.org/calckey/calckey/src/branch/develop/CONTRIBUTING.md) 🤝 By submitting this issue, you agree to follow our [Contribution Guidelines.](https://gitlab.prometheus.systems/firefish/firefish/src/branch/develop/CONTRIBUTING.md)
- type: textarea - type: textarea
id: what-happened id: what-happened
attributes: attributes:
@ -37,7 +37,7 @@ body:
id: version id: version
attributes: attributes:
label: Version 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 placeholder: v13.1.4.1
validations: validations:
required: true required: true
@ -45,8 +45,8 @@ body:
id: instance id: instance
attributes: attributes:
label: Instance label: Instance
description: What instance of calckey are you using? description: What instance of firefish are you using?
placeholder: calckey.social placeholder: firefish.social
validations: validations:
required: false required: false
- type: dropdown - type: dropdown
@ -90,7 +90,7 @@ body:
- type: dropdown - type: dropdown
id: deplotment-method id: deplotment-method
attributes: 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 multiple: false
options: options:
- N/A - N/A
@ -128,7 +128,7 @@ body:
id: terms id: terms
attributes: attributes:
label: Contribution Guidelines label: Contribution Guidelines
description: By submitting this issue, you agree to follow our [Contribution Guidelines](https://codeberg.org/calckey/calckey/src/branch/develop/CONTRIBUTING.md) description: By submitting this issue, you agree to follow our [Contribution Guidelines](https://gitlab.prometheus.systems/firefish/firefish/src/branch/develop/CONTRIBUTING.md)
options: options:
- label: I agree to follow this project's Contribution Guidelines - label: I agree to follow this project's Contribution Guidelines
required: true required: true

View file

@ -4,19 +4,19 @@ title: "[Feature]: "
blank_issues_enabled: true blank_issues_enabled: true
contact_links: contact_links:
- name: 💁 Support Matrix - 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. about: Having trouble with deployment? Ask the support chat.
- name: 🔒 Resposible Disclosure - name: 🔒 Resposible Disclosure
url: https://codeberg.org/calckey/calckey/src/branch/develop/SECURITY.md url: https://gitlab.prometheus.systems/firefish/firefish/src/branch/develop/SECURITY.md
about: Found a security vulnerability? Please disclose it responsibly. about: Found a security vulnerability? Please disclose it responsibly.
body: body:
- type: markdown - type: markdown
attributes: attributes:
value: | value: |
💖 Thanks for taking the time to fill out this feature request! 💖 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) 💁 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/calckey/calckey/src/branch/develop/SECURITY.md) 🔒 Found a security vulnerability? [Please disclose it responsibly.](https://gitlab.prometheus.systems/firefish/firefish/src/branch/develop/SECURITY.md)
🤝 By submitting this issue, you agree to follow our [Contribution Guidelines.](https://codeberg.org/calckey/calckey/src/branch/develop/CONTRIBUTING.md) 🤝 By submitting this issue, you agree to follow our [Contribution Guidelines.](https://gitlab.prometheus.systems/firefish/firefish/src/branch/develop/CONTRIBUTING.md)
- type: textarea - type: textarea
id: what-feature id: what-feature
attributes: attributes:
@ -37,23 +37,23 @@ body:
id: version id: version
attributes: attributes:
label: Version 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: Calckey Version 13.1.4.1 placeholder: Firefish Version 13.1.4.1
validations: validations:
required: true required: true
- type: input - type: input
id: instance id: instance
attributes: attributes:
label: Instance label: Instance
description: What instance of calckey are you using? description: What instance of firefish are you using?
placeholder: calckey.social placeholder: firefish.social
validations: validations:
required: false required: false
- type: checkboxes - type: checkboxes
id: terms id: terms
attributes: attributes:
label: Contribution Guidelines label: Contribution Guidelines
description: By submitting this issue, you agree to follow our [Contribution Guidelines](https://codeberg.org/calckey/calckey/src/branch/develop/CONTRIBUTING.md) description: By submitting this issue, you agree to follow our [Contribution Guidelines](https://gitlab.prometheus.systems/firefish/firefish/src/branch/develop/CONTRIBUTING.md)
options: options:
- label: I agree to follow this project's Contribution Guidelines - label: I agree to follow this project's Contribution Guidelines
required: true required: true

View file

@ -196,7 +196,7 @@ noUsers: "ليس هناك مستخدمون"
editProfile: "تعديل الملف التعريفي" editProfile: "تعديل الملف التعريفي"
noteDeleteConfirm: "هل تريد حذف هذه الملاحظة؟" noteDeleteConfirm: "هل تريد حذف هذه الملاحظة؟"
pinLimitExceeded: "لا يمكنك تدبيس الملاحظات بعد الآن." pinLimitExceeded: "لا يمكنك تدبيس الملاحظات بعد الآن."
intro: "لقد انتهت عملية تنصيب Calckey. الرجاء إنشاء حساب إداري." intro: "لقد انتهت عملية تنصيب Firefish. الرجاء إنشاء حساب إداري."
done: "تمّ" done: "تمّ"
processing: "المعالجة جارية" processing: "المعالجة جارية"
preview: "معاينة" preview: "معاينة"
@ -371,7 +371,7 @@ exploreFediverse: "استكشف الفديفرس"
popularTags: "الوسوم الرائجة" popularTags: "الوسوم الرائجة"
userList: "القوائم" userList: "القوائم"
about: "عن" about: "عن"
aboutMisskey: "عن Calckey" aboutFirefish: "عن Firefish"
administrator: "المدير" administrator: "المدير"
token: "الرمز المميز" token: "الرمز المميز"
twoStepAuthentication: "الإستيثاق بعاملَيْن" twoStepAuthentication: "الإستيثاق بعاملَيْن"
@ -855,7 +855,7 @@ _registry:
keys: "المفاتيح" keys: "المفاتيح"
domain: "النّطاق" domain: "النّطاق"
createKey: "أنشئ مفتاحًا" createKey: "أنشئ مفتاحًا"
_aboutMisskey: _aboutFirefish:
about: "ميسكي هو برمجية مفتوحة المصدر يطورها syuilo منذ 2014." about: "ميسكي هو برمجية مفتوحة المصدر يطورها syuilo منذ 2014."
contributors: "المساهمون الرئيسيون" contributors: "المساهمون الرئيسيون"
allContributors: "كل المساهمين" allContributors: "كل المساهمين"
@ -1027,7 +1027,7 @@ _time:
hour: "سا" hour: "سا"
day: "ي" day: "ي"
_tutorial: _tutorial:
title: "How to use Calckey" title: "How to use Firefish"
step1_1: "Welcome!" step1_1: "Welcome!"
step1_2: "Let's get you set up. You'll be up and running in no time!" 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." 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_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." 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_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_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 Calckey. This one does though! It's a bit complicated, but you'll get the hang of it in no time." 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!" step6_4: "Now go, explore, and have fun!"
_2fa: _2fa:
alreadyRegistered: "سجلت سلفًا جهازًا للاستيثاق بعاملين." alreadyRegistered: "سجلت سلفًا جهازًا للاستيثاق بعاملين."

View file

@ -198,7 +198,7 @@ noUsers: "কোন ব্যাবহারকারী নেই"
editProfile: "প্রোফাইল সম্পাদনা করুন" editProfile: "প্রোফাইল সম্পাদনা করুন"
noteDeleteConfirm: "আপনি কি নোট ডিলিট করার ব্যাপারে নিশ্চিত?" noteDeleteConfirm: "আপনি কি নোট ডিলিট করার ব্যাপারে নিশ্চিত?"
pinLimitExceeded: "আপনি আর কোন নোট পিন করতে পারবেন না" pinLimitExceeded: "আপনি আর কোন নোট পিন করতে পারবেন না"
intro: "Calckey এর ইন্সটলেশন সম্পন্ন হয়েছে!দয়া করে অ্যাডমিন ইউজার তৈরি করুন।" intro: "Firefish এর ইন্সটলেশন সম্পন্ন হয়েছে!দয়া করে অ্যাডমিন ইউজার তৈরি করুন।"
done: "সম্পন্ন" done: "সম্পন্ন"
processing: "প্রক্রিয়াধীন" processing: "প্রক্রিয়াধীন"
preview: "পূর্বরূপ দেখুন" preview: "পূর্বরূপ দেখুন"
@ -376,7 +376,7 @@ exploreFediverse: "Fediverse ঘুরে দেখুন"
popularTags: "জনপ্রিয় ট্যাগগুলি" popularTags: "জনপ্রিয় ট্যাগগুলি"
userList: "লিস্ট" userList: "লিস্ট"
about: "আপনার সম্পর্কে" about: "আপনার সম্পর্কে"
aboutMisskey: "Calckey সম্পর্কে" aboutFirefish: "Firefish সম্পর্কে"
administrator: "প্রশাসক" administrator: "প্রশাসক"
token: "টোকেন" token: "টোকেন"
twoStepAuthentication: "২-ধাপ প্রমাণীকরণ" twoStepAuthentication: "২-ধাপ প্রমাণীকরণ"
@ -643,7 +643,7 @@ createNew: "নতুন"
optional: "প্রয়োজনীয় নয়" optional: "প্রয়োজনীয় নয়"
createNewClip: "নতুন ক্লিপ তৈরি করুন" createNewClip: "নতুন ক্লিপ তৈরি করুন"
public: "সর্বজনীন" public: "সর্বজনীন"
i18nInfo: "Calckey স্বেচ্ছাসেবকদের দ্বারা বিভিন্ন ভাষায় অনুবাদ করা হচ্ছে। আপনি {link} এ গিয়ে অনুবাদে সহযোগিতা করতে পারেন।" i18nInfo: "Firefish স্বেচ্ছাসেবকদের দ্বারা বিভিন্ন ভাষায় অনুবাদ করা হচ্ছে। আপনি {link} এ গিয়ে অনুবাদে সহযোগিতা করতে পারেন।"
manageAccessTokens: "অ্যাক্সেস টোকেন পরিচালনা করুন" manageAccessTokens: "অ্যাক্সেস টোকেন পরিচালনা করুন"
accountInfo: "অ্যাকাউন্টের তথ্য" accountInfo: "অ্যাকাউন্টের তথ্য"
notesCount: "নোটের সংখ্যা" notesCount: "নোটের সংখ্যা"
@ -694,7 +694,7 @@ onlineUsersCount: "{n} জন ব্যাবহারকারী অনলা
nUsers: "{n} জন ব্যাবহারকারী" nUsers: "{n} জন ব্যাবহারকারী"
nNotes: "{n} টি নোট" nNotes: "{n} টি নোট"
sendErrorReports: "ক্রুটি প্রতিবেদন পাঠান" sendErrorReports: "ক্রুটি প্রতিবেদন পাঠান"
sendErrorReportsDescription: "চালু থাকলে, বিস্তারিত ত্রুটির তথ্য Calckey-এর সাথে শেয়ার করা হয়। যা সফ্টওয়্যারটির গুণমান উন্নত করতে সাহায্য করে। ত্রুটির তথ্যের মধ্যে রয়েছে OS সংস্করণ, ব্রাউজারের ধরন, কর্মের ইতিহাস ইত্যাদি।" sendErrorReportsDescription: "চালু থাকলে, বিস্তারিত ত্রুটির তথ্য Firefish-এর সাথে শেয়ার করা হয়। যা সফ্টওয়্যারটির গুণমান উন্নত করতে সাহায্য করে। ত্রুটির তথ্যের মধ্যে রয়েছে OS সংস্করণ, ব্রাউজারের ধরন, কর্মের ইতিহাস ইত্যাদি।"
myTheme: "আমার থিম" myTheme: "আমার থিম"
backgroundColor: "পটভূমির রং" backgroundColor: "পটভূমির রং"
accentColor: "এক্সেন্টের রং" accentColor: "এক্সেন্টের রং"
@ -785,7 +785,7 @@ hashtags: "হ্যাশট্যাগ"
troubleshooting: "ট্রাবলশুটিং" troubleshooting: "ট্রাবলশুটিং"
useBlurEffect: "UI তে ব্লার ইফেক্ট ব্যাবহার করুন" useBlurEffect: "UI তে ব্লার ইফেক্ট ব্যাবহার করুন"
learnMore: "আরও জানুন" learnMore: "আরও জানুন"
misskeyUpdated: "Calckey আপডেট করা হয়েছে!" misskeyUpdated: "Firefish আপডেট করা হয়েছে!"
whatIsNew: "পরিবর্তনগুলি দেখান" whatIsNew: "পরিবর্তনগুলি দেখান"
translate: "অনুবাদ" translate: "অনুবাদ"
translatedFrom: "{x} হতে অনুবাদ করা" translatedFrom: "{x} হতে অনুবাদ করা"
@ -896,13 +896,13 @@ _registry:
keys: "কী - সমূহ" keys: "কী - সমূহ"
domain: "ডোমেন" domain: "ডোমেন"
createKey: "কী বানান" createKey: "কী বানান"
_aboutMisskey: _aboutFirefish:
about: "Misskey, একটি ওপেন সোর্স সফ্টওয়্যার যা 2014 সাল থেকে syuilo তৈরি করছেন।" about: "Misskey, একটি ওপেন সোর্স সফ্টওয়্যার যা 2014 সাল থেকে syuilo তৈরি করছেন।"
contributors: "প্রধান কন্ট্রিবিউটারগণ" contributors: "প্রধান কন্ট্রিবিউটারগণ"
allContributors: "সকল কন্ট্রিবিউটারগণ" allContributors: "সকল কন্ট্রিবিউটারগণ"
source: "সোর্স কোড" source: "সোর্স কোড"
translation: "Calckey অনুবাদ করুন" translation: "Firefish অনুবাদ করুন"
donate: "Calckey তে দান করুন" donate: "Firefish তে দান করুন"
morePatrons: "আরও অনেকে আমাদের সাহায্য করছেন। তাদের সবাইকে ধন্যবাদ 🥰" morePatrons: "আরও অনেকে আমাদের সাহায্য করছেন। তাদের সবাইকে ধন্যবাদ 🥰"
patrons: "সমর্থনকারী" patrons: "সমর্থনকারী"
_nsfw: _nsfw:
@ -911,7 +911,7 @@ _nsfw:
force: "সকল মিডিয়া লুকান" force: "সকল মিডিয়া লুকান"
_mfm: _mfm:
cheatSheet: "MFM চিটশিট" cheatSheet: "MFM চিটশিট"
intro: "MFM একটি মার্কআপ ভাষা যা Calckey-এর মধ্যে বিভিন্ন জায়গায় ব্যবহার করা যেতে পারে। এখানে আপনি MFM-এর সিনট্যাক্সগুলির একটি তালিকা দেখতে পারবেন।" intro: "MFM একটি মার্কআপ ভাষা যা Firefish-এর মধ্যে বিভিন্ন জায়গায় ব্যবহার করা যেতে পারে। এখানে আপনি MFM-এর সিনট্যাক্সগুলির একটি তালিকা দেখতে পারবেন।"
dummy: "মিসকি ফেডিভার্সের বিশ্বকে প্রসারিত করে" dummy: "মিসকি ফেডিভার্সের বিশ্বকে প্রসারিত করে"
mention: "উল্লেখ" mention: "উল্লেখ"
mentionDescription: "@ চিহ্ন + ব্যবহারকারীর নাম একটি নির্দিষ্ট ব্যবহারকারীকে নির্দেশ করতে ব্যবহার করা যায়।" mentionDescription: "@ চিহ্ন + ব্যবহারকারীর নাম একটি নির্দিষ্ট ব্যবহারকারীকে নির্দেশ করতে ব্যবহার করা যায়।"
@ -1108,7 +1108,7 @@ _time:
hour: "ঘণ্টা" hour: "ঘণ্টা"
day: "দিন" day: "দিন"
_tutorial: _tutorial:
title: "How to use Calckey" title: "How to use Firefish"
step1_1: "Welcome!" step1_1: "Welcome!"
step1_2: "Let's get you set up. You'll be up and running in no time!" 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." 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_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." 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_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_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 Calckey. This one does though! It's a bit complicated, but you'll get the hang of it in no time." 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!" step6_4: "Now go, explore, and have fun!"
_2fa: _2fa:
alreadyRegistered: "আপনি ইতিমধ্যে একটি 2-ফ্যাক্টর অথেনটিকেশন ডিভাইস নিবন্ধন করেছেন৷" alreadyRegistered: "আপনি ইতিমধ্যে একটি 2-ফ্যাক্টর অথেনটিকেশন ডিভাইস নিবন্ধন করেছেন৷"

View file

@ -1,7 +1,7 @@
_lang_: "Català" _lang_: "Català"
headlineMisskey: "Una xarxa social de codi obert, descentralitzada i gratuïta per headlineMisskey: "Una xarxa social de codi obert, descentralitzada i gratuïta per
a sempre! 🚀" 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! 🚀" i gratuïta per a sempre! 🚀"
monthAndDay: "{day}/{month}" monthAndDay: "{day}/{month}"
search: "Cerca" search: "Cerca"
@ -146,9 +146,9 @@ _mfm:
mention: "Menció" mention: "Menció"
quote: "Citar" quote: "Citar"
search: "Cercar" search: "Cercar"
dummy: Calckey amplia el món del Fediverse dummy: Firefish amplia el món del Fediverse
hashtag: Etiqueta 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 que es pot utilitzar en molts llocs. Aquí podeu veure una llista de tota la sintaxi
MFM disponible. MFM disponible.
hashtagDescription: Podeu especificar una etiqueta mitjançant un coixinet i un text. hashtagDescription: Podeu especificar una etiqueta mitjançant un coixinet i un text.
@ -796,7 +796,7 @@ flagAsBot: Marca aquest compte com a bot
flagAsBotDescription: Activa aquesta opció si aquest compte és controlat per un programa. 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 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 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? 🐱 flagAsCat: Ets un gat? 🐱
flagShowTimelineReplies: Mostra respostes a la línia de temps flagShowTimelineReplies: Mostra respostes a la línia de temps
flagAsCatDescription: Guanyaràs unes orelles de gat i parlares com un gat! flagAsCatDescription: Guanyaràs unes orelles de gat i parlares com un gat!
@ -847,7 +847,7 @@ mutedUsers: Usuaris silenciats
done: Fet done: Fet
preview: Vista prèvia preview: Vista prèvia
default: Per defecte 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 processing: S'està processant
noCustomEmojis: No hi ha cap emoji noCustomEmojis: No hi ha cap emoji
noJobs: No hi ha cap feina noJobs: No hi ha cap feina
@ -1227,7 +1227,7 @@ connectedTo: Aquest(s) compte(s) estan connectats
silenceConfirm: Segur que vols posa en silenci aquest usuari? silenceConfirm: Segur que vols posa en silenci aquest usuari?
unsilence: Desfés posar en silenci unsilence: Desfés posar en silenci
unsilenceConfirm: Segur que vols treure el silenci a aquest usuari? unsilenceConfirm: Segur que vols treure el silenci a aquest usuari?
aboutMisskey: Sobre Calckey aboutFirefish: Sobre Firefish
twoStepAuthentication: Autentificació de dos factors twoStepAuthentication: Autentificació de dos factors
moderator: Moderador moderator: Moderador
moderation: Moderació moderation: Moderació
@ -1380,7 +1380,7 @@ adminCustomCssWarn: Aquesta configuració només s'ha d'utilitzar si sabeu què
introducció de valors inadequats pot fer que els clients de TOTS deixin de funcionar 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 amb normalitat. Assegureu-vos que el vostre CSS funcioni correctament provant-lo
a la configuració de l'usuari. 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 recommendedInstances: Servidors recomanats
recommendedInstancesDescription: Servidors recomanats separats per salts de línia recommendedInstancesDescription: Servidors recomanats separats per salts de línia
que apareixen a la línia de temps recomanada. que apareixen a la línia de temps recomanada.
@ -1389,7 +1389,7 @@ splash: Pantalla de Benvinguda
swipeOnDesktop: Permet lliscar a l'estil del mòbil a l'escriptori swipeOnDesktop: Permet lliscar a l'estil del mòbil a l'escriptori
updateAvailable: Pot ser que hi hagi una actualització disponible! updateAvailable: Pot ser que hi hagi una actualització disponible!
logoImageUrl: URL de la imatge del logotip 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) a administradors)
replayTutorial: Repetició del tutorial replayTutorial: Repetició del tutorial
migration: Migració migration: Migració
@ -1490,7 +1490,7 @@ _registry:
silenced: Silenciat silenced: Silenciat
objectStorageUseSSL: Fes servir SSL objectStorageUseSSL: Fes servir SSL
yourAccountSuspendedTitle: Aquest compte està suspès 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}. {link}.
manageAccessTokens: Administrar tokens d'accés manageAccessTokens: Administrar tokens d'accés
accountInfo: Informació del compte accountInfo: Informació del compte
@ -1551,7 +1551,7 @@ searchResult: Resultats de la cerca
hashtags: Etiquetes hashtags: Etiquetes
troubleshooting: Resolució de problemes troubleshooting: Resolució de problemes
learnMore: Més informació learnMore: Més informació
misskeyUpdated: Calckey s'ha actualitzat! misskeyUpdated: Firefish s'ha actualitzat!
translate: Tradueix translate: Tradueix
translatedFrom: Traduït per {x} translatedFrom: Traduït per {x}
aiChanMode: Ai-chan a la interfície d'usuari clàssica aiChanMode: Ai-chan a la interfície d'usuari clàssica
@ -1591,21 +1591,21 @@ cannotUploadBecauseNoFreeSpace: La pujada ha fallat a causa de la manca d'espai
enableAutoSensitive: Marcatge automàtic NSFW enableAutoSensitive: Marcatge automàtic NSFW
moveTo: Mou el compte actual al compte nou moveTo: Mou el compte actual al compte nou
customKaTeXMacro: Macros KaTeX personalitzats customKaTeXMacro: Macros KaTeX personalitzats
_aboutMisskey: _aboutFirefish:
contributors: Col·laboradors principals contributors: Col·laboradors principals
allContributors: Tots els col·laboradors allContributors: Tots els col·laboradors
donate: Fes una donació a Calckey donate: Fes una donació a Firefish
source: Codi font source: Codi font
translation: Tradueix Calckey translation: Tradueix Firefish
about: Calckey és una bifurcació de Misskey feta per ThatOneCalculator, que està about: Firefish és una bifurcació de Misskey feta per ThatOneCalculator, que està
en desenvolupament des del 2022. en desenvolupament des del 2022.
morePatrons: També agraïm el suport de molts altres ajudants que no figuren aquí. morePatrons: També agraïm el suport de molts altres ajudants que no figuren aquí.
Gràcies! 🥰 Gràcies! 🥰
patrons: Mecenes de Calckey patrons: Mecenes de Firefish
patronsList: Llistats cronològicament, no per la quantitat donada. Fes una donació patronsList: Llistats cronològicament, no per la quantitat donada. Fes una donació
amb l'enllaç de dalt per veure el teu nom aquí! amb l'enllaç de dalt per veure el teu nom aquí!
donateTitle: T'agrada Calckey? donateTitle: T'agrada Firefish?
pleaseDonateToCalckey: Penseu en fer una donació a Calckey per donar suport al seu pleaseDonateToFirefish: Penseu en fer una donació a Firefish per donar suport al seu
desenvolupament. desenvolupament.
pleaseDonateToHost: Penseu també en fer una donació a la vostre instància, {host}, pleaseDonateToHost: Penseu també en fer una donació a la vostre instància, {host},
per ajudar-lo a suportar els costos de funcionament. per ajudar-lo a suportar els costos de funcionament.
@ -1707,7 +1707,7 @@ ascendingOrder: Ascendent
descendingOrder: Descendent descendingOrder: Descendent
scratchpad: Bloc de notes scratchpad: Bloc de notes
scratchpadDescription: El bloc de notes proporciona un entorn per experiments amb 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 output: Sortida
script: Script script: Script
disablePagesScript: Desactivar AiScript a les pàgines disablePagesScript: Desactivar AiScript a les pàgines
@ -1719,9 +1719,9 @@ accentColor: Color principal
textColor: Color del text textColor: Color del text
value: Valor value: Valor
sendErrorReportsDescription: "Quan està activat, quan es produeixi un problema la sendErrorReportsDescription: "Quan està activat, quan es produeixi un problema la
informació detallada d'errors es compartirà amb Calckey, ajudant a millorar la qualitat informació detallada d'errors es compartirà amb Firefish, ajudant a millorar la qualitat
de Calckey.\nAixò inclourà informació com la versió del vostre sistema operatiu, de Firefish.\nAixò inclourà informació com la versió del vostre sistema operatiu,
quin navegador utilitzeu, la vostra activitat a Calckey, etc." quin navegador utilitzeu, la vostra activitat a Firefish, etc."
myTheme: El meu tema myTheme: El meu tema
backgroundColor: Color de fons backgroundColor: Color de fons
saveAs: Desa com... saveAs: Desa com...
@ -1902,14 +1902,14 @@ _tutorial:
step6_1: Aleshores, què és aquest lloc? step6_1: Aleshores, què és aquest lloc?
step6_4: Ara ves, explora i diverteix-te! 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! 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! step1_1: Benvingut!
step2_1: En primer lloc, empleneu el vostre perfil. step2_1: En primer lloc, empleneu el vostre perfil.
step4_1: Anem a treure't allà fora. 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 step5_5: La línea de temps Social {icon} és una combinació de les línies de temps
d'Inici i Local. d'Inici i Local.
step6_3: Cada servidor funciona de diferents maneres, i no tots els servidors executen 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. temps.
step2_2: Proporcionar informació sobre qui sou facilitarà que altres puguin saber step2_2: Proporcionar informació sobre qui sou facilitarà que altres puguin saber
si volen veure les vostres notes o seguir-vos. si volen veure les vostres notes o seguir-vos.
@ -1920,7 +1920,7 @@ _tutorial:
step4_2: A algunes persones els agrada fer una publicació de {introduction} o un step4_2: A algunes persones els agrada fer una publicació de {introduction} o un
senzill "Hola món!" senzill "Hola món!"
step5_1: Línies de temps, línies de temps a tot arreu! 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. una xarxa interconnectada de milers de servidors.
_permissions: _permissions:
"read:account": Consulta la informació del teu compte "read:account": Consulta la informació del teu compte
@ -2094,11 +2094,11 @@ _experiments:
release: Publicà release: Publicà
title: Experiments title: Experiments
enablePostImports: Activar l'importació de publicacions 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 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. 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 noGraze: Si us plau, desactiva l'extensió del navegador "Graze for Mastodon", ja que
interfereix amb Calckey. interfereix amb Firefish.
accessibility: Accessibilitat accessibility: Accessibilitat
jumpToReply: Vés a la resposta jumpToReply: Vés a la resposta
newer: Més nou newer: Més nou
@ -2113,7 +2113,7 @@ expandOnNoteClick: Obre la publicació amb un clic
expandOnNoteClickDesc: Si està desactivat, encara pots obrir les publicacions al menú expandOnNoteClickDesc: Si està desactivat, encara pots obrir les publicacions al menú
del botó dret o fent clic a la marca de temps. del botó dret o fent clic a la marca de temps.
channelFederationWarn: Els canals encara no es federen amb altres servidors 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 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. 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 clipsDesc: Els clips són com marcadors categoritzats que es poden compartir. Podeu

View file

@ -1,6 +1,6 @@
_lang_: "Čeština" _lang_: "Čeština"
headlineMisskey: "Síť propojená poznámkami" 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\ \"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\ \nPomocí \"reakcí\" můžete sdílet své názory a pocity na ostatní poznámky. \U0001F44D\
\nPojďte objevovat nový svět! \U0001F680" \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" flagAsBot: "Tento účet je bot"
flagAsBotDescription: "Pokud je tento účet kontrolován programem zaškrtněte tuto možnost.\ 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\ \ 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" flagAsCat: "Tenhle účet je kočka"
flagAsCatDescription: "Vyberte tuto možnost aby tento účet byl označen jako kočka." flagAsCatDescription: "Vyberte tuto možnost aby tento účet byl označen jako kočka."
flagShowTimelineReplies: "Zobrazovat odpovědi na časové ose" flagShowTimelineReplies: "Zobrazovat odpovědi na časové ose"
@ -203,7 +203,7 @@ blockedInstances: "Blokované instance"
noUsers: "Žádní uživatelé" noUsers: "Žádní uživatelé"
editProfile: "Upravit můj profil" editProfile: "Upravit můj profil"
pinLimitExceeded: "Nemůžete připnout další poznámky." 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" done: "Hotovo"
processing: "Zpracovávám" processing: "Zpracovávám"
preview: "Náhled" preview: "Náhled"
@ -347,7 +347,7 @@ recentlyUpdatedUsers: "Nedávno aktívni uživatelé"
popularTags: "Populární tagy" popularTags: "Populární tagy"
userList: "Seznamy" userList: "Seznamy"
about: "Informace" about: "Informace"
aboutMisskey: "O Calckey" aboutFirefish: "O Firefish"
administrator: "Administrátor" administrator: "Administrátor"
token: "Token" token: "Token"
twoStepAuthentication: "Dvoufaktorová autentikace" twoStepAuthentication: "Dvoufaktorová autentikace"
@ -646,7 +646,7 @@ _registry:
keys: "Klíče" keys: "Klíče"
domain: "Doména" domain: "Doména"
createKey: "Vytvořit klíč" createKey: "Vytvořit klíč"
_aboutMisskey: _aboutFirefish:
allContributors: "Všichni přispěvatelé" allContributors: "Všichni přispěvatelé"
source: "Zdrojový kód" source: "Zdrojový kód"
_mfm: _mfm:

View file

@ -159,7 +159,7 @@ serverIsDead: Serveren svarer ikke. Vær sød at vente et styk tid og prøv igen
editWidgetsExit: Færdig editWidgetsExit: Færdig
headlineMisskey: En åben-kildekode, decentraliseret social-media platform som er frit headlineMisskey: En åben-kildekode, decentraliseret social-media platform som er frit
forevigt! 🚀 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!🚀 platform som er frit forevigt!🚀
enableEmojiReactions: Aktivere emoji reaktioner enableEmojiReactions: Aktivere emoji reaktioner
unsuspendConfirm: Er du sikker på at du vil ikke suspendere denne konto endnu længere? 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 flagAsBotDescription: Aktivere denne valgmulighed hvis denne konto er kontrolleret
af en komputerprogram. Hvis den et tændt så vil det signalere til andre udviklere 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 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? 😺 flagAsCat: Er du en kat? 😺
flagSpeakAsCat: Tale som en kat flagSpeakAsCat: Tale som en kat
emojiUrl: Emoji URL emojiUrl: Emoji URL

View file

@ -1,7 +1,7 @@
_lang_: "Deutsch" _lang_: "Deutsch"
headlineMisskey: "Eine dezentralisierte Open-Source Social Media Plattform, die für headlineMisskey: "Eine dezentralisierte Open-Source Social Media Plattform, die für
immer gratis bleibt! 🚀" 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!🚀" Plattform, die für immer gratis bleibt!🚀"
monthAndDay: "{month}/{day}" monthAndDay: "{month}/{day}"
search: "Suchen" search: "Suchen"
@ -155,7 +155,7 @@ cacheRemoteFilesDescription: "Ist diese Einstellung deaktiviert, so werden Datei
flagAsBot: "Dieses Nutzerkonto als Bot kennzeichnen" flagAsBot: "Dieses Nutzerkonto als Bot kennzeichnen"
flagAsBotDescription: "Aktiviere diese Option, falls dieses Nutzerkonto durch ein flagAsBotDescription: "Aktiviere diese Option, falls dieses Nutzerkonto durch ein
Programm gesteuert wird. Falls aktiviert, agiert es als Flag für andere Entwickler 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." interne Systeme dieses Nutzerkonto als Bot behandeln."
flagAsCat: "Bist du eine Katze? 😺" flagAsCat: "Bist du eine Katze? 😺"
flagAsCatDescription: "Du bekommst Katzenohren und sprichst wie eine Katze!" flagAsCatDescription: "Du bekommst Katzenohren und sprichst wie eine Katze!"
@ -225,7 +225,7 @@ noUsers: "Es sind keine Nutzer vorhanden"
editProfile: "Profil bearbeiten" editProfile: "Profil bearbeiten"
noteDeleteConfirm: "Sind Sie sicher, dass Sie diesen Beitrag löschen wollen?" noteDeleteConfirm: "Sind Sie sicher, dass Sie diesen Beitrag löschen wollen?"
pinLimitExceeded: "Sie können keine weiteren Beiträge anpinnen" 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." Admin-Benutzer."
done: "Erledigt" done: "Erledigt"
processing: "In Bearbeitung" processing: "In Bearbeitung"
@ -419,7 +419,7 @@ exploreFediverse: "Das Fediverse erkunden"
popularTags: "Beliebte Schlagwörter" popularTags: "Beliebte Schlagwörter"
userList: "Liste" userList: "Liste"
about: "Über" about: "Über"
aboutMisskey: "Über Calckey" aboutFirefish: "Über Firefish"
administrator: "Administrator" administrator: "Administrator"
token: "Token" token: "Token"
twoStepAuthentication: "Zwei-Faktor-Authentifizierung" twoStepAuthentication: "Zwei-Faktor-Authentifizierung"
@ -575,7 +575,7 @@ ascendingOrder: "Aufsteigende Reihenfolge"
descendingOrder: "Absteigende Reihenfolge" descendingOrder: "Absteigende Reihenfolge"
scratchpad: "Testumgebung" scratchpad: "Testumgebung"
scratchpadDescription: "Die Testumgebung bietet einen Bereich für AiScript-Experimente. 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." überprüfen."
output: "Ausgabe" output: "Ausgabe"
script: "Skript" script: "Skript"
@ -717,7 +717,7 @@ unclip: "Aus Clip entfernen"
confirmToUnclipAlreadyClippedNote: "Dieser Beitrag ist bereits im \"{name}\" Clip confirmToUnclipAlreadyClippedNote: "Dieser Beitrag ist bereits im \"{name}\" Clip
enthalten. Möchtest du ihn aus diesem Clip entfernen?" enthalten. Möchtest du ihn aus diesem Clip entfernen?"
public: "Öffentlich" 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." Auf {link} kannst du mithelfen."
manageAccessTokens: "Zugriffstokens verwalten" manageAccessTokens: "Zugriffstokens verwalten"
accountInfo: "Nutzerkonto-Informationen" accountInfo: "Nutzerkonto-Informationen"
@ -777,10 +777,10 @@ nUsers: "{n} Nutzer"
nNotes: "{n} Beiträge" nNotes: "{n} Beiträge"
sendErrorReports: "Fehlerberichte senden" sendErrorReports: "Fehlerberichte senden"
sendErrorReportsDescription: "Ist diese Option aktiviert, so werden beim Auftreten sendErrorReportsDescription: "Ist diese Option aktiviert, so werden beim Auftreten
von Fehlern detaillierte Fehlerinformationen an Calckey weitergegeben, was zur Verbesserung von Fehlern detaillierte Fehlerinformationen an Firefish weitergegeben, was zur Verbesserung
der Qualität von Calckey beiträgt.\nEnthalten in diesen Informationen sind u.a. 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 die Version deines Betriebssystems, welchen Browser du verwendest und ein Verlauf
deiner Aktivitäten innerhalb Calckey." deiner Aktivitäten innerhalb Firefish."
myTheme: "Meine Farbkombination" myTheme: "Meine Farbkombination"
backgroundColor: "Hintergrundfarbe" backgroundColor: "Hintergrundfarbe"
accentColor: "Akzentfarbe" accentColor: "Akzentfarbe"
@ -875,7 +875,7 @@ hashtags: "Hashtags"
troubleshooting: "Problembehandlung" troubleshooting: "Problembehandlung"
useBlurEffect: "Weichzeichnungseffekt in der Benutzeroberfläche verwenden" useBlurEffect: "Weichzeichnungseffekt in der Benutzeroberfläche verwenden"
learnMore: "Mehr erfahren" learnMore: "Mehr erfahren"
misskeyUpdated: "Calckey wurde aktualisiert!" misskeyUpdated: "Firefish wurde aktualisiert!"
whatIsNew: "Änderungen anzeigen" whatIsNew: "Änderungen anzeigen"
translate: "Übersetzen" translate: "Übersetzen"
translatedFrom: "Aus {x} übersetzt" translatedFrom: "Aus {x} übersetzt"
@ -1085,14 +1085,14 @@ _registry:
keys: "Schlüssel" keys: "Schlüssel"
domain: "Domain" domain: "Domain"
createKey: "Schlüssel erstellen" createKey: "Schlüssel erstellen"
_aboutMisskey: _aboutFirefish:
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." wird."
contributors: "Hauptmitwirkende" contributors: "Hauptmitwirkende"
allContributors: "Alle Mitwirkenden" allContributors: "Alle Mitwirkenden"
source: "Quellcode" source: "Quellcode"
translation: "Calckey übersetzen" translation: "Firefish übersetzen"
donate: "An Calckey spenden" donate: "An Firefish spenden"
morePatrons: "Wir schätzen ebenso die Unterstützung vieler anderer hier nicht gelisteter morePatrons: "Wir schätzen ebenso die Unterstützung vieler anderer hier nicht gelisteter
Personen sehr. Danke! 🥰" Personen sehr. Danke! 🥰"
patrons: "UnterstützerInnen" patrons: "UnterstützerInnen"
@ -1102,10 +1102,10 @@ _nsfw:
force: "Alle Medien verbergen" force: "Alle Medien verbergen"
_mfm: _mfm:
cheatSheet: "MFM Spickzettel" 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 Programmen verwendet wird und an vielen Stellen eingesetzt werden kann. Hier können
Sie eine Liste aller verfügbaren MFM-Syntaxe einsehen." 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" mention: "Erwähnung"
mentionDescription: "Mit At-Zeichen und Nutzername kann ein individueller Nutzer mentionDescription: "Mit At-Zeichen und Nutzername kann ein individueller Nutzer
angegeben werden." angegeben werden."
@ -1337,7 +1337,7 @@ _time:
hour: "Stunde(n)" hour: "Stunde(n)"
day: "Tag(en)" day: "Tag(en)"
_tutorial: _tutorial:
title: "Wie man Calckey benutzt" title: "Wie man Firefish benutzt"
step1_1: "Willkommen!" step1_1: "Willkommen!"
step1_2: "Wir werden Sie einrichten. Sie werden im Handumdrehen einsatzbereit sein!" step1_2: "Wir werden Sie einrichten. Sie werden im Handumdrehen einsatzbereit sein!"
step2_1: "Bitte füllen Sie zuerst Ihr Profil aus." 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 step5_7: "In der {icon} Global-Timeline können Sie Beiträge von allen verknüpften
Servern aus dem Fediverse sehen." Servern aus dem Fediverse sehen."
step6_1: "Also, was ist das hier?" 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, Fediverse beigetreten, einem Netzwerk mit Tausenden von, miteinander verbundenen,
Servern." Servern."
step6_3: "Jeder der Server funktioniert auf unterschiedliche Weise, und nicht alle 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." 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!" step6_4: "Jetzt bist Du startbereit, entdecke die Möglichkeiten und hab Spaß dabei!"
_2fa: _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 swipeOnDesktop: Am Desktop PC das Wischen wie bei mobilen Geräten zulassen
enterSendsMessage: Drücken sie zum Senden des Beitrages die Eingabetaste (Strg-Taste enterSendsMessage: Drücken sie zum Senden des Beitrages die Eingabetaste (Strg-Taste
ausgeschaltet) ausgeschaltet)
showUpdates: Zeigt ein Popup-Fenster an, wenn Calckey aktualisiert wird. showUpdates: Zeigt ein Popup-Fenster an, wenn Firefish aktualisiert wird.
socialTimeline: Social-Timeline socialTimeline: Social-Timeline
moveFrom: Bisheriges Nutzerkonto zu diesem Nutzerkonto umziehen moveFrom: Bisheriges Nutzerkonto zu diesem Nutzerkonto umziehen
_messaging: _messaging:
@ -2058,7 +2058,7 @@ allowedInstancesDescription: Hosts von Servern, die zur Verbindung auf die Liste
(gilt nur im privaten Modus). (gilt nur im privaten Modus).
migration: Migration migration: Migration
updateAvailable: Es könnte eine Aktualisierung verfügbar sein! 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), customMOTDDescription: Benutzerdefinierte Meldungen für die Meldung des Tages (Begrüßungsbildschirm),
die durch Zeilenumbrüche getrennt sind und nach dem Zufallsprinzip jedes Mal angezeigt die durch Zeilenumbrüche getrennt sind und nach dem Zufallsprinzip jedes Mal angezeigt
werden, wenn ein Benutzer die Seite (neu) lädt. 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: _experiments:
title: Funktionstests title: Funktionstests
enablePostImports: Beitragsimporte aktivieren 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 Mastodon, Akkoma und Pleroma Accounts zu importieren. Bei Engpässen in der Warteschlange
kann es zu Verlangsamungen beim Laden während des Imports kommen. kann es zu Verlangsamungen beim Laden während des Imports kommen.
noGraze: Bitte deaktivieren Sie die Browsererweiterung "Graze for Mastodon", da sie 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 indexFrom: Indexieren ab Beitragskennung aufwärts
indexNotice: Wird jetzt indexiert. Dies wird wahrscheinlich eine Weile dauern, bitte indexNotice: Wird jetzt indexiert. Dies wird wahrscheinlich eine Weile dauern, bitte
starten Sie Ihren Server für mindestens eine Stunde nicht neu. starten Sie Ihren Server für mindestens eine Stunde nicht neu.
@ -2138,10 +2138,10 @@ _dialog:
charactersExceeded: 'Maximale Anzahl an Zeichen aufgebraucht! Limit: {current} / charactersExceeded: 'Maximale Anzahl an Zeichen aufgebraucht! Limit: {current} /
{max}' {max}'
charactersBelow: Nicht genug Zeichen! Du hast aktuell {current} von {min} Zeichen 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 antennasDesc: "Antennen zeigen neue Posts an, die deinen definierten Kriterien entsprechen!\n
Sie können von der Timeline-Seite aufgerufen werden." Sie können von der Timeline-Seite aufgerufen werden."
isPatron: Calckey Patron isPatron: Firefish Patron
removeReaction: Entferne deine Reaktion removeReaction: Entferne deine Reaktion
listsDesc: Listen lassen dich Timelines mit bestimmten Nutzer:innen erstellen. Sie listsDesc: Listen lassen dich Timelines mit bestimmten Nutzer:innen erstellen. Sie
können von der Timeline-Seite erreicht werden. können von der Timeline-Seite erreicht werden.

View file

@ -570,7 +570,7 @@ height: Ύψος
edit: Επεξεργασία edit: Επεξεργασία
headlineMisskey: Μία ανοιχτού λογισμικού, αποκεντρωμένη πλατφόρμα κοινωνικής δικτύωσης headlineMisskey: Μία ανοιχτού λογισμικού, αποκεντρωμένη πλατφόρμα κοινωνικής δικτύωσης
που θα είναι για πάντα ελεύθερη! 🚀 που θα είναι για πάντα ελεύθερη! 🚀
introMisskey: Καλώς ήρθατε! Το Calckey είναι μία ανοιχτού λογισμικού, αποκεντρωμένη introMisskey: Καλώς ήρθατε! Το Firefish είναι μία ανοιχτού λογισμικού, αποκεντρωμένη
πλατφόρμα κοινωνικής δικτύωσης που θα είναι για πάντα ελεύθερη! 🚀 πλατφόρμα κοινωνικής δικτύωσης που θα είναι για πάντα ελεύθερη! 🚀
markAsSensitive: Επισήμανση ως Ευαίσθητο Περιεχόμενο (NSFW) markAsSensitive: Επισήμανση ως Ευαίσθητο Περιεχόμενο (NSFW)
autoAcceptFollowed: Αυτόματη έγκριση αιτημάτων ακολούθησης από λογαριασμούς που ακολουθείτε autoAcceptFollowed: Αυτόματη έγκριση αιτημάτων ακολούθησης από λογαριασμούς που ακολουθείτε
@ -603,7 +603,7 @@ blockedInstances: Μπλοκαρισμένα Instances
blockedInstancesDescription: Παραθέστε τις διευθύνσεις (hostnames) των instances που blockedInstancesDescription: Παραθέστε τις διευθύνσεις (hostnames) των instances που
θέλετε να μπλοκάρετε. Τα παρακάτω instances δεν θα μπορούν πλέον να επικοινωνούν θέλετε να μπλοκάρετε. Τα παρακάτω instances δεν θα μπορούν πλέον να επικοινωνούν
με αυτό το instance. με αυτό το instance.
intro: Η εγκατάσταση του Calckey τελείωσε! Παρακαλώ δημιουργήστε ένα μέλος διαχειριστή/στρια. intro: Η εγκατάσταση του Firefish τελείωσε! Παρακαλώ δημιουργήστε ένα μέλος διαχειριστή/στρια.
noThankYou: Όχι, ευχαριστώ noThankYou: Όχι, ευχαριστώ
addInstance: Προσθήκη instance addInstance: Προσθήκη instance
renoteMute: Σίγαση προωθήσεων renoteMute: Σίγαση προωθήσεων
@ -619,7 +619,7 @@ renoteUnmute: Διακοπή σίγασης προωθήσεων
flagAsBotDescription: Ενεργοποιήστε αυτή την επιλογή αν αυτός ο λογαριασμός ελέγχεται flagAsBotDescription: Ενεργοποιήστε αυτή την επιλογή αν αυτός ο λογαριασμός ελέγχεται
από ένα πρόγραμμα. Αν ενεργοποιηθεί, θα λειτουργεί σαν σημάδι για τους προγραμματιστές, από ένα πρόγραμμα. Αν ενεργοποιηθεί, θα λειτουργεί σαν σημάδι για τους προγραμματιστές,
ώστε να αποφύγουν ατέρμονη αλληλεπίδραση με άλλα bots και για να ρυθμίσει τα εσωτερικά ώστε να αποφύγουν ατέρμονη αλληλεπίδραση με άλλα bots και για να ρυθμίσει τα εσωτερικά
συστήματα του Calckey ώστε να αντιμετωπίζουν αυτόν τον λογαριασμό ως bot. συστήματα του Firefish ώστε να αντιμετωπίζουν αυτόν τον λογαριασμό ως bot.
flagShowTimelineRepliesDescription: Εμφάνιση απαντήσεων μελών σε δημοσιεύσεις άλλων flagShowTimelineRepliesDescription: Εμφάνιση απαντήσεων μελών σε δημοσιεύσεις άλλων
μελών στο χρονολόγιο. μελών στο χρονολόγιο.
latestRequestReceivedAt: Τελευταίο αίτημα ελήφθη latestRequestReceivedAt: Τελευταίο αίτημα ελήφθη
@ -711,7 +711,7 @@ installedDate: Εξουσιοδοτήθηκε στις
lastUsedDate: Χρησιμοποιήθηκε τελευταία φορά στις lastUsedDate: Χρησιμοποιήθηκε τελευταία φορά στις
scratchpadDescription: Το σημειωματάριο παρέχει ένα περιβάλλον για πειραματισμό με scratchpadDescription: Το σημειωματάριο παρέχει ένα περιβάλλον για πειραματισμό με
AiScript. Σε αυτό μπορείτε να γράψετε, να εκτελέσετε, και να δοκιμάσετε τα αποτελέσματα AiScript. Σε αυτό μπορείτε να γράψετε, να εκτελέσετε, και να δοκιμάσετε τα αποτελέσματα
της αλληλεπίδρασης του AiScript με το Calckey. της αλληλεπίδρασης του AiScript με το Firefish.
scratchpad: Σημειωματάριο scratchpad: Σημειωματάριο
output: Αποτέλεσμα output: Αποτέλεσμα
updateRemoteUser: Ανανέωση πληροφοριών απομακρυσμένου μέλους updateRemoteUser: Ανανέωση πληροφοριών απομακρυσμένου μέλους
@ -762,7 +762,7 @@ dayOverDayChanges: Αλλαγές την τελευταία ημέρα
promotion: Προμοταρισμένα promotion: Προμοταρισμένα
promote: Προμοτάρισμα promote: Προμοτάρισμα
squareAvatars: Εμφάνιση τετραγωνισμένων άβαταρ squareAvatars: Εμφάνιση τετραγωνισμένων άβαταρ
aboutMisskey: Σχετικά με το Calckey aboutFirefish: Σχετικά με το Firefish
maintainerName: Προγραμματιστής/στρια maintainerName: Προγραμματιστής/στρια
uploadFromUrlRequested: Το ανέβασμα ζητήθηκε uploadFromUrlRequested: Το ανέβασμα ζητήθηκε
themeForLightMode: Θέμα για τη Φωτεινή Λειτουργία themeForLightMode: Θέμα για τη Φωτεινή Λειτουργία

View file

@ -1,11 +1,11 @@
_lang_: "English" _lang_: "English"
headlineMisskey: "An open source, decentralized social media platform that's free headlineMisskey: "An open source, decentralized social media platform that's free
forever! 🚀" 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! 🚀" that's free forever! 🚀"
monthAndDay: "{month}/{day}" monthAndDay: "{month}/{day}"
search: "Search" search: "Search"
searchPlaceholder: "Search Calckey" searchPlaceholder: "Search Firefish"
notifications: "Notifications" notifications: "Notifications"
username: "Username" username: "Username"
password: "Password" password: "Password"
@ -165,7 +165,7 @@ cacheRemoteFilesDescription: "When this setting is disabled, remote files are lo
flagAsBot: "Mark this account as a bot" flagAsBot: "Mark this account as a bot"
flagAsBotDescription: "Enable this option if this account is controlled by a program. 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 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." as a bot."
flagAsCat: "Are you a cat? 😺" flagAsCat: "Are you a cat? 😺"
flagAsCatDescription: "You'll get cat ears and speak like 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" editProfile: "Edit profile"
noteDeleteConfirm: "Are you sure you want to delete this post?" noteDeleteConfirm: "Are you sure you want to delete this post?"
pinLimitExceeded: "You cannot pin any more posts" 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" done: "Done"
processing: "Processing" processing: "Processing"
preview: "Preview" preview: "Preview"
@ -438,7 +438,7 @@ exploreFediverse: "Explore the Fediverse"
popularTags: "Popular tags" popularTags: "Popular tags"
userList: "Lists" userList: "Lists"
about: "About" about: "About"
aboutMisskey: "About Calckey" aboutFirefish: "About Firefish"
administrator: "Administrator" administrator: "Administrator"
token: "Token" token: "Token"
twoStepAuthentication: "Two-factor authentication" twoStepAuthentication: "Two-factor authentication"
@ -593,7 +593,7 @@ ascendingOrder: "Ascending"
descendingOrder: "Descending" descendingOrder: "Descending"
scratchpad: "Scratchpad" scratchpad: "Scratchpad"
scratchpadDescription: "The scratchpad provides an environment for AiScript experiments. 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." it."
output: "Output" output: "Output"
script: "Script" script: "Script"
@ -739,7 +739,7 @@ unclip: "Unclip"
confirmToUnclipAlreadyClippedNote: "This post is already part of the \"{name}\" clip. confirmToUnclipAlreadyClippedNote: "This post is already part of the \"{name}\" clip.
Do you want to remove it from this clip instead?" Do you want to remove it from this clip instead?"
public: "Public" 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}." help at {link}."
manageAccessTokens: "Manage access tokens" manageAccessTokens: "Manage access tokens"
accountInfo: "Account Info" accountInfo: "Account Info"
@ -797,9 +797,9 @@ nUsers: "{n} Users"
nNotes: "{n} Posts" nNotes: "{n} Posts"
sendErrorReports: "Send error reports" sendErrorReports: "Send error reports"
sendErrorReportsDescription: "When turned on, detailed error information will be shared 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, 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" myTheme: "My theme"
backgroundColor: "Background color" backgroundColor: "Background color"
accentColor: "Accent color" accentColor: "Accent color"
@ -905,7 +905,7 @@ hashtags: "Hashtags"
troubleshooting: "Troubleshooting" troubleshooting: "Troubleshooting"
useBlurEffect: "Use blur effects in the UI" useBlurEffect: "Use blur effects in the UI"
learnMore: "Learn more" learnMore: "Learn more"
misskeyUpdated: "Calckey has been updated!" misskeyUpdated: "Firefish has been updated!"
whatIsNew: "Show changes" whatIsNew: "Show changes"
translate: "Translate" translate: "Translate"
translatedFrom: "Translated from {x}" translatedFrom: "Translated from {x}"
@ -1047,7 +1047,7 @@ customSplashIcons: "Custom splash screen icons (urls)"
customSplashIconsDescription: "URLs for custom splash screen icons separated by line 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 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." 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" recommendedInstances: "Recommended servers"
recommendedInstancesDescription: "Recommended servers separated by line breaks to recommendedInstancesDescription: "Recommended servers separated by line breaks to
appear in the recommended timeline." appear in the recommended timeline."
@ -1057,7 +1057,7 @@ updateAvailable: "There might be an update available!"
swipeOnMobile: "Allow swiping between pages" swipeOnMobile: "Allow swiping between pages"
swipeOnDesktop: "Allow mobile-style swiping on desktop" swipeOnDesktop: "Allow mobile-style swiping on desktop"
logoImageUrl: "Logo image URL" 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" replayTutorial: "Replay tutorial"
migration: "Migration" migration: "Migration"
moveTo: "Move current account to new account" moveTo: "Move current account to new account"
@ -1104,14 +1104,14 @@ preventAiLearning: "Prevent AI bot scraping"
preventAiLearningDescription: "Request third-party AI language models not to study preventAiLearningDescription: "Request third-party AI language models not to study
content you upload, such as posts and images." content you upload, such as posts and images."
noGraze: "Please disable the \"Graze for Mastodon\" browser extension, as it interferes 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 silencedWarning: "This page is showing because these users are from servers your admin
silenced, so they may potentially be spam." silenced, so they may potentially be spam."
isBot: "This account is a bot" isBot: "This account is a bot"
isLocked: "This account has follow approvals" isLocked: "This account has follow approvals"
isModerator: "Moderator" isModerator: "Moderator"
isAdmin: "Administrator" isAdmin: "Administrator"
isPatron: "Calckey Patron" isPatron: "Firefish Patron"
reactionPickerSkinTone: "Preferred emoji skin tone" reactionPickerSkinTone: "Preferred emoji skin tone"
enableServerMachineStats: "Enable server hardware statistics" enableServerMachineStats: "Enable server hardware statistics"
enableIdenticonGeneration: "Enable Identicon generation" enableIdenticonGeneration: "Enable Identicon generation"
@ -1215,22 +1215,22 @@ _registry:
keys: "Keys" keys: "Keys"
domain: "Domain" domain: "Domain"
createKey: "Create key" createKey: "Create key"
_aboutMisskey: _aboutFirefish:
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." development since 2022."
contributors: "Main contributors" contributors: "Main contributors"
allContributors: "All contributors" allContributors: "All contributors"
source: "Source code" source: "Source code"
translation: "Translate Calckey" translation: "Translate Firefish"
donate: "Donate to Calckey" donate: "Donate to Firefish"
donateTitle: "Enjoying Calckey?" donateTitle: "Enjoying Firefish?"
pleaseDonateToCalckey: "Please consider donating to Calckey to support its development." pleaseDonateToFirefish: "Please consider donating to Firefish to support its development."
pleaseDonateToHost: "Please also consider donating to your home server, {host}, to help support its operation costs." pleaseDonateToHost: "Please also consider donating to your home server, {host}, to help support its operation costs."
donateHost: "Donate to {host}" donateHost: "Donate to {host}"
morePatrons: "We also appreciate the support of many other helpers not listed here. morePatrons: "We also appreciate the support of many other helpers not listed here.
Thank you! 🥰" Thank you! 🥰"
sponsors: "Calckey sponsors" sponsors: "Firefish sponsors"
patrons: "Calckey patrons" patrons: "Firefish patrons"
patronsList: "Listed chronologically, not by donation size. Donate with the link above to get your name on here!" patronsList: "Listed chronologically, not by donation size. Donate with the link above to get your name on here!"
_nsfw: _nsfw:
respect: "Hide NSFW media" respect: "Hide NSFW media"
@ -1242,9 +1242,9 @@ _mfm:
warn: "MFM may contain rapidly moving or flashy animations" warn: "MFM may contain rapidly moving or flashy animations"
alwaysPlay: "Always autoplay all animated MFM" alwaysPlay: "Always autoplay all animated MFM"
cheatSheet: "MFM Cheatsheet" 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." 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" advanced: "Advanced MFM"
advancedDescription: "If disabled, only allows for basic markup unless animated MFM is playing" advancedDescription: "If disabled, only allows for basic markup unless animated MFM is playing"
mention: "Mention" mention: "Mention"
@ -1477,7 +1477,7 @@ _filters:
followingOnly: "Following only" followingOnly: "Following only"
followersOnly: "Followers only" followersOnly: "Followers only"
_tutorial: _tutorial:
title: "How to use Calckey" title: "How to use Firefish"
step1_1: "Welcome!" step1_1: "Welcome!"
step1_2: "Let's get you set up. You'll be up and running in no time!" 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." step2_1: "First, please fill out your profile."
@ -1502,9 +1502,9 @@ _tutorial:
step5_7: "The Global {icon} timeline is where you can see posts from every other\ step5_7: "The Global {icon} timeline is where you can see posts from every other\
\ connected server." \ connected server."
step6_1: "So, what is this place?" 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." 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 This one does though! It's a bit complicated, but you'll get the hang of it in
no time." no time."
step6_4: "Now go, explore, and have fun!" step6_4: "Now go, explore, and have fun!"
@ -2091,7 +2091,7 @@ _deck:
_experiments: _experiments:
title: "Experiments" title: "Experiments"
enablePostImports: "Enable post imports" 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\ \ Misskey, Mastodon, Akkoma, and Pleroma accounts. It may cause slowdowns during\
\ load if your queue is bottlenecked." \ load if your queue is bottlenecked."
_dialog: _dialog:

View file

@ -1,7 +1,7 @@
_lang_: "Español" _lang_: "Español"
headlineMisskey: "¡Un proyecto de código abierto y una plataforma de medios de comunicación headlineMisskey: "¡Un proyecto de código abierto y una plataforma de medios de comunicación
descentralizada que es gratis para siempre! 🚀" 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! 🚀" descentralizado medios de comunicación social que es gratis para siempre! 🚀"
monthAndDay: "{day}/{month}" monthAndDay: "{day}/{month}"
search: "Buscar" search: "Buscar"
@ -150,7 +150,7 @@ cacheRemoteFilesDescription: "Si desactiva esta configuración, los archivos rem
flagAsBot: "Esta cuenta es un bot" flagAsBot: "Esta cuenta es un bot"
flagAsBotDescription: "En caso de que esta cuenta fuera usada por un programa, active 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 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." que trate a esta cuenta como un bot."
flagAsCat: "Esta cuenta es un gato" flagAsCat: "Esta cuenta es un gato"
flagAsCatDescription: "Vas a tener orejas de gato y hablar como 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" editProfile: "Editar perfil"
noteDeleteConfirm: "¿Desea borrar esta publicación?" noteDeleteConfirm: "¿Desea borrar esta publicación?"
pinLimitExceeded: "Ya no se pueden fijar más publicaciones" 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" done: "Terminado"
processing: "Procesando" processing: "Procesando"
preview: "Vista previa" preview: "Vista previa"
@ -406,7 +406,7 @@ exploreFediverse: "Explorar fediverso"
popularTags: "Etiquetas populares" popularTags: "Etiquetas populares"
userList: "Lista" userList: "Lista"
about: "Información" about: "Información"
aboutMisskey: "Sobre Calckey" aboutFirefish: "Sobre Firefish"
administrator: "Administrador" administrator: "Administrador"
token: "Token" token: "Token"
twoStepAuthentication: "Autenticación de dos factores" twoStepAuthentication: "Autenticación de dos factores"
@ -564,7 +564,7 @@ ascendingOrder: "Ascendente"
descendingOrder: "Descendente" descendingOrder: "Descendente"
scratchpad: "Scratch pad" scratchpad: "Scratch pad"
scratchpadDescription: "Scratchpad proporciona un entorno experimental para AiScript. 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" output: "Salida"
script: "Script" script: "Script"
disablePagesScript: "Deshabilitar AiScript en Páginas" disablePagesScript: "Deshabilitar AiScript en Páginas"
@ -700,7 +700,7 @@ unclip: "Quitar clip"
confirmToUnclipAlreadyClippedNote: "Esta publicación ya está incluida en el clip \"\ confirmToUnclipAlreadyClippedNote: "Esta publicación ya está incluida en el clip \"\
{name}\". ¿Quiere quitar la nota del clip?" {name}\". ¿Quiere quitar la nota del clip?"
public: "Público" 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}" puede colaborar traduciendo en {link}"
manageAccessTokens: "Administrar tokens de acceso" manageAccessTokens: "Administrar tokens de acceso"
accountInfo: "Información de la Cuenta" accountInfo: "Información de la Cuenta"
@ -761,9 +761,9 @@ nUsers: "{n} Usuarios"
nNotes: "{n} Notas" nNotes: "{n} Notas"
sendErrorReports: "Envíar informe de errores" sendErrorReports: "Envíar informe de errores"
sendErrorReportsDescription: "Si habilita esta opción, los detalles de los 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 serán compartidos con Firefish cuando ocurra un problema, lo que ayudará a mejorar
la calidad de Calckey. \nEsto incluye información como la versión del sistema operativo, 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 Calckey, entre otros el tipo de navegador que está utilizando y su historial en Firefish, entre otros
datos." datos."
myTheme: "Mi Tema" myTheme: "Mi Tema"
backgroundColor: "Fondo" backgroundColor: "Fondo"
@ -859,7 +859,7 @@ hashtags: "Hashtag"
troubleshooting: "Solución de problemas" troubleshooting: "Solución de problemas"
useBlurEffect: "Utilizar efecto de desenfoque en la interfaz de usuario" useBlurEffect: "Utilizar efecto de desenfoque en la interfaz de usuario"
learnMore: "Ver más" learnMore: "Ver más"
misskeyUpdated: Calckey ha sido actualizado!" misskeyUpdated: Firefish ha sido actualizado!"
whatIsNew: "Mostrar cambios" whatIsNew: "Mostrar cambios"
translate: "Traducir" translate: "Traducir"
translatedFrom: "Traducido de {x}" translatedFrom: "Traducido de {x}"
@ -1062,17 +1062,17 @@ _registry:
keys: "Clave" keys: "Clave"
domain: "Dominio" domain: "Dominio"
createKey: "Crear una llave" createKey: "Crear una llave"
_aboutMisskey: _aboutFirefish:
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." ha estado en desarrollo desde el 2022."
contributors: "Principales colaboradores" contributors: "Principales colaboradores"
allContributors: "Todos los colaboradores" allContributors: "Todos los colaboradores"
source: "Código fuente" source: "Código fuente"
translation: "Traducir Calckey" translation: "Traducir Firefish"
donate: "Donar a Calckey" donate: "Donar a Firefish"
morePatrons: "También apreciamos el apoyo de muchos más que no están enlistados morePatrons: "También apreciamos el apoyo de muchos más que no están enlistados
aquí. ¡Gracias! 🥰" aquí. ¡Gracias! 🥰"
patrons: "Mecenas de Calckey" patrons: "Mecenas de Firefish"
_nsfw: _nsfw:
respect: "Ocultar medios NSFW" respect: "Ocultar medios NSFW"
ignore: "No esconder medios NSFW " ignore: "No esconder medios NSFW "
@ -1080,9 +1080,9 @@ _nsfw:
_mfm: _mfm:
cheatSheet: "Hoja de referencia de MFM" cheatSheet: "Hoja de referencia de MFM"
intro: "MFM es un lenguaje de marcado dedicado que se puede usar en varios lugares 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." disponibles en MFM."
dummy: "Calckey expande el mundo de la Fediverso" dummy: "Firefish expande el mundo de la Fediverso"
mention: "Menciones" mention: "Menciones"
mentionDescription: "El signo @ seguido de un nombre de usuario se puede utilizar mentionDescription: "El signo @ seguido de un nombre de usuario se puede utilizar
para notificar a un usuario en particular." para notificar a un usuario en particular."
@ -1293,7 +1293,7 @@ _time:
hour: "Horas" hour: "Horas"
day: "Días" day: "Días"
_tutorial: _tutorial:
title: "Cómo usar Calckey" title: "Cómo usar Firefish"
step1_1: "¡Bienvenido!" step1_1: "¡Bienvenido!"
step1_2: "Vamos a configurarte. ¡Estarás listo y funcionando en poco tiempo!" step1_2: "Vamos a configurarte. ¡Estarás listo y funcionando en poco tiempo!"
step2_1: "En primer lugar, rellena tu perfil" 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 step5_7: "La línea de tiempo Global {icon} es donde puedes ver las publicaciones
de todas las demás instancias conectadas." de todas las demás instancias conectadas."
step6_1: "Entonces, ¿qué es este lugar?" 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\"" una red interconectada de miles de servidores, llamada \"instancias\""
step6_3: "Cada servidor funciona de forma diferente, y no todos los servidores ejecutan 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" tranquillo enseguida"
step6_4: "¡Ahora ve, explora y diviértete!" step6_4: "¡Ahora ve, explora y diviértete!"
_2fa: _2fa:
@ -1924,7 +1924,7 @@ silenceThisInstance: Silenciar este servidor
findOtherInstance: Buscar otro servidor findOtherInstance: Buscar otro servidor
userSaysSomethingReasonRenote: '{name} impulsó una publicación que contiene {reason]' userSaysSomethingReasonRenote: '{name} impulsó una publicación que contiene {reason]'
enableRecommendedTimeline: Habilitar línea de tiempo "Recomendado" 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. 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". Puedes acceder a ellas desde la pestaña "Línea de tiempo".
removeReaction: Quitar tu reacción removeReaction: Quitar tu reacción

View file

@ -127,7 +127,7 @@ cacheRemoteFiles: Taltioi etätiedostot välimuistiin
flagAsBot: Merkitse tili botiksi flagAsBot: Merkitse tili botiksi
flagAsBotDescription: Ota tämä vaihtoehto käyttöön, jos tätä tiliä ohjaa ohjelma. 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 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. käsittelemään tätä tiliä botina.
flagAsCat: Oletko kissa? 🐱 flagAsCat: Oletko kissa? 🐱
flagAsCatDescription: Saat kissan korvat ja puhut kuin kissa! flagAsCatDescription: Saat kissan korvat ja puhut kuin kissa!
@ -214,7 +214,7 @@ perDay: Päivässä
version: Versio version: Versio
statistics: Tilastot statistics: Tilastot
clearQueueConfirmTitle: Oletko varma, että haluat tyhjentää jonon? 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! 🚀 alusta, joka on ikuisesti ilmainen! 🚀
clearQueueConfirmText: Mitkään välittämättömät lähetykset, jotka ovat jonossa, eivät clearQueueConfirmText: Mitkään välittämättömät lähetykset, jotka ovat jonossa, eivät
federoidu. Yleensä tätä toimintoa ei tarvita. federoidu. Yleensä tätä toimintoa ei tarvita.
@ -251,7 +251,7 @@ noInstances: Ei yhtään instanssia
editProfile: Muokkaa profiilia editProfile: Muokkaa profiilia
noteDeleteConfirm: Oletko varma, että haluat poistaa tämän viestin? noteDeleteConfirm: Oletko varma, että haluat poistaa tämän viestin?
pinLimitExceeded: Et voi kiinnittää enempää viestejä 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 done: Valmis
processing: Suorittaa processing: Suorittaa
preview: Esikatselu preview: Esikatselu
@ -472,7 +472,7 @@ silence: Hiljennä
popularTags: Suositut tagit popularTags: Suositut tagit
userList: Listat userList: Listat
about: Tietoja about: Tietoja
aboutMisskey: Tietoja Calckeystä aboutFirefish: Tietoja Firefishstä
exploreFediverse: Tutustu fediverseen exploreFediverse: Tutustu fediverseen
recentlyUpdatedUsers: Vastikään lisätyt käyttäjät recentlyUpdatedUsers: Vastikään lisätyt käyttäjät
recentlyRegisteredUsers: Uudet liittyneet jäyttäjät recentlyRegisteredUsers: Uudet liittyneet jäyttäjät
@ -618,7 +618,7 @@ sort: Järjestä
ascendingOrder: Nousevasti ascendingOrder: Nousevasti
scratchpadDescription: Raaputusalusta tarjoaa ympäristön AiScript-kokeiluja varten. scratchpadDescription: Raaputusalusta tarjoaa ympäristön AiScript-kokeiluja varten.
Voit kirjoittaa, suorittaa ja tarkistaa sen tulokset vuorovaikutuksessa siinä olevan Voit kirjoittaa, suorittaa ja tarkistaa sen tulokset vuorovaikutuksessa siinä olevan
Calckeyn kanssa. Firefishn kanssa.
script: Skripti script: Skripti
disablePagesScript: Poista AiScript käytöstä sivuilla disablePagesScript: Poista AiScript käytöstä sivuilla
updateRemoteUser: Päivitä etäkäyttäjän tiedot 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 useGlobalSettingDesc: Jos se on päällä, käytetään tilisi ilmoitusasetuksia. Jos se
on pois päältä, voit tehdä yksilöllisiä asetuksia. on pois päältä, voit tehdä yksilöllisiä asetuksia.
public: Julkinen 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}. {link}.
lockedAccountInfo: Ellet aseta postauksen näkyvyydeksi "Vain seuraajille", postauksesi lockedAccountInfo: Ellet aseta postauksen näkyvyydeksi "Vain seuraajille", postauksesi
näkyvät kaikille, vaikka vaatisitkin seuraajilta manuaalista hyväksyntää. näkyvät kaikille, vaikka vaatisitkin seuraajilta manuaalista hyväksyntää.
sendErrorReportsDescription: "Kun tämä on päällä, yksityiskohtaiset virhetiedot jaetaan\ 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,\ Näihin tietoihin sisältyy esimerkiksi käyttöjärjestelmäversio, käyttämäsi selain,\
\ toimintasi Calckeyssä jne." \ toimintasi Firefishssä jne."
createdAt: Luotu createdAt: Luotu
youAreRunningUpToDateClient: Käytössäsi on asiakasohjelman uusin versio. youAreRunningUpToDateClient: Käytössäsi on asiakasohjelman uusin versio.
needReloadToApply: Uudelleenlataus vaaditaan, jotta tämä näkyy. 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 seperateRenoteQuote: Erilliset buustaa ja lainaa -napit
sent: Lähetetty sent: Lähetetty
useBlurEffect: Käytä blur-efektejä käyttöliittymässä useBlurEffect: Käytä blur-efektejä käyttöliittymässä
misskeyUpdated: Calckey on päivitetty! misskeyUpdated: Firefish on päivitetty!
whatIsNew: Näytä muutokset whatIsNew: Näytä muutokset
translate: Käännä translate: Käännä
translatedFrom: Käännetty kielestä {x} translatedFrom: Käännetty kielestä {x}

View file

@ -1,6 +1,6 @@
_lang_: "Français" _lang_: "Français"
headlineMisskey: "Réseau relié par des notes" 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 à linstant présent, et ouvert.\nÉcrivez des « notes » et partagez ce qui se passe à linstant présent,
autour de vous avec les autres 📡\nLa fonction « réactions », vous permet également autour de vous avec les autres 📡\nLa fonction « réactions », vous permet également
dajouter une réaction rapide aux notes des autres utilisateur·rice·s 👍\nExplorons dajouter une réaction rapide aux notes des autres utilisateur·rice·s 👍\nExplorons
@ -158,7 +158,7 @@ flagAsBot: "Ce compte est un robot"
flagAsBotDescription: "Si ce compte est géré de manière automatisée, choisissez cette 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 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 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" flagAsCat: "Ce compte est un chat"
flagAsCatDescription: "Activer l'option \" Je suis un chat \" pour ce compte." flagAsCatDescription: "Activer l'option \" Je suis un chat \" pour ce compte."
flagShowTimelineReplies: "Afficher les réponses dans le fil" flagShowTimelineReplies: "Afficher les réponses dans le fil"
@ -225,7 +225,7 @@ noUsers: "Il ny a pas dutilisateur·rice·s"
editProfile: "Modifier votre profil" editProfile: "Modifier votre profil"
noteDeleteConfirm: "Êtes-vous sûr·e de vouloir supprimer cette note ?" noteDeleteConfirm: "Êtes-vous sûr·e de vouloir supprimer cette note ?"
pinLimitExceeded: "Vous ne pouvez plus épingler dautres notes." pinLimitExceeded: "Vous ne pouvez plus épingler dautres notes."
intro: "Linstallation de Calckey est terminée ! Veuillez créer un compte administrateur." intro: "Linstallation de Firefish est terminée ! Veuillez créer un compte administrateur."
done: "Terminé" done: "Terminé"
processing: "Traitement en cours" processing: "Traitement en cours"
preview: "Aperçu" preview: "Aperçu"
@ -413,7 +413,7 @@ exploreFediverse: "Explorer le Fediverse"
popularTags: "Mots-clés populaires" popularTags: "Mots-clés populaires"
userList: "Listes" userList: "Listes"
about: "Informations" about: "Informations"
aboutMisskey: "À propos de Calckey" aboutFirefish: "À propos de Firefish"
administrator: "Administrateur" administrator: "Administrateur"
token: "Jeton" token: "Jeton"
twoStepAuthentication: "Authentification à deux facteurs" twoStepAuthentication: "Authentification à deux facteurs"
@ -572,7 +572,7 @@ descendingOrder: "Descendant"
scratchpad: "ScratchPad" scratchpad: "ScratchPad"
scratchpadDescription: "ScratchPad fournit un environnement expérimental pour AiScript. 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 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" output: "Sortie"
script: "Script" script: "Script"
disablePagesScript: "Désactiver AiScript sur les Pages" disablePagesScript: "Désactiver AiScript sur les Pages"
@ -707,7 +707,7 @@ createNew: "Créer nouveau"
optional: "Facultatif" optional: "Facultatif"
createNewClip: "Créer un nouveau clip" createNewClip: "Créer un nouveau clip"
public: "Public" 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}." contribuer à {link}."
manageAccessTokens: "Gérer les jetons d'accès" manageAccessTokens: "Gérer les jetons d'accès"
accountInfo: " Informations du compte " accountInfo: " Informations du compte "
@ -766,7 +766,7 @@ nUsers: "{n} utilisateur·rice·s"
nNotes: "{n} Notes" nNotes: "{n} Notes"
sendErrorReports: "Envoyer les rapports derreur" sendErrorReports: "Envoyer les rapports derreur"
sendErrorReportsDescription: "Si vous activez l'envoi des rapports d'erreur, vous sendErrorReportsDescription: "Si vous activez l'envoi des rapports d'erreur, vous
contribuerez à améliorer la qualité de Calckey grâce au partage d'informations détaillées contribuerez à améliorer la qualité de Firefish grâce au partage d'informations détaillées
sur les erreurs lorsqu'un problème survient.\nCela inclut des informations telles 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, que la version de votre système d'exploitation, le type de navigateur que vous utilisez,
votre historique d'activité, etc." votre historique d'activité, etc."
@ -865,7 +865,7 @@ hashtags: "Hashtags"
troubleshooting: "Résolution de problèmes" troubleshooting: "Résolution de problèmes"
useBlurEffect: "Utiliser des effets de flou dans l'interface" useBlurEffect: "Utiliser des effets de flou dans l'interface"
learnMore: "Plus d'informations" learnMore: "Plus d'informations"
misskeyUpdated: "Calckey a été mis à jour !" misskeyUpdated: "Firefish a été mis à jour !"
whatIsNew: "Voir les derniers changements" whatIsNew: "Voir les derniers changements"
translate: "Traduire" translate: "Traduire"
translatedFrom: "Traduit depuis {x}" translatedFrom: "Traduit depuis {x}"
@ -993,13 +993,13 @@ _registry:
keys: "Clé " keys: "Clé "
domain: "Domaine" domain: "Domaine"
createKey: "Créer une clé" createKey: "Créer une clé"
_aboutMisskey: _aboutFirefish:
about: "Misskey est un logiciel libre et ouvert, développé par syuilo depuis 2014." about: "Misskey est un logiciel libre et ouvert, développé par syuilo depuis 2014."
contributors: "Principaux contributeurs" contributors: "Principaux contributeurs"
allContributors: "Tous les contributeurs" allContributors: "Tous les contributeurs"
source: "Code source" source: "Code source"
translation: "Traduire Calckey" translation: "Traduire Firefish"
donate: "Soutenir Calckey" donate: "Soutenir Firefish"
morePatrons: "Nous apprécions vraiment le soutien de nombreuses autres personnes morePatrons: "Nous apprécions vraiment le soutien de nombreuses autres personnes
non mentionnées ici. Merci à toutes et à tous ! 🥰" non mentionnées ici. Merci à toutes et à tous ! 🥰"
patrons: "Contributeurs" patrons: "Contributeurs"
@ -1009,9 +1009,9 @@ _nsfw:
force: "Cacher tous les médias" force: "Cacher tous les médias"
_mfm: _mfm:
cheatSheet: "Antisèche 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." 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" mention: "Mentionner"
mentionDescription: "Vous pouvez afficher un utilisateur spécifique en indiquant mentionDescription: "Vous pouvez afficher un utilisateur spécifique en indiquant
une arobase suivie d'un nom d'utilisateur" une arobase suivie d'un nom d'utilisateur"
@ -1227,7 +1227,7 @@ _time:
hour: "h" hour: "h"
day: "j" day: "j"
_tutorial: _tutorial:
title: "Comment utiliser Calckey" title: "Comment utiliser Firefish"
step1_1: "Bienvenue!" step1_1: "Bienvenue!"
step1_2: "On va vous installer. Vous serez opérationnel en un rien de temps" step1_2: "On va vous installer. Vous serez opérationnel en un rien de temps"
step2_1: "Tout d'abord, remplissez votre profil" 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 step5_7: "La timeline globale {icon} est l'endroit où vous pouvez voir les messages
de toutes les autres instances connectées." de toutes les autres instances connectées."
step6_1: "Alors quel est cet endroit ?" 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 portail vers le Fediverse, un réseau interconnecté de milliers de serveurs, appelés
\"instances\"." \"instances\"."
step6_3: "Chaque serveur fonctionne différemment, et tous les serveurs n'utilisent 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." le coup de main en un rien de temps."
step6_4: "Maintenant, allez-y, explorez et amusez-vous !" step6_4: "Maintenant, allez-y, explorez et amusez-vous !"
_2fa: _2fa:
@ -1834,11 +1834,11 @@ logoutConfirm: Confirmer la déconnexion ?
lastActiveDate: Dernière utilisation le lastActiveDate: Dernière utilisation le
cannotUploadBecauseNoFreeSpace: Mise en ligne échouée faute de place sur le Drive. cannotUploadBecauseNoFreeSpace: Mise en ligne échouée faute de place sur le Drive.
remoteOnly: Distant seulement 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 recommendedInstances: Instances recommandées
caption: Description automatique caption: Description automatique
migration: Migration 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) seulement)
replayTutorial: Relancer le tutoriel replayTutorial: Relancer le tutoriel
moveTo: Migrer le compte courant vers un nouveau compte moveTo: Migrer le compte courant vers un nouveau compte
@ -2036,4 +2036,4 @@ signupsDisabled: Les inscriptions sur ce serveur sont actuellement désactivés,
apps: Applications apps: Applications
userSaysSomethingReasonReply: '{noms} a répondu à une note contenant {raison}' userSaysSomethingReasonReply: '{noms} a répondu à une note contenant {raison}'
defaultValueIs: 'défaut: {valeur}' defaultValueIs: 'défaut: {valeur}'
searchPlaceholder: Recherchez sur Calckey searchPlaceholder: Recherchez sur Firefish

View file

@ -1,5 +1,5 @@
_lang_: Inglés _lang_: Inglés
introMisskey: Benvida! Calckey é unha plataforma de medios sociais de código aberto, introMisskey: Benvida! Firefish é unha plataforma de medios sociais de código aberto,
descentralizada e gratuíta para sempre!🚀 descentralizada e gratuíta para sempre!🚀
monthAndDay: '{day}/{month}' monthAndDay: '{day}/{month}'
notifications: Notificacións notifications: Notificacións
@ -11,7 +11,7 @@ noThankYou: Non, grazas
headlineMisskey: Plataforma de medios sociais de código aberto e descentralizada, headlineMisskey: Plataforma de medios sociais de código aberto e descentralizada,
gratuíta para sempre!🚀 gratuíta para sempre!🚀
search: Buscar search: Buscar
searchPlaceholder: Buscar en Calckey searchPlaceholder: Buscar en Firefish
username: Identificador username: Identificador
fetchingAsApObject: Descargando desde o Fediverso fetchingAsApObject: Descargando desde o Fediverso
ok: OK ok: OK

View file

@ -1,6 +1,6 @@
_lang_: "Bahasa Indonesia" _lang_: "Bahasa Indonesia"
headlineMisskey: "Jaringan terhubung melalui catatan" 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\ \ sumber terbuka.\nMulailah menuliskan catatan, bagikan peristiwa terkini, serta\
\ ceritakan segala tentangmu.\U0001F4E1\nTunjukkan juga reaksimu pada catatan pengguna\ \ ceritakan segala tentangmu.\U0001F4E1\nTunjukkan juga reaksimu pada catatan pengguna\
\ lain.\U0001F44D\nMari jelajahi dunia baru\U0001F680" \ 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" flagAsBot: "Atur akun ini sebagai Bot"
flagAsBotDescription: "Jika akun ini dikendalikan oleh program, tetapkanlah opsi ini.\ flagAsBotDescription: "Jika akun ini dikendalikan oleh program, tetapkanlah opsi ini.\
\ Jika diaktifkan, ini akan berfungsi sebagai tanda bagi pengembang lain untuk mencegah\ \ 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." \ memperlakukan akun ini sebagai bot."
flagAsCat: "Atur akun ini sebagai kucing" flagAsCat: "Atur akun ini sebagai kucing"
flagAsCatDescription: "Nyalakan tanda ini untuk menandai 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" editProfile: "Sunting profil"
noteDeleteConfirm: "Apakah kamu yakin ingin menghapus catatan ini?" noteDeleteConfirm: "Apakah kamu yakin ingin menghapus catatan ini?"
pinLimitExceeded: "Kamu tidak dapat menyematkan catatan lagi" 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" done: "Selesai"
processing: "Memproses" processing: "Memproses"
preview: "Pratinjau" preview: "Pratinjau"
@ -409,7 +409,7 @@ exploreFediverse: "Jelajahi Fediverse"
popularTags: "Tag populer" popularTags: "Tag populer"
userList: "Daftar" userList: "Daftar"
about: "Informasi" about: "Informasi"
aboutMisskey: "Tentang Calckey" aboutFirefish: "Tentang Firefish"
administrator: "Admin" administrator: "Admin"
token: "Token" token: "Token"
twoStepAuthentication: "Otentikasi dua faktor" twoStepAuthentication: "Otentikasi dua faktor"
@ -567,7 +567,7 @@ descendingOrder: "Urutkan menurun"
scratchpad: "Scratchpad" scratchpad: "Scratchpad"
scratchpadDescription: "Scratchpad menyediakan lingkungan eksperimen untuk AiScript.\ scratchpadDescription: "Scratchpad menyediakan lingkungan eksperimen untuk AiScript.\
\ Kamu bisa menulis, mengeksuksi, serta mengecek hasil yang berinteraksi dengan\ \ Kamu bisa menulis, mengeksuksi, serta mengecek hasil yang berinteraksi dengan\
\ Calckey." \ Firefish."
output: "Keluaran" output: "Keluaran"
script: "Script" script: "Script"
disablePagesScript: "Nonaktifkan script pada halaman" disablePagesScript: "Nonaktifkan script pada halaman"
@ -705,7 +705,7 @@ unclip: "Batalkan klip"
confirmToUnclipAlreadyClippedNote: "Catatan ini sudah disertakan di klip \"{name}\"\ confirmToUnclipAlreadyClippedNote: "Catatan ini sudah disertakan di klip \"{name}\"\
. Yakin ingin membatalkan catatan dari klip ini?" . Yakin ingin membatalkan catatan dari klip ini?"
public: "Publik" 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}." \ ikut membantu di {link}."
manageAccessTokens: "Kelola access token" manageAccessTokens: "Kelola access token"
accountInfo: "Informasi akun" accountInfo: "Informasi akun"
@ -764,7 +764,7 @@ nUsers: "{n} Pengguna"
nNotes: "{n} Catatan" nNotes: "{n} Catatan"
sendErrorReports: "Kirim laporan kesalahan" sendErrorReports: "Kirim laporan kesalahan"
sendErrorReportsDescription: "Ketika dinyalakan, informasi kesalahan rinci akan dibagikan\ 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\ \ Fitur ini memungkinkan memuat informasi seperti sistem operasi yang kamu gunakan\
\ dan versinya, aplikasi peramban yang kamu gunakan, riwayat aktivitas kamu, dll." \ dan versinya, aplikasi peramban yang kamu gunakan, riwayat aktivitas kamu, dll."
myTheme: "Tema saya" myTheme: "Tema saya"
@ -861,7 +861,7 @@ hashtags: "Tagar"
troubleshooting: "Penyelesaian Masalah" troubleshooting: "Penyelesaian Masalah"
useBlurEffect: "Gunakan efek blur pada antarmuka" useBlurEffect: "Gunakan efek blur pada antarmuka"
learnMore: "Pelajari lebih lanjut" learnMore: "Pelajari lebih lanjut"
misskeyUpdated: "Calckey telah dimutakhirkan!" misskeyUpdated: "Firefish telah dimutakhirkan!"
whatIsNew: "Lihat perubahan pemutakhiran" whatIsNew: "Lihat perubahan pemutakhiran"
translate: "Terjemahkan" translate: "Terjemahkan"
translatedFrom: "Terjemahkan dari {x}" translatedFrom: "Terjemahkan dari {x}"
@ -988,14 +988,14 @@ _registry:
keys: "Kunci" keys: "Kunci"
domain: "Domain" domain: "Domain"
createKey: "Buat kunci" createKey: "Buat kunci"
_aboutMisskey: _aboutFirefish:
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." \ syuilo sejak 2014."
contributors: "Kontributor utama" contributors: "Kontributor utama"
allContributors: "Seluruh kontributor" allContributors: "Seluruh kontributor"
source: "Sumber kode" source: "Sumber kode"
translation: "Terjemahkan Calckey" translation: "Terjemahkan Firefish"
donate: "Donasi ke Calckey" donate: "Donasi ke Firefish"
morePatrons: "Kami sangat mengapresiasi dukungan dari banyak penolong lain yang\ morePatrons: "Kami sangat mengapresiasi dukungan dari banyak penolong lain yang\
\ tidak tercantum disini. Terima kasih! \U0001F970" \ tidak tercantum disini. Terima kasih! \U0001F970"
patrons: "Pendukung" patrons: "Pendukung"
@ -1005,9 +1005,9 @@ _nsfw:
force: "Sembunyikan semua media" force: "Sembunyikan semua media"
_mfm: _mfm:
cheatSheet: "Contekan 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." \ tempat. Berikut kamu bisa melihat daftar dari syntax MFM yang ada."
dummy: "Calckey membentangkan dunia Fediverse" dummy: "Firefish membentangkan dunia Fediverse"
mention: "Sebut" mention: "Sebut"
mentionDescription: "Kamu dapat menentukan pengguna tertentu dengan menggunakan\ mentionDescription: "Kamu dapat menentukan pengguna tertentu dengan menggunakan\
\ simbol-At dan nama engguna mereka." \ simbol-At dan nama engguna mereka."
@ -1215,7 +1215,7 @@ _time:
hour: "jam" hour: "jam"
day: "hari" day: "hari"
_tutorial: _tutorial:
title: "Cara menggunakan Calckey" title: "Cara menggunakan Firefish"
step1_1: "Selamat datang!" step1_1: "Selamat datang!"
step1_2: "Halaman ini disebut \"linimasa\". Halaman ini menampilkan \"catatan\"\ step1_2: "Halaman ini disebut \"linimasa\". Halaman ini menampilkan \"catatan\"\
\ yang diurutkan secara kronologis dari orang-orang yang kamu \"ikuti\"." \ yang diurutkan secara kronologis dari orang-orang yang kamu \"ikuti\"."
@ -1248,8 +1248,8 @@ _tutorial:
\ dengan cepat." \ dengan cepat."
step6_3: "Untuk memberikan \"reaksi\", tekan tanda \"+\" pada catatan pengguna lain\ step6_3: "Untuk memberikan \"reaksi\", tekan tanda \"+\" pada catatan pengguna lain\
\ dan pilih emoji yang kamu suka untuk memberikan reaksimu kepada mereka." \ dan pilih emoji yang kamu suka untuk memberikan reaksimu kepada mereka."
step7_1: "Yay, Selamat! Kamu sudah menyelesaikan tutorial dasar Calckey." step7_1: "Yay, Selamat! Kamu sudah menyelesaikan tutorial dasar Firefish."
step7_2: "Jika kamu ingin mempelajari lebih lanjut tentang Calckey, cobalah berkunjung\ step7_2: "Jika kamu ingin mempelajari lebih lanjut tentang Firefish, cobalah berkunjung\
\ ke bagian {help}." \ ke bagian {help}."
step7_3: "Semoga berhasil dan bersenang-senanglah! \U0001F680" step7_3: "Semoga berhasil dan bersenang-senanglah! \U0001F680"
_2fa: _2fa:

View file

@ -1,6 +1,6 @@
_lang_: "Italiano" _lang_: "Italiano"
headlineMisskey: "Rete collegata tramite note" 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 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 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 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, flagAsBotDescription: "Se l'account esegue principalmente operazioni automatiche,
attiva quest'opzione. Quando attivata, opera come un segnalatore per gli altri sviluppatori attiva quest'opzione. Quando attivata, opera come un segnalatore per gli altri sviluppatori
allo scopo di prevenire catene dinterazione senza fine con altri bot, e di adeguare allo scopo di prevenire catene dinterazione 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" flagAsCat: "Io sono un gatto"
flagAsCatDescription: "Abilita l'opzione \"Io sono un gatto\" per l'account." flagAsCatDescription: "Abilita l'opzione \"Io sono un gatto\" per l'account."
autoAcceptFollowed: "Accetta automaticamente le richieste di follow da utenti che autoAcceptFollowed: "Accetta automaticamente le richieste di follow da utenti che
@ -217,7 +217,7 @@ noUsers: "Nessun utente trovato"
editProfile: "Modifica profilo" editProfile: "Modifica profilo"
noteDeleteConfirm: "Eliminare questo Nota?" noteDeleteConfirm: "Eliminare questo Nota?"
pinLimitExceeded: "Non puoi fissare altre note " 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" done: "Fine"
processing: "In elaborazione" processing: "In elaborazione"
preview: "Anteprima" preview: "Anteprima"
@ -401,7 +401,7 @@ exploreFediverse: "Esplora il Fediverso"
popularTags: "Tag di tendenza" popularTags: "Tag di tendenza"
userList: "Liste" userList: "Liste"
about: "Informazioni" about: "Informazioni"
aboutMisskey: "Informazioni di Calckey" aboutFirefish: "Informazioni di Firefish"
administrator: "Amministratore" administrator: "Amministratore"
token: "Token" token: "Token"
twoStepAuthentication: "Autenticazione a due fattori" twoStepAuthentication: "Autenticazione a due fattori"
@ -555,7 +555,7 @@ descendingOrder: "Discendente"
scratchpad: "ScratchPad" scratchpad: "ScratchPad"
scratchpadDescription: "Lo Scratchpad offre un ambiente per esperimenti di AiScript. scratchpadDescription: "Lo Scratchpad offre un ambiente per esperimenti di AiScript.
È possibile scrivere, eseguire e confermare i risultati dell'interazione del codice È possibile scrivere, eseguire e confermare i risultati dell'interazione del codice
con Calckey." con Firefish."
output: "Uscita" output: "Uscita"
script: "Script" script: "Script"
disablePagesScript: "Disabilita AiScript nelle pagine" disablePagesScript: "Disabilita AiScript nelle pagine"
@ -684,7 +684,7 @@ createNew: "Crea nuov@"
optional: "Opzionale" optional: "Opzionale"
createNewClip: "Nuova clip" createNewClip: "Nuova clip"
public: "Pubblica" 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}." su {link}."
manageAccessTokens: "Gestisci token di accesso" manageAccessTokens: "Gestisci token di accesso"
accountInfo: "Informazioni account" accountInfo: "Informazioni account"
@ -742,7 +742,7 @@ nUsers: "{n} utenti"
nNotes: "{n}Note" nNotes: "{n}Note"
sendErrorReports: "Invia segnalazioni di errori" sendErrorReports: "Invia segnalazioni di errori"
sendErrorReportsDescription: "Quando abilitato, se si verifica un problema, informazioni 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 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." operativo, il tipo di navigatore web che usi, la cronologia delle attività, ecc."
myTheme: "I miei temi" myTheme: "I miei temi"
@ -835,7 +835,7 @@ hashtags: "Hashtag"
troubleshooting: "Risoluzione problemi" troubleshooting: "Risoluzione problemi"
useBlurEffect: "Utilizza effetto sfocatura per l'interfaccia utente" useBlurEffect: "Utilizza effetto sfocatura per l'interfaccia utente"
learnMore: "Più dettagli" learnMore: "Più dettagli"
misskeyUpdated: "Calckey è stato aggiornato!" misskeyUpdated: "Firefish è stato aggiornato!"
whatIsNew: "Visualizza le informazioni sull'aggiornamento" whatIsNew: "Visualizza le informazioni sull'aggiornamento"
translate: "Traduzione" translate: "Traduzione"
translatedFrom: "Tradotto da {x}" translatedFrom: "Tradotto da {x}"
@ -931,13 +931,13 @@ _registry:
keys: "Dati" keys: "Dati"
domain: "Dominio" domain: "Dominio"
createKey: "Crea chiave" createKey: "Crea chiave"
_aboutMisskey: _aboutFirefish:
about: "Misskey è un software libero e open source, sviluppato da syuilo dal 2014." about: "Misskey è un software libero e open source, sviluppato da syuilo dal 2014."
contributors: "Principali sostenitori" contributors: "Principali sostenitori"
allContributors: "Tutti i sostenitori" allContributors: "Tutti i sostenitori"
source: "Codice sorgente" source: "Codice sorgente"
translation: "Tradurre Calckey" translation: "Tradurre Firefish"
donate: "Sostieni Calckey" donate: "Sostieni Firefish"
morePatrons: "Apprezziamo sinceramente il supporto di tante altre persone. Grazie morePatrons: "Apprezziamo sinceramente il supporto di tante altre persone. Grazie
mille! 🥰" mille! 🥰"
patrons: "Sostenitori" patrons: "Sostenitori"
@ -948,8 +948,8 @@ _nsfw:
_mfm: _mfm:
cheatSheet: "Bigliettino MFM" cheatSheet: "Bigliettino MFM"
intro: "MFM è un linguaggio Markdown particolare che si può usare in diverse parti 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." di Firefish. Qui puoi visualizzare a colpo d'occhio tutta la sintassi MFM utile."
dummy: "Il Fediverso si espande con Calckey" dummy: "Il Fediverso si espande con Firefish"
mention: "Menzioni" mention: "Menzioni"
mentionDescription: "Si può menzionare un utente specifico digitando il suo nome mentionDescription: "Si può menzionare un utente specifico digitando il suo nome
utente subito dopo il segno @." utente subito dopo il segno @."
@ -1107,7 +1107,7 @@ _time:
hour: "ore" hour: "ore"
day: "giorni" day: "giorni"
_tutorial: _tutorial:
titolo: "Come usare Calckey" titolo: "Come usare Firefish"
step1_1: "Benvenuto!" step1_1: "Benvenuto!"
step1_2: "Vediamo di configurarla. Sarete operativi in men che non si dica!" step1_2: "Vediamo di configurarla. Sarete operativi in men che non si dica!"
step2_1: "Per prima cosa, compila il tuo profilo" 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 step5_7: "La timeline Globale {icon} è quella in cui si possono vedere i post di
ogni altra istanza collegata" ogni altra istanza collegata"
step6_1: "Allora, cos'è questo posto?" 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\"" 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" Questo però lo fa! È un po' complicato, ma ci riuscirete in poco tempo"
step6_4: "Ora andate, esplorate e divertitevi!" step6_4: "Ora andate, esplorate e divertitevi!"
_2fa: _2fa:

View file

@ -1,6 +1,6 @@
_lang_: "日本語" _lang_: "日本語"
headlineMisskey: "ずっと無料でオープンソースの非中央集権型ソーシャルメディアプラットフォーム🚀" headlineMisskey: "ずっと無料でオープンソースの非中央集権型ソーシャルメディアプラットフォーム🚀"
introMisskey: "ようこそ!Calckeyは、オープンソースの非中央集権型ソーシャルメディアプラットフォームです。\nいま起こっていることを共有したり、あなたについて皆に発信しましょう📡\n\ introMisskey: "ようこそ!Firefishは、オープンソースの非中央集権型ソーシャルメディアプラットフォームです。\nいま起こっていることを共有したり、あなたについて皆に発信しましょう📡\n\
「リアクション」機能で、皆の投稿に素早く反応を追加できます👍\n新しい世界を探検しよう🚀" 「リアクション」機能で、皆の投稿に素早く反応を追加できます👍\n新しい世界を探検しよう🚀"
monthAndDay: "{month}月 {day}日" monthAndDay: "{month}月 {day}日"
search: "検索" search: "検索"
@ -146,7 +146,7 @@ settingGuide: "おすすめ設定"
cacheRemoteFiles: "リモートのファイルをキャッシュする" cacheRemoteFiles: "リモートのファイルをキャッシュする"
cacheRemoteFilesDescription: "この設定を無効にすると、リモートファイルをキャッシュせず直リンクします。サーバーのストレージを節約できますが、サムネイルが生成されないので通信量が増加します。" cacheRemoteFilesDescription: "この設定を無効にすると、リモートファイルをキャッシュせず直リンクします。サーバーのストレージを節約できますが、サムネイルが生成されないので通信量が増加します。"
flagAsBot: "Botとして設定" flagAsBot: "Botとして設定"
flagAsBotDescription: "このアカウントがBotである場合は、この設定をオンにします。オンにすると、反応の連鎖を防ぐためのフラグとして他の開発者に役立ったり、Calckeyのシステム上での扱いがBotに合ったものになります。" flagAsBotDescription: "このアカウントがBotである場合は、この設定をオンにします。オンにすると、反応の連鎖を防ぐためのフラグとして他の開発者に役立ったり、Firefishのシステム上での扱いがBotに合ったものになります。"
flagAsCat: "あなたは…猫?😺" flagAsCat: "あなたは…猫?😺"
flagAsCatDescription: "このアカウントが猫であることを示す猫モードを有効にするには、このフラグをオンにします。" flagAsCatDescription: "このアカウントが猫であることを示す猫モードを有効にするには、このフラグをオンにします。"
flagSpeakAsCat: "猫語で話す" flagSpeakAsCat: "猫語で話す"
@ -213,7 +213,7 @@ noInstances: "サーバーがありません"
editProfile: "プロフィールを編集" editProfile: "プロフィールを編集"
noteDeleteConfirm: "この投稿を削除しますか?" noteDeleteConfirm: "この投稿を削除しますか?"
pinLimitExceeded: "これ以上ピン留めできません" pinLimitExceeded: "これ以上ピン留めできません"
intro: "Calckeyのインストールが完了しました!管理者アカウントを作成しましょう。" intro: "Firefishのインストールが完了しました!管理者アカウントを作成しましょう。"
done: "完了" done: "完了"
processing: "処理中" processing: "処理中"
preview: "プレビュー" preview: "プレビュー"
@ -396,7 +396,7 @@ exploreFediverse: "Fediverseを探索"
popularTags: "人気のタグ" popularTags: "人気のタグ"
userList: "リスト" userList: "リスト"
about: "情報" about: "情報"
aboutMisskey: "Calckeyについて" aboutFirefish: "Firefishについて"
administrator: "管理者" administrator: "管理者"
token: "トークン" token: "トークン"
twoStepAuthentication: "二段階認証" twoStepAuthentication: "二段階認証"
@ -543,7 +543,7 @@ sort: "ソート"
ascendingOrder: "昇順" ascendingOrder: "昇順"
descendingOrder: "降順" descendingOrder: "降順"
scratchpad: "スクラッチパッド" scratchpad: "スクラッチパッド"
scratchpadDescription: "スクラッチパッドは、AiScriptの実験環境を提供します。Calckeyと対話するコードの記述、実行、結果の確認ができます。" scratchpadDescription: "スクラッチパッドは、AiScriptの実験環境を提供します。Firefishと対話するコードの記述、実行、結果の確認ができます。"
output: "出力" output: "出力"
script: "スクリプト" script: "スクリプト"
disablePagesScript: "ページのスクリプトを無効にする" disablePagesScript: "ページのスクリプトを無効にする"
@ -672,7 +672,7 @@ createNewClip: "新しいクリップを作成"
unclip: "クリップ解除" unclip: "クリップ解除"
confirmToUnclipAlreadyClippedNote: "この投稿はすでにクリップ「{name}」に含まれています。投稿をこのクリップから除外しますか?" confirmToUnclipAlreadyClippedNote: "この投稿はすでにクリップ「{name}」に含まれています。投稿をこのクリップから除外しますか?"
public: "公開" public: "公開"
i18nInfo: "Calckeyは有志によって様々な言語に翻訳されています。{link}で翻訳に協力できます。" i18nInfo: "Firefishは有志によって様々な言語に翻訳されています。{link}で翻訳に協力できます。"
manageAccessTokens: "アクセストークンの管理" manageAccessTokens: "アクセストークンの管理"
accountInfo: "アカウント情報" accountInfo: "アカウント情報"
notesCount: "投稿の数" notesCount: "投稿の数"
@ -723,7 +723,7 @@ onlineUsersCount: "{n}人がオンライン"
nUsers: "{n}ユーザー" nUsers: "{n}ユーザー"
nNotes: "{n}投稿" nNotes: "{n}投稿"
sendErrorReports: "エラーリポートを送信" sendErrorReports: "エラーリポートを送信"
sendErrorReportsDescription: "オンにすると、問題が発生したときにエラーの詳細情報がCalckeyに共有され、ソフトウェアの品質向上に役立てられます。\n\ sendErrorReportsDescription: "オンにすると、問題が発生したときにエラーの詳細情報がFirefishに共有され、ソフトウェアの品質向上に役立てられます。\n\
エラー情報には、OSのバージョン、ブラウザの種類、行動履歴などが含まれます。" エラー情報には、OSのバージョン、ブラウザの種類、行動履歴などが含まれます。"
myTheme: "マイテーマ" myTheme: "マイテーマ"
backgroundColor: "背景" backgroundColor: "背景"
@ -824,7 +824,7 @@ hashtags: "ハッシュタグ"
troubleshooting: "トラブルシューティング" troubleshooting: "トラブルシューティング"
useBlurEffect: "UIにぼかし効果を使用" useBlurEffect: "UIにぼかし効果を使用"
learnMore: "詳しく" learnMore: "詳しく"
misskeyUpdated: "Calckeyが更新されました!" misskeyUpdated: "Firefishが更新されました!"
whatIsNew: "更新情報を見る" whatIsNew: "更新情報を見る"
translate: "翻訳" translate: "翻訳"
translatedFrom: "{x}から翻訳" translatedFrom: "{x}から翻訳"
@ -944,7 +944,7 @@ customMOTDDescription: "ユーザがページをロード/リロードするた
customSplashIcons: "カスタムスプラッシュスクリーンアイコン" customSplashIcons: "カスタムスプラッシュスクリーンアイコン"
customSplashIconsDescription: "ユーザがページをロード/リロードするたびにランダムに表示される、改行で区切られたカスタムスプラッシュスクリーンアイコンの customSplashIconsDescription: "ユーザがページをロード/リロードするたびにランダムに表示される、改行で区切られたカスタムスプラッシュスクリーンアイコンの
URL。画像は静的なURLで、できればすべて192x192にリサイズしてください。" URL。画像は静的なURLで、できればすべて192x192にリサイズしてください。"
showUpdates: "Calckeyの更新時にポップアップを表示する" showUpdates: "Firefishの更新時にポップアップを表示する"
recommendedInstances: "おすすめサーバー" recommendedInstances: "おすすめサーバー"
recommendedInstancesDescription: "おすすめタイムラインに表示するサーバーを改行区切りで入力してください。" recommendedInstancesDescription: "おすすめタイムラインに表示するサーバーを改行区切りで入力してください。"
caption: "自動キャプション" caption: "自動キャプション"
@ -952,7 +952,7 @@ splash: "スプラッシュスクリーン"
updateAvailable: "アップデートがありますよ!" updateAvailable: "アップデートがありますよ!"
swipeOnDesktop: "デスクトップでモバイルスタイルのスワイプを可能にする" swipeOnDesktop: "デスクトップでモバイルスタイルのスワイプを可能にする"
logoImageUrl: "ロゴのURL" logoImageUrl: "ロゴのURL"
showAdminUpdates: "新しいCalckeyのバージョンが利用可能なときに通知する(管理者のみ)" showAdminUpdates: "新しいFirefishのバージョンが利用可能なときに通知する(管理者のみ)"
replayTutorial: "もう一度チュートリアルを見る" replayTutorial: "もう一度チュートリアルを見る"
migration: "アカウントの引っ越し" migration: "アカウントの引っ越し"
moveTo: "このアカウントを新しいアカウントに引っ越す" moveTo: "このアカウントを新しいアカウントに引っ越す"
@ -977,7 +977,7 @@ customKaTeXMacroDescription: "数式入力を楽にするためのマクロを
enableCustomKaTeXMacro: "カスタムKaTeXマクロを有効にする" enableCustomKaTeXMacro: "カスタムKaTeXマクロを有効にする"
preventAiLearning: "AIによる学習を防止" preventAiLearning: "AIによる学習を防止"
preventAiLearningDescription: "投稿したート、添付した画像などのコンテンツを学習の対象にしないようAIに要求します。これはnoaiフラグをHTMLレスポンスに含めることによって実現されます。" preventAiLearningDescription: "投稿したート、添付した画像などのコンテンツを学習の対象にしないようAIに要求します。これはnoaiフラグをHTMLレスポンスに含めることによって実現されます。"
noGraze: "ブラウザの拡張機能「Graze for Mastodon」は、Calckeyの動作を妨げるため、無効にしてください。" noGraze: "ブラウザの拡張機能「Graze for Mastodon」は、Firefishの動作を妨げるため、無効にしてください。"
enableServerMachineStats: "サーバーのマシン情報を公開する" enableServerMachineStats: "サーバーのマシン情報を公開する"
enableIdenticonGeneration: "ユーザーごとのIdenticon生成を有効にする" enableIdenticonGeneration: "ユーザーごとのIdenticon生成を有効にする"
showPopup: "ポップアップを表示してユーザーに知らせる" showPopup: "ポップアップを表示してユーザーに知らせる"
@ -1060,28 +1060,28 @@ _registry:
keys: "キー" keys: "キー"
domain: "ドメイン" domain: "ドメイン"
createKey: "キーを作成" createKey: "キーを作成"
_aboutMisskey: _aboutFirefish:
about: "Calckeyは、2022年に生まれたThatOneCalculatorによるMisskeyのforkです。" about: "Firefishは、2022年に生まれたThatOneCalculatorによるMisskeyのforkです。"
contributors: "主なコントリビューター" contributors: "主なコントリビューター"
allContributors: "全てのコントリビューター" allContributors: "全てのコントリビューター"
source: "ソースコード" source: "ソースコード"
translation: "Calckeyを翻訳" translation: "Firefishを翻訳"
donate: "Calckeyに寄付" donate: "Firefishに寄付"
morePatrons: "他にも多くの方が支援してくれています。ありがとうございます! 🥰" morePatrons: "他にも多くの方が支援してくれています。ありがとうございます! 🥰"
patrons: "支援者" patrons: "支援者"
patronsList: 寄付額ではなく時系列順に並んでいます。上記のリンクから寄付を行ってここにあなたのIDを載せましょう patronsList: 寄付額ではなく時系列順に並んでいます。上記のリンクから寄付を行ってここにあなたのIDを載せましょう
pleaseDonateToCalckey: Calckey開発への寄付をご検討ください。 pleaseDonateToFirefish: Firefish開発への寄付をご検討ください。
pleaseDonateToHost: また、このサーバー {host} の運営者への寄付もご検討ください。 pleaseDonateToHost: また、このサーバー {host} の運営者への寄付もご検討ください。
donateHost: '{host} に寄付する' donateHost: '{host} に寄付する'
donateTitle: Calckeyを気に入りましたか? donateTitle: Firefishを気に入りましたか?
_nsfw: _nsfw:
respect: "閲覧注意のメディアは隠す" respect: "閲覧注意のメディアは隠す"
ignore: "閲覧注意のメディアを隠さない" ignore: "閲覧注意のメディアを隠さない"
force: "常にメディアを隠す" force: "常にメディアを隠す"
_mfm: _mfm:
cheatSheet: "MFMチートシート" cheatSheet: "MFMチートシート"
intro: "MFMは、MisskeyやCalckey、Akkomaなどの様々な場所で使用できるマークアップ言語です。ここでは、MFMで使用可能な構文一覧が確認できます。" intro: "MFMは、MisskeyやFirefish、Akkomaなどの様々な場所で使用できるマークアップ言語です。ここでは、MFMで使用可能な構文一覧が確認できます。"
dummy: "CalckeyでFediverseの世界が広がります" dummy: "FirefishでFediverseの世界が広がります"
mention: "メンション" mention: "メンション"
mentionDescription: "アットマーク + ユーザー名で、特定のユーザーを示せます。" mentionDescription: "アットマーク + ユーザー名で、特定のユーザーを示せます。"
hashtag: "ハッシュタグ" hashtag: "ハッシュタグ"
@ -1303,7 +1303,7 @@ _time:
hour: "時間" hour: "時間"
day: "日" day: "日"
_tutorial: _tutorial:
title: "Calckeyの使い方" title: "Firefishの使い方"
step1_1: "ようこそ!" step1_1: "ようこそ!"
step1_2: "使い始める前に、いくつか設定を済ませましょう。すぐできますよ!" step1_2: "使い始める前に、いくつか設定を済ませましょう。すぐできますよ!"
step2_1: "最初に、あなたのプロフィールを作りましょう。" step2_1: "最初に、あなたのプロフィールを作りましょう。"
@ -1321,8 +1321,8 @@ _tutorial:
step5_6: "おすすめ{icon}タイムラインでは、管理人がおすすめするサーバーの投稿を見られます。" step5_6: "おすすめ{icon}タイムラインでは、管理人がおすすめするサーバーの投稿を見られます。"
step5_7: "グローバル{icon}タイムラインでは、接続している他のすべてのサーバーからの投稿を見られます。" step5_7: "グローバル{icon}タイムラインでは、接続している他のすべてのサーバーからの投稿を見られます。"
step6_1: "じゃあ、ここはどんな場所なの?" step6_1: "じゃあ、ここはどんな場所なの?"
step6_2: "実は、あなたはただCalckeyに参加しただけではありません。ここは、何千もの相互接続されたサーバーが構成する Fediverse への入口です。" step6_2: "実は、あなたはただFirefishに参加しただけではありません。ここは、何千もの相互接続されたサーバーが構成する Fediverse への入口です。"
step6_3: "それぞれのサーバーでは必ずしもCalckeyが使われているわけではなく、異なる動作をするサーバーもあります。しかし、あなたは他のサーバーのアカウントもフォローしたり、返信・ブーストができます。一見難しそうですが大丈夫!すぐ慣れます。" step6_3: "それぞれのサーバーでは必ずしもFirefishが使われているわけではなく、異なる動作をするサーバーもあります。しかし、あなたは他のサーバーのアカウントもフォローしたり、返信・ブーストができます。一見難しそうですが大丈夫!すぐ慣れます。"
step6_4: "これで完了です。お楽しみください!" step6_4: "これで完了です。お楽しみください!"
_2fa: _2fa:
alreadyRegistered: "既に設定は完了しています。" alreadyRegistered: "既に設定は完了しています。"
@ -1902,7 +1902,7 @@ apps: "アプリ"
_experiments: _experiments:
title: 試験的な機能 title: 試験的な機能
postImportsCaption: postImportsCaption:
ユーザーが過去の投稿をCalckey・Misskey・Mastodon・Akkoma・Pleromaからインポートすることを許可します。キューが溜まっているときにインポートするとサーバーに負荷がかかる可能性があります。 ユーザーが過去の投稿をFirefish・Misskey・Mastodon・Akkoma・Pleromaからインポートすることを許可します。キューが溜まっているときにインポートするとサーバーに負荷がかかる可能性があります。
enablePostImports: 投稿のインポートを有効にする enablePostImports: 投稿のインポートを有効にする
sendModMail: モデレーション通知を送る sendModMail: モデレーション通知を送る
deleted: 削除済み deleted: 削除済み
@ -1917,7 +1917,7 @@ accessibility: アクセシビリティ
jumpToPrevious: 前に戻る jumpToPrevious: 前に戻る
cw: 閲覧注意 cw: 閲覧注意
silencedWarning: スパムの可能性があるため、これらのユーザーが所属するサーバーは管理者によりサイレンスされています。 silencedWarning: スパムの可能性があるため、これらのユーザーが所属するサーバーは管理者によりサイレンスされています。
searchPlaceholder: Calckeyを検索 searchPlaceholder: Firefishを検索
channelFederationWarn: 現時点では、チャンネルは他のサーバーへ連合しません channelFederationWarn: 現時点では、チャンネルは他のサーバーへ連合しません
listsDesc: リストでは指定したユーザーだけのタイムラインを作れます。リストには「タイムライン」のページからアクセスできます。 listsDesc: リストでは指定したユーザーだけのタイムラインを作れます。リストには「タイムライン」のページからアクセスできます。
antennasDesc: "アンテナでは指定した条件に合致する投稿が表示されます。\nアンテナには「タイムライン」のページからアクセスできます。" antennasDesc: "アンテナでは指定した条件に合致する投稿が表示されます。\nアンテナには「タイムライン」のページからアクセスできます。"
@ -1942,7 +1942,7 @@ video: 動画
isBot: このアカウントはBotです isBot: このアカウントはBotです
isLocked: このアカウントのフォローは承認制です isLocked: このアカウントのフォローは承認制です
isAdmin: 管理者 isAdmin: 管理者
isPatron: Calckey 後援者 isPatron: Firefish 後援者
_skinTones: _skinTones:
light: ペールオレンジ light: ペールオレンジ
mediumLight: ミディアムライト mediumLight: ミディアムライト

View file

@ -377,7 +377,7 @@ exploreFediverse: "Fediverseを探ってみる"
popularTags: "人気のタグ" popularTags: "人気のタグ"
userList: "リスト" userList: "リスト"
about: "情報" about: "情報"
aboutMisskey: "Misskeyってなんや" aboutFirefish: "Misskeyってなんや"
administrator: "管理者" administrator: "管理者"
token: "トークン" token: "トークン"
twoStepAuthentication: "二段階認証" twoStepAuthentication: "二段階認証"
@ -647,7 +647,7 @@ createNewClip: "新しいクリップを作るで"
unclip: "クリップ解除するで" unclip: "クリップ解除するで"
confirmToUnclipAlreadyClippedNote: "このノートはすでにクリップ「{name}」に含まれとるで。ノートをこのクリップから除外したる?" confirmToUnclipAlreadyClippedNote: "このノートはすでにクリップ「{name}」に含まれとるで。ノートをこのクリップから除外したる?"
public: "パブリック" public: "パブリック"
i18nInfo: "Calckeyは有志によっていろんな言語に翻訳されとるで。{link}で翻訳に協力したってやー。" i18nInfo: "Firefishは有志によっていろんな言語に翻訳されとるで。{link}で翻訳に協力したってやー。"
manageAccessTokens: "アクセストークンの管理" manageAccessTokens: "アクセストークンの管理"
accountInfo: "アカウント情報" accountInfo: "アカウント情報"
notesCount: "ノートの数やで" notesCount: "ノートの数やで"
@ -867,7 +867,7 @@ _registry:
keys: "キー" keys: "キー"
domain: "ドメイン" domain: "ドメイン"
createKey: "キーを作る" createKey: "キーを作る"
_aboutMisskey: _aboutFirefish:
about: "Misskeyはsyuiloが2014年からずっと作ってはる、オープンソースなソフトウェアや。" about: "Misskeyはsyuiloが2014年からずっと作ってはる、オープンソースなソフトウェアや。"
contributors: "主な貢献者" contributors: "主な貢献者"
allContributors: "全ての貢献者" allContributors: "全ての貢献者"

View file

@ -1,6 +1,6 @@
--- ---
_lang_: "ಕನ್ನಡ" _lang_: "ಕನ್ನಡ"
introMisskey: "ಸ್ವಾಗತ! Calckey ಓಪನ್ ಸೋರ್ಸ್ ಒಕ್ಕೂಟ ಮೈಕ್ರೋಬ್ಲಾಗಿಂಗ್ ಸೇವೆಯಾಗಿದೆ.\n ಏನಾಗುತ್ತಿದೆ ಎಂಬುದನ್ನು ಹಂಚಿಕೊಳ್ಳಲು ಅಥವಾ ನಿಮ್ಮ ಬಗ್ಗೆ ಎಲ್ಲರಿಗೂ ಹೇಳಲು \"ಟಿಪ್ಪಣಿ\"ಗಳನ್ನು ರಚಿಸಿ📡\n \"ಸ್ಪಂದನೆ\" ಕ್ರಿಯೆಯೊಂದಿಗೆ, ನೀವು ಎಲ್ಲರ ಟಿಪ್ಪಣಿಗಳಿಗೆ ತ್ವರಿತವಾಗಿ ಸ್ಪಂದನೆಗಳನ್ನು ಕೂಡ ಸೇರಿಸಬಹುದು.👍\n ಹೊಸ ಜಗತ್ತನ್ನು ಅನ್ವೇಷಿಸಿ🚀" introMisskey: "ಸ್ವಾಗತ! Firefish ಓಪನ್ ಸೋರ್ಸ್ ಒಕ್ಕೂಟ ಮೈಕ್ರೋಬ್ಲಾಗಿಂಗ್ ಸೇವೆಯಾಗಿದೆ.\n ಏನಾಗುತ್ತಿದೆ ಎಂಬುದನ್ನು ಹಂಚಿಕೊಳ್ಳಲು ಅಥವಾ ನಿಮ್ಮ ಬಗ್ಗೆ ಎಲ್ಲರಿಗೂ ಹೇಳಲು \"ಟಿಪ್ಪಣಿ\"ಗಳನ್ನು ರಚಿಸಿ📡\n \"ಸ್ಪಂದನೆ\" ಕ್ರಿಯೆಯೊಂದಿಗೆ, ನೀವು ಎಲ್ಲರ ಟಿಪ್ಪಣಿಗಳಿಗೆ ತ್ವರಿತವಾಗಿ ಸ್ಪಂದನೆಗಳನ್ನು ಕೂಡ ಸೇರಿಸಬಹುದು.👍\n ಹೊಸ ಜಗತ್ತನ್ನು ಅನ್ವೇಷಿಸಿ🚀"
monthAndDay: "{month}ನೇ ತಿಂಗಳ {day}ನೇ ದಿನ" monthAndDay: "{month}ನೇ ತಿಂಗಳ {day}ನೇ ದಿನ"
search: "ಹುಡುಕು" search: "ಹುಡುಕು"
notifications: "ಅಧಿಸೂಚನೆಗಳು" notifications: "ಅಧಿಸೂಚನೆಗಳು"

View file

@ -1,7 +1,7 @@
--- ---
_lang_: "한국어" _lang_: "한국어"
headlineMisskey: "노트로 연결되는 네트워크" headlineMisskey: "노트로 연결되는 네트워크"
introMisskey: "환영합니다! Calckey 는 오픈 소스 분산형 마이크로 블로그 서비스입니다.\n\"노트\" 를 작성해서, 지금 일어나고 있는 일을 공유하거나, 당신만의 이야기를 모두에게 발신하세요📡\n\"리액션\" 기능으로, 친구의 노트에 총알같이 반응을 추가할 수도 있습니다👍\n새로운 세계를 탐험해 보세요🚀" introMisskey: "환영합니다! Firefish 는 오픈 소스 분산형 마이크로 블로그 서비스입니다.\n\"노트\" 를 작성해서, 지금 일어나고 있는 일을 공유하거나, 당신만의 이야기를 모두에게 발신하세요📡\n\"리액션\" 기능으로, 친구의 노트에 총알같이 반응을 추가할 수도 있습니다👍\n새로운 세계를 탐험해 보세요🚀"
monthAndDay: "{month}월 {day}일" monthAndDay: "{month}월 {day}일"
search: "검색" search: "검색"
notifications: "알림" notifications: "알림"
@ -377,7 +377,7 @@ exploreFediverse: "연합우주를 탐색"
popularTags: "인기 태그" popularTags: "인기 태그"
userList: "리스트" userList: "리스트"
about: "정보" about: "정보"
aboutMisskey: "Misskey에 대하여" aboutFirefish: "Misskey에 대하여"
administrator: "관리자" administrator: "관리자"
token: "토큰" token: "토큰"
twoStepAuthentication: "2단계 인증" twoStepAuthentication: "2단계 인증"
@ -523,7 +523,7 @@ sort: "정렬"
ascendingOrder: "오름차순" ascendingOrder: "오름차순"
descendingOrder: "내림차순" descendingOrder: "내림차순"
scratchpad: "스크래치 패드" scratchpad: "스크래치 패드"
scratchpadDescription: "스크래치 패드는 AiScript 의 테스트 환경을 제공합니다. Calckey 와 상호 작용하는 코드를 작성, 실행 및 결과를 확인할 수 있습니다." scratchpadDescription: "스크래치 패드는 AiScript 의 테스트 환경을 제공합니다. Firefish 와 상호 작용하는 코드를 작성, 실행 및 결과를 확인할 수 있습니다."
output: "출력" output: "출력"
script: "스크립트" script: "스크립트"
disablePagesScript: "Pages 에서 AiScript 를 사용하지 않음" disablePagesScript: "Pages 에서 AiScript 를 사용하지 않음"
@ -648,7 +648,7 @@ createNewClip: "새 클립 만들기"
unclip: "클립 해제" unclip: "클립 해제"
confirmToUnclipAlreadyClippedNote: "이 노트는 이미 \"{name}\" 클립에 포함되어 있습니다. 클립을 해제하시겠습니까?" confirmToUnclipAlreadyClippedNote: "이 노트는 이미 \"{name}\" 클립에 포함되어 있습니다. 클립을 해제하시겠습니까?"
public: "공개" public: "공개"
i18nInfo: "Calckey는 자원봉사자들에 의해 다양한 언어로 번역되고 있습니다. {link}에서 번역에 참가할 수 있습니다." i18nInfo: "Firefish는 자원봉사자들에 의해 다양한 언어로 번역되고 있습니다. {link}에서 번역에 참가할 수 있습니다."
manageAccessTokens: "액세스 토큰 관리" manageAccessTokens: "액세스 토큰 관리"
accountInfo: "계정 정보" accountInfo: "계정 정보"
notesCount: "노트 수" notesCount: "노트 수"
@ -964,7 +964,7 @@ _registry:
keys: "키" keys: "키"
domain: "도메인" domain: "도메인"
createKey: "키 생성" createKey: "키 생성"
_aboutMisskey: _aboutFirefish:
about: "Misskey는 syuilo에 의해서 2014년부터 개발되어 온 오픈소스 소프트웨어 입니다." about: "Misskey는 syuilo에 의해서 2014년부터 개발되어 온 오픈소스 소프트웨어 입니다."
contributors: "주요 기여자" contributors: "주요 기여자"
allContributors: "모든 기여자" allContributors: "모든 기여자"

View file

@ -1,7 +1,7 @@
_lang_: "Nederlands" _lang_: "Nederlands"
headlineMisskey: "Een open source, gedecentraliseerd, social media platform dat voor headlineMisskey: "Een open source, gedecentraliseerd, social media platform dat voor
altijd gratis is! 🚀" 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\"\ 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 \ kun je ook snel je mening geven over berichten van anderen. 👍\nLaten we een nieuwe
wereld verkennen! 🚀" wereld verkennen! 🚀"
@ -134,7 +134,7 @@ unsuspendConfirm: "Ben je zeker dat je deze account wil opnieuw aanstellen?"
flagAsBot: "Markeer dit account als een robot" flagAsBot: "Markeer dit account als een robot"
flagAsBotDescription: "Als dit account van een programma wordt beheerd, zet deze vlag flagAsBotDescription: "Als dit account van een programma wordt beheerd, zet deze vlag
aan. Het aanzetten helpt andere ontwikkelaars om bijvoorbeeld onbedoelde feedback 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." flagAsCat: "Markeer dit account als een kat."
flagAsCatDescription: "Zet deze vlag aan als je wilt aangeven dat dit account een flagAsCatDescription: "Zet deze vlag aan als je wilt aangeven dat dit account een
kat is." kat is."
@ -204,7 +204,7 @@ noUsers: "Er zijn geen gebruikers."
editProfile: "Bewerk Profiel" editProfile: "Bewerk Profiel"
noteDeleteConfirm: "Ben je zeker dat je deze post wil verwijderen?" noteDeleteConfirm: "Ben je zeker dat je deze post wil verwijderen?"
pinLimitExceeded: "Je kunt geen posts meer vastprikken" 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" done: "Klaar"
processing: "Bezig met verwerken" processing: "Bezig met verwerken"
preview: "Voorbeeld" preview: "Voorbeeld"
@ -304,7 +304,7 @@ disconnectedFromServer: "Verbinding met de server onderbroken."
inMb: "in megabytes" inMb: "in megabytes"
pinnedNotes: "Vastgemaakte notitie" pinnedNotes: "Vastgemaakte notitie"
userList: "Lijsten" userList: "Lijsten"
aboutMisskey: "Over Calckey" aboutFirefish: "Over Firefish"
administrator: "Beheerder" administrator: "Beheerder"
token: "Token" token: "Token"
securityKeyName: "Sleutelnaam" securityKeyName: "Sleutelnaam"
@ -673,7 +673,7 @@ updateRemoteUser: Update externe gebruikersinformatie
listen: Luister listen: Luister
none: Geen none: Geen
scratchpadDescription: Het kladblok is een omgeving voor AiScript experimenten. Je 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 disablePagesScript: Zet AiScript op Pages uit
deleteAllFiles: Verwijder alle bestanden deleteAllFiles: Verwijder alle bestanden
deleteAllFilesConfirm: Weet je zeker dat je alle bestanden wil verwijderen? deleteAllFilesConfirm: Weet je zeker dat je alle bestanden wil verwijderen?

View file

@ -8,7 +8,7 @@ profile: Profil
timeline: Tidslinje timeline: Tidslinje
save: Lagre save: Lagre
addToList: Legg til liste addToList: Legg til liste
searchPlaceholder: Søk Calckey searchPlaceholder: Søk Firefish
username: Brukernavn username: Brukernavn
password: Passord password: Passord
notifications: Meldinger notifications: Meldinger
@ -65,7 +65,7 @@ openInWindow: Åpne i vindu
basicSettings: Grunnleggende innstillinger basicSettings: Grunnleggende innstillinger
headlineMisskey: En desentralisert sosialt media-plattform, basert på åpen kildekode, headlineMisskey: En desentralisert sosialt media-plattform, basert på åpen kildekode,
som alltid vil være gratis! 🚀 som alltid vil være gratis! 🚀
introMisskey: Velkommen! Calckey er en desentralisert sosialt media-plattform, basert introMisskey: Velkommen! Firefish er en desentralisert sosialt media-plattform, basert
på åpen kildekode, som alltid vil være gratis! 🚀 på åpen kildekode, som alltid vil være gratis! 🚀
exportRequested: Du har bedt om en eksportering. Dette vil ta litt tid. Den vil bli exportRequested: Du har bedt om en eksportering. Dette vil ta litt tid. Den vil bli
lagt til på disken din når den er ferdig. lagt til på disken din når den er ferdig.

View file

@ -1,7 +1,7 @@
_lang_: "Polski" _lang_: "Polski"
headlineMisskey: "Otwartoźródłowa, zdecentralizowana sieć społecznościowa, która zawsze headlineMisskey: "Otwartoźródłowa, zdecentralizowana sieć społecznościowa, która zawsze
będzie darmowa! 🚀" 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! 🚀" która zawsze będzie darmowa! 🚀"
monthAndDay: "{month}-{day}" monthAndDay: "{month}-{day}"
search: "Szukaj" search: "Szukaj"
@ -150,7 +150,7 @@ flagAsBot: "To konto jest botem"
flagAsBotDescription: "Jeżeli ten kanał jest kontrolowany przez jakiś program, ustaw 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, 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 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? 😺" flagAsCat: "Czy jesteś kotem? 😺"
flagAsCatDescription: "Dostaniesz kocie uszka, oraz będziesz mówić jak kot!" flagAsCatDescription: "Dostaniesz kocie uszka, oraz będziesz mówić jak kot!"
flagShowTimelineReplies: "Pokazuj odpowiedzi na osi czasu" flagShowTimelineReplies: "Pokazuj odpowiedzi na osi czasu"
@ -211,7 +211,7 @@ noUsers: "Brak użytkowników"
editProfile: "Edytuj profil" editProfile: "Edytuj profil"
noteDeleteConfirm: "Czy na pewno chcesz usunąć ten wpis?" noteDeleteConfirm: "Czy na pewno chcesz usunąć ten wpis?"
pinLimitExceeded: "Nie możesz przypiąć więcej wpisów" 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" done: "Gotowe"
processing: "Przetwarzanie" processing: "Przetwarzanie"
preview: "Podgląd" preview: "Podgląd"
@ -396,7 +396,7 @@ exploreFediverse: "Eksploruj Fediwersum"
popularTags: "Tagi na czasie" popularTags: "Tagi na czasie"
userList: "Listy" userList: "Listy"
about: "Informacje" about: "Informacje"
aboutMisskey: "O Calckey" aboutFirefish: "O Firefish"
administrator: "Admin" administrator: "Admin"
token: "Token" token: "Token"
twoStepAuthentication: "Uwierzytelnianie dwuskładnikowe" twoStepAuthentication: "Uwierzytelnianie dwuskładnikowe"
@ -547,7 +547,7 @@ ascendingOrder: "Rosnąco"
descendingOrder: "Malejąco" descendingOrder: "Malejąco"
scratchpad: "Brudnopis" scratchpad: "Brudnopis"
scratchpadDescription: "Brudnopis to środowisko dla eksperymentów z AiScript. Możesz 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" output: "Wyjście"
script: "Skrypt" script: "Skrypt"
disablePagesScript: "Wyłącz AiScript na Stronach" disablePagesScript: "Wyłącz AiScript na Stronach"
@ -674,7 +674,7 @@ unclip: "Odczep"
confirmToUnclipAlreadyClippedNote: "Ten wpis jest już częścią klipu \"{name}\". Czy confirmToUnclipAlreadyClippedNote: "Ten wpis jest już częścią klipu \"{name}\". Czy
chcesz ją usunąć z tego klipu?" chcesz ją usunąć z tego klipu?"
public: "Publiczny" 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}." na {link}."
manageAccessTokens: "Zarządzaj tokenami dostępu" manageAccessTokens: "Zarządzaj tokenami dostępu"
accountInfo: "Informacje o koncie" accountInfo: "Informacje o koncie"
@ -825,7 +825,7 @@ hashtags: "Hashtag"
troubleshooting: "Rozwiązywanie problemów" troubleshooting: "Rozwiązywanie problemów"
useBlurEffect: "Użyj efektów rozmycia w UI" useBlurEffect: "Użyj efektów rozmycia w UI"
learnMore: "Dowiedz się więcej" learnMore: "Dowiedz się więcej"
misskeyUpdated: "Calckey zostało zaktualizowane!" misskeyUpdated: "Firefish zostało zaktualizowane!"
whatIsNew: "Pokaż zmiany" whatIsNew: "Pokaż zmiany"
translate: "Przetłumacz" translate: "Przetłumacz"
translatedFrom: "Przetłumaczone z {x}" translatedFrom: "Przetłumaczone z {x}"
@ -987,14 +987,14 @@ _registry:
keys: "Klucz" keys: "Klucz"
domain: "Domena" domain: "Domena"
createKey: "Utwórz klucz" createKey: "Utwórz klucz"
_aboutMisskey: _aboutFirefish:
about: "Calckey jest forkiem Misskey utworzonym przez ThatOneCalculator, rozwijanym about: "Firefish jest forkiem Misskey utworzonym przez ThatOneCalculator, rozwijanym
od 2022." od 2022."
contributors: "Główni twórcy" contributors: "Główni twórcy"
allContributors: "Wszyscy twórcy" allContributors: "Wszyscy twórcy"
source: "Kod źródłowy" source: "Kod źródłowy"
translation: "Tłumacz Calckey" translation: "Tłumacz Firefish"
donate: "Przekaż darowiznę na Calckey" donate: "Przekaż darowiznę na Firefish"
morePatrons: "Naprawdę doceniam wsparcie ze strony wielu niewymienionych tu osób. morePatrons: "Naprawdę doceniam wsparcie ze strony wielu niewymienionych tu osób.
Dziękuję! 🥰" Dziękuję! 🥰"
patrons: "Wspierający" patrons: "Wspierający"
@ -1004,10 +1004,10 @@ _nsfw:
force: "Ukrywaj wszystkie media" force: "Ukrywaj wszystkie media"
_mfm: _mfm:
cheatSheet: "Ściąga MFM" cheatSheet: "Ściąga MFM"
intro: "MFM jest językiem składniowym używanym przez m.in. Calckey, forki *key (w intro: "MFM jest językiem składniowym używanym przez m.in. Firefish, forki *key (w
tym Calckey), oraz Akkomę, który może być użyty w wielu miejscach. Tu znajdziesz 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." listę wszystkich możliwych elementów składni MFM."
dummy: "Calckey rozszerza świat Fediwersum" dummy: "Firefish rozszerza świat Fediwersum"
mention: "Wspomnij" mention: "Wspomnij"
mentionDescription: "Używając znaku @ i nazwy użytkownika, możesz określić danego mentionDescription: "Używając znaku @ i nazwy użytkownika, możesz określić danego
użytkownika." użytkownika."
@ -1224,7 +1224,7 @@ _time:
hour: "godz." hour: "godz."
day: "dzień" day: "dzień"
_tutorial: _tutorial:
title: "Jak korzystać z Calckey" title: "Jak korzystać z Firefish"
step1_1: "Witamy!" step1_1: "Witamy!"
step1_2: "Pozwól, że Cię skonfigurujemy. Będziesz działać w mgnieniu oka!" step1_2: "Pozwól, że Cię skonfigurujemy. Będziesz działać w mgnieniu oka!"
step2_1: "Najpierw, proszę wypełnij swój profil." 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 step5_7: "Globalna {icon} oś czasu to miejsce, gdzie możesz zobaczyć posty z każdej
innej połączonej instancji." innej połączonej instancji."
step6_1: "Więc, czym to jest to miejsce?" 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." 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 Ten jednak używa! Jest to trochę skomplikowane, ale w krótkim czasie załapiesz
o co chodzi." o co chodzi."
step6_4: "A teraz idź, odkrywaj i baw się dobrze!" 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 w formacie @osoba@serwer.com
moveFrom: Przejdź ze starego konta na obecne moveFrom: Przejdź ze starego konta na obecne
moveFromLabel: 'Konto które przenosisz:' 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 swipeOnDesktop: Zezwól na przeciąganie w stylu mobilnym na desktopie
moveFromDescription: To utworzy alias twojego starego konta, w celu umożliwienia migracji 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. 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://<bucket>.s3.amazonaws.com', albo proxy, jeśli używasz któregokolwiek.\nDla S3 użyj 'https://<bucket>.s3.amazonaws.com',
a dla GCS i jego odpowiedników użyj 'https://storage.googleapis.com/<bucket>', itd." a dla GCS i jego odpowiedników użyj 'https://storage.googleapis.com/<bucket>', itd."
sendErrorReportsDescription: "Gdy ta opcja jest włączona, szczegółowe informacje o 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 błędach będą udostępnianie z Firefish gdy wystąpi problem, pomagając w ulepszaniu
Calckey.\nZawrze to informacje takie jak wersja twojego systemu operacyjnego, przeglądarki, Firefish.\nZawrze to informacje takie jak wersja twojego systemu operacyjnego, przeglądarki,
Twoja aktywność na Calckey itd." Twoja aktywność na Firefish itd."
privateModeInfo: Gdy ta opcja jest włączona, tylko serwery z białej listy mogą federować 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. się z twoim serwerem. Wszystkie posty będą ukryte publicznie.
oneHour: Godzina oneHour: Godzina
@ -1970,7 +1970,7 @@ caption: Auto opis
splash: Splash screen splash: Splash screen
updateAvailable: Może być dostępna aktualizacja! updateAvailable: Może być dostępna aktualizacja!
logoImageUrl: URL grafiki loga 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 hiddenTags: Ukryte hashtagi
userSaysSomethingReason: '{name} powiedział* {reason}' userSaysSomethingReason: '{name} powiedział* {reason}'
customKaTeXMacroDescription: 'Skonfiguruj makra, aby łatwo pisać wyrażenia matematyczne! 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ż cannotUploadBecauseExceedsFileSizeLimit: Ten plik nie mógł być przesłany, ponieważ
jego wielkość przekracza dozwolony limit. jego wielkość przekracza dozwolony limit.
sendModMail: Wyślij Powiadomienie Moderacyjne sendModMail: Wyślij Powiadomienie Moderacyjne
searchPlaceholder: Szukaj Calckey searchPlaceholder: Szukaj Firefish
jumpToPrevious: Przejdź do poprzedniej sekcji jumpToPrevious: Przejdź do poprzedniej sekcji
listsDesc: Listy umożliwiają tworzenie osi czasu z określonymi użytkownikami. Dostęp listsDesc: Listy umożliwiają tworzenie osi czasu z określonymi użytkownikami. Dostęp
do nich można uzyskać na stronie osi czasu. do nich można uzyskać na stronie osi czasu.

View file

@ -1,7 +1,7 @@
--- ---
_lang_: "Português" _lang_: "Português"
headlineMisskey: "Uma rede ligada por notas" 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}" monthAndDay: "{day}/{month}"
search: "Buscar" search: "Buscar"
notifications: "Notificações" notifications: "Notificações"
@ -139,7 +139,7 @@ settingGuide: "Guia de configuração"
cacheRemoteFiles: "Memória transitória de arquivos remotos" 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." 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ô" 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" flagAsCat: "Marcar conta como gato"
flagAsCatDescription: "Ative essa opção para marcar essa conta como gato." flagAsCatDescription: "Ative essa opção para marcar essa conta como gato."
flagShowTimelineReplies: "Mostrar respostas na linha de tempo" flagShowTimelineReplies: "Mostrar respostas na linha de tempo"
@ -198,7 +198,7 @@ noUsers: "Sem usuários"
editProfile: "Editar Perfil" editProfile: "Editar Perfil"
noteDeleteConfirm: "Deseja excluir esta nota?" noteDeleteConfirm: "Deseja excluir esta nota?"
pinLimitExceeded: "Não consigo mais fixar" 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" done: "Concluído"
processing: "Em Progresso" processing: "Em Progresso"
preview: "Pré-visualizar" preview: "Pré-visualizar"
@ -376,7 +376,7 @@ exploreFediverse: "Explorar Fediverse"
popularTags: "Tags populares" popularTags: "Tags populares"
userList: "Listas" userList: "Listas"
about: "Informações" about: "Informações"
aboutMisskey: "Sobre Calckey" aboutFirefish: "Sobre Firefish"
administrator: "Administrador" administrator: "Administrador"
token: "Símbolo" token: "Símbolo"
twoStepAuthentication: "Verificação em duas etapas" twoStepAuthentication: "Verificação em duas etapas"

View file

@ -5,9 +5,9 @@ headlineMisskey: Uma plataforma de mídia social descentralizada e de código ab
que é gratuita para sempre! 🚀 que é gratuita para sempre! 🚀
search: Pesquisar search: Pesquisar
gotIt: Entendi! 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! 🚀 e de código aberto que é gratuita para sempre! 🚀
searchPlaceholder: Pesquise no Calckey searchPlaceholder: Pesquise no Firefish
notifications: Notificações notifications: Notificações
password: Senha password: Senha
forgotPassword: Esqueci a senha forgotPassword: Esqueci a senha

View file

@ -1,7 +1,7 @@
--- ---
_lang_: "Română" _lang_: "Română"
headlineMisskey: "O rețea conectată prin note" 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}" monthAndDay: "{day}/{month}"
search: "Caută" search: "Caută"
notifications: "Notificări" notifications: "Notificări"
@ -139,7 +139,7 @@ settingGuide: "Setări recomandate"
cacheRemoteFiles: "Ține fișierele externe in cache" 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." 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" 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ă" flagAsCat: "Marchează acest cont ca pisică"
flagAsCatDescription: "Activează această opțiune dacă acest cont este o pisică." flagAsCatDescription: "Activează această opțiune dacă acest cont este o pisică."
flagShowTimelineReplies: "Arată răspunsurile în cronologie" flagShowTimelineReplies: "Arată răspunsurile în cronologie"
@ -198,7 +198,7 @@ noUsers: "Niciun utilizator"
editProfile: "Editează profilul" editProfile: "Editează profilul"
noteDeleteConfirm: "Ești sigur că vrei să ștergi această notă?" noteDeleteConfirm: "Ești sigur că vrei să ștergi această notă?"
pinLimitExceeded: "Nu poți mai fixa mai multe note" 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" done: "Gata"
processing: "Se procesează" processing: "Se procesează"
preview: "Previzualizare" preview: "Previzualizare"
@ -376,7 +376,7 @@ exploreFediverse: "Explorează Fediverse-ul"
popularTags: "Taguri populare" popularTags: "Taguri populare"
userList: "Liste" userList: "Liste"
about: "Despre" about: "Despre"
aboutMisskey: "Despre Calckey" aboutFirefish: "Despre Firefish"
administrator: "Administrator" administrator: "Administrator"
token: "Token" token: "Token"
twoStepAuthentication: "Autentificare în doi pași" twoStepAuthentication: "Autentificare în doi pași"
@ -521,7 +521,7 @@ sort: "Sortează"
ascendingOrder: "Crescător" ascendingOrder: "Crescător"
descendingOrder: "Descrescător" descendingOrder: "Descrescător"
scratchpad: "Scratchpad" 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" output: "Ieșire"
script: "Script" script: "Script"
disablePagesScript: "Dezactivează AiScript în Pagini" disablePagesScript: "Dezactivează AiScript în Pagini"

View file

@ -1,6 +1,6 @@
_lang_: "Русский" _lang_: "Русский"
headlineMisskey: "Сеть, сплетённая из заметок" headlineMisskey: "Сеть, сплетённая из заметок"
introMisskey: "Calckey - это децентрализованная платформа социальных сетей с открытым introMisskey: "Firefish - это децентрализованная платформа социальных сетей с открытым
исходным кодом, которая свободна навсегда! 🚀" исходным кодом, которая свободна навсегда! 🚀"
monthAndDay: "{day}.{month}" monthAndDay: "{day}.{month}"
search: "Поиск" search: "Поиск"
@ -148,7 +148,7 @@ cacheRemoteFilesDescription: "Когда эта настройка отключ
так как не будут создаваться эскизы." так как не будут создаваться эскизы."
flagAsBot: "Аккаунт бота" flagAsBot: "Аккаунт бота"
flagAsBotDescription: "Включите, если этот аккаунт управляется программой. Это позволит flagAsBotDescription: "Включите, если этот аккаунт управляется программой. Это позволит
системе Calckey учитывать это, а также поможет разработчикам других ботов предотвратить системе Firefish учитывать это, а также поможет разработчикам других ботов предотвратить
бесконечные циклы взаимодействия." бесконечные циклы взаимодействия."
flagAsCat: "Аккаунт кота" flagAsCat: "Аккаунт кота"
flagAsCatDescription: "Вы получите кошачьи ушки и будете говорить как кот!" flagAsCatDescription: "Вы получите кошачьи ушки и будете говорить как кот!"
@ -214,7 +214,7 @@ noUsers: "Нет ни одного пользователя"
editProfile: "Редактировать профиль" editProfile: "Редактировать профиль"
noteDeleteConfirm: "Вы хотите удалить этот пост?" noteDeleteConfirm: "Вы хотите удалить этот пост?"
pinLimitExceeded: "Нельзя закрепить ещё больше постов" pinLimitExceeded: "Нельзя закрепить ещё больше постов"
intro: "Установка Calckey завершена! А теперь создайте учетную запись администратора." intro: "Установка Firefish завершена! А теперь создайте учетную запись администратора."
done: "Готово" done: "Готово"
processing: "Обработка" processing: "Обработка"
preview: "Предпросмотр" preview: "Предпросмотр"
@ -401,7 +401,7 @@ exploreFediverse: "Исследуйте Fediverse"
popularTags: "Популярные теги" popularTags: "Популярные теги"
userList: "Списки" userList: "Списки"
about: "Описание" about: "Описание"
aboutMisskey: "О Calckey" aboutFirefish: "О Firefish"
administrator: "Администратор" administrator: "Администратор"
token: "Токен" token: "Токен"
twoStepAuthentication: "Двухфакторная аутентификация" twoStepAuthentication: "Двухфакторная аутентификация"
@ -560,7 +560,7 @@ ascendingOrder: "по возрастанию"
descendingOrder: "По убыванию" descendingOrder: "По убыванию"
scratchpad: "Когтеточка" scratchpad: "Когтеточка"
scratchpadDescription: "«Когтеточка» — это место для опытов с AiScript. Здесь можно scratchpadDescription: "«Когтеточка» — это место для опытов с AiScript. Здесь можно
писать программы, взаимодействующие с Calckey, запускать и смотреть что из этого писать программы, взаимодействующие с Firefish, запускать и смотреть что из этого
получается." получается."
output: "Выходы" output: "Выходы"
script: "Скрипт" script: "Скрипт"
@ -694,7 +694,7 @@ createNew: "Новый документ"
optional: "Необязательно" optional: "Необязательно"
createNewClip: "Новая подборка" createNewClip: "Новая подборка"
public: "Общедоступно" public: "Общедоступно"
i18nInfo: "Calckey переводят на разные языки добровольцы со всего света. Ваша помощь i18nInfo: "Firefish переводят на разные языки добровольцы со всего света. Ваша помощь
тоже пригодится здесь: {link}." тоже пригодится здесь: {link}."
manageAccessTokens: "Управление токенами доступа" manageAccessTokens: "Управление токенами доступа"
accountInfo: "Сведения об учётной записи" accountInfo: "Сведения об учётной записи"
@ -752,7 +752,7 @@ nUsers: "Пользователей: {n}"
nNotes: "Постов: {n}" nNotes: "Постов: {n}"
sendErrorReports: "Посылать отчёты о сбоях" sendErrorReports: "Посылать отчёты о сбоях"
sendErrorReportsDescription: "Если включено, когда возникнет какая-нибудь техническая sendErrorReportsDescription: "Если включено, когда возникнет какая-нибудь техническая
проблема, подробные сведения об этом будут отправлены разработчикам Calckey.\n Это проблема, подробные сведения об этом будут отправлены разработчикам Firefish.\n Это
очень помогает делать программу лучше. В отчёты попадают тип и версия ОС, браузера, очень помогает делать программу лучше. В отчёты попадают тип и версия ОС, браузера,
журнал действий (что привело к сбою) и тому подобное." журнал действий (что привело к сбою) и тому подобное."
myTheme: "Личная тема" myTheme: "Личная тема"
@ -848,7 +848,7 @@ hashtags: "Хэштег"
troubleshooting: "Разрешение проблем" troubleshooting: "Разрешение проблем"
useBlurEffect: "Размытие в интерфейсе" useBlurEffect: "Размытие в интерфейсе"
learnMore: "Подробнее" learnMore: "Подробнее"
misskeyUpdated: "Calckey обновился!" misskeyUpdated: "Firefish обновился!"
whatIsNew: "Показать изменения" whatIsNew: "Показать изменения"
translate: "Перевод" translate: "Перевод"
translatedFrom: "Перевод. Язык оригинала — {x}" translatedFrom: "Перевод. Язык оригинала — {x}"
@ -983,13 +983,13 @@ _registry:
domain: "Домен" domain: "Домен"
createKey: "Новый ключ" createKey: "Новый ключ"
_aboutMisskey: _aboutMisskey:
about: "Calckey это форк Calckey, сделанный ThatOneCalculator, разработка которого about: "Firefish это форк Firefish, сделанный ThatOneCalculator, разработка которого
началась с 2022." началась с 2022."
contributors: "Основные соавторы" contributors: "Основные соавторы"
allContributors: "Все соавторы" allContributors: "Все соавторы"
source: "Исходный код" source: "Исходный код"
translation: "Перевод Calckey" translation: "Перевод Firefish"
donate: "Пожертвование на Calckey" donate: "Пожертвование на Firefish"
morePatrons: "Большое спасибо и многим другим, кто принял участие в этом проекте! morePatrons: "Большое спасибо и многим другим, кто принял участие в этом проекте!
🥰" 🥰"
patrons: "Материальная поддержка" patrons: "Материальная поддержка"
@ -999,10 +999,10 @@ _nsfw:
force: "Скрывать вообще все файлы" force: "Скрывать вообще все файлы"
_mfm: _mfm:
cheatSheet: "Подсказка по разметке MFM" cheatSheet: "Подсказка по разметке MFM"
intro: "MFM — язык оформления текста,используемый в Calckey, Calckey, Akkoma и готов intro: "MFM — язык оформления текста,используемый в Firefish, Firefish, Akkoma и готов
для применения во многих местах. На этой странице собраны и кратко изложены способы для применения во многих местах. На этой странице собраны и кратко изложены способы
его использовать." его использовать."
dummy: "Calckey расширяет границы Федиверса" dummy: "Firefish расширяет границы Федиверса"
mention: "Упоминание" mention: "Упоминание"
mentionDescription: "При помощи знака «собака» перед именем можно упомянуть какого-нибудь mentionDescription: "При помощи знака «собака» перед именем можно упомянуть какого-нибудь
пользователя." пользователя."
@ -1211,7 +1211,7 @@ _time:
hour: "ч" hour: "ч"
day: "сут" day: "сут"
_tutorial: _tutorial:
title: "Как использовать Calckey" title: "Как использовать Firefish"
step1_1: "Добро пожаловать!" step1_1: "Добро пожаловать!"
step1_2: "Давайте настроим вас. Вы будете работать в кратчайшие сроки!" step1_2: "Давайте настроим вас. Вы будете работать в кратчайшие сроки!"
step2_1: "Сначала, пожалуйста, заполните свой профиль." step2_1: "Сначала, пожалуйста, заполните свой профиль."
@ -1241,7 +1241,7 @@ _tutorial:
step6_2: "Ну, вы не просто присоединились к Кальки. Вы присоединились к порталу step6_2: "Ну, вы не просто присоединились к Кальки. Вы присоединились к порталу
в Fediverse, взаимосвязанной сети из тысяч серверов, называемых \"инстансами\"\ в Fediverse, взаимосвязанной сети из тысяч серверов, называемых \"инстансами\"\
." ."
step6_3: "Каждый сервер работает по-своему, и не на всех серверах работает Calckey. step6_3: "Каждый сервер работает по-своему, и не на всех серверах работает Firefish.
Но этот работает! Это немного сложно, но вы быстро разберетесь." Но этот работает! Это немного сложно, но вы быстро разберетесь."
step6_4: "Теперь идите, изучайте и развлекайтесь!" step6_4: "Теперь идите, изучайте и развлекайтесь!"
_2fa: _2fa:
@ -1882,7 +1882,7 @@ customSplashIconsDescription: URL-адреса для пользовательс
загружает / перезагружает страницу. Пожалуйста, убедитесь, что изображения находятся загружает / перезагружает страницу. Пожалуйста, убедитесь, что изображения находятся
на статическом URL-адресе, предпочтительно все с размером 192x192. на статическом URL-адресе, предпочтительно все с размером 192x192.
logoImageUrl: URL изображения логотипа logoImageUrl: URL изображения логотипа
showAdminUpdates: Указать, что доступна новая версия Calckey (только для администратора) showAdminUpdates: Указать, что доступна новая версия Firefish (только для администратора)
replayTutorial: Перезапустить туториал replayTutorial: Перезапустить туториал
migration: Миграция migration: Миграция
showLocalPosts: 'Показать локальные посты в:' showLocalPosts: 'Показать локальные посты в:'
@ -1902,7 +1902,7 @@ adminCustomCssWarn: Этот параметр следует использов
знаете, что он делает. Ввод неправильных значений может привести к тому, что ВСЕ знаете, что он делает. Ввод неправильных значений может привести к тому, что ВСЕ
клиенты перестанут нормально функционировать. Пожалуйста, убедитесь, что ваш CSS клиенты перестанут нормально функционировать. Пожалуйста, убедитесь, что ваш CSS
работает должным образом, протестировав его в настройках вашего пользователя. работает должным образом, протестировав его в настройках вашего пользователя.
showUpdates: Показывать всплывающее окно при обновлении Calckey showUpdates: Показывать всплывающее окно при обновлении Firefish
recommendedInstances: Рекомендованные инстансы recommendedInstances: Рекомендованные инстансы
defaultReaction: Эмодзи реакция по умолчанию для выходящих и исходящих постов defaultReaction: Эмодзи реакция по умолчанию для выходящих и исходящих постов
license: Лицензия license: Лицензия
@ -1991,7 +1991,7 @@ editNote: Редактировать заметку
edited: 'Редактировано в {date} {time}' edited: 'Редактировано в {date} {time}'
deleted: Удалённое deleted: Удалённое
removeReaction: Удалить вашу реакцию removeReaction: Удалить вашу реакцию
searchPlaceholder: Искать в Calckey searchPlaceholder: Искать в Firefish
jumpToPrevious: Перейти к предыдущему jumpToPrevious: Перейти к предыдущему
listsDesc: Списки позволяют вам создавать ленты с постами указанных пользователей. listsDesc: Списки позволяют вам создавать ленты с постами указанных пользователей.
Их можно найти на странице «Лента». Их можно найти на странице «Лента».

View file

@ -1,7 +1,7 @@
--- ---
_lang_: "Slovenčina" _lang_: "Slovenčina"
headlineMisskey: "Sieť prepojená poznámkami" 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}." monthAndDay: "{day}. {month}."
search: "Hľadať" search: "Hľadať"
notifications: "Oznámenia" notifications: "Oznámenia"
@ -139,7 +139,7 @@ settingGuide: "Odporúčané nastavenia"
cacheRemoteFiles: "Cachovanie vzdialených súborov" 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." 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" 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" flagAsCat: "Tento účet je mačka"
flagAsCatDescription: "Zvoľte túto voľbu, aby bol tento účet označený ako 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" flagShowTimelineReplies: "Zobraziť odpovede na poznámky v časovej osi"
@ -198,7 +198,7 @@ noUsers: "Žiadni používatelia"
editProfile: "Upraviť profil" editProfile: "Upraviť profil"
noteDeleteConfirm: "Naozaj chcete odstrániť túto poznámku?" noteDeleteConfirm: "Naozaj chcete odstrániť túto poznámku?"
pinLimitExceeded: "Ďalšie poznámky už nemôžete pripnúť." 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" done: "Hotovo"
processing: "Pracujem..." processing: "Pracujem..."
preview: "Náhľad" preview: "Náhľad"
@ -377,7 +377,7 @@ exploreFediverse: "Objavovať Fediverzum"
popularTags: "Populárne značky" popularTags: "Populárne značky"
userList: "Zoznamy" userList: "Zoznamy"
about: "Informácie" about: "Informácie"
aboutMisskey: "O Calckey" aboutFirefish: "O Firefish"
administrator: "Administrátor" administrator: "Administrátor"
token: "Token" token: "Token"
twoStepAuthentication: "Dvojfaktorová autentifikácia" twoStepAuthentication: "Dvojfaktorová autentifikácia"
@ -523,7 +523,7 @@ sort: "Zoradiť"
ascendingOrder: "Vzostupne" ascendingOrder: "Vzostupne"
descendingOrder: "Zostupne" descendingOrder: "Zostupne"
scratchpad: "Zápisník" 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" output: "Výstup"
script: "Skript" script: "Skript"
disablePagesScript: "Vypnúť AiScript na stránkach" disablePagesScript: "Vypnúť AiScript na stránkach"
@ -647,7 +647,7 @@ createNewClip: "Vytvoriť nový klip"
unclip: "Odopnúť" unclip: "Odopnúť"
confirmToUnclipAlreadyClippedNote: "Táto poznámka je už pripnutá ako \"{name}\". Naozaj ju chcete odopnúť?" confirmToUnclipAlreadyClippedNote: "Táto poznámka je už pripnutá ako \"{name}\". Naozaj ju chcete odopnúť?"
public: "Verejné" 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" manageAccessTokens: "Spravovať prístupové tokeny"
accountInfo: "Informácie o účte" accountInfo: "Informácie o účte"
notesCount: "Počet poznámok" notesCount: "Počet poznámok"
@ -698,7 +698,7 @@ onlineUsersCount: "{n} používateľov je online"
nUsers: "{n} používateľov" nUsers: "{n} používateľov"
nNotes: "{n} poznámok" nNotes: "{n} poznámok"
sendErrorReports: "Poslať nahlásenie chyby" 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" myTheme: "Moja téma"
backgroundColor: "Pozadie" backgroundColor: "Pozadie"
accentColor: "Akcent" accentColor: "Akcent"
@ -789,7 +789,7 @@ hashtags: "Hashtagy"
troubleshooting: "Riešenie problémov" troubleshooting: "Riešenie problémov"
useBlurEffect: "Používať efekty rozmazania v UI" useBlurEffect: "Používať efekty rozmazania v UI"
learnMore: "Zistiť viac" learnMore: "Zistiť viac"
misskeyUpdated: "Calckey sa aktualizoval!" misskeyUpdated: "Firefish sa aktualizoval!"
whatIsNew: "Čo je nové?" whatIsNew: "Čo je nové?"
translate: "Preložiť" translate: "Preložiť"
translatedFrom: "Preložené z {x}" translatedFrom: "Preložené z {x}"
@ -960,13 +960,13 @@ _registry:
keys: "Kľúče" keys: "Kľúče"
domain: "Doména" domain: "Doména"
createKey: "Vytvoriť kľúč" createKey: "Vytvoriť kľúč"
_aboutMisskey: _aboutFirefish:
about: "Misskey je open-source softvér, ktorý vyvíja syuilo od 2014." about: "Misskey je open-source softvér, ktorý vyvíja syuilo od 2014."
contributors: "Hlavní prispievatelia" contributors: "Hlavní prispievatelia"
allContributors: "Všetci prispievatelia" allContributors: "Všetci prispievatelia"
source: "Zdrojový kód" source: "Zdrojový kód"
translation: "Preložiť Calckey" translation: "Preložiť Firefish"
donate: "Podporiť Calckey" donate: "Podporiť Firefish"
morePatrons: "Takisto oceňujeme podporu mnoých ďalších, ktorí tu nie sú uvedení. Ďakujeme! 🥰" morePatrons: "Takisto oceňujeme podporu mnoých ďalších, ktorí tu nie sú uvedení. Ďakujeme! 🥰"
patrons: "Prispievatelia" patrons: "Prispievatelia"
_nsfw: _nsfw:
@ -975,8 +975,8 @@ _nsfw:
force: "Skryť všetky médiá" force: "Skryť všetky médiá"
_mfm: _mfm:
cheatSheet: "MFM Cheatsheet" 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." 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: "Calckey rozširuje svet Fediverza" dummy: "Firefish rozširuje svet Fediverza"
mention: "Zmienka" mention: "Zmienka"
mentionDescription: "Používateľa spomeniete použítím zavináča a mena používateľa" mentionDescription: "Používateľa spomeniete použítím zavináča a mena používateľa"
hashtag: "Hashtag" hashtag: "Hashtag"
@ -1174,7 +1174,7 @@ _time:
hour: "hod" hour: "hod"
day: "dní" day: "dní"
_tutorial: _tutorial:
title: "How to use Calckey" title: "How to use Firefish"
step1_1: "Welcome!" step1_1: "Welcome!"
step1_2: "Let's get you set up. You'll be up and running in no time!" 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." 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_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." 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_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_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 Calckey. This one does though! It's a bit complicated, but you'll get the hang of it in no time." 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!" step6_4: "Now go, explore, and have fun!"
_2fa: _2fa:
alreadyRegistered: "Už ste zaregistrovali 2-faktorové autentifikačné zariadenie." alreadyRegistered: "Už ste zaregistrovali 2-faktorové autentifikačné zariadenie."

View file

@ -1,7 +1,7 @@
--- ---
_lang_: "Svenska" _lang_: "Svenska"
headlineMisskey: "Ett nätverk kopplat av noter" 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}" monthAndDay: "{day}/{month}"
search: "Sök" search: "Sök"
notifications: "Notifikationer" notifications: "Notifikationer"
@ -197,7 +197,7 @@ noUsers: "Det finns inga användare"
editProfile: "Redigera profil" editProfile: "Redigera profil"
noteDeleteConfirm: "Är du säker på att du vill ta bort denna not?" noteDeleteConfirm: "Är du säker på att du vill ta bort denna not?"
pinLimitExceeded: "Du kan inte fästa fler noter" 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" done: "Klar"
processing: "Bearbetar..." processing: "Bearbetar..."
preview: "Förhandsvisning" preview: "Förhandsvisning"

View file

@ -1,7 +1,7 @@
--- ---
_lang_: "ภาษาไทย" _lang_: "ภาษาไทย"
headlineMisskey: "เชื่อมต่อเครือข่ายโดยโน้ต" headlineMisskey: "เชื่อมต่อเครือข่ายโดยโน้ต"
introMisskey: "ยินดีต้อนรับจ้าาา! Calckey เป็นบริการไมโครบล็อกโอเพ่นซอร์ส แบบการกระจายอำนาจ\nสร้าง \"โน้ต\" เพื่อแบ่งปันความคิดของคุณกับทุกคนรอบตัวคุณกันเถอะ 📡\nด้วยการ \"รีแอคชั่นผู้คน\" คุณยังสามารถแสดงความรู้สึกของคุณเกี่ยวกับบันทึกของทุกคนได้อย่างรวดเร็ว 👍\n\nแล้วมาท่องสำรวจโลกใบใหม่กันเถอะ! 🚀" introMisskey: "ยินดีต้อนรับจ้าาา! Firefish เป็นบริการไมโครบล็อกโอเพ่นซอร์ส แบบการกระจายอำนาจ\nสร้าง \"โน้ต\" เพื่อแบ่งปันความคิดของคุณกับทุกคนรอบตัวคุณกันเถอะ 📡\nด้วยการ \"รีแอคชั่นผู้คน\" คุณยังสามารถแสดงความรู้สึกของคุณเกี่ยวกับบันทึกของทุกคนได้อย่างรวดเร็ว 👍\n\nแล้วมาท่องสำรวจโลกใบใหม่กันเถอะ! 🚀"
monthAndDay: "{เดือน}/{วัน}" monthAndDay: "{เดือน}/{วัน}"
search: "ค้นหา" search: "ค้นหา"
notifications: "การเเจ้งเตือน" notifications: "การเเจ้งเตือน"
@ -139,7 +139,7 @@ settingGuide: "การตั้งค่าที่แนะนำ"
cacheRemoteFiles: "แคชไฟล์ระยะไกล" cacheRemoteFiles: "แคชไฟล์ระยะไกล"
cacheRemoteFilesDescription: "เมื่อปิดใช้งานการตั้งค่านี้ ไฟล์ระยะไกลนั้นจะถูกโหลดโดยตรงจากอินสแตนซ์ระยะไกล แต่กรณีการปิดใช้งานนี้จะช่วยลดปริมาณการใช้พื้นที่จัดเก็บข้อมูล แต่เพิ่มปริมาณการใช้งาน เพราะเนื่องจากจะไม่มีการสร้างภาพขนาดย่อ" cacheRemoteFilesDescription: "เมื่อปิดใช้งานการตั้งค่านี้ ไฟล์ระยะไกลนั้นจะถูกโหลดโดยตรงจากอินสแตนซ์ระยะไกล แต่กรณีการปิดใช้งานนี้จะช่วยลดปริมาณการใช้พื้นที่จัดเก็บข้อมูล แต่เพิ่มปริมาณการใช้งาน เพราะเนื่องจากจะไม่มีการสร้างภาพขนาดย่อ"
flagAsBot: "ทำเครื่องหมายบอกว่าบัญชีนี้เป็นบอท" flagAsBot: "ทำเครื่องหมายบอกว่าบัญชีนี้เป็นบอท"
flagAsBotDescription: "การเปิดใช้งานตัวเลือกนี้หากบัญชีนี้ถูกควบคุมโดยนักเขียนโปรแกรม หรือ ถ้าหากเปิดใช้งาน มันจะทำหน้าที่เป็นแฟล็กสำหรับนักพัฒนารายอื่นๆ และเพื่อป้องกันการโต้ตอบแบบไม่มีที่สิ้นสุดกับบอทตัวอื่นๆ และยังสามารถปรับเปลี่ยนระบบภายในของ Calckey เพื่อปฏิบัติต่อบัญชีนี้เป็นบอท" flagAsBotDescription: "การเปิดใช้งานตัวเลือกนี้หากบัญชีนี้ถูกควบคุมโดยนักเขียนโปรแกรม หรือ ถ้าหากเปิดใช้งาน มันจะทำหน้าที่เป็นแฟล็กสำหรับนักพัฒนารายอื่นๆ และเพื่อป้องกันการโต้ตอบแบบไม่มีที่สิ้นสุดกับบอทตัวอื่นๆ และยังสามารถปรับเปลี่ยนระบบภายในของ Firefish เพื่อปฏิบัติต่อบัญชีนี้เป็นบอท"
flagAsCat: "ทำเครื่องหมายบอกว่าบัญชีนี้เป็นแมว" flagAsCat: "ทำเครื่องหมายบอกว่าบัญชีนี้เป็นแมว"
flagAsCatDescription: "การเปิดใช้งานตัวเลือกนี้เพื่อทำเครื่องหมายบอกว่าบัญชีนี้เป็นแมว" flagAsCatDescription: "การเปิดใช้งานตัวเลือกนี้เพื่อทำเครื่องหมายบอกว่าบัญชีนี้เป็นแมว"
flagShowTimelineReplies: "แสดงตอบกลับ ในไทม์ไลน์" flagShowTimelineReplies: "แสดงตอบกลับ ในไทม์ไลน์"
@ -198,7 +198,7 @@ noUsers: "ไม่พบผู้ใช้งาน"
editProfile: "แก้ไขโปรไฟล์" editProfile: "แก้ไขโปรไฟล์"
noteDeleteConfirm: "นายแน่ใจแล้วหรอว่าต้องการลบโน้ตนี้นะ?" noteDeleteConfirm: "นายแน่ใจแล้วหรอว่าต้องการลบโน้ตนี้นะ?"
pinLimitExceeded: "คุณไม่สามารถปักหมุดโน้ตเพิ่มเติมใดๆได้อีก" pinLimitExceeded: "คุณไม่สามารถปักหมุดโน้ตเพิ่มเติมใดๆได้อีก"
intro: "การติดตั้ง Calckey เสร็จสิ้นแล้วนะ! โปรดสร้างผู้ใช้งานที่เป็นผู้ดูแลระบบ" intro: "การติดตั้ง Firefish เสร็จสิ้นแล้วนะ! โปรดสร้างผู้ใช้งานที่เป็นผู้ดูแลระบบ"
done: "เสร็จสิ้น" done: "เสร็จสิ้น"
processing: "กำลังประมวลผล..." processing: "กำลังประมวลผล..."
preview: "แสดงตัวอย่าง" preview: "แสดงตัวอย่าง"
@ -377,7 +377,7 @@ exploreFediverse: "สำรวจเฟดดิเวิร์ส"
popularTags: "แท็กยอดนิยม" popularTags: "แท็กยอดนิยม"
userList: "รายการ" userList: "รายการ"
about: "เกี่ยวกับ" about: "เกี่ยวกับ"
aboutMisskey: "เกี่ยวกับ Calckey" aboutFirefish: "เกี่ยวกับ Firefish"
administrator: "ผู้ดูแลระบบ" administrator: "ผู้ดูแลระบบ"
token: "โทเค็น" token: "โทเค็น"
twoStepAuthentication: "ยืนยันตัวตน 2 ชั้น" twoStepAuthentication: "ยืนยันตัวตน 2 ชั้น"
@ -523,7 +523,7 @@ sort: "เรียงลำดับ"
ascendingOrder: "เรียงจากน้อยไปมาก" ascendingOrder: "เรียงจากน้อยไปมาก"
descendingOrder: "เรียงจากมากไปน้อย" descendingOrder: "เรียงจากมากไปน้อย"
scratchpad: "กระดานทดลอง" scratchpad: "กระดานทดลอง"
scratchpadDescription: "Scratchpad เป็นการจัดเตรียมสภาพแวดล้อมสำหรับการทดลอง AiScript แต่คุณสามารถเขียน ดำเนินการ และตรวจสอบผลลัพธ์ของการโต้ตอบกับ Calckey มันได้ด้วยนะ" scratchpadDescription: "Scratchpad เป็นการจัดเตรียมสภาพแวดล้อมสำหรับการทดลอง AiScript แต่คุณสามารถเขียน ดำเนินการ และตรวจสอบผลลัพธ์ของการโต้ตอบกับ Firefish มันได้ด้วยนะ"
output: "เอาท์พุต" output: "เอาท์พุต"
script: "สคริปต์" script: "สคริปต์"
disablePagesScript: "ปิดการใช้งาน AiScript บนเพจ" disablePagesScript: "ปิดการใช้งาน AiScript บนเพจ"
@ -648,7 +648,7 @@ createNewClip: "สร้างคลิปใหม่"
unclip: "ลบคลิป" unclip: "ลบคลิป"
confirmToUnclipAlreadyClippedNote: "โน้ตนี้เป็นส่วนหนึ่งของคลิป \"{name}\" แล้ว คุณต้องการลบออกจากคลิปนี้แทนอย่างงั้นหรอ?" confirmToUnclipAlreadyClippedNote: "โน้ตนี้เป็นส่วนหนึ่งของคลิป \"{name}\" แล้ว คุณต้องการลบออกจากคลิปนี้แทนอย่างงั้นหรอ?"
public: "สาธารณะ" public: "สาธารณะ"
i18nInfo: "Calckey กำลังได้รับการแปลเป็นภาษาต่างๆ โดยอาสาสมัคร คุณสามารถช่วยเหลือได้ที่ {link}" i18nInfo: "Firefish กำลังได้รับการแปลเป็นภาษาต่างๆ โดยอาสาสมัคร คุณสามารถช่วยเหลือได้ที่ {link}"
manageAccessTokens: "การจัดการโทเค็นการเข้าถึง" manageAccessTokens: "การจัดการโทเค็นการเข้าถึง"
accountInfo: "ข้อมูลบัญชี" accountInfo: "ข้อมูลบัญชี"
notesCount: "จำนวนของโน้ต" notesCount: "จำนวนของโน้ต"
@ -699,7 +699,7 @@ onlineUsersCount: "{n} ผู้ใช้คนนี้กำลังออน
nUsers: "{n} ผู้ใช้งาน" nUsers: "{n} ผู้ใช้งาน"
nNotes: "{n} โน้ต" nNotes: "{n} โน้ต"
sendErrorReports: "ส่งรายงานว่าข้อผิดพลาด" sendErrorReports: "ส่งรายงานว่าข้อผิดพลาด"
sendErrorReportsDescription: "เมื่อเปิดใช้งาน ข้อมูลข้อผิดพลาดโดยรายละเอียดนั้นจะถูกแชร์ให้กับ Calckey เมื่อเกิดปัญหา ซึ่งช่วยปรับปรุงคุณภาพของ Calckey\nซึ่งจะรวมถึงข้อมูล เช่น เวอร์ชั่นของระบบปฏิบัติการ เบราว์เซอร์ที่คุณใช้ กิจกรรมของคุณใน Calckey เป็นต้น" sendErrorReportsDescription: "เมื่อเปิดใช้งาน ข้อมูลข้อผิดพลาดโดยรายละเอียดนั้นจะถูกแชร์ให้กับ Firefish เมื่อเกิดปัญหา ซึ่งช่วยปรับปรุงคุณภาพของ Firefish\nซึ่งจะรวมถึงข้อมูล เช่น เวอร์ชั่นของระบบปฏิบัติการ เบราว์เซอร์ที่คุณใช้ กิจกรรมของคุณใน Firefish เป็นต้น"
myTheme: "ธีมของฉัน" myTheme: "ธีมของฉัน"
backgroundColor: "ภาพพื้นหลัง" backgroundColor: "ภาพพื้นหลัง"
accentColor: "รูปแบบสี" accentColor: "รูปแบบสี"
@ -790,7 +790,7 @@ hashtags: "แฮชแท็ก"
troubleshooting: "แก้ปัญหา" troubleshooting: "แก้ปัญหา"
useBlurEffect: "ใช้เอฟเฟกต์เบลอใน UI" useBlurEffect: "ใช้เอฟเฟกต์เบลอใน UI"
learnMore: "แสดงให้ดูหน่อย" learnMore: "แสดงให้ดูหน่อย"
misskeyUpdated: "Calckey ได้รับการอัปเดตแล้ว!" misskeyUpdated: "Firefish ได้รับการอัปเดตแล้ว!"
whatIsNew: "แสดงการเปลี่ยนแปลง" whatIsNew: "แสดงการเปลี่ยนแปลง"
translate: "แปลภาษา" translate: "แปลภาษา"
translatedFrom: "แปลมาจาก {x}" translatedFrom: "แปลมาจาก {x}"
@ -965,13 +965,13 @@ _registry:
keys: "คีย์" keys: "คีย์"
domain: "โดเมน" domain: "โดเมน"
createKey: "สร้างคีย์" createKey: "สร้างคีย์"
_aboutMisskey: _aboutFirefish:
about: "Misskey เป็นซอฟต์แวร์โอเพ่นซอร์สที่ถูกพัฒนาโดย Syuilo ตั้งแต่ปี 2014" about: "Misskey เป็นซอฟต์แวร์โอเพ่นซอร์สที่ถูกพัฒนาโดย Syuilo ตั้งแต่ปี 2014"
contributors: "ผู้สนับสนุนหลัก" contributors: "ผู้สนับสนุนหลัก"
allContributors: "ผู้มีส่วนร่วมทั้งหมด" allContributors: "ผู้มีส่วนร่วมทั้งหมด"
source: "ซอร์สโค้ด" source: "ซอร์สโค้ด"
translation: "รับแปลภาษา Calckey" translation: "รับแปลภาษา Firefish"
donate: "บริจาคให้กับ Calckey" donate: "บริจาคให้กับ Firefish"
morePatrons: "เราขอขอบคุณสำหรับความช่วยเหลือจากผู้ช่วยอื่นๆ ที่ไม่ได้ระบุไว้ที่นี่นะ ขอขอบคุณ! 🥰" morePatrons: "เราขอขอบคุณสำหรับความช่วยเหลือจากผู้ช่วยอื่นๆ ที่ไม่ได้ระบุไว้ที่นี่นะ ขอขอบคุณ! 🥰"
patrons: "สมาชิกพันธมิตร" patrons: "สมาชิกพันธมิตร"
_nsfw: _nsfw:
@ -980,8 +980,8 @@ _nsfw:
force: "ซ่อนสื่อทั้งหมด" force: "ซ่อนสื่อทั้งหมด"
_mfm: _mfm:
cheatSheet: "โค้ด MFM Cheat Sheet" cheatSheet: "โค้ด MFM Cheat Sheet"
intro: "MFM เป็นภาษามาร์กอัปพิเศษเฉพาะของ Calckey ที่สามารถใช้ได้ในหลายที่ คุณยังสามารถดูรายการไวยากรณ์ MFM ที่มีอยู่ทั้งหมดได้ที่นี่นะ" intro: "MFM เป็นภาษามาร์กอัปพิเศษเฉพาะของ Firefish ที่สามารถใช้ได้ในหลายที่ คุณยังสามารถดูรายการไวยากรณ์ MFM ที่มีอยู่ทั้งหมดได้ที่นี่นะ"
dummy: "Calckey ขยายโลกของ Fediverse" dummy: "Firefish ขยายโลกของ Fediverse"
mention: "กล่าวถึง" mention: "กล่าวถึง"
mentionDescription: "คุณสามารถระบุผู้ใช้โดยใช้ At-Symbol และชื่อผู้ใช้ได้นะ" mentionDescription: "คุณสามารถระบุผู้ใช้โดยใช้ At-Symbol และชื่อผู้ใช้ได้นะ"
hashtag: "แฮชแท็ก" hashtag: "แฮชแท็ก"

View file

@ -1,5 +1,5 @@
_lang_: "Türkçe" _lang_: "Türkçe"
introMisskey: "Hoş geldin! Calckey, sonsuza kadar ücretsiz olan, açık kaynaklı, merkezi introMisskey: "Hoş geldin! Firefish, sonsuza kadar ücretsiz olan, açık kaynaklı, merkezi
olmayan bir sosyal medya platformudur! 🚀" olmayan bir sosyal medya platformudur! 🚀"
monthAndDay: "{month}Ay {day}Gün" monthAndDay: "{month}Ay {day}Gün"
search: "Arama" search: "Arama"
@ -54,7 +54,7 @@ _mfm:
play: MFM'i çal play: MFM'i çal
stop: MFM'i durdur stop: MFM'i durdur
cheatSheet: MFM Kopya Kağıdı cheatSheet: MFM Kopya Kağıdı
intro: MFM, Misskey, Calckey, Akkoma ve daha pek çok yerde kullanılabilen bir biçimlendirme intro: MFM, Misskey, Firefish, Akkoma ve daha pek çok yerde kullanılabilen bir biçimlendirme
dilidir. Burada mevcut tüm MFM sözdiziminin bir listesini görüntüleyebilirsiniz. dilidir. Burada mevcut tüm MFM sözdiziminin bir listesini görüntüleyebilirsiniz.
link: Link link: Link
boldDescription: Harfleri kalınlaştırarak vurgular. boldDescription: Harfleri kalınlaştırarak vurgular.
@ -81,7 +81,7 @@ _mfm:
mentionDescription: Bir et-sembolü (@) ve bir kullanıcı adı kullanarak bir kullanıcı mentionDescription: Bir et-sembolü (@) ve bir kullanıcı adı kullanarak bir kullanıcı
belirleyebilirsiniz. belirleyebilirsiniz.
hashtag: Etiket hashtag: Etiket
dummy: Calckey, Fediverse dünyasını genişletiyor dummy: Firefish, Fediverse dünyasını genişletiyor
hashtagDescription: Sayı işareti ve metin kullanarak bir etiket belirtebilirsiniz. hashtagDescription: Sayı işareti ve metin kullanarak bir etiket belirtebilirsiniz.
url: URL url: URL
urlDescription: URL'ler görüntülenebilir. urlDescription: URL'ler görüntülenebilir.
@ -220,7 +220,7 @@ _deck:
introduction: Sütunları özgürce düzenleyerek sizin için mükemmel arayüzü oluşturun! introduction: Sütunları özgürce düzenleyerek sizin için mükemmel arayüzü oluşturun!
widgetsIntroduction: Lütfen sütun menüsünde "Araç'ları düzenle"yi seçin ve bir widget widgetsIntroduction: Lütfen sütun menüsünde "Araç'ları düzenle"yi seçin ve bir widget
ekleyin. ekleyin.
searchPlaceholder: Calckey'de Ara searchPlaceholder: Firefish'de Ara
reply: Yanıtla reply: Yanıtla
jumpToPrevious: Öncekini görüntüle jumpToPrevious: Öncekini görüntüle
deleted: Silindi deleted: Silindi
@ -260,7 +260,7 @@ blockedInstancesDescription: Engellemek istediğiniz sunucuların ana bilgisayar
listeleyin. Listelenen sunucular artık bu sunucularla iletişim kuramayacak. listeleyin. Listelenen sunucular artık bu sunucularla iletişim kuramayacak.
blockedUsers: Engellenmiş kullanıcılar blockedUsers: Engellenmiş kullanıcılar
editProfile: Profilini düzenle editProfile: Profilini düzenle
intro: Calckey'in indirilmesi tamamlandı! Lütfen yönetici hesap oluşturun. intro: Firefish'in indirilmesi tamamlandı! Lütfen yönetici hesap oluşturun.
instanceUsers: Sunucunun kullanıcıları instanceUsers: Sunucunun kullanıcıları
changePassword: Şifreyi değiştir changePassword: Şifreyi değiştir
security: Güvenlik security: Güvenlik
@ -700,7 +700,7 @@ invalidValue: Geçersiz değer.
instanceSecurity: Sunucu Güvenliği instanceSecurity: Sunucu Güvenliği
searchResult: Arama sonuçları searchResult: Arama sonuçları
useBlurEffect: Kullanıcı arayüzünde bulanıklaştırma efektleri kullanın useBlurEffect: Kullanıcı arayüzünde bulanıklaştırma efektleri kullanın
misskeyUpdated: Calckey güncellendi! misskeyUpdated: Firefish güncellendi!
lastCommunication: Son iletişim lastCommunication: Son iletişim
itsOn: Etkinleştirilmiş itsOn: Etkinleştirilmiş
emailRequiredForSignup: Kayıt olmak için mail gerekiyor emailRequiredForSignup: Kayıt olmak için mail gerekiyor
@ -829,9 +829,9 @@ low: Düşük
seperateRenoteQuote: Ayrı destek ve fiyat teklifi düğmeleri seperateRenoteQuote: Ayrı destek ve fiyat teklifi düğmeleri
sent: Gönderildi sent: Gönderildi
customMOTD: Özel MOTD customMOTD: Özel MOTD
showUpdates: Calckey güncellendiğinde bir açılır pencere göster showUpdates: Firefish güncellendiğinde bir açılır pencere göster
logoImageUrl: Logo resim URL'si logoImageUrl: Logo resim URL'si
showAdminUpdates: Yeni bir Calckey sürümünün mevcut olduğunu belirtin (yalnızca yönetici) showAdminUpdates: Yeni bir Firefish sürümünün mevcut olduğunu belirtin (yalnızca yönetici)
newer: asla newer: asla
older: daha eski older: daha eski
exportRequested: Bir dışarı aktarma talebinde bulundunuz. Bu biraz zaman alabilir. exportRequested: Bir dışarı aktarma talebinde bulundunuz. Bu biraz zaman alabilir.
@ -896,7 +896,7 @@ recaptchaSecretKey: Secret key
avoidMultiCaptchaConfirm: Birden fazla Captcha sistemi kullanmak aralarında etkileşime avoidMultiCaptchaConfirm: Birden fazla Captcha sistemi kullanmak aralarında etkileşime
neden olabilir. Şu anda etkin olan diğer Captcha sistemlerini devre dışı bırakmak neden olabilir. Şu anda etkin olan diğer Captcha sistemlerini devre dışı bırakmak
ister misiniz? Etkin kalmalarını istiyorsanız, iptal düğmesine basın. ister misiniz? Etkin kalmalarını istiyorsanız, iptal düğmesine basın.
aboutMisskey: Calckey Hakkında aboutFirefish: Firefish Hakkında
popularUsers: Popüler kullanıcılar popularUsers: Popüler kullanıcılar
notFoundDescription: Bu URL'ye karşılık gelen sayfa bulunamadı. notFoundDescription: Bu URL'ye karşılık gelen sayfa bulunamadı.
reduceUiAnimation: Arayüz animasyonlarını azalt reduceUiAnimation: Arayüz animasyonlarını azalt
@ -1096,7 +1096,7 @@ instanceTicker: Göndeirlerdeki sunucu bilgisi
waitingFor: '{x} bekleniyor' waitingFor: '{x} bekleniyor'
random: Rastgele random: Rastgele
public: Herkese açık public: Herkese açık
i18nInfo: Calckey, gönüllüler tarafından çeşitli dillere çevriliyor. {link} adresinden i18nInfo: Firefish, gönüllüler tarafından çeşitli dillere çevriliyor. {link} adresinden
yardımcı olabilirsiniz. yardımcı olabilirsiniz.
disableShowingAnimatedImages: Animasyonlu görüntüleri oynatma disableShowingAnimatedImages: Animasyonlu görüntüleri oynatma
clips: Ataçlar clips: Ataçlar
@ -1187,7 +1187,7 @@ cacheRemoteFiles: Uzak dosyaları önbellekle
flagAsBot: Bu hesabı robot olarak işaretle flagAsBot: Bu hesabı robot olarak işaretle
flagAsBotDescription: Bu hesap bir program tarafından kontrol ediliyorsa bu seçeneği flagAsBotDescription: Bu hesap bir program tarafından kontrol ediliyorsa bu seçeneği
etkinleştirin. Etkinleştirilirse, diğer geliştiricilerin diğer botlarla sonsuz etkileşim etkinleştirin. Etkinleştirilirse, diğer geliştiricilerin diğer botlarla sonsuz etkileşim
zincirlerini önlemesi ve Calckey'nin dahili sistemlerini bu hesabı bir bot olarak zincirlerini önlemesi ve Firefish'nin dahili sistemlerini bu hesabı bir bot olarak
ele alacak şekilde ayarlaması için bir bayrak görevi görür. ele alacak şekilde ayarlaması için bir bayrak görevi görür.
clearQueue: Sırayı Temizle clearQueue: Sırayı Temizle
hiddenTags: Gizlenmiş Etiketler hiddenTags: Gizlenmiş Etiketler
@ -1219,7 +1219,7 @@ ascendingOrder: Artan
tags: Etiketler tags: Etiketler
descendingOrder: Azalan descendingOrder: Azalan
scratchpadDescription: Karalama defteri, AiScript deneyleri için bir ortam sağlar. scratchpadDescription: Karalama defteri, AiScript deneyleri için bir ortam sağlar.
İçinde Calckey ile etkileşime girerek sonuçlarını yazabilir, çalıştırabilir ve kontrol İçinde Firefish ile etkileşime girerek sonuçlarını yazabilir, çalıştırabilir ve kontrol
edebilirsiniz. edebilirsiniz.
local: Yerel local: Yerel
remote: Uzak remote: Uzak
@ -1247,8 +1247,8 @@ desktop: Masaüstü
confirmToUnclipAlreadyClippedNote: Bu gönderi zaten "{name}" atacının bir parçası. confirmToUnclipAlreadyClippedNote: Bu gönderi zaten "{name}" atacının bir parçası.
Bunun yerine onu bu ataçtan kaldırmak istiyor musunuz? Bunun yerine onu bu ataçtan kaldırmak istiyor musunuz?
sendErrorReportsDescription: "Açıldığında, bir sorun oluştuğunda ayrıntılı hata bilgileri sendErrorReportsDescription: "Açıldığında, bir sorun oluştuğunda ayrıntılı hata bilgileri
Calckey ile paylaşılarak Calckey kalitesinin artırılmasına yardımcı olur.\nBu, işletim Firefish ile paylaşılarak Firefish kalitesinin artırılmasına yardımcı olur.\nBu, işletim
sisteminizin sürümü, kullandığınız tarayıcı, Calckey'deki etkinliğiniz vb. bilgileri sisteminizin sürümü, kullandığınız tarayıcı, Firefish'deki etkinliğiniz vb. bilgileri
içerecektir." içerecektir."
closeAccount: Hesabı kapat closeAccount: Hesabı kapat
markAllAsRead: Okunmuş olarak işaretle markAllAsRead: Okunmuş olarak işaretle
@ -1298,7 +1298,7 @@ showWithSparkles: Parıltılarla göster
showPopup: Kullanıcıları pop-up ile bilgilendirin showPopup: Kullanıcıları pop-up ile bilgilendirin
silencedWarning: Bu sayfa, bu kullanıcılar yöneticinizin susturduğu sunuculardan olduğu silencedWarning: Bu sayfa, bu kullanıcılar yöneticinizin susturduğu sunuculardan olduğu
için gösteriliyor, bu nedenle potansiyel olarak spam olabilirler. için gösteriliyor, bu nedenle potansiyel olarak spam olabilirler.
isPatron: Calckey Patronu isPatron: Firefish Patronu
youHaveUnreadAnnouncements: Okunmamış duyurularınız var youHaveUnreadAnnouncements: Okunmamış duyurularınız var
donationLink: Bağış sayfası linki donationLink: Bağış sayfası linki
neverShow: Birdaha gösterme neverShow: Birdaha gösterme
@ -1322,7 +1322,7 @@ signupsDisabled: Bu sunucudaki kayıtlar şu anda devre dışı, ancak istediği
başka bir sunucuya kaydolabilirsiniz! Bu sunucu için bir davet kodunuz varsa, lütfen başka bir sunucuya kaydolabilirsiniz! Bu sunucu için bir davet kodunuz varsa, lütfen
aşağıya girin. aşağıya girin.
sendModMail: Moderasyon Bildirimi Gönder sendModMail: Moderasyon Bildirimi Gönder
noGraze: Calckey ile çakıştığı için lütfen "Graze for Mastodon" tarayıcı uzantısını noGraze: Firefish ile çakıştığı için lütfen "Graze for Mastodon" tarayıcı uzantısını
devre dışı bırakın. devre dışı bırakın.
isBot: Bu hesap bir bottur isBot: Bu hesap bir bottur
_2fa: _2fa:
@ -1862,7 +1862,7 @@ _notification:
youGotMessagingMessageFromUser: '{name} sana bir sohbet mesajı gönderdi' youGotMessagingMessageFromUser: '{name} sana bir sohbet mesajı gönderdi'
_experiments: _experiments:
title: Deneyler title: Deneyler
postImportsCaption: Kullanıcıların geçmiş Calckey, Misskey, Mastodon, Akkoma ve postImportsCaption: Kullanıcıların geçmiş Firefish, Misskey, Mastodon, Akkoma ve
Pleroma hesaplarından gönderilerini içe aktarmalarına izin verir. Kuyruğunuz tıkanırsa Pleroma hesaplarından gönderilerini içe aktarmalarına izin verir. Kuyruğunuz tıkanırsa
yükleme sırasında yavaşlamalara neden olabilir. yükleme sırasında yavaşlamalara neden olabilir.
enablePostImports: Gönderi içeri aktarmasını aktif et enablePostImports: Gönderi içeri aktarmasını aktif et
@ -1932,23 +1932,23 @@ _preferencesBackups:
_aboutMisskey: _aboutMisskey:
patronsList: Bağış büyüklüğüne göre değil, kronolojik olarak listelenmiştir. Adınızı patronsList: Bağış büyüklüğüne göre değil, kronolojik olarak listelenmiştir. Adınızı
buraya almak için yukarıdaki bağlantıyla bağış yapın! buraya almak için yukarıdaki bağlantıyla bağış yapın!
about: Calckey, 2022'den beri geliştirilmekte olan ThatOneCalculator tarafından about: Firefish, 2022'den beri geliştirilmekte olan ThatOneCalculator tarafından
yapılan bir Misskey çatalıdır. yapılan bir Misskey çatalıdır.
allContributors: Tüm katkıda bulunanlar allContributors: Tüm katkıda bulunanlar
patrons: Calckey patronları patrons: Firefish patronları
morePatrons: Burada listelenmeyen diğer birçok yardımcının desteğini de takdir ediyoruz. morePatrons: Burada listelenmeyen diğer birçok yardımcının desteğini de takdir ediyoruz.
Teşekkür ederim! 🥰 Teşekkür ederim! 🥰
donate: Calckey'e bağışta bulunun donate: Firefish'e bağışta bulunun
contributors: Ana katkıda bulunanlar contributors: Ana katkıda bulunanlar
source: Kaynak Kodu source: Kaynak Kodu
translation: Calckey'i tercüme et translation: Firefish'i tercüme et
donateTitle: Calckey'den hoşlanıyor musunuz? donateTitle: Firefish'den hoşlanıyor musunuz?
pleaseDonateToCalckey: Lütfen gelişimini desteklemek için Calckey'e bağış yapmayı pleaseDonateToFirefish: Lütfen gelişimini desteklemek için Firefish'e bağış yapmayı
düşünün. düşünün.
pleaseDonateToHost: İşletme maliyetlerini desteklemek için lütfen ev sunucunuz {host}'a pleaseDonateToHost: İşletme maliyetlerini desteklemek için lütfen ev sunucunuz {host}'a
bağış yapmayı da düşünün. bağış yapmayı da düşünün.
donateHost: '{ev sahibi} için bağış yapın' donateHost: '{ev sahibi} için bağış yapın'
sponsors: Calckey sponsorları sponsors: Firefish sponsorları
_weekday: _weekday:
saturday: Cumartesi saturday: Cumartesi
sunday: Pazar sunday: Pazar
@ -1982,7 +1982,7 @@ _tutorial:
step5_6: Önerilen {icon} zaman çizelgesi, yöneticilerin önerdiği sunuculardan gelen step5_6: Önerilen {icon} zaman çizelgesi, yöneticilerin önerdiği sunuculardan gelen
gönderileri görebileceğiniz yerdir. gönderileri görebileceğiniz yerdir.
step6_1: Peki burası neresi? step6_1: Peki burası neresi?
title: Calckey nasıl kullanılır title: Firefish nasıl kullanılır
step3_2: "Ev ve sosyal zaman çizelgeleriniz, kimi takip ettiğinize bağlıdır, bu step3_2: "Ev ve sosyal zaman çizelgeleriniz, kimi takip ettiğinize bağlıdır, bu
nedenle başlamak için birkaç hesabı takip etmeyi deneyin.\nTakip etmek için bir nedenle başlamak için birkaç hesabı takip etmeyi deneyin.\nTakip etmek için bir
profilin sağ üstündeki artı dairesine tıklayın." profilin sağ üstündeki artı dairesine tıklayın."
@ -1990,7 +1990,7 @@ _tutorial:
görebileceğiniz yerdir. görebileceğiniz yerdir.
step5_4: Yerel {icon} zaman çizelgesi, bu sunucudaki diğer herkesin gönderilerini step5_4: Yerel {icon} zaman çizelgesi, bu sunucudaki diğer herkesin gönderilerini
görebileceğiniz yerdir. görebileceğiniz yerdir.
step6_2: Calckey'e öylece katılmadın. Binlerce sunucudan oluşan birbirine bağlı step6_2: Firefish'e öylece katılmadın. Binlerce sunucudan oluşan birbirine bağlı
bir ağ olan Fediverse'e giden bir portala katıldınız. bir ağ olan Fediverse'e giden bir portala katıldınız.
step6_4: Şimdi gidin, keşfedin ve eğlenin! step6_4: Şimdi gidin, keşfedin ve eğlenin!
step5_7: Global {icon} zaman çizelgesi, bağlı diğer tüm sunuculardan gelen gönderileri step5_7: Global {icon} zaman çizelgesi, bağlı diğer tüm sunuculardan gelen gönderileri
@ -2002,7 +2002,7 @@ _tutorial:
step1_1: Hoşgeldin! step1_1: Hoşgeldin!
step1_2: Hadi seni hazırlayalım. Kısa sürede kullanmaya başlayacaksınız! step1_2: Hadi seni hazırlayalım. Kısa sürede kullanmaya başlayacaksınız!
step5_1: Zaman çizelgeleri, her yerde zaman çizelgeleri! step5_1: Zaman çizelgeleri, her yerde zaman çizelgeleri!
step6_3: Her sunucu farklı şekillerde çalışır ve tüm sunucular Calckey'i çalıştırmaz. step6_3: Her sunucu farklı şekillerde çalışır ve tüm sunucular Firefish'i çalıştırmaz.
Ama bu sunucu kullanıyor! Biraz karışık ama kısa sürede anlayacaksın. Ama bu sunucu kullanıyor! Biraz karışık ama kısa sürede anlayacaksın.
step4_1: Seni oradan çıkaralım. step4_1: Seni oradan çıkaralım.
step5_2: Sunucunuzda etkinleştirilmiş {timelines} farklı zaman çizelgesi var. step5_2: Sunucunuzda etkinleştirilmiş {timelines} farklı zaman çizelgesi var.

View file

@ -1,6 +1,6 @@
_lang_: "Українська" _lang_: "Українська"
headlineMisskey: "Мережа об'єднана записами" headlineMisskey: "Мережа об'єднана записами"
introMisskey: "Ласкаво просимо! Calckey - децентралізована служба мікроблогів з відкритим introMisskey: "Ласкаво просимо! Firefish - децентралізована служба мікроблогів з відкритим
кодом.\nСтворюйте \"нотатки\", щоб поділитися тим, що відбувається, і розповісти кодом.\nСтворюйте \"нотатки\", щоб поділитися тим, що відбувається, і розповісти
всім про себе 📡\nЗа допомогою \"реакцій\" ви також можете швидко висловити свої всім про себе 📡\nЗа допомогою \"реакцій\" ви також можете швидко висловити свої
почуття щодо нотаток інших 👍\nДосліджуймо новий світ! 🚀" почуття щодо нотаток інших 👍\nДосліджуймо новий світ! 🚀"
@ -151,7 +151,7 @@ cacheRemoteFilesDescription: "Якщо кешування вимкнено, ві
flagAsBot: "Акаунт бота" flagAsBot: "Акаунт бота"
flagAsBotDescription: "Ввімкніть якщо цей обліковий запис використовується ботом. flagAsBotDescription: "Ввімкніть якщо цей обліковий запис використовується ботом.
Ця опція позначить обліковий запис як бота. Це потрібно щоб виключити безкінечну Ця опція позначить обліковий запис як бота. Це потрібно щоб виключити безкінечну
інтеракцію між ботами а також відповідного підлаштування Calckey." інтеракцію між ботами а також відповідного підлаштування Firefish."
flagAsCat: "Акаунт кота" flagAsCat: "Акаунт кота"
flagAsCatDescription: "Ввімкніть, щоб позначити, що обліковий запис є котиком, та flagAsCatDescription: "Ввімкніть, щоб позначити, що обліковий запис є котиком, та
отримати котячі вуха!" отримати котячі вуха!"
@ -219,7 +219,7 @@ noUsers: "Немає користувачів"
editProfile: "Редагувати обліковий запис" editProfile: "Редагувати обліковий запис"
noteDeleteConfirm: "Ви дійсно хочете видалити цей запис?" noteDeleteConfirm: "Ви дійсно хочете видалити цей запис?"
pinLimitExceeded: "Ви не можете закріпити більше записів" pinLimitExceeded: "Ви не можете закріпити більше записів"
intro: "Встановлення Calckey завершено! Будь ласка, створіть обліковий запис адміністратора." intro: "Встановлення Firefish завершено! Будь ласка, створіть обліковий запис адміністратора."
done: "Готово" done: "Готово"
processing: "Обробка" processing: "Обробка"
preview: "Попередній перегляд" preview: "Попередній перегляд"
@ -404,7 +404,7 @@ exploreFediverse: "Огляд федіверсу"
popularTags: "Популярні теги" popularTags: "Популярні теги"
userList: "Списки" userList: "Списки"
about: "Інформація" about: "Інформація"
aboutMisskey: "Про Calckey" aboutFirefish: "Про Firefish"
administrator: "Адмін" administrator: "Адмін"
token: "Токен" token: "Токен"
twoStepAuthentication: "Двохфакторна аутентифікація" twoStepAuthentication: "Двохфакторна аутентифікація"
@ -558,7 +558,7 @@ ascendingOrder: "За зростанням"
descendingOrder: "За спаданням" descendingOrder: "За спаданням"
scratchpad: "Чернетка" scratchpad: "Чернетка"
scratchpadDescription: "Scratchpad надає середовище для експериментів з AiScript. scratchpadDescription: "Scratchpad надає середовище для експериментів з AiScript.
Ви можете писати, виконувати його і тестувати взаємодію з Calckey." Ви можете писати, виконувати його і тестувати взаємодію з Firefish."
output: "Вихід" output: "Вихід"
script: "Скрипт" script: "Скрипт"
disablePagesScript: "Вимкнути AiScript на Сторінках" disablePagesScript: "Вимкнути AiScript на Сторінках"
@ -693,7 +693,7 @@ createNew: "Створити новий"
optional: "Необов'язково" optional: "Необов'язково"
createNewClip: "Створити підбірку" createNewClip: "Створити підбірку"
public: "Публічний" public: "Публічний"
i18nInfo: "Calckey перекладається на різні мови волонтерами. Ви можете допомогти за i18nInfo: "Firefish перекладається на різні мови волонтерами. Ви можете допомогти за
посиланням: {link}." посиланням: {link}."
manageAccessTokens: "Керування токенами доступу" manageAccessTokens: "Керування токенами доступу"
accountInfo: "Інформація про акаунт" accountInfo: "Інформація про акаунт"
@ -751,9 +751,9 @@ nUsers: "{n} Користувачів"
nNotes: "{n} Записів" nNotes: "{n} Записів"
sendErrorReports: "Надіслати звіт про помилки" sendErrorReports: "Надіслати звіт про помилки"
sendErrorReportsDescription: "Якщо увімкнено, детальна інформація про помилки буде sendErrorReportsDescription: "Якщо увімкнено, детальна інформація про помилки буде
передаватися до Calckey, коли виникає проблема, це допоможе покращити якість роботи передаватися до Firefish, коли виникає проблема, це допоможе покращити якість роботи
Calckey.\nЦе буде включати інформацію таку як: версія вашої ОС, який браузер ви Firefish.\nЦе буде включати інформацію таку як: версія вашої ОС, який браузер ви
використовуєте, ваша активність в Calckey тощо." використовуєте, ваша активність в Firefish тощо."
myTheme: "Моя тема" myTheme: "Моя тема"
backgroundColor: "Фон" backgroundColor: "Фон"
accentColor: "Акцент" accentColor: "Акцент"
@ -829,28 +829,28 @@ _aboutMisskey:
contributors: "Головні помічники" contributors: "Головні помічники"
allContributors: "Всі помічники" allContributors: "Всі помічники"
source: "Вихідний код" source: "Вихідний код"
translation: "Перекладати Calckey" translation: "Перекладати Firefish"
donate: "Пожертвувати Calckey" donate: "Пожертвувати Firefish"
morePatrons: "Ми дуже цінуємо підтримку багатьох інших помічників, не перелічених morePatrons: "Ми дуже цінуємо підтримку багатьох інших помічників, не перелічених
тут. Дякуємо! 🥰" тут. Дякуємо! 🥰"
patrons: "Підтримали" patrons: "Підтримали"
patronsList: Перераховані в хронологічному порядку, а не за розміром пожертви. Зробіть patronsList: Перераховані в хронологічному порядку, а не за розміром пожертви. Зробіть
внесок за посиланням вище, щоб ваше ім'я було тут! внесок за посиланням вище, щоб ваше ім'я було тут!
donateTitle: Сподобався Calckey? donateTitle: Сподобався Firefish?
pleaseDonateToCalckey: Будь ласка, підтримайте розробку Calckey. pleaseDonateToFirefish: Будь ласка, підтримайте розробку Firefish.
pleaseDonateToHost: Також не забудьте підтримати ваш домашній сервер {host}, щоб pleaseDonateToHost: Також не забудьте підтримати ваш домашній сервер {host}, щоб
допомогти з його операційними витратами. допомогти з його операційними витратами.
donateHost: Зробити внесок на рахунок {host} donateHost: Зробити внесок на рахунок {host}
sponsors: Спонсори Calckey sponsors: Спонсори Firefish
_nsfw: _nsfw:
respect: "Приховувати NSFW медіа" respect: "Приховувати NSFW медіа"
ignore: "Не приховувати NSFW медіа" ignore: "Не приховувати NSFW медіа"
force: "Приховувати всі медіа файли" force: "Приховувати всі медіа файли"
_mfm: _mfm:
cheatSheet: "Довідка MFM" cheatSheet: "Довідка MFM"
intro: "MFM це ексклюзивна мова розмітки тексту в Calckey, яку можна використовувати intro: "MFM це ексклюзивна мова розмітки тексту в Firefish, яку можна використовувати
в багатьох місцях. Тут ви можете переглянути приклади її синтаксису." в багатьох місцях. Тут ви можете переглянути приклади її синтаксису."
dummy: "Calckey розширює світ Федіверсу" dummy: "Firefish розширює світ Федіверсу"
mention: "Згадка" mention: "Згадка"
mentionDescription: "За допомогою знака \"@\" перед ім'ям можна згадати конкретного mentionDescription: "За допомогою знака \"@\" перед ім'ям можна згадати конкретного
користувача." користувача."
@ -1071,7 +1071,7 @@ _time:
hour: "г" hour: "г"
day: "д" day: "д"
_tutorial: _tutorial:
title: "Як використовувати Calckey" title: "Як використовувати Firefish"
step1_1: "Ласкаво просимо!" step1_1: "Ласкаво просимо!"
step1_2: "Давайте налаштуємо вас. Ви будете працювати в найкоротші терміни!" step1_2: "Давайте налаштуємо вас. Ви будете працювати в найкоротші терміни!"
step2_1: "Спочатку, будь ласка, заповніть свій профіль." step2_1: "Спочатку, будь ласка, заповніть свій профіль."
@ -1096,9 +1096,9 @@ _tutorial:
step5_7: "Глобальна {icon} стрічка - це місце, де ви можете бачити записи від усіх step5_7: "Глобальна {icon} стрічка - це місце, де ви можете бачити записи від усіх
інших приєднаних серверів." інших приєднаних серверів."
step6_1: "Отже, що це за місце?" step6_1: "Отже, що це за місце?"
step6_2: "Ну, ви не просто приєдналися до Calckey. Ви увійшли в Fediverse, взаємопов'язану step6_2: "Ну, ви не просто приєдналися до Firefish. Ви увійшли в Fediverse, взаємопов'язану
мережу з тисяч серверів." мережу з тисяч серверів."
step6_3: "Кожен сервер працює по-своєму, і не на всіх серверах працює Calckey. Але step6_3: "Кожен сервер працює по-своєму, і не на всіх серверах працює Firefish. Але
цей працює! Це трохи складно, але ви швидко розберетеся." цей працює! Це трохи складно, але ви швидко розберетеся."
step6_4: "Тепер ідіть, вивчайте і розважайтеся!" step6_4: "Тепер ідіть, вивчайте і розважайтеся!"
_2fa: _2fa:
@ -1705,7 +1705,7 @@ emailRequiredForSignup: Вимагати адресу електронної п
moderation: Модерація moderation: Модерація
selectInstance: Оберіть сервер selectInstance: Оберіть сервер
instanceSecurity: Безпека сервера instanceSecurity: Безпека сервера
searchPlaceholder: Шукати в Calckey searchPlaceholder: Шукати в Firefish
editNote: Відредагувати запис editNote: Відредагувати запис
enableEmojiReactions: Ввімкнути реакції емодзі enableEmojiReactions: Ввімкнути реакції емодзі
low: Низький low: Низький
@ -1767,7 +1767,7 @@ ads: Реклама
cw: Попередження про вміст cw: Попередження про вміст
hiddenTags: Приховані хештеги hiddenTags: Приховані хештеги
noInstances: Немає серверів noInstances: Немає серверів
misskeyUpdated: Calckey оновлено! misskeyUpdated: Firefish оновлено!
received: Отримане received: Отримане
xl: Надвеликий xl: Надвеликий
searchResult: Результати пошуку searchResult: Результати пошуку
@ -1871,7 +1871,7 @@ _experiments:
enablePostImports: Ввімкнути імпорт записів enablePostImports: Ввімкнути імпорт записів
title: Експерименти title: Експерименти
postImportsCaption: Дозволяє користувачам імпортувати свої публікації з минулих postImportsCaption: Дозволяє користувачам імпортувати свої публікації з минулих
облікових записів Calckey, Misskey, Mastodon, Akkoma і Pleroma. Це може спричинити облікових записів Firefish, Misskey, Mastodon, Akkoma і Pleroma. Це може спричинити
зниження швидкості під час завантаження, якщо ваша черга перевантажена. зниження швидкості під час завантаження, якщо ваша черга перевантажена.
_dialog: _dialog:
charactersExceeded: 'Перевищено максимальну кількість символів! Обмеження: {current}/{max}' charactersExceeded: 'Перевищено максимальну кількість символів! Обмеження: {current}/{max}'
@ -1982,12 +1982,12 @@ sendPushNotificationReadMessageCaption: На короткий час буде п
текстом "{emptyPushNotificationMessage}". Це може призвести до збільшення споживання текстом "{emptyPushNotificationMessage}". Це може призвести до збільшення споживання
заряду акумулятора вашого пристрою, якщо це можливо. заряду акумулятора вашого пристрою, якщо це можливо.
pushNotificationNotSupported: Ваш браузер або сервер не підтримує push-сповіщення pushNotificationNotSupported: Ваш браузер або сервер не підтримує push-сповіщення
showUpdates: Показувати спливаюче вікно при оновленні Calckey showUpdates: Показувати спливаюче вікно при оновленні Firefish
updateAvailable: Можливо, є доступне оновлення! updateAvailable: Можливо, є доступне оновлення!
recommendedInstancesDescription: Рекомендовані сервери відокремлюються переведенням recommendedInstancesDescription: Рекомендовані сервери відокремлюються переведенням
рядка, щоб з'явитися на стрічці рекомендацій. рядка, щоб з'явитися на стрічці рекомендацій.
caption: Автоматичний підпис caption: Автоматичний підпис
showAdminUpdates: Вказати, що доступна нова версія Calckey (тільки для адміністратора) showAdminUpdates: Вказати, що доступна нова версія Firefish (тільки для адміністратора)
defaultReaction: Емодзі реакція за замовчуванням для вихідних і вхідних записів defaultReaction: Емодзі реакція за замовчуванням для вихідних і вхідних записів
license: Ліцензія license: Ліцензія
indexPosts: Індексувати пости indexPosts: Індексувати пости
@ -2004,7 +2004,7 @@ enableCustomKaTeXMacro: Увімкнути користувацькі макро
apps: Додатки apps: Додатки
isModerator: Модератор isModerator: Модератор
isAdmin: Адміністратор isAdmin: Адміністратор
isPatron: Патрон Calckey isPatron: Патрон Firefish
swipeOnMobile: Дозволити гортання між сторінками swipeOnMobile: Дозволити гортання між сторінками
migration: Міграція migration: Міграція
swipeOnDesktop: Дозволити свайп у мобільному стилі на десктопі swipeOnDesktop: Дозволити свайп у мобільному стилі на десктопі
@ -2064,7 +2064,7 @@ cropImage: Обрізати зображення
recentNDays: Останні {n} днів recentNDays: Останні {n} днів
navbar: Панель навігації navbar: Панель навігації
noGraze: Будь ласка, вимкніть розширення браузера "Graze для Mastodon", оскільки воно noGraze: Будь ласка, вимкніть розширення браузера "Graze для Mastodon", оскільки воно
заважає роботі Calckey. заважає роботі Firefish.
preventAiLearningDescription: Попросити сторонні мовні моделі ШІ не вивчати вміст, preventAiLearningDescription: Попросити сторонні мовні моделі ШІ не вивчати вміст,
який ви завантажуєте, наприклад, записи та зображення. який ви завантажуєте, наприклад, записи та зображення.
userSaysSomethingReasonReply: '{name} відповів на пост з {reason}' userSaysSomethingReasonReply: '{name} відповів на пост з {reason}'

View file

@ -1,7 +1,7 @@
--- ---
_lang_: "Tiếng Việt" _lang_: "Tiếng Việt"
headlineMisskey: "Mạng xã hội liên hợp" 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}" monthAndDay: "{day} tháng {month}"
search: "Tìm kiếm" search: "Tìm kiếm"
notifications: "Thông báo" notifications: "Thông báo"
@ -139,7 +139,7 @@ settingGuide: "Cài đặt đề xuất"
cacheRemoteFiles: "Tập tin cache từ xa" 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." 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" 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" 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." 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" 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ơ" editProfile: "Sửa hồ sơ"
noteDeleteConfirm: "Bạn có chắc muốn xóa tút này?" 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" 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" done: "Xong"
processing: "Đang xử lý" processing: "Đang xử lý"
preview: "Xem trước" preview: "Xem trước"
@ -377,7 +377,7 @@ exploreFediverse: "Khám phá Fediverse"
popularTags: "Hashtag thông dụng" popularTags: "Hashtag thông dụng"
userList: "Danh sách" userList: "Danh sách"
about: "Giới thiệu" about: "Giới thiệu"
aboutMisskey: "Về Misskey" aboutFirefish: "Về Misskey"
administrator: "Quản trị viên" administrator: "Quản trị viên"
token: "Token" token: "Token"
twoStepAuthentication: "Xác minh 2 bước" twoStepAuthentication: "Xác minh 2 bước"
@ -523,7 +523,7 @@ sort: "Sắp xếp"
ascendingOrder: "Tăng dần" ascendingOrder: "Tăng dần"
descendingOrder: "Giảm dần" descendingOrder: "Giảm dần"
scratchpad: "Scratchpad" 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" output: "Nguồn ra"
script: "Kịch bản" script: "Kịch bản"
disablePagesScript: "Tắt AiScript trên Trang" disablePagesScript: "Tắt AiScript trên Trang"
@ -648,7 +648,7 @@ createNewClip: "Tạo một ghim mới"
unclip: "Bỏ ghim" 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?" 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" 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" manageAccessTokens: "Tạo mã truy cập"
accountInfo: "Thông tin tài khoản" accountInfo: "Thông tin tài khoản"
notesCount: "Số lượng tút" notesCount: "Số lượng tút"
@ -699,7 +699,7 @@ onlineUsersCount: "{n} người đang online"
nUsers: "{n} Người" nUsers: "{n} Người"
nNotes: "{n} Tút" nNotes: "{n} Tút"
sendErrorReports: "Báo lỗi" 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" myTheme: "Theme của tôi"
backgroundColor: "Màu nền" backgroundColor: "Màu nền"
accentColor: "Màu phụ" accentColor: "Màu phụ"
@ -790,7 +790,7 @@ hashtags: "Hashtag"
troubleshooting: "Khắc phục sự cố" troubleshooting: "Khắc phục sự cố"
useBlurEffect: "Dùng hiệu ứng làm mờ trong giao diện" useBlurEffect: "Dùng hiệu ứng làm mờ trong giao diện"
learnMore: "Tìm hiểu thêm" 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" whatIsNew: "Hiện những thay đổi"
translate: "Dịch" translate: "Dịch"
translatedFrom: "Dịch từ {x}" translatedFrom: "Dịch từ {x}"
@ -965,13 +965,13 @@ _registry:
keys: "Các mã" keys: "Các mã"
domain: "Tên miền" domain: "Tên miền"
createKey: "Tạo mã" createKey: "Tạo mã"
_aboutMisskey: _aboutFirefish:
about: "Misskey là phần mềm mã nguồn mở được phát triển bởi syuilo từ năm 2014." about: "Misskey là phần mềm mã nguồn mở được phát triển bởi syuilo từ năm 2014."
contributors: "Những người đóng góp nổi bật" contributors: "Những người đóng góp nổi bật"
allContributors: "Toàn bộ người đóng góp" allContributors: "Toàn bộ người đóng góp"
source: "Mã nguồn" source: "Mã nguồn"
translation: "Dịch Calckey" translation: "Dịch Firefish"
donate: "Ủng hộ Calckey" 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! 🥰" 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ộ" patrons: "Người ủng hộ"
_nsfw: _nsfw:
@ -980,8 +980,8 @@ _nsfw:
force: "Ẩn mọi media" force: "Ẩn mọi media"
_mfm: _mfm:
cheatSheet: "MFM Cheatsheet" 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." 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: "Calckey mở rộng thế giới Fediverse" dummy: "Firefish mở rộng thế giới Fediverse"
mention: "Nhắc đến" 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." mentionDescription: "Bạn có thể nhắc đến ai đó bằng cách sử dụng @tên người dùng."
hashtag: "Hashtag" hashtag: "Hashtag"
@ -1179,7 +1179,7 @@ _time:
hour: "giờ" hour: "giờ"
day: "ngày" day: "ngày"
_tutorial: _tutorial:
title: "How to use Calckey" title: "How to use Firefish"
step1_1: "Welcome!" step1_1: "Welcome!"
step1_2: "Let's get you set up. You'll be up and running in no time!" 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." 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_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." 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_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_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 Calckey. This one does though! It's a bit complicated, but you'll get the hang of it in no time." 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!" step6_4: "Now go, explore, and have fun!"
_2fa: _2fa:
alreadyRegistered: "Bạn đã đăng ký thiết bị xác minh 2 bước." alreadyRegistered: "Bạn đã đăng ký thiết bị xác minh 2 bước."

View file

@ -1,6 +1,6 @@
_lang_: "简体中文" _lang_: "简体中文"
headlineMisskey: "一个开源、去中心化的社交媒体平台,永远免费!🚀" headlineMisskey: "一个开源、去中心化的社交媒体平台,永远免费!🚀"
introMisskey: "欢迎! Calckey 是一个开源、去中心化的社交媒体平台,永久免费!🚀" introMisskey: "欢迎! Firefish 是一个开源、去中心化的社交媒体平台,永久免费!🚀"
monthAndDay: "{month} 月 {day} 日" monthAndDay: "{month} 月 {day} 日"
search: "搜索" search: "搜索"
notifications: "通知" notifications: "通知"
@ -142,7 +142,7 @@ settingGuide: "推荐配置"
cacheRemoteFiles: "缓存远程文件" cacheRemoteFiles: "缓存远程文件"
cacheRemoteFilesDescription: "当禁用此设定时远程文件将直接从远程服务器载入。禁用后会减小储存空间需求,但是会增加流量,因为缩略图不会被生成。" cacheRemoteFilesDescription: "当禁用此设定时远程文件将直接从远程服务器载入。禁用后会减小储存空间需求,但是会增加流量,因为缩略图不会被生成。"
flagAsBot: "这是一个机器人账号" flagAsBot: "这是一个机器人账号"
flagAsBotDescription: "如果此账号由程序控制,请启用此项。启用后,此标志可以帮助其它开发人员防止机器人之间产生无限互动的行为,并让 Calckey flagAsBotDescription: "如果此账号由程序控制,请启用此项。启用后,此标志可以帮助其它开发人员防止机器人之间产生无限互动的行为,并让 Firefish
的内部系统将此账号识别为机器人。" 的内部系统将此账号识别为机器人。"
flagAsCat: "将这个账号设定为一只猫😺" flagAsCat: "将这个账号设定为一只猫😺"
flagAsCatDescription: "您会长出猫耳朵并像猫一样说话!" flagAsCatDescription: "您会长出猫耳朵并像猫一样说话!"
@ -202,7 +202,7 @@ noUsers: "无用户"
editProfile: "编辑个人资料" editProfile: "编辑个人资料"
noteDeleteConfirm: "确定要删除此帖子吗?" noteDeleteConfirm: "确定要删除此帖子吗?"
pinLimitExceeded: "无法置顶更多帖子了" pinLimitExceeded: "无法置顶更多帖子了"
intro: "Calckey 安装完成!请创建一个管理员用户。" intro: "Firefish 安装完成!请创建一个管理员用户。"
done: "完成" done: "完成"
processing: "正在处理" processing: "正在处理"
preview: "预览" preview: "预览"
@ -381,7 +381,7 @@ exploreFediverse: "探索联邦宇宙"
popularTags: "热门标签" popularTags: "热门标签"
userList: "列表" userList: "列表"
about: "关于" about: "关于"
aboutMisskey: "关于 Calckey" aboutFirefish: "关于 Firefish"
administrator: "管理员" administrator: "管理员"
token: "令牌" token: "令牌"
twoStepAuthentication: "两步验证" twoStepAuthentication: "两步验证"
@ -529,7 +529,7 @@ sort: "排序"
ascendingOrder: "升序" ascendingOrder: "升序"
descendingOrder: "降序" descendingOrder: "降序"
scratchpad: "AiScript 控制台" scratchpad: "AiScript 控制台"
scratchpadDescription: "AiScript 控制台为 AiScript 提供了实验环境。您可以编写代码以与 Calckey 交互,运行它并查看结果。" scratchpadDescription: "AiScript 控制台为 AiScript 提供了实验环境。您可以编写代码以与 Firefish 交互,运行它并查看结果。"
output: "输出" output: "输出"
script: "脚本" script: "脚本"
disablePagesScript: "在页面中禁用 AiScript" disablePagesScript: "在页面中禁用 AiScript"
@ -654,7 +654,7 @@ createNewClip: "新建便签"
unclip: "移除便签" unclip: "移除便签"
confirmToUnclipAlreadyClippedNote: "本帖已包含在便签 \"{name}\" 里。您想要将本帖从该便签中移除吗?" confirmToUnclipAlreadyClippedNote: "本帖已包含在便签 \"{name}\" 里。您想要将本帖从该便签中移除吗?"
public: "公开" public: "公开"
i18nInfo: "Calckey 已经被志愿者们翻译成了各种语言。如果您也有兴趣,可以通过 {link} 帮助翻译。" i18nInfo: "Firefish 已经被志愿者们翻译成了各种语言。如果您也有兴趣,可以通过 {link} 帮助翻译。"
manageAccessTokens: "管理访问令牌" manageAccessTokens: "管理访问令牌"
accountInfo: "账号信息" accountInfo: "账号信息"
notesCount: "帖子数量" notesCount: "帖子数量"
@ -705,8 +705,8 @@ onlineUsersCount: "{n} 人在线"
nUsers: "{n} 用户" nUsers: "{n} 用户"
nNotes: "{n} 帖子" nNotes: "{n} 帖子"
sendErrorReports: "发送错误报告" sendErrorReports: "发送错误报告"
sendErrorReportsDescription: "启用后,如果出现问题,可以与 Calckey 共享详细的错误信息,从而帮助提高软件的质量。\n这将包括您的操作系统版本、您使用的浏览器、您在 sendErrorReportsDescription: "启用后,如果出现问题,可以与 Firefish 共享详细的错误信息,从而帮助提高软件的质量。\n这将包括您的操作系统版本、您使用的浏览器、您在
Calckey 中的活动等信息。" Firefish 中的活动等信息。"
myTheme: "我的主题" myTheme: "我的主题"
backgroundColor: "背景色" backgroundColor: "背景色"
accentColor: "强调色" accentColor: "强调色"
@ -797,7 +797,7 @@ hashtags: "话题标签"
troubleshooting: "故障排除" troubleshooting: "故障排除"
useBlurEffect: "在 UI 上使用模糊效果" useBlurEffect: "在 UI 上使用模糊效果"
learnMore: "更多信息" learnMore: "更多信息"
misskeyUpdated: "Calckey 更新完成!" misskeyUpdated: "Firefish 更新完成!"
whatIsNew: "显示更新信息" whatIsNew: "显示更新信息"
translate: "翻译" translate: "翻译"
translatedFrom: "从 {x} 翻译" translatedFrom: "从 {x} 翻译"
@ -978,15 +978,15 @@ _registry:
keys: "键" keys: "键"
domain: "域" domain: "域"
createKey: "创建键" createKey: "创建键"
_aboutMisskey: _aboutFirefish:
about: "Calckey 是由 ThatOneCalculator 创建的 Misskey 的一个分支,自 2022 年开始开发。" about: "Firefish 是由 ThatOneCalculator 创建的 Misskey 的一个分支,自 2022 年开始开发。"
contributors: "主要贡献者" contributors: "主要贡献者"
allContributors: "全体贡献者" allContributors: "全体贡献者"
source: "源代码" source: "源代码"
translation: "翻译 Calckey" translation: "翻译 Firefish"
donate: "赞助 Calckey" donate: "赞助 Firefish"
morePatrons: "还有很多其它的人也在支持我们,非常感谢🥰" morePatrons: "还有很多其它的人也在支持我们,非常感谢🥰"
patrons: "Calckey 赞助者" patrons: "Firefish 赞助者"
patronsList: 按时间顺序而不是捐赠金额排列。通过上面的链接捐款,让您的名字出现在这里! patronsList: 按时间顺序而不是捐赠金额排列。通过上面的链接捐款,让您的名字出现在这里!
sponsors: Calckey 赞助者们 sponsors: Calckey 赞助者们
donateTitle: 喜欢 Calckey 吗? donateTitle: 喜欢 Calckey 吗?
@ -999,8 +999,8 @@ _nsfw:
force: "总是隐藏内容" force: "总是隐藏内容"
_mfm: _mfm:
cheatSheet: "MFM 代码速查表" cheatSheet: "MFM 代码速查表"
intro: "MFM 是一种在 Misskey、Calckey、Akkoma 中使用的标记语言,可以在很多地方使用。您可以在此处查看所有可用的 MFM 语法的列表。" intro: "MFM 是一种在 Misskey、Firefish、Akkoma 中使用的标记语言,可以在很多地方使用。您可以在此处查看所有可用的 MFM 语法的列表。"
dummy: "通过 Calckey 扩展联邦宇宙的世界" dummy: "通过 Firefish 扩展联邦宇宙的世界"
mention: "提及" mention: "提及"
mentionDescription: "可以使用 @+用户名 来指示特定用户。" mentionDescription: "可以使用 @+用户名 来指示特定用户。"
hashtag: "话题标签" hashtag: "话题标签"
@ -1219,7 +1219,7 @@ _time:
hour: "小时" hour: "小时"
day: "日" day: "日"
_tutorial: _tutorial:
title: "如何使用 Calckey" title: "如何使用 Firefish"
step1_1: "欢迎!" step1_1: "欢迎!"
step1_2: "让我们帮您设置一下。您很快就能开始畅游联邦宇宙!" step1_2: "让我们帮您设置一下。您很快就能开始畅游联邦宇宙!"
step2_1: "首先,请完成您的个人资料。" step2_1: "首先,请完成您的个人资料。"
@ -1236,8 +1236,8 @@ _tutorial:
step5_6: "推荐 {icon} 时间线是您可以看到管理员推荐服务器的帖子的时间线。" step5_6: "推荐 {icon} 时间线是您可以看到管理员推荐服务器的帖子的时间线。"
step5_7: "全球 {icon} 时间线是您可以看到来自其它所有互联服务器的帖子的时间线。" step5_7: "全球 {icon} 时间线是您可以看到来自其它所有互联服务器的帖子的时间线。"
step6_1: "那么,这里是什么地方?" step6_1: "那么,这里是什么地方?"
step6_2: "好吧,您不只是加入 Calckey。您已经加入了 Fediverse 的一个门户,这是一个由成千上万台服务器组成的互联网络。" step6_2: "好吧,您不只是加入 Firefish。您已经加入了 Fediverse 的一个门户,这是一个由成千上万台服务器组成的互联网络。"
step6_3: "每个服务器的工作方式不同,并不是所有的服务器都运行 Calckey。但这个服务器是的! 这有点复杂,但您很快就会明白的。" step6_3: "每个服务器的工作方式不同,并不是所有的服务器都运行 Firefish。但这个服务器是的! 这有点复杂,但您很快就会明白的。"
step6_4: "现在,去吧,去探索,去享受乐趣吧!" step6_4: "现在,去吧,去探索,去享受乐趣吧!"
_2fa: _2fa:
alreadyRegistered: "您已经注册了两步验证设备。" alreadyRegistered: "您已经注册了两步验证设备。"
@ -1818,7 +1818,7 @@ _messaging:
migration: 迁移 migration: 迁移
_experiments: _experiments:
title: 实验性功能 title: 实验性功能
postImportsCaption: 允许用户从过去的 Calckey、Misskey、Mastodon、Akkoma 和 Pleroma 账号导入帖子。如果您的队列出现拥堵,则可能会导致加载速度减慢。 postImportsCaption: 允许用户从过去的 Firefish、Misskey、Mastodon、Akkoma 和 Pleroma 账号导入帖子。如果您的队列出现拥堵,则可能会导致加载速度减慢。
enablePostImports: 启用帖子导入 enablePostImports: 启用帖子导入
license: 许可证 license: 许可证
flagSpeakAsCatDescription: 在猫模式下您的帖子会喵化 flagSpeakAsCatDescription: 在猫模式下您的帖子会喵化
@ -1838,14 +1838,14 @@ customSplashIconsDescription: 用换行符隔开的自定义启动屏幕图标
URL 上,最好全部调整为 192x192 的大小。 URL 上,最好全部调整为 192x192 的大小。
recommendedInstancesDescription: 推荐的服务器一行一个,它们将出现在推荐时间线中。 recommendedInstancesDescription: 推荐的服务器一行一个,它们将出现在推荐时间线中。
splash: 启动画面 splash: 启动画面
showUpdates: Calckey 更新后显示弹出窗口 showUpdates: Firefish 更新后显示弹出窗口
selectInstance: 选择服务器 selectInstance: 选择服务器
silencedInstances: 禁言的服务器 silencedInstances: 禁言的服务器
antennaInstancesDescription: 列出服务器主机名,一行一个 antennaInstancesDescription: 列出服务器主机名,一行一个
pushNotification: 推送通知 pushNotification: 推送通知
subscribePushNotification: 启用推送通知 subscribePushNotification: 启用推送通知
showAdminUpdates: 提示新的 Calckey 版本可用(仅对于管理员) showAdminUpdates: 提示新的 Firefish 版本可用(仅对于管理员)
searchPlaceholder: 搜索 Calckey searchPlaceholder: 搜索 Firefish
addInstance: 添加服务器 addInstance: 添加服务器
jumpToPrevious: 跳转到上一个 jumpToPrevious: 跳转到上一个
silenceThisInstance: 禁言此服务器 silenceThisInstance: 禁言此服务器
@ -1921,7 +1921,7 @@ moveAccountDescription: 这个过程是不可逆的。在迁移之前,请确
moveFromLabel: 您要迁移出的旧账号: moveFromLabel: 您要迁移出的旧账号:
preventAiLearning: 阻止 AI 机器人抓取 preventAiLearning: 阻止 AI 机器人抓取
preventAiLearningDescription: 请求第三方人工智能语言模型不要研究您上传的内容,例如帖子和图像。 preventAiLearningDescription: 请求第三方人工智能语言模型不要研究您上传的内容,例如帖子和图像。
noGraze: 请禁用 "Graze for Mastodon" 浏览器扩展,因为它会干扰 Calckey noGraze: 请禁用 "Graze for Mastodon" 浏览器扩展,因为它会干扰 Firefish
moveTo: 将当前账号迁移至新账号 moveTo: 将当前账号迁移至新账号
moveToLabel: 您要迁移到的目标账号: moveToLabel: 您要迁移到的目标账号:
moveAccount: 迁移账号! moveAccount: 迁移账号!
@ -1943,7 +1943,7 @@ _filters:
fromUser: 来自用户 fromUser: 来自用户
followersOnly: 仅关注者 followersOnly: 仅关注者
reactionPickerSkinTone: 首选的表情符号肤色 reactionPickerSkinTone: 首选的表情符号肤色
isPatron: Calckey 赞助 isPatron: Firefish 赞助
_dialog: _dialog:
charactersExceeded: 超出了最大字符数!当前:{current} / 限制:{max} charactersExceeded: 超出了最大字符数!当前:{current} / 限制:{max}
charactersBelow: 没有足够的字符!当前:{current} / 限制:{min} charactersBelow: 没有足够的字符!当前:{current} / 限制:{min}

View file

@ -1,6 +1,6 @@
_lang_: "繁體中文" _lang_: "繁體中文"
headlineMisskey: "貼文連繫網路" headlineMisskey: "貼文連繫網路"
introMisskey: "歡迎! Calckey是一個開源、去中心化且永遠免費的社群網路平台!🚀" introMisskey: "歡迎! Firefish是一個開源、去中心化且永遠免費的社群網路平台!🚀"
monthAndDay: "{month}月 {day}日" monthAndDay: "{month}月 {day}日"
search: "搜尋" search: "搜尋"
notifications: "通知" notifications: "通知"
@ -142,7 +142,7 @@ settingGuide: "推薦設定"
cacheRemoteFiles: "快取遠端檔案" cacheRemoteFiles: "快取遠端檔案"
cacheRemoteFilesDescription: "禁用此設定會停止遠端檔案的緩存,從而節省儲存空間,但資料會因直接連線從而產生額外數據花費。" cacheRemoteFilesDescription: "禁用此設定會停止遠端檔案的緩存,從而節省儲存空間,但資料會因直接連線從而產生額外數據花費。"
flagAsBot: "標記此帳號是機器人" flagAsBot: "標記此帳號是機器人"
flagAsBotDescription: "如果本帳戶是由程式控制,請啟用此選項。啟用後,會作為標示幫助其他開發者防止機器人之間產生無限互動的行為,並會調整Calckey內部系統將本帳戶識別為機器人。" flagAsBotDescription: "如果本帳戶是由程式控制,請啟用此選項。啟用後,會作為標示幫助其他開發者防止機器人之間產生無限互動的行為,並會調整Firefish內部系統將本帳戶識別為機器人。"
flagAsCat: "你是喵咪嗎w😺" flagAsCat: "你是喵咪嗎w😺"
flagAsCatDescription: "如果想將本帳戶標示為一隻貓,請開啟此標示!" flagAsCatDescription: "如果想將本帳戶標示為一隻貓,請開啟此標示!"
flagShowTimelineReplies: "在時間線上顯示貼文的回覆" flagShowTimelineReplies: "在時間線上顯示貼文的回覆"
@ -201,7 +201,7 @@ noUsers: "沒有任何使用者"
editProfile: "編輯個人檔案" editProfile: "編輯個人檔案"
noteDeleteConfirm: "確定刪除此貼文嗎?" noteDeleteConfirm: "確定刪除此貼文嗎?"
pinLimitExceeded: "不能置頂更多貼文了" pinLimitExceeded: "不能置頂更多貼文了"
intro: "Calckey 部署完成!請建立管理員帳戶。" intro: "Firefish 部署完成!請建立管理員帳戶。"
done: "完成" done: "完成"
processing: "處理中" processing: "處理中"
preview: "預覽" preview: "預覽"
@ -380,7 +380,7 @@ exploreFediverse: "探索聯邦世界"
popularTags: "熱門標籤" popularTags: "熱門標籤"
userList: "清單" userList: "清單"
about: "資訊" about: "資訊"
aboutMisskey: "關於 Calckey" aboutFirefish: "關於 Firefish"
administrator: "管理員" administrator: "管理員"
token: "權杖" token: "權杖"
twoStepAuthentication: "兩階段驗證" twoStepAuthentication: "兩階段驗證"
@ -526,7 +526,7 @@ sort: "排序"
ascendingOrder: "昇冪" ascendingOrder: "昇冪"
descendingOrder: "降冪" descendingOrder: "降冪"
scratchpad: "暫存記憶體" scratchpad: "暫存記憶體"
scratchpadDescription: "AiScript控制台為AiScript提供了實驗環境。您可以在此編寫、執行和確認代碼與Calckey互動的结果。" scratchpadDescription: "AiScript控制台為AiScript提供了實驗環境。您可以在此編寫、執行和確認代碼與Firefish互動的结果。"
output: "輸出" output: "輸出"
script: "腳本" script: "腳本"
disablePagesScript: "停用頁面的AiScript腳本" disablePagesScript: "停用頁面的AiScript腳本"
@ -651,7 +651,7 @@ createNewClip: "建立新摘錄"
unclip: "解除摘錄" unclip: "解除摘錄"
confirmToUnclipAlreadyClippedNote: "此貼文已包含在摘錄「{name}」中。 你想將貼文從這個摘錄中排除嗎?" confirmToUnclipAlreadyClippedNote: "此貼文已包含在摘錄「{name}」中。 你想將貼文從這個摘錄中排除嗎?"
public: "公開" public: "公開"
i18nInfo: "Calckey已經被志願者們翻譯成各種語言版本,如果想要幫忙的話,可以進入{link}幫助翻譯。" i18nInfo: "Firefish已經被志願者們翻譯成各種語言版本,如果想要幫忙的話,可以進入{link}幫助翻譯。"
manageAccessTokens: "管理存取權杖" manageAccessTokens: "管理存取權杖"
accountInfo: "帳戶資訊" accountInfo: "帳戶資訊"
notesCount: "貼文數量" notesCount: "貼文數量"
@ -702,8 +702,8 @@ onlineUsersCount: "{n}人正在線上"
nUsers: "{n}用戶" nUsers: "{n}用戶"
nNotes: "{n}貼文" nNotes: "{n}貼文"
sendErrorReports: "傳送錯誤報告" sendErrorReports: "傳送錯誤報告"
sendErrorReportsDescription: "開啟後,錯誤出現時將會與 Calckey 分享詳細紀錄,對於 Calckey 的開發會有非常大的幫助。\n sendErrorReportsDescription: "開啟後,錯誤出現時將會與 Firefish 分享詳細紀錄,對於 Firefish 的開發會有非常大的幫助。\n
這將包括您的操作系統版本、使用的瀏覽器、您在 Calckey 中的活動等資料。" 這將包括您的操作系統版本、使用的瀏覽器、您在 Firefish 中的活動等資料。"
myTheme: "我的佈景主題" myTheme: "我的佈景主題"
backgroundColor: "背景" backgroundColor: "背景"
accentColor: "重點色彩" accentColor: "重點色彩"
@ -794,7 +794,7 @@ hashtags: "#tag"
troubleshooting: "故障排除" troubleshooting: "故障排除"
useBlurEffect: "在 UI 上使用模糊效果" useBlurEffect: "在 UI 上使用模糊效果"
learnMore: "更多資訊" learnMore: "更多資訊"
misskeyUpdated: "Calckey 更新完成!" misskeyUpdated: "Firefish 更新完成!"
whatIsNew: "顯示更新資訊" whatIsNew: "顯示更新資訊"
translate: "翻譯" translate: "翻譯"
translatedFrom: "從 {x} 翻譯" translatedFrom: "從 {x} 翻譯"
@ -975,19 +975,19 @@ _registry:
keys: "機碼" keys: "機碼"
domain: "域" domain: "域"
createKey: "新增機碼" createKey: "新增機碼"
_aboutMisskey: _aboutFirefish:
about: "Calckey是由ThatOneCalculator自2022年起開發的Misskey分支。" about: "Firefish是由ThatOneCalculator自2022年起開發的Misskey分支。"
contributors: "主要貢獻者" contributors: "主要貢獻者"
allContributors: "全體貢獻人員" allContributors: "全體貢獻人員"
source: "原始碼" source: "原始碼"
translation: "翻譯Calckey" translation: "翻譯Firefish"
donate: "贊助Calckey" donate: "贊助Firefish"
morePatrons: "還有許許多多幫助我們的其他人,非常感謝你們。 🥰" morePatrons: "還有許許多多幫助我們的其他人,非常感謝你們。 🥰"
patrons: "贊助者" patrons: "贊助者"
patronsList: 按時間順序列出,而不是按贊助規模列出。使用上面的連結贊助,在這裡獲得顯示您名字的機會! patronsList: 按時間順序列出,而不是按贊助規模列出。使用上面的連結贊助,在這裡獲得顯示您名字的機會!
sponsors: Calckey 贊助者們 sponsors: Firefish 贊助者們
donateTitle: 覺得 Calckey 棒嗎? donateTitle: 覺得 Firefish 棒嗎?
pleaseDonateToCalckey: 請考慮向 Calckey 贊助以支持其發展。 pleaseDonateToFirefish: 請考慮向 Firefish 贊助以支持其發展。
pleaseDonateToHost: 還請考慮捐贈給您在使用的伺服器 {host},以支援龐大的運營成本。 pleaseDonateToHost: 還請考慮捐贈給您在使用的伺服器 {host},以支援龐大的運營成本。
donateHost: 贊助給 {host} donateHost: 贊助給 {host}
_nsfw: _nsfw:
@ -997,7 +997,7 @@ _nsfw:
_mfm: _mfm:
cheatSheet: "MFM代碼小抄" cheatSheet: "MFM代碼小抄"
intro: "MFM是Misskey專用的標記語言可以在Misskey中的各個位置使用。 您可以這裏看到MFM可用語法列表。" intro: "MFM是Misskey專用的標記語言可以在Misskey中的各個位置使用。 您可以這裏看到MFM可用語法列表。"
dummy: "Calckey拓展了Fediverse的世界" dummy: "Firefish拓展了Fediverse的世界"
mention: "提及" mention: "提及"
mentionDescription: "透過 @+用戶名 來標示特定使用者。" mentionDescription: "透過 @+用戶名 來標示特定使用者。"
hashtag: "#tag" hashtag: "#tag"
@ -1206,7 +1206,7 @@ _time:
hour: "小時" hour: "小時"
day: "日" day: "日"
_tutorial: _tutorial:
title: "如何使用Calckey" title: "如何使用Firefish"
step1_1: "歡迎!" step1_1: "歡迎!"
step1_2: "讓我們把你安排好。你很快就會啟動並運行!" step1_2: "讓我們把你安排好。你很快就會啟動並運行!"
step2_1: "首先,請完成你的個人資料。" step2_1: "首先,請完成你的個人資料。"
@ -1223,8 +1223,8 @@ _tutorial:
step5_6: "推薦 {icon} 時間線是顯示你的伺服器管理員推薦的貼文。" step5_6: "推薦 {icon} 時間線是顯示你的伺服器管理員推薦的貼文。"
step5_7: "全球 {icon} 時間線是顯示來自所有其他連接的伺服器的貼文。" step5_7: "全球 {icon} 時間線是顯示來自所有其他連接的伺服器的貼文。"
step6_1: "那麼,這裡是什麼地方?" step6_1: "那麼,這裡是什麼地方?"
step6_2: "你不只是加入Calckey。你已經加入了Fediverse的一個門戶這是一個由成千上萬台服務器組成的互聯網絡。" step6_2: "你不只是加入Firefish。你已經加入了Fediverse的一個門戶這是一個由成千上萬台服務器組成的互聯網絡。"
step6_3: "每個服務器也有不同,而並不是所有的服務器都運行Calckey。但這個服務器確實是運行Calckey的! 你可能會覺得有點複雜,但你很快就會明白的。" step6_3: "每個服務器也有不同,而並不是所有的服務器都運行Firefish。但這個服務器確實是運行Firefish的! 你可能會覺得有點複雜,但你很快就會明白的。"
step6_4: "現在開始探索吧!" step6_4: "現在開始探索吧!"
_2fa: _2fa:
alreadyRegistered: "你已註冊過一個雙重認證的裝置。" alreadyRegistered: "你已註冊過一個雙重認證的裝置。"
@ -1784,7 +1784,7 @@ customMOTDDescription: 每次用戶加載/重新加載頁面時,由換行符
privateModeInfo: 啟用後,只有列入白名單的伺服器才能與你的伺服器聯合。所有貼文都將對公眾隱藏。 privateModeInfo: 啟用後,只有列入白名單的伺服器才能與你的伺服器聯合。所有貼文都將對公眾隱藏。
adminCustomCssWarn: 除非你知道它的作用,否則請不要使用此設定。 輸入不正確的值可能會導致每個人的客戶端無法正常運行。你可在你的的用戶設定中測試,確保你的 adminCustomCssWarn: 除非你知道它的作用,否則請不要使用此設定。 輸入不正確的值可能會導致每個人的客戶端無法正常運行。你可在你的的用戶設定中測試,確保你的
CSS 正常工作。 CSS 正常工作。
showUpdates: Calckey 更新時顯示彈出視窗 showUpdates: Firefish 更新時顯示彈出視窗
recommendedInstances: 建議的伺服器 recommendedInstances: 建議的伺服器
caption: 自動字幕 caption: 自動字幕
enterSendsMessage: 在 Messaging 中按 Return 發送消息 (如關閉則是 Ctrl + Return) enterSendsMessage: 在 Messaging 中按 Return 發送消息 (如關閉則是 Ctrl + Return)
@ -1813,7 +1813,7 @@ customMOTD: 自定義MOTD (網頁載入時顯示的信息)
customSplashIcons: 啟動畫面圖標 (網址) customSplashIcons: 啟動畫面圖標 (網址)
splash: 啟動畫面 splash: 啟動畫面
updateAvailable: 可能有可用的更新! updateAvailable: 可能有可用的更新!
showAdminUpdates: 表明新的 Calckey 版本可用(只限管理員) showAdminUpdates: 表明新的 Firefish 版本可用(只限管理員)
migration: 遷移 migration: 遷移
homeTimeline: 主頁時間軸 homeTimeline: 主頁時間軸
swipeOnDesktop: 允許在桌面上進行手機式滑動 swipeOnDesktop: 允許在桌面上進行手機式滑動
@ -1827,7 +1827,7 @@ silenced: 已靜音
_experiments: _experiments:
title: 試驗功能 title: 試驗功能
findOtherInstance: 找找另一個伺服器 findOtherInstance: 找找另一個伺服器
noGraze: 瀏覽器擴展 "Graze for Mastodon" 會與Calckey發生衝突,請停用該擴展。 noGraze: 瀏覽器擴展 "Graze for Mastodon" 會與Firefish發生衝突,請停用該擴展。
userSaysSomethingReasonRenote: '{name} 轉傳了包含 {reason} 的貼文' userSaysSomethingReasonRenote: '{name} 轉傳了包含 {reason} 的貼文'
pushNotificationNotSupported: 你的瀏覽器或伺服器不支援推送通知 pushNotificationNotSupported: 你的瀏覽器或伺服器不支援推送通知
accessibility: 輔助功能 accessibility: 輔助功能
@ -1886,7 +1886,7 @@ indexFrom: 從貼文 ID 開始的索引
isLocked: 該帳戶已獲得以下批准 isLocked: 該帳戶已獲得以下批准
isModerator: 板主 isModerator: 板主
isAdmin: 管理員 isAdmin: 管理員
isPatron: Calckey 項目贊助者 isPatron: Firefish 項目贊助者
silencedWarning: 顯示此頁面是因為這些使用者來自您伺服器管理員已靜音的伺服器,因此他們可能是垃圾訊息。 silencedWarning: 顯示此頁面是因為這些使用者來自您伺服器管理員已靜音的伺服器,因此他們可能是垃圾訊息。
signupsDisabled: 該伺服器上的註冊當前已被禁用,但您隨時可以在另一台伺服器上註冊!或是您有該伺服器的邀請碼,請在下面輸入。 signupsDisabled: 該伺服器上的註冊當前已被禁用,但您隨時可以在另一台伺服器上註冊!或是您有該伺服器的邀請碼,請在下面輸入。
showPopup: 通過彈出式視窗通知用戶 showPopup: 通過彈出式視窗通知用戶

View file

@ -1,10 +1,10 @@
{ {
"name": "calckey", "name": "firefish",
"version": "14.0.0-dev83", "version": "1.0.0",
"codename": "aqua", "codename": "aqua",
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://codeberg.org/calckey/calckey.git" "url": "https://gitlab.prometheus.systems/firefish/firefish.git"
}, },
"packageManager": "pnpm@8.6.7", "packageManager": "pnpm@8.6.7",
"private": true, "private": true,

View file

@ -1,10 +1,10 @@
# 📦 Packages # 📦 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`: 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/) - `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 - `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 - `sw`: Web [Service Worker](https://developer.mozilla.org/en-US/docs/Web/API/Service_Worker_API) written in TypeScript
- `calckey-js`: TypeScript SDK for both backend and client, also published on [NPM](https://www.npmjs.com/package/calckey-js) for public use - `firefish-js`: TypeScript SDK for both backend and client, also published on [NPM](https://www.npmjs.com/package/firefish-js) for public use
- `megalodon`: TypeScript library used for partial Mastodon API compatibility - `megalodon`: TypeScript library used for partial Mastodon API compatibility

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 71 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.3 KiB

After

Width:  |  Height:  |  Size: 166 KiB

View file

@ -1,7 +0,0 @@
All images om this directory are illustrated by Henki (https://www.youtube.com/c/Henkiwashere)
Please show them some love, they're an awesome artist!
Character design by ThatOneCalculator (https://t1c.dev)
The images in this directory are complete redraws based off of the original Misskey error images.
The artist and license of said original images is sadly unknown.

View file

@ -1,427 +0,0 @@
Attribution-ShareAlike 4.0 International
=======================================================================
Creative Commons Corporation ("Creative Commons") is not a law firm and
does not provide legal services or legal advice. Distribution of
Creative Commons public licenses does not create a lawyer-client or
other relationship. Creative Commons makes its licenses and related
information available on an "as-is" basis. Creative Commons gives no
warranties regarding its licenses, any material licensed under their
terms and conditions, or any related information. Creative Commons
disclaims all liability for damages resulting from their use to the
fullest extent possible.
Using Creative Commons Public Licenses
Creative Commons public licenses provide a standard set of terms and
conditions that creators and other rights holders may use to share
original works of authorship and other material subject to copyright
and certain other rights specified in the public license below. The
following considerations are for informational purposes only, are not
exhaustive, and do not form part of our licenses.
Considerations for licensors: Our public licenses are
intended for use by those authorized to give the public
permission to use material in ways otherwise restricted by
copyright and certain other rights. Our licenses are
irrevocable. Licensors should read and understand the terms
and conditions of the license they choose before applying it.
Licensors should also secure all rights necessary before
applying our licenses so that the public can reuse the
material as expected. Licensors should clearly mark any
material not subject to the license. This includes other CC-
licensed material, or material used under an exception or
limitation to copyright. More considerations for licensors:
wiki.creativecommons.org/Considerations_for_licensors
Considerations for the public: By using one of our public
licenses, a licensor grants the public permission to use the
licensed material under specified terms and conditions. If
the licensor's permission is not necessary for any reason--for
example, because of any applicable exception or limitation to
copyright--then that use is not regulated by the license. Our
licenses grant only permissions under copyright and certain
other rights that a licensor has authority to grant. Use of
the licensed material may still be restricted for other
reasons, including because others have copyright or other
rights in the material. A licensor may make special requests,
such as asking that all changes be marked or described.
Although not required by our licenses, you are encouraged to
respect those requests where reasonable. More considerations
for the public:
wiki.creativecommons.org/Considerations_for_licensees
=======================================================================
Creative Commons Attribution-ShareAlike 4.0 International Public
License
By exercising the Licensed Rights (defined below), You accept and agree
to be bound by the terms and conditions of this Creative Commons
Attribution-ShareAlike 4.0 International Public License ("Public
License"). To the extent this Public License may be interpreted as a
contract, You are granted the Licensed Rights in consideration of Your
acceptance of these terms and conditions, and the Licensor grants You
such rights in consideration of benefits the Licensor receives from
making the Licensed Material available under these terms and
conditions.
Section 1 -- Definitions.
a. Adapted Material means material subject to Copyright and Similar
Rights that is derived from or based upon the Licensed Material
and in which the Licensed Material is translated, altered,
arranged, transformed, or otherwise modified in a manner requiring
permission under the Copyright and Similar Rights held by the
Licensor. For purposes of this Public License, where the Licensed
Material is a musical work, performance, or sound recording,
Adapted Material is always produced where the Licensed Material is
synched in timed relation with a moving image.
b. Adapter's License means the license You apply to Your Copyright
and Similar Rights in Your contributions to Adapted Material in
accordance with the terms and conditions of this Public License.
c. BY-SA Compatible License means a license listed at
creativecommons.org/compatiblelicenses, approved by Creative
Commons as essentially the equivalent of this Public License.
d. Copyright and Similar Rights means copyright and/or similar rights
closely related to copyright including, without limitation,
performance, broadcast, sound recording, and Sui Generis Database
Rights, without regard to how the rights are labeled or
categorized. For purposes of this Public License, the rights
specified in Section 2(b)(1)-(2) are not Copyright and Similar
Rights.
e. Effective Technological Measures means those measures that, in the
absence of proper authority, may not be circumvented under laws
fulfilling obligations under Article 11 of the WIPO Copyright
Treaty adopted on December 20, 1996, and/or similar international
agreements.
f. Exceptions and Limitations means fair use, fair dealing, and/or
any other exception or limitation to Copyright and Similar Rights
that applies to Your use of the Licensed Material.
g. License Elements means the license attributes listed in the name
of a Creative Commons Public License. The License Elements of this
Public License are Attribution and ShareAlike.
h. Licensed Material means the artistic or literary work, database,
or other material to which the Licensor applied this Public
License.
i. Licensed Rights means the rights granted to You subject to the
terms and conditions of this Public License, which are limited to
all Copyright and Similar Rights that apply to Your use of the
Licensed Material and that the Licensor has authority to license.
j. Licensor means the individual(s) or entity(ies) granting rights
under this Public License.
k. Share means to provide material to the public by any means or
process that requires permission under the Licensed Rights, such
as reproduction, public display, public performance, distribution,
dissemination, communication, or importation, and to make material
available to the public including in ways that members of the
public may access the material from a place and at a time
individually chosen by them.
l. Sui Generis Database Rights means rights other than copyright
resulting from Directive 96/9/EC of the European Parliament and of
the Council of 11 March 1996 on the legal protection of databases,
as amended and/or succeeded, as well as other essentially
equivalent rights anywhere in the world.
m. You means the individual or entity exercising the Licensed Rights
under this Public License. Your has a corresponding meaning.
Section 2 -- Scope.
a. License grant.
1. Subject to the terms and conditions of this Public License,
the Licensor hereby grants You a worldwide, royalty-free,
non-sublicensable, non-exclusive, irrevocable license to
exercise the Licensed Rights in the Licensed Material to:
a. reproduce and Share the Licensed Material, in whole or
in part; and
b. produce, reproduce, and Share Adapted Material.
2. Exceptions and Limitations. For the avoidance of doubt, where
Exceptions and Limitations apply to Your use, this Public
License does not apply, and You do not need to comply with
its terms and conditions.
3. Term. The term of this Public License is specified in Section
6(a).
4. Media and formats; technical modifications allowed. The
Licensor authorizes You to exercise the Licensed Rights in
all media and formats whether now known or hereafter created,
and to make technical modifications necessary to do so. The
Licensor waives and/or agrees not to assert any right or
authority to forbid You from making technical modifications
necessary to exercise the Licensed Rights, including
technical modifications necessary to circumvent Effective
Technological Measures. For purposes of this Public License,
simply making modifications authorized by this Section 2(a)
(4) never produces Adapted Material.
5. Downstream recipients.
a. Offer from the Licensor -- Licensed Material. Every
recipient of the Licensed Material automatically
receives an offer from the Licensor to exercise the
Licensed Rights under the terms and conditions of this
Public License.
b. Additional offer from the Licensor -- Adapted Material.
Every recipient of Adapted Material from You
automatically receives an offer from the Licensor to
exercise the Licensed Rights in the Adapted Material
under the conditions of the Adapter's License You apply.
c. No downstream restrictions. You may not offer or impose
any additional or different terms or conditions on, or
apply any Effective Technological Measures to, the
Licensed Material if doing so restricts exercise of the
Licensed Rights by any recipient of the Licensed
Material.
6. No endorsement. Nothing in this Public License constitutes or
may be construed as permission to assert or imply that You
are, or that Your use of the Licensed Material is, connected
with, or sponsored, endorsed, or granted official status by,
the Licensor or others designated to receive attribution as
provided in Section 3(a)(1)(A)(i).
b. Other rights.
1. Moral rights, such as the right of integrity, are not
licensed under this Public License, nor are publicity,
privacy, and/or other similar personality rights; however, to
the extent possible, the Licensor waives and/or agrees not to
assert any such rights held by the Licensor to the limited
extent necessary to allow You to exercise the Licensed
Rights, but not otherwise.
2. Patent and trademark rights are not licensed under this
Public License.
3. To the extent possible, the Licensor waives any right to
collect royalties from You for the exercise of the Licensed
Rights, whether directly or through a collecting society
under any voluntary or waivable statutory or compulsory
licensing scheme. In all other cases the Licensor expressly
reserves any right to collect such royalties.
Section 3 -- License Conditions.
Your exercise of the Licensed Rights is expressly made subject to the
following conditions.
a. Attribution.
1. If You Share the Licensed Material (including in modified
form), You must:
a. retain the following if it is supplied by the Licensor
with the Licensed Material:
i. identification of the creator(s) of the Licensed
Material and any others designated to receive
attribution, in any reasonable manner requested by
the Licensor (including by pseudonym if
designated);
ii. a copyright notice;
iii. a notice that refers to this Public License;
iv. a notice that refers to the disclaimer of
warranties;
v. a URI or hyperlink to the Licensed Material to the
extent reasonably practicable;
b. indicate if You modified the Licensed Material and
retain an indication of any previous modifications; and
c. indicate the Licensed Material is licensed under this
Public License, and include the text of, or the URI or
hyperlink to, this Public License.
2. You may satisfy the conditions in Section 3(a)(1) in any
reasonable manner based on the medium, means, and context in
which You Share the Licensed Material. For example, it may be
reasonable to satisfy the conditions by providing a URI or
hyperlink to a resource that includes the required
information.
3. If requested by the Licensor, You must remove any of the
information required by Section 3(a)(1)(A) to the extent
reasonably practicable.
b. ShareAlike.
In addition to the conditions in Section 3(a), if You Share
Adapted Material You produce, the following conditions also apply.
1. The Adapter's License You apply must be a Creative Commons
license with the same License Elements, this version or
later, or a BY-SA Compatible License.
2. You must include the text of, or the URI or hyperlink to, the
Adapter's License You apply. You may satisfy this condition
in any reasonable manner based on the medium, means, and
context in which You Share Adapted Material.
3. You may not offer or impose any additional or different terms
or conditions on, or apply any Effective Technological
Measures to, Adapted Material that restrict exercise of the
rights granted under the Adapter's License You apply.
Section 4 -- Sui Generis Database Rights.
Where the Licensed Rights include Sui Generis Database Rights that
apply to Your use of the Licensed Material:
a. for the avoidance of doubt, Section 2(a)(1) grants You the right
to extract, reuse, reproduce, and Share all or a substantial
portion of the contents of the database;
b. if You include all or a substantial portion of the database
contents in a database in which You have Sui Generis Database
Rights, then the database in which You have Sui Generis Database
Rights (but not its individual contents) is Adapted Material,
including for purposes of Section 3(b); and
c. You must comply with the conditions in Section 3(a) if You Share
all or a substantial portion of the contents of the database.
For the avoidance of doubt, this Section 4 supplements and does not
replace Your obligations under this Public License where the Licensed
Rights include other Copyright and Similar Rights.
Section 5 -- Disclaimer of Warranties and Limitation of Liability.
a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE
EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS
AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF
ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,
IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,
WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR
PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,
ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT
KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT
ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.
b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE
TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,
NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,
INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,
COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR
USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN
ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR
DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR
IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.
c. The disclaimer of warranties and limitation of liability provided
above shall be interpreted in a manner that, to the extent
possible, most closely approximates an absolute disclaimer and
waiver of all liability.
Section 6 -- Term and Termination.
a. This Public License applies for the term of the Copyright and
Similar Rights licensed here. However, if You fail to comply with
this Public License, then Your rights under this Public License
terminate automatically.
b. Where Your right to use the Licensed Material has terminated under
Section 6(a), it reinstates:
1. automatically as of the date the violation is cured, provided
it is cured within 30 days of Your discovery of the
violation; or
2. upon express reinstatement by the Licensor.
For the avoidance of doubt, this Section 6(b) does not affect any
right the Licensor may have to seek remedies for Your violations
of this Public License.
c. For the avoidance of doubt, the Licensor may also offer the
Licensed Material under separate terms or conditions or stop
distributing the Licensed Material at any time; however, doing so
will not terminate this Public License.
d. Sections 1, 5, 6, 7, and 8 survive termination of this Public
License.
Section 7 -- Other Terms and Conditions.
a. The Licensor shall not be bound by any additional or different
terms or conditions communicated by You unless expressly agreed.
b. Any arrangements, understandings, or agreements regarding the
Licensed Material not stated herein are separate from and
independent of the terms and conditions of this Public License.
Section 8 -- Interpretation.
a. For the avoidance of doubt, this Public License does not, and
shall not be interpreted to, reduce, limit, restrict, or impose
conditions on any use of the Licensed Material that could lawfully
be made without permission under this Public License.
b. To the extent possible, if any provision of this Public License is
deemed unenforceable, it shall be automatically reformed to the
minimum extent necessary to make it enforceable. If the provision
cannot be reformed, it shall be severed from this Public License
without affecting the enforceability of the remaining terms and
conditions.
c. No term or condition of this Public License will be waived and no
failure to comply consented to unless expressly agreed to by the
Licensor.
d. Nothing in this Public License constitutes or may be interpreted
as a limitation upon, or waiver of, any privileges and immunities
that apply to the Licensor or You, including from the legal
processes of any jurisdiction or authority.
=======================================================================
Creative Commons is not a party to its public licenses.
Notwithstanding, Creative Commons may elect to apply one of its public
licenses to material it publishes and in those instances will be
considered the “Licensor.” The text of the Creative Commons public
licenses is dedicated to the public domain under the CC0 Public Domain
Dedication. Except for the limited purpose of indicating that material
is shared under a Creative Commons public license or as otherwise
permitted by the Creative Commons policies published at
creativecommons.org/policies, Creative Commons does not authorize the
use of the trademark "Creative Commons" or any other trademark or logo
of Creative Commons without its prior written consent including,
without limitation, in connection with any unauthorized modifications
to any of its public licenses or any other arrangements,
understandings, or agreements concerning use of licensed material. For
the avoidance of doubt, this paragraph does not form part of the public
licenses.
Creative Commons may be contacted at creativecommons.org.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 57 KiB

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1,018 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 55 KiB

After

Width:  |  Height:  |  Size: 9.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 958 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 56 KiB

After

Width:  |  Height:  |  Size: 9.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 964 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.3 KiB

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 124 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.4 KiB

After

Width:  |  Height:  |  Size: 8.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.7 KiB

After

Width:  |  Height:  |  Size: 5.5 KiB

View file

@ -1,5 +1,24 @@
Font Awesome Icons Phosphor Icons
------------------------- -------------------------
Ⓒ Font Awesome MIT License
CC BY 4.0 (https://creativecommons.org/licenses/by/4.0/)
Copyright (c) 2020 Phosphor Icons
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Some files were not shown because too many files have changed in this diff Show more