Compare commits

...

53 commits

Author SHA1 Message Date
376c36bde7 Merge branch 'main' into mk.absturztau.be 2022-12-03 11:57:11 +01:00
18cf228f89
server: readd "fetch meta only once in skippedInstances""
This reverts commit e446a11bb7.

Turns out this wasn't really the source of the referenced issue and
someone was able to run with the original commit fine, so adding this
back for now.
2022-12-03 05:13:30 -05:00
bdf2e14a73
server: fix TypeError in registerOrFetchInstanceDoc
Changelog: Fixed
2022-12-03 04:01:51 -05:00
c5cf167ffa
server: fix ReferenceError: meta is undefined
Ref: e446a11bb7
Changelog: Fixed
2022-12-03 02:18:08 -05:00
e446a11bb7
Revert "server: fetch meta only once in skippedInstances"
This reverts commit 81d63720f2 since it
seems to cause a ReferenceError for some reason.

Ref: https://toot.site/@jeder/109447151582516733
2022-12-03 02:13:18 -05:00
5b6b2b214d Translated using Weblate (German)
Currently translated at 100.0% (1214 of 1214 strings)

Co-authored-by: Johann <johann@qwertqwefsday.eu>
Translate-URL: http://translate.akkoma.dev/projects/foundkey/foundkey/de/
Translation: Foundkey/foundkey
2022-12-02 21:17:39 +00:00
194fff3603
activitypub: hashtags no longer displaying as links
Some hashtags sent from Mastodon were erroneously displayed as links.
This is because Mastodon seems to mangle hashtags containing non-ASCII
codepoints (such as e.g. umlauts). This lead to the previous code which
depended on the list of hashtags to not recognize a hashtag. Instead,
the `rel="tag"` microformat is recognized instead.

This makes the `htmlToMfm` wrapper function unnecessary so it was removed.

Changelog: Fixed
2022-12-02 19:31:57 +01:00
b4080d788d
slight refactoring & translating japanese 2022-12-02 19:00:58 +01:00
e49b8d0ef3
server: remove unnecessary apLogger aliases 2022-12-02 18:58:19 +01:00
7d3d0f858c
increment versions in package.json 2022-12-02 16:59:47 +01:00
5ec34577c0
update changelog 2022-12-02 16:59:35 +01:00
81d63720f2
server: fetch meta only once in skippedInstances 2022-12-02 09:26:14 -05:00
5e6b51094e
server: fix instance skipping
This should actually make instance skipping work properly since
shouldBlockInstance is now properly awaited on now.
2022-12-02 09:10:56 -05:00
9ad37a12f8
server: fix rendering of Follow activity when removing follow
closes FoundKeyGang/FoundKey#263

Changelog: Fixed
2022-12-01 21:49:38 +01:00
e10700a2be Merge pull request 'server: add wildcard matching to blocked hosts' (#260) from wildcard-block-v2 into main
Reviewed-on: FoundKeyGang/FoundKey#260
2022-12-01 20:12:18 +00:00
dc7533baa4 Merge pull request 'server: Add recursion limit to resolver' (#261) from recursion-limit into main
Reviewed-on: FoundKeyGang/FoundKey#261
2022-12-01 20:11:40 +00:00
721a327192
fixup: remove unused import 2022-12-01 20:46:46 +01:00
936cbf900b
use default argument value
This unifies the style with the other function in that file and fixes
the lint "no-param-reassign".
2022-12-01 20:32:57 +01:00
bc62d0ba9f
client: update emoji list
This corrects the gender-specific variants in general, adds a few
missing ones, replaces names that are just Unicode codepoints with
actual names, and makes the keywords more consistent.

Some data for this was taken from the annotations in the Unicode
CLDR version 42.

Reviewed-on: FoundKeyGang/FoundKey#262
2022-12-01 20:10:14 +01:00
749015807a
client: also autocomplete flag emoji
Changelog: Changed
2022-12-01 20:08:55 +01:00
b3e34795c0
require punycode conversion beforehand for admins 2022-12-01 12:07:43 -05:00
a35c98bbd5
server: encode non-ascii domains in punycode in matchHost 2022-12-01 11:34:11 -05:00
075e251822
server: add wildcard matching to blocked hosts
This adds in wildcard matching. For instance:
- `*.bad.tld` will match: `very.bad.tld`
- `bad.*` will match: `bad.something`
- `*.bad.*` will match: `very.bad.evil`

Changelog: Changed
2022-12-01 11:29:02 -05:00
b030ced51c
docs: Replace references of misskey with foundkey in nginx guide 2022-12-01 04:50:30 -05:00
Derek Schmidt
11a6e706f4
server: Use shared resolver in featured and question accept 2022-12-01 04:40:14 -05:00
Derek Schmidt
d3af00a912
server: Add recursion limit to resolver
Changelog: Security
2022-12-01 04:40:07 -05:00
97288cb75f docs: Make IRC stuff a proper subsection in install/migration guides 2022-12-01 00:32:24 -05:00
9c22d904bf docs: Add IRC contact to migration guide
Makes it consistent with the install guide and helps users reach the appropriate place to get support.
2022-12-01 00:59:40 +00:00
2edb41adb1 docs: Update migration guide with additional info (#257)
Reviewed-on: FoundKeyGang/FoundKey#257
Co-authored-by: SuperDicq <info@jiyu.dev>
Co-committed-by: SuperDicq <info@jiyu.dev>
2022-12-01 00:41:56 +00:00
Weblate
a96fae65c2 Update translation files
Updated by "Cleanup translation files" hook in Weblate.

Update translation files

Updated by "Cleanup translation files" hook in Weblate.

Update translation files

Updated by "Cleanup translation files" hook in Weblate.

Update translation files

Updated by "Cleanup translation files" hook in Weblate.

Update translation files

Updated by "Cleanup translation files" hook in Weblate.

Co-authored-by: Weblate <noreply@weblate.org>
Translate-URL: http://translate.akkoma.dev/projects/foundkey/foundkey/
Translation: Foundkey/foundkey
2022-11-29 22:40:37 +00:00
e0777191da
chore: Remove serviceworker settings locale strings
As of commit 973bd4532b the serviceworker
settings have been removed, meaning the corresponding strings are no longer
used.
2022-11-29 17:38:34 -05:00
973bd4532b Merge pull request 'server: always enable push notifications' (#235) from enable-push-notifs into main
Reviewed-on: FoundKeyGang/FoundKey#235
Changelog: Changed
2022-11-29 21:51:10 +00:00
13fda0c9c7
client: refactor emoji autocomplete & make case insensitive
Changelog: Changed
2022-11-29 21:13:20 +01:00
cdb8922336
client: make all unicode emoji names lowercase 2022-11-29 20:35:23 +01:00
5b574d40f9
client: use native Notifications API (#234)
Reviewed-on: FoundKeyGang/FoundKey#234
Changelog: Changed
2022-11-29 12:35:36 -05:00
Weblate
6efc3b7989 Update translation files
Updated by "Cleanup translation files" hook in Weblate.

Update translation files

Updated by "Cleanup translation files" hook in Weblate.

Co-authored-by: Weblate <noreply@weblate.org>
Translate-URL: http://translate.akkoma.dev/projects/foundkey/foundkey/
Translation: Foundkey/foundkey
2022-11-28 20:48:05 +00:00
m33
76b2f6cfab Translated using Weblate (French)
Currently translated at 100.0% (1385 of 1385 strings)

Co-authored-by: m33 <m33_akkomadev@tok715.net>
Translate-URL: http://translate.akkoma.dev/projects/foundkey/foundkey/fr/
Translation: Foundkey/foundkey
2022-11-28 20:48:04 +00:00
07370a3b84
client: put back button to remove all following
Changelog: Added
2022-11-28 21:47:17 +01:00
a6a4ae870d
chore: remove some unused locale strings 2022-11-28 19:41:22 +01:00
97233fab69
client: add link to weblate 2022-11-28 18:37:54 +01:00
Weblate
2876c5d76c Update translation files
Updated by "Cleanup translation files" hook in Weblate.

Co-authored-by: Weblate <noreply@weblate.org>
Translate-URL: http://translate.akkoma.dev/projects/foundkey/foundkey/
Translation: Foundkey/foundkey
2022-11-28 17:03:20 +00:00
a720fa79d1 Translated using Weblate (German)
Currently translated at 100.0% (1385 of 1385 strings)

Translated using Weblate (German)

Currently translated at 99.8% (1384 of 1386 strings)

Co-authored-by: Johann <johann@qwertqwefsday.eu>
Co-authored-by: Johann150 <johann.galle@protonmail.com>
Translate-URL: http://translate.akkoma.dev/projects/foundkey/foundkey/de/
Translation: Foundkey/foundkey
2022-11-28 17:03:20 +00:00
5733f127ca
backend: update re2 to 1.17.8
This should fix Node 19 compatibility.

Fixes: FoundKeyGang/FoundKey#238
2022-11-28 12:02:24 -05:00
2f56499445
chore: remove unused i18n string 2022-11-27 12:16:38 +01:00
8130a2a9b1
server: remove deeplIsPro setting
This setting is unnecessary because DeepL free keys can be detected
easily according to <https://www.deepl.com/docs-api/api-access/authentication/>:
> DeepL API Free authentication keys can be identified easily by the suffix ":fx"

Changelog: Removed
2022-11-27 12:12:56 +01:00
9fd23b5dae
server: remove quote urls, 3rd try
First try was 66a7c62342 but classList is
not in parse5 DOM. Second try was 7ee6a09cf2
but forgot the contents of this commit.
2022-11-27 09:30:51 +01:00
24506ba557
client: remove unused notification-toast component 2022-11-26 16:37:11 +01:00
8a807db02e
client: pass along notifications if push notifs disabled 2022-11-26 16:37:11 +01:00
1e8e551ee3
service worker: refactor message event handler
It is now possible for the client to trigger notifications "manually"
if push notifications are not configured on the server.
2022-11-26 16:37:10 +01:00
c34bebdf46
service worker: also show notifications if client is connected 2022-11-26 16:37:08 +01:00
a1f3b212fe
client: translate comments 2022-11-26 16:34:45 +01:00
01fa4332c2
server: set vapid keys on initial setup 2022-11-21 22:30:34 +01:00
563f3672a9
server: always enable push notifications
The thing that previously presumably hindered this was that the VAPID
keys had to be set up. Previously admins had to do this, but this is a bad
idea for multiple reasons:
1) The meaning of "public key" and "private key" was not well documented
in the settings.
2) Giving out a private key over the API, even just for admins, sounds
like a bad idea.

Co-authored-by: Francis Dinh <normandy@biribiri.dev>
2022-11-21 22:00:53 +01:00
79 changed files with 2086 additions and 5164 deletions

View file

@ -11,6 +11,100 @@ Unreleased changes should not be listed in this file.
Instead, run `git shortlog --format='%h %s' --group=trailer:changelog <last tag>..` to see unreleased changes; replace `<last tag>` with the tag you wish to compare from. Instead, run `git shortlog --format='%h %s' --group=trailer:changelog <last tag>..` to see unreleased changes; replace `<last tag>` with the tag you wish to compare from.
If you are a contributor, please read [CONTRIBUTING.md, section "Changelog Trailer"](./CONTRIBUTING.md#changelog-trailer) on what to do instead. If you are a contributor, please read [CONTRIBUTING.md, section "Changelog Trailer"](./CONTRIBUTING.md#changelog-trailer) on what to do instead.
## 13.0.0-preview3 - 2022-12-02
This release contains 1 urgent security fix necessitated by `misskey-forkbomb`.
This release contains 1 breaking change.
If you are a 3rd party client developer please see the "Intended future changes" section at the end.
### Security
- activitypub: add recursion limit to resolver
### Added
- server: make max note length configurable
- server: LibreTranslate support
- activitypub: not forwarding block activities
This can be configured per user.
- client: add "follows you" hint to user profile popup
- client: improved search page for notes and users
- client: ability to delete webhooks
- client: put back button to let admin remove all followings from an instance
### Changed
- **BREAKING** server: remove support for node 16.x.
Since 2022-10-18, Node.js 16.x is out of Long Term Support and has entered the Maintenance phase.
The new Long Term Support version since 2022-10-25 is Node.js 18.x.
Foundkey now requires at least Node.js 18.7.0.
- updated documentation
- client: updated translations
- client: update emoji list
- client: autocomplete flag emoji
- client: autocompletion for emoji is case insensitive
- client: use browser native notifications
- client: close webhook settings page automatically after saving
- client: remove hostname from signup and signin forms
- server: increase user profile description length limit to 2048
- server: always enable push notifications
- server: allow to like own pages
- server: allow to like own gallery pages
- server: produce error when trying to unclip note that was not clipped
- server: stricter API permissions, more endpoints require authentication
This affects the following endpoints:
- `/api/federation/instances`
- `/api/federation/show-instance`
- `/api/federation/stats`
- `/api/federation/users`
- `/api/federation/followers`
- `/api/federation/following`
- `/api/fetch-rss`
- server: stricter rate limiting for password reset
- server: refactor API errors and improve documentation
This affects all API endpoints.
API errors no longer have a UUID (previous `id` property). Use the properties `code` and `endpoint` instead.
- server: avoid adding suspended instances to the delivery queue in the first place
- server: rewrite skipped instances query in raw SQL to improve performance
- activitypub: don't nyaize blockquotes
- server: add wildcard matching to blocked hosts
- server: updated dependencies
### Fixed
- client: fix detection of maximum lenght for profile description
- client: editing webhooks
- client: files in some states couldnot be dropped and uploaded
- service worker: don't trigger "push notification have been updated"
- server: properly delete expired password reset requests
- server: skip delivering to instances that proclaim themself dead via HTTP 410
- server: use host parameter in note search even if elasticsearch is not enabled
- activitypub: fix rendering of Follow activity `id` when force-removing a follow
- activitypub: remove akkoma quote URLs
### Removed
- client: remove user search from explore page
You can use the new revamped search page instead.
- server: remove `deeplIsPro` setting
This setting can be automatically detected based on the DeepL Auth Key provided.
This affects the following endpoints:
- `/api/admin/meta`
- `/api/admin/update-meta`
- server: remove unused endpoints
This affects the following endpoints. Expected usage of these endpoints is low.
- `/api/test`
- `/api/users/get-frequently-replied-users`
### Intended future changes
This section is intended for 3rd party client developers.
MiAuth will be removed in a future release, most likely in the next release.
This affects the follwing endpoints:
- `/miauth`
- `/api/miauth/:session/check`
The `features.miauth` feature flag in `/api/meta` will no longer be `true` (set to `false` or removed entirely).
We would like to clarify that the follwing ndpoints are not part of the public API as they were never part of the documentation generated at `/api-doc`.
They may be removed at any point, without notice.
- `/api/signup`
- `/api/signin`
- `/api/signup-pending`
## 13.0.0-preview2 - 2022-10-16 ## 13.0.0-preview2 - 2022-10-16
### Security ### Security
- server: Update `multer` dependency to resolve [CVE-2022-24434](https://nvd.nist.gov/vuln/detail/CVE-2022-24434) - server: Update `multer` dependency to resolve [CVE-2022-24434](https://nvd.nist.gov/vuln/detail/CVE-2022-24434)

View file

@ -199,6 +199,5 @@ If you encounter any problems with updating, please try the following:
1. `yarn clean` or `yarn cleanall` 1. `yarn clean` or `yarn cleanall`
2. Retry update (Don't forget `yarn install`) 2. Retry update (Don't forget `yarn install`)
---------------------------------------------------------------- ## Need Help?
If you have any questions or troubles, feel free to contact us on IRC: `#foundkey` on `irc.akkoma.dev`, port `6697` with SSL If you have any questions or troubles, feel free to contact us on IRC: `#foundkey` on `irc.akkoma.dev`, port `6697` with SSL

View file

@ -5,6 +5,11 @@ Migrating from Misskey to FoundKey is relatively straightforward. However, addit
## Backup ## Backup
The process will take some time and it's possible something will go wrong. It's highly suggested to make a database dump using `pgdump` and backing up `.config/default.yml` and the `files/` directory before proceeding any further. The process will take some time and it's possible something will go wrong. It's highly suggested to make a database dump using `pgdump` and backing up `.config/default.yml` and the `files/` directory before proceeding any further.
## Requirements
FoundKey has different version requirements compared to Misskey. Before continuing please check if you have the following minimum versions installed:
* Node (version 18)
* Postgresql (version 12)
## Reverting migrations ## Reverting migrations
If you're migrating from Misskey 12.112.0 or higher, you'll need to revert some database migrations as they have diverged from that point. Specifically, you'll need to revert `nsfwDetection1655368940105` and newer migrations. If you're migrating from Misskey 12.112.0 or higher, you'll need to revert some database migrations as they have diverged from that point. Specifically, you'll need to revert `nsfwDetection1655368940105` and newer migrations.
@ -41,7 +46,14 @@ git merge tags/v13.0.0-preview2 --squash
``` ```
## Making sure modern Yarn works ## Making sure modern Yarn works
Foundkey uses Modern Yarn instead of Classic (1.x). To make sure the `yarn` command will work going forward, run `corepack enable`. FoundKey uses modern Yarn instead of Classic (1.x) using [Corepack](https://github.com/nodejs/corepack). To make sure the `yarn` command will work going forward, run `corepack enable`.
If you previously had Yarn installed manually you have to remove it and install Corepack:
```sh
npm uninstall -g yarn
npm install -g corepack
corepack enable
```
## Rebuilding and running database migrations ## Rebuilding and running database migrations
This will be pretty much the same as a regular update of Misskey. Note that `yarn install` may take a while since dependency versions have been updated or removed and we use a newer version of Yarn. This will be pretty much the same as a regular update of Misskey. Note that `yarn install` may take a while since dependency versions have been updated or removed and we use a newer version of Yarn.
@ -50,6 +62,7 @@ yarn install
NODE_ENV=production yarn build NODE_ENV=production yarn build
yarn migrate yarn migrate
``` ```
If you encounter issues during the build process run `yarn clean-all` and run the install and build command again.
## Restarting your instance ## Restarting your instance
To let the changes take effect restart your instance as usual: To let the changes take effect restart your instance as usual:
@ -60,3 +73,6 @@ systemctl restart misskey
# OpenRC # OpenRC
rc-service misskey restart rc-service misskey restart
``` ```
## Need help?
If you have any questions or troubles, feel free to contact us on IRC: `#foundkey` on `irc.akkoma.dev`, port `6697` with SSL

View file

@ -1,12 +1,12 @@
# Nginx configuration # Nginx configuration
1. Create `/etc/nginx/conf.d/misskey.conf` or `/etc/nginx/sites-available/misskey.conf` and copy the following example to the file.\ 1. Create `/etc/nginx/conf.d/foundkey.conf` or `/etc/nginx/sites-available/foundkey.conf` and copy the following example to the file.\
(The file name does not have to be "misskey".) (The file name does not have to be "foundkey".)
2. Edit as follows: 2. Edit as follows:
1. Replace example.tld with the domain you have prepared.\ 1. Replace example.tld with the domain you have prepared.\
`ssl_certificate` and `ssl_certificate_key` should be the path to the certificate obtained from Let's Encrypt. `ssl_certificate` and `ssl_certificate_key` should be the path to the certificate obtained from Let's Encrypt.
2. If using a CDN such as Cloudflare, remove 4 lines from "If it's behind another reverse proxy or CDN, remove the following." 2. If using a CDN such as Cloudflare, remove 4 lines from "If it's behind another reverse proxy or CDN, remove the following."
3. If you create `/etc/nginx/sites-available/misskey.conf`, create symlink as `/etc/nginx/sites-enabled/misskey.conf`.\ 3. If you create `/etc/nginx/sites-available/foundkey.conf`, create symlink as `/etc/nginx/sites-enabled/foundkey.conf`.\
`sudo ln -s /etc/nginx/sites-available/misskey.conf /etc/nginx/sites-enabled/misskey.conf` `sudo ln -s /etc/nginx/sites-available/foundkey.conf /etc/nginx/sites-enabled/foundkey.conf`
4. Run `sudo nginx -t` to verify that the configuration file will be loaded successfully. 4. Run `sudo nginx -t` to verify that the configuration file will be loaded successfully.
5. Run `sudo systemctl restart nginx` to restart nginx. 5. Run `sudo systemctl restart nginx` to restart nginx.

View file

@ -14,7 +14,6 @@ fetchingAsApObject: "جارٍ جلبه مِن الفديفرس…"
ok: " حسناً" ok: " حسناً"
gotIt: "فهِمت" gotIt: "فهِمت"
cancel: " إلغاء" cancel: " إلغاء"
enterUsername: "أدخِل إسم مسخدم"
renotedBy: "أعاد نشرها {user}" renotedBy: "أعاد نشرها {user}"
noNotes: "لم يُعثر على أية ملاحظات" noNotes: "لم يُعثر على أية ملاحظات"
noNotifications: "ليس هناك أية اشعارات" noNotifications: "ليس هناك أية اشعارات"
@ -30,16 +29,12 @@ login: "لِج"
loggingIn: "جارٍ تسجيل الدخول" loggingIn: "جارٍ تسجيل الدخول"
logout: "الخروج" logout: "الخروج"
signup: "أنشئ حسابًا" signup: "أنشئ حسابًا"
uploading: "يرفع..."
save: "حفظ" save: "حفظ"
users: "المستخدمون" users: "المستخدمون"
addUser: "اضافة مستخدم" addUser: "اضافة مستخدم"
favorite: "أضفها للمفضلة" favorite: "أضفها للمفضلة"
favorites: "المفضلات" favorites: "المفضلات"
unfavorite: "إزالة من المفضلة" unfavorite: "إزالة من المفضلة"
favorited: "أُضيف إلى المفضلة."
alreadyFavorited: "تمت إضافته بالفعل إلى المفضلة."
cantFavorite: "تعذرت الإضافة إلى المفضلة."
pin: "دبّسها على الصفحة الشخصية" pin: "دبّسها على الصفحة الشخصية"
unpin: "ألغ تدبيسها من ملفك الشخصي" unpin: "ألغ تدبيسها من ملفك الشخصي"
copyContent: "انسخ المحتوى" copyContent: "انسخ المحتوى"
@ -51,7 +46,6 @@ deleteAndEditConfirm: "أمتأكد من حذف الملاحظة؟ ستفقد ك
addToList: "أضفه إلى قائمة" addToList: "أضفه إلى قائمة"
sendMessage: "أرسل رسالة" sendMessage: "أرسل رسالة"
copyUsername: "انسخ اسم المستخدم" copyUsername: "انسخ اسم المستخدم"
searchUser: "ابحث عن مستخدمين"
reply: "رد" reply: "رد"
loadMore: "عرض المزيد" loadMore: "عرض المزيد"
showMore: "عرض المزيد" showMore: "عرض المزيد"
@ -73,7 +67,6 @@ exportRequested: "قد تستغرق عملية التصدير بعض الوقت.
\ إلى قرص التخزين." \ إلى قرص التخزين."
importRequested: "يستغرق الاستيراد بعض الوقت" importRequested: "يستغرق الاستيراد بعض الوقت"
lists: "القوائم" lists: "القوائم"
noLists: "ليس لديك أية قائمة"
note: "ملاحظة" note: "ملاحظة"
notes: "الملاحظات" notes: "الملاحظات"
following: "المتابَعون" following: "المتابَعون"
@ -98,21 +91,15 @@ followRequest: "طلب اشتراك"
followRequests: "طلبات الإشتراك" followRequests: "طلبات الإشتراك"
unfollow: "إلغاء الاشتراك" unfollow: "إلغاء الاشتراك"
followRequestPending: "طلبات الإشتراك المعلّقة" followRequestPending: "طلبات الإشتراك المعلّقة"
enterEmoji: "أدخل إيموجي"
renote: "أعد النشر" renote: "أعد النشر"
unrenote: "إلغاء مشاركة الملاحظة" unrenote: "إلغاء مشاركة الملاحظة"
renoted: "أُعيد نشره"
cantRenote: "لا يمكن إعادة نشر الملاحظة"
cantReRenote: "لا يمكنك إعادة نشر ملاحظة معاد نشرها"
quote: "اقتبس" quote: "اقتبس"
pinnedNote: "ملاحظة مدبسة" pinnedNote: "ملاحظة مدبسة"
pinned: "دبّسها على الصفحة الشخصية"
you: "أنت" you: "أنت"
clickToShow: "اضغط للعرض" clickToShow: "اضغط للعرض"
sensitive: "محتوى حساس" sensitive: "محتوى حساس"
add: "إضافة" add: "إضافة"
reaction: "التفاعلات" reaction: "التفاعلات"
reactionSetting: "التفاعلات المراد عرضها في منتقي التفاعلات."
reactionSettingDescription2: "اسحب لترتيب ، انقر للحذف ، استخدم \"+\" للإضافة." reactionSettingDescription2: "اسحب لترتيب ، انقر للحذف ، استخدم \"+\" للإضافة."
attachCancel: "أزل المرفق" attachCancel: "أزل المرفق"
markAsSensitive: "علّمه كمحتوى حساس" markAsSensitive: "علّمه كمحتوى حساس"
@ -136,10 +123,7 @@ editWidgetsExit: "تم"
customEmojis: "إيموجي مخصص" customEmojis: "إيموجي مخصص"
emoji: "إيموجي" emoji: "إيموجي"
emojis: "إيموجي" emojis: "إيموجي"
emojiName: "اسم الإيموجي"
emojiUrl: "رابط الإيموجي"
addEmoji: "إضافة إيموجي" addEmoji: "إضافة إيموجي"
settingGuide: "الإعدادات المستحسنة"
cacheRemoteFiles: "خزن مؤقتا الملفات البعيدة" cacheRemoteFiles: "خزن مؤقتا الملفات البعيدة"
flagAsBot: "علّمه كحساب آلي" flagAsBot: "علّمه كحساب آلي"
flagAsBotDescription: "فعّل هذا الخيار إذا كان هذا الحساب يُدار عبر برمجية. إذا فُعل\ flagAsBotDescription: "فعّل هذا الخيار إذا كان هذا الحساب يُدار عبر برمجية. إذا فُعل\
@ -154,7 +138,6 @@ addAccount: "أضف حساباً"
loginFailed: "فشل الولوج" loginFailed: "فشل الولوج"
showOnRemote: "رؤيته على مثيل الخادم البُعدي" showOnRemote: "رؤيته على مثيل الخادم البُعدي"
general: "الرئيسية" general: "الرئيسية"
wallpaper: "الخلفية"
setWallpaper: "عيّن خلفية" setWallpaper: "عيّن خلفية"
removeWallpaper: "أزل الخلفية" removeWallpaper: "أزل الخلفية"
youHaveNoLists: "لا تمتلك أية قائمة" youHaveNoLists: "لا تمتلك أية قائمة"
@ -169,27 +152,19 @@ selectUser: "حدّد مستخدمًا"
recipient: "المرسَل إليه·ها" recipient: "المرسَل إليه·ها"
annotation: "التعليقات" annotation: "التعليقات"
federation: "الفديرالية" federation: "الفديرالية"
instances: "مثيل الخادم"
registeredAt: "مسجل منذ" registeredAt: "مسجل منذ"
latestRequestSentAt: "آخر طلب أرسِل في" latestRequestSentAt: "آخر طلب أرسِل في"
latestRequestReceivedAt: "آخر طلب تُلقي في" latestRequestReceivedAt: "آخر طلب تُلقي في"
latestStatus: "الحالات الأخيرة" latestStatus: "الحالات الأخيرة"
storageUsage: "مساحة التخزين المستخدمة"
charts: "المنحنيات البيانية" charts: "المنحنيات البيانية"
perHour: "في الساعة" perHour: "في الساعة"
perDay: "في اليوم" perDay: "في اليوم"
stopActivityDelivery: "وقف إرسال النشاط" stopActivityDelivery: "وقف إرسال النشاط"
blockThisInstance: "احجب مثيل الخادم هذا" blockThisInstance: "احجب مثيل الخادم هذا"
operations: "الإجراءات"
software: "البرمجية" software: "البرمجية"
version: "الإصدار" version: "الإصدار"
metadata: "البيانات الوصفية"
withNFiles: "{n} ملف (ملفات)" withNFiles: "{n} ملف (ملفات)"
monitor: "شاشة التحكم"
jobQueue: "قائمة الانتظار" jobQueue: "قائمة الانتظار"
cpuAndMemory: "وحدة المعالجة المركزية والذاكرة"
network: "الشبكة"
disk: "قرص التخزين"
instanceInfo: "معلومات مثيل الخادم" instanceInfo: "معلومات مثيل الخادم"
statistics: "الإحصائيات" statistics: "الإحصائيات"
clearQueue: "تفريغ قائمة الإنتظار" clearQueue: "تفريغ قائمة الإنتظار"
@ -218,9 +193,6 @@ blocked: "محجوب"
suspended: "مُعلّق" suspended: "مُعلّق"
all: "الكل" all: "الكل"
notResponding: "لا يستجيب" notResponding: "لا يستجيب"
instanceFollowing: "المثلاء المتابَعون"
instanceFollowers: "المثلاء المتابِعون"
instanceUsers: "مستخدمو المثيل"
changePassword: "تغيير الكلمة السرية" changePassword: "تغيير الكلمة السرية"
security: "الأمان" security: "الأمان"
retypedNotMatch: "المدخلات لا تتطابق" retypedNotMatch: "المدخلات لا تتطابق"
@ -236,7 +208,6 @@ lookup: "البحث"
announcements: "الإعلانات" announcements: "الإعلانات"
imageUrl: "رابط الصورة" imageUrl: "رابط الصورة"
remove: "حذف" remove: "حذف"
removed: "حُذف بنجاح"
removeAreYouSure: "متأكد من أنك تريد حذف {x}؟" removeAreYouSure: "متأكد من أنك تريد حذف {x}؟"
deleteAreYouSure: "متأكد من أنك تريد حذف {x}؟" deleteAreYouSure: "متأكد من أنك تريد حذف {x}؟"
resetAreYouSure: "هل تريد إعادة التعيين؟" resetAreYouSure: "هل تريد إعادة التعيين؟"
@ -277,7 +248,6 @@ lightThemes: "الحلة الفاتحة"
darkThemes: "الحلة الداكنة" darkThemes: "الحلة الداكنة"
syncDeviceDarkMode: "مطابقة الوضع المضلمومع اعدادات الجهاز" syncDeviceDarkMode: "مطابقة الوضع المضلمومع اعدادات الجهاز"
drive: "قرص التخرين" drive: "قرص التخرين"
fileName: "اسم الملف"
selectFile: "اختر ملفًا" selectFile: "اختر ملفًا"
selectFiles: "اختر ملفات" selectFiles: "اختر ملفات"
selectFolder: "اختر مجلدًا" selectFolder: "اختر مجلدًا"
@ -330,7 +300,6 @@ enableLocalTimeline: "تفعيل الخيط المحلي"
enableGlobalTimeline: "تفعيل الخيط الزمني الشامل" enableGlobalTimeline: "تفعيل الخيط الزمني الشامل"
disablingTimelinesInfo: "سيتمكن المديرون والمشرفون من الوصول إلى كل الخيوط الزمنية\ disablingTimelinesInfo: "سيتمكن المديرون والمشرفون من الوصول إلى كل الخيوط الزمنية\
\ حتى وإن لم تفعّل." \ حتى وإن لم تفعّل."
registration: "إنشاء حساب"
enableRegistration: "تفعيل إنشاء الحسابات الجديدة" enableRegistration: "تفعيل إنشاء الحسابات الجديدة"
invite: "دعوة" invite: "دعوة"
driveCapacityPerLocalAccount: "حصة التخزين لكل مستخدم محلي" driveCapacityPerLocalAccount: "حصة التخزين لكل مستخدم محلي"
@ -339,26 +308,13 @@ inMb: "بالميغابايت"
iconUrl: "رابط الأيقونة" iconUrl: "رابط الأيقونة"
bannerUrl: "رابط صورة اللافتة" bannerUrl: "رابط صورة اللافتة"
backgroundImageUrl: "رابط صورة الخلفية" backgroundImageUrl: "رابط صورة الخلفية"
basicInfo: "المعلومات الأساسية "
pinnedUsers: "المستخدمون المدبسون" pinnedUsers: "المستخدمون المدبسون"
pinnedUsersDescription: "قائمة المستخدمين المدبسين في لسان \"استكشف\" ، اجعل كل اسم\ pinnedUsersDescription: "قائمة المستخدمين المدبسين في لسان \"استكشف\" ، اجعل كل اسم\
\ مستخدم في سطر لوحده." \ مستخدم في سطر لوحده."
pinnedPages: "الصفحات المدبسة"
pinnedPagesDescription: "أدخل مسار الصفحات التي تريد تدبيسها في أعلى هذا الموقع، اجعل\
\ كل مسار في سطر لوحده."
pinnedClipId: "معرّف المشبك المدبس"
pinnedNotes: "ملاحظة مدبسة"
hcaptcha: "hCaptcha"
enableHcaptcha: "فعّل hCaptcha"
hcaptchaSiteKey: "مفتاح الموقع" hcaptchaSiteKey: "مفتاح الموقع"
hcaptchaSecretKey: "المفتاح السري" hcaptchaSecretKey: "المفتاح السري"
recaptcha: "reCAPTCHA"
enableRecaptcha: "تمكين reCAPTCHA"
recaptchaSiteKey: "مفتاح الموقع" recaptchaSiteKey: "مفتاح الموقع"
recaptchaSecretKey: "المفتاح السري" recaptchaSecretKey: "المفتاح السري"
avoidMultiCaptchaConfirm: "يمكن أن يتسبب استخدام عدة خدمات لكلمات التحقق في حدوث تداخل.\
\ هل ترغب في إلغاء تنشيط الخدمات الأخرى؟ يمكنك ترك هذه الخدمات نشطة بالضغط على \"\
ألغ\"."
antennas: "الهوائيات" antennas: "الهوائيات"
manageAntennas: "إدارة الهوائيات" manageAntennas: "إدارة الهوائيات"
name: "الإسم" name: "الإسم"
@ -383,11 +339,8 @@ popularUsers: "المستخدمون الرائدون"
recentlyUpdatedUsers: "أصحاب النشاطات الأخيرة" recentlyUpdatedUsers: "أصحاب النشاطات الأخيرة"
recentlyRegisteredUsers: "المستخدمون المنضمون حديثًا" recentlyRegisteredUsers: "المستخدمون المنضمون حديثًا"
recentlyDiscoveredUsers: "المستخدمون المكتشفون حديثًا" recentlyDiscoveredUsers: "المستخدمون المكتشفون حديثًا"
exploreUsersCount: "يوجد {count} مستخدم(ا)"
exploreFediverse: "استكشف الفديفرس"
popularTags: "الوسوم الرائجة" popularTags: "الوسوم الرائجة"
userList: "القوائم" userList: "القوائم"
about: "عن"
aboutMisskey: "عن FoundKey" aboutMisskey: "عن FoundKey"
administrator: "المدير" administrator: "المدير"
token: "الرمز المميز" token: "الرمز المميز"
@ -407,7 +360,6 @@ share: "شارِك"
notFound: "غير موجود" notFound: "غير موجود"
notFoundDescription: "تعذر العثور على صفحة يقود إليها هذا الرابط." notFoundDescription: "تعذر العثور على صفحة يقود إليها هذا الرابط."
uploadFolder: "المجلد الافتراضي للرفع" uploadFolder: "المجلد الافتراضي للرفع"
cacheClear: "مسح ذاكرة التخزين المؤقت"
markAsReadAllNotifications: "وضع جميع الإشعارات كأنها مقروءة" markAsReadAllNotifications: "وضع جميع الإشعارات كأنها مقروءة"
markAsReadAllUnreadNotes: "علّم جميع الملاحظات كمقروءة" markAsReadAllUnreadNotes: "علّم جميع الملاحظات كمقروءة"
markAsReadAllTalkMessages: "علّم جميع الرسائل كمقروءة" markAsReadAllTalkMessages: "علّم جميع الرسائل كمقروءة"
@ -438,7 +390,6 @@ noMessagesYet: "ليس هناك رسائل بعد"
newMessageExists: "لقد تلقيت رسالة جديدة" newMessageExists: "لقد تلقيت رسالة جديدة"
onlyOneFileCanBeAttached: "يمكنك إرفاق ملف واحد بالرسالة" onlyOneFileCanBeAttached: "يمكنك إرفاق ملف واحد بالرسالة"
signinRequired: "رجاءً لِج" signinRequired: "رجاءً لِج"
invitations: "دعوة"
invitationCode: "رمز الدعوة" invitationCode: "رمز الدعوة"
checking: "التحقق جارٍ" checking: "التحقق جارٍ"
available: "متوفر" available: "متوفر"
@ -458,33 +409,24 @@ or: "أو"
language: "اللغة" language: "اللغة"
uiLanguage: "لغة واجهة المستخدم" uiLanguage: "لغة واجهة المستخدم"
groupInvited: "دُعيت إلى فريقٍ" groupInvited: "دُعيت إلى فريقٍ"
aboutX: "عن {x}"
useOsNativeEmojis: "استخدم الإيموجي الخاصة بنظام التشغيل" useOsNativeEmojis: "استخدم الإيموجي الخاصة بنظام التشغيل"
youHaveNoGroups: "لا تمتلك أية فِرَق" youHaveNoGroups: "لا تمتلك أية فِرَق"
joinOrCreateGroup: "احصل على دعوة لفريق أو أنشئ واحدًا." joinOrCreateGroup: "احصل على دعوة لفريق أو أنشئ واحدًا."
noHistory: "السجل فارغ" noHistory: "السجل فارغ"
signinHistory: "تاريخ تسجيل الدخول" signinHistory: "تاريخ تسجيل الدخول"
doing: "انتظر لحظة"
category: "الفئات" category: "الفئات"
tags: "الوسوم" tags: "الوسوم"
docSource: "مصدر هذا المستند"
createAccount: "أنشئ حسابًا" createAccount: "أنشئ حسابًا"
existingAccount: "الحسابات الموجودة" existingAccount: "الحسابات الموجودة"
regenerate: "أعِد التوليد"
fontSize: "حجم الخط" fontSize: "حجم الخط"
noFollowRequests: "ليس لديك طلبات متابعة معلقة" noFollowRequests: "ليس لديك طلبات متابعة معلقة"
openImageInNewTab: "إفتح الصورة بصفحة جديدة" openImageInNewTab: "إفتح الصورة بصفحة جديدة"
dashboard: "لوحة التحكم" dashboard: "لوحة التحكم"
local: "المحلي" local: "المحلي"
remote: "بُعدي" remote: "بُعدي"
total: "المجموع"
weekOverWeekChanges: "أسبوعيا"
dayOverDayChanges: "يوميا" dayOverDayChanges: "يوميا"
appearance: "المظهر" appearance: "المظهر"
clientSettings: "إعدادات العميل" clientSettings: "إعدادات العميل"
accountSettings: "إعدادات الحساب"
numberOfDays: "عدد الأيام"
hideThisNote: "إخفاء هذه الملاحظة"
showFeaturedNotesInTimeline: "أظهر الملاحظات الشائعة في الخيط الزمني" showFeaturedNotesInTimeline: "أظهر الملاحظات الشائعة في الخيط الزمني"
objectStorageBaseUrl: "الرابط الأساسي" objectStorageBaseUrl: "الرابط الأساسي"
objectStoragePrefix: "البادئة" objectStoragePrefix: "البادئة"
@ -495,8 +437,6 @@ objectStorageUseSSL: "استخدم SSL"
objectStorageUseSSLDesc: "عطل هذا الخيار إذا لم ترد استخدام API عبر HTTPS" objectStorageUseSSLDesc: "عطل هذا الخيار إذا لم ترد استخدام API عبر HTTPS"
objectStorageUseProxy: "اتصل عبر وكيل" objectStorageUseProxy: "اتصل عبر وكيل"
objectStorageUseProxyDesc: "عطل هذا الخيار إذا لم ترد استخدام API عبر وكيل" objectStorageUseProxyDesc: "عطل هذا الخيار إذا لم ترد استخدام API عبر وكيل"
serverLogs: "سجلات الخادم"
deleteAll: "حذف الكل"
showFixedPostForm: "أظهر نموذج الكتابة في أعلى الصفحة" showFixedPostForm: "أظهر نموذج الكتابة في أعلى الصفحة"
newNoteRecived: "هناك ملاحظات جديدة" newNoteRecived: "هناك ملاحظات جديدة"
sounds: "الرنات" sounds: "الرنات"
@ -507,7 +447,6 @@ popout: "منبثقة"
volume: "مستوى الصوت" volume: "مستوى الصوت"
masterVolume: "حجم الصوت الرئيس" masterVolume: "حجم الصوت الرئيس"
details: "التفاصيل" details: "التفاصيل"
chooseEmoji: "اختر إيموجي"
unableToProcess: "يتعذر إكمال العملية" unableToProcess: "يتعذر إكمال العملية"
recentUsed: "المستخدمة مؤخرا" recentUsed: "المستخدمة مؤخرا"
install: "ثبّت" install: "ثبّت"
@ -522,7 +461,6 @@ ascendingOrder: "تصاعدي"
descendingOrder: "تنازلي" descendingOrder: "تنازلي"
output: "الخارجة" output: "الخارجة"
updateRemoteUser: "تحديث المعلومات عن المستخدم البعيد" updateRemoteUser: "تحديث المعلومات عن المستخدم البعيد"
deleteAllFiles: "حذف كافة الملفات"
deleteAllFilesConfirm: "أتريد حذف كل الملفات؟" deleteAllFilesConfirm: "أتريد حذف كل الملفات؟"
removeAllFollowing: "ألغ متابعة كل المتابَعين" removeAllFollowing: "ألغ متابعة كل المتابَعين"
removeAllFollowingDescription: "تنفيذه سيلغي متابعة المستخدمين المتواجدين على {host}.\ removeAllFollowingDescription: "تنفيذه سيلغي متابعة المستخدمين المتواجدين على {host}.\
@ -538,10 +476,7 @@ addItem: "إضافة عنصر"
relays: "المُرَحلات" relays: "المُرَحلات"
addRelay: "إضافة مُرحّل" addRelay: "إضافة مُرحّل"
inboxUrl: "رابط صندوق الوارد" inboxUrl: "رابط صندوق الوارد"
addedRelays: "المرحلات المضافة"
serviceworkerInfo: "يجب أن يفعل لإرسال الإشعارات."
deletedNote: "ملاحظة محذوفة" deletedNote: "ملاحظة محذوفة"
invisibleNote: "ملاحظة مخفية"
enableInfiniteScroll: "فعّل التمرير المتواصل" enableInfiniteScroll: "فعّل التمرير المتواصل"
visibility: "الظهور" visibility: "الظهور"
poll: "استطلاع رأي" poll: "استطلاع رأي"
@ -551,12 +486,10 @@ disablePlayer: "أغلق مشغل الفيديو"
themeEditor: "مصمم القوالب" themeEditor: "مصمم القوالب"
description: "الوصف" description: "الوصف"
describeFile: "أضف تعليقًا توضيحيًا" describeFile: "أضف تعليقًا توضيحيًا"
enterFileDescription: "أدخل تعليقًا توضيحيًا"
author: "الكاتب" author: "الكاتب"
leaveConfirm: "لديك تغييرات غير محفوظة. أتريد المتابعة دون حفظها؟" leaveConfirm: "لديك تغييرات غير محفوظة. أتريد المتابعة دون حفظها؟"
manage: "إدارة " manage: "إدارة "
plugins: "الإضافات" plugins: "الإضافات"
useFullReactionPicker: "استخدم الحجم الكامل لمنتقي التفاعلات"
width: "العرض" width: "العرض"
height: "الإرتفاع" height: "الإرتفاع"
large: "كبير" large: "كبير"
@ -568,7 +501,6 @@ enableAll: "تشغيل الكل"
disableAll: "تعطيل الكل" disableAll: "تعطيل الكل"
tokenRequested: "منح حق الوصول إلى الحساب" tokenRequested: "منح حق الوصول إلى الحساب"
pluginTokenRequestedDescription: "ستتمكن الإضافة من استخدام هذه الأذونات." pluginTokenRequestedDescription: "ستتمكن الإضافة من استخدام هذه الأذونات."
notificationType: "أنواع الإشعارات"
edit: "التعديل" edit: "التعديل"
useStarForReactionFallback: "استخدم ★ كبديل إذا كان التفاعل مجهولًا" useStarForReactionFallback: "استخدم ★ كبديل إذا كان التفاعل مجهولًا"
emailServer: "خادم البريد الإلكتروني" emailServer: "خادم البريد الإلكتروني"
@ -590,10 +522,7 @@ userSaysSomething: "كتب {name} شيءً"
makeActive: "تفعيل" makeActive: "تفعيل"
display: "المظهر" display: "المظهر"
copy: "نسخ" copy: "نسخ"
metrics: "المقاييس"
overview: "ملخص عام" overview: "ملخص عام"
logs: "السِجلّات"
delayed: "متأخر"
database: "قاعدة البيانات" database: "قاعدة البيانات"
channel: "القنوات" channel: "القنوات"
create: "أنشئ" create: "أنشئ"
@ -609,7 +538,6 @@ regenerateLoginTokenDescription: "ينشئ رمز استيثاق جديد في
setMultipleBySeparatingWithSpace: "يمكنك ادخال أكثر من مدخل واحد وذلك بفصلها بمسافات." setMultipleBySeparatingWithSpace: "يمكنك ادخال أكثر من مدخل واحد وذلك بفصلها بمسافات."
fileIdOrUrl: "معرف الملف أو رابط" fileIdOrUrl: "معرف الملف أو رابط"
behavior: "السلوك" behavior: "السلوك"
sample: "مثال"
abuseReports: "البلاغات" abuseReports: "البلاغات"
reportAbuse: "أبلغ" reportAbuse: "أبلغ"
reportAbuseOf: "أبلغ عن {name}" reportAbuseOf: "أبلغ عن {name}"
@ -624,10 +552,7 @@ send: "أرسل"
abuseMarkAsResolved: "علّم البلاغ كمحلول" abuseMarkAsResolved: "علّم البلاغ كمحلول"
openInNewTab: "افتح في لسان جديد" openInNewTab: "افتح في لسان جديد"
defaultNavigationBehaviour: "سلوك الملاحة الافتراضي" defaultNavigationBehaviour: "سلوك الملاحة الافتراضي"
editTheseSettingsMayBreakAccount: "تعديل هذه الإعدادات قد يسبب عطبًا لحسابك"
instanceTicker: "معلومات المثيل الأصلي للملاحظات" instanceTicker: "معلومات المثيل الأصلي للملاحظات"
waitingFor: "في انتظار {x}"
random: "عشوائي"
system: "النظام" system: "النظام"
switchUi: "بدّل واجهة المستخدم" switchUi: "بدّل واجهة المستخدم"
desktop: "سطح المكتب" desktop: "سطح المكتب"
@ -661,7 +586,6 @@ alwaysMarkSensitive: "علّم افتراضيًا جميع ملاحظاتي كذ
loadRawImages: "حمّل الصور الأصلية بدلًا من المصغرات" loadRawImages: "حمّل الصور الأصلية بدلًا من المصغرات"
disableShowingAnimatedImages: "لا تشغّل الصور المتحركة" disableShowingAnimatedImages: "لا تشغّل الصور المتحركة"
verificationEmailSent: "أُرسل بريد التحقق. أنقر على الرابط المضمن لإكمال التحقق." verificationEmailSent: "أُرسل بريد التحقق. أنقر على الرابط المضمن لإكمال التحقق."
notSet: "لم يعيّن"
emailVerified: "تُحقّق من بريدك الإلكتروني" emailVerified: "تُحقّق من بريدك الإلكتروني"
noteFavoritesCount: "عدد الملاحظات المفضلة" noteFavoritesCount: "عدد الملاحظات المفضلة"
pageLikesCount: "عدد الصفحات التي أعجبت بها" pageLikesCount: "عدد الصفحات التي أعجبت بها"
@ -669,8 +593,6 @@ pageLikedCount: "عدد صفحاتك المُعجب بها"
contact: "التواصل" contact: "التواصل"
useSystemFont: "استخدم الخط الافتراضية للنظام" useSystemFont: "استخدم الخط الافتراضية للنظام"
clips: "مشابك" clips: "مشابك"
experimentalFeatures: "ميّزات اختبارية"
developer: "المطور"
makeExplorable: "أظهر الحساب في صفحة \"استكشاف\"" makeExplorable: "أظهر الحساب في صفحة \"استكشاف\""
makeExplorableDescription: "بتعطيل هذا الخيار لن يظهر حسابك في صفحة \"استكشاف\"" makeExplorableDescription: "بتعطيل هذا الخيار لن يظهر حسابك في صفحة \"استكشاف\""
showGapBetweenNotesInTimeline: "أظهر فجوات بين المشاركات في الخيط الزمني" showGapBetweenNotesInTimeline: "أظهر فجوات بين المشاركات في الخيط الزمني"
@ -679,28 +601,16 @@ narrow: "رفيع"
reloadToApplySetting: "سيُطبق هذا الإعداد بعد إعادة تحميل الصفحة، أتريد إعادة تحميلها\ reloadToApplySetting: "سيُطبق هذا الإعداد بعد إعادة تحميل الصفحة، أتريد إعادة تحميلها\
\ الآن؟" \ الآن؟"
needReloadToApply: "سيطبق هذا بعد إعادة التحميل." needReloadToApply: "سيطبق هذا بعد إعادة التحميل."
showTitlebar: "اعرض شريط العنوان"
clearCache: "امسح التخزين المؤقت" clearCache: "امسح التخزين المؤقت"
onlineUsersCount: "{n} مستخدم متصل" onlineUsersCount: "{n} مستخدم متصل"
nUsers: "{n} مستخدم"
nNotes: "{n} ملاحظة"
myTheme: "سماتي"
backgroundColor: "لون الخلفية" backgroundColor: "لون الخلفية"
accentColor: "طابع لوني" accentColor: "طابع لوني"
textColor: "لون النص" textColor: "لون النص"
saveAs: "احفظ كـ..." saveAs: "احفظ كـ..."
advanced: "متقدم"
value: "القيمة"
createdAt: "أُنشئ في" createdAt: "أُنشئ في"
updatedAt: "حُدّث في" updatedAt: "حُدّث في"
saveConfirm: "أتريد خفظ التغييرات؟"
deleteConfirm: "أمتأكد من الحذف؟" deleteConfirm: "أمتأكد من الحذف؟"
invalidValue: "قيمة غير صالحة."
registry: "السجل"
closeAccount: "اختر حسبًا" closeAccount: "اختر حسبًا"
currentVersion: "الإصدار الحالي"
latestVersion: "آخر نسخة مستقرة"
youAreRunningUpToDateClient: "أنت تستخدم أحدث نسخة من العميل."
newVersionOfClientAvailable: "تتوفر نسخة أحدث للعميل" newVersionOfClientAvailable: "تتوفر نسخة أحدث للعميل"
usageAmount: "الإستخدام" usageAmount: "الإستخدام"
capacity: "السعة" capacity: "السعة"
@ -709,11 +619,9 @@ editCode: "حرر الشفرة"
apply: "تطبيق" apply: "تطبيق"
receiveAnnouncementFromInstance: "استلم إشعارات من هذا المثيل" receiveAnnouncementFromInstance: "استلم إشعارات من هذا المثيل"
emailNotification: "إشعارات البريد الكتروني" emailNotification: "إشعارات البريد الكتروني"
inChannelSearch: "ابحث عن قناة"
useReactionPickerForContextMenu: "افتح منتقي التفاعلات عند النقر بالزر الأيمن" useReactionPickerForContextMenu: "افتح منتقي التفاعلات عند النقر بالزر الأيمن"
typingUsers: "{users} يكتب(ون)..." typingUsers: "{users} يكتب(ون)..."
jumpToSpecifiedDate: "انتقل إلى تاريخ محدد" jumpToSpecifiedDate: "انتقل إلى تاريخ محدد"
showingPastTimeline: "أنت تستعرض حاليًا خيطًا زمنيًا قديمًا"
clear: "عودة" clear: "عودة"
markAllAsRead: "علّم الكل كمقروء" markAllAsRead: "علّم الكل كمقروء"
goBack: "رجوع" goBack: "رجوع"
@ -726,7 +634,6 @@ notSpecifiedMentionWarning: "في الملاحظة ذكر لمستخدمين ل
info: "عن" info: "عن"
userInfo: "معلومات المستخدم" userInfo: "معلومات المستخدم"
unknown: "مجهول" unknown: "مجهول"
onlineStatus: "الحالة"
hideOnlineStatus: "اخف الحالة" hideOnlineStatus: "اخف الحالة"
hideOnlineStatusDescription: "قد يؤدي جعل اخفاء حالتك إلى تعطيل أداء بعض الميزات ،\ hideOnlineStatusDescription: "قد يؤدي جعل اخفاء حالتك إلى تعطيل أداء بعض الميزات ،\
\ مثل البحث." \ مثل البحث."
@ -753,22 +660,13 @@ gallery: "المعرض"
recentPosts: "المشاركات الحديثة" recentPosts: "المشاركات الحديثة"
popularPosts: "المشاركات المتداولة" popularPosts: "المشاركات المتداولة"
shareWithNote: "شاركه في ملاحظة" shareWithNote: "شاركه في ملاحظة"
expiration: "ينتهي استطلاع الرأي في"
memo: "تذكير"
priority: "الأولوية"
high: "عالية"
middle: "متوسط"
low: "منخفضة"
emailNotConfiguredWarning: "لم تعيّن بريدًا إلكترونيًا" emailNotConfiguredWarning: "لم تعيّن بريدًا إلكترونيًا"
ratio: "النسبة" ratio: "النسبة"
previewNoteText: "اعرض معاينة" previewNoteText: "اعرض معاينة"
customCss: "CSS مخصصة" customCss: "CSS مخصصة"
customCssWarn: "استخدم هذه الإعداد فقط إن كان لك علم بماهيّته. إدخال قيمة غير مناسبة\ customCssWarn: "استخدم هذه الإعداد فقط إن كان لك علم بماهيّته. إدخال قيمة غير مناسبة\
\ سيسسب ضررًا للعميل." \ سيسسب ضررًا للعميل."
global: "الشامل"
squareAvatars: "اعرض شكل الصور الرمزية كمربعات" squareAvatars: "اعرض شكل الصور الرمزية كمربعات"
sent: "أرسل"
received: "اُستلم"
searchResult: "نتائج البحث" searchResult: "نتائج البحث"
hashtags: "الوسوم" hashtags: "الوسوم"
troubleshooting: "استكشاف الأخطاء وإصلاحها" troubleshooting: "استكشاف الأخطاء وإصلاحها"
@ -843,9 +741,6 @@ _accountDelete:
requestAccountDelete: "أرسل طلبًا لحذف الحساب" requestAccountDelete: "أرسل طلبًا لحذف الحساب"
started: "بدأت عملية الحذف." started: "بدأت عملية الحذف."
inProgress: "عملية الحذف جارية" inProgress: "عملية الحذف جارية"
_ad:
back: "رجوع"
reduceFrequencyOfThisAd: "قلل عرض هذا الإعلان"
_forgotPassword: _forgotPassword:
enterEmail: "أدخل البريد الإلكتروني المرتبط بحسابك لكي يرسل إليك رابط لإعادة تعيين\ enterEmail: "أدخل البريد الإلكتروني المرتبط بحسابك لكي يرسل إليك رابط لإعادة تعيين\
\ كلمة المرور." \ كلمة المرور."
@ -865,7 +760,6 @@ _email:
_plugin: _plugin:
install: "ثبّت إضافات" install: "ثبّت إضافات"
installWarn: "رجاءً لا تثبت إضافات غير موثوقة." installWarn: "رجاءً لا تثبت إضافات غير موثوقة."
manage: "إدارة الإضافات"
_registry: _registry:
scope: "الحيّز" scope: "الحيّز"
key: "مفتاح" key: "مفتاح"
@ -874,10 +768,8 @@ _registry:
createKey: "أنشئ مفتاحًا" createKey: "أنشئ مفتاحًا"
_aboutMisskey: _aboutMisskey:
about: "ميسكي هو برمجية مفتوحة المصدر يطورها syuilo منذ 2014." about: "ميسكي هو برمجية مفتوحة المصدر يطورها syuilo منذ 2014."
contributors: "المساهمون الرئيسيون"
allContributors: "كل المساهمين" allContributors: "كل المساهمين"
source: "الشفرة المصدرية" source: "الشفرة المصدرية"
translation: "ترجم ميسكي"
_nsfw: _nsfw:
respect: "اخف الوسائط ذات المحتوى الحساس" respect: "اخف الوسائط ذات المحتوى الحساس"
ignore: "اعرض الوسائط ذات المحتوى الحساس" ignore: "اعرض الوسائط ذات المحتوى الحساس"
@ -984,44 +876,6 @@ _theme:
alreadyInstalled: "هذه السمة مثبتة سلفًا" alreadyInstalled: "هذه السمة مثبتة سلفًا"
invalid: "تنسيق السمة غير صالح" invalid: "تنسيق السمة غير صالح"
make: "إنشاء قالب" make: "إنشاء قالب"
addConstant: "أضف ثابتًا"
constant: "ثابت"
defaultValue: "القيمة الافتراضية"
color: "اللون"
key: "مفتاح"
func: "دوال"
funcKind: "نوع الدالة"
argument: "معامل"
alpha: "الشفافية"
inputConstantName: "أدخل اسمًا للثابت"
deleteConstantConfirm: "أمتأكد من حذف الثابت {const}؟"
keys:
accent: "طابع لوني"
bg: "الخلفية"
fg: "النص"
indicator: "المؤشر"
panel: "اللوحة"
shadow: "الظل"
navBg: "خلفية الشريط الجانبي"
navFg: "نص الشريط الجانبي"
navHoverFg: "نص الشريط الجانبي (عند التمرير فوقه)"
link: "رابط"
hashtag: "وسم"
mention: "أشر الى"
renote: "أعد النشر"
divider: "فاصل"
scrollbarHandle: "مقبض شريط التمرير"
scrollbarHandleHover: "مقبض شريط التمرير (عند التمرير فوقه)"
infoWarnBg: "خلفية التحذير"
infoWarnFg: "نص التحذير"
toastBg: "خلفية الإشعارات"
toastFg: "نص الإشعارات"
buttonBg: "خلفية الأزرار"
buttonHoverBg: "خلفية الأزرار (عند التمرير فوقها)"
inputBorder: "حواف حقل الإدخال"
listItemHoverBg: "خلفية عناصر القائمة (عند التمرير فوقها)"
driveFolderBg: "خلفية مجلد قرص التخزين"
messageBg: "خلفية المحادثة"
_sfx: _sfx:
note: "الملاحظات" note: "الملاحظات"
noteMy: "ملاحظتي" noteMy: "ملاحظتي"
@ -1281,7 +1135,6 @@ _relayStatus:
accepted: "مقبول" accepted: "مقبول"
rejected: "مرفوض" rejected: "مرفوض"
_notification: _notification:
fileUploaded: "نجح رفع الملف"
youGotMention: "{name} أشار إليك" youGotMention: "{name} أشار إليك"
youGotReply: "ردّ عليك {name}" youGotReply: "ردّ عليك {name}"
youGotQuote: "اقتبس منك {name}" youGotQuote: "اقتبس منك {name}"
@ -1295,7 +1148,6 @@ _notification:
youWereInvitedToGroup: "دُعيت إلى فريقٍ" youWereInvitedToGroup: "دُعيت إلى فريقٍ"
pollEnded: "ظهرت نتائج الاستطلاع" pollEnded: "ظهرت نتائج الاستطلاع"
_types: _types:
all: "الكل"
follow: "متابِعون جدد" follow: "متابِعون جدد"
mention: "الإشارات" mention: "الإشارات"
reply: "الردود" reply: "الردود"

View file

@ -14,7 +14,6 @@ fetchingAsApObject: "ফেডিভার্স থেকে খবর আন
ok: "ঠিক" ok: "ঠিক"
gotIt: "বুঝেছি" gotIt: "বুঝেছি"
cancel: "বাতিল" cancel: "বাতিল"
enterUsername: "ইউজারনেম লিখুন"
renotedBy: "{user} রিনোট করেছেন" renotedBy: "{user} রিনোট করেছেন"
noNotes: "কোন নোট নেই" noNotes: "কোন নোট নেই"
noNotifications: "কোনো বিজ্ঞপ্তি নেই" noNotifications: "কোনো বিজ্ঞপ্তি নেই"
@ -30,16 +29,12 @@ login: "প্রবেশ করুন"
loggingIn: "প্রবেশ করা হচ্ছে..." loggingIn: "প্রবেশ করা হচ্ছে..."
logout: "লগআউট" logout: "লগআউট"
signup: "নিবন্ধন করুন" signup: "নিবন্ধন করুন"
uploading: "আপলোড হচ্ছ …"
save: "সংরক্ষণ" save: "সংরক্ষণ"
users: "ব্যবহারকারীগণ" users: "ব্যবহারকারীগণ"
addUser: "ব্যবহারকারী যোগ করুন" addUser: "ব্যবহারকারী যোগ করুন"
favorite: "পছন্দ" favorite: "পছন্দ"
favorites: "পছন্দগুলি" favorites: "পছন্দগুলি"
unfavorite: "পছন্দ না" unfavorite: "পছন্দ না"
favorited: "পছন্দ করা হয়েছে"
alreadyFavorited: "ইতিমধ্যে পছন্দ করা হয়েছে"
cantFavorite: "পছন্দ করা যায়নি"
pin: "পিন করা" pin: "পিন করা"
unpin: "পিন সরান" unpin: "পিন সরান"
copyContent: "বিষয়বস্তু কপি করুন" copyContent: "বিষয়বস্তু কপি করুন"
@ -51,7 +46,6 @@ deleteAndEditConfirm: "আপনি কি এই নোটটি মুছে
addToList: "লিস্ট এ যোগ করুন" addToList: "লিস্ট এ যোগ করুন"
sendMessage: "একটি বার্তা পাঠান" sendMessage: "একটি বার্তা পাঠান"
copyUsername: "ব্যবহারকারীর নাম কপি করুন" copyUsername: "ব্যবহারকারীর নাম কপি করুন"
searchUser: "ব্যবহারকারী খুঁজুন..."
reply: "জবাব" reply: "জবাব"
loadMore: "আরও দেখুন" loadMore: "আরও দেখুন"
showMore: "আরও দেখুন" showMore: "আরও দেখুন"
@ -73,7 +67,6 @@ exportRequested: "আপনার তথ্যসমূহ রপ্তানি
\ রপ্তানি সম্পন্ন হলে তা আপনার ড্রাইভে সংরক্ষিত হবে।" \ রপ্তানি সম্পন্ন হলে তা আপনার ড্রাইভে সংরক্ষিত হবে।"
importRequested: "আপনার তথ্যসমূহ আমদানির জন্য অনুরোধ করেছেন। এতে কিছু সময় লাগতে পারে। " importRequested: "আপনার তথ্যসমূহ আমদানির জন্য অনুরোধ করেছেন। এতে কিছু সময় লাগতে পারে। "
lists: "লিস্ট" lists: "লিস্ট"
noLists: "কোন লিস্ট নেই"
note: "নোট" note: "নোট"
notes: "নোটগুলি" notes: "নোটগুলি"
following: "অনুসরণ করা হচ্ছে" following: "অনুসরণ করা হচ্ছে"
@ -99,21 +92,15 @@ followRequest: "অনুসরণ করার অনুরোধ"
followRequests: "অনুসরণ করার অনুরোধসমূহ" followRequests: "অনুসরণ করার অনুরোধসমূহ"
unfollow: "অনুসরণ বাতিল" unfollow: "অনুসরণ বাতিল"
followRequestPending: "অনুসরণ করার অনুরোধ বিচারাধীন" followRequestPending: "অনুসরণ করার অনুরোধ বিচারাধীন"
enterEmoji: "ইমোজি প্রবেশ করান"
renote: "রিনোট" renote: "রিনোট"
unrenote: "রিনোট সরান " unrenote: "রিনোট সরান "
renoted: "রিনোট করা হয়েছে"
cantRenote: "এই নোটটি রিনোট করা যাবে না।"
cantReRenote: "রিনোটকে রিনোট করা যাবে না।"
quote: "উদ্ধৃতি" quote: "উদ্ধৃতি"
pinnedNote: "পিন করা নোট" pinnedNote: "পিন করা নোট"
pinned: "পিন করা"
you: "আপনি" you: "আপনি"
clickToShow: "দেখার জন্য ক্লিক করুন" clickToShow: "দেখার জন্য ক্লিক করুন"
sensitive: "সংবেদনশীল বিষয়বস্তু" sensitive: "সংবেদনশীল বিষয়বস্তু"
add: "যুক্ত করুন" add: "যুক্ত করুন"
reaction: "প্রতিক্রিয়া" reaction: "প্রতিক্রিয়া"
reactionSetting: "রিঅ্যাকশন পিকারে যেসকল প্রতিক্রিয়া দেখানো হবে"
reactionSettingDescription2: "পুনরায় সাজাতে টেনে আনুন, মুছতে ক্লিক করুন, যোগ করতে\ reactionSettingDescription2: "পুনরায় সাজাতে টেনে আনুন, মুছতে ক্লিক করুন, যোগ করতে\
\ + টিপুন।" \ + টিপুন।"
attachCancel: "অ্যাটাচমেন্ট সরান " attachCancel: "অ্যাটাচমেন্ট সরান "
@ -138,10 +125,7 @@ editWidgetsExit: "সম্পাদনা শেষ করুন"
customEmojis: "স্বনির্ধারিত ইমোজিগুলি" customEmojis: "স্বনির্ধারিত ইমোজিগুলি"
emoji: "ইমোজি" emoji: "ইমোজি"
emojis: "ইমোজিগুলি" emojis: "ইমোজিগুলি"
emojiName: "ইমোজির নাম"
emojiUrl: "ইমোজির URL"
addEmoji: "ইমোজি যুক্ত করুন" addEmoji: "ইমোজি যুক্ত করুন"
settingGuide: "সুপারিশকৃত সেটিংস"
cacheRemoteFiles: "রিমোট ফাইলসমুহ ক্যাশ করুন" cacheRemoteFiles: "রিমোট ফাইলসমুহ ক্যাশ করুন"
cacheRemoteFilesDescription: "যখন এই অপশনটি বন্ধ থাকে তখন রিমোট ফাইল সমূহ সরাসরি রিমোট\ cacheRemoteFilesDescription: "যখন এই অপশনটি বন্ধ থাকে তখন রিমোট ফাইল সমূহ সরাসরি রিমোট\
\ ইন্সট্যান্স থেকে লোড করা হয়। এই অপশনটি বন্ধ করলে স্টোরেজ এর ব্যাবহার কমবে তবে\ \ ইন্সট্যান্স থেকে লোড করা হয়। এই অপশনটি বন্ধ করলে স্টোরেজ এর ব্যাবহার কমবে তবে\
@ -162,7 +146,6 @@ addAccount: "অ্যাকাউন্ট যোগ করুন"
loginFailed: "প্রবেশ করা যায়নি" loginFailed: "প্রবেশ করা যায়নি"
showOnRemote: "রিমোট সার্ভারে দেখুন" showOnRemote: "রিমোট সার্ভারে দেখুন"
general: "সাধারণ" general: "সাধারণ"
wallpaper: "ওয়ালপেপার"
setWallpaper: "ওয়ালপেপার সেট করুন" setWallpaper: "ওয়ালপেপার সেট করুন"
removeWallpaper: "ওয়ালপেপার সরান" removeWallpaper: "ওয়ালপেপার সরান"
youHaveNoLists: "আপনার কোন লিস্ট নেই" youHaveNoLists: "আপনার কোন লিস্ট নেই"
@ -178,27 +161,19 @@ selectUser: "ব্যবহারকারী নির্বাচন কর
recipient: "প্রতি" recipient: "প্রতি"
annotation: "মন্তব্য" annotation: "মন্তব্য"
federation: "ফেডিভার্স" federation: "ফেডিভার্স"
instances: "ইন্সট্যান্স"
registeredAt: "যোগ দিয়েছেন" registeredAt: "যোগ দিয়েছেন"
latestRequestSentAt: "শেষ রিকুয়েস্ট পাঠানো হয়েছে" latestRequestSentAt: "শেষ রিকুয়েস্ট পাঠানো হয়েছে"
latestRequestReceivedAt: "শেষ রিকুয়েস্ট গৃহীত হয়েছে" latestRequestReceivedAt: "শেষ রিকুয়েস্ট গৃহীত হয়েছে"
latestStatus: "সর্বশেষ অবস্থা" latestStatus: "সর্বশেষ অবস্থা"
storageUsage: "স্টোরেজের ব্যাবহার"
charts: "চার্ট" charts: "চার্ট"
perHour: "ঘন্টা প্রতি" perHour: "ঘন্টা প্রতি"
perDay: "দৈনিক" perDay: "দৈনিক"
stopActivityDelivery: "অ্যাক্টিভিটি পাঠানো বন্ধ করুন" stopActivityDelivery: "অ্যাক্টিভিটি পাঠানো বন্ধ করুন"
blockThisInstance: "ইন্সট্যান্স ব্লক করুন" blockThisInstance: "ইন্সট্যান্স ব্লক করুন"
operations: "ক্রিয়াকলাপ"
software: "সফটওয়্যার" software: "সফটওয়্যার"
version: "সংস্করণ" version: "সংস্করণ"
metadata: "মেটাডাটা"
withNFiles: "{n} টি ফাইল" withNFiles: "{n} টি ফাইল"
monitor: "মনিটর"
jobQueue: "জব কিউ" jobQueue: "জব কিউ"
cpuAndMemory: "সিপিউ এবং মেমরি"
network: "নেটওয়ার্ক"
disk: "ডিস্ক"
instanceInfo: "ইন্সট্যান্সের তথ্য" instanceInfo: "ইন্সট্যান্সের তথ্য"
statistics: "পরিসংখ্যান" statistics: "পরিসংখ্যান"
clearQueue: "কিউ পরিষ্কার করুন" clearQueue: "কিউ পরিষ্কার করুন"
@ -232,9 +207,6 @@ all: "সবগুলো"
subscribing: "সদস্যতা নেয়া হচ্ছে" subscribing: "সদস্যতা নেয়া হচ্ছে"
publishing: "প্রকাশ করা হচ্ছে" publishing: "প্রকাশ করা হচ্ছে"
notResponding: "সাড়া নেই" notResponding: "সাড়া নেই"
instanceFollowing: "ইন্সট্যান্স অনুসরণ করা হচ্ছে"
instanceFollowers: "ইন্সট্যান্স অনুসরণকারী"
instanceUsers: "ইন্সট্যান্স ব্যাবহারকারী"
changePassword: "পাসওয়ার্ড পরিবর্তন করুন" changePassword: "পাসওয়ার্ড পরিবর্তন করুন"
security: "নিরাপত্তা" security: "নিরাপত্তা"
retypedNotMatch: "ইনপুট মেলে না।" retypedNotMatch: "ইনপুট মেলে না।"
@ -250,7 +222,6 @@ lookup: "খুঁজে দেখো"
announcements: "ঘোষণা" announcements: "ঘোষণা"
imageUrl: "চিত্রের URL" imageUrl: "চিত্রের URL"
remove: "মুছুন" remove: "মুছুন"
removed: "সরানো হয়েছে"
removeAreYouSure: "আপনি কি \"{x}\" সরানোর ব্যাপারে নিশ্চিত?" removeAreYouSure: "আপনি কি \"{x}\" সরানোর ব্যাপারে নিশ্চিত?"
deleteAreYouSure: "আপনি কি \"{x}\" সরানোর ব্যাপারে নিশ্চিত?" deleteAreYouSure: "আপনি কি \"{x}\" সরানোর ব্যাপারে নিশ্চিত?"
resetAreYouSure: "রিসেট করার ব্যাপারে নিশ্চিত?" resetAreYouSure: "রিসেট করার ব্যাপারে নিশ্চিত?"
@ -292,7 +263,6 @@ lightThemes: "আলোকিত থিম"
darkThemes: "অন্ধকার থিম" darkThemes: "অন্ধকার থিম"
syncDeviceDarkMode: "ডিভাইসের সেটিং অনুযায়ী ডার্ক মোড সেট করুন" syncDeviceDarkMode: "ডিভাইসের সেটিং অনুযায়ী ডার্ক মোড সেট করুন"
drive: "ড্রাইভ" drive: "ড্রাইভ"
fileName: "ফাইলের নাম"
selectFile: "ফাইল নির্বাচন করুন" selectFile: "ফাইল নির্বাচন করুন"
selectFiles: "ফাইল নির্বাচন করুন" selectFiles: "ফাইল নির্বাচন করুন"
selectFolder: "ফোল্ডার নির্বাচন করুন" selectFolder: "ফোল্ডার নির্বাচন করুন"
@ -345,7 +315,6 @@ enableLocalTimeline: "স্থানীয় টাইমলাইন চাল
enableGlobalTimeline: "গ্লোবাল টাইমলাইন চালু করুন" enableGlobalTimeline: "গ্লোবাল টাইমলাইন চালু করুন"
disablingTimelinesInfo: "আপনি এই টাইমলাইনগুলি বন্ধ করলেও প্রশাসক এবং মডারেটররা এই\ disablingTimelinesInfo: "আপনি এই টাইমলাইনগুলি বন্ধ করলেও প্রশাসক এবং মডারেটররা এই\
\ টাইমলাইনগুলি ব্যাবহার করতে পারবে" \ টাইমলাইনগুলি ব্যাবহার করতে পারবে"
registration: "নিবন্ধন"
enableRegistration: "নতুন ব্যাবহারকারী নিবন্ধন চালু করুন" enableRegistration: "নতুন ব্যাবহারকারী নিবন্ধন চালু করুন"
invite: "আমন্ত্রণ" invite: "আমন্ত্রণ"
driveCapacityPerLocalAccount: "প্রত্যেক স্থানীয় ব্যাবহারকারীর জন্য ড্রাইভের জায়গা" driveCapacityPerLocalAccount: "প্রত্যেক স্থানীয় ব্যাবহারকারীর জন্য ড্রাইভের জায়গা"
@ -354,26 +323,13 @@ inMb: "মেগাবাইটে লিখুন"
iconUrl: "আইকনের URL (ফ্যাভিকন, ইত্যাদি)" iconUrl: "আইকনের URL (ফ্যাভিকন, ইত্যাদি)"
bannerUrl: "ব্যানার ছবির URL" bannerUrl: "ব্যানার ছবির URL"
backgroundImageUrl: "পটভূমির চিত্রের URL" backgroundImageUrl: "পটভূমির চিত্রের URL"
basicInfo: "আপনার ব্যক্তিগত তথ্য"
pinnedUsers: "পিন করা ব্যাবহারকারীগণ" pinnedUsers: "পিন করা ব্যাবহারকারীগণ"
pinnedUsersDescription: "আপনি যেসব ব্যবহারকারীদের \"ঘুরে দেখুন\" পৃষ্ঠায় পিন করতে\ pinnedUsersDescription: "আপনি যেসব ব্যবহারকারীদের \"ঘুরে দেখুন\" পৃষ্ঠায় পিন করতে\
\ চান তাদের বর্ণনা করুন, প্রত্যেকের বর্ণনা আলাদা লাইনে লিখুন" \ চান তাদের বর্ণনা করুন, প্রত্যেকের বর্ণনা আলাদা লাইনে লিখুন"
pinnedPages: "পিন করা পৃষ্ঠাসুমহ"
pinnedPagesDescription: "আপনি যেসকল পৃষ্ঠাসমূহকে \"ঘুরে দেখুন\" পৃষ্ঠায় পিন করতে\
\ চান তাদের বর্ণনা করুন, প্রত্যেকের বর্ণনা আলাদা লাইনে লিখুন"
pinnedClipId: "পিনকৃত ক্লিপের ID"
pinnedNotes: "পিন করা নোট"
hcaptcha: "hCaptcha"
enableHcaptcha: "hCaptcha চালু করুন"
hcaptchaSiteKey: "সাইট কী" hcaptchaSiteKey: "সাইট কী"
hcaptchaSecretKey: "সিক্রেট কী" hcaptchaSecretKey: "সিক্রেট কী"
recaptcha: "reCAPTCHA"
enableRecaptcha: "reCAPTCHA চালু করুন"
recaptchaSiteKey: "সাইট কী" recaptchaSiteKey: "সাইট কী"
recaptchaSecretKey: "সিক্রেট কী" recaptchaSecretKey: "সিক্রেট কী"
avoidMultiCaptchaConfirm: "একাধিক Captcha ব্যবহার করলে তারা পরস্পরের কাজে বাধা দিতে\
\ পারে। আপনি কি অন্যান্য Captcha নিষ্ক্রিয় করতে চান? আপনি 'বাতিল' ক্লিক করার মাধ্যমে\
\ একাধিক Captcha চালু রাখতে পারেন।"
antennas: "অ্যান্টেনা" antennas: "অ্যান্টেনা"
manageAntennas: "অ্যান্টেনা ব্যবস্থাপনা" manageAntennas: "অ্যান্টেনা ব্যবস্থাপনা"
name: "নাম" name: "নাম"
@ -384,7 +340,6 @@ antennaKeywordsDescription: "স্পেস দিয়ে আলাদা ক
\ লিখলে OR শর্ত তৈরি হবে।" \ লিখলে OR শর্ত তৈরি হবে।"
notifyAntenna: "নতুন নোট সম্পর্কে অবহিত করুন" notifyAntenna: "নতুন নোট সম্পর্কে অবহিত করুন"
withFileAntenna: "শুধুমাত্র ফাইলযুক্ত নোট" withFileAntenna: "শুধুমাত্র ফাইলযুক্ত নোট"
enableServiceworker: "ServiceWorker চালু করুন"
antennaUsersDescription: "প্রত্যেক লাইনে একজন ব্যবহারকারীর নাম লিখুন" antennaUsersDescription: "প্রত্যেক লাইনে একজন ব্যবহারকারীর নাম লিখুন"
caseSensitive: "ছোট হাতের এবং বড় হাতের অক্ষর নির্দিষ্ট করুন" caseSensitive: "ছোট হাতের এবং বড় হাতের অক্ষর নির্দিষ্ট করুন"
withReplies: "জবাবসমুহ যুক্ত করুন" withReplies: "জবাবসমুহ যুক্ত করুন"
@ -399,11 +354,8 @@ popularUsers: "জনপ্রিয় ব্যবহারকারীগন"
recentlyUpdatedUsers: "সম্প্রতি পোস্ট করা ব্যবহারকারীগন" recentlyUpdatedUsers: "সম্প্রতি পোস্ট করা ব্যবহারকারীগন"
recentlyRegisteredUsers: "নতুন যোগ দেওয়া ব্যবহারকারীগন" recentlyRegisteredUsers: "নতুন যোগ দেওয়া ব্যবহারকারীগন"
recentlyDiscoveredUsers: "নতুন খুঁজে পাওয়া ব্যবহারকারীগন" recentlyDiscoveredUsers: "নতুন খুঁজে পাওয়া ব্যবহারকারীগন"
exploreUsersCount: "{count} জন ব্যাবহারকারী"
exploreFediverse: "Fediverse ঘুরে দেখুন"
popularTags: "জনপ্রিয় ট্যাগগুলি" popularTags: "জনপ্রিয় ট্যাগগুলি"
userList: "লিস্ট" userList: "লিস্ট"
about: "আপনার সম্পর্কে"
aboutMisskey: "FoundKey সম্পর্কে" aboutMisskey: "FoundKey সম্পর্কে"
administrator: "প্রশাসক" administrator: "প্রশাসক"
token: "টোকেন" token: "টোকেন"
@ -423,7 +375,6 @@ share: "শেয়ার"
notFound: "পাওয়া যায়নি" notFound: "পাওয়া যায়নি"
notFoundDescription: "এই URL-এর সাথে সম্পর্কিত কোনো পৃষ্ঠা নেই।" notFoundDescription: "এই URL-এর সাথে সম্পর্কিত কোনো পৃষ্ঠা নেই।"
uploadFolder: "আপলোডের জন্য ডিফল্ট ফোল্ডার" uploadFolder: "আপলোডের জন্য ডিফল্ট ফোল্ডার"
cacheClear: "ক্যাশ পরিষ্কার করুন"
markAsReadAllNotifications: "সমস্ত বিজ্ঞপ্তিগুলি পঠিত হিসাবে চিহ্নিত করুন" markAsReadAllNotifications: "সমস্ত বিজ্ঞপ্তিগুলি পঠিত হিসাবে চিহ্নিত করুন"
markAsReadAllUnreadNotes: "সমস্ত নোটগুলি পঠিত হিসাবে চিহ্নিত করুন" markAsReadAllUnreadNotes: "সমস্ত নোটগুলি পঠিত হিসাবে চিহ্নিত করুন"
markAsReadAllTalkMessages: "সমস্ত মেসেজ পঠিত হিসাবে চিহ্নিত করুন" markAsReadAllTalkMessages: "সমস্ত মেসেজ পঠিত হিসাবে চিহ্নিত করুন"
@ -454,7 +405,6 @@ noMessagesYet: "কোন মেসেজ নেই"
newMessageExists: "নতুন মেসেজ পেয়েছেন" newMessageExists: "নতুন মেসেজ পেয়েছেন"
onlyOneFileCanBeAttached: "আপনি মেসেজের সাথে সর্বোচ্চ একটি ফাইল যুক্ত করতে পারবেন" onlyOneFileCanBeAttached: "আপনি মেসেজের সাথে সর্বোচ্চ একটি ফাইল যুক্ত করতে পারবেন"
signinRequired: "দয়া করে লগ ইন করুন" signinRequired: "দয়া করে লগ ইন করুন"
invitations: "আমন্ত্রণ"
invitationCode: "ইনভাইট কোড" invitationCode: "ইনভাইট কোড"
checking: "পরীক্ষা করা হচ্ছে..." checking: "পরীক্ষা করা হচ্ছে..."
available: "উপলব্ধ" available: "উপলব্ধ"
@ -474,7 +424,6 @@ or: "অথবা"
language: "ভাষা" language: "ভাষা"
uiLanguage: "UI এর ভাষা" uiLanguage: "UI এর ভাষা"
groupInvited: "আপনি একটি গ্রুপে আমন্ত্রিত হয়েছেন" groupInvited: "আপনি একটি গ্রুপে আমন্ত্রিত হয়েছেন"
aboutX: "{x} সম্পর্কে"
useOsNativeEmojis: "অপারেটিং সিস্টেমের নেটিভ ইমোজি ব্যবহার করুন" useOsNativeEmojis: "অপারেটিং সিস্টেমের নেটিভ ইমোজি ব্যবহার করুন"
disableDrawer: "ড্রয়ার মেনু প্রদর্শন করবেন না" disableDrawer: "ড্রয়ার মেনু প্রদর্শন করবেন না"
youHaveNoGroups: "আপনার কোন গ্রুপ নেই " youHaveNoGroups: "আপনার কোন গ্রুপ নেই "
@ -482,27 +431,19 @@ joinOrCreateGroup: "একটি বিদ্যমান গ্রুপের
noHistory: "কোনো ইতিহাস নেই" noHistory: "কোনো ইতিহাস নেই"
signinHistory: "প্রবেশ করার ইতিহাস" signinHistory: "প্রবেশ করার ইতিহাস"
disableAnimatedMfm: "অ্যানিমেটেড MFM অক্ষম করুন" disableAnimatedMfm: "অ্যানিমেটেড MFM অক্ষম করুন"
doing: "প্রক্রিয়া করছে..."
category: "বিভাগ" category: "বিভাগ"
tags: "ট‍্যাগসমূহ" tags: "ট‍্যাগসমূহ"
docSource: "ডকুমেন্টের উৎস"
createAccount: "অ্যাকাউন্ট তৈরি করুন" createAccount: "অ্যাকাউন্ট তৈরি করুন"
existingAccount: "বিদ্যমান অ্যাকাউন্ট" existingAccount: "বিদ্যমান অ্যাকাউন্ট"
regenerate: "আবারও তৈরি করুন"
fontSize: "ফন্টের আকার" fontSize: "ফন্টের আকার"
noFollowRequests: "আপনার কোন ফলোও রিকুয়েস্ট নেই" noFollowRequests: "আপনার কোন ফলোও রিকুয়েস্ট নেই"
openImageInNewTab: "ছবি নতুন ট্যাবে খুলুন" openImageInNewTab: "ছবি নতুন ট্যাবে খুলুন"
dashboard: "ড্যাশবোর্ড" dashboard: "ড্যাশবোর্ড"
local: "স্থানীয়" local: "স্থানীয়"
remote: "রিমোট" remote: "রিমোট"
total: "মোট"
weekOverWeekChanges: "গত সপ্তাহে"
dayOverDayChanges: "গতকাল" dayOverDayChanges: "গতকাল"
appearance: "অবয়ব" appearance: "অবয়ব"
clientSettings: "ক্লায়েন্ট সেটিংস" clientSettings: "ক্লায়েন্ট সেটিংস"
accountSettings: "অ্যাকাউন্ট সেটিংস"
numberOfDays: "দিনের সংখ্যা"
hideThisNote: "নোটটি লুকান"
showFeaturedNotesInTimeline: "টাইমলাইনে সুপারিশকৃত নোটগুলি দেখান" showFeaturedNotesInTimeline: "টাইমলাইনে সুপারিশকৃত নোটগুলি দেখান"
objectStorage: "অবজেক্ট স্টোরেজ" objectStorage: "অবজেক্ট স্টোরেজ"
useObjectStorage: "অবজেক্ট স্টোরেজ ব্যাবহার করুন" useObjectStorage: "অবজেক্ট স্টোরেজ ব্যাবহার করুন"
@ -526,8 +467,6 @@ objectStorageUseProxy: "Proxy ব্যাবহার করুন"
objectStorageUseProxyDesc: "আপনি API সংযোগের জন্য proxy ব্যবহার না করলে, এটি বন্ধ\ objectStorageUseProxyDesc: "আপনি API সংযোগের জন্য proxy ব্যবহার না করলে, এটি বন্ধ\
\ করুন।" \ করুন।"
objectStorageSetPublicRead: "আপলোডের উপর ''public-read' সেট করুন" objectStorageSetPublicRead: "আপলোডের উপর ''public-read' সেট করুন"
serverLogs: "সার্ভার লগ"
deleteAll: "সব মুছুন"
showFixedPostForm: "টাইমলাইনের শীর্ষে পোস্ট করার ফর্মটি দেখান" showFixedPostForm: "টাইমলাইনের শীর্ষে পোস্ট করার ফর্মটি দেখান"
newNoteRecived: "নতুন নোট আছে" newNoteRecived: "নতুন নোট আছে"
sounds: "শব্দ" sounds: "শব্দ"
@ -538,7 +477,6 @@ popout: "পপ-আউট"
volume: "আওয়াজের মাত্রা" volume: "আওয়াজের মাত্রা"
masterVolume: "মাস্টার আওয়াজের মাত্রা" masterVolume: "মাস্টার আওয়াজের মাত্রা"
details: "আরও জানুন" details: "আরও জানুন"
chooseEmoji: "ইমোজি নির্বাচন করুন"
unableToProcess: "কাজটি সম্পন্ন করা যায়নি" unableToProcess: "কাজটি সম্পন্ন করা যায়নি"
recentUsed: "সম্প্রতি ব্যবহৃত" recentUsed: "সম্প্রতি ব্যবহৃত"
install: "ইন্সটল" install: "ইন্সটল"
@ -556,9 +494,7 @@ scratchpadDescription: "স্ক্র্যাচপ্যাড AiScript-এ
\ করে। আপনি মিস্কির সাথে ইন্টারঅ্যাক্ট করে এমন কোড লিখতে, চালাতে এবং তার ফলাফল দেখতে\ \ করে। আপনি মিস্কির সাথে ইন্টারঅ্যাক্ট করে এমন কোড লিখতে, চালাতে এবং তার ফলাফল দেখতে\
\ পারেন।" \ পারেন।"
output: "আউটপুট" output: "আউটপুট"
script: "স্ক্রিপ্ট"
updateRemoteUser: "রিমোট ব্যবহারকারীর তথ্য আপডেট করুন" updateRemoteUser: "রিমোট ব্যবহারকারীর তথ্য আপডেট করুন"
deleteAllFiles: "সকল ফাইল ডিলিট করুন"
deleteAllFilesConfirm: "সকল ফাইল ডিলিট করতে চান?" deleteAllFilesConfirm: "সকল ফাইল ডিলিট করতে চান?"
removeAllFollowing: "সকল অনুসরণ বাতিল করুন" removeAllFollowing: "সকল অনুসরণ বাতিল করুন"
removeAllFollowingDescription: "{host} এর সকল ব্যাবহারকারীকে আর ফলোও করবেন না । যদি\ removeAllFollowingDescription: "{host} এর সকল ব্যাবহারকারীকে আর ফলোও করবেন না । যদি\
@ -576,10 +512,7 @@ addItem: "আইটেম যোগ করুন"
relays: "রিলেগুলি" relays: "রিলেগুলি"
addRelay: "রিলে যোগ করুন" addRelay: "রিলে যোগ করুন"
inboxUrl: "inbox এর URL" inboxUrl: "inbox এর URL"
addedRelays: "যোগকৃত রিলেগুলি"
serviceworkerInfo: "পুশ বিজ্ঞপ্তির জন্য চালু করা লাগবে।"
deletedNote: "ডিলিট করা নোট" deletedNote: "ডিলিট করা নোট"
invisibleNote: "অদৃশ্য নোট"
enableInfiniteScroll: "ইনফিনিট স্ক্রল চালু করুন" enableInfiniteScroll: "ইনফিনিট স্ক্রল চালু করুন"
visibility: "দৃশ্যমানতা" visibility: "দৃশ্যমানতা"
poll: "জরিপ" poll: "জরিপ"
@ -589,15 +522,12 @@ disablePlayer: "ভিডিও প্লেয়ার বন্ধ করুন"
themeEditor: "থিম সম্পাদক" themeEditor: "থিম সম্পাদক"
description: "বর্ণনা" description: "বর্ণনা"
describeFile: "ক্যাপশন যোগ করুন" describeFile: "ক্যাপশন যোগ করুন"
enterFileDescription: "ক্যাপশন যোগ করুন"
author: "লেখক" author: "লেখক"
leaveConfirm: "কিছু পরিবর্তন সেভ করা হয়নি। আপনি কি চলে যেতে চান?" leaveConfirm: "কিছু পরিবর্তন সেভ করা হয়নি। আপনি কি চলে যেতে চান?"
manage: "পরিচালনা" manage: "পরিচালনা"
plugins: "প্লাগইনসমূহ" plugins: "প্লাগইনসমূহ"
deck: "ডেক" deck: "ডেক"
undeck: "ডেকমুক্ত করুন"
useBlurEffectForModal: "মোডালের জন্য ব্লার ইফেক্ট ব্যবহার করুন" useBlurEffectForModal: "মোডালের জন্য ব্লার ইফেক্ট ব্যবহার করুন"
useFullReactionPicker: "সম্পূর্ণ বৈশিষ্ট্যযুক্ত রিঅ্যাকশন পিকার ব্যবহার করুন"
width: "প্রস্থ" width: "প্রস্থ"
height: "উচ্চতা" height: "উচ্চতা"
large: "বড়" large: "বড়"
@ -609,7 +539,6 @@ enableAll: "সবগুলি সক্রিয় করুন"
disableAll: "সবগুলি নিষ্ক্রিয় করুন" disableAll: "সবগুলি নিষ্ক্রিয় করুন"
tokenRequested: "অ্যাকাউন্টে অ্যাক্সেস প্রদান করবেন" tokenRequested: "অ্যাকাউন্টে অ্যাক্সেস প্রদান করবেন"
pluginTokenRequestedDescription: "এই প্লাগইনটি এখানে দেওয়া অনুমুতিসমূহ ব্যাবহার করবে" pluginTokenRequestedDescription: "এই প্লাগইনটি এখানে দেওয়া অনুমুতিসমূহ ব্যাবহার করবে"
notificationType: "বিজ্ঞপ্তির ধরন"
edit: "সম্পাদনা" edit: "সম্পাদনা"
useStarForReactionFallback: "রিঅ্যাকশনের ইমোজি না জানলে ★ ব্যবহার করুন" useStarForReactionFallback: "রিঅ্যাকশনের ইমোজি না জানলে ★ ব্যবহার করুন"
emailServer: "ইমেইল সার্ভার" emailServer: "ইমেইল সার্ভার"
@ -637,10 +566,7 @@ userSaysSomething: "{name} কিছু বলেছে"
makeActive: "সক্রিয় করা" makeActive: "সক্রিয় করা"
display: "প্রদর্শন" display: "প্রদর্শন"
copy: "অনুলিপি" copy: "অনুলিপি"
metrics: "মেট্রিক্স"
overview: "সারাংশ" overview: "সারাংশ"
logs: "লগ"
delayed: "দেরি করুন"
database: "ডেটাবেজ" database: "ডেটাবেজ"
channel: "চ্যানেলগুলি" channel: "চ্যানেলগুলি"
create: "তৈরি করুন" create: "তৈরি করুন"
@ -658,7 +584,6 @@ setMultipleBySeparatingWithSpace: "আপনি একটি স্পেস দ
\ দিতে পারেন।" \ দিতে পারেন।"
fileIdOrUrl: "ফাইল ID অথবা URL" fileIdOrUrl: "ফাইল ID অথবা URL"
behavior: "আচরণ" behavior: "আচরণ"
sample: "উদাহরণ"
abuseReports: "অভিযোগ" abuseReports: "অভিযোগ"
reportAbuse: "অভিযোগ" reportAbuse: "অভিযোগ"
reportAbuseOf: "{name} এ অভিযোগ করুন" reportAbuseOf: "{name} এ অভিযোগ করুন"
@ -673,13 +598,8 @@ forwardReportIsAnonymous: "আপনার তথ্য রিমোট ইন
send: "পাঠান" send: "পাঠান"
abuseMarkAsResolved: "অভিযোগটিকে সমাধাকৃত হিসাবে চিহ্নিত করুন" abuseMarkAsResolved: "অভিযোগটিকে সমাধাকৃত হিসাবে চিহ্নিত করুন"
openInNewTab: "নতুন ট্যাবে খুলুন" openInNewTab: "নতুন ট্যাবে খুলুন"
openInSideView: "সাইড ভিউতে খুলুন"
defaultNavigationBehaviour: "ডিফল্ট নেভিগেশন" defaultNavigationBehaviour: "ডিফল্ট নেভিগেশন"
editTheseSettingsMayBreakAccount: "এসব সেটিংস সম্পাদনা করলে আপনার অ্যাকাউন্টের ক্ষতি\
\ হতে পারে। "
instanceTicker: "ইন্সত্যান্সে নোটের তথ্য" instanceTicker: "ইন্সত্যান্সে নোটের তথ্য"
waitingFor: "{x} এর জন্য অপেক্ষা করা হচ্ছে"
random: "র‍্যান্ডম"
system: "সিস্টেম" system: "সিস্টেম"
switchUi: "UI পরিবর্তন করুন" switchUi: "UI পরিবর্তন করুন"
desktop: "ডেস্কটপ" desktop: "ডেস্কটপ"
@ -718,7 +638,6 @@ loadRawImages: "সংযুক্ত ছবির থাম্বনেইল
disableShowingAnimatedImages: "অ্যানিমেটেড চিত্র দেখানো বন্ধ করুন" disableShowingAnimatedImages: "অ্যানিমেটেড চিত্র দেখানো বন্ধ করুন"
verificationEmailSent: "নিশ্চিতকরণ ইমেল পাঠানো হয়েছে। সেটআপ সম্পূর্ণ করতে ইমেল এর\ verificationEmailSent: "নিশ্চিতকরণ ইমেল পাঠানো হয়েছে। সেটআপ সম্পূর্ণ করতে ইমেল এর\
\ লিঙ্ক অনুসরণ করুন।" \ লিঙ্ক অনুসরণ করুন।"
notSet: "সেট করা হয়নি"
emailVerified: "ইমেইল নিশ্চিত করা হয়েছে" emailVerified: "ইমেইল নিশ্চিত করা হয়েছে"
noteFavoritesCount: "পছন্দ করা নোটের সংখ্যা" noteFavoritesCount: "পছন্দ করা নোটের সংখ্যা"
pageLikesCount: "পেজ লাইক করেছেন" pageLikesCount: "পেজ লাইক করেছেন"
@ -726,8 +645,6 @@ pageLikedCount: "পেজ লাইক পেয়েছেন"
contact: "পরিচিতি সমূহ" contact: "পরিচিতি সমূহ"
useSystemFont: "সিস্টেম ফন্ট ব্যাবহার করুন" useSystemFont: "সিস্টেম ফন্ট ব্যাবহার করুন"
clips: "ক্লিপগুলি " clips: "ক্লিপগুলি "
experimentalFeatures: "পরীক্ষামূলক বৈশিষ্ট্যগুলি"
developer: "ডেভেলপার"
makeExplorable: "অ্যাকাউন্ট \"ঘুরে দেখুন\" পৃষ্ঠায় দেখান" makeExplorable: "অ্যাকাউন্ট \"ঘুরে দেখুন\" পৃষ্ঠায় দেখান"
makeExplorableDescription: "আপনি এটি বন্ধ করলে, আপনার অ্যাকাউন্ট \"ঘুরে দেখুন\" পৃষ্ঠায়\ makeExplorableDescription: "আপনি এটি বন্ধ করলে, আপনার অ্যাকাউন্ট \"ঘুরে দেখুন\" পৃষ্ঠায়\
\ প্রদর্শিত হবে না।" \ প্রদর্শিত হবে না।"
@ -740,28 +657,16 @@ narrow: "সংকীর্ণ"
reloadToApplySetting: "পৃষ্ঠাটি রিলোড করার পর সেটিংসটি প্রয়োগ করা হবে। আপনি কি এখন\ reloadToApplySetting: "পৃষ্ঠাটি রিলোড করার পর সেটিংসটি প্রয়োগ করা হবে। আপনি কি এখন\
\ রিলোড করতে চান?" \ রিলোড করতে চান?"
needReloadToApply: "পৃষ্ঠাটি রিলোড করার পর সেটিংসটি প্রয়োগ করা হবে।" needReloadToApply: "পৃষ্ঠাটি রিলোড করার পর সেটিংসটি প্রয়োগ করা হবে।"
showTitlebar: "টাইটেল বার দেখান"
clearCache: "ক্যাশ পরিষ্কার করুন" clearCache: "ক্যাশ পরিষ্কার করুন"
onlineUsersCount: "{n} জন ব্যাবহারকারী অনলাইন" onlineUsersCount: "{n} জন ব্যাবহারকারী অনলাইন"
nUsers: "{n} জন ব্যাবহারকারী"
nNotes: "{n} টি নোট"
myTheme: "আমার থিম"
backgroundColor: "পটভূমির রং" backgroundColor: "পটভূমির রং"
accentColor: "এক্সেন্টের রং" accentColor: "এক্সেন্টের রং"
textColor: "লেখার রং" textColor: "লেখার রং"
saveAs: "এইরূপে সংরক্ষণ করুন" saveAs: "এইরূপে সংরক্ষণ করুন"
advanced: "উন্নত"
value: "মান"
createdAt: "তৈরি হয়েছে" createdAt: "তৈরি হয়েছে"
updatedAt: "শেষ হালনাগাদ হয়েছে" updatedAt: "শেষ হালনাগাদ হয়েছে"
saveConfirm: "পরিবর্তনগুলি সংরক্ষণ করতে চান?"
deleteConfirm: "আসলেই মুছে ফেলতে চান?" deleteConfirm: "আসলেই মুছে ফেলতে চান?"
invalidValue: "অগ্রহণযোগ্য মান"
registry: "রেজিস্ট্রি"
closeAccount: "অ্যাকাউন্ট বন্ধ করুন" closeAccount: "অ্যাকাউন্ট বন্ধ করুন"
currentVersion: "বর্তমান সংস্করণ"
latestVersion: "সর্বশেষ সংস্করণ"
youAreRunningUpToDateClient: "আপনি সবচেয়ে নতুন ক্লায়েন্ট ব্যাবহার করছেন"
newVersionOfClientAvailable: "আপনার ক্লায়েন্টের একটি নতুন ভার্সন চলে এসেছে" newVersionOfClientAvailable: "আপনার ক্লায়েন্টের একটি নতুন ভার্সন চলে এসেছে"
usageAmount: "ব্যাবহার" usageAmount: "ব্যাবহার"
capacity: "ধারণক্ষমতা" capacity: "ধারণক্ষমতা"
@ -771,11 +676,9 @@ apply: "প্রয়োগ করুন"
receiveAnnouncementFromInstance: "এই ইন্সট্যান্স থেকে বিজ্ঞপ্তি পান" receiveAnnouncementFromInstance: "এই ইন্সট্যান্স থেকে বিজ্ঞপ্তি পান"
emailNotification: "ইমেইল বিজ্ঞপ্তি" emailNotification: "ইমেইল বিজ্ঞপ্তি"
publish: "প্রকাশ" publish: "প্রকাশ"
inChannelSearch: "চ্যানেলে খুঁজুন"
useReactionPickerForContextMenu: "রাইট ক্লিকের মাধ্যমে রিঅ্যাকশন পিকার খুলুন" useReactionPickerForContextMenu: "রাইট ক্লিকের মাধ্যমে রিঅ্যাকশন পিকার খুলুন"
typingUsers: "{users} লেখছে" typingUsers: "{users} লেখছে"
jumpToSpecifiedDate: "একটি নির্দিষ্ট তারিখে যান" jumpToSpecifiedDate: "একটি নির্দিষ্ট তারিখে যান"
showingPastTimeline: "অতীতের টাইমলাইন দেখানো হচ্ছে"
clear: "পরিষ্কার" clear: "পরিষ্কার"
markAllAsRead: "সব পঠিত হিসেবে চিহ্নিত করুন" markAllAsRead: "সব পঠিত হিসেবে চিহ্নিত করুন"
goBack: "পিছনে" goBack: "পিছনে"
@ -790,7 +693,6 @@ notSpecifiedMentionWarning: "প্রাপক ছাড়াও এই নোট
info: "আপনার সম্পর্কে" info: "আপনার সম্পর্কে"
userInfo: "ব্যবহারকারীর তথ্য" userInfo: "ব্যবহারকারীর তথ্য"
unknown: "অজানা" unknown: "অজানা"
onlineStatus: "অনলাইন স্ট্যাটাস"
hideOnlineStatus: "অনলাইন স্ট্যাটাস লুকান" hideOnlineStatus: "অনলাইন স্ট্যাটাস লুকান"
hideOnlineStatusDescription: "অনলাইন স্ট্যাটাস লুকিয়ে রাখলে সার্চের মতো কিছু ফাংশনের\ hideOnlineStatusDescription: "অনলাইন স্ট্যাটাস লুকিয়ে রাখলে সার্চের মতো কিছু ফাংশনের\
\ সুবিধা কমে যায়।" \ সুবিধা কমে যায়।"
@ -817,22 +719,13 @@ gallery: "গ্যালারী"
recentPosts: "নতুন পোস্ট" recentPosts: "নতুন পোস্ট"
popularPosts: "জনপ্রিয় পোস্ট" popularPosts: "জনপ্রিয় পোস্ট"
shareWithNote: "নোটের মাধ্যমে শেয়ার করুন" shareWithNote: "নোটের মাধ্যমে শেয়ার করুন"
expiration: "নির্দিষ্ট সময়সীমা"
memo: "মেমো"
priority: "অগ্রাধিকার"
high: "উচ্চ"
middle: "মাঝারি"
low: "নিম্ন"
emailNotConfiguredWarning: "ইমেইল অ্যাড্রেস সেট করা হয়নি।" emailNotConfiguredWarning: "ইমেইল অ্যাড্রেস সেট করা হয়নি।"
ratio: "অনুপাত" ratio: "অনুপাত"
previewNoteText: "প্রিভিউ দেখান" previewNoteText: "প্রিভিউ দেখান"
customCss: "কাস্টম CSS" customCss: "কাস্টম CSS"
customCssWarn: "এই ব্যাপারে অভিজ্ঞতা না থাকলে এই সেটিংটি ব্যাবহার করবেন না। অনুপযুক্ত\ customCssWarn: "এই ব্যাপারে অভিজ্ঞতা না থাকলে এই সেটিংটি ব্যাবহার করবেন না। অনুপযুক্ত\
\ সেটিংস ক্লায়েন্টকে স্বাভাবিকভাবে ব্যবহার করতে বাধা দিতে পারে।" \ সেটিংস ক্লায়েন্টকে স্বাভাবিকভাবে ব্যবহার করতে বাধা দিতে পারে।"
global: "গ্লোবাল"
squareAvatars: "চারকোনা প্রোফাইল পিকচার দেখান " squareAvatars: "চারকোনা প্রোফাইল পিকচার দেখান "
sent: "পাঠান"
received: "প্রাপ্ত"
searchResult: "অনুসন্ধানের ফলাফল" searchResult: "অনুসন্ধানের ফলাফল"
hashtags: "হ্যাশট্যাগ" hashtags: "হ্যাশট্যাগ"
troubleshooting: "ট্রাবলশুটিং" troubleshooting: "ট্রাবলশুটিং"
@ -923,9 +816,6 @@ _accountDelete:
requestAccountDelete: "অ্যাকাউন্ট মুছে ফেলার অনুরোধ করুন" requestAccountDelete: "অ্যাকাউন্ট মুছে ফেলার অনুরোধ করুন"
started: "মুছে ফেলার প্রক্রিয়া শুরু হয়েছে।" started: "মুছে ফেলার প্রক্রিয়া শুরু হয়েছে।"
inProgress: "মুছে ফেলার কাজ চলছে" inProgress: "মুছে ফেলার কাজ চলছে"
_ad:
back: "পিছনে"
reduceFrequencyOfThisAd: "এই বিজ্ঞাপনটি কম দেখান"
_forgotPassword: _forgotPassword:
enterEmail: "আপনি আপনার অ্যাকাউন্টের জন্য নিবন্ধিত ইমেল ঠিকানা লিখুন. সেই ঠিকানায়\ enterEmail: "আপনি আপনার অ্যাকাউন্টের জন্য নিবন্ধিত ইমেল ঠিকানা লিখুন. সেই ঠিকানায়\
\ একটি পাসওয়ার্ড রিসেট লিঙ্ক পাঠানো হবে।" \ একটি পাসওয়ার্ড রিসেট লিঙ্ক পাঠানো হবে।"
@ -946,7 +836,6 @@ _email:
_plugin: _plugin:
install: "প্লাগইন ইন্সটল করুন" install: "প্লাগইন ইন্সটল করুন"
installWarn: "অবিশ্বস্ত প্লাগইন ইনস্টল করবেন না।" installWarn: "অবিশ্বস্ত প্লাগইন ইনস্টল করবেন না।"
manage: "প্লাগইন ম্যানেজ করুন"
_registry: _registry:
scope: "স্কোপ" scope: "স্কোপ"
key: "কী" key: "কী"
@ -955,10 +844,8 @@ _registry:
createKey: "কী বানান" createKey: "কী বানান"
_aboutMisskey: _aboutMisskey:
about: "FoundKey, একটি ওপেন সোর্স সফ্টওয়্যার যা 2014 সাল থেকে syuilo তৈরি করছেন।" about: "FoundKey, একটি ওপেন সোর্স সফ্টওয়্যার যা 2014 সাল থেকে syuilo তৈরি করছেন।"
contributors: "প্রধান কন্ট্রিবিউটারগণ"
allContributors: "সকল কন্ট্রিবিউটারগণ" allContributors: "সকল কন্ট্রিবিউটারগণ"
source: "সোর্স কোড" source: "সোর্স কোড"
translation: "FoundKey অনুবাদ করুন"
_nsfw: _nsfw:
respect: "স্পর্শকাতর মিডিয়া লুকান" respect: "স্পর্শকাতর মিডিয়া লুকান"
ignore: "স্পর্শকাতর মিডিয়া লুকাবেন না" ignore: "স্পর্শকাতর মিডিয়া লুকাবেন না"
@ -1085,69 +972,6 @@ _theme:
alreadyInstalled: "এই থিমটি ইতিমধ্যে ইন্সটল করা হয়েছে" alreadyInstalled: "এই থিমটি ইতিমধ্যে ইন্সটল করা হয়েছে"
invalid: "থিমটির ফরম্যাট সঠিক নয়" invalid: "থিমটির ফরম্যাট সঠিক নয়"
make: "থিম বানান" make: "থিম বানান"
base: "বেস"
addConstant: "ধ্রুবক যোগ করুন"
constant: "ধ্রুবক"
defaultValue: "ডিফল্ট মান"
color: "রং"
refProp: "প্রোপার্টি রেফারেন্স করুন"
refConst: "ধ্রুবক রেফারেন্স করুন"
key: "কী"
func: "ফাংশন"
funcKind: "ফাংশনের ধরন"
argument: "আর্গুমেন্ট"
basedProp: "রেফারেন্স করা প্রোপার্টি"
alpha: "অস্বচ্ছতা"
darken: "অন্ধকার করুন"
lighten: "উজ্জ্বল করুন"
inputConstantName: "ধ্রুবকটির নাম লিখুন"
importInfo: "আপনি এখানে থিম কোড পেস্ট করতে পারেন এবং সেটিকে এডিটরে ইম্পোর্ট করতে\
\ পারেন"
deleteConstantConfirm: "আপনি কি ধ্রুবক {const} মুছে ফেলতে চান?"
keys:
accent: "অ্যাকসেন্ট"
bg: "পটভূমি"
fg: "লেখা"
focus: "ফোকাস"
indicator: "ইনডিকেটর"
panel: "প্যানেল"
shadow: "ছায়া"
header: "হেডার"
navBg: "সাইডবারের পটভূমি"
navFg: "সাইডবারের পাঠ্য"
navHoverFg: "সাইডবারের পাঠ্য (হভার)"
navActive: "সাইডবারের পাঠ্য (অ্যাকটিভ)"
navIndicator: "সাইডবারের ইনডিকেটর"
link: "লিংক"
hashtag: "হ্যাশট্যাগ"
mention: "উল্লেখ"
mentionMe: "আপনাকে উল্লেখ্য করা"
renote: "রিনোট"
modalBg: "মোডালের পটভূমি"
divider: "খন্ডক"
scrollbarHandle: "স্ক্রলবার হ্যান্ডেল"
scrollbarHandleHover: "স্ক্রলবার হ্যান্ডেল (হভার)"
dateLabelFg: "তারিখ লেবেলের পাঠ্য"
infoBg: "তথ্যের পটভূমি"
infoFg: "তথ্যের পাঠ্য"
infoWarnBg: "ওয়ার্নিং এর পটভূমি"
infoWarnFg: "ওয়ার্নিং এর পাঠ্য"
cwBg: "CW বাটনের পটভূমি"
cwFg: "CW বাটনের পাঠ্য"
cwHoverBg: "CW বাটনের পটভূমি (হভার)"
toastBg: "বিজ্ঞপ্তির পটভূমি"
toastFg: "বিজ্ঞপ্তির পাঠ্য"
buttonBg: "বাটনের পটভূমি"
buttonHoverBg: "বাটনের পটভূমি (হভার)"
inputBorder: "ইনপুট ফিল্ডের বর্ডার"
listItemHoverBg: "লিস্ট আইটেমের পটভূমি (হোভার)"
driveFolderBg: "ড্রাইভ ফোল্ডারের পটভূমি"
wallpaperOverlay: "ওয়ালপেপার ওভারলে"
badge: "ব্যাজ"
messageBg: "চ্যাটের পটভূমি"
accentDarken: "অ্যাকসেন্ট (গাঢ়)"
accentLighten: "অ্যাকসেন্ট (হাল্কা)"
fgHighlighted: "হাইলাইট করা পাঠ্য"
_sfx: _sfx:
note: "নোটগুলি" note: "নোটগুলি"
noteMy: "নোট (আপনার)" noteMy: "নোট (আপনার)"
@ -1427,7 +1251,6 @@ _relayStatus:
accepted: "অনুমোদিত" accepted: "অনুমোদিত"
rejected: "প্রত্যাখিত" rejected: "প্রত্যাখিত"
_notification: _notification:
fileUploaded: "ফাইল সফলভাবে আপলোড করা হয়েছে"
youGotMention: "{name} আপনাকে উল্লেখ্য করেছে" youGotMention: "{name} আপনাকে উল্লেখ্য করেছে"
youGotReply: "{name} আপনাকে জবাব দিয়েছে" youGotReply: "{name} আপনাকে জবাব দিয়েছে"
youGotQuote: "{name} আপনাকে উদ্ধৃত করেছে" youGotQuote: "{name} আপনাকে উদ্ধৃত করেছে"
@ -1442,7 +1265,6 @@ _notification:
pollEnded: "পোলের ফলাফল দেখা যাবে" pollEnded: "পোলের ফলাফল দেখা যাবে"
emptyPushNotificationMessage: "আপডেট করা পুশ বিজ্ঞপ্তি" emptyPushNotificationMessage: "আপডেট করা পুশ বিজ্ঞপ্তি"
_types: _types:
all: "সকল"
follow: "অনুসরণ করা হচ্ছে" follow: "অনুসরণ করা হচ্ছে"
mention: "উল্লেখ" mention: "উল্লেখ"
reply: "উত্তর দিন" reply: "উত্তর দিন"

View file

@ -14,7 +14,6 @@ fetchingAsApObject: "Cercant en el Fediverse..."
ok: "OK" ok: "OK"
gotIt: "Ho he entès!" gotIt: "Ho he entès!"
cancel: "Cancel·lar" cancel: "Cancel·lar"
enterUsername: "Introdueix el teu nom d'usuari"
renotedBy: "Resignat per {usuari}" renotedBy: "Resignat per {usuari}"
noNotes: "Cap nota" noNotes: "Cap nota"
noNotifications: "Cap notificació" noNotifications: "Cap notificació"
@ -30,16 +29,12 @@ login: "Iniciar sessió"
loggingIn: "Identificant-se" loggingIn: "Identificant-se"
logout: "Tancar la sessió" logout: "Tancar la sessió"
signup: "Registrar-se" signup: "Registrar-se"
uploading: "Pujant..."
save: "Desar" save: "Desar"
users: "Usuaris" users: "Usuaris"
addUser: "Afegir un usuari" addUser: "Afegir un usuari"
favorite: "Afegir a preferits" favorite: "Afegir a preferits"
favorites: "Favorits" favorites: "Favorits"
unfavorite: "Eliminar dels preferits" unfavorite: "Eliminar dels preferits"
favorited: "Afegit als preferits."
alreadyFavorited: "Ja s'ha afegit als preferits."
cantFavorite: "No s'ha pogut afegir als preferits."
pin: "Fixar al perfil" pin: "Fixar al perfil"
unpin: "Para de fixar del perfil" unpin: "Para de fixar del perfil"
copyContent: "Copiar el contingut" copyContent: "Copiar el contingut"
@ -51,7 +46,6 @@ deleteAndEditConfirm: "Estàs segur que vols suprimir aquesta nota i editar-la?
addToList: "Afegir a una llista" addToList: "Afegir a una llista"
sendMessage: "Enviar un missatge" sendMessage: "Enviar un missatge"
copyUsername: "Copiar nom d'usuari" copyUsername: "Copiar nom d'usuari"
searchUser: "Cercar usuaris"
reply: "Respondre" reply: "Respondre"
loadMore: "Carregar més" loadMore: "Carregar més"
showMore: "Veure més" showMore: "Veure més"
@ -73,7 +67,6 @@ exportRequested: "Has sol·licitat una exportació. Això pot trigar una estona.
\ a la teva unitat un cop completat." \ a la teva unitat un cop completat."
importRequested: "Has sol·licitat una importació. Això pot trigar una estona." importRequested: "Has sol·licitat una importació. Això pot trigar una estona."
lists: "Llistes" lists: "Llistes"
noLists: "No tens cap llista"
note: "Nota" note: "Nota"
notes: "Notes" notes: "Notes"
following: "Seguint" following: "Seguint"
@ -100,29 +93,21 @@ followRequest: "Enviar la sol·licitud de seguiment"
followRequests: "Sol·licituds de seguiment" followRequests: "Sol·licituds de seguiment"
unfollow: "Deixar de seguir" unfollow: "Deixar de seguir"
followRequestPending: "Sol·licituds de seguiment pendents" followRequestPending: "Sol·licituds de seguiment pendents"
enterEmoji: "Introduir un emoji"
renote: "Renotar" renote: "Renotar"
unrenote: "Anul·lar renota" unrenote: "Anul·lar renota"
renoted: "Renotat."
cantRenote: "Aquesta publicació no pot ser renotada."
cantReRenote: "Impossible renotar una renota."
quote: "Citar" quote: "Citar"
pinnedNote: "Nota fixada" pinnedNote: "Nota fixada"
pinned: "Fixar al perfil"
you: "Tu" you: "Tu"
clickToShow: "Fes clic per mostrar" clickToShow: "Fes clic per mostrar"
sensitive: "NSFW" sensitive: "NSFW"
add: "Afegir" add: "Afegir"
reaction: "Reaccions" reaction: "Reaccions"
reactionSetting: "Reaccions a mostrar al selector de reaccions"
reactionSettingDescription2: "Arrossega per reordenar, fes clic per suprimir, prem\ reactionSettingDescription2: "Arrossega per reordenar, fes clic per suprimir, prem\
\ \"+\" per afegir." \ \"+\" per afegir."
attachCancel: "Eliminar el fitxer adjunt" attachCancel: "Eliminar el fitxer adjunt"
markAsSensitive: "Marcar com a NSFW" markAsSensitive: "Marcar com a NSFW"
instances: "Instàncies"
remove: "Eliminar" remove: "Eliminar"
nsfw: "NSFW" nsfw: "NSFW"
pinnedNotes: "Nota fixada"
userList: "Llistes" userList: "Llistes"
smtpUser: "Nom d'usuari" smtpUser: "Nom d'usuari"
smtpPass: "Contrasenya" smtpPass: "Contrasenya"
@ -134,10 +119,7 @@ _mfm:
mention: "Menció" mention: "Menció"
quote: "Citar" quote: "Citar"
search: "Cercar" search: "Cercar"
_theme: _theme: {}
keys:
mention: "Menció"
renote: "Renotar"
_sfx: _sfx:
note: "Notes" note: "Notes"
notification: "Notificacions" notification: "Notificacions"

View file

@ -14,7 +14,6 @@ fetchingAsApObject: "Načítám data z Fediversu..."
ok: "Potvrdit" ok: "Potvrdit"
gotIt: "Rozumím!" gotIt: "Rozumím!"
cancel: "Zrušit" cancel: "Zrušit"
enterUsername: "Zadej uživatelské jméno"
renotedBy: "{user} přeposla/a" renotedBy: "{user} přeposla/a"
noNotes: "Žádné poznámky" noNotes: "Žádné poznámky"
noNotifications: "Žádná oznámení" noNotifications: "Žádná oznámení"
@ -30,16 +29,12 @@ login: "Přihlásit se"
loggingIn: "Probíhá přihlašování" loggingIn: "Probíhá přihlašování"
logout: "Odhlásit" logout: "Odhlásit"
signup: "Registrace" signup: "Registrace"
uploading: "Nahrávám"
save: "Uložit" save: "Uložit"
users: "Uživatelé" users: "Uživatelé"
addUser: "Přidat uživatele" addUser: "Přidat uživatele"
favorite: "Oblíbené" favorite: "Oblíbené"
favorites: "Oblíbené" favorites: "Oblíbené"
unfavorite: "Odebrat z oblízených" unfavorite: "Odebrat z oblízených"
favorited: "Přidáno do oblíbených"
alreadyFavorited: "Už je mezi oblíbenými"
cantFavorite: "Nepodařilo se přidat mezi oblíbené."
pin: "Připnout" pin: "Připnout"
unpin: "Odepnout" unpin: "Odepnout"
copyContent: "Zkopírovat obsah" copyContent: "Zkopírovat obsah"
@ -51,7 +46,6 @@ deleteAndEditConfirm: "Jste si jistí že chcete smazat tuto poznámku a editova
addToList: "Přidat do seznamu" addToList: "Přidat do seznamu"
sendMessage: "Odeslat zprávu" sendMessage: "Odeslat zprávu"
copyUsername: "Kopírovat uživatelské jméno" copyUsername: "Kopírovat uživatelské jméno"
searchUser: "Vyhledat uživatele"
reply: "Odpovědět" reply: "Odpovědět"
loadMore: "Zobrazit více" loadMore: "Zobrazit více"
showMore: "Zobrazit více" showMore: "Zobrazit více"
@ -72,7 +66,6 @@ exportRequested: "Požádali jste o export. To může chvíli trvat. Přidáme h
\ Disk až bude dokončen." \ Disk až bude dokončen."
importRequested: "Požádali jste o export. To může chvilku trvat." importRequested: "Požádali jste o export. To může chvilku trvat."
lists: "Seznamy" lists: "Seznamy"
noLists: "Nemáte žádné seznamy"
note: "Poznámka" note: "Poznámka"
notes: "Poznámky" notes: "Poznámky"
following: "Sledovaní" following: "Sledovaní"
@ -96,15 +89,10 @@ followRequest: "Odeslat žádost o sledování"
followRequests: "Žádosti o sledování" followRequests: "Žádosti o sledování"
unfollow: "Přestat sledovat" unfollow: "Přestat sledovat"
followRequestPending: "Čekající žádosti o sledování" followRequestPending: "Čekající žádosti o sledování"
enterEmoji: "Vložte emoji"
renote: "Přeposlat" renote: "Přeposlat"
unrenote: "Zrušit přeposlání" unrenote: "Zrušit přeposlání"
renoted: "Přeposláno"
cantRenote: "Tento příspěvek nelze přeposlat."
cantReRenote: "Odpověď nemůže být odstraněna."
quote: "Citovat" quote: "Citovat"
pinnedNote: "Připnutá poznámka" pinnedNote: "Připnutá poznámka"
pinned: "Připnout"
you: "Vy" you: "Vy"
clickToShow: "Klikněte pro zobrazení" clickToShow: "Klikněte pro zobrazení"
sensitive: "NSFW" sensitive: "NSFW"
@ -134,10 +122,7 @@ editWidgetsExit: "Hotovo"
customEmojis: "Vlastní emoji" customEmojis: "Vlastní emoji"
emoji: "Emoji" emoji: "Emoji"
emojis: "Emoji" emojis: "Emoji"
emojiName: "Jméno emoji"
emojiUrl: "URL obrázku"
addEmoji: "Přidat emoji" addEmoji: "Přidat emoji"
settingGuide: "Doporučené nastavení"
cacheRemoteFiles: "Ukládání vzdálených souborů do mezipaměti" cacheRemoteFiles: "Ukládání vzdálených souborů do mezipaměti"
cacheRemoteFilesDescription: "Zakázání tohoto nastavení způsobí, že vzdálené soubory\ cacheRemoteFilesDescription: "Zakázání tohoto nastavení způsobí, že vzdálené soubory\
\ budou odkazovány přímo, místo aby byly ukládány do mezipaměti. Tím se ušetří úložiště\ \ budou odkazovány přímo, místo aby byly ukládány do mezipaměti. Tím se ušetří úložiště\
@ -156,7 +141,6 @@ addAccount: "Přidat účet"
loginFailed: "Přihlášení se nezdařilo." loginFailed: "Přihlášení se nezdařilo."
showOnRemote: "Více na původním profilu" showOnRemote: "Více na původním profilu"
general: "Obecně" general: "Obecně"
wallpaper: "Obrázek na pozadí"
setWallpaper: "Nastavení obrázku na pozadí" setWallpaper: "Nastavení obrázku na pozadí"
removeWallpaper: "Odstranit pozadí" removeWallpaper: "Odstranit pozadí"
youHaveNoLists: "Nemáte žádné seznamy" youHaveNoLists: "Nemáte žádné seznamy"
@ -171,27 +155,19 @@ selectUser: "Vyberte uživatele"
recipient: "Pro" recipient: "Pro"
annotation: "Komentáře" annotation: "Komentáře"
federation: "Federace" federation: "Federace"
instances: "Instance"
registeredAt: "Registrován" registeredAt: "Registrován"
latestRequestSentAt: "Poslední požadavek poslán" latestRequestSentAt: "Poslední požadavek poslán"
latestRequestReceivedAt: "Poslední požadavek přijat" latestRequestReceivedAt: "Poslední požadavek přijat"
latestStatus: "Poslední status" latestStatus: "Poslední status"
storageUsage: "Využití úložiště"
charts: "Grafy" charts: "Grafy"
perHour: "za hodinu" perHour: "za hodinu"
perDay: "za den" perDay: "za den"
stopActivityDelivery: "Přestat zasílat aktivitu" stopActivityDelivery: "Přestat zasílat aktivitu"
blockThisInstance: "Blokovat tuto instanci" blockThisInstance: "Blokovat tuto instanci"
operations: "Operace"
software: "Software" software: "Software"
version: "Verze" version: "Verze"
metadata: "Metadata"
withNFiles: "{n} soubor(ů)" withNFiles: "{n} soubor(ů)"
monitor: "Monitorovat"
jobQueue: "Fronta úloh" jobQueue: "Fronta úloh"
cpuAndMemory: "CPU a paměť"
network: "Síť"
disk: "Disk"
instanceInfo: "Informace o instanci" instanceInfo: "Informace o instanci"
statistics: "Statistiky" statistics: "Statistiky"
clearQueue: "Vyčistit frontu" clearQueue: "Vyčistit frontu"
@ -213,9 +189,6 @@ all: "Vše"
subscribing: "Odebíráte" subscribing: "Odebíráte"
publishing: "Publikuji" publishing: "Publikuji"
notResponding: "Neodpovídá" notResponding: "Neodpovídá"
instanceFollowing: "Následovníci na instanci"
instanceFollowers: "Následovníci na instanci"
instanceUsers: "Uživatelé této instance"
changePassword: "Změnit heslo" changePassword: "Změnit heslo"
security: "Zabezpečení" security: "Zabezpečení"
currentPassword: "Současné heslo" currentPassword: "Současné heslo"
@ -229,7 +202,6 @@ noSuchUser: "Uživatel nebyl nalezen"
announcements: "Oznámení" announcements: "Oznámení"
imageUrl: "URL obrázku" imageUrl: "URL obrázku"
remove: "Smazat" remove: "Smazat"
removed: "Smazáno"
removeAreYouSure: "Jste si jistí že chcete smazat \"{x}\"?" removeAreYouSure: "Jste si jistí že chcete smazat \"{x}\"?"
deleteAreYouSure: "Jste si jistí že chcete smazat \"{x}\"?" deleteAreYouSure: "Jste si jistí že chcete smazat \"{x}\"?"
resetAreYouSure: "Opravdu resetovat?" resetAreYouSure: "Opravdu resetovat?"
@ -267,7 +239,6 @@ lightThemes: "Světlý vzhled"
darkThemes: "Tmavý vzhled" darkThemes: "Tmavý vzhled"
syncDeviceDarkMode: "Synchronizovat tmavý vzhled s nastavením Vašeho systému" syncDeviceDarkMode: "Synchronizovat tmavý vzhled s nastavením Vašeho systému"
drive: "Úložiště" drive: "Úložiště"
fileName: "Název souboru"
selectFile: "Vybrat soubor" selectFile: "Vybrat soubor"
selectFiles: "Vybrat soubory" selectFiles: "Vybrat soubory"
selectFolder: "Vyberte složku" selectFolder: "Vyberte složku"
@ -311,32 +282,23 @@ connectService: "Připojit"
disconnectService: "Odpojit" disconnectService: "Odpojit"
enableLocalTimeline: "Povolit lokální čas" enableLocalTimeline: "Povolit lokální čas"
enableGlobalTimeline: "Povolit globální čas" enableGlobalTimeline: "Povolit globální čas"
registration: "Registrace"
enableRegistration: "Povolit registraci novým uživatelům" enableRegistration: "Povolit registraci novým uživatelům"
invite: "Pozvat" invite: "Pozvat"
inMb: "V megabajtech" inMb: "V megabajtech"
iconUrl: "Favicon URL" iconUrl: "Favicon URL"
bannerUrl: "Baner URL" bannerUrl: "Baner URL"
backgroundImageUrl: "Adresa URL obrázku pozadí" backgroundImageUrl: "Adresa URL obrázku pozadí"
basicInfo: "Základní informace"
pinnedUsers: "Připnutí uživatelé" pinnedUsers: "Připnutí uživatelé"
pinnedNotes: "Připnutá poznámka"
hcaptcha: "hCaptcha"
enableHcaptcha: "Aktivovat hCaptchu"
hcaptchaSecretKey: "Tajný Klíč (Secret Key)" hcaptchaSecretKey: "Tajný Klíč (Secret Key)"
recaptcha: "reCAPTCHA"
enableRecaptcha: "Zapnout ReCAPTCHu"
recaptchaSecretKey: "Tajný Klíč (Secret Key)" recaptchaSecretKey: "Tajný Klíč (Secret Key)"
antennas: "Antény" antennas: "Antény"
manageAntennas: "Spravovat Antény" manageAntennas: "Spravovat Antény"
name: "Jméno" name: "Jméno"
antennaSource: "Zdroj Antény" antennaSource: "Zdroj Antény"
enableServiceworker: "Povolit ServiceWorker"
caseSensitive: "Rozlišuje malá a velká písmena" caseSensitive: "Rozlišuje malá a velká písmena"
connectedTo: "Následující účty jsou připojeny" connectedTo: "Následující účty jsou připojeny"
popularTags: "Populární tagy" popularTags: "Populární tagy"
userList: "Seznamy" userList: "Seznamy"
about: "Informace"
aboutMisskey: "O FoundKey" aboutMisskey: "O FoundKey"
administrator: "Administrátor" administrator: "Administrátor"
token: "Token" token: "Token"
@ -355,7 +317,6 @@ share: "Sdílet"
notFound: "Nenalezeno" notFound: "Nenalezeno"
notFoundDescription: "Nebyla nalezená žádná stránka korespondující se zadanou URL." notFoundDescription: "Nebyla nalezená žádná stránka korespondující se zadanou URL."
uploadFolder: "Výchozí lokace pro upload" uploadFolder: "Výchozí lokace pro upload"
cacheClear: "Vymazat cache"
markAsReadAllNotifications: "Označit všechna oznámení za přečtená" markAsReadAllNotifications: "Označit všechna oznámení za přečtená"
markAsReadAllUnreadNotes: "Označit všechny příspěvky za přečtené" markAsReadAllUnreadNotes: "Označit všechny příspěvky za přečtené"
markAsReadAllTalkMessages: "Označit všechny zprávy za přečtené" markAsReadAllTalkMessages: "Označit všechny zprávy za přečtené"
@ -381,7 +342,6 @@ inviteToGroup: "Pozvat do skupiny"
newMessageExists: "Máte novou zprávu" newMessageExists: "Máte novou zprávu"
onlyOneFileCanBeAttached: "Ke zprávě můžete přiložit jenom jeden soubor" onlyOneFileCanBeAttached: "Ke zprávě můžete přiložit jenom jeden soubor"
signinRequired: "Přihlašte se, prosím" signinRequired: "Přihlašte se, prosím"
invitations: "Pozvat"
checking: "Ověřuji" checking: "Ověřuji"
available: "K dispozici" available: "K dispozici"
unavailable: "Není k dispozici" unavailable: "Není k dispozici"
@ -399,7 +359,6 @@ or: "Nebo"
language: "Jazyk" language: "Jazyk"
uiLanguage: "Jazyk uživatelského rozhraní" uiLanguage: "Jazyk uživatelského rozhraní"
groupInvited: "Pozvat do skupiny" groupInvited: "Pozvat do skupiny"
aboutX: "O {x}"
useOsNativeEmojis: "Použití nativních emoji operačního systému" useOsNativeEmojis: "Použití nativních emoji operačního systému"
youHaveNoGroups: "Nemáte žádné skupiny" youHaveNoGroups: "Nemáte žádné skupiny"
joinOrCreateGroup: "Můžete požádat o pozvání do stávající skupiny nebo vytvořit novou." joinOrCreateGroup: "Můžete požádat o pozvání do stávající skupiny nebo vytvořit novou."
@ -409,23 +368,16 @@ category: "Kategorie"
tags: "Štítky" tags: "Štítky"
createAccount: "Vytvořit účet" createAccount: "Vytvořit účet"
existingAccount: "Existující účet" existingAccount: "Existující účet"
regenerate: "Obnovit"
fontSize: "Velikost písma" fontSize: "Velikost písma"
openImageInNewTab: "Otevřít obrázek v novém panelu" openImageInNewTab: "Otevřít obrázek v novém panelu"
dashboard: "Přehled" dashboard: "Přehled"
local: "Lokální" local: "Lokální"
remote: "Vzdálené" remote: "Vzdálené"
total: "Celkem"
weekOverWeekChanges: "Týdně"
dayOverDayChanges: "Denně" dayOverDayChanges: "Denně"
appearance: "Vzhled" appearance: "Vzhled"
clientSettings: "Nastavení klienta" clientSettings: "Nastavení klienta"
accountSettings: "Nastavení účtu"
numberOfDays: "Počet dní"
deleteAll: "Smazat vše"
showFixedPostForm: "Zobrazit formulář pro nové příspěvky nad časovou osou" showFixedPostForm: "Zobrazit formulář pro nové příspěvky nad časovou osou"
masterVolume: "Celková hlasitost" masterVolume: "Celková hlasitost"
chooseEmoji: "Vybrat emotikon"
unableToProcess: "Operace nebyla dokončena." unableToProcess: "Operace nebyla dokončena."
recentUsed: "Naposledy použité" recentUsed: "Naposledy použité"
install: "Nainstalovat" install: "Nainstalovat"
@ -439,16 +391,13 @@ ascendingOrder: "Vzestupně"
descendingOrder: "Sestupně" descendingOrder: "Sestupně"
scratchpad: "Zápisník" scratchpad: "Zápisník"
output: "Výstup" output: "Výstup"
script: "Skript"
updateRemoteUser: "Aktualizovat informace o vzdáleném účtu" updateRemoteUser: "Aktualizovat informace o vzdáleném účtu"
deleteAllFiles: "Smazat všechny soubory"
deleteAllFilesConfirm: "Jste si jistí že chcete smazat všechny soubory?" deleteAllFilesConfirm: "Jste si jistí že chcete smazat všechny soubory?"
userSuspended: "Tomuto uživateli byl pozastaven účet." userSuspended: "Tomuto uživateli byl pozastaven účet."
menu: "Menu" menu: "Menu"
addItem: "Přidat položku" addItem: "Přidat položku"
inboxUrl: "Inbox URL" inboxUrl: "Inbox URL"
deletedNote: "Odstraněné příspěvky" deletedNote: "Odstraněné příspěvky"
invisibleNote: "Skryté příspěvky"
description: "Popis" description: "Popis"
author: "Autor" author: "Autor"
manage: "Administrace" manage: "Administrace"
@ -457,7 +406,6 @@ generateAccessToken: "Vygenerovat přístupový token"
permission: "Oprávnění" permission: "Oprávnění"
enableAll: "Povolit vše" enableAll: "Povolit vše"
disableAll: "Vypnout vše" disableAll: "Vypnout vše"
notificationType: "Typy oznámení"
edit: "Upravit" edit: "Upravit"
emailServer: "Mailový server" emailServer: "Mailový server"
enableEmail: "Zapnout email dystribuci" enableEmail: "Zapnout email dystribuci"
@ -472,7 +420,6 @@ smtpSecureInfo: "Toto vypněte pokud používáte STARTTLS"
makeActive: "Aktivovat" makeActive: "Aktivovat"
display: "Zobrazit" display: "Zobrazit"
copy: "Kopírovat" copy: "Kopírovat"
logs: "Logy"
database: "Databáze" database: "Databáze"
create: "Vytvořit" create: "Vytvořit"
notificationSetting: "Nastavení oznámení" notificationSetting: "Nastavení oznámení"
@ -480,7 +427,6 @@ useGlobalSetting: "Použít globální nastavení"
other: "Ostatní" other: "Ostatní"
fileIdOrUrl: "ID nebo URL souboru" fileIdOrUrl: "ID nebo URL souboru"
behavior: "Chování" behavior: "Chování"
sample: "Ukázka"
clearCache: "Vyprázdnit mezipaměť" clearCache: "Vyprázdnit mezipaměť"
info: "Informace" info: "Informace"
user: "Uživatelé" user: "Uživatelé"
@ -495,9 +441,6 @@ _mfm:
search: "Vyhledávání" search: "Vyhledávání"
_theme: _theme:
description: "Popis" description: "Popis"
keys:
mention: "Zmínění"
renote: "Přeposlat"
_sfx: _sfx:
note: "Poznámky" note: "Poznámky"
notification: "Oznámení" notification: "Oznámení"

View file

@ -15,7 +15,6 @@ fetchingAsApObject: "Wird aus dem Fediverse angefragt …"
ok: "OK" ok: "OK"
gotIt: "Verstanden!" gotIt: "Verstanden!"
cancel: "Abbrechen" cancel: "Abbrechen"
enterUsername: "Benutzername eingeben"
renotedBy: "Renote von {user}" renotedBy: "Renote von {user}"
noNotes: "Keine Notizen gefunden" noNotes: "Keine Notizen gefunden"
noNotifications: "Keine Benachrichtigungen gefunden" noNotifications: "Keine Benachrichtigungen gefunden"
@ -31,16 +30,12 @@ login: "Anmelden"
loggingIn: "Anmeldung durchführen" loggingIn: "Anmeldung durchführen"
logout: "Abmelden" logout: "Abmelden"
signup: "Registrieren" signup: "Registrieren"
uploading: "Wird hochgeladen …"
save: "Speichern" save: "Speichern"
users: "Benutzer" users: "Benutzer"
addUser: "Benutzer hinzufügen" addUser: "Benutzer hinzufügen"
favorite: "Zu Favoriten hinzufügen" favorite: "Zu Favoriten hinzufügen"
favorites: "Favoriten" favorites: "Favoriten"
unfavorite: "Aus Favoriten entfernen" unfavorite: "Aus Favoriten entfernen"
favorited: "Zu Favoriten hinzugefügt."
alreadyFavorited: "Bereits zu den Favoriten hinzugefügt."
cantFavorite: "Hinzufügen zu Favoriten fehlgeschlagen."
pin: "An dein Profil anheften" pin: "An dein Profil anheften"
unpin: "Von deinem Profil lösen" unpin: "Von deinem Profil lösen"
copyContent: "Inhalt kopieren" copyContent: "Inhalt kopieren"
@ -52,7 +47,6 @@ deleteAndEditConfirm: "Möchtest du diese Notiz wirklich löschen und bearbeiten
addToList: "Zu Liste hinzufügen" addToList: "Zu Liste hinzufügen"
sendMessage: "Nachricht senden" sendMessage: "Nachricht senden"
copyUsername: "Benutzernamen kopieren" copyUsername: "Benutzernamen kopieren"
searchUser: "Nach einem Benutzer suchen"
reply: "Antworten" reply: "Antworten"
loadMore: "Mehr laden" loadMore: "Mehr laden"
showMore: "Mehr anzeigen" showMore: "Mehr anzeigen"
@ -76,7 +70,6 @@ exportRequested: "Du hast einen Export angefragt. Dies kann etwas Zeit in Anspru
importRequested: "Du hast einen Import angefragt. Dies kann etwas Zeit in Anspruch\ importRequested: "Du hast einen Import angefragt. Dies kann etwas Zeit in Anspruch\
\ nehmen." \ nehmen."
lists: "Listen" lists: "Listen"
noLists: "Keine Listen gefunden"
note: "Notiz" note: "Notiz"
notes: "Notizen" notes: "Notizen"
following: "Folgt" following: "Folgt"
@ -104,21 +97,15 @@ followRequest: "Follow-Anfrage senden"
followRequests: "Follow-Anfragen" followRequests: "Follow-Anfragen"
unfollow: "Nicht mehr folgen" unfollow: "Nicht mehr folgen"
followRequestPending: "Follow-Anfrage ausstehend" followRequestPending: "Follow-Anfrage ausstehend"
enterEmoji: "Gib ein Emoji ein"
renote: "Renote" renote: "Renote"
unrenote: "Renote zurücknehmen" unrenote: "Renote zurücknehmen"
renoted: "Renote getätigt."
cantRenote: "Renote dieses Beitrags nicht möglich."
cantReRenote: "Renote einer Renote nicht möglich."
quote: "Zitieren" quote: "Zitieren"
pinnedNote: "Angeheftete Notiz" pinnedNote: "Angeheftete Notiz"
pinned: "Angeheftet"
you: "Du" you: "Du"
clickToShow: "Zum Anzeigen anklicken" clickToShow: "Zum Anzeigen anklicken"
sensitive: "NSFW" sensitive: "NSFW"
add: "Hinzufügen" add: "Hinzufügen"
reaction: "Reaktionen" reaction: "Reaktionen"
reactionSetting: "In der Reaktionsauswahl anzuzeigende Reaktionen"
reactionSettingDescription2: "Ziehe um Anzuordnen, klicke um zu löschen, drücke „+“\ reactionSettingDescription2: "Ziehe um Anzuordnen, klicke um zu löschen, drücke „+“\
\ um hinzuzufügen." \ um hinzuzufügen."
attachCancel: "Anhang entfernen" attachCancel: "Anhang entfernen"
@ -143,10 +130,7 @@ editWidgetsExit: "Fertig"
customEmojis: "Benutzerdefinierte Emojis" customEmojis: "Benutzerdefinierte Emojis"
emoji: "Emoji" emoji: "Emoji"
emojis: "Emojis" emojis: "Emojis"
emojiName: "Emoji-Name"
emojiUrl: "Emoji-URL"
addEmoji: "Emoji hinzufügen" addEmoji: "Emoji hinzufügen"
settingGuide: "Empfohlene Einstellung"
cacheRemoteFiles: "Dateien von fremden Instanzen im Cache speichern" cacheRemoteFiles: "Dateien von fremden Instanzen im Cache speichern"
cacheRemoteFilesDescription: "Ist diese Einstellung deaktiviert, so werden Dateien\ cacheRemoteFilesDescription: "Ist diese Einstellung deaktiviert, so werden Dateien\
\ fremder Instanzen direkt von dort geladen. Hierdurch wird Speicherplatz auf diesem\ \ fremder Instanzen direkt von dort geladen. Hierdurch wird Speicherplatz auf diesem\
@ -168,7 +152,6 @@ addAccount: "Benutzerkonto hinzufügen"
loginFailed: "Anmeldung fehlgeschlagen" loginFailed: "Anmeldung fehlgeschlagen"
showOnRemote: "Auf Ursprungsinstanz ansehen" showOnRemote: "Auf Ursprungsinstanz ansehen"
general: "Allgemein" general: "Allgemein"
wallpaper: "Hintergrund"
setWallpaper: "Hintergrund festlegen" setWallpaper: "Hintergrund festlegen"
removeWallpaper: "Hintergrund entfernen" removeWallpaper: "Hintergrund entfernen"
youHaveNoLists: "Du hast keine Listen" youHaveNoLists: "Du hast keine Listen"
@ -185,27 +168,19 @@ selectUser: "Benutzer auswählen"
recipient: "Empfänger" recipient: "Empfänger"
annotation: "Anmerkung" annotation: "Anmerkung"
federation: "Föderation" federation: "Föderation"
instances: "Instanzen"
registeredAt: "Registriert am" registeredAt: "Registriert am"
latestRequestSentAt: "Letzte Anfrage gesendet" latestRequestSentAt: "Letzte Anfrage gesendet"
latestRequestReceivedAt: "Letzte Anfrage erhalten" latestRequestReceivedAt: "Letzte Anfrage erhalten"
latestStatus: "Neuster Status" latestStatus: "Neuster Status"
storageUsage: "Verbrauchter Speicherplatz"
charts: "Diagramme" charts: "Diagramme"
perHour: "Pro Stunde" perHour: "Pro Stunde"
perDay: "Pro Tag" perDay: "Pro Tag"
stopActivityDelivery: "Senden von Aktivitäten einstellen" stopActivityDelivery: "Senden von Aktivitäten einstellen"
blockThisInstance: "Diese Instanz blockieren" blockThisInstance: "Diese Instanz blockieren"
operations: "Aktionen"
software: "Software" software: "Software"
version: "Version" version: "Version"
metadata: "Metadaten"
withNFiles: "{n} Datei(en)" withNFiles: "{n} Datei(en)"
monitor: "Beobachten"
jobQueue: "Job-Warteschlange" jobQueue: "Job-Warteschlange"
cpuAndMemory: "CPU und Arbeitsspeicher"
network: "Netzwerk"
disk: "Festplatte"
instanceInfo: "Instanzinformationen" instanceInfo: "Instanzinformationen"
statistics: "Statistiken" statistics: "Statistiken"
clearQueue: "Warteschlange leeren" clearQueue: "Warteschlange leeren"
@ -218,7 +193,9 @@ clearCachedFilesConfirm: "Sollen alle im Cache gespeicherten Dateien von anderen
blockedInstances: "Blockierte Instanzen" blockedInstances: "Blockierte Instanzen"
blockedInstancesDescription: "Gib die Hostnamen der Instanzen, welche blockiert werden\ blockedInstancesDescription: "Gib die Hostnamen der Instanzen, welche blockiert werden\
\ sollen, durch Zeilenumbrüche getrennt an. Blockierte Instanzen können mit dieser\ \ sollen, durch Zeilenumbrüche getrennt an. Blockierte Instanzen können mit dieser\
\ instanz nicht mehr kommunizieren." \ Instanz nicht mehr kommunizieren. Hostnamen, die nicht-ASCII-Zeichen enthalten,\
\ müssen zuvor in Punycode umgewandelt werden. Ein Asterisk (*) kann als Platzhalter\
\ für beliebig viele Zeichen verwendet werden."
muteAndBlock: "Stummschaltungen und Blockierungen" muteAndBlock: "Stummschaltungen und Blockierungen"
mutedUsers: "Stummgeschaltete Benutzer" mutedUsers: "Stummgeschaltete Benutzer"
blockedUsers: "Blockierte Benutzer" blockedUsers: "Blockierte Benutzer"
@ -240,9 +217,6 @@ all: "Alles"
subscribing: "Wird abonniert" subscribing: "Wird abonniert"
publishing: "Wird veröffentlicht" publishing: "Wird veröffentlicht"
notResponding: "Antwortet nicht" notResponding: "Antwortet nicht"
instanceFollowing: "Gefolgt auf der Instanz"
instanceFollowers: "Follower der Instanz"
instanceUsers: "Benutzer der Instanz"
changePassword: "Passwort ändern" changePassword: "Passwort ändern"
security: "Sicherheit" security: "Sicherheit"
retypedNotMatch: "Die Eingaben stimmen nicht überein." retypedNotMatch: "Die Eingaben stimmen nicht überein."
@ -258,7 +232,6 @@ lookup: "Anfragen"
announcements: "Ankündigungen" announcements: "Ankündigungen"
imageUrl: "Bild-URL" imageUrl: "Bild-URL"
remove: "Löschen" remove: "Löschen"
removed: "Erfolgreich gelöscht"
removeAreYouSure: "Möchtest du „{x}“ wirklich entfernen?" removeAreYouSure: "Möchtest du „{x}“ wirklich entfernen?"
deleteAreYouSure: "Möchtest du „{x}“ wirklich löschen?" deleteAreYouSure: "Möchtest du „{x}“ wirklich löschen?"
resetAreYouSure: "Wirklich zurücksetzen?" resetAreYouSure: "Wirklich zurücksetzen?"
@ -301,7 +274,6 @@ lightThemes: "Helle Farbschemata"
darkThemes: "Dunkle Farbschemata" darkThemes: "Dunkle Farbschemata"
syncDeviceDarkMode: "Einstellung deines Geräts übernehmen" syncDeviceDarkMode: "Einstellung deines Geräts übernehmen"
drive: "Drive" drive: "Drive"
fileName: "Dateiname"
selectFile: "Datei auswählen" selectFile: "Datei auswählen"
selectFiles: "Dateien auswählen" selectFiles: "Dateien auswählen"
selectFolder: "Ordner auswählen" selectFolder: "Ordner auswählen"
@ -356,7 +328,6 @@ enableLocalTimeline: "Lokale Chronik aktivieren"
enableGlobalTimeline: "Globale Chronik aktivieren" enableGlobalTimeline: "Globale Chronik aktivieren"
disablingTimelinesInfo: "Administratoren und Moderatoren haben immer Zugriff auf alle\ disablingTimelinesInfo: "Administratoren und Moderatoren haben immer Zugriff auf alle\
\ Chroniken, auch wenn diese deaktiviert sind." \ Chroniken, auch wenn diese deaktiviert sind."
registration: "Registrieren"
enableRegistration: "Registration neuer Benutzer erlauben" enableRegistration: "Registration neuer Benutzer erlauben"
invite: "Einladen" invite: "Einladen"
driveCapacityPerLocalAccount: "Drive-Kapazität pro lokalem Benutzerkonto" driveCapacityPerLocalAccount: "Drive-Kapazität pro lokalem Benutzerkonto"
@ -365,26 +336,13 @@ inMb: "In Megabytes"
iconUrl: "Icon-URL (favicon etc)" iconUrl: "Icon-URL (favicon etc)"
bannerUrl: "Banner-URL" bannerUrl: "Banner-URL"
backgroundImageUrl: "Hintergrundbild-URL" backgroundImageUrl: "Hintergrundbild-URL"
basicInfo: "Grundlegende Informationen"
pinnedUsers: "Angeheftete Benutzer" pinnedUsers: "Angeheftete Benutzer"
pinnedUsersDescription: "Gib durch Leerzeichen getrennte Benutzer an, die an die \"\ pinnedUsersDescription: "Gib durch Leerzeichen getrennte Benutzer an, die an die \"\
Erkunden\"-Seite angeheftet werden sollen." Erkunden\"-Seite angeheftet werden sollen."
pinnedPages: "Angeheftete Seiten"
pinnedPagesDescription: "Gib durch Leerzeilen getrennte Pfäde zu Seiten an, die an\
\ die Startseite dieser Instanz angeheftet werden sollen."
pinnedClipId: "ID des anzuheftenden Clips"
pinnedNotes: "Angeheftete Notizen"
hcaptcha: "hCaptcha"
enableHcaptcha: "hCaptcha aktivieren"
hcaptchaSiteKey: "Site key" hcaptchaSiteKey: "Site key"
hcaptchaSecretKey: "Secret key" hcaptchaSecretKey: "Secret key"
recaptcha: "reCAPTCHA"
enableRecaptcha: "reCAPTCHA aktivieren"
recaptchaSiteKey: "Site key" recaptchaSiteKey: "Site key"
recaptchaSecretKey: "Secret key" recaptchaSecretKey: "Secret key"
avoidMultiCaptchaConfirm: "Das Verwenden von mehreren Captcha-Systemen kann zu Störungen\
\ führen. Sollen die anderen Systeme deaktiviert werden? Durch Abbrechen können\
\ mehrere Systeme aktiviert bleiben."
antennas: "Antennen" antennas: "Antennen"
manageAntennas: "Antennen verwalten" manageAntennas: "Antennen verwalten"
name: "Name" name: "Name"
@ -396,7 +354,6 @@ antennaKeywordsDescription: "Zum Nutzen einer \"UND\"-Verknüpfung Einträge mit
\ trennen." \ trennen."
notifyAntenna: "Über neue Notizen benachrichtigen" notifyAntenna: "Über neue Notizen benachrichtigen"
withFileAntenna: "Nur Notizen mit Dateien" withFileAntenna: "Nur Notizen mit Dateien"
enableServiceworker: "ServiceWorker aktivieren"
antennaUsersDescription: "Benutzernamen getrennt durch Zeilenumbrüche angeben" antennaUsersDescription: "Benutzernamen getrennt durch Zeilenumbrüche angeben"
caseSensitive: "Groß-/Kleinschreibung unterscheiden" caseSensitive: "Groß-/Kleinschreibung unterscheiden"
withReplies: "Antworten beinhalten" withReplies: "Antworten beinhalten"
@ -412,11 +369,8 @@ popularUsers: "Beliebte Benutzer"
recentlyUpdatedUsers: "Vor kurzem aktive Benutzer" recentlyUpdatedUsers: "Vor kurzem aktive Benutzer"
recentlyRegisteredUsers: "Vor kurzem registrierte Benutzer" recentlyRegisteredUsers: "Vor kurzem registrierte Benutzer"
recentlyDiscoveredUsers: "Vor kurzem gefundene Benutzer" recentlyDiscoveredUsers: "Vor kurzem gefundene Benutzer"
exploreUsersCount: "Es gibt {count} Benutzer"
exploreFediverse: "Das Fediverse erkunden"
popularTags: "Beliebte Schlagwörter" popularTags: "Beliebte Schlagwörter"
userList: "Liste" userList: "Liste"
about: "Über"
aboutMisskey: "Über FoundKey" aboutMisskey: "Über FoundKey"
administrator: "Administrator" administrator: "Administrator"
token: "Token" token: "Token"
@ -436,7 +390,6 @@ share: "Teilen"
notFound: "Nicht gefunden" notFound: "Nicht gefunden"
notFoundDescription: "Es konnte keine Seite unter dieser URL gefunden werden." notFoundDescription: "Es konnte keine Seite unter dieser URL gefunden werden."
uploadFolder: "Standardordner für Uploads" uploadFolder: "Standardordner für Uploads"
cacheClear: "Cache leeren"
markAsReadAllNotifications: "Alle Benachrichtigungen als gelesen markieren" markAsReadAllNotifications: "Alle Benachrichtigungen als gelesen markieren"
markAsReadAllUnreadNotes: "Alle Notizen als gelesen markieren" markAsReadAllUnreadNotes: "Alle Notizen als gelesen markieren"
markAsReadAllTalkMessages: "Alle Chats als gelesen markieren" markAsReadAllTalkMessages: "Alle Chats als gelesen markieren"
@ -467,7 +420,6 @@ noMessagesYet: "Noch keine Nachrichten vorhanden"
newMessageExists: "Du hast eine neue Nachricht" newMessageExists: "Du hast eine neue Nachricht"
onlyOneFileCanBeAttached: "Es kann pro Nachricht nur eine Datei angehängt werden" onlyOneFileCanBeAttached: "Es kann pro Nachricht nur eine Datei angehängt werden"
signinRequired: "Bitte melde dich an" signinRequired: "Bitte melde dich an"
invitations: "Einladungen"
invitationCode: "Einladungscode" invitationCode: "Einladungscode"
checking: "Wird überprüft …" checking: "Wird überprüft …"
available: "Verfügbar" available: "Verfügbar"
@ -488,7 +440,6 @@ or: "Oder"
language: "Sprache" language: "Sprache"
uiLanguage: "Sprache der Benutzeroberfläche" uiLanguage: "Sprache der Benutzeroberfläche"
groupInvited: "Du wurdest in eine Gruppe eingeladen" groupInvited: "Du wurdest in eine Gruppe eingeladen"
aboutX: "Über {x}"
useOsNativeEmojis: "Eingebaute Emojis des Betriebssystems benutzen" useOsNativeEmojis: "Eingebaute Emojis des Betriebssystems benutzen"
disableDrawer: "Keine ausfahrbaren Menüs verwenden" disableDrawer: "Keine ausfahrbaren Menüs verwenden"
youHaveNoGroups: "Keine Gruppen vorhanden" youHaveNoGroups: "Keine Gruppen vorhanden"
@ -496,27 +447,19 @@ joinOrCreateGroup: "Lass dich zu einer Gruppe einladen oder erstelle deine eigen
noHistory: "Kein Verlauf gefunden" noHistory: "Kein Verlauf gefunden"
signinHistory: "Anmeldungsverlauf" signinHistory: "Anmeldungsverlauf"
disableAnimatedMfm: "MFM, die Animationen enthalten, deaktivieren" disableAnimatedMfm: "MFM, die Animationen enthalten, deaktivieren"
doing: "In Bearbeitung …"
category: "Kategorie" category: "Kategorie"
tags: "Schlagwörter" tags: "Schlagwörter"
docSource: "Quellcode dieses Dokuments"
createAccount: "Benutzerkonto erstellen" createAccount: "Benutzerkonto erstellen"
existingAccount: "Bestehendes Benutzerkonto" existingAccount: "Bestehendes Benutzerkonto"
regenerate: "Regenerieren"
fontSize: "Schriftgröße" fontSize: "Schriftgröße"
noFollowRequests: "Keine ausstehenden Follow-Anfragen vorhanden" noFollowRequests: "Keine ausstehenden Follow-Anfragen vorhanden"
openImageInNewTab: "Bilder in neuem Tab öffnen" openImageInNewTab: "Bilder in neuem Tab öffnen"
dashboard: "Dashboard" dashboard: "Dashboard"
local: "Lokal" local: "Lokal"
remote: "Fremd" remote: "Fremd"
total: "Gesamt"
weekOverWeekChanges: "Veränderung zu letzter Woche"
dayOverDayChanges: "Veränderung zu Gestern" dayOverDayChanges: "Veränderung zu Gestern"
appearance: "Aussehen" appearance: "Aussehen"
clientSettings: "Client-Einstellungen" clientSettings: "Client-Einstellungen"
accountSettings: "Benutzerkonto-Einstellungen"
numberOfDays: "Anzahl der Tage"
hideThisNote: "Diese Notiz verstecken"
showFeaturedNotesInTimeline: "Beliebte Notizen in der Chronik anzeigen" showFeaturedNotesInTimeline: "Beliebte Notizen in der Chronik anzeigen"
objectStorage: "Object Storage" objectStorage: "Object Storage"
useObjectStorage: "Object Storage verwenden" useObjectStorage: "Object Storage verwenden"
@ -543,8 +486,6 @@ objectStorageUseProxy: "Über Proxy verbinden"
objectStorageUseProxyDesc: "Deaktiviere dies, falls du keinen Proxy für den Objektspeicher\ objectStorageUseProxyDesc: "Deaktiviere dies, falls du keinen Proxy für den Objektspeicher\
\ verwenden wirst" \ verwenden wirst"
objectStorageSetPublicRead: "Bei Upload auf \"public-read\" stellen" objectStorageSetPublicRead: "Bei Upload auf \"public-read\" stellen"
serverLogs: "Serverprotokolle"
deleteAll: "Alle löschen"
showFixedPostForm: "Bereich zum Schreiben neuer Notizen am Anfang der Chronik anzeigen" showFixedPostForm: "Bereich zum Schreiben neuer Notizen am Anfang der Chronik anzeigen"
newNoteRecived: "Es gibt neue Notizen" newNoteRecived: "Es gibt neue Notizen"
sounds: "Töne" sounds: "Töne"
@ -555,7 +496,6 @@ popout: "Pop-Up"
volume: "Lautstärke" volume: "Lautstärke"
masterVolume: "Gesamtlautstärke" masterVolume: "Gesamtlautstärke"
details: "Details" details: "Details"
chooseEmoji: "Emoji auswählen"
unableToProcess: "Der Vorgang konnte nicht abgeschlossen werden" unableToProcess: "Der Vorgang konnte nicht abgeschlossen werden"
recentUsed: "Vor kurzem verwendet" recentUsed: "Vor kurzem verwendet"
install: "Installieren" install: "Installieren"
@ -573,9 +513,7 @@ scratchpadDescription: "Die Testumgebung bietet einen Bereich für AiScript-Expe
\ Dort kannst du AiScript schreiben, ausführen sowie dessen Auswirkungen auf FoundKey\ \ Dort kannst du AiScript schreiben, ausführen sowie dessen Auswirkungen auf FoundKey\
\ überprüfen." \ überprüfen."
output: "Ausgabe" output: "Ausgabe"
script: "Skript"
updateRemoteUser: "Benutzerinformationen aktualisieren" updateRemoteUser: "Benutzerinformationen aktualisieren"
deleteAllFiles: "Alle Dateien löschen"
deleteAllFilesConfirm: "Möchtest du wirklich alle Dateien löschen?" deleteAllFilesConfirm: "Möchtest du wirklich alle Dateien löschen?"
removeAllFollowing: "Allen gefolgten Benutzern entfolgen" removeAllFollowing: "Allen gefolgten Benutzern entfolgen"
removeAllFollowingDescription: "Dies entfolgt allen Benutzerkonten von {host}. Bitte\ removeAllFollowingDescription: "Dies entfolgt allen Benutzerkonten von {host}. Bitte\
@ -593,10 +531,7 @@ addItem: "Element hinzufügen"
relays: "Relays" relays: "Relays"
addRelay: "Relay hinzufügen" addRelay: "Relay hinzufügen"
inboxUrl: "inbox-URL" inboxUrl: "inbox-URL"
addedRelays: "Hinzugefügte Relays"
serviceworkerInfo: "Muss für Push-Benachrichtigungen aktiviert sein."
deletedNote: "Gelöschte Notiz" deletedNote: "Gelöschte Notiz"
invisibleNote: "Private Notiz"
enableInfiniteScroll: "Automatisch mehr laden" enableInfiniteScroll: "Automatisch mehr laden"
visibility: "Sichtbarkeit" visibility: "Sichtbarkeit"
poll: "Umfrage" poll: "Umfrage"
@ -606,15 +541,12 @@ disablePlayer: "Video-Player schließen"
themeEditor: "Farbschema-Editor" themeEditor: "Farbschema-Editor"
description: "Beschreibung" description: "Beschreibung"
describeFile: "Beschreibung hinzufügen" describeFile: "Beschreibung hinzufügen"
enterFileDescription: "Beschreibung eingeben"
author: "Autor" author: "Autor"
leaveConfirm: "Es gibt unspeicherte Änderungen. Möchtest du diese verwerfen?" leaveConfirm: "Es gibt unspeicherte Änderungen. Möchtest du diese verwerfen?"
manage: "Verwaltung" manage: "Verwaltung"
plugins: "Plugins" plugins: "Plugins"
deck: "Deck" deck: "Deck"
undeck: "Deck verlassen"
useBlurEffectForModal: "Weichzeichnungseffekt für Modals verwenden" useBlurEffectForModal: "Weichzeichnungseffekt für Modals verwenden"
useFullReactionPicker: "Vollständige Reaktionsauswahl verwenden"
width: "Breite" width: "Breite"
height: "Höhe" height: "Höhe"
large: "Groß" large: "Groß"
@ -627,7 +559,6 @@ disableAll: "Alle deaktivieren"
tokenRequested: "Zugriff zum Benutzerkonto gewähren" tokenRequested: "Zugriff zum Benutzerkonto gewähren"
pluginTokenRequestedDescription: "Dieses Plugin wird die hier konfigurierten Berechtigungen\ pluginTokenRequestedDescription: "Dieses Plugin wird die hier konfigurierten Berechtigungen\
\ verwenden können." \ verwenden können."
notificationType: "Art der Benachrichtigung"
edit: "Bearbeiten" edit: "Bearbeiten"
useStarForReactionFallback: "Verwende ★ falls das Reaktions-Emoji unbekannt ist" useStarForReactionFallback: "Verwende ★ falls das Reaktions-Emoji unbekannt ist"
emailServer: "Email-Server" emailServer: "Email-Server"
@ -655,10 +586,7 @@ userSaysSomething: "{name} hat etwas gesagt"
makeActive: "Aktivieren" makeActive: "Aktivieren"
display: "Anzeigeart" display: "Anzeigeart"
copy: "Kopieren" copy: "Kopieren"
metrics: "Metriken"
overview: "Übersicht" overview: "Übersicht"
logs: "Logs"
delayed: "Verzögert"
database: "Datenbank" database: "Datenbank"
channel: "Kanäle" channel: "Kanäle"
create: "Erstellen" create: "Erstellen"
@ -676,7 +604,6 @@ setMultipleBySeparatingWithSpace: "Trenne Elemente durch ein Leerzeichen um mehr
\ Einstellungen zu kofigurieren." \ Einstellungen zu kofigurieren."
fileIdOrUrl: "Datei-ID oder URL" fileIdOrUrl: "Datei-ID oder URL"
behavior: "Verhalten" behavior: "Verhalten"
sample: "Beispiel"
abuseReports: "Meldungen" abuseReports: "Meldungen"
reportAbuse: "Melden" reportAbuse: "Melden"
reportAbuseOf: "{name} melden" reportAbuseOf: "{name} melden"
@ -692,13 +619,8 @@ forwardReportIsAnonymous: "Anstatt deines Benutzerkontos wird bei der fremden In
send: "Senden" send: "Senden"
abuseMarkAsResolved: "Meldung als gelöst markieren" abuseMarkAsResolved: "Meldung als gelöst markieren"
openInNewTab: "In neuem Tab öffnen" openInNewTab: "In neuem Tab öffnen"
openInSideView: "In Seitenansicht öffnen"
defaultNavigationBehaviour: "Standardnavigationsverhalten" defaultNavigationBehaviour: "Standardnavigationsverhalten"
editTheseSettingsMayBreakAccount: "Bei Bearbeitung dieser Einstellungen besteht die\
\ Gefahr, dein Benutzerkonto zu beschädigen."
instanceTicker: "Instanz-Informationen von Notizen" instanceTicker: "Instanz-Informationen von Notizen"
waitingFor: "Warte auf {x}"
random: "Zufällig"
system: "System" system: "System"
switchUi: "UI wechseln" switchUi: "UI wechseln"
desktop: "Desktop" desktop: "Desktop"
@ -737,7 +659,6 @@ loadRawImages: "Anstatt Vorschaubilder immer Originalbilder anzeigen"
disableShowingAnimatedImages: "Animierte Bilder nicht abspielen" disableShowingAnimatedImages: "Animierte Bilder nicht abspielen"
verificationEmailSent: "Eine Bestätigungsmail wurde an deine Email-Adresse versendet.\ verificationEmailSent: "Eine Bestätigungsmail wurde an deine Email-Adresse versendet.\
\ Besuche den dort enthaltenen Link, um die Verifizierung abzuschließen." \ Besuche den dort enthaltenen Link, um die Verifizierung abzuschließen."
notSet: "Nicht konfiguriert"
emailVerified: "Email-Adresse bestätigt" emailVerified: "Email-Adresse bestätigt"
noteFavoritesCount: "Anzahl an als Favorit markierter Notizen" noteFavoritesCount: "Anzahl an als Favorit markierter Notizen"
pageLikesCount: "Anzahl an als \"Gefällt mir\" markierter Seiten" pageLikesCount: "Anzahl an als \"Gefällt mir\" markierter Seiten"
@ -745,8 +666,6 @@ pageLikedCount: "Anzahl erhaltener \"Gefällt mir\" auf Seiten"
contact: "Kontakt" contact: "Kontakt"
useSystemFont: "Standardschriftart des Systems verwenden" useSystemFont: "Standardschriftart des Systems verwenden"
clips: "Clips" clips: "Clips"
experimentalFeatures: "Experimentelle Funktionalitäten"
developer: "Entwickler"
makeExplorable: "Benutzerkonto in „Erkunden“ sichtbar machen" makeExplorable: "Benutzerkonto in „Erkunden“ sichtbar machen"
makeExplorableDescription: "Ist diese Option deaktiviert, so ist dein Benutzerkonto\ makeExplorableDescription: "Ist diese Option deaktiviert, so ist dein Benutzerkonto\
\ nicht im „Erkunden“-Bereich sichtbar." \ nicht im „Erkunden“-Bereich sichtbar."
@ -760,28 +679,16 @@ reloadToApplySetting: "Diese Einstellung tritt nach einer Aktualisierung der Sei
\ in Kraft. Jetzt aktualisieren?" \ in Kraft. Jetzt aktualisieren?"
needReloadToApply: "Diese Einstellung tritt nach einer Aktualisierung der Seite in\ needReloadToApply: "Diese Einstellung tritt nach einer Aktualisierung der Seite in\
\ Kraft." \ Kraft."
showTitlebar: "Titelleiste anzeigen"
clearCache: "Cache leeren" clearCache: "Cache leeren"
onlineUsersCount: "{n} Benutzer sind online" onlineUsersCount: "{n} Benutzer sind online"
nUsers: "{n} Benutzer"
nNotes: "{n} Notizen"
myTheme: "Mein Farbschema"
backgroundColor: "Hintergrundfarbe" backgroundColor: "Hintergrundfarbe"
accentColor: "Akzentfarbe" accentColor: "Akzentfarbe"
textColor: "Textfarbe" textColor: "Textfarbe"
saveAs: "Speichern als …" saveAs: "Speichern als …"
advanced: "Fortgeschritten"
value: "Wert"
createdAt: "Erstellt am" createdAt: "Erstellt am"
updatedAt: "Zuletzt geändert am" updatedAt: "Zuletzt geändert am"
saveConfirm: "Änderungen speichern?"
deleteConfirm: "Wirklich löschen?" deleteConfirm: "Wirklich löschen?"
invalidValue: "Dieser Wert ist ungültig."
registry: "Registry"
closeAccount: "Benutzerkonto schließen" closeAccount: "Benutzerkonto schließen"
currentVersion: "Momentane Version"
latestVersion: "Neuste Version"
youAreRunningUpToDateClient: "Du verwendest die neuste Version deines Clients."
newVersionOfClientAvailable: "Eine neuere Version deines Clients ist verfügbar." newVersionOfClientAvailable: "Eine neuere Version deines Clients ist verfügbar."
usageAmount: "Verwendung" usageAmount: "Verwendung"
capacity: "Kapazität" capacity: "Kapazität"
@ -791,11 +698,9 @@ apply: "Anwenden"
receiveAnnouncementFromInstance: "Benachrichtigungen von dieser Instanz empfangen" receiveAnnouncementFromInstance: "Benachrichtigungen von dieser Instanz empfangen"
emailNotification: "Email-Benachrichtigungen" emailNotification: "Email-Benachrichtigungen"
publish: "Veröffentlichen" publish: "Veröffentlichen"
inChannelSearch: "In Kanal suchen"
useReactionPickerForContextMenu: "Reaktionsauswahl durch Rechtsklick öffnen" useReactionPickerForContextMenu: "Reaktionsauswahl durch Rechtsklick öffnen"
typingUsers: "{users} ist/sind am schreiben …" typingUsers: "{users} ist/sind am schreiben …"
jumpToSpecifiedDate: "Zu bestimmtem Datum springen" jumpToSpecifiedDate: "Zu bestimmtem Datum springen"
showingPastTimeline: "Es wird eine alte Chronik angezeigt"
clear: "Zurückkehren" clear: "Zurückkehren"
markAllAsRead: "Alle als gelesen markieren" markAllAsRead: "Alle als gelesen markieren"
goBack: "Zurück" goBack: "Zurück"
@ -810,7 +715,6 @@ notSpecifiedMentionWarning: "Diese Notiz enthält Erwähnungen von Nutzern, die
info: "Über" info: "Über"
userInfo: "Benutzerinformation" userInfo: "Benutzerinformation"
unknown: "Unbekannt" unknown: "Unbekannt"
onlineStatus: "Onlinestatus"
hideOnlineStatus: "Onlinestatus verbergen" hideOnlineStatus: "Onlinestatus verbergen"
hideOnlineStatusDescription: "Das Verbergen deines Onlinestatuses reduziert die Nützlichkeit\ hideOnlineStatusDescription: "Das Verbergen deines Onlinestatuses reduziert die Nützlichkeit\
\ von Funktionen wie der Suche." \ von Funktionen wie der Suche."
@ -838,22 +742,13 @@ gallery: "Galerie"
recentPosts: "Neue Beiträge" recentPosts: "Neue Beiträge"
popularPosts: "Beliebte Beiträge" popularPosts: "Beliebte Beiträge"
shareWithNote: "Mit Notiz teilen" shareWithNote: "Mit Notiz teilen"
expiration: "Frist"
memo: "Merkzettel"
priority: "Priorität"
high: "Hoch"
middle: "Mittel"
low: "Niedrig"
emailNotConfiguredWarning: "Keine Email-Adresse hinterlegt." emailNotConfiguredWarning: "Keine Email-Adresse hinterlegt."
ratio: "Verhältnis" ratio: "Verhältnis"
previewNoteText: "Vorschau anzeigen" previewNoteText: "Vorschau anzeigen"
customCss: "Benutzerdefiniertes CSS" customCss: "Benutzerdefiniertes CSS"
customCssWarn: "Verwende diese Einstellung nur, wenn du weißt, was sie tut. Ungültige\ customCssWarn: "Verwende diese Einstellung nur, wenn du weißt, was sie tut. Ungültige\
\ Eingaben können dazu führen, dass der Client nicht mehr normal funktioniert." \ Eingaben können dazu führen, dass der Client nicht mehr normal funktioniert."
global: "Global"
squareAvatars: "Profilbilder quadratisch anzeigen" squareAvatars: "Profilbilder quadratisch anzeigen"
sent: "Gesendet"
received: "Erhalten"
searchResult: "Suchergebnisse" searchResult: "Suchergebnisse"
hashtags: "Hashtags" hashtags: "Hashtags"
troubleshooting: "Problembehandlung" troubleshooting: "Problembehandlung"
@ -893,7 +788,8 @@ ffVisibility: "Sichtbarkeit von Gefolgten/Followern"
ffVisibilityDescription: "Konfiguriere wer sehen kann, wem du folgst sowie wer dir\ ffVisibilityDescription: "Konfiguriere wer sehen kann, wem du folgst sowie wer dir\
\ folgt." \ folgt."
continueThread: "Weiteren Threadverlauf anzeigen" continueThread: "Weiteren Threadverlauf anzeigen"
deleteAccountConfirm: "Dein Benutzerkonto wird unwiderruflich gelöscht. Trotzdem fortfahren?" deleteAccountConfirm: "Das Benutzerkonto {handle} wird unwiderruflich gelöscht. Trotzdem\
\ fortfahren?"
incorrectPassword: "Falsches Passwort." incorrectPassword: "Falsches Passwort."
voteConfirm: "Wirklich für „{choice}“ abstimmen?" voteConfirm: "Wirklich für „{choice}“ abstimmen?"
hide: "Inhalt verbergen" hide: "Inhalt verbergen"
@ -952,9 +848,6 @@ _accountDelete:
requestAccountDelete: "Löschung deines Benutzerkontos anfordern" requestAccountDelete: "Löschung deines Benutzerkontos anfordern"
started: "Die Löschung wurde eingeleitet." started: "Die Löschung wurde eingeleitet."
inProgress: "Löschung in Bearbeitung" inProgress: "Löschung in Bearbeitung"
_ad:
back: "Zurück"
reduceFrequencyOfThisAd: "Diese Werbung weniger anzeigen"
_forgotPassword: _forgotPassword:
enterEmail: "Gib die Email-Adresse ein, mit der du dich registriert hast. An diese\ enterEmail: "Gib die Email-Adresse ein, mit der du dich registriert hast. An diese\
\ wird ein Link gesendet, mit dem du dein Passwort zurücksetzen kannst." \ wird ein Link gesendet, mit dem du dein Passwort zurücksetzen kannst."
@ -975,7 +868,6 @@ _email:
_plugin: _plugin:
install: "Plugins installieren" install: "Plugins installieren"
installWarn: "Installiere bitte nur vertrauenswürdige Plugins." installWarn: "Installiere bitte nur vertrauenswürdige Plugins."
manage: "Plugins verwalten"
_registry: _registry:
scope: "Gültigkeitsbereich" scope: "Gültigkeitsbereich"
key: "Schlüssel" key: "Schlüssel"
@ -985,10 +877,8 @@ _registry:
_aboutMisskey: _aboutMisskey:
about: "FoundKey ist Open-Source-Software, welche von syuilo seit 2014 entwickelt\ about: "FoundKey ist Open-Source-Software, welche von syuilo seit 2014 entwickelt\
\ wird." \ wird."
contributors: "Hauptmitwirkende"
allContributors: "Alle Mitwirkenden" allContributors: "Alle Mitwirkenden"
source: "Quellcode" source: "Quellcode"
translation: "FoundKey übersetzen"
_nsfw: _nsfw:
respect: "Als NSFW markierte Bilder verbergen" respect: "Als NSFW markierte Bilder verbergen"
ignore: "Als NSFW markierte Bilder nicht verbergen" ignore: "Als NSFW markierte Bilder nicht verbergen"
@ -1120,68 +1010,6 @@ _theme:
alreadyInstalled: "Dieses Farbschema ist bereits installiert" alreadyInstalled: "Dieses Farbschema ist bereits installiert"
invalid: "Der Code dieses Farbschemas ist ungültig" invalid: "Der Code dieses Farbschemas ist ungültig"
make: "Farbschema erstellen" make: "Farbschema erstellen"
base: "Vorlage"
addConstant: "Konstante hinzufügen"
constant: "Konstante"
defaultValue: "Standardwert"
color: "Farbe"
refProp: "Eigenschaft referenzieren"
refConst: "Konstante referenzieren"
key: "Schlüssel"
func: "Funktionen"
funcKind: "Funktionsart"
argument: "Parameter"
basedProp: "Referenzierte Eigenschaft"
alpha: "Transparenz"
darken: "Verdunkeln"
lighten: "Erhellen"
inputConstantName: "Name der Konstanten eingeben"
importInfo: "Hier kannst du Farbschemencode einfügen, um ihn in den Editor zu importieren"
deleteConstantConfirm: "Die Konstante {const} wirklich löschen?"
keys:
accent: "Akzentfarbe"
bg: "Hintergrund"
fg: "Text"
focus: "Fokus"
indicator: "Indikator"
panel: "Panel"
shadow: "Schatten"
header: "Kopfzeile"
navBg: "Hintergrund der Seitenleiste"
navFg: "Text der Seitenleiste"
navHoverFg: "Text der Seitenleiste (Mouseover)"
navActive: "Text der Seitenleiste (Aktiv)"
navIndicator: "Indikator der Seitenleiste"
link: "Link"
hashtag: "Hashtag"
mention: "Erwähnung"
mentionMe: "Erwähnung (Ich)"
renote: "Renote"
modalBg: "Modalhintergrund"
divider: "Trenner"
scrollbarHandle: "Griff des Scrollbalkens"
scrollbarHandleHover: "Griff des Scrollbalkens (Mouseover)"
dateLabelFg: "Text von Datumsbeschriftungen"
infoBg: "Hintergrund von Informationen"
infoFg: "Text von Informationen"
infoWarnBg: "Hintergrund von Warnungen"
infoWarnFg: "Text von Warnungen"
cwBg: "Hintergrund des Inhaltswarnungsknopfs"
cwFg: "Text des Inhaltswarnungsknopfs"
cwHoverBg: "Hintergrund des Inhaltswarnungsknopfs (Mouseover)"
toastBg: "Hintergrund von Benachrichtigungen"
toastFg: "Text von Benachrichtigungen"
buttonBg: "Hintergrund von Schaltflächen"
buttonHoverBg: "Hintergrund von Schaltflächen (Mouseover)"
inputBorder: "Rahmen von Eingabefeldern"
listItemHoverBg: "Hintergrund von Listeneinträgen (Mouseover)"
driveFolderBg: "Hintergrund von Drive-Ordnern"
wallpaperOverlay: "Hintergrundbild-Overlay"
badge: "Wappen"
messageBg: "Hintergrund von Chats"
accentDarken: "Akzent (Verdunkelt)"
accentLighten: "Akzent (Erhellt)"
fgHighlighted: "Hervorgehobener Text"
_sfx: _sfx:
note: "Notizen" note: "Notizen"
noteMy: "Meine Notizen" noteMy: "Meine Notizen"
@ -1473,7 +1301,6 @@ _relayStatus:
accepted: "Akzeptiert" accepted: "Akzeptiert"
rejected: "Abgelehnt" rejected: "Abgelehnt"
_notification: _notification:
fileUploaded: "Datei erfolgreich hochgeladen"
youGotMention: "{name} hat dich erwähnt" youGotMention: "{name} hat dich erwähnt"
youGotReply: "{name} hat dir geantwortet" youGotReply: "{name} hat dir geantwortet"
youGotQuote: "{name} hat dich zitiert" youGotQuote: "{name} hat dich zitiert"
@ -1489,7 +1316,6 @@ _notification:
pollEnded: "Umfrageergebnisse sind verfügbar" pollEnded: "Umfrageergebnisse sind verfügbar"
emptyPushNotificationMessage: "Push-Benachrichtigungen wurden aktualisiert" emptyPushNotificationMessage: "Push-Benachrichtigungen wurden aktualisiert"
_types: _types:
all: "Alle"
follow: "Neue Follower" follow: "Neue Follower"
mention: "Erwähnungen" mention: "Erwähnungen"
reply: "Antworten" reply: "Antworten"
@ -1563,3 +1389,29 @@ documentation: Dokumentation
signinHistoryExpires: Frühere Login-Versuche werden aus Datenschutzgründen nach 60 signinHistoryExpires: Frühere Login-Versuche werden aus Datenschutzgründen nach 60
Tagen automatisch gelöscht. Tagen automatisch gelöscht.
unlimited: Unbegrenzt unlimited: Unbegrenzt
stopActivityDeliveryDescription: Aktivitäten werden nicht an diese Instanz gesendet,
werden aber weiter empfangen.
blockThisInstanceDescription: Aktivitäten werden nicht an diese Instanz gesendet und
nicht von dieser Instanz empfangen.
federateBlocksDescription: Block-Aktivitäten werden nicht an andere Instanzen gesendet,
wenn dies ausgeschaltet ist.
setTag: Schlagwörter setzen
_translationService:
_libreTranslate:
authKey: LibreTranslate-Authorisierungs-Schlüssel (optional)
endpoint: LibreTranslate-API-Adresse
_deepl:
authKey: DeepL-Authorisierungs-Schlüssel
translationSettings: Übersetzung
translationService: Übersetzer
setCategory: Kategorie setzen
addTag: Schlagwörter hinzufügen
removeTag: Schlagwörter entfernen
exportAll: Alle exportieren
exportSelected: Gewählte exportieren
federateBlocks: Andere Instanzen mitteilen, wenn ich jemanden blockiere
selectMode: Auswählen
selectAll: Alle auswählen
renoteUnmute: Renotes zeigen
renoteMute: Renotes verstecken
externalCssSnippets: Einige CSS-Schnipsel zur Inspiration (nicht durch FoundKey verwaltet)

View file

@ -14,7 +14,6 @@ fetchingAsApObject: "Fetching from the Fediverse..."
ok: "OK" ok: "OK"
gotIt: "Got it!" gotIt: "Got it!"
cancel: "Cancel" cancel: "Cancel"
enterUsername: "Enter username"
renotedBy: "Renoted by {user}" renotedBy: "Renoted by {user}"
noNotes: "No notes" noNotes: "No notes"
noNotifications: "No notifications" noNotifications: "No notifications"
@ -30,16 +29,12 @@ login: "Sign In"
loggingIn: "Signing In" loggingIn: "Signing In"
logout: "Sign Out" logout: "Sign Out"
signup: "Sign Up" signup: "Sign Up"
uploading: "Uploading..."
save: "Save" save: "Save"
users: "Users" users: "Users"
addUser: "Add a user" addUser: "Add a user"
favorite: "Add to favorites" favorite: "Add to favorites"
favorites: "Favorites" favorites: "Favorites"
unfavorite: "Remove from favorites" unfavorite: "Remove from favorites"
favorited: "Added to favorites."
alreadyFavorited: "Already added to favorites."
cantFavorite: "Couldn't add to favorites."
pin: "Pin to profile" pin: "Pin to profile"
unpin: "Unpin from profile" unpin: "Unpin from profile"
copyContent: "Copy contents" copyContent: "Copy contents"
@ -51,7 +46,6 @@ deleteAndEditConfirm: "Are you sure you want to delete this note and edit it? Yo
addToList: "Add to list" addToList: "Add to list"
sendMessage: "Send a message" sendMessage: "Send a message"
copyUsername: "Copy username" copyUsername: "Copy username"
searchUser: "Search for a user"
reply: "Reply" reply: "Reply"
loadMore: "Load more" loadMore: "Load more"
showMore: "Show more" showMore: "Show more"
@ -76,7 +70,6 @@ exportRequested: "You've requested an export. This may take a while. It will be
\ to your Drive once completed." \ to your Drive once completed."
importRequested: "You've requested an import. This may take a while." importRequested: "You've requested an import. This may take a while."
lists: "Lists" lists: "Lists"
noLists: "You don't have any lists"
note: "Note" note: "Note"
notes: "Notes" notes: "Notes"
following: "Following" following: "Following"
@ -101,21 +94,15 @@ followRequest: "Send follow request"
followRequests: "Follow requests" followRequests: "Follow requests"
unfollow: "Unfollow" unfollow: "Unfollow"
followRequestPending: "Follow request pending" followRequestPending: "Follow request pending"
enterEmoji: "Enter an emoji"
renote: "Renote" renote: "Renote"
unrenote: "Take back renote" unrenote: "Take back renote"
renoted: "Renoted."
cantRenote: "This post can't be renoted."
cantReRenote: "A renote can't be renoted."
quote: "Quote" quote: "Quote"
pinnedNote: "Pinned note" pinnedNote: "Pinned note"
pinned: "Pin to profile"
you: "You" you: "You"
clickToShow: "Click to show" clickToShow: "Click to show"
sensitive: "NSFW" sensitive: "NSFW"
add: "Add" add: "Add"
reaction: "Reactions" reaction: "Reactions"
reactionSetting: "Reactions to show in the reaction picker"
reactionSettingDescription2: "Drag to reorder, click to delete, press \"+\" to add." reactionSettingDescription2: "Drag to reorder, click to delete, press \"+\" to add."
attachCancel: "Remove attachment" attachCancel: "Remove attachment"
markAsSensitive: "Mark as NSFW" markAsSensitive: "Mark as NSFW"
@ -141,10 +128,7 @@ editWidgetsExit: "Done"
customEmojis: "Custom Emoji" customEmojis: "Custom Emoji"
emoji: "Emoji" emoji: "Emoji"
emojis: "Emoji" emojis: "Emoji"
emojiName: "Emoji name"
emojiUrl: "Emoji URL"
addEmoji: "Add an emoji" addEmoji: "Add an emoji"
settingGuide: "Recommended settings"
cacheRemoteFiles: "Cache remote files" cacheRemoteFiles: "Cache remote files"
cacheRemoteFilesDescription: "When this setting is disabled, remote files are loaded\ cacheRemoteFilesDescription: "When this setting is disabled, remote files are loaded\
\ directly from the remote instance. Disabling this will decrease storage usage,\ \ directly from the remote instance. Disabling this will decrease storage usage,\
@ -164,7 +148,6 @@ addAccount: "Add account"
loginFailed: "Failed to sign in" loginFailed: "Failed to sign in"
showOnRemote: "View on remote instance" showOnRemote: "View on remote instance"
general: "General" general: "General"
wallpaper: "Wallpaper"
setWallpaper: "Set wallpaper" setWallpaper: "Set wallpaper"
removeWallpaper: "Remove wallpaper" removeWallpaper: "Remove wallpaper"
youHaveNoLists: "You don't have any lists" youHaveNoLists: "You don't have any lists"
@ -179,12 +162,10 @@ selectUser: "Select a user"
recipient: "Recipient" recipient: "Recipient"
annotation: "Comments" annotation: "Comments"
federation: "Federation" federation: "Federation"
instances: "Instances"
registeredAt: "Registered at" registeredAt: "Registered at"
latestRequestSentAt: "Last request sent" latestRequestSentAt: "Last request sent"
latestRequestReceivedAt: "Last request received" latestRequestReceivedAt: "Last request received"
latestStatus: "Latest status" latestStatus: "Latest status"
storageUsage: "Storage usage"
charts: "Charts" charts: "Charts"
perHour: "Per Hour" perHour: "Per Hour"
perDay: "Per Day" perDay: "Per Day"
@ -192,16 +173,10 @@ stopActivityDelivery: "Stop sending activities"
stopActivityDeliveryDescription: "Local activities will not be sent to this instance. Receiving activities works as before." stopActivityDeliveryDescription: "Local activities will not be sent to this instance. Receiving activities works as before."
blockThisInstance: "Block this instance" blockThisInstance: "Block this instance"
blockThisInstanceDescription: "Local activites will not be sent to this instance. Activites from this instance will be discarded." blockThisInstanceDescription: "Local activites will not be sent to this instance. Activites from this instance will be discarded."
operations: "Operations"
software: "Software" software: "Software"
version: "Version" version: "Version"
metadata: "Metadata"
withNFiles: "{n} file(s)" withNFiles: "{n} file(s)"
monitor: "Monitor"
jobQueue: "Job Queue" jobQueue: "Job Queue"
cpuAndMemory: "CPU and Memory"
network: "Network"
disk: "Disk"
instanceInfo: "Instance Information" instanceInfo: "Instance Information"
statistics: "Statistics" statistics: "Statistics"
clearQueue: "Clear queue" clearQueue: "Clear queue"
@ -212,7 +187,7 @@ clearCachedFiles: "Clear cache"
clearCachedFilesConfirm: "Are you sure that you want to delete all cached remote files?" clearCachedFilesConfirm: "Are you sure that you want to delete all cached remote files?"
blockedInstances: "Blocked Instances" blockedInstances: "Blocked Instances"
blockedInstancesDescription: "List the hostnames of the instances that you want to\ blockedInstancesDescription: "List the hostnames of the instances that you want to\
\ block. Listed instances will no longer be able to communicate with this instance." \ block. Listed instances will no longer be able to communicate with this instance. Non-ASCII domain names must be encoded in punycode. You can use an asterisk (*) as a placeholder for zero or more character(s)."
muteAndBlock: "Mutes and Blocks" muteAndBlock: "Mutes and Blocks"
mutedUsers: "Muted users" mutedUsers: "Muted users"
blockedUsers: "Blocked users" blockedUsers: "Blocked users"
@ -234,9 +209,6 @@ all: "All"
subscribing: "Subscribing" subscribing: "Subscribing"
publishing: "Publishing" publishing: "Publishing"
notResponding: "Not responding" notResponding: "Not responding"
instanceFollowing: "Following on instance"
instanceFollowers: "Followers of instance"
instanceUsers: "Users of this instance"
changePassword: "Change password" changePassword: "Change password"
security: "Security" security: "Security"
retypedNotMatch: "The inputs do not match." retypedNotMatch: "The inputs do not match."
@ -252,7 +224,6 @@ lookup: "Lookup"
announcements: "Announcements" announcements: "Announcements"
imageUrl: "Image URL" imageUrl: "Image URL"
remove: "Delete" remove: "Delete"
removed: "Successfully deleted"
removeAreYouSure: "Are you sure that you want to remove \"{x}\"?" removeAreYouSure: "Are you sure that you want to remove \"{x}\"?"
deleteAreYouSure: "Are you sure that you want to delete \"{x}\"?" deleteAreYouSure: "Are you sure that you want to delete \"{x}\"?"
resetAreYouSure: "Really reset?" resetAreYouSure: "Really reset?"
@ -294,7 +265,6 @@ lightThemes: "Light themes"
darkThemes: "Dark themes" darkThemes: "Dark themes"
syncDeviceDarkMode: "Sync Dark Mode with your device settings" syncDeviceDarkMode: "Sync Dark Mode with your device settings"
drive: "Drive" drive: "Drive"
fileName: "Filename"
selectFile: "Select a file" selectFile: "Select a file"
selectFiles: "Select files" selectFiles: "Select files"
selectFolder: "Select a folder" selectFolder: "Select a folder"
@ -348,7 +318,6 @@ enableLocalTimeline: "Enable local timeline"
enableGlobalTimeline: "Enable global timeline" enableGlobalTimeline: "Enable global timeline"
disablingTimelinesInfo: "Adminstrators and Moderators will always have access to all\ disablingTimelinesInfo: "Adminstrators and Moderators will always have access to all\
\ timelines, even if they are not enabled." \ timelines, even if they are not enabled."
registration: "Register"
enableRegistration: "Enable new user registration" enableRegistration: "Enable new user registration"
invite: "Invite" invite: "Invite"
driveCapacityPerLocalAccount: "Drive capacity per local user" driveCapacityPerLocalAccount: "Drive capacity per local user"
@ -357,26 +326,13 @@ inMb: "In megabytes"
iconUrl: "Icon URL" iconUrl: "Icon URL"
bannerUrl: "Banner image URL" bannerUrl: "Banner image URL"
backgroundImageUrl: "Background image URL" backgroundImageUrl: "Background image URL"
basicInfo: "Basic info"
pinnedUsers: "Pinned users" pinnedUsers: "Pinned users"
pinnedUsersDescription: "List usernames separated by line breaks to be pinned in the\ pinnedUsersDescription: "List usernames separated by line breaks to be pinned in the\
\ \"Explore\" tab." \ \"Explore\" tab."
pinnedPages: "Pinned Pages"
pinnedPagesDescription: "Enter the paths of the Pages you want to pin to the top page\
\ of this instance, separated by line breaks."
pinnedClipId: "ID of the clip to pin"
pinnedNotes: "Pinned notes"
hcaptcha: "hCaptcha"
enableHcaptcha: "Enable hCaptcha"
hcaptchaSiteKey: "Site key" hcaptchaSiteKey: "Site key"
hcaptchaSecretKey: "Secret key" hcaptchaSecretKey: "Secret key"
recaptcha: "reCAPTCHA"
enableRecaptcha: "Enable reCAPTCHA"
recaptchaSiteKey: "Site key" recaptchaSiteKey: "Site key"
recaptchaSecretKey: "Secret key" recaptchaSecretKey: "Secret key"
avoidMultiCaptchaConfirm: "Using multiple Captcha systems may cause interference between\
\ them. Would you like to disable the other Captcha systems currently active? If\
\ you would like them to stay enabled, press cancel."
antennas: "Antennas" antennas: "Antennas"
manageAntennas: "Manage Antennas" manageAntennas: "Manage Antennas"
name: "Name" name: "Name"
@ -387,7 +343,6 @@ antennaKeywordsDescription: "Separate with spaces for an AND condition or with l
\ breaks for an OR condition." \ breaks for an OR condition."
notifyAntenna: "Notify about new notes" notifyAntenna: "Notify about new notes"
withFileAntenna: "Only notes with files" withFileAntenna: "Only notes with files"
enableServiceworker: "Enable ServiceWorker"
antennaUsersDescription: "List one username per line" antennaUsersDescription: "List one username per line"
caseSensitive: "Case sensitive" caseSensitive: "Case sensitive"
withReplies: "Include replies" withReplies: "Include replies"
@ -402,11 +357,8 @@ popularUsers: "Popular users"
recentlyUpdatedUsers: "Recently active users" recentlyUpdatedUsers: "Recently active users"
recentlyRegisteredUsers: "Newly joined users" recentlyRegisteredUsers: "Newly joined users"
recentlyDiscoveredUsers: "Newly discovered users" recentlyDiscoveredUsers: "Newly discovered users"
exploreUsersCount: "There are {count} users"
exploreFediverse: "Explore the Fediverse"
popularTags: "Popular tags" popularTags: "Popular tags"
userList: "Lists" userList: "Lists"
about: "About"
aboutMisskey: "About FoundKey" aboutMisskey: "About FoundKey"
administrator: "Administrator" administrator: "Administrator"
token: "Token" token: "Token"
@ -426,7 +378,6 @@ share: "Share"
notFound: "Not found" notFound: "Not found"
notFoundDescription: "No page corresponding to this URL could be found." notFoundDescription: "No page corresponding to this URL could be found."
uploadFolder: "Default folder for uploads" uploadFolder: "Default folder for uploads"
cacheClear: "Clear cache"
markAsReadAllNotifications: "Mark all notifications as read" markAsReadAllNotifications: "Mark all notifications as read"
markAsReadAllUnreadNotes: "Mark all notes as read" markAsReadAllUnreadNotes: "Mark all notes as read"
markAsReadAllTalkMessages: "Mark all messages as read" markAsReadAllTalkMessages: "Mark all messages as read"
@ -457,7 +408,6 @@ noMessagesYet: "No messages yet"
newMessageExists: "There are new messages" newMessageExists: "There are new messages"
onlyOneFileCanBeAttached: "You can only attach one file to a message" onlyOneFileCanBeAttached: "You can only attach one file to a message"
signinRequired: "Please sign in" signinRequired: "Please sign in"
invitations: "Invites"
invitationCode: "Invitation code" invitationCode: "Invitation code"
checking: "Checking..." checking: "Checking..."
available: "Available" available: "Available"
@ -477,7 +427,6 @@ or: "Or"
language: "Language" language: "Language"
uiLanguage: "User interface language" uiLanguage: "User interface language"
groupInvited: "You've been invited to a group" groupInvited: "You've been invited to a group"
aboutX: "About {x}"
useOsNativeEmojis: "Use OS native Emoji" useOsNativeEmojis: "Use OS native Emoji"
disableDrawer: "Don't use drawer-style menus" disableDrawer: "Don't use drawer-style menus"
youHaveNoGroups: "You have no groups" youHaveNoGroups: "You have no groups"
@ -487,27 +436,19 @@ signinHistory: "Login history"
signinHistoryExpires: "Data about past login attempts is automatically deleted after\ signinHistoryExpires: "Data about past login attempts is automatically deleted after\
\ 60 days to comply with privacy regulations." \ 60 days to comply with privacy regulations."
disableAnimatedMfm: "Disable MFM with animation" disableAnimatedMfm: "Disable MFM with animation"
doing: "Processing..."
category: "Category" category: "Category"
tags: "Tags" tags: "Tags"
docSource: "Source of this document"
createAccount: "Create account" createAccount: "Create account"
existingAccount: "Existing account" existingAccount: "Existing account"
regenerate: "Regenerate"
fontSize: "Font size" fontSize: "Font size"
noFollowRequests: "You don't have any pending follow requests" noFollowRequests: "You don't have any pending follow requests"
openImageInNewTab: "Open images in new tab" openImageInNewTab: "Open images in new tab"
dashboard: "Dashboard" dashboard: "Dashboard"
local: "Local" local: "Local"
remote: "Remote" remote: "Remote"
total: "Total"
weekOverWeekChanges: "Changes to last week"
dayOverDayChanges: "Changes to yesterday" dayOverDayChanges: "Changes to yesterday"
appearance: "Appearance" appearance: "Appearance"
clientSettings: "Client Settings" clientSettings: "Client Settings"
accountSettings: "Account Settings"
numberOfDays: "Number of days"
hideThisNote: "Hide this note"
showFeaturedNotesInTimeline: "Show featured notes in timelines" showFeaturedNotesInTimeline: "Show featured notes in timelines"
objectStorage: "Object Storage" objectStorage: "Object Storage"
useObjectStorage: "Use object storage" useObjectStorage: "Use object storage"
@ -534,8 +475,6 @@ objectStorageUseProxy: "Connect over Proxy"
objectStorageUseProxyDesc: "Turn this off if you are not going to use a Proxy for\ objectStorageUseProxyDesc: "Turn this off if you are not going to use a Proxy for\
\ API connections" \ API connections"
objectStorageSetPublicRead: "Set \"public-read\" on upload" objectStorageSetPublicRead: "Set \"public-read\" on upload"
serverLogs: "Server logs"
deleteAll: "Delete all"
showFixedPostForm: "Display the posting form at the top of the timeline" showFixedPostForm: "Display the posting form at the top of the timeline"
newNoteRecived: "There are new notes" newNoteRecived: "There are new notes"
sounds: "Sounds" sounds: "Sounds"
@ -546,7 +485,6 @@ popout: "Pop-out"
volume: "Volume" volume: "Volume"
masterVolume: "Master volume" masterVolume: "Master volume"
details: "Details" details: "Details"
chooseEmoji: "Select an emoji"
unableToProcess: "The operation could not be completed" unableToProcess: "The operation could not be completed"
recentUsed: "Recently used" recentUsed: "Recently used"
install: "Install" install: "Install"
@ -564,9 +502,7 @@ scratchpadDescription: "The Scratchpad provides an environment for AiScript expe
\ You can write, execute, and check the results of it interacting with FoundKey\ \ You can write, execute, and check the results of it interacting with FoundKey\
\ in it." \ in it."
output: "Output" output: "Output"
script: "Script"
updateRemoteUser: "Update remote user information" updateRemoteUser: "Update remote user information"
deleteAllFiles: "Delete all files"
deleteAllFilesConfirm: "Are you sure that you want to delete all files?" deleteAllFilesConfirm: "Are you sure that you want to delete all files?"
removeAllFollowing: "Unfollow all followed users" removeAllFollowing: "Unfollow all followed users"
removeAllFollowingDescription: "Executing this unfollows all accounts from {host}.\ removeAllFollowingDescription: "Executing this unfollows all accounts from {host}.\
@ -583,10 +519,7 @@ addItem: "Add Item"
relays: "Relays" relays: "Relays"
addRelay: "Add Relay" addRelay: "Add Relay"
inboxUrl: "Inbox URL" inboxUrl: "Inbox URL"
addedRelays: "Added Relays"
serviceworkerInfo: "Must be enabled for push notifications."
deletedNote: "Deleted note" deletedNote: "Deleted note"
invisibleNote: "Invisible note"
enableInfiniteScroll: "Automatically load more" enableInfiniteScroll: "Automatically load more"
visibility: "Visiblility" visibility: "Visiblility"
poll: "Poll" poll: "Poll"
@ -596,15 +529,12 @@ disablePlayer: "Close video player"
themeEditor: "Theme editor" themeEditor: "Theme editor"
description: "Description" description: "Description"
describeFile: "Add caption" describeFile: "Add caption"
enterFileDescription: "Enter caption"
author: "Author" author: "Author"
leaveConfirm: "There are unsaved changes. Do you want to discard them?" leaveConfirm: "There are unsaved changes. Do you want to discard them?"
manage: "Management" manage: "Management"
plugins: "Plugins" plugins: "Plugins"
deck: "Deck" deck: "Deck"
undeck: "Leave Deck"
useBlurEffectForModal: "Use blur effect for modals" useBlurEffectForModal: "Use blur effect for modals"
useFullReactionPicker: "Use full-size reaction picker"
width: "Width" width: "Width"
height: "Height" height: "Height"
large: "Big" large: "Big"
@ -617,7 +547,6 @@ disableAll: "Disable all"
tokenRequested: "Grant access to account" tokenRequested: "Grant access to account"
pluginTokenRequestedDescription: "This plugin will be able to use the permissions\ pluginTokenRequestedDescription: "This plugin will be able to use the permissions\
\ set here." \ set here."
notificationType: "Notification type"
edit: "Edit" edit: "Edit"
useStarForReactionFallback: "Use ★ as fallback if the reaction emoji is unknown" useStarForReactionFallback: "Use ★ as fallback if the reaction emoji is unknown"
emailServer: "Email server" emailServer: "Email server"
@ -644,10 +573,7 @@ userSaysSomething: "{name} said something"
makeActive: "Activate" makeActive: "Activate"
display: "Display" display: "Display"
copy: "Copy" copy: "Copy"
metrics: "Metrics"
overview: "Overview" overview: "Overview"
logs: "Logs"
delayed: "Delayed"
database: "Database" database: "Database"
channel: "Channels" channel: "Channels"
create: "Create" create: "Create"
@ -664,7 +590,6 @@ regenerateLoginTokenDescription: "Regenerates the token used internally during l
setMultipleBySeparatingWithSpace: "Separate multiple entries with spaces." setMultipleBySeparatingWithSpace: "Separate multiple entries with spaces."
fileIdOrUrl: "File ID or URL" fileIdOrUrl: "File ID or URL"
behavior: "Behavior" behavior: "Behavior"
sample: "Sample"
abuseReports: "Reports" abuseReports: "Reports"
reportAbuse: "Report" reportAbuse: "Report"
reportAbuseOf: "Report {name}" reportAbuseOf: "Report {name}"
@ -679,12 +604,8 @@ forwardReportIsAnonymous: "Instead of your account, an anonymous system account
send: "Send" send: "Send"
abuseMarkAsResolved: "Mark report as resolved" abuseMarkAsResolved: "Mark report as resolved"
openInNewTab: "Open in new tab" openInNewTab: "Open in new tab"
openInSideView: "Open in side view"
defaultNavigationBehaviour: "Default navigation behavior" defaultNavigationBehaviour: "Default navigation behavior"
editTheseSettingsMayBreakAccount: "Editing these settings may damage your account."
instanceTicker: "Instance information of notes" instanceTicker: "Instance information of notes"
waitingFor: "Waiting for {x}"
random: "Random"
system: "System" system: "System"
switchUi: "Switch UI" switchUi: "Switch UI"
desktop: "Desktop" desktop: "Desktop"
@ -723,7 +644,6 @@ loadRawImages: "Load original images instead of showing thumbnails"
disableShowingAnimatedImages: "Don't play animated images" disableShowingAnimatedImages: "Don't play animated images"
verificationEmailSent: "A verification email has been sent. Please follow the included\ verificationEmailSent: "A verification email has been sent. Please follow the included\
\ link to complete verification." \ link to complete verification."
notSet: "Not set"
emailVerified: "Email has been verified" emailVerified: "Email has been verified"
noteFavoritesCount: "Number of favorite notes" noteFavoritesCount: "Number of favorite notes"
pageLikesCount: "Number of liked Pages" pageLikesCount: "Number of liked Pages"
@ -731,8 +651,6 @@ pageLikedCount: "Number of received Page likes"
contact: "Contact" contact: "Contact"
useSystemFont: "Use the system's default font" useSystemFont: "Use the system's default font"
clips: "Clips" clips: "Clips"
experimentalFeatures: "Experimental features"
developer: "Developer"
makeExplorable: "Make account visible in \"Explore\"" makeExplorable: "Make account visible in \"Explore\""
makeExplorableDescription: "If you turn this off, your account will not show up in\ makeExplorableDescription: "If you turn this off, your account will not show up in\
\ the \"Explore\" section." \ the \"Explore\" section."
@ -744,28 +662,16 @@ wide: "Wide"
narrow: "Narrow" narrow: "Narrow"
reloadToApplySetting: "This setting will only apply after a page reload. Reload now?" reloadToApplySetting: "This setting will only apply after a page reload. Reload now?"
needReloadToApply: "A reload is required for this to be reflected." needReloadToApply: "A reload is required for this to be reflected."
showTitlebar: "Show title bar"
clearCache: "Clear cache" clearCache: "Clear cache"
onlineUsersCount: "{n} users are online" onlineUsersCount: "{n} users are online"
nUsers: "{n} Users"
nNotes: "{n} Notes"
myTheme: "My theme"
backgroundColor: "Background color" backgroundColor: "Background color"
accentColor: "Accent color" accentColor: "Accent color"
textColor: "Text color" textColor: "Text color"
saveAs: "Save as..." saveAs: "Save as..."
advanced: "Advanced"
value: "Value"
createdAt: "Created at" createdAt: "Created at"
updatedAt: "Updated at" updatedAt: "Updated at"
saveConfirm: "Save changes?"
deleteConfirm: "Really delete?" deleteConfirm: "Really delete?"
invalidValue: "Invalid value."
registry: "Registry"
closeAccount: "Close account" closeAccount: "Close account"
currentVersion: "Current version"
latestVersion: "Newest version"
youAreRunningUpToDateClient: "You are using the newest version of your client."
newVersionOfClientAvailable: "There is a newer version of your client available." newVersionOfClientAvailable: "There is a newer version of your client available."
usageAmount: "Usage" usageAmount: "Usage"
capacity: "Capacity" capacity: "Capacity"
@ -775,11 +681,9 @@ apply: "Apply"
receiveAnnouncementFromInstance: "Receive notifications from this instance" receiveAnnouncementFromInstance: "Receive notifications from this instance"
emailNotification: "Email notifications" emailNotification: "Email notifications"
publish: "Publish" publish: "Publish"
inChannelSearch: "Search in channel"
useReactionPickerForContextMenu: "Open reaction picker on right-click" useReactionPickerForContextMenu: "Open reaction picker on right-click"
typingUsers: "{users} is/are typing..." typingUsers: "{users} is/are typing..."
jumpToSpecifiedDate: "Jump to specific date" jumpToSpecifiedDate: "Jump to specific date"
showingPastTimeline: "Currently displaying an old timeline"
clear: "Return" clear: "Return"
markAllAsRead: "Mark all as read" markAllAsRead: "Mark all as read"
goBack: "Back" goBack: "Back"
@ -794,7 +698,6 @@ notSpecifiedMentionWarning: "This note contains mentions of users not included a
info: "About" info: "About"
userInfo: "User information" userInfo: "User information"
unknown: "Unknown" unknown: "Unknown"
onlineStatus: "Online status"
hideOnlineStatus: "Hide online status" hideOnlineStatus: "Hide online status"
hideOnlineStatusDescription: "Hiding your online status reduces the convenience of\ hideOnlineStatusDescription: "Hiding your online status reduces the convenience of\
\ some features such as the search." \ some features such as the search."
@ -824,22 +727,13 @@ gallery: "Gallery"
recentPosts: "Recent posts" recentPosts: "Recent posts"
popularPosts: "Popular posts" popularPosts: "Popular posts"
shareWithNote: "Share with note" shareWithNote: "Share with note"
expiration: "Deadline"
memo: "Memo"
priority: "Priority"
high: "High"
middle: "Medium"
low: "Low"
emailNotConfiguredWarning: "Email address not set." emailNotConfiguredWarning: "Email address not set."
ratio: "Ratio" ratio: "Ratio"
previewNoteText: "Show preview" previewNoteText: "Show preview"
customCss: "Custom CSS" customCss: "Custom CSS"
customCssWarn: "This setting should only be used if you know what it does. Entering\ customCssWarn: "This setting should only be used if you know what it does. Entering\
\ improper values may cause the client to stop functioning normally." \ improper values may cause the client to stop functioning normally."
global: "Global"
squareAvatars: "Display squared avatars" squareAvatars: "Display squared avatars"
sent: "Sent"
received: "Received"
searchResult: "Search results" searchResult: "Search results"
hashtags: "Hashtags" hashtags: "Hashtags"
troubleshooting: "Troubleshooting" troubleshooting: "Troubleshooting"
@ -960,9 +854,6 @@ _accountDelete:
requestAccountDelete: "Request account deletion" requestAccountDelete: "Request account deletion"
started: "Deletion has been started." started: "Deletion has been started."
inProgress: "Deletion is currently in progress" inProgress: "Deletion is currently in progress"
_ad:
back: "Back"
reduceFrequencyOfThisAd: "Show this ad less"
_forgotPassword: _forgotPassword:
enterEmail: "Enter the email address you used to register. A link with which you\ enterEmail: "Enter the email address you used to register. A link with which you\
\ can reset your password will then be sent to it." \ can reset your password will then be sent to it."
@ -983,7 +874,6 @@ _email:
_plugin: _plugin:
install: "Install plugins" install: "Install plugins"
installWarn: "Please do not install untrustworthy plugins." installWarn: "Please do not install untrustworthy plugins."
manage: "Manage plugins"
_registry: _registry:
scope: "Scope" scope: "Scope"
key: "Key" key: "Key"
@ -992,10 +882,8 @@ _registry:
createKey: "Create key" createKey: "Create key"
_aboutMisskey: _aboutMisskey:
about: "FoundKey is a fork of Misskey developed since July 2022." about: "FoundKey is a fork of Misskey developed since July 2022."
contributors: "Main contributors"
allContributors: "All contributors" allContributors: "All contributors"
source: "Source code" source: "Source code"
translation: "Translate FoundKey"
_nsfw: _nsfw:
respect: "Hide NSFW media" respect: "Hide NSFW media"
ignore: "Don't hide NSFW media" ignore: "Don't hide NSFW media"
@ -1122,68 +1010,6 @@ _theme:
alreadyInstalled: "This theme is already installed" alreadyInstalled: "This theme is already installed"
invalid: "The format of this theme is invalid" invalid: "The format of this theme is invalid"
make: "Make a theme" make: "Make a theme"
base: "Base"
addConstant: "Add constant"
constant: "Constant"
defaultValue: "Default value"
color: "Color"
refProp: "Reference a property"
refConst: "Reference a constant"
key: "Key"
func: "Functions"
funcKind: "Function type"
argument: "Argument"
basedProp: "Referenced property"
alpha: "Opacity"
darken: "Darken"
lighten: "Lighten"
inputConstantName: "Enter a name for this constant"
importInfo: "If you enter theme code here, you can import it to the theme editor"
deleteConstantConfirm: "Do you really want to delete the constant {const}?"
keys:
accent: "Accent"
bg: "Background"
fg: "Text"
focus: "Focus"
indicator: "Indicator"
panel: "Panel"
shadow: "Shadow"
header: "Header"
navBg: "Sidebar background"
navFg: "Sidebar text"
navHoverFg: "Sidebar text (Hover)"
navActive: "Sidebar text (Active)"
navIndicator: "Sidebar indicator"
link: "Link"
hashtag: "Hashtag"
mention: "Mention"
mentionMe: "Mentions (Me)"
renote: "Renote"
modalBg: "Modal background"
divider: "Divider"
scrollbarHandle: "Scrollbar handle"
scrollbarHandleHover: "Scrollbar handle (Hover)"
dateLabelFg: "Date label text"
infoBg: "Information background"
infoFg: "Information text"
infoWarnBg: "Warning background"
infoWarnFg: "Warning text"
cwBg: "CW button background"
cwFg: "CW button text"
cwHoverBg: "CW button background (Hover)"
toastBg: "Notification background"
toastFg: "Notification text"
buttonBg: "Button background"
buttonHoverBg: "Button background (Hover)"
inputBorder: "Input field border"
listItemHoverBg: "List item background (Hover)"
driveFolderBg: "Drive folder background"
wallpaperOverlay: "Wallpaper overlay"
badge: "Badge"
messageBg: "Chat background"
accentDarken: "Accent (Darkened)"
accentLighten: "Accent (Lightened)"
fgHighlighted: "Highlighted Text"
_sfx: _sfx:
note: "New note" note: "New note"
noteMy: "Own note" noteMy: "Own note"
@ -1464,7 +1290,6 @@ _relayStatus:
accepted: "Accepted" accepted: "Accepted"
rejected: "Rejected" rejected: "Rejected"
_notification: _notification:
fileUploaded: "File successfully uploaded"
youGotMention: "{name} mentioned you" youGotMention: "{name} mentioned you"
youGotReply: "{name} replied to you" youGotReply: "{name} replied to you"
youGotQuote: "{name} quoted you" youGotQuote: "{name} quoted you"
@ -1479,7 +1304,6 @@ _notification:
pollEnded: "Poll results have become available" pollEnded: "Poll results have become available"
emptyPushNotificationMessage: "Push notifications have been updated" emptyPushNotificationMessage: "Push notifications have been updated"
_types: _types:
all: "All"
follow: "New followers" follow: "New followers"
mention: "Mentions" mention: "Mentions"
reply: "Replies" reply: "Replies"
@ -1531,7 +1355,6 @@ _services:
_translationService: _translationService:
_deepl: _deepl:
authKey: "DeepL Auth Key" authKey: "DeepL Auth Key"
pro: "Pro Account"
_libreTranslate: _libreTranslate:
endpoint: "LibreTranslate API Endpoint" endpoint: "LibreTranslate API Endpoint"
authKey: "LibreTranslate Auth Key (optional)" authKey: "LibreTranslate Auth Key (optional)"

View file

@ -15,7 +15,6 @@ fetchingAsApObject: "Buscando en el fediverso"
ok: "OK" ok: "OK"
gotIt: "Entendido" gotIt: "Entendido"
cancel: "Cancelar" cancel: "Cancelar"
enterUsername: "Introduce el nombre de usuario"
renotedBy: "Renotado por {user}" renotedBy: "Renotado por {user}"
noNotes: "No hay notas" noNotes: "No hay notas"
noNotifications: "No hay notificaciones" noNotifications: "No hay notificaciones"
@ -31,16 +30,12 @@ login: "Iniciar sesión"
loggingIn: "Iniciando sesión" loggingIn: "Iniciando sesión"
logout: "Cerrar sesión" logout: "Cerrar sesión"
signup: "Registrarse" signup: "Registrarse"
uploading: "Cargando"
save: "Guardar" save: "Guardar"
users: "Usuarios" users: "Usuarios"
addUser: "Agregar usuario" addUser: "Agregar usuario"
favorite: "Favorito" favorite: "Favorito"
favorites: "Favoritos" favorites: "Favoritos"
unfavorite: "Quitar de favoritos" unfavorite: "Quitar de favoritos"
favorited: "Añadido a favoritos"
alreadyFavorited: "Ya había sido añadido a favoritos"
cantFavorite: "No fue añadido a favoritos"
pin: "Fijar" pin: "Fijar"
unpin: "Desfijar" unpin: "Desfijar"
copyContent: "Copiar contenido" copyContent: "Copiar contenido"
@ -52,7 +47,6 @@ deleteAndEditConfirm: "¿Quieres borrar y editar este nota? Las reacciones, reno
addToList: "Agregar a lista" addToList: "Agregar a lista"
sendMessage: "Énviar mensaje" sendMessage: "Énviar mensaje"
copyUsername: "Copiar nombre de usuario" copyUsername: "Copiar nombre de usuario"
searchUser: "Búsqueda de usuarios"
reply: "Responder" reply: "Responder"
loadMore: "Ver más" loadMore: "Ver más"
showMore: "Ver más" showMore: "Ver más"
@ -74,7 +68,6 @@ exportRequested: "Se ha solicitado la exportación. Puede tomar un tiempo. Cuand
\ la exportación, se añadirá en el drive" \ la exportación, se añadirá en el drive"
importRequested: "Se ha solicitado la importación. Puede tomar un tiempo." importRequested: "Se ha solicitado la importación. Puede tomar un tiempo."
lists: "Listas" lists: "Listas"
noLists: "No tiene listas"
note: "Notas" note: "Notas"
notes: "Notas" notes: "Notas"
following: "Siguiendo" following: "Siguiendo"
@ -100,21 +93,15 @@ followRequest: "Solicitud de seguimiento"
followRequests: "Solicitudes de seguimiento" followRequests: "Solicitudes de seguimiento"
unfollow: "Dejar de seguir" unfollow: "Dejar de seguir"
followRequestPending: "Solicitudes de seguimiento pendientes" followRequestPending: "Solicitudes de seguimiento pendientes"
enterEmoji: "Ingresar emojis"
renote: "Renotar" renote: "Renotar"
unrenote: "Quitar renota" unrenote: "Quitar renota"
renoted: "Renotado"
cantRenote: "No se puede renotar este post"
cantReRenote: "No se puede renotar una renota"
quote: "Citar" quote: "Citar"
pinnedNote: "Nota fijada" pinnedNote: "Nota fijada"
pinned: "Fijar"
you: "Tú" you: "Tú"
clickToShow: "Click para ver" clickToShow: "Click para ver"
sensitive: "Marcado como sensible" sensitive: "Marcado como sensible"
add: "Agregar" add: "Agregar"
reaction: "Reacción" reaction: "Reacción"
reactionSetting: "Reacciones para mostrar en el menú de reacciones"
reactionSettingDescription2: "Arrastre para reordenar, click para borrar, apriete\ reactionSettingDescription2: "Arrastre para reordenar, click para borrar, apriete\
\ la tecla + para añadir." \ la tecla + para añadir."
attachCancel: "Quitar adjunto" attachCancel: "Quitar adjunto"
@ -139,10 +126,7 @@ editWidgetsExit: "Terminar edición"
customEmojis: "Emojis personalizados" customEmojis: "Emojis personalizados"
emoji: "Emoji" emoji: "Emoji"
emojis: "Emoji" emojis: "Emoji"
emojiName: "Nombre del emoji"
emojiUrl: "URL de la imágen del emoji"
addEmoji: "Agregar emoji" addEmoji: "Agregar emoji"
settingGuide: "Configuración sugerida"
cacheRemoteFiles: "Mantener en cache los archivos remotos" cacheRemoteFiles: "Mantener en cache los archivos remotos"
cacheRemoteFilesDescription: "Si desactiva esta configuración, Los archivos remotos\ cacheRemoteFilesDescription: "Si desactiva esta configuración, Los archivos remotos\
\ se cargarán desde el link directo sin usar la caché. Con eso se puede ahorrar\ \ se cargarán desde el link directo sin usar la caché. Con eso se puede ahorrar\
@ -164,7 +148,6 @@ addAccount: "Agregar Cuenta"
loginFailed: "Error al iniciar sesión." loginFailed: "Error al iniciar sesión."
showOnRemote: "Ver en una instancia remota" showOnRemote: "Ver en una instancia remota"
general: "General" general: "General"
wallpaper: "Fondo de pantalla"
setWallpaper: "Establecer fondo de pantalla" setWallpaper: "Establecer fondo de pantalla"
removeWallpaper: "Quitar fondo de pantalla" removeWallpaper: "Quitar fondo de pantalla"
youHaveNoLists: "No tienes listas" youHaveNoLists: "No tienes listas"
@ -180,27 +163,19 @@ selectUser: "Elegir usuario"
recipient: "Recipiente" recipient: "Recipiente"
annotation: "Anotación" annotation: "Anotación"
federation: "Federación" federation: "Federación"
instances: "Instancia"
registeredAt: "Registrado en" registeredAt: "Registrado en"
latestRequestSentAt: "Ultimo pedido enviado" latestRequestSentAt: "Ultimo pedido enviado"
latestRequestReceivedAt: "Ultimo pedido recibido" latestRequestReceivedAt: "Ultimo pedido recibido"
latestStatus: "Último status" latestStatus: "Último status"
storageUsage: "Almacenamiento usado"
charts: "Chat" charts: "Chat"
perHour: "por hora" perHour: "por hora"
perDay: "por día" perDay: "por día"
stopActivityDelivery: "Dejar de enviar actividades" stopActivityDelivery: "Dejar de enviar actividades"
blockThisInstance: "Bloquear instancia" blockThisInstance: "Bloquear instancia"
operations: "Operaciones"
software: "Software" software: "Software"
version: "Versión" version: "Versión"
metadata: "Metadatos"
withNFiles: "{n} archivos" withNFiles: "{n} archivos"
monitor: "Monitor"
jobQueue: "Cola de trabajos" jobQueue: "Cola de trabajos"
cpuAndMemory: "CPU y Memoria"
network: "Red"
disk: "Disco"
instanceInfo: "información de la instancia" instanceInfo: "información de la instancia"
statistics: "Estadísticas" statistics: "Estadísticas"
clearQueue: "Limpiar cola" clearQueue: "Limpiar cola"
@ -234,9 +209,6 @@ all: "Todo"
subscribing: "Suscribiendo" subscribing: "Suscribiendo"
publishing: "Publicando" publishing: "Publicando"
notResponding: "Sin respuestas" notResponding: "Sin respuestas"
instanceFollowing: "Siguiendo instancias"
instanceFollowers: "Seguidores de la instancia"
instanceUsers: "Usuarios de la instancia"
changePassword: "Cambiar contraseña" changePassword: "Cambiar contraseña"
security: "Seguridad" security: "Seguridad"
retypedNotMatch: "No hay coincidencia" retypedNotMatch: "No hay coincidencia"
@ -252,7 +224,6 @@ lookup: "Búsqueda"
announcements: "Anuncios" announcements: "Anuncios"
imageUrl: "URL de la imágen" imageUrl: "URL de la imágen"
remove: "Borrar" remove: "Borrar"
removed: "Borrado"
removeAreYouSure: "¿Desea borrar \"{x}\"?" removeAreYouSure: "¿Desea borrar \"{x}\"?"
deleteAreYouSure: "¿Desea borrar \"{x}\"?" deleteAreYouSure: "¿Desea borrar \"{x}\"?"
resetAreYouSure: "¿Desea reestablecer?" resetAreYouSure: "¿Desea reestablecer?"
@ -294,7 +265,6 @@ lightThemes: "Tema claro"
darkThemes: "Tema oscuro" darkThemes: "Tema oscuro"
syncDeviceDarkMode: "Sincronice el Modo Oscuro con la configuración de su dispositivo" syncDeviceDarkMode: "Sincronice el Modo Oscuro con la configuración de su dispositivo"
drive: "Drive" drive: "Drive"
fileName: "Nombre de archivo"
selectFile: "Elegir archivo" selectFile: "Elegir archivo"
selectFiles: "Elegir archivos" selectFiles: "Elegir archivos"
selectFolder: "Seleccione una carpeta" selectFolder: "Seleccione una carpeta"
@ -348,7 +318,6 @@ enableLocalTimeline: "Habilitar linea de tiempo local"
enableGlobalTimeline: "Habilitar linea de tiempo global" enableGlobalTimeline: "Habilitar linea de tiempo global"
disablingTimelinesInfo: "Aunque se desactiven estas lineas de tiempo, por conveniencia\ disablingTimelinesInfo: "Aunque se desactiven estas lineas de tiempo, por conveniencia\
\ el administrador y los moderadores pueden seguir usándolos" \ el administrador y los moderadores pueden seguir usándolos"
registration: "Registro"
enableRegistration: "Permitir nuevos registros" enableRegistration: "Permitir nuevos registros"
invite: "Invitar" invite: "Invitar"
driveCapacityPerLocalAccount: "Capacidad del drive por usuario local" driveCapacityPerLocalAccount: "Capacidad del drive por usuario local"
@ -357,26 +326,13 @@ inMb: "En megabytes"
iconUrl: "URL de la imagen del avatar" iconUrl: "URL de la imagen del avatar"
bannerUrl: "URL de la imagen del banner" bannerUrl: "URL de la imagen del banner"
backgroundImageUrl: "URL de la imagen de fondo" backgroundImageUrl: "URL de la imagen de fondo"
basicInfo: "Información básica"
pinnedUsers: "Usuarios fijados" pinnedUsers: "Usuarios fijados"
pinnedUsersDescription: "Describir los usuarios que quiere fijar en la página \"Descubrir\"\ pinnedUsersDescription: "Describir los usuarios que quiere fijar en la página \"Descubrir\"\
\ separados por una linea nueva" \ separados por una linea nueva"
pinnedPages: "Páginas fijadas"
pinnedPagesDescription: "Describa las rutas de las páginas que desea fijar a la página\
\ principal de la instancia, separadas por lineas nuevas"
pinnedClipId: "Id del clip fijado"
pinnedNotes: "Nota fijada"
hcaptcha: "hCaptcha"
enableHcaptcha: "Habilitar hCaptcha"
hcaptchaSiteKey: "Clave del sitio" hcaptchaSiteKey: "Clave del sitio"
hcaptchaSecretKey: "Clave secreta" hcaptchaSecretKey: "Clave secreta"
recaptcha: "reCAPTCHA"
enableRecaptcha: "activar reCAPTCHA"
recaptchaSiteKey: "Clave del sitio" recaptchaSiteKey: "Clave del sitio"
recaptchaSecretKey: "Clave secreta" recaptchaSecretKey: "Clave secreta"
avoidMultiCaptchaConfirm: "El uso de múltiples Captchas puede causar interferencia.\
\ ¿Desea desactivar el otro Captcha? Puede dejar múltiples Captchas habilitadas\
\ presionando cancelar."
antennas: "Antenas" antennas: "Antenas"
manageAntennas: "Administrar antenas" manageAntennas: "Administrar antenas"
name: "Nombre" name: "Nombre"
@ -387,7 +343,6 @@ antennaKeywordsDescription: "Separar con espacios es una declaración AND, separ
\ con una linea nueva es una declaración OR" \ con una linea nueva es una declaración OR"
notifyAntenna: "Notificar nueva nota" notifyAntenna: "Notificar nueva nota"
withFileAntenna: "Sólo notas con archivos adjuntados" withFileAntenna: "Sólo notas con archivos adjuntados"
enableServiceworker: "Activar ServiceWorker"
antennaUsersDescription: "Elegir nombres de usuarios separados por una linea nueva" antennaUsersDescription: "Elegir nombres de usuarios separados por una linea nueva"
caseSensitive: "Distinguir mayúsculas de minúsculas" caseSensitive: "Distinguir mayúsculas de minúsculas"
withReplies: "Incluir respuestas" withReplies: "Incluir respuestas"
@ -402,11 +357,8 @@ popularUsers: "Usuarios populares"
recentlyUpdatedUsers: "Usuarios activos recientemente" recentlyUpdatedUsers: "Usuarios activos recientemente"
recentlyRegisteredUsers: "Usuarios registrados recientemente" recentlyRegisteredUsers: "Usuarios registrados recientemente"
recentlyDiscoveredUsers: "Usuarios descubiertos recientemente" recentlyDiscoveredUsers: "Usuarios descubiertos recientemente"
exploreUsersCount: "Hay {count} usuarios"
exploreFediverse: "Explorar fediverso"
popularTags: "Etiquetas populares" popularTags: "Etiquetas populares"
userList: "Lista" userList: "Lista"
about: "Información"
aboutMisskey: "Sobre FoundKey" aboutMisskey: "Sobre FoundKey"
administrator: "Administrador" administrator: "Administrador"
token: "Token" token: "Token"
@ -426,7 +378,6 @@ share: "Compartir"
notFound: "No se encuentra" notFound: "No se encuentra"
notFoundDescription: "No se encontró la página correspondiente a la URL elegida" notFoundDescription: "No se encontró la página correspondiente a la URL elegida"
uploadFolder: "Carpeta de subidas por defecto" uploadFolder: "Carpeta de subidas por defecto"
cacheClear: "Borrar caché"
markAsReadAllNotifications: "Marcar todas las notificaciones como leídas" markAsReadAllNotifications: "Marcar todas las notificaciones como leídas"
markAsReadAllUnreadNotes: "Marcar todas las notas como leídas" markAsReadAllUnreadNotes: "Marcar todas las notas como leídas"
markAsReadAllTalkMessages: "Marcar todos los chats como leídos" markAsReadAllTalkMessages: "Marcar todos los chats como leídos"
@ -457,7 +408,6 @@ noMessagesYet: "Aún no hay chat"
newMessageExists: "Tienes un mensaje nuevo" newMessageExists: "Tienes un mensaje nuevo"
onlyOneFileCanBeAttached: "Solo se puede añadir un archivo al mensaje" onlyOneFileCanBeAttached: "Solo se puede añadir un archivo al mensaje"
signinRequired: "Iniciar sesión" signinRequired: "Iniciar sesión"
invitations: "Invitar"
invitationCode: "Código de invitación" invitationCode: "Código de invitación"
checking: "Comprobando" checking: "Comprobando"
available: "Disponible" available: "Disponible"
@ -478,7 +428,6 @@ or: "O"
language: "Idioma" language: "Idioma"
uiLanguage: "Idioma de visualización de la interfaz" uiLanguage: "Idioma de visualización de la interfaz"
groupInvited: "Invitado al grupo" groupInvited: "Invitado al grupo"
aboutX: "Acerca de {x}"
useOsNativeEmojis: "Usa los emojis nativos de la plataforma" useOsNativeEmojis: "Usa los emojis nativos de la plataforma"
disableDrawer: "No mostrar los menús en cajones" disableDrawer: "No mostrar los menús en cajones"
youHaveNoGroups: "Sin grupos" youHaveNoGroups: "Sin grupos"
@ -487,27 +436,19 @@ joinOrCreateGroup: "Obtenga una invitación para unirse al grupos o puede crear
noHistory: "No hay datos en el historial" noHistory: "No hay datos en el historial"
signinHistory: "Historial de ingresos" signinHistory: "Historial de ingresos"
disableAnimatedMfm: "Deshabilitar MFM que tiene animaciones" disableAnimatedMfm: "Deshabilitar MFM que tiene animaciones"
doing: "Voy en camino"
category: "Categoría" category: "Categoría"
tags: "Etiqueta" tags: "Etiqueta"
docSource: "Fuente de este documento"
createAccount: "Crear cuenta" createAccount: "Crear cuenta"
existingAccount: "Cuenta existente" existingAccount: "Cuenta existente"
regenerate: "Regenerar"
fontSize: "Tamaño de la letra" fontSize: "Tamaño de la letra"
noFollowRequests: "No hay solicitudes de seguimiento" noFollowRequests: "No hay solicitudes de seguimiento"
openImageInNewTab: "Abrir imagen en nueva pestaña" openImageInNewTab: "Abrir imagen en nueva pestaña"
dashboard: "Panel de control" dashboard: "Panel de control"
local: "Local" local: "Local"
remote: "Remoto" remote: "Remoto"
total: "Total"
weekOverWeekChanges: "Dif semanal"
dayOverDayChanges: "Dif diaria" dayOverDayChanges: "Dif diaria"
appearance: "Apariencia" appearance: "Apariencia"
clientSettings: "Configuración del cliente" clientSettings: "Configuración del cliente"
accountSettings: "Ajustes de cuenta"
numberOfDays: "Cantidad de dias"
hideThisNote: "Ocultar esta nota"
showFeaturedNotesInTimeline: "Mostrar notas destacadas en la línea de tiempo" showFeaturedNotesInTimeline: "Mostrar notas destacadas en la línea de tiempo"
objectStorage: "Almacenamiento de objetos" objectStorage: "Almacenamiento de objetos"
useObjectStorage: "Usar almacenamiento de objetos" useObjectStorage: "Usar almacenamiento de objetos"
@ -535,8 +476,6 @@ objectStorageUseProxy: "Conectarse a través de Proxy"
objectStorageUseProxyDesc: "Desactive esto si no va a usar Proxy para la conexión\ objectStorageUseProxyDesc: "Desactive esto si no va a usar Proxy para la conexión\
\ de Almacenamiento de objetos" \ de Almacenamiento de objetos"
objectStorageSetPublicRead: "Seleccionar \"public-read\" al subir " objectStorageSetPublicRead: "Seleccionar \"public-read\" al subir "
serverLogs: "Registros del servidor"
deleteAll: "Eliminar todos"
showFixedPostForm: "Mostrar el formulario de las entradas encima de la línea de tiempo" showFixedPostForm: "Mostrar el formulario de las entradas encima de la línea de tiempo"
newNoteRecived: "Tienes una nota nuevo" newNoteRecived: "Tienes una nota nuevo"
sounds: "Sonidos" sounds: "Sonidos"
@ -547,7 +486,6 @@ popout: "Popout"
volume: "Volumen" volume: "Volumen"
masterVolume: "Volumen principal" masterVolume: "Volumen principal"
details: "Detalles" details: "Detalles"
chooseEmoji: "Elije un emoji"
unableToProcess: "La operación no se puede llevar a cabo" unableToProcess: "La operación no se puede llevar a cabo"
recentUsed: "Usado recientemente" recentUsed: "Usado recientemente"
install: "Instalación" install: "Instalación"
@ -564,9 +502,7 @@ 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 FoundKey." \ Puede escribir, ejecutar y verificar los resultados que interactúan con FoundKey."
output: "Salida" output: "Salida"
script: "Script"
updateRemoteUser: "Actualizar información de usuario remoto" updateRemoteUser: "Actualizar información de usuario remoto"
deleteAllFiles: "Borrar todos los archivos"
deleteAllFilesConfirm: "¿Desea borrar todos los archivos?" deleteAllFilesConfirm: "¿Desea borrar todos los archivos?"
removeAllFollowing: "Retener todos los siguientes" removeAllFollowing: "Retener todos los siguientes"
removeAllFollowingDescription: "Cancelar todos los siguientes del servidor {host}.\ removeAllFollowingDescription: "Cancelar todos los siguientes del servidor {host}.\
@ -583,10 +519,7 @@ addItem: "Agregar elemento"
relays: "Relés" relays: "Relés"
addRelay: "Agregar relé" addRelay: "Agregar relé"
inboxUrl: "Inbox URL" inboxUrl: "Inbox URL"
addedRelays: "Relés añadidos"
serviceworkerInfo: "Se necesita activar para usar las notificaciones push"
deletedNote: "Nota eliminada" deletedNote: "Nota eliminada"
invisibleNote: "Nota oculta"
enableInfiniteScroll: "Activar scroll infinito" enableInfiniteScroll: "Activar scroll infinito"
visibility: "Visibilidad" visibility: "Visibilidad"
poll: "Encuesta" poll: "Encuesta"
@ -596,15 +529,12 @@ disablePlayer: "Cerrar reproductor"
themeEditor: "Editor de temas" themeEditor: "Editor de temas"
description: "Descripción" description: "Descripción"
describeFile: "Añade una descripción" describeFile: "Añade una descripción"
enterFileDescription: "Introducir un título"
author: "Autor" author: "Autor"
leaveConfirm: "Hay modificaciones sin guardar. ¿Desea descartarlas?" leaveConfirm: "Hay modificaciones sin guardar. ¿Desea descartarlas?"
manage: "Administrar" manage: "Administrar"
plugins: "Plugins" plugins: "Plugins"
deck: "Deck" deck: "Deck"
undeck: "Quitar deck"
useBlurEffectForModal: "Usar efecto borroso en modales" useBlurEffectForModal: "Usar efecto borroso en modales"
useFullReactionPicker: "Reacción"
width: "Ancho" width: "Ancho"
height: "Altura" height: "Altura"
large: "Grande" large: "Grande"
@ -616,7 +546,6 @@ enableAll: "Activar todo"
disableAll: "Desactivar todo" disableAll: "Desactivar todo"
tokenRequested: "Permiso de acceso a la cuenta" tokenRequested: "Permiso de acceso a la cuenta"
pluginTokenRequestedDescription: "Este plugin podrá usar los permisos descritos aquí" pluginTokenRequestedDescription: "Este plugin podrá usar los permisos descritos aquí"
notificationType: "Tipo de notificación"
edit: "Editar" edit: "Editar"
useStarForReactionFallback: "En caso de que los emojis de reacciones no sean claros,\ useStarForReactionFallback: "En caso de que los emojis de reacciones no sean claros,\
\ usar en su lugar una estrella" \ usar en su lugar una estrella"
@ -641,10 +570,7 @@ userSaysSomething: "{name} dijo algo"
makeActive: "Activar" makeActive: "Activar"
display: "Apariencia" display: "Apariencia"
copy: "Copiar" copy: "Copiar"
metrics: "Métricas"
overview: "Resumen" overview: "Resumen"
logs: "Registros"
delayed: "atrasado"
database: "Base de datos" database: "Base de datos"
channel: "Canal" channel: "Canal"
create: "Crear" create: "Crear"
@ -661,7 +587,6 @@ regenerateLoginTokenDescription: "Regenerar el token usado internamente durante
setMultipleBySeparatingWithSpace: "Puedes añadir mas de uno, separado por espacios." setMultipleBySeparatingWithSpace: "Puedes añadir mas de uno, separado por espacios."
fileIdOrUrl: "Id del archivo o URL" fileIdOrUrl: "Id del archivo o URL"
behavior: "Comportamiento" behavior: "Comportamiento"
sample: "Muestra"
abuseReports: "Reportes" abuseReports: "Reportes"
reportAbuse: "Reportar" reportAbuse: "Reportar"
reportAbuseOf: "Reportar a {name}" reportAbuseOf: "Reportar a {name}"
@ -675,12 +600,8 @@ forwardReportIsAnonymous: "No puede ver su información de la instancia remota y
send: "Enviar" send: "Enviar"
abuseMarkAsResolved: "Marcar reporte como resuelto" abuseMarkAsResolved: "Marcar reporte como resuelto"
openInNewTab: "Abrir en una Nueva Pestaña" openInNewTab: "Abrir en una Nueva Pestaña"
openInSideView: "Abrir en una vista al costado"
defaultNavigationBehaviour: "Navegación por defecto" defaultNavigationBehaviour: "Navegación por defecto"
editTheseSettingsMayBreakAccount: "Editar estas configuraciones puede dañar su cuenta."
instanceTicker: "Información de notas de la instancia" instanceTicker: "Información de notas de la instancia"
waitingFor: "Esperando a {x}"
random: "Aleatorio"
system: "Sistema" system: "Sistema"
switchUi: "Cambiar interfaz de usuario" switchUi: "Cambiar interfaz de usuario"
desktop: "Escritorio" desktop: "Escritorio"
@ -721,7 +642,6 @@ disableShowingAnimatedImages: "No reproducir imágenes animadas"
verificationEmailSent: "Se le ha enviado un correo electrónico de confirmación. Por\ verificationEmailSent: "Se le ha enviado un correo electrónico de confirmación. Por\
\ favor, acceda al enlace proporcionado en el correo electrónico para completar\ \ favor, acceda al enlace proporcionado en el correo electrónico para completar\
\ la configuración." \ la configuración."
notSet: "Sin especificar"
emailVerified: "Su dirección de correo electrónico ha sido verificada." emailVerified: "Su dirección de correo electrónico ha sido verificada."
noteFavoritesCount: "Número de notas favoritas" noteFavoritesCount: "Número de notas favoritas"
pageLikesCount: "Número de favoritos en la página" pageLikesCount: "Número de favoritos en la página"
@ -729,8 +649,6 @@ pageLikedCount: "Número de favoritos de su página"
contact: "Contacto" contact: "Contacto"
useSystemFont: "Utilizar la tipografía por defecto del sistema" useSystemFont: "Utilizar la tipografía por defecto del sistema"
clips: "Clip" clips: "Clip"
experimentalFeatures: "Características experimentales"
developer: "Desarrolladores"
makeExplorable: "Hacer visible la cuenta en \"Explorar\"" makeExplorable: "Hacer visible la cuenta en \"Explorar\""
makeExplorableDescription: "Si desactiva esta opción, su cuenta no aparecerá en la\ makeExplorableDescription: "Si desactiva esta opción, su cuenta no aparecerá en la\
\ sección \"Explorar\"." \ sección \"Explorar\"."
@ -743,28 +661,16 @@ narrow: "Estrecho"
reloadToApplySetting: "Esta configuración sólo se aplicará después de recargar la\ reloadToApplySetting: "Esta configuración sólo se aplicará después de recargar la\
\ página. ¿Recargar ahora?" \ página. ¿Recargar ahora?"
needReloadToApply: "Se requiere un reinicio para la aplicar los cambios" needReloadToApply: "Se requiere un reinicio para la aplicar los cambios"
showTitlebar: "Mostrar la barra de título"
clearCache: "Limpiar caché" clearCache: "Limpiar caché"
onlineUsersCount: "{n} usuarios en línea" onlineUsersCount: "{n} usuarios en línea"
nUsers: "{n} Usuarios"
nNotes: "{n} Notas"
myTheme: "Mi Tema"
backgroundColor: "Fondo" backgroundColor: "Fondo"
accentColor: "Acento" accentColor: "Acento"
textColor: "Texto" textColor: "Texto"
saveAs: "Guardar como…" saveAs: "Guardar como…"
advanced: "Avanzado"
value: "Valores"
createdAt: "Fecha de creación" createdAt: "Fecha de creación"
updatedAt: "Actualizado" updatedAt: "Actualizado"
saveConfirm: "¿Guardar cambios?"
deleteConfirm: "¿Desea eliminarlo?" deleteConfirm: "¿Desea eliminarlo?"
invalidValue: "Este no es un valor válido."
registry: "Registro"
closeAccount: "Cerrar cuenta" closeAccount: "Cerrar cuenta"
currentVersion: "Versión actual"
latestVersion: "Última versión"
youAreRunningUpToDateClient: "Está utilizando la versión más reciente de su cliente."
newVersionOfClientAvailable: "Hay una versión más nueva de su cliente disponible." newVersionOfClientAvailable: "Hay una versión más nueva de su cliente disponible."
usageAmount: "Uso" usageAmount: "Uso"
capacity: "Capacidad" capacity: "Capacidad"
@ -774,12 +680,10 @@ apply: "Aplicar"
receiveAnnouncementFromInstance: "Recibir notificaciones de la instancia" receiveAnnouncementFromInstance: "Recibir notificaciones de la instancia"
emailNotification: "Notificaciones por correo electrónico" emailNotification: "Notificaciones por correo electrónico"
publish: "Publicar" publish: "Publicar"
inChannelSearch: "Buscar en el canal"
useReactionPickerForContextMenu: "Haga clic con el botón derecho para abrir el menu\ useReactionPickerForContextMenu: "Haga clic con el botón derecho para abrir el menu\
\ de reacciones" \ de reacciones"
typingUsers: "{users} está escribiendo" typingUsers: "{users} está escribiendo"
jumpToSpecifiedDate: "Saltar a una fecha específica" jumpToSpecifiedDate: "Saltar a una fecha específica"
showingPastTimeline: "Mostrar líneas de tiempo antiguas"
clear: "Limpiar" clear: "Limpiar"
markAllAsRead: "Marcar todo como leído" markAllAsRead: "Marcar todo como leído"
goBack: "Deseleccionar" goBack: "Deseleccionar"
@ -792,7 +696,6 @@ notSpecifiedMentionWarning: "Algunas menciones no están incluidas en el destino
info: "Información" info: "Información"
userInfo: "Información del usuario" userInfo: "Información del usuario"
unknown: "Desconocido" unknown: "Desconocido"
onlineStatus: "En línea"
hideOnlineStatus: "mostrarse como desconectado" hideOnlineStatus: "mostrarse como desconectado"
hideOnlineStatusDescription: "Ocultar su estado en línea puede reducir la eficacia\ hideOnlineStatusDescription: "Ocultar su estado en línea puede reducir la eficacia\
\ de algunas funciones, como la búsqueda" \ de algunas funciones, como la búsqueda"
@ -819,22 +722,13 @@ gallery: "Galería"
recentPosts: "Posts recientes" recentPosts: "Posts recientes"
popularPosts: "Más vistos" popularPosts: "Más vistos"
shareWithNote: "Compartir con una nota" shareWithNote: "Compartir con una nota"
expiration: "Termina el"
memo: "Notas"
priority: "Prioridad"
high: "Alta"
middle: "Mediano"
low: "Baja"
emailNotConfiguredWarning: "No se ha configurado una dirección de correo electrónico." emailNotConfiguredWarning: "No se ha configurado una dirección de correo electrónico."
ratio: "Proporción" ratio: "Proporción"
previewNoteText: "Mostrar vista preliminar" previewNoteText: "Mostrar vista preliminar"
customCss: "CSS personalizado" customCss: "CSS personalizado"
customCssWarn: "Este ajuste sólo debe utilizarse si se sabe lo que hace. Introducir\ customCssWarn: "Este ajuste sólo debe utilizarse si se sabe lo que hace. Introducir\
\ valores inadecuados puede hacer que el cliente deje de funcionar con normalidad." \ valores inadecuados puede hacer que el cliente deje de funcionar con normalidad."
global: "Global"
squareAvatars: "Mostrar iconos cuadrados" squareAvatars: "Mostrar iconos cuadrados"
sent: "Enviar"
received: "Recibido"
searchResult: "Resultados de búsqueda" searchResult: "Resultados de búsqueda"
hashtags: "Hashtag" hashtags: "Hashtag"
troubleshooting: "Solución de problemas" troubleshooting: "Solución de problemas"
@ -874,8 +768,6 @@ _ffVisibility:
public: "Publicar" public: "Publicar"
_accountDelete: _accountDelete:
accountDelete: "Eliminar Cuenta" accountDelete: "Eliminar Cuenta"
_ad:
back: "Deseleccionar"
_forgotPassword: _forgotPassword:
contactAdmin: "Esta instancia no admite el uso de direcciones de correo electrónico,\ contactAdmin: "Esta instancia no admite el uso de direcciones de correo electrónico,\
\ póngase en contacto con el administrador de la instancia para restablecer su\ \ póngase en contacto con el administrador de la instancia para restablecer su\
@ -893,7 +785,6 @@ _email:
_plugin: _plugin:
install: "Instalar plugins" install: "Instalar plugins"
installWarn: "Por favor no instale plugins que no son de confianza" installWarn: "Por favor no instale plugins que no son de confianza"
manage: "Gestionar plugins"
_registry: _registry:
scope: "Alcance" scope: "Alcance"
key: "Clave" key: "Clave"
@ -903,10 +794,8 @@ _registry:
_aboutMisskey: _aboutMisskey:
about: "FoundKey es un software de código abierto, desarrollado por syuilo desde\ about: "FoundKey es un software de código abierto, desarrollado por syuilo desde\
\ el 2014" \ el 2014"
contributors: "Principales colaboradores"
allContributors: "Todos los colaboradores" allContributors: "Todos los colaboradores"
source: "Código fuente" source: "Código fuente"
translation: "Traducir FoundKey"
_nsfw: _nsfw:
respect: "Ocultar medios NSFW" respect: "Ocultar medios NSFW"
ignore: "No esconder medios NSFW " ignore: "No esconder medios NSFW "
@ -987,68 +876,6 @@ _theme:
alreadyInstalled: "Este tema ya está instalado" alreadyInstalled: "Este tema ya está instalado"
invalid: "El formato del tema no es válido" invalid: "El formato del tema no es válido"
make: "Crear tema" make: "Crear tema"
base: "Base"
addConstant: "Agregar constante"
constant: "Constante"
defaultValue: "Valor predeterminado"
color: "Color"
refProp: "Hacer referencia a propiedad"
refConst: "Hacer referencia a constante"
key: "Clave"
func: "funciones"
funcKind: "Tipo de función"
argument: "Argumento"
basedProp: "Nombre de la propiedad referenciada"
alpha: "Opacidad"
darken: "Oscuridad"
lighten: "Brillo"
inputConstantName: "Por favor ingrese el nombre de la constante"
importInfo: "Pegando el código del tema aquí, puede importarlo al editor"
deleteConstantConfirm: "¿Desea borrar la constante {const}?"
keys:
accent: "Acento"
bg: "Fondo"
fg: "Texto"
focus: "Enfoque"
indicator: "Indicador"
panel: "Panel"
shadow: "Sombra"
header: "Cabezal"
navBg: "Fondo de la barra lateral"
navFg: "Texto de la barra lateral"
navHoverFg: "Texto de la barra lateral (hover)"
navActive: "Texto de la barra lateral (activo)"
navIndicator: "Indicador de la barra lateral"
link: "Vínculo"
hashtag: "Hashtag"
mention: "Menciones"
mentionMe: "Menciones (yo)"
renote: "Renotar"
modalBg: "Fondo modal"
divider: "Divisor"
scrollbarHandle: "Cuadro de la barra de desplazamiento"
scrollbarHandleHover: "Cuadro de la barra de desplazamiento (hover)"
dateLabelFg: "Texto de la etiqueta de fecha"
infoBg: "Fondo de información"
infoFg: "Texto de información"
infoWarnBg: "Fondo de advertencias"
infoWarnFg: "Texto de advertencias"
cwBg: "Fondo del botón CW"
cwFg: "Texto del botón CW"
cwHoverBg: "Fondo del botón CW (hover)"
toastBg: "Fondo de notificaciones"
toastFg: "Texto de notificaciones"
buttonBg: "Fondo de botón"
buttonHoverBg: "Fondo de botón (hover)"
inputBorder: "Borde de los campos de entrada"
listItemHoverBg: "Fondo de elemento de listas (hover)"
driveFolderBg: "Fondo de capeta del drive"
wallpaperOverlay: "Transparencia del fondo de pantalla"
badge: "Medalla"
messageBg: "Fondo de chat"
accentDarken: "Acento (oscuro)"
accentLighten: "Acento (claro)"
fgHighlighted: "Texto resaltado"
_sfx: _sfx:
note: "Notas" note: "Notas"
noteMy: "Nota (a mí mismo)" noteMy: "Nota (a mí mismo)"
@ -1311,7 +1138,6 @@ _relayStatus:
accepted: "Aceptar" accepted: "Aceptar"
rejected: "Rechazada" rejected: "Rechazada"
_notification: _notification:
fileUploaded: "Archivo subido"
youGotMention: "Mención de {name}" youGotMention: "Mención de {name}"
youGotReply: "Respuesta de {name}" youGotReply: "Respuesta de {name}"
youGotQuote: "Citado por {name}" youGotQuote: "Citado por {name}"
@ -1324,7 +1150,6 @@ _notification:
yourFollowRequestAccepted: "Tu solicitud de seguimiento fue aceptada" yourFollowRequestAccepted: "Tu solicitud de seguimiento fue aceptada"
youWereInvitedToGroup: "Invitado al grupo" youWereInvitedToGroup: "Invitado al grupo"
_types: _types:
all: "Todo"
follow: "Siguiendo" follow: "Siguiendo"
mention: "Menciones" mention: "Menciones"
reply: "Respuestas" reply: "Respuestas"

View file

@ -15,7 +15,6 @@ fetchingAsApObject: "Récupération depuis le fédiverse …"
ok: "OK" ok: "OK"
gotIt: "Jai compris !" gotIt: "Jai compris !"
cancel: "Annuler" cancel: "Annuler"
enterUsername: "Entrer un nom dutilisateur·rice"
renotedBy: "Renoté par {user}" renotedBy: "Renoté par {user}"
noNotes: "Aucune note" noNotes: "Aucune note"
noNotifications: "Aucune notification" noNotifications: "Aucune notification"
@ -32,16 +31,12 @@ login: "Se connecter"
loggingIn: "Connexion en cours" loggingIn: "Connexion en cours"
logout: "Se déconnecter" logout: "Se déconnecter"
signup: "Sinscrire" signup: "Sinscrire"
uploading: "Envoi en cours"
save: "Enregistrer" save: "Enregistrer"
users: "Utilisateur·rice·s" users: "Utilisateur·rice·s"
addUser: "Ajouter un·e utilisateur·rice" addUser: "Ajouter un·e utilisateur·rice"
favorite: "Ajouter aux favoris" favorite: "Ajouter aux favoris"
favorites: "Favoris" favorites: "Favoris"
unfavorite: "Retirer des favoris" unfavorite: "Retirer des favoris"
favorited: "Ajouté à mes favoris"
alreadyFavorited: "Déjà ajouté aux favoris."
cantFavorite: "Impossible d'ajouter aux favoris."
pin: "Épingler sur le profil" pin: "Épingler sur le profil"
unpin: "Désépingler" unpin: "Désépingler"
copyContent: "Copier le contenu" copyContent: "Copier le contenu"
@ -53,9 +48,8 @@ deleteAndEditConfirm: "Êtes-vous sûr·e de vouloir supprimer cette note et la
addToList: "Ajouter à une liste" addToList: "Ajouter à une liste"
sendMessage: "Envoyer un message" sendMessage: "Envoyer un message"
copyUsername: "Copier le nom dutilisateur·rice" copyUsername: "Copier le nom dutilisateur·rice"
searchUser: "Chercher un·e utilisateur·rice"
reply: "Répondre" reply: "Répondre"
loadMore: "Afficher plus" loadMore: "Afficher plus"
showMore: "Afficher plus" showMore: "Afficher plus"
youGotNewFollower: "Vous suit" youGotNewFollower: "Vous suit"
receiveFollowRequest: "Demande dabonnement reçue" receiveFollowRequest: "Demande dabonnement reçue"
@ -75,7 +69,6 @@ exportRequested: "Vous avez demandé une exportation. Lopération pourrait pr
\ un peu de temps. Une terminée, le fichier résultant sera ajouté au Drive." \ un peu de temps. Une terminée, le fichier résultant sera ajouté au Drive."
importRequested: "Vous avez initié un import. Cela pourrait prendre un peu de temps." importRequested: "Vous avez initié un import. Cela pourrait prendre un peu de temps."
lists: "Listes" lists: "Listes"
noLists: "Vous navez aucune liste"
note: "Notes" note: "Notes"
notes: "Notes" notes: "Notes"
following: "Abonnements" following: "Abonnements"
@ -102,21 +95,15 @@ followRequest: "Demande dabonnement"
followRequests: "Demandes dabonnement" followRequests: "Demandes dabonnement"
unfollow: "Se désabonner" unfollow: "Se désabonner"
followRequestPending: "Demande d'abonnement en attente de confirmation" followRequestPending: "Demande d'abonnement en attente de confirmation"
enterEmoji: "Insérer un émoji"
renote: "Renoter" renote: "Renoter"
unrenote: "Annuler la Renote" unrenote: "Annuler la Renote"
renoted: "Renoté !"
cantRenote: "Ce message ne peut pas être renoté."
cantReRenote: "Impossible de renoter une Renote."
quote: "Citer" quote: "Citer"
pinnedNote: "Note épinglée" pinnedNote: "Note épinglée"
pinned: "Épingler sur le profil"
you: "Vous" you: "Vous"
clickToShow: "Cliquer pour afficher" clickToShow: "Cliquer pour afficher"
sensitive: "Contenu sensible" sensitive: "Contenu sensible"
add: "Ajouter" add: "Ajouter"
reaction: "Réactions" reaction: "Réactions"
reactionSetting: "Réactions à afficher dans le sélecteur de réactions"
reactionSettingDescription2: "Déplacer pour réorganiser, cliquer pour effacer, utiliser\ reactionSettingDescription2: "Déplacer pour réorganiser, cliquer pour effacer, utiliser\
\ « + » pour ajouter." \ « + » pour ajouter."
attachCancel: "Supprimer le fichier attaché" attachCancel: "Supprimer le fichier attaché"
@ -141,10 +128,7 @@ editWidgetsExit: "Valider les modifications"
customEmojis: "Émojis personnalisés" customEmojis: "Émojis personnalisés"
emoji: "Émoji" emoji: "Émoji"
emojis: "Émoji" emojis: "Émoji"
emojiName: "Nom de lémoji"
emojiUrl: "URL de lémoji"
addEmoji: "Ajouter un émoji" addEmoji: "Ajouter un émoji"
settingGuide: "Configuration proposée"
cacheRemoteFiles: "Mise en cache des fichiers distants" cacheRemoteFiles: "Mise en cache des fichiers distants"
cacheRemoteFilesDescription: "Lorsque cette option est désactivée, les fichiers distants\ cacheRemoteFilesDescription: "Lorsque cette option est désactivée, les fichiers distants\
\ sont chargés directement depuis linstance distante. La désactiver diminuera certes\ \ sont chargés directement depuis linstance distante. La désactiver diminuera certes\
@ -164,7 +148,6 @@ addAccount: "Ajouter un compte"
loginFailed: "Échec de la connexion" loginFailed: "Échec de la connexion"
showOnRemote: "Voir sur linstance distante" showOnRemote: "Voir sur linstance distante"
general: "Général" general: "Général"
wallpaper: "Fond décran"
setWallpaper: "Définir le fond décran" setWallpaper: "Définir le fond décran"
removeWallpaper: "Supprimer le fond décran" removeWallpaper: "Supprimer le fond décran"
youHaveNoLists: "Vous navez aucune liste" youHaveNoLists: "Vous navez aucune liste"
@ -181,27 +164,19 @@ selectUser: "Sélectionner un·e utilisateur·rice"
recipient: "Destinataire" recipient: "Destinataire"
annotation: "Commentaires" annotation: "Commentaires"
federation: "Fédération" federation: "Fédération"
instances: "Instance"
registeredAt: "Premier contact le" registeredAt: "Premier contact le"
latestRequestSentAt: "Dernière requête envoyée" latestRequestSentAt: "Dernière requête envoyée"
latestRequestReceivedAt: "Dernière requête reçue" latestRequestReceivedAt: "Dernière requête reçue"
latestStatus: "Dernier statut" latestStatus: "Dernier statut"
storageUsage: "Stockage utilisé"
charts: "Graphiques" charts: "Graphiques"
perHour: "par heure" perHour: "par heure"
perDay: "par jour" perDay: "par jour"
stopActivityDelivery: "Arrêter lenvoi de lactivité" stopActivityDelivery: "Arrêter lenvoi de lactivité"
blockThisInstance: "Bloquer cette instance" blockThisInstance: "Bloquer cette instance"
operations: "Opérations"
software: "Logiciel" software: "Logiciel"
version: "Version" version: "Version"
metadata: "Métadonnées"
withNFiles: "{n} fichier(s)" withNFiles: "{n} fichier(s)"
monitor: "Contrôle"
jobQueue: "File dattente" jobQueue: "File dattente"
cpuAndMemory: "Processeur et mémoire"
network: "Réseau"
disk: "Disque"
instanceInfo: "Informations sur linstance" instanceInfo: "Informations sur linstance"
statistics: "Statistiques" statistics: "Statistiques"
clearQueue: "Vider la file dattente" clearQueue: "Vider la file dattente"
@ -223,7 +198,7 @@ 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 FoundKey est terminée ! Veuillez créer un compte administrateur." intro: "Linstallation de FoundKey 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"
default: "Par défaut" default: "Par défaut"
noCustomEmojis: "Il n'y a pas démoji" noCustomEmojis: "Il n'y a pas démoji"
@ -235,9 +210,6 @@ all: "Tous"
subscribing: "Abonné" subscribing: "Abonné"
publishing: "Publié" publishing: "Publié"
notResponding: "Ne répond pas" notResponding: "Ne répond pas"
instanceFollowing: "Abonnements de l'instance"
instanceFollowers: "Abonné·e·s de linstance"
instanceUsers: "Utilisateur·rice·s de cette linstance"
changePassword: "Modifier votre mot de passe" changePassword: "Modifier votre mot de passe"
security: "Sécurité" security: "Sécurité"
retypedNotMatch: "Les saisies ne correspondent pas." retypedNotMatch: "Les saisies ne correspondent pas."
@ -253,9 +225,8 @@ lookup: "Recherche"
announcements: "Annonces" announcements: "Annonces"
imageUrl: "URL de limage" imageUrl: "URL de limage"
remove: "Supprimer" remove: "Supprimer"
removed: "Supprimé" removeAreYouSure: "Êtes-vous sûr·e de vouloir supprimer \"{x}\" ?"
removeAreYouSure: "Êtes-vous sûr·e de vouloir supprimer「{x}」?" deleteAreYouSure: "Êtes-vous sûr·e de vouloir supprimer \"{x}\" ?"
deleteAreYouSure: "Êtes-vous sûr·e de vouloir supprimer「{x}」?"
resetAreYouSure: "Voulez-vous réinitialiser ?" resetAreYouSure: "Voulez-vous réinitialiser ?"
saved: "Enregistré" saved: "Enregistré"
messaging: "Discuter" messaging: "Discuter"
@ -294,7 +265,6 @@ lightThemes: "Thèmes clairs"
darkThemes: "Thèmes sombres" darkThemes: "Thèmes sombres"
syncDeviceDarkMode: "Utiliser le mode sombre de votre appareil" syncDeviceDarkMode: "Utiliser le mode sombre de votre appareil"
drive: "Drive" drive: "Drive"
fileName: "Nom du fichier"
selectFile: "Choisir le fichier" selectFile: "Choisir le fichier"
selectFiles: "Choisir les fichiers" selectFiles: "Choisir les fichiers"
selectFolder: "Sélectionnez un dossier" selectFolder: "Sélectionnez un dossier"
@ -323,7 +293,7 @@ whenServerDisconnected: "Lorsque la connexion au serveur est perdue"
disconnectedFromServer: "Déconnecté·e du serveur" disconnectedFromServer: "Déconnecté·e du serveur"
reload: "Rafraîchir" reload: "Rafraîchir"
doNothing: "Ignorer" doNothing: "Ignorer"
reloadConfirm: "Voulez-vous recharger?" reloadConfirm: "Voulez-vous rafraichir la timeline ?"
watch: "Surveiller" watch: "Surveiller"
unwatch: "Ne plus surveiller" unwatch: "Ne plus surveiller"
accept: "Autoriser" accept: "Autoriser"
@ -348,7 +318,6 @@ enableLocalTimeline: "Activer le fil local"
enableGlobalTimeline: "Activer le fil global" enableGlobalTimeline: "Activer le fil global"
disablingTimelinesInfo: "Même si vous désactivez ces fils, les administrateur·rice·s\ disablingTimelinesInfo: "Même si vous désactivez ces fils, les administrateur·rice·s\
\ et les modérateur·rice·s pourront toujours y accéder." \ et les modérateur·rice·s pourront toujours y accéder."
registration: "Sinscrire"
enableRegistration: "Autoriser les nouvelles inscriptions" enableRegistration: "Autoriser les nouvelles inscriptions"
invite: "Inviter" invite: "Inviter"
driveCapacityPerLocalAccount: "Volume du Drive par utilisateur local" driveCapacityPerLocalAccount: "Volume du Drive par utilisateur local"
@ -357,26 +326,13 @@ inMb: "en mégaoctets"
iconUrl: "URL de l'icône" iconUrl: "URL de l'icône"
bannerUrl: "URL de limage de la bannière" bannerUrl: "URL de limage de la bannière"
backgroundImageUrl: "URL de l'image d'arrière-plan" backgroundImageUrl: "URL de l'image d'arrière-plan"
basicInfo: "Informations basiques"
pinnedUsers: "Utilisateur·rice épinglé·e" pinnedUsers: "Utilisateur·rice épinglé·e"
pinnedUsersDescription: "Listez les utilisateur·rice·s que vous souhaitez voir épinglé·e·s\ pinnedUsersDescription: "Listez les utilisateur·rice·s que vous souhaitez voir épinglé·e·s\
\ sur la page \"Découvrir\", un·e par ligne." \ sur la page \"Découvrir\", un·e par ligne."
pinnedPages: "Pages épinglées"
pinnedPagesDescription: "Inscrivez le chemin des pages que vous souhaitez épingler\
\ en haut de la page de l'instance. Séparez les pages d'un retour à la ligne."
pinnedClipId: "Identifiant du clip épinglé"
pinnedNotes: "Note épinglée"
hcaptcha: "hCaptcha"
enableHcaptcha: "Activer hCaptcha"
hcaptchaSiteKey: "Clé du site" hcaptchaSiteKey: "Clé du site"
hcaptchaSecretKey: "Clé secrète" hcaptchaSecretKey: "Clé secrète"
recaptcha: "reCAPTCHA"
enableRecaptcha: "Activer reCAPTCHA"
recaptchaSiteKey: "Clé du site" recaptchaSiteKey: "Clé du site"
recaptchaSecretKey: "Clé secrète" recaptchaSecretKey: "Clé secrète"
avoidMultiCaptchaConfirm: "Lutilisation de plusieurs Captchas peut provoquer des\
\ interférences. Souhaitez-vous désactiver lautre Captcha ? Vous pouvez laisser\
\ plusieurs Captcha activés en appuyant sur Annuler."
antennas: "Antennes" antennas: "Antennes"
manageAntennas: "Gestion des antennes" manageAntennas: "Gestion des antennes"
name: "Nom" name: "Nom"
@ -387,7 +343,6 @@ antennaKeywordsDescription: "Séparer avec des espaces pour la condition AND. S
\ avec un saut de ligne pour une condition OR." \ avec un saut de ligne pour une condition OR."
notifyAntenna: "Je souhaite recevoir les notifications des nouvelles notes" notifyAntenna: "Je souhaite recevoir les notifications des nouvelles notes"
withFileAntenna: "Notes ayant des attachements uniquement" withFileAntenna: "Notes ayant des attachements uniquement"
enableServiceworker: "Activer ServiceWorker"
antennaUsersDescription: "Saisissez un seul nom dutilisateur·rice par ligne" antennaUsersDescription: "Saisissez un seul nom dutilisateur·rice par ligne"
caseSensitive: "Sensible à la casse" caseSensitive: "Sensible à la casse"
withReplies: "Inclure les réponses" withReplies: "Inclure les réponses"
@ -404,11 +359,8 @@ popularUsers: "Utilisateur·rice·s populaires"
recentlyUpdatedUsers: "Utilisateur·rice·s actif·ve·s récemment" recentlyUpdatedUsers: "Utilisateur·rice·s actif·ve·s récemment"
recentlyRegisteredUsers: "Utilisateur·rice·s récemment inscrit·e·s" recentlyRegisteredUsers: "Utilisateur·rice·s récemment inscrit·e·s"
recentlyDiscoveredUsers: "Utilisateur·rice·s récemment découvert·e·s" recentlyDiscoveredUsers: "Utilisateur·rice·s récemment découvert·e·s"
exploreUsersCount: "Il y a {count} utilisateur·rice·s"
exploreFediverse: "Explorer le Fediverse"
popularTags: "Mots-clés populaires" popularTags: "Mots-clés populaires"
userList: "Listes" userList: "Listes"
about: "Informations"
aboutMisskey: "À propos de FoundKey" aboutMisskey: "À propos de FoundKey"
administrator: "Administrateur" administrator: "Administrateur"
token: "Jeton" token: "Jeton"
@ -428,7 +380,6 @@ share: "Partager"
notFound: "Non trouvé" notFound: "Non trouvé"
notFoundDescription: "Aucune page ne correspond à lURL spécifiée." notFoundDescription: "Aucune page ne correspond à lURL spécifiée."
uploadFolder: "Emplacement de téléversement par défaut" uploadFolder: "Emplacement de téléversement par défaut"
cacheClear: "Vider le cache"
markAsReadAllNotifications: "Marquer toutes les notifications comme lues" markAsReadAllNotifications: "Marquer toutes les notifications comme lues"
markAsReadAllUnreadNotes: "Marquer toutes les notes comme lues" markAsReadAllUnreadNotes: "Marquer toutes les notes comme lues"
markAsReadAllTalkMessages: "Marquer toutes les discussions comme lues" markAsReadAllTalkMessages: "Marquer toutes les discussions comme lues"
@ -459,13 +410,12 @@ noMessagesYet: "Pas encore de discussion"
newMessageExists: "Vous avez un nouveau message" newMessageExists: "Vous avez un nouveau message"
onlyOneFileCanBeAttached: "Vous ne pouvez joindre quun seul fichier au message" onlyOneFileCanBeAttached: "Vous ne pouvez joindre quun seul fichier au message"
signinRequired: "Veuillez vous connecter" signinRequired: "Veuillez vous connecter"
invitations: "Invitations"
invitationCode: "Code dinvitation" invitationCode: "Code dinvitation"
checking: "Vérification en cours..." checking: "Vérification en cours..."
available: "Disponible" available: "Disponible"
unavailable: "Non disponible" unavailable: "Non disponible"
usernameInvalidFormat: "Le nom d'utilisateur peut contenir uniquement des lettres\ usernameInvalidFormat: "Le nom d'utilisateur peut contenir uniquement des lettres\
\ (minuscules et/ou majuscules), des chiffres et des _" \ (minuscules et/ou majuscules), des chiffres et des tirets bas."
tooShort: "Trop court" tooShort: "Trop court"
tooLong: "Trop long" tooLong: "Trop long"
weakPassword: "Mot de passe faible" weakPassword: "Mot de passe faible"
@ -481,7 +431,6 @@ or: "OU"
language: "Langue" language: "Langue"
uiLanguage: "Langue daffichage de linterface" uiLanguage: "Langue daffichage de linterface"
groupInvited: "Invité au groupe" groupInvited: "Invité au groupe"
aboutX: "À propos de {x}"
useOsNativeEmojis: "Utiliser les émojis natifs du système" useOsNativeEmojis: "Utiliser les émojis natifs du système"
youHaveNoGroups: "Vous navez aucun groupe" youHaveNoGroups: "Vous navez aucun groupe"
joinOrCreateGroup: "Vous pouvez être invité·e à rejoindre des groupes existants ou\ joinOrCreateGroup: "Vous pouvez être invité·e à rejoindre des groupes existants ou\
@ -489,33 +438,25 @@ joinOrCreateGroup: "Vous pouvez être invité·e à rejoindre des groupes exista
noHistory: "Pas d'historique" noHistory: "Pas d'historique"
signinHistory: "Historique de connexion" signinHistory: "Historique de connexion"
disableAnimatedMfm: "Désactiver MFM ayant des animations" disableAnimatedMfm: "Désactiver MFM ayant des animations"
doing: "En cours..."
category: "Catégorie" category: "Catégorie"
tags: "Étiquettes" tags: "Étiquettes"
docSource: "Source de ce document"
createAccount: "Créer un compte" createAccount: "Créer un compte"
existingAccount: "Compte existant" existingAccount: "Compte existant"
regenerate: "Générer à nouveau"
fontSize: "Taille de la police" fontSize: "Taille de la police"
noFollowRequests: "Vous navez aucune demande dabonnement en attente" noFollowRequests: "Vous navez aucune demande dabonnement en attente"
openImageInNewTab: "Ouvrir les images dans un nouvel onglet" openImageInNewTab: "Ouvrir les images dans un nouvel onglet"
dashboard: "Tableau de bord" dashboard: "Tableau de bord"
local: "Local" local: "Local"
remote: "Distant" remote: "Distant"
total: "Total"
weekOverWeekChanges: "Hebdomadaire"
dayOverDayChanges: "Journalier" dayOverDayChanges: "Journalier"
appearance: "Apparence" appearance: "Apparence"
clientSettings: "Paramètres du client" clientSettings: "Paramètres du client"
accountSettings: "Paramètres du compte"
numberOfDays: "Nombre de jours"
hideThisNote: "Masquer cette note"
showFeaturedNotesInTimeline: "Afficher les notes des Tendances dans le fil d'actualité" showFeaturedNotesInTimeline: "Afficher les notes des Tendances dans le fil d'actualité"
objectStorage: "Stockage d'objets" objectStorage: "Stockage d'objets"
useObjectStorage: "Utiliser le stockage d'objets" useObjectStorage: "Utiliser le stockage d'objets"
objectStorageBaseUrl: "URL de base" objectStorageBaseUrl: "URL de base"
objectStorageBaseUrlDesc: "Préfixe dURL utilisé pour construire lURL vers le référencement\ objectStorageBaseUrlDesc: "Préfixe dURL utilisé pour construire lURL vers le référencement\
\ dobjet (média). Spécifiez son URL si vous utilisez un CDN ou un proxy, sinon\ \ dobjet (média). \nSpécifiez son URL si vous utilisez un CDN ou un proxy, sinon\
\ spécifiez ladresse accessible au public selon le guide de service que vous allez\ \ spécifiez ladresse accessible au public selon le guide de service que vous allez\
\ utiliser. P.ex. 'https://<bucket>.s3.amazonaws.com' pour AWS S3 et 'https://storage.googleapis.com/<bucket>'\ \ utiliser. P.ex. 'https://<bucket>.s3.amazonaws.com' pour AWS S3 et 'https://storage.googleapis.com/<bucket>'\
\ pour GCS." \ pour GCS."
@ -526,7 +467,7 @@ objectStoragePrefix: "Prefix"
objectStoragePrefixDesc: "Les fichiers seront stockés sous le répertoire de ce préfixe." objectStoragePrefixDesc: "Les fichiers seront stockés sous le répertoire de ce préfixe."
objectStorageEndpoint: "Endpoint" objectStorageEndpoint: "Endpoint"
objectStorageEndpointDesc: "Laissez ce champ vide si vous utilisez AWS S3, sinon spécifiez\ objectStorageEndpointDesc: "Laissez ce champ vide si vous utilisez AWS S3, sinon spécifiez\
\ le point de terminaison comme '<host>' ou '<host>: <port>' selon le guide de service\ \ le point de terminaison comme '<host>' ou '<host>:<port>' selon le guide de service\
\ que vous allez utiliser." \ que vous allez utiliser."
objectStorageRegion: "Région" objectStorageRegion: "Région"
objectStorageRegionDesc: "Spécifiez une région comme 'xx-east-1'. Si votre service\ objectStorageRegionDesc: "Spécifiez une région comme 'xx-east-1'. Si votre service\
@ -538,8 +479,6 @@ objectStorageUseProxy: "Se connecter via proxy"
objectStorageUseProxyDesc: "Désactivez cette option si vous n'utilisez pas de proxy\ objectStorageUseProxyDesc: "Désactivez cette option si vous n'utilisez pas de proxy\
\ pour la connexion API" \ pour la connexion API"
objectStorageSetPublicRead: "Régler sur « public » lors de l'envoi" objectStorageSetPublicRead: "Régler sur « public » lors de l'envoi"
serverLogs: "Journal du serveur"
deleteAll: "Supprimer tout"
showFixedPostForm: "Afficher le formulaire de publication en haut du fil d'actualité" showFixedPostForm: "Afficher le formulaire de publication en haut du fil d'actualité"
newNoteRecived: "Voir les nouvelles notes" newNoteRecived: "Voir les nouvelles notes"
sounds: "Sons" sounds: "Sons"
@ -550,8 +489,7 @@ popout: "Fenêtre contextuelle"
volume: "Volume" volume: "Volume"
masterVolume: "Volume principal" masterVolume: "Volume principal"
details: "Détails" details: "Détails"
chooseEmoji: "Choisissez un émoji" unableToProcess: "Lopération na pas réussi"
unableToProcess: "Lopération na pas pu être complétée."
recentUsed: "Utilisé récemment" recentUsed: "Utilisé récemment"
install: "Installation" install: "Installation"
uninstall: "Désinstaller" uninstall: "Désinstaller"
@ -568,9 +506,7 @@ scratchpadDescription: "ScratchPad fournit un environnement expérimental pour A
\ 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 FoundKey." \ de son interaction avec FoundKey."
output: "Sortie" output: "Sortie"
script: "Script"
updateRemoteUser: "Mettre à jour les informations de lutilisateur·rice distant·e" updateRemoteUser: "Mettre à jour les informations de lutilisateur·rice distant·e"
deleteAllFiles: "Supprimer tous les fichiers"
deleteAllFilesConfirm: "Êtes-vous sûr·e de vouloir supprimer tous les fichiers ?" deleteAllFilesConfirm: "Êtes-vous sûr·e de vouloir supprimer tous les fichiers ?"
removeAllFollowing: "Retenir tous les abonnements" removeAllFollowing: "Retenir tous les abonnements"
removeAllFollowingDescription: "Se désabonner de tous les comptes de {host}. Veuillez\ removeAllFollowingDescription: "Se désabonner de tous les comptes de {host}. Veuillez\
@ -588,10 +524,7 @@ addItem: "Ajouter un élément"
relays: "Relais" relays: "Relais"
addRelay: "Ajouter un relais" addRelay: "Ajouter un relais"
inboxUrl: "URL de la boite de réception" inboxUrl: "URL de la boite de réception"
addedRelays: "Relais ajoutés"
serviceworkerInfo: "Devrait être activé pour les notifications push."
deletedNote: "Note supprimée" deletedNote: "Note supprimée"
invisibleNote: "Note invisible"
enableInfiniteScroll: "Activer le défilement infini" enableInfiniteScroll: "Activer le défilement infini"
visibility: "Visibilité" visibility: "Visibilité"
poll: "Sondage" poll: "Sondage"
@ -601,16 +534,13 @@ disablePlayer: "Fermer le lecteur vidéo"
themeEditor: "Éditeur de thèmes" themeEditor: "Éditeur de thèmes"
description: "Description" description: "Description"
describeFile: "Ajouter une description d'image" describeFile: "Ajouter une description d'image"
enterFileDescription: "Saisissez une description"
author: "Auteur·rice" author: "Auteur·rice"
leaveConfirm: "Vous avez des modifications non-sauvegardées. Voulez-vous les ignorer\ leaveConfirm: "Vous avez des modifications non-sauvegardées. Voulez-vous les ignorer\
\ ?" \ ?"
manage: "Gestion" manage: "Gestion"
plugins: "Extensions" plugins: "Extensions"
deck: "Cartes" deck: "Cartes"
undeck: "Quitter le deck"
useBlurEffectForModal: "Utiliser un effet de flou pour les modals" useBlurEffectForModal: "Utiliser un effet de flou pour les modals"
useFullReactionPicker: "Utiliser l'intégralité du panneau de réactions"
width: "Largeur" width: "Largeur"
height: "Hauteur" height: "Hauteur"
large: "Grand" large: "Grand"
@ -623,15 +553,14 @@ disableAll: "Tout désactiver"
tokenRequested: "Autoriser l'accès au compte" tokenRequested: "Autoriser l'accès au compte"
pluginTokenRequestedDescription: "Ce plugin pourra utiliser les autorisations définies\ pluginTokenRequestedDescription: "Ce plugin pourra utiliser les autorisations définies\
\ ici." \ ici."
notificationType: "Type de notifications"
edit: "Editer" edit: "Editer"
useStarForReactionFallback: "Utiliser ★ comme alternative si lémoji de réaction est\ useStarForReactionFallback: "Utiliser ★ comme alternative si lémoji de réaction est\
\ inconnu" \ inconnu"
emailServer: "Serveur mail" emailServer: "Serveur mail"
enableEmail: "Activer la distribution de courriel" enableEmail: "Activer la distribution de courriel"
emailConfigInfo: "Utilisé pour confirmer votre adresse de courriel et la réinitialisation\ emailConfigInfo: "Utilisé pour confirmer votre adresse de courriel et la réinitialisation\
\ de votre mot de passe en cas doubli." \ de votre mot de passe en cas doubli"
email: "E-mail " email: "E-mail"
emailAddress: "Adresses e-mail" emailAddress: "Adresses e-mail"
smtpConfig: "Paramètres du serveur SMTP" smtpConfig: "Paramètres du serveur SMTP"
smtpHost: "Serveur distant" smtpHost: "Serveur distant"
@ -641,7 +570,7 @@ smtpPass: "Mot de passe"
emptyToDisableSmtpAuth: "Laisser le nom dutilisateur et le mot de passe vides pour\ emptyToDisableSmtpAuth: "Laisser le nom dutilisateur et le mot de passe vides pour\
\ désactiver la vérification SMTP" \ désactiver la vérification SMTP"
smtpSecure: "Utiliser SSL/TLS implicitement dans les connexions SMTP" smtpSecure: "Utiliser SSL/TLS implicitement dans les connexions SMTP"
smtpSecureInfo: "Désactiver cette option lorsque STARTTLS est utilisé" smtpSecureInfo: "Désactiver cette option lorsque STARTTLS est utilisé."
testEmail: "Tester la distribution de courriel" testEmail: "Tester la distribution de courriel"
wordMute: "Filtre de mots" wordMute: "Filtre de mots"
regexpError: "Erreur dexpression régulière" regexpError: "Erreur dexpression régulière"
@ -650,15 +579,12 @@ userSaysSomething: "{name} a dit quelque chose"
makeActive: "Activer" makeActive: "Activer"
display: "Affichage" display: "Affichage"
copy: "Copier" copy: "Copier"
metrics: "Métriques"
overview: "Aperçu" overview: "Aperçu"
logs: "Journaux"
delayed: "en retard"
database: "Base de données" database: "Base de données"
channel: "Canaux" channel: "Canaux"
create: "Créer" create: "Créer"
notificationSetting: "Paramètres des notifications " notificationSetting: "Paramètres des notifications"
notificationSettingDesc: "Sélectionnez le type de notification à afficher" notificationSettingDesc: "Sélectionnez le type de notification à afficher."
useGlobalSetting: "Utiliser paramètre général" useGlobalSetting: "Utiliser paramètre général"
useGlobalSettingDesc: "S'il est activé, les paramètres de notification de votre compte\ useGlobalSettingDesc: "S'il est activé, les paramètres de notification de votre compte\
\ seront utilisés. S'il est désactivé, des configurations individuelles peuvent\ \ seront utilisés. S'il est désactivé, des configurations individuelles peuvent\
@ -667,12 +593,11 @@ other: "Autre"
regenerateLoginToken: "Régénérer le jeton de connexion" regenerateLoginToken: "Régénérer le jeton de connexion"
regenerateLoginTokenDescription: "Générer un nouveau jeton d'authentification. Cette\ regenerateLoginTokenDescription: "Générer un nouveau jeton d'authentification. Cette\
\ opération ne devrait pas être nécessaire ; lors de la génération d'un nouveau\ \ opération ne devrait pas être nécessaire ; lors de la génération d'un nouveau\
\ jeton, tous les appareils seront déconnectés. " \ jeton, tous les appareils seront déconnectés."
setMultipleBySeparatingWithSpace: "Vous pouvez en définir plusieurs, en les séparant\ setMultipleBySeparatingWithSpace: "Vous pouvez en définir plusieurs, en les séparant\
\ par des espaces." \ par des espaces."
fileIdOrUrl: "ID du fichier ou URL" fileIdOrUrl: "ID du fichier ou URL"
behavior: "Comportement" behavior: "Comportement"
sample: "Exemple"
abuseReports: "Signalements" abuseReports: "Signalements"
reportAbuse: "Signaler" reportAbuse: "Signaler"
reportAbuseOf: "Signaler {name}" reportAbuseOf: "Signaler {name}"
@ -685,13 +610,8 @@ forwardReport: "Transférer le signalement à linstance distante"
send: "Envoyer" send: "Envoyer"
abuseMarkAsResolved: "Marquer le signalement comme résolu" abuseMarkAsResolved: "Marquer le signalement comme résolu"
openInNewTab: "Ouvrir dans un nouvel onglet" openInNewTab: "Ouvrir dans un nouvel onglet"
openInSideView: "Ouvrir en vue latérale"
defaultNavigationBehaviour: "Navigation par défaut" defaultNavigationBehaviour: "Navigation par défaut"
editTheseSettingsMayBreakAccount: "La modification de ces paramètres peut endommager\
\ votre compte."
instanceTicker: "Nom de l'instance d'origine des notes" instanceTicker: "Nom de l'instance d'origine des notes"
waitingFor: "En attente de {x}"
random: "Aléatoire"
system: "Système" system: "Système"
switchUi: "Modifier l'interface utilisateur" switchUi: "Modifier l'interface utilisateur"
desktop: "Bureau" desktop: "Bureau"
@ -703,7 +623,7 @@ public: "Public"
i18nInfo: "FoundKey est traduit dans différentes langues par des bénévoles. Vous pouvez\ i18nInfo: "FoundKey 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"
notesCount: "Nombre de notes" notesCount: "Nombre de notes"
repliesCount: "Nombre de réponses envoyées" repliesCount: "Nombre de réponses envoyées"
renotesCount: "Nombre de notes que vous avez renotées" renotesCount: "Nombre de notes que vous avez renotées"
@ -730,17 +650,14 @@ loadRawImages: "Affichage complet des images jointes au lieu des vignettes"
disableShowingAnimatedImages: "Désactiver l'animation des images" disableShowingAnimatedImages: "Désactiver l'animation des images"
verificationEmailSent: "Un e-mail de vérification a été envoyé. Veuillez accéder au\ verificationEmailSent: "Un e-mail de vérification a été envoyé. Veuillez accéder au\
\ lien pour compléter la vérification." \ lien pour compléter la vérification."
notSet: "Non défini" emailVerified: "Votre adresse e-mail a été vérifiée"
emailVerified: "Votre adresse e-mail a été vérifiée."
noteFavoritesCount: "Nombre de notes dans les favoris" noteFavoritesCount: "Nombre de notes dans les favoris"
pageLikesCount: "Nombre de pages aimées" pageLikesCount: "Nombre de pages aimées"
pageLikedCount: "Nombre de vos pages aimées" pageLikedCount: "Nombre de vos pages aimées"
contact: "Contact" contact: "Contact"
useSystemFont: "Utiliser la police par défaut du système" useSystemFont: "Utiliser la police par défaut du système"
clips: "Clips" clips: "Clips"
experimentalFeatures: "Fonctionnalités expérimentales" makeExplorable: "Rendre le compte visible sur la page \"Découvrir\""
developer: "Développeur"
makeExplorable: "Rendre le compte visible sur la page \"Découvrir\"."
makeExplorableDescription: "Si vous désactivez cette option, votre compte n'apparaîtra\ makeExplorableDescription: "Si vous désactivez cette option, votre compte n'apparaîtra\
\ pas sur la page \"Découvrir\"." \ pas sur la page \"Découvrir\"."
showGapBetweenNotesInTimeline: "Afficher un écart entre les notes sur la Timeline" showGapBetweenNotesInTimeline: "Afficher un écart entre les notes sur la Timeline"
@ -752,28 +669,16 @@ narrow: "Condensé"
reloadToApplySetting: "Vos paramètres seront appliqués lorsque vous rechargerez la\ reloadToApplySetting: "Vos paramètres seront appliqués lorsque vous rechargerez la\
\ page. Souhaitez-vous recharger ?" \ page. Souhaitez-vous recharger ?"
needReloadToApply: "Ce paramètre s'appliquera après un rechargement." needReloadToApply: "Ce paramètre s'appliquera après un rechargement."
showTitlebar: "Afficher la barre de titre"
clearCache: "Vider le cache" clearCache: "Vider le cache"
onlineUsersCount: "{n} utilisateur(s) en ligne" onlineUsersCount: "{n} utilisateur(s) en ligne"
nUsers: "{n} utilisateur·rice·s"
nNotes: "{n} Notes"
myTheme: "Mes thèmes"
backgroundColor: "Arrière-plan" backgroundColor: "Arrière-plan"
accentColor: "Accentuation" accentColor: "Accentuation"
textColor: "Texte" textColor: "Texte"
saveAs: "Enregistrer sous ..." saveAs: "Enregistrer sous ..."
advanced: "Avancé"
value: "Valeur"
createdAt: "Date de création" createdAt: "Date de création"
updatedAt: "Mis à jour le" updatedAt: "Mis à jour le"
saveConfirm: "Voulez-vous sauvegarder les modifications?" deleteConfirm: "Confirmez-vous la suppression ?"
deleteConfirm: "Confirmez-vous la suppression?"
invalidValue: "Cette valeur est invalide."
registry: "Registre"
closeAccount: "Fermer le compte" closeAccount: "Fermer le compte"
currentVersion: "Version actuelle"
latestVersion: "Dernière version "
youAreRunningUpToDateClient: "Votre client est à jour."
newVersionOfClientAvailable: "Une nouvelle version de votre client est disponible." newVersionOfClientAvailable: "Une nouvelle version de votre client est disponible."
usageAmount: "Utilisation" usageAmount: "Utilisation"
capacity: "Capacité " capacity: "Capacité "
@ -783,11 +688,9 @@ apply: "Appliquer"
receiveAnnouncementFromInstance: "Recevoir les messages d'information de l'instance" receiveAnnouncementFromInstance: "Recevoir les messages d'information de l'instance"
emailNotification: "Notifications par mail" emailNotification: "Notifications par mail"
publish: "Public" publish: "Public"
inChannelSearch: "Chercher dans le canal"
useReactionPickerForContextMenu: "Clic-droit pour ouvrir le panneau de réactions" useReactionPickerForContextMenu: "Clic-droit pour ouvrir le panneau de réactions"
typingUsers: "{users} est en train d'écrire" typingUsers: "{users} est en train d'écrire..."
jumpToSpecifiedDate: "Se rendre à la date" jumpToSpecifiedDate: "Se rendre à la date"
showingPastTimeline: "Un fil ancien est affiché"
clear: "Effacer" clear: "Effacer"
markAllAsRead: "Tout marquer comme lu" markAllAsRead: "Tout marquer comme lu"
goBack: "Retour" goBack: "Retour"
@ -802,7 +705,6 @@ notSpecifiedMentionWarning: "Vous avez mentionné des utilisateur·rice·s qui n
info: "Informations" info: "Informations"
userInfo: "Informations sur l'utilisateur" userInfo: "Informations sur l'utilisateur"
unknown: "Inconnu" unknown: "Inconnu"
onlineStatus: "Statut"
hideOnlineStatus: "Se rendre invisible" hideOnlineStatus: "Se rendre invisible"
hideOnlineStatusDescription: "Rendre votre statut invisible peut diminuer les performances\ hideOnlineStatusDescription: "Rendre votre statut invisible peut diminuer les performances\
\ de certaines fonctionnalités, telles que la Recherche." \ de certaines fonctionnalités, telles que la Recherche."
@ -829,12 +731,6 @@ gallery: "Galerie"
recentPosts: "Les plus récentes" recentPosts: "Les plus récentes"
popularPosts: "Les plus consultées" popularPosts: "Les plus consultées"
shareWithNote: "Partager dans une note" shareWithNote: "Partager dans une note"
expiration: "Échéance"
memo: "Pense-bête"
priority: "Priorité"
high: "Haute"
middle: "Moyen"
low: "Basse"
emailNotConfiguredWarning: "Vous n'avez pas configuré d'adresse e-mail." emailNotConfiguredWarning: "Vous n'avez pas configuré d'adresse e-mail."
ratio: "Ratio" ratio: "Ratio"
previewNoteText: "Voir l'aperçu" previewNoteText: "Voir l'aperçu"
@ -842,10 +738,7 @@ customCss: "CSS personnalisé"
customCssWarn: "Utilisez cette fonctionnalité uniquement si vous savez exactement\ customCssWarn: "Utilisez cette fonctionnalité uniquement si vous savez exactement\
\ ce que vous faites. Une configuration inadaptée peut empêcher le client de s'exécuter\ \ ce que vous faites. Une configuration inadaptée peut empêcher le client de s'exécuter\
\ normalement." \ normalement."
global: "Global"
squareAvatars: "Avatars carrés" squareAvatars: "Avatars carrés"
sent: "Envoyer"
received: "Reçu"
searchResult: "Résultats de la recherche" searchResult: "Résultats de la recherche"
hashtags: "Hashtags" hashtags: "Hashtags"
troubleshooting: "Résolution de problèmes" troubleshooting: "Résolution de problèmes"
@ -855,7 +748,7 @@ misskeyUpdated: "FoundKey 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}"
accountDeletionInProgress: "La suppression de votre compte est en cours" accountDeletionInProgress: "La suppression de votre compte est en cours."
usernameInfo: "C'est un nom qui identifie votre compte sur l'instance de manière unique.\ usernameInfo: "C'est un nom qui identifie votre compte sur l'instance de manière unique.\
\ Vous pouvez utiliser des lettres de l'alphabet (minuscules et majuscules), des\ \ Vous pouvez utiliser des lettres de l'alphabet (minuscules et majuscules), des\
\ chiffres (de 0 à 9), ou bien le tiret « _ ». Vous ne pourrez pas modifier votre\ \ chiffres (de 0 à 9), ou bien le tiret « _ ». Vous ne pourrez pas modifier votre\
@ -933,9 +826,6 @@ _accountDelete:
requestAccountDelete: "Demander la suppression de votre compte" requestAccountDelete: "Demander la suppression de votre compte"
started: "La procédure de suppression a commencé." started: "La procédure de suppression a commencé."
inProgress: "Suppression en cours" inProgress: "Suppression en cours"
_ad:
back: "Retour"
reduceFrequencyOfThisAd: "Voir cette publicité moins souvent"
_forgotPassword: _forgotPassword:
enterEmail: "Entrez ici l'adresse e-mail que vous avez enregistrée pour votre compte.\ enterEmail: "Entrez ici l'adresse e-mail que vous avez enregistrée pour votre compte.\
\ Un lien vous permettant de réinitialiser votre mot de passe sera envoyé à cette\ \ Un lien vous permettant de réinitialiser votre mot de passe sera envoyé à cette\
@ -947,7 +837,7 @@ _forgotPassword:
\ de votre mot de passe." \ de votre mot de passe."
_gallery: _gallery:
my: "Mes publications" my: "Mes publications"
liked: " Publications que j'ai aimées" liked: "Publications que j'ai aimées"
like: "J'aime" like: "J'aime"
unlike: "Je naime pas" unlike: "Je naime pas"
_email: _email:
@ -958,19 +848,16 @@ _email:
_plugin: _plugin:
install: "Installation de plugin" install: "Installation de plugin"
installWarn: "Ninstallez que des extensions provenant de sources de confiance." installWarn: "Ninstallez que des extensions provenant de sources de confiance."
manage: "Gestion des plugins"
_registry: _registry:
scope: "Portée" scope: "Portée"
key: "Clé " key: "Clé"
keys: "Clé " keys: "Clés"
domain: "Domaine" domain: "Domaine"
createKey: "Créer une clé" createKey: "Créer une clé"
_aboutMisskey: _aboutMisskey:
about: "FoundKey est un logiciel libre et ouvert, développé par syuilo depuis 2014." about: "FoundKey est un logiciel libre et ouvert, développé par syuilo depuis 2014."
contributors: "Principaux contributeurs"
allContributors: "Tous les contributeurs" allContributors: "Tous les contributeurs"
source: "Code source" source: "Code source"
translation: "Traduire FoundKey"
_nsfw: _nsfw:
respect: "Cacher les médias marqués comme contenu sensible" respect: "Cacher les médias marqués comme contenu sensible"
ignore: "Afficher les médias sensibles" ignore: "Afficher les médias sensibles"
@ -982,10 +869,10 @@ _mfm:
dummy: "La Fédiverse s'agrandit avec FoundKey" dummy: "La Fédiverse s'agrandit avec FoundKey"
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."
hashtag: "Hashtags" hashtag: "Hashtags"
hashtagDescription: "Vous pouvez afficher un mot-dièse en utilisant un croisillon\ hashtagDescription: "Vous pouvez afficher un mot-dièse en utilisant un croisillon\
\ et du texte" \ et du texte."
url: "URL" url: "URL"
urlDescription: "L'adresse web peut être affichée." urlDescription: "L'adresse web peut être affichée."
link: "Lien" link: "Lien"
@ -996,7 +883,7 @@ _mfm:
small: "Diminuer l'emphase" small: "Diminuer l'emphase"
smallDescription: "Le contenu peut être affiché en petit et fin." smallDescription: "Le contenu peut être affiché en petit et fin."
center: "Centrer" center: "Centrer"
centerDescription: "Le contenu peut être centré" centerDescription: "Centrer l'affichage du contenu."
inlineCode: "Code (inline)" inlineCode: "Code (inline)"
inlineCodeDescription: "Coloration syntaxique des lignes de code." inlineCodeDescription: "Coloration syntaxique des lignes de code."
blockCode: "Bloc de code" blockCode: "Bloc de code"
@ -1013,11 +900,11 @@ _mfm:
search: "Rechercher" search: "Rechercher"
searchDescription: "Affiche une boîte de recherche avec du texte pré-saisi." searchDescription: "Affiche une boîte de recherche avec du texte pré-saisi."
flip: "Inverser" flip: "Inverser"
flipDescription: "Rotation verticale ou horizontale du contenu" flipDescription: "Rotation verticale ou horizontale du contenu."
jelly: "Animation (Gelée)" jelly: "Animation (Gelée)"
jellyDescription: "Donne une animation d'étirement." jellyDescription: "Donne une animation d'étirement."
tada: "Animation (Tada)" tada: "Animation (Tada)"
tadaDescription: "Donne une animation qui donne une impression de \"Tada !\"" tadaDescription: "Donne une animation qui donne une impression de \"Tada !\"."
jump: "Animation (Saut)" jump: "Animation (Saut)"
jumpDescription: "Donne une animation qui saute." jumpDescription: "Donne une animation qui saute."
bounce: "Animation (Rebond)" bounce: "Animation (Rebond)"
@ -1046,7 +933,7 @@ _mfm:
rotate: "Pivoter" rotate: "Pivoter"
rotateDescription: Rotation du contenu selon l'angle spécifié. rotateDescription: Rotation du contenu selon l'angle spécifié.
_instanceTicker: _instanceTicker:
none: "Cacher " none: "Cacher"
remote: "Montrer pour les utilisateur·ice·s distant·e·s" remote: "Montrer pour les utilisateur·ice·s distant·e·s"
always: "Toujours afficher" always: "Toujours afficher"
_serverDisconnectedBehavior: _serverDisconnectedBehavior:
@ -1100,70 +987,6 @@ _theme:
alreadyInstalled: "Ce thème est déjà installé" alreadyInstalled: "Ce thème est déjà installé"
invalid: "Le format du thème n'est pas valide" invalid: "Le format du thème n'est pas valide"
make: "Créer un thème" make: "Créer un thème"
base: "Base"
addConstant: "Ajouter une constante"
constant: "Constante"
defaultValue: "Valeur par défaut"
color: "Couleur"
refProp: "Appeler une propriété"
refConst: "Appeler une constante"
key: "Clé "
func: "Fonction"
funcKind: "Type de fonction"
argument: "Argument"
basedProp: "Nom de la propriété référencée"
alpha: "Transparence"
darken: "Sombre"
lighten: "Clair"
inputConstantName: "Insérez un nom de constante"
importInfo: "Vous pouvez importer un thème vers léditeur de thèmes en saisissant\
\ son code ici."
deleteConstantConfirm: "Êtes-vous sûr·e de vouloir supprimer la constante {const}\
\ ?"
keys:
accent: "Accentuation"
bg: "Arrière-plan"
fg: "Texte"
focus: "Mise au point"
indicator: "Indicateur"
panel: "Panneau"
shadow: "Ombre"
header: "Entête"
navBg: "Fond de la barre latérale"
navFg: "Texte de la barre latérale"
navHoverFg: "Texte de la barre latérale (survolé)"
navActive: "Texte de la barre latérale (actif)"
navIndicator: "Indicateur de barre latérale"
link: "Lien"
hashtag: "Hashtags"
mention: "Mentionner"
mentionMe: "Mentions (Moi)"
renote: "Renoter"
modalBg: "Modal d'arrière-plan"
divider: "Séparateur"
scrollbarHandle: "Poignée de la barre de navigation"
scrollbarHandleHover: "Poignée de la barre de navigation (survolée)"
dateLabelFg: "Texte de l'étiquette de la date"
infoBg: "Arrière-plan pour les informations"
infoFg: "Texte d'information"
infoWarnBg: "Arrière-plan des avertissements"
infoWarnFg: "Texte davertissement"
cwBg: "Arrière-plan du CW"
cwFg: "Texte du bouton CW"
cwHoverBg: "Arrière-plan du bouton CW (survolé)"
toastBg: "Arrière-plan de la bulle de notification"
toastFg: "Texte de la bulle de notification"
buttonBg: "Arrière-plan du bouton"
buttonHoverBg: "Arrière-plan du bouton (survolé)"
inputBorder: "Cadre de la zone de texte"
listItemHoverBg: "Arrière-plan d'item de liste (survolé)"
driveFolderBg: "Arrière-plan du dossier de disque"
wallpaperOverlay: "Superposition de fond d'écran"
badge: "Badge"
messageBg: "Arrière plan de la discussion"
accentDarken: "Plus sombre"
accentLighten: "Plus clair"
fgHighlighted: "Texte mis en évidence"
_sfx: _sfx:
note: "Nouvelle note" note: "Nouvelle note"
noteMy: "Ma note" noteMy: "Ma note"
@ -1189,7 +1012,7 @@ _time:
day: "j" day: "j"
_tutorial: _tutorial:
title: "Comment utiliser FoundKey" title: "Comment utiliser FoundKey"
step1_1: "Bienvenue," step1_1: "Bienvenue !"
step1_2: "Cette page est appelée « un fil ». Elle affiche les « notes » des personnes\ step1_2: "Cette page est appelée « un fil ». Elle affiche les « notes » des personnes\
\ auxquelles vous êtes abonné dans un ordre chronologique." \ auxquelles vous êtes abonné dans un ordre chronologique."
step1_3: "Votre fil est actuellement vide vu que vous ne suivez aucun compte et\ step1_3: "Votre fil est actuellement vide vu que vous ne suivez aucun compte et\
@ -1203,7 +1026,7 @@ _tutorial:
\ sur licône crayon sur lécran." \ sur licône crayon sur lécran."
step3_3: "Remplissez le cadran et cliquez sur le bouton en haut à droite pour envoyer." step3_3: "Remplissez le cadran et cliquez sur le bouton en haut à droite pour envoyer."
step3_4: "Vous navez rien à dire ? Essayez décrire « Jai commencé à utiliser\ step3_4: "Vous navez rien à dire ? Essayez décrire « Jai commencé à utiliser\
\ FoundKey »." \ FoundKey » !"
step4_1: "Avez-vous publié votre première note ?" step4_1: "Avez-vous publié votre première note ?"
step4_2: "Youpi ! Celle-ci est maintenant affichée sur votre fil dactualité." step4_2: "Youpi ! Celle-ci est maintenant affichée sur votre fil dactualité."
step5_1: "Maintenant, essayons de nous abonner à dautres personnes afin de rendre\ step5_1: "Maintenant, essayons de nous abonner à dautres personnes afin de rendre\
@ -1241,8 +1064,8 @@ _2fa:
\ davantage le processus de connexion grâce à une clé de sécurité matérielle qui\ \ davantage le processus de connexion grâce à une clé de sécurité matérielle qui\
\ prend en charge FIDO2, ou bien en configurant l'authentification par empreinte\ \ prend en charge FIDO2, ou bien en configurant l'authentification par empreinte\
\ digitale ou par code PIN sur votre appareil." \ digitale ou par code PIN sur votre appareil."
step2Url: 'Vous pouvez aussi entrer cette URL si vous utilisez un programme sur step2Url: 'Vous pouvez aussi entrer cette URL si vous utilisez un client lourd sur
ordinateur:' ordinateur :'
_permissions: _permissions:
"read:account": "Afficher les informations du compte" "read:account": "Afficher les informations du compte"
"write:account": "Mettre à jour les informations de votre compte" "write:account": "Mettre à jour les informations de votre compte"
@ -1279,8 +1102,8 @@ _permissions:
_auth: _auth:
shareAccess: "Autoriser \"{name}\" à accéder à votre compte ?" shareAccess: "Autoriser \"{name}\" à accéder à votre compte ?"
shareAccessAsk: "Voulez-vous vraiment autoriser cette application à accéder à votre\ shareAccessAsk: "Voulez-vous vraiment autoriser cette application à accéder à votre\
\ compte?" \ compte ?"
permissionAsk: "Cette application nécessite les autorisations suivantes :" permissionAsk: "Cette application nécessite les autorisations suivantes"
pleaseGoBack: "Veuillez retourner à lapplication" pleaseGoBack: "Veuillez retourner à lapplication"
callback: "Retour vers lapplication" callback: "Retour vers lapplication"
denied: "Accès refusé" denied: "Accès refusé"
@ -1321,7 +1144,7 @@ _widgets:
rssMarquee: Flux RSS rssMarquee: Flux RSS
_cw: _cw:
hide: "Masquer" hide: "Masquer"
show: "Afficher plus" show: "Afficher plus"
chars: "{count} caractères" chars: "{count} caractères"
files: "{count} fichiers" files: "{count} fichiers"
_poll: _poll:
@ -1331,8 +1154,8 @@ _poll:
canMultipleVote: "Autoriser le multi-choix" canMultipleVote: "Autoriser le multi-choix"
expiration: "Fin du sondage" expiration: "Fin du sondage"
infinite: "Illimité" infinite: "Illimité"
at: "Choisir une date" at: "Fin a..."
after: "Choisir la durée" after: "Fin après..."
deadlineDate: "Date de fin" deadlineDate: "Date de fin"
deadlineTime: "Heure de fin" deadlineTime: "Heure de fin"
duration: "Durée" duration: "Durée"
@ -1360,13 +1183,13 @@ _visibility:
_postForm: _postForm:
replyPlaceholder: "Répondre à cette note ..." replyPlaceholder: "Répondre à cette note ..."
quotePlaceholder: "Citez cette note ..." quotePlaceholder: "Citez cette note ..."
channelPlaceholder: "Publier vers le canal" channelPlaceholder: "Publier vers le canal..."
_placeholders: _placeholders:
a: "Quoi de neuf ?" a: "Quoi de neuf ?"
b: "Il s'est passé quelque chose ?" b: "Il s'est passé quelque chose ?"
c: "Quavez-vous en tête ?" c: "Quavez-vous en tête ?"
d: "Désirez-vous publier quelques mots ?" d: "Désirez-vous publier quelques mots ?"
e: "Écrivez ici" e: "Écrivez ici..."
f: "En attente de vos écrits ..." f: "En attente de vos écrits ..."
_profile: _profile:
name: "Nom" name: "Nom"
@ -1424,8 +1247,8 @@ _pages:
newPage: "Créer une page" newPage: "Créer une page"
editPage: "Modifier une page" editPage: "Modifier une page"
readPage: "Affichage de la source en cours" readPage: "Affichage de la source en cours"
created: "La page a été créée !" created: "La page a été créée"
updated: "La page a été mise à jour !" updated: "La page a été mise à jour"
deleted: "La page a été supprimée" deleted: "La page a été supprimée"
pageSetting: "Paramètres de la Page" pageSetting: "Paramètres de la Page"
nameAlreadyExists: "L'URL de page spécifiée existe déjà" nameAlreadyExists: "L'URL de page spécifiée existe déjà"
@ -1456,7 +1279,6 @@ _relayStatus:
accepted: "Accepté" accepted: "Accepté"
rejected: "Refusée" rejected: "Refusée"
_notification: _notification:
fileUploaded: "Le fichier a été téléversé !"
youGotMention: "{name} vous a mentionné" youGotMention: "{name} vous a mentionné"
youGotReply: "Réponse de {name}" youGotReply: "Réponse de {name}"
youGotQuote: "Cité·e par {name}" youGotQuote: "Cité·e par {name}"
@ -1467,9 +1289,8 @@ _notification:
youWereFollowed: "Vous suit" youWereFollowed: "Vous suit"
youReceivedFollowRequest: "Vous avez reçu une demande dabonnement" youReceivedFollowRequest: "Vous avez reçu une demande dabonnement"
yourFollowRequestAccepted: "Votre demande dabonnement a été accepté" yourFollowRequestAccepted: "Votre demande dabonnement a été accepté"
youWereInvitedToGroup: "Invité·e au groupe" youWereInvitedToGroup: "{userName} Invité·e au groupe"
_types: _types:
all: "Toutes"
follow: "Nouvel·le abonné·e" follow: "Nouvel·le abonné·e"
mention: "Mentions" mention: "Mentions"
reply: "Réponses" reply: "Réponses"
@ -1512,18 +1333,19 @@ _deck:
direct: "Direct" direct: "Direct"
_services: _services:
_discord: _discord:
connected: '@{username}#{discriminator} sur Discord est connecté à @{mkUsername}! connected: '@{username}#{discriminator} sur Discord est connecté à @{mkUsername}
sur FoundKey' sur FoundKey !'
disconnected: La liaison avec Discord à été supprimée. disconnected: La liaison avec Discord à été supprimée.
_twitter: _twitter:
connected: '@{twitterUserName} sur Twitter est connecté à @{userName}! sur FoundKey' connected: '@{twitterUserName} sur Twitter est connecté à @{userName} sur FoundKey
!'
disconnected: La liaison avec Twitter à été supprimée. disconnected: La liaison avec Twitter à été supprimée.
_github: _github:
disconnected: La liaison avec Github à été supprimée. disconnected: La liaison avec Github à été supprimée.
connected: '@{login} sur Github est connecté à @{userName}! sur FoundKey' connected: '@{login} sur Github est connecté à @{userName} sur FoundKey !'
exportAll: Tout exporter exportAll: Tout exporter
stopActivityDeliveryDescription: L'activité locale ne sera pas envoyé à cette instance. stopActivityDeliveryDescription: L'activité locale ne sera pas envoyé à cette instance.
La réception de l'activité continuera de fonctionner comme avant. La réception de l'activité continuera de fonctionner comme avant.
blockThisInstanceDescription: L'activité locale ne sera pas envoyée à cette instance. blockThisInstanceDescription: L'activité locale ne sera pas envoyée à cette instance.
L'activité de cette instance sera ignorée. L'activité de cette instance sera ignorée.
signinHistoryExpires: Les données des connexions précédentes seront effacées automatiquement signinHistoryExpires: Les données des connexions précédentes seront effacées automatiquement
@ -1570,7 +1392,6 @@ externalCssSnippets: Quelques CSS pour vous inspirer (pas gérés par FoundKey)
_translationService: _translationService:
_deepl: _deepl:
authKey: Clé d'authentification pour DeepL authKey: Clé d'authentification pour DeepL
pro: Compte Pro
_libreTranslate: _libreTranslate:
endpoint: Point de connexion pour l'API LibreTranslate endpoint: Point de connexion pour l'API LibreTranslate
authKey: Clé d'authentification pour LibreTranslate (optionnel) authKey: Clé d'authentification pour LibreTranslate (optionnel)
@ -1585,7 +1406,7 @@ keepOriginalUploadingDescription: Enregistre l'image importée d'origine tel que
Si désactivé, une version affichable sur internet sera générée après l'import. Si désactivé, une version affichable sur internet sera générée après l'import.
disableDrawer: Ne pas utiliser de menus à tiroir disableDrawer: Ne pas utiliser de menus à tiroir
regexpErrorDescription: "Il y a une erreur dans l'expression régulière de la ligne\ regexpErrorDescription: "Il y a une erreur dans l'expression régulière de la ligne\
\ {line} de vos mots ignorées {tab}:" \ {line} de vos mots ignorées {tab} :"
forwardReportIsAnonymous: Un compte système anonyme sera affiché, à la place de votre forwardReportIsAnonymous: Un compte système anonyme sera affiché, à la place de votre
compte, lors du signalement à l'instance distante. compte, lors du signalement à l'instance distante.
attachmentRequired: Un attachement au moins est nécessaire. attachmentRequired: Un attachement au moins est nécessaire.

View file

@ -14,7 +14,6 @@ fetchingAsApObject: "Mengambil data dari Fediverse..."
ok: "OK" ok: "OK"
gotIt: "Saya mengerti" gotIt: "Saya mengerti"
cancel: "Batalkan" cancel: "Batalkan"
enterUsername: "Masukkan nama pengguna"
renotedBy: "direnote oleh {user}" renotedBy: "direnote oleh {user}"
noNotes: "Tidak ada catatan" noNotes: "Tidak ada catatan"
noNotifications: "Tidak ada pemberitahuan" noNotifications: "Tidak ada pemberitahuan"
@ -30,16 +29,12 @@ login: "Masuk"
loggingIn: "Sedang masuk" loggingIn: "Sedang masuk"
logout: "Keluar" logout: "Keluar"
signup: "Daftar" signup: "Daftar"
uploading: "Sedang mengunggah"
save: "Simpan" save: "Simpan"
users: "Pengguna" users: "Pengguna"
addUser: "Tambah pengguna" addUser: "Tambah pengguna"
favorite: "Favorit" favorite: "Favorit"
favorites: "Favorit" favorites: "Favorit"
unfavorite: "Hapus favorit" unfavorite: "Hapus favorit"
favorited: "Ditambahkan ke favorit"
alreadyFavorited: "Telah ditambahkan ke favorit"
cantFavorite: "Tidak dapat menambahkan ke favorit"
pin: "Sematkan ke profil" pin: "Sematkan ke profil"
unpin: "Lepas sematan dari profil" unpin: "Lepas sematan dari profil"
copyContent: "Salin konten" copyContent: "Salin konten"
@ -51,7 +46,6 @@ deleteAndEditConfirm: "Apakah kamu yakin ingin menghapus note ini dan menyunting
addToList: "Tambahkan ke daftar" addToList: "Tambahkan ke daftar"
sendMessage: "Kirim pesan" sendMessage: "Kirim pesan"
copyUsername: "Salin nama pengguna" copyUsername: "Salin nama pengguna"
searchUser: "Cari pengguna"
reply: "Balas" reply: "Balas"
loadMore: "Selebihnya" loadMore: "Selebihnya"
showMore: "Selebihnya" showMore: "Selebihnya"
@ -72,7 +66,6 @@ exportRequested: "Kamu telah meminta ekspor. Ini akan memakan waktu sesaat. Sete
\ ekspor selesai, berkas yang dihasilkan akan ditambahkan ke Drive" \ ekspor selesai, berkas yang dihasilkan akan ditambahkan ke Drive"
importRequested: "Kamu telah meminta impor. Ini akan memakan waktu sesaat." importRequested: "Kamu telah meminta impor. Ini akan memakan waktu sesaat."
lists: "Daftar" lists: "Daftar"
noLists: "Kamu tidak memiliki daftar apapun"
note: "Catat" note: "Catat"
notes: "Catatan" notes: "Catatan"
following: "Ikuti" following: "Ikuti"
@ -98,21 +91,15 @@ followRequest: "Permintaan mengikuti"
followRequests: "Permintaan mengikuti" followRequests: "Permintaan mengikuti"
unfollow: "Berhenti mengikuti" unfollow: "Berhenti mengikuti"
followRequestPending: "Permintaan mengikuti yang menunggu" followRequestPending: "Permintaan mengikuti yang menunggu"
enterEmoji: "Masukkan emoji"
renote: "Renote" renote: "Renote"
unrenote: "Hapus renote" unrenote: "Hapus renote"
renoted: "Telah direnote"
cantRenote: "Postingan ini tidak dapat direnote"
cantReRenote: "Renote tidak dapat direnote"
quote: "Kutip" quote: "Kutip"
pinnedNote: "Catatan yang disematkan" pinnedNote: "Catatan yang disematkan"
pinned: "Sematkan ke profil"
you: "Kamu" you: "Kamu"
clickToShow: "Klik untuk melihat" clickToShow: "Klik untuk melihat"
sensitive: "Konten sensitif" sensitive: "Konten sensitif"
add: "Tambahkan" add: "Tambahkan"
reaction: "Reaksi" reaction: "Reaksi"
reactionSetting: "Reaksi untuk dimunculkan di bilah reaksi"
reactionSettingDescription2: "Geser untuk memindah urutkan, klik untuk menghapus,\ reactionSettingDescription2: "Geser untuk memindah urutkan, klik untuk menghapus,\
\ tekan \"+\" untuk menambahkan" \ tekan \"+\" untuk menambahkan"
attachCancel: "Hapus lampiran" attachCancel: "Hapus lampiran"
@ -137,10 +124,7 @@ editWidgetsExit: "Selesai"
customEmojis: "Emoji kustom" customEmojis: "Emoji kustom"
emoji: "Emoji" emoji: "Emoji"
emojis: "Emoji" emojis: "Emoji"
emojiName: "Nama emoji"
emojiUrl: "URL Emoji"
addEmoji: "Tambahkan emoji" addEmoji: "Tambahkan emoji"
settingGuide: "Pengaturan rekomendasi"
cacheRemoteFiles: "Tembolokkan berkas remote" cacheRemoteFiles: "Tembolokkan berkas remote"
cacheRemoteFilesDescription: "Ketika pengaturan ini dinonaktifkan, berkas luar akan\ cacheRemoteFilesDescription: "Ketika pengaturan ini dinonaktifkan, berkas luar akan\
\ dimuat langsung dari instansi luar. Menonaktifkan ini akan mengurangi penggunaan\ \ dimuat langsung dari instansi luar. Menonaktifkan ini akan mengurangi penggunaan\
@ -162,7 +146,6 @@ addAccount: "Tambahkan akun"
loginFailed: "Gagal untuk masuk" loginFailed: "Gagal untuk masuk"
showOnRemote: "Lihat profil asli" showOnRemote: "Lihat profil asli"
general: "Umum" general: "Umum"
wallpaper: "Wallpaper"
setWallpaper: "Atur wallpaper" setWallpaper: "Atur wallpaper"
removeWallpaper: "Hapus wallpaper" removeWallpaper: "Hapus wallpaper"
youHaveNoLists: "Kamu tidak memiliki daftar apapun" youHaveNoLists: "Kamu tidak memiliki daftar apapun"
@ -178,27 +161,19 @@ selectUser: "Pilih pengguna"
recipient: "Penerima" recipient: "Penerima"
annotation: "Keterangan konten" annotation: "Keterangan konten"
federation: "Federasi" federation: "Federasi"
instances: "Instansi"
registeredAt: "Terdaftar" registeredAt: "Terdaftar"
latestRequestSentAt: "Permintaan terakhir dikirim pada" latestRequestSentAt: "Permintaan terakhir dikirim pada"
latestRequestReceivedAt: "Permintaan terakhir diterima pada" latestRequestReceivedAt: "Permintaan terakhir diterima pada"
latestStatus: "Status terakhir" latestStatus: "Status terakhir"
storageUsage: "Penggunaan penyimpanan"
charts: "Grafik" charts: "Grafik"
perHour: "per Jam" perHour: "per Jam"
perDay: "per Hari" perDay: "per Hari"
stopActivityDelivery: "Berhenti mengirim aktivitas" stopActivityDelivery: "Berhenti mengirim aktivitas"
blockThisInstance: "Blokir instansi ini" blockThisInstance: "Blokir instansi ini"
operations: "Tindakan"
software: "Perangkat lunak" software: "Perangkat lunak"
version: "Versi" version: "Versi"
metadata: "Metadata"
withNFiles: "{n} berkas" withNFiles: "{n} berkas"
monitor: "Pantau"
jobQueue: "Antrian kerja" jobQueue: "Antrian kerja"
cpuAndMemory: "CPU dan Memori"
network: "Jaringan"
disk: "Diska"
instanceInfo: "Informasi Instansi" instanceInfo: "Informasi Instansi"
statistics: "Statistik" statistics: "Statistik"
clearQueue: "Bersihkan antrian" clearQueue: "Bersihkan antrian"
@ -233,9 +208,6 @@ all: "Semua"
subscribing: "Berlangganan" subscribing: "Berlangganan"
publishing: "Sedang menyiarkan langsung" publishing: "Sedang menyiarkan langsung"
notResponding: "Tidak ada respon" notResponding: "Tidak ada respon"
instanceFollowing: "Mengikuti instance"
instanceFollowers: "Pengikut instance"
instanceUsers: "Pengguna pada instance ini"
changePassword: "Ubah kata sandi" changePassword: "Ubah kata sandi"
security: "Keamanan" security: "Keamanan"
retypedNotMatch: "Input tidak sama" retypedNotMatch: "Input tidak sama"
@ -251,7 +223,6 @@ lookup: "Mencari"
announcements: "Pengumuman" announcements: "Pengumuman"
imageUrl: "URL Gambar" imageUrl: "URL Gambar"
remove: "Hapus" remove: "Hapus"
removed: "Telah dihapus"
removeAreYouSure: "Apakah kamu yakin ingin menghapus \"{x}\"?" removeAreYouSure: "Apakah kamu yakin ingin menghapus \"{x}\"?"
deleteAreYouSure: "Apakah kamu yakin ingin menghapus \"{x}\"?" deleteAreYouSure: "Apakah kamu yakin ingin menghapus \"{x}\"?"
resetAreYouSure: "Yakin mau atur ulang?" resetAreYouSure: "Yakin mau atur ulang?"
@ -293,7 +264,6 @@ lightThemes: "Tema Terang"
darkThemes: "Tema gelap" darkThemes: "Tema gelap"
syncDeviceDarkMode: "Sinkronkan mode gelap dengan pengaturan perangkat" syncDeviceDarkMode: "Sinkronkan mode gelap dengan pengaturan perangkat"
drive: "Drive" drive: "Drive"
fileName: "Nama berkas"
selectFile: "Pilih berkas" selectFile: "Pilih berkas"
selectFiles: "Pilih berkas" selectFiles: "Pilih berkas"
selectFolder: "Pilih folder" selectFolder: "Pilih folder"
@ -347,7 +317,6 @@ enableLocalTimeline: "Nyalakan linimasa lokal"
enableGlobalTimeline: "Nyalakan linimasa global" enableGlobalTimeline: "Nyalakan linimasa global"
disablingTimelinesInfo: "Admin dan Moderator akan selalu memiliki akses ke semua linimasa\ disablingTimelinesInfo: "Admin dan Moderator akan selalu memiliki akses ke semua linimasa\
\ meskipun linimasa tersebut tidak diaktifkan." \ meskipun linimasa tersebut tidak diaktifkan."
registration: "Pendaftaran"
enableRegistration: "Nyalakan pendaftaran pengguna baru" enableRegistration: "Nyalakan pendaftaran pengguna baru"
invite: "Undang" invite: "Undang"
driveCapacityPerLocalAccount: "Kapasitas drive per pengguna lokal" driveCapacityPerLocalAccount: "Kapasitas drive per pengguna lokal"
@ -356,26 +325,13 @@ inMb: "dalam Megabytes"
iconUrl: "URL Gambar ikon" iconUrl: "URL Gambar ikon"
bannerUrl: "URL Banner" bannerUrl: "URL Banner"
backgroundImageUrl: "URL Gambar latar" backgroundImageUrl: "URL Gambar latar"
basicInfo: "Informasi Umum"
pinnedUsers: "Pengguna yang disematkan" pinnedUsers: "Pengguna yang disematkan"
pinnedUsersDescription: "Tuliskan satu nama pengguna dalam satu baris. Pengguna yang\ pinnedUsersDescription: "Tuliskan satu nama pengguna dalam satu baris. Pengguna yang\
\ dituliskan disini akan disematkan dalam bilah \"Jelajahi\"." \ dituliskan disini akan disematkan dalam bilah \"Jelajahi\"."
pinnedPages: "Halaman yang disematkan"
pinnedPagesDescription: "Masukkan tautan dari halaman yang kamu ingin sematkan ke\
\ halaman utama dari instansi ini, dipisah dengan membuat baris baru."
pinnedClipId: "ID dari klip yang disematkan"
pinnedNotes: "Catatan yang disematkan"
hcaptcha: "hCaptcha"
enableHcaptcha: "Nyalakan hCaptcha"
hcaptchaSiteKey: "Site Key" hcaptchaSiteKey: "Site Key"
hcaptchaSecretKey: "Secret Key" hcaptchaSecretKey: "Secret Key"
recaptcha: "reCAPTCHA"
enableRecaptcha: "Nyalakan reCAPTCHA"
recaptchaSiteKey: "Site key" recaptchaSiteKey: "Site key"
recaptchaSecretKey: "Secret Key" recaptchaSecretKey: "Secret Key"
avoidMultiCaptchaConfirm: "Menggunakan banyak Captcha dapat menyebabkan gangguan.\
\ Apakah kamu ingin untuk menonaktifkan Captcha yang lain? Kamu dapat membiarkan\
\ fitur ini tetap aktif dengan menekan tombol batal."
antennas: "Antena" antennas: "Antena"
manageAntennas: "Pengelola Antena" manageAntennas: "Pengelola Antena"
name: "Nama" name: "Nama"
@ -386,7 +342,6 @@ antennaKeywordsDescription: "Pisahkan dengan spasi untuk kondisi AND. Pisahkan d
\ baris baru untuk kondisi OR." \ baris baru untuk kondisi OR."
notifyAntenna: "Beritahu untuk catatan baru" notifyAntenna: "Beritahu untuk catatan baru"
withFileAntenna: "Hanya tampilkan catatan dengan berkas yang dilampirkan" withFileAntenna: "Hanya tampilkan catatan dengan berkas yang dilampirkan"
enableServiceworker: "Aktifkan ServiceWorker"
antennaUsersDescription: "Tuliskan satu nama pengguna per baris" antennaUsersDescription: "Tuliskan satu nama pengguna per baris"
caseSensitive: "Peka huruf besar dan huruf kecil" caseSensitive: "Peka huruf besar dan huruf kecil"
withReplies: "Termasuk balasan" withReplies: "Termasuk balasan"
@ -401,11 +356,8 @@ popularUsers: "Pengguna populer"
recentlyUpdatedUsers: "Pengguna dengan aktivitas terkini" recentlyUpdatedUsers: "Pengguna dengan aktivitas terkini"
recentlyRegisteredUsers: "Pengguna baru saja bergabung" recentlyRegisteredUsers: "Pengguna baru saja bergabung"
recentlyDiscoveredUsers: "Pengguna baru saja dilihat" recentlyDiscoveredUsers: "Pengguna baru saja dilihat"
exploreUsersCount: "Terdapat {count} pengguna"
exploreFediverse: "Jelajahi Fediverse"
popularTags: "Tag populer" popularTags: "Tag populer"
userList: "Daftar" userList: "Daftar"
about: "Informasi"
aboutMisskey: "Tentang FoundKey" aboutMisskey: "Tentang FoundKey"
administrator: "Admin" administrator: "Admin"
token: "Token" token: "Token"
@ -425,7 +377,6 @@ share: "Bagikan"
notFound: "Tidak dapat ditemukan" notFound: "Tidak dapat ditemukan"
notFoundDescription: "Tidak ada halaman sesuai dengan URL yang ditentukan." notFoundDescription: "Tidak ada halaman sesuai dengan URL yang ditentukan."
uploadFolder: "Lokasi unggah folder bawaan" uploadFolder: "Lokasi unggah folder bawaan"
cacheClear: "Bersihkan tembolok"
markAsReadAllNotifications: "Tandai semua pemberitahuan telah dibaca" markAsReadAllNotifications: "Tandai semua pemberitahuan telah dibaca"
markAsReadAllUnreadNotes: "Tandai semua catatan telah dibaca" markAsReadAllUnreadNotes: "Tandai semua catatan telah dibaca"
markAsReadAllTalkMessages: "Tandai semua pesan telah dibaca" markAsReadAllTalkMessages: "Tandai semua pesan telah dibaca"
@ -456,7 +407,6 @@ noMessagesYet: "Tidak ada pesan"
newMessageExists: "Kamu mendapatkan pesan baru" newMessageExists: "Kamu mendapatkan pesan baru"
onlyOneFileCanBeAttached: "Kamu hanya dapat melampirkan satu berkas ke dalam pesan" onlyOneFileCanBeAttached: "Kamu hanya dapat melampirkan satu berkas ke dalam pesan"
signinRequired: "Silahkan login" signinRequired: "Silahkan login"
invitations: "Undang"
invitationCode: "Kode undangan" invitationCode: "Kode undangan"
checking: "Memeriksa" checking: "Memeriksa"
available: "Tersedia" available: "Tersedia"
@ -477,7 +427,6 @@ or: "atau"
language: "Bahasa" language: "Bahasa"
uiLanguage: "Bahasa antarmuka pengguna" uiLanguage: "Bahasa antarmuka pengguna"
groupInvited: "Telah diundang ke grup" groupInvited: "Telah diundang ke grup"
aboutX: "Tentang {x}"
useOsNativeEmojis: "Gunakan Emoji bawaan sistem operasi" useOsNativeEmojis: "Gunakan Emoji bawaan sistem operasi"
disableDrawer: "Jangan gunakan menu bergaya laci" disableDrawer: "Jangan gunakan menu bergaya laci"
youHaveNoGroups: "Kamu tidak memiliki grup" youHaveNoGroups: "Kamu tidak memiliki grup"
@ -485,27 +434,19 @@ joinOrCreateGroup: "Bergabunglah dengan grup atau kamu dapat membuat grupmu send
noHistory: "Tidak ada riwayat" noHistory: "Tidak ada riwayat"
signinHistory: "Riwayat masuk" signinHistory: "Riwayat masuk"
disableAnimatedMfm: "Nonaktifkan MFM dengan animasi" disableAnimatedMfm: "Nonaktifkan MFM dengan animasi"
doing: "Sedang berkerja..."
category: "Kategori" category: "Kategori"
tags: "Tandai" tags: "Tandai"
docSource: "Sumber dari dokumen ini"
createAccount: "Buat akun" createAccount: "Buat akun"
existingAccount: "Akun yang ada" existingAccount: "Akun yang ada"
regenerate: "Buat ulang"
fontSize: "Ukuran huruf" fontSize: "Ukuran huruf"
noFollowRequests: "Kamu tidak memiliki permintaan mengikuti yang menunggu" noFollowRequests: "Kamu tidak memiliki permintaan mengikuti yang menunggu"
openImageInNewTab: "Buka gambar di tab baru" openImageInNewTab: "Buka gambar di tab baru"
dashboard: "Dasbor" dashboard: "Dasbor"
local: "Lokal" local: "Lokal"
remote: "Remote" remote: "Remote"
total: "Jumlah"
weekOverWeekChanges: "Mingguan"
dayOverDayChanges: "Harian" dayOverDayChanges: "Harian"
appearance: "Tampilan" appearance: "Tampilan"
clientSettings: "Pengaturan Klien" clientSettings: "Pengaturan Klien"
accountSettings: "Pengaturan Akun"
numberOfDays: "Jumlah hari"
hideThisNote: "Sembunyikan catatan ini"
showFeaturedNotesInTimeline: "Tampilkan catatan yang diunggulkan di linimasa" showFeaturedNotesInTimeline: "Tampilkan catatan yang diunggulkan di linimasa"
objectStorage: "Object Storage" objectStorage: "Object Storage"
useObjectStorage: "Gunakan object storage" useObjectStorage: "Gunakan object storage"
@ -534,8 +475,6 @@ objectStorageUseProxy: "Hubungkan melalui Proxy"
objectStorageUseProxyDesc: "Matikan ini jika kamu tidak akan menggunakan Proxy untuk\ objectStorageUseProxyDesc: "Matikan ini jika kamu tidak akan menggunakan Proxy untuk\
\ koneksi ObjectStorage" \ koneksi ObjectStorage"
objectStorageSetPublicRead: "Setel \"public-read\" disaat mengunggah" objectStorageSetPublicRead: "Setel \"public-read\" disaat mengunggah"
serverLogs: "Log Server"
deleteAll: "Hapus semua"
showFixedPostForm: "Tampilkan form posting di atas linimasa." showFixedPostForm: "Tampilkan form posting di atas linimasa."
newNoteRecived: "Kamu mendapat catatan baru" newNoteRecived: "Kamu mendapat catatan baru"
sounds: "Bunyi" sounds: "Bunyi"
@ -546,7 +485,6 @@ popout: "Pop-out"
volume: "Volume" volume: "Volume"
masterVolume: "Master volume" masterVolume: "Master volume"
details: "Selengkapnya" details: "Selengkapnya"
chooseEmoji: "Pilih emoji"
unableToProcess: "Operasi tersebut tidak dapat diselesaikan." unableToProcess: "Operasi tersebut tidak dapat diselesaikan."
recentUsed: "Baru saja digunakan" recentUsed: "Baru saja digunakan"
install: "Pasang" install: "Pasang"
@ -564,9 +502,7 @@ scratchpadDescription: "Scratchpad menyediakan lingkungan eksperimen untuk AiScr
\ Kamu bisa menulis, mengeksuksi, serta mengecek hasil yang berinteraksi dengan\ \ Kamu bisa menulis, mengeksuksi, serta mengecek hasil yang berinteraksi dengan\
\ FoundKey." \ FoundKey."
output: "Keluaran" output: "Keluaran"
script: "Script"
updateRemoteUser: "Perbaharui informasi pengguna luar" updateRemoteUser: "Perbaharui informasi pengguna luar"
deleteAllFiles: "Hapus semua berkas"
deleteAllFilesConfirm: "Apakah kamu yakin ingin menghapus semua berkas?" deleteAllFilesConfirm: "Apakah kamu yakin ingin menghapus semua berkas?"
removeAllFollowing: "Tahan semua mengikuti" removeAllFollowing: "Tahan semua mengikuti"
removeAllFollowingDescription: "Batal mengikuti semua akun dari {host}. Mohon jalankan\ removeAllFollowingDescription: "Batal mengikuti semua akun dari {host}. Mohon jalankan\
@ -583,10 +519,7 @@ addItem: "Tambahkan item"
relays: "Relay" relays: "Relay"
addRelay: "Tambahkan relay" addRelay: "Tambahkan relay"
inboxUrl: "URL Kotak masuk" inboxUrl: "URL Kotak masuk"
addedRelays: "Relay yang ditambahkan"
serviceworkerInfo: "Harus diaktifkan untuk pemberitahuan push."
deletedNote: "Catatan yang dihapus" deletedNote: "Catatan yang dihapus"
invisibleNote: "Catatan yang disembunyikan"
enableInfiniteScroll: "Aktifkan gulir tak terbatas" enableInfiniteScroll: "Aktifkan gulir tak terbatas"
visibility: "Visibilitas" visibility: "Visibilitas"
poll: "Angket" poll: "Angket"
@ -596,15 +529,12 @@ disablePlayer: "Tutup pemutar video"
themeEditor: "Penyunting tema" themeEditor: "Penyunting tema"
description: "Deskripsi" description: "Deskripsi"
describeFile: "Tambahkan keterangan" describeFile: "Tambahkan keterangan"
enterFileDescription: "Masukkan keterangan"
author: "Pembuat" author: "Pembuat"
leaveConfirm: "Ada perubahan yang belum disimpan. Apakah kamu ingin membuangnya?" leaveConfirm: "Ada perubahan yang belum disimpan. Apakah kamu ingin membuangnya?"
manage: "Manajemen" manage: "Manajemen"
plugins: "Plugin" plugins: "Plugin"
deck: "Dek" deck: "Dek"
undeck: "Keluar dari dek"
useBlurEffectForModal: "Gunakan efek buram untuk modal" useBlurEffectForModal: "Gunakan efek buram untuk modal"
useFullReactionPicker: "Gunakan pemilih reaksi ukuran penuh"
width: "Lebar" width: "Lebar"
height: "Tinggi" height: "Tinggi"
large: "Besar" large: "Besar"
@ -616,7 +546,6 @@ enableAll: "Aktifkan semua"
disableAll: "Nonaktifkan semua" disableAll: "Nonaktifkan semua"
tokenRequested: "Berikan ijin akses ke akun" tokenRequested: "Berikan ijin akses ke akun"
pluginTokenRequestedDescription: "Plugin ini dapat menggunakan setelan ijin disini." pluginTokenRequestedDescription: "Plugin ini dapat menggunakan setelan ijin disini."
notificationType: "Jenis pemberitahuan"
edit: "Sunting" edit: "Sunting"
useStarForReactionFallback: "Gunakan ★ sebagai fallback jika reaksi emoji tidak diketahui" useStarForReactionFallback: "Gunakan ★ sebagai fallback jika reaksi emoji tidak diketahui"
emailServer: "Server surel" emailServer: "Server surel"
@ -644,10 +573,7 @@ userSaysSomething: "{name} mengatakan sesuatu"
makeActive: "Aktifkan" makeActive: "Aktifkan"
display: "Tampilkan" display: "Tampilkan"
copy: "Salin" copy: "Salin"
metrics: "Metrik"
overview: "Ikhtisar" overview: "Ikhtisar"
logs: "Log"
delayed: "Terlambat"
database: "Basis data" database: "Basis data"
channel: "Kanal" channel: "Kanal"
create: "Buat" create: "Buat"
@ -665,7 +591,6 @@ setMultipleBySeparatingWithSpace: "Kamu dapat menyetel banyak dengan memisahkann
\ menggunakan spasi." \ menggunakan spasi."
fileIdOrUrl: "File-ID atau URL" fileIdOrUrl: "File-ID atau URL"
behavior: "Perilaku" behavior: "Perilaku"
sample: "Contoh"
abuseReports: "Laporkan" abuseReports: "Laporkan"
reportAbuse: "Laporkan" reportAbuse: "Laporkan"
reportAbuseOf: "Laporkan {name}" reportAbuseOf: "Laporkan {name}"
@ -680,13 +605,8 @@ forwardReportIsAnonymous: "Untuk melindungi privasi akun kamu, akun anonim dari
send: "Kirim" send: "Kirim"
abuseMarkAsResolved: "Tandai laporan sebagai selesai" abuseMarkAsResolved: "Tandai laporan sebagai selesai"
openInNewTab: "Buka di tab baru" openInNewTab: "Buka di tab baru"
openInSideView: "Buka di tampilan samping"
defaultNavigationBehaviour: "Navigasi bawaan" defaultNavigationBehaviour: "Navigasi bawaan"
editTheseSettingsMayBreakAccount: "Menyunting pengaturan ini memiliki kemungkinan\
\ untuk merusak akun kamu."
instanceTicker: "Informasi pengguna pada instansi" instanceTicker: "Informasi pengguna pada instansi"
waitingFor: "Menunggu untuk {x}"
random: "Acak"
system: "Sistem" system: "Sistem"
switchUi: "Ubah UI" switchUi: "Ubah UI"
desktop: "Desktop" desktop: "Desktop"
@ -725,7 +645,6 @@ loadRawImages: "Tampilkan lampiran gambar secara penuh daripada thumbnail"
disableShowingAnimatedImages: "Jangan mainkan gambar bergerak" disableShowingAnimatedImages: "Jangan mainkan gambar bergerak"
verificationEmailSent: "Surel verifikasi telah dikirimkan. Mohon akses tautan yang\ verificationEmailSent: "Surel verifikasi telah dikirimkan. Mohon akses tautan yang\
\ telah disertakan untuk menyelesaikan verifikasi." \ telah disertakan untuk menyelesaikan verifikasi."
notSet: "Tidak disetel"
emailVerified: "Surel telah diverifikasi" emailVerified: "Surel telah diverifikasi"
noteFavoritesCount: "Jumlah catatan yang difavoritkan" noteFavoritesCount: "Jumlah catatan yang difavoritkan"
pageLikesCount: "Jumlah suka yang diterima Halaman" pageLikesCount: "Jumlah suka yang diterima Halaman"
@ -733,8 +652,6 @@ pageLikedCount: "Jumlah Halaman yang disukai"
contact: "Kontak" contact: "Kontak"
useSystemFont: "Gunakan font bawaan sistem operasi" useSystemFont: "Gunakan font bawaan sistem operasi"
clips: "Klip" clips: "Klip"
experimentalFeatures: "Fitur eksperimental"
developer: "Pengembang"
makeExplorable: "Buat akun tampil di \"Jelajahi\"" makeExplorable: "Buat akun tampil di \"Jelajahi\""
makeExplorableDescription: "Jika kamu mematikan ini, akun kamu tidak akan muncul di\ makeExplorableDescription: "Jika kamu mematikan ini, akun kamu tidak akan muncul di\
\ bagian \"Jelajahi:" \ bagian \"Jelajahi:"
@ -747,28 +664,16 @@ narrow: "Sempit"
reloadToApplySetting: "Pengaturan ini akan diterapkan saat memuat halaman kembali.\ reloadToApplySetting: "Pengaturan ini akan diterapkan saat memuat halaman kembali.\
\ Apakah kamu ingin memuat halaman kembali sekarang?" \ Apakah kamu ingin memuat halaman kembali sekarang?"
needReloadToApply: "Pengaturan ini hanya akan diterapkan setelah memuat ulang halaman." needReloadToApply: "Pengaturan ini hanya akan diterapkan setelah memuat ulang halaman."
showTitlebar: "Tampilkan bilah judul"
clearCache: "Hapus tembolok" clearCache: "Hapus tembolok"
onlineUsersCount: "{n} orang sedang daring" onlineUsersCount: "{n} orang sedang daring"
nUsers: "{n} Pengguna"
nNotes: "{n} Catatan"
myTheme: "Tema saya"
backgroundColor: "Latar Belakang" backgroundColor: "Latar Belakang"
accentColor: "Aksen" accentColor: "Aksen"
textColor: "Teks" textColor: "Teks"
saveAs: "Simpan sebagai…" saveAs: "Simpan sebagai…"
advanced: "Tingkat lanjut"
value: "Nilai"
createdAt: "Dibuat pada" createdAt: "Dibuat pada"
updatedAt: "Diperbarui pada" updatedAt: "Diperbarui pada"
saveConfirm: "Simpan perubahan?"
deleteConfirm: "Yakin hapus?" deleteConfirm: "Yakin hapus?"
invalidValue: "Nilai tidak valid."
registry: "Registri"
closeAccount: "Tutup akun" closeAccount: "Tutup akun"
currentVersion: "Versi saat ini"
latestVersion: "Versi terkini"
youAreRunningUpToDateClient: "Kamu menggunakan versi terkini dari klienmu."
newVersionOfClientAvailable: "Versi terbaru dari klien kamu telah tersedia." newVersionOfClientAvailable: "Versi terbaru dari klien kamu telah tersedia."
usageAmount: "Penggunaan" usageAmount: "Penggunaan"
capacity: "Kapasitas" capacity: "Kapasitas"
@ -778,11 +683,9 @@ apply: "Terapkan"
receiveAnnouncementFromInstance: "Terima pemberitahuan surel dari instansi ini" receiveAnnouncementFromInstance: "Terima pemberitahuan surel dari instansi ini"
emailNotification: "Pemberitahuan surel" emailNotification: "Pemberitahuan surel"
publish: "Terbitkan" publish: "Terbitkan"
inChannelSearch: "Cari di kanal"
useReactionPickerForContextMenu: "Buka pemilih reaksi dengan klik-kanan" useReactionPickerForContextMenu: "Buka pemilih reaksi dengan klik-kanan"
typingUsers: "{users} sedang mengetik..." typingUsers: "{users} sedang mengetik..."
jumpToSpecifiedDate: "Loncat ke tanggal spesifik" jumpToSpecifiedDate: "Loncat ke tanggal spesifik"
showingPastTimeline: "Sedang menampilkan linimasa lama"
clear: "Bersihkan" clear: "Bersihkan"
markAllAsRead: "Tandai semua telah dibaca" markAllAsRead: "Tandai semua telah dibaca"
goBack: "Kembali" goBack: "Kembali"
@ -797,7 +700,6 @@ notSpecifiedMentionWarning: "Catatan ini mengandung sebutan dari pengguna yang t
info: "Informasi" info: "Informasi"
userInfo: "Informasi pengguna" userInfo: "Informasi pengguna"
unknown: "Tidak diketahui" unknown: "Tidak diketahui"
onlineStatus: "Status daring"
hideOnlineStatus: "Sembunyikan status daring" hideOnlineStatus: "Sembunyikan status daring"
hideOnlineStatusDescription: "Menyembunyikan status daring kamu umengurangi kenyamanan\ hideOnlineStatusDescription: "Menyembunyikan status daring kamu umengurangi kenyamanan\
\ untuk beberapa fungsi seperti contohnya pencarian." \ untuk beberapa fungsi seperti contohnya pencarian."
@ -824,22 +726,13 @@ gallery: "Galeri"
recentPosts: "Postingan terbaru" recentPosts: "Postingan terbaru"
popularPosts: "Postingan populer" popularPosts: "Postingan populer"
shareWithNote: "Bagikan dengan catatan" shareWithNote: "Bagikan dengan catatan"
expiration: "Batas akhir"
memo: "Memo"
priority: "Prioritas"
high: "Tinggi"
middle: "Sedang"
low: "Rendah"
emailNotConfiguredWarning: "Alamat surel tidak disetel." emailNotConfiguredWarning: "Alamat surel tidak disetel."
ratio: "Rasio" ratio: "Rasio"
previewNoteText: "Tampilkan pratinjau" previewNoteText: "Tampilkan pratinjau"
customCss: "Custom CSS" customCss: "Custom CSS"
customCssWarn: "Pengaturan ini seharusnya digunakan jika kamu tahu cara kerjanya.\ customCssWarn: "Pengaturan ini seharusnya digunakan jika kamu tahu cara kerjanya.\
\ Memasukkan nilai yang tidak tepat dapat menyebabkan klien tidak berfungsi semestinya." \ Memasukkan nilai yang tidak tepat dapat menyebabkan klien tidak berfungsi semestinya."
global: "Global"
squareAvatars: "Tampilkan avatar sebagai persegi" squareAvatars: "Tampilkan avatar sebagai persegi"
sent: "Kirim"
received: "Diterima"
searchResult: "Hasil Penelusuran" searchResult: "Hasil Penelusuran"
hashtags: "Tagar" hashtags: "Tagar"
troubleshooting: "Penyelesaian Masalah" troubleshooting: "Penyelesaian Masalah"
@ -932,9 +825,6 @@ _accountDelete:
requestAccountDelete: "Minta penghapusan akun" requestAccountDelete: "Minta penghapusan akun"
started: "Penghapusan telah dimulai" started: "Penghapusan telah dimulai"
inProgress: "Penghapusan sedang dalam proses" inProgress: "Penghapusan sedang dalam proses"
_ad:
back: "Kembali"
reduceFrequencyOfThisAd: "Tampilkan iklan ini lebih sedikit"
_forgotPassword: _forgotPassword:
enterEmail: "Masukkan alamat surel yang kamu gunakan pada saat mendaftar. Sebuah\ enterEmail: "Masukkan alamat surel yang kamu gunakan pada saat mendaftar. Sebuah\
\ tautan untuk mengatur ulang kata sandi kamu akan dikirimkan ke alamat surel\ \ tautan untuk mengatur ulang kata sandi kamu akan dikirimkan ke alamat surel\
@ -956,7 +846,6 @@ _email:
_plugin: _plugin:
install: "Memasang plugin" install: "Memasang plugin"
installWarn: "Mohon jangan memasang plugin yang tidak dapat dipercayai." installWarn: "Mohon jangan memasang plugin yang tidak dapat dipercayai."
manage: "Manajemen plugin"
_registry: _registry:
scope: "Lingkup" scope: "Lingkup"
key: "Kunci" key: "Kunci"
@ -966,10 +855,8 @@ _registry:
_aboutMisskey: _aboutMisskey:
about: "FoundKey adalah perangkat lunak sumber terbuka yang sedang dikembangkan\ about: "FoundKey adalah perangkat lunak sumber terbuka yang sedang dikembangkan\
\ oleh syuilo sejak 2014." \ oleh syuilo sejak 2014."
contributors: "Kontributor utama"
allContributors: "Seluruh kontributor" allContributors: "Seluruh kontributor"
source: "Sumber kode" source: "Sumber kode"
translation: "Terjemahkan FoundKey"
_nsfw: _nsfw:
respect: "Sembunyikan media NSFW" respect: "Sembunyikan media NSFW"
ignore: "Jangan sembunyikan media NSFW" ignore: "Jangan sembunyikan media NSFW"
@ -1099,69 +986,6 @@ _theme:
alreadyInstalled: "Tema telah dipasang" alreadyInstalled: "Tema telah dipasang"
invalid: "Format tema tidak valid" invalid: "Format tema tidak valid"
make: "Buat tema" make: "Buat tema"
base: "Dasar"
addConstant: "Tambah konstanta"
constant: "Konstanta"
defaultValue: "Nilai bawaan"
color: "Warna"
refProp: "Referensikan properti"
refConst: "Referensikan konstanta"
key: "Kunci"
func: "Fungsi"
funcKind: "Tipe fungsi"
argument: "Argumen"
basedProp: "Mereferensikan properti"
alpha: "Opasitas"
darken: "Mengelamkan"
lighten: "Menerangkan"
inputConstantName: "Masukkan nama untuk konstanta"
importInfo: "Jika kamu memasukkan kode tema disini, kamu dapat mengimpornya ke penyunting\
\ tema"
deleteConstantConfirm: "apakah kamu ingin menghapus konstanta {const}?"
keys:
accent: "Aksen"
bg: "Latar belakang"
fg: "Teks"
focus: "Fokus"
indicator: "Indikator"
panel: "Panel"
shadow: "Bayangan"
header: "Header"
navBg: "Latar belakang bilah samping"
navFg: "Teks bilah samping"
navHoverFg: "Teks bilah samping (Mengambang)"
navActive: "Teks bilah samping (Aktif)"
navIndicator: "Indikator bilah samping"
link: "Tautan"
hashtag: "Tagar"
mention: "Sebut"
mentionMe: "Sebutan (saya)"
renote: "Renote"
modalBg: "Latar belakang modal"
divider: "Pembagi"
scrollbarHandle: "Pegangan bilah gulir"
scrollbarHandleHover: "Pegangan bilah gulir (Mengambang)"
dateLabelFg: "Teks label tanggal"
infoBg: "Latar belakang informasi"
infoFg: "Teks informasi"
infoWarnBg: "Latar belakang peringatan"
infoWarnFg: "Teks peringatan"
cwBg: "Latar belakang tombol Sembunyikan Konten"
cwFg: "Teks tombol Sembunyikan Konten"
cwHoverBg: "Latar belakang tombol Sembunyikan Konten (Mengambang)"
toastBg: "Latar belakang pemberitahuan"
toastFg: "Teks pemberitahuan"
buttonBg: "Latar belakang tombol"
buttonHoverBg: "Latar belakang tombol (Mengambang)"
inputBorder: "Batas bidang masukan"
listItemHoverBg: "Latar belakang daftar item (Mengambang)"
driveFolderBg: "Latar belakang folder drive"
wallpaperOverlay: "Lapisan wallpaper"
badge: "Lencana"
messageBg: "Latar belakang obrolan"
accentDarken: "Aksen (Gelap)"
accentLighten: "Aksen (Terang)"
fgHighlighted: "Teks yang disorot"
_sfx: _sfx:
note: "Catatan" note: "Catatan"
noteMy: "Catatan (Saya)" noteMy: "Catatan (Saya)"
@ -1449,7 +1273,6 @@ _relayStatus:
accepted: "Disetujui" accepted: "Disetujui"
rejected: "Ditolak" rejected: "Ditolak"
_notification: _notification:
fileUploaded: "Berkas telah berhasil diunggah"
youGotMention: "{name} meyebut kamu" youGotMention: "{name} meyebut kamu"
youGotReply: "{name} membalas kamu" youGotReply: "{name} membalas kamu"
youGotQuote: "{name} mengutip kamu" youGotQuote: "{name} mengutip kamu"
@ -1464,7 +1287,6 @@ _notification:
pollEnded: "Hasil Kuesioner telah keluar" pollEnded: "Hasil Kuesioner telah keluar"
emptyPushNotificationMessage: "Pembaruan notifikasi dorong" emptyPushNotificationMessage: "Pembaruan notifikasi dorong"
_types: _types:
all: "Semua"
follow: "Ikuti" follow: "Ikuti"
mention: "Sebut" mention: "Sebut"
reply: "Balasan" reply: "Balasan"

View file

@ -15,7 +15,6 @@ fetchingAsApObject: "Recuperando dal Fediverso..."
ok: "OK" ok: "OK"
gotIt: "Ho capito" gotIt: "Ho capito"
cancel: "Annulla" cancel: "Annulla"
enterUsername: "Inserisci un nome utente"
renotedBy: "Rinotato da {user}" renotedBy: "Rinotato da {user}"
noNotes: "Nessuna nota!" noNotes: "Nessuna nota!"
noNotifications: "Nessuna notifica" noNotifications: "Nessuna notifica"
@ -31,16 +30,12 @@ login: "Accedi"
loggingIn: "Accesso in corso..." loggingIn: "Accesso in corso..."
logout: "Esci" logout: "Esci"
signup: "Iscriviti" signup: "Iscriviti"
uploading: "Caricamento..."
save: "Salva" save: "Salva"
users: "Utente" users: "Utente"
addUser: "Aggiungi utente" addUser: "Aggiungi utente"
favorite: "Preferiti" favorite: "Preferiti"
favorites: "Preferiti" favorites: "Preferiti"
unfavorite: "Rimuovi nota dai preferiti" unfavorite: "Rimuovi nota dai preferiti"
favorited: "Aggiunta ai tuoi preferiti."
alreadyFavorited: "Già tra i tuoi preferiti."
cantFavorite: "Impossibile aggiungere la nota ai preferiti."
pin: "Fissa sul profilo" pin: "Fissa sul profilo"
unpin: "Non fissare sul profilo" unpin: "Non fissare sul profilo"
copyContent: "Copia il contenuto" copyContent: "Copia il contenuto"
@ -52,7 +47,6 @@ deleteAndEditConfirm: "Vuoi davvero cancellare questa nota e scriverla di nuovo?
addToList: "Aggiungi alla lista" addToList: "Aggiungi alla lista"
sendMessage: "Invia messaggio" sendMessage: "Invia messaggio"
copyUsername: "Copia nome utente" copyUsername: "Copia nome utente"
searchUser: "Cerca utente"
reply: "Rispondi" reply: "Rispondi"
loadMore: "Mostra di più" loadMore: "Mostra di più"
showMore: "Mostra di più" showMore: "Mostra di più"
@ -74,7 +68,6 @@ exportRequested: "Hai richiesto un'esportazione, e potrebbe volerci tempo. Quand
\ sarà compiuta, il file verrà aggiunto direttamente al Drive." \ sarà compiuta, il file verrà aggiunto direttamente al Drive."
importRequested: "Hai richiesto un'importazione. Può volerci tempo. " importRequested: "Hai richiesto un'importazione. Può volerci tempo. "
lists: "Liste" lists: "Liste"
noLists: "Nessuna lista"
note: "Nota" note: "Nota"
notes: "Note" notes: "Note"
following: "Follows" following: "Follows"
@ -100,21 +93,15 @@ followRequest: "Richiesta di follow"
followRequests: "Richieste di follow" followRequests: "Richieste di follow"
unfollow: "Smetti di seguire" unfollow: "Smetti di seguire"
followRequestPending: "La richiesta di follow deve essere approvata" followRequestPending: "La richiesta di follow deve essere approvata"
enterEmoji: "Inserisci emoji"
renote: "Rinota" renote: "Rinota"
unrenote: "Annulla rinota" unrenote: "Annulla rinota"
renoted: "Rinotato!"
cantRenote: "È impossibile rinotare questa nota."
cantReRenote: "È impossibile rinotare una Rinota."
quote: "Cita" quote: "Cita"
pinnedNote: "Nota fissata" pinnedNote: "Nota fissata"
pinned: "Fissa sul profilo"
you: "Tu" you: "Tu"
clickToShow: "Clicca per visualizzare" clickToShow: "Clicca per visualizzare"
sensitive: "Contenuto sensibile" sensitive: "Contenuto sensibile"
add: "Aggiungi" add: "Aggiungi"
reaction: "Reazione" reaction: "Reazione"
reactionSetting: "Reazioni visualizzate sul pannello"
reactionSettingDescription2: "Trascina per riorganizzare, clicca per cancellare, usa\ reactionSettingDescription2: "Trascina per riorganizzare, clicca per cancellare, usa\
\ il pulsante \"+\" per aggiungere." \ il pulsante \"+\" per aggiungere."
attachCancel: "Rimuovi allegato" attachCancel: "Rimuovi allegato"
@ -139,10 +126,7 @@ editWidgetsExit: "Modifica fine"
customEmojis: "Emoji personalizzati" customEmojis: "Emoji personalizzati"
emoji: "Emoji" emoji: "Emoji"
emojis: "Emoji" emojis: "Emoji"
emojiName: "Nome dell'emoji"
emojiUrl: "URL dell'emoji"
addEmoji: "Aggiungi un emoji" addEmoji: "Aggiungi un emoji"
settingGuide: "Configurazione suggerita"
cacheRemoteFiles: "Memorizzazione nella cache dei file remoti" cacheRemoteFiles: "Memorizzazione nella cache dei file remoti"
cacheRemoteFilesDescription: "Disabilitando questa opzione, i file remoti verranno\ cacheRemoteFilesDescription: "Disabilitando questa opzione, i file remoti verranno\
\ linkati direttamente senza essere memorizzati nella cache. Sarà possibile risparmiare\ \ linkati direttamente senza essere memorizzati nella cache. Sarà possibile risparmiare\
@ -162,7 +146,6 @@ addAccount: "Aggiungi account"
loginFailed: "Accesso non riuscito" loginFailed: "Accesso non riuscito"
showOnRemote: "Sfoglia sull'istanza remota" showOnRemote: "Sfoglia sull'istanza remota"
general: "Generali" general: "Generali"
wallpaper: "Sfondo"
setWallpaper: "Imposta sfondo" setWallpaper: "Imposta sfondo"
removeWallpaper: "Elimina lo sfondo" removeWallpaper: "Elimina lo sfondo"
youHaveNoLists: "Non hai ancora creato nessuna lista" youHaveNoLists: "Non hai ancora creato nessuna lista"
@ -177,27 +160,19 @@ selectUser: "Seleziona utente"
recipient: "Destinatario" recipient: "Destinatario"
annotation: "Descrizione" annotation: "Descrizione"
federation: "Federazione" federation: "Federazione"
instances: "Istanza"
registeredAt: "Registrato presso" registeredAt: "Registrato presso"
latestRequestSentAt: "Ultima richiesta inviata" latestRequestSentAt: "Ultima richiesta inviata"
latestRequestReceivedAt: "Ultima richiesta ricevuta" latestRequestReceivedAt: "Ultima richiesta ricevuta"
latestStatus: "Ultimo stato" latestStatus: "Ultimo stato"
storageUsage: "Volume di dischi"
charts: "Grafici" charts: "Grafici"
perHour: "All'ora" perHour: "All'ora"
perDay: "al giorno" perDay: "al giorno"
stopActivityDelivery: "Interrompi la distribuzione di attività" stopActivityDelivery: "Interrompi la distribuzione di attività"
blockThisInstance: "Blocca l'istanza" blockThisInstance: "Blocca l'istanza"
operations: "Operazioni"
software: "Software" software: "Software"
version: "Versione" version: "Versione"
metadata: "Metadato"
withNFiles: "{n} file in allegato" withNFiles: "{n} file in allegato"
monitor: "Monitorare"
jobQueue: "Coda di lavoro" jobQueue: "Coda di lavoro"
cpuAndMemory: "CPU e Memoria"
network: "Rete"
disk: "Disco"
instanceInfo: "Informazioni sull'istanza" instanceInfo: "Informazioni sull'istanza"
statistics: "Statistiche" statistics: "Statistiche"
clearQueue: "Svuota coda" clearQueue: "Svuota coda"
@ -230,9 +205,6 @@ all: "Tutti"
subscribing: "Iscrivendo" subscribing: "Iscrivendo"
publishing: "Pubblicando" publishing: "Pubblicando"
notResponding: "Nessuna risposta" notResponding: "Nessuna risposta"
instanceFollowing: "Seguiti dall'istanza"
instanceFollowers: "Followers dell'istanza"
instanceUsers: "Utenti dell'istanza"
changePassword: "Aggiorna Password" changePassword: "Aggiorna Password"
security: "Sicurezza" security: "Sicurezza"
retypedNotMatch: "Le password non corrispondono." retypedNotMatch: "Le password non corrispondono."
@ -248,7 +220,6 @@ lookup: "Cercare"
announcements: "Annunci" announcements: "Annunci"
imageUrl: "URL dell'immagine" imageUrl: "URL dell'immagine"
remove: "Elimina" remove: "Elimina"
removed: "Il tuo Tweet è stato eliminato"
removeAreYouSure: "Eliminare \"{x}\"?" removeAreYouSure: "Eliminare \"{x}\"?"
deleteAreYouSure: "Eliminare \"{x}\"?" deleteAreYouSure: "Eliminare \"{x}\"?"
resetAreYouSure: "Reimposta" resetAreYouSure: "Reimposta"
@ -287,7 +258,6 @@ lightThemes: "Tema Chiaro"
darkThemes: "Tema Scuro" darkThemes: "Tema Scuro"
syncDeviceDarkMode: "Sincronizza il tema scuro con le impostazioni del dispositivo" syncDeviceDarkMode: "Sincronizza il tema scuro con le impostazioni del dispositivo"
drive: "Drive" drive: "Drive"
fileName: "Nome dell'allegato"
selectFile: "Scelta allegato" selectFile: "Scelta allegato"
selectFiles: "Scelta allegato" selectFiles: "Scelta allegato"
selectFolder: "Seleziona cartella" selectFolder: "Seleziona cartella"
@ -341,7 +311,6 @@ enableLocalTimeline: "Abilita Timeline locale"
enableGlobalTimeline: "Abilita Timeline federata" enableGlobalTimeline: "Abilita Timeline federata"
disablingTimelinesInfo: "Anche se disabiliti queste timeline, gli amministratori e\ disablingTimelinesInfo: "Anche se disabiliti queste timeline, gli amministratori e\
\ i moderatori potranno sempre accederci." \ i moderatori potranno sempre accederci."
registration: "Iscriviti"
enableRegistration: "Permettere nuove registrazioni" enableRegistration: "Permettere nuove registrazioni"
invite: "Invita" invite: "Invita"
driveCapacityPerLocalAccount: "Volume del Drive per utente locale" driveCapacityPerLocalAccount: "Volume del Drive per utente locale"
@ -350,26 +319,13 @@ inMb: "in Megabytes"
iconUrl: "URL di icona (favicon, ecc.)" iconUrl: "URL di icona (favicon, ecc.)"
bannerUrl: "URL dell'immagine d'intestazione" bannerUrl: "URL dell'immagine d'intestazione"
backgroundImageUrl: "URL dello sfondo" backgroundImageUrl: "URL dello sfondo"
basicInfo: "Informazioni fondamentali"
pinnedUsers: "Utenti in evidenza" pinnedUsers: "Utenti in evidenza"
pinnedUsersDescription: "Elenca gli/le utenti che vuoi fissare in cima alla pagina\ pinnedUsersDescription: "Elenca gli/le utenti che vuoi fissare in cima alla pagina\
\ \"Esplora\", un@ per riga." \ \"Esplora\", un@ per riga."
pinnedPages: "Pagine in evidenza"
pinnedPagesDescription: "Specifica il percorso delle pagine che vuoi fissare in cima\
\ alla pagina dell'istanza. Una pagina per riga."
pinnedClipId: "ID della clip in evidenza"
pinnedNotes: "Nota fissata"
hcaptcha: "hCaptcha"
enableHcaptcha: "Abilita hCaptcha"
hcaptchaSiteKey: "Chiave del sito" hcaptchaSiteKey: "Chiave del sito"
hcaptchaSecretKey: "Chiave segreta" hcaptchaSecretKey: "Chiave segreta"
recaptcha: "reCAPTCHA"
enableRecaptcha: "Abilita reCAPTCHA"
recaptchaSiteKey: "Chiave del sito" recaptchaSiteKey: "Chiave del sito"
recaptchaSecretKey: "Chiave segreta" recaptchaSecretKey: "Chiave segreta"
avoidMultiCaptchaConfirm: "Utilizzare diversi Captcha può causare interferenze. Vuoi\
\ disattivare l'altro Captcha? Puoi lasciare diversi Captcha attivi premendo \"\
Cancella\"."
antennas: "Antenne" antennas: "Antenne"
manageAntennas: "Gestore delle antenne" manageAntennas: "Gestore delle antenne"
name: "Nome" name: "Nome"
@ -380,7 +336,6 @@ antennaKeywordsDescription: "Separare con uno spazio indica la condizione \"E\".
\ con un'interruzzione riga indica la condizione \"O\"." \ con un'interruzzione riga indica la condizione \"O\"."
notifyAntenna: "Invia notifiche delle nuove note" notifyAntenna: "Invia notifiche delle nuove note"
withFileAntenna: "Solo note con file in allegato" withFileAntenna: "Solo note con file in allegato"
enableServiceworker: "Abilita ServiceWorker"
antennaUsersDescription: "Inserisci solo un nome utente per riga" antennaUsersDescription: "Inserisci solo un nome utente per riga"
caseSensitive: "Sensibile alla distinzione tra maiuscole e minuscole" caseSensitive: "Sensibile alla distinzione tra maiuscole e minuscole"
withReplies: "Includere le risposte" withReplies: "Includere le risposte"
@ -395,11 +350,8 @@ popularUsers: "Utenti popolari"
recentlyUpdatedUsers: "Utenti attivi di recente" recentlyUpdatedUsers: "Utenti attivi di recente"
recentlyRegisteredUsers: "Utenti registrati di recente" recentlyRegisteredUsers: "Utenti registrati di recente"
recentlyDiscoveredUsers: "Utenti scoperti di recente" recentlyDiscoveredUsers: "Utenti scoperti di recente"
exploreUsersCount: "Ci sono {count} utenti"
exploreFediverse: "Esplora il Fediverso"
popularTags: "Tag di tendenza" popularTags: "Tag di tendenza"
userList: "Liste" userList: "Liste"
about: "Informazioni"
aboutMisskey: "Informazioni di FoundKey" aboutMisskey: "Informazioni di FoundKey"
administrator: "Amministratore" administrator: "Amministratore"
token: "Token" token: "Token"
@ -419,7 +371,6 @@ share: "Condividi"
notFound: "Non trovato" notFound: "Non trovato"
notFoundDescription: "Nessuna pagina corrisponde all'URL indicata." notFoundDescription: "Nessuna pagina corrisponde all'URL indicata."
uploadFolder: "Destinazione caricamento predefinita" uploadFolder: "Destinazione caricamento predefinita"
cacheClear: "Svuota cache"
markAsReadAllNotifications: "Segna tutte le notifiche come lette" markAsReadAllNotifications: "Segna tutte le notifiche come lette"
markAsReadAllUnreadNotes: "Segna tutte le note come lette" markAsReadAllUnreadNotes: "Segna tutte le note come lette"
markAsReadAllTalkMessages: "Segna tutte le chat come lette" markAsReadAllTalkMessages: "Segna tutte le chat come lette"
@ -450,7 +401,6 @@ noMessagesYet: "Ancora nessuna chat"
newMessageExists: "Hai ricevuto un nuovo messaggio" newMessageExists: "Hai ricevuto un nuovo messaggio"
onlyOneFileCanBeAttached: "È possibile allegare al messaggio soltanto uno file" onlyOneFileCanBeAttached: "È possibile allegare al messaggio soltanto uno file"
signinRequired: "Devi essere registrat@ nel tuo account" signinRequired: "Devi essere registrat@ nel tuo account"
invitations: "Invita"
invitationCode: "Codice di invito" invitationCode: "Codice di invito"
checking: "Confermando" checking: "Confermando"
available: "Consigliati" available: "Consigliati"
@ -470,7 +420,6 @@ or: "oppure"
language: "Lingua" language: "Lingua"
uiLanguage: "Lingua di visualizzazione dell'interfaccia" uiLanguage: "Lingua di visualizzazione dell'interfaccia"
groupInvited: "Invitat@ al gruppo" groupInvited: "Invitat@ al gruppo"
aboutX: "Informazioni su {x}"
useOsNativeEmojis: "Usare le emoji native del sistema operativo" useOsNativeEmojis: "Usare le emoji native del sistema operativo"
disableDrawer: "Non mostrare il menù sul drawer" disableDrawer: "Non mostrare il menù sul drawer"
youHaveNoGroups: "Nessun gruppo" youHaveNoGroups: "Nessun gruppo"
@ -478,27 +427,19 @@ joinOrCreateGroup: "Puoi creare il tuo gruppo o essere invitat@ a gruppi che gi
noHistory: "Nessuna cronologia" noHistory: "Nessuna cronologia"
signinHistory: "Cronologia di accesso all'account" signinHistory: "Cronologia di accesso all'account"
disableAnimatedMfm: "Disabilità i MFM animati" disableAnimatedMfm: "Disabilità i MFM animati"
doing: "In corso..."
category: "Categoria" category: "Categoria"
tags: "Tag" tags: "Tag"
docSource: "Sorgente della scheda"
createAccount: "Crea il tuo account" createAccount: "Crea il tuo account"
existingAccount: "Account esistente" existingAccount: "Account esistente"
regenerate: "Generare di nuovo"
fontSize: "Dimensione carattere" fontSize: "Dimensione carattere"
noFollowRequests: "Non hai alcuna richiesta di follow" noFollowRequests: "Non hai alcuna richiesta di follow"
openImageInNewTab: "Aprire immagini in una nuova scheda" openImageInNewTab: "Aprire immagini in una nuova scheda"
dashboard: "Pannello di controllo" dashboard: "Pannello di controllo"
local: "Locale" local: "Locale"
remote: "Remoto" remote: "Remoto"
total: "Totale"
weekOverWeekChanges: "Settimanale"
dayOverDayChanges: "Giornaliero" dayOverDayChanges: "Giornaliero"
appearance: "Aspetto" appearance: "Aspetto"
clientSettings: "Impostazioni client" clientSettings: "Impostazioni client"
accountSettings: "Impostazioni account"
numberOfDays: "Numero di giorni"
hideThisNote: "Nasconda la nota"
showFeaturedNotesInTimeline: "Mostrare le note di tendenza nella tua timeline" showFeaturedNotesInTimeline: "Mostrare le note di tendenza nella tua timeline"
objectStorage: "Stoccaggio oggetti" objectStorage: "Stoccaggio oggetti"
useObjectStorage: "Utilizza stoccaggio oggetti" useObjectStorage: "Utilizza stoccaggio oggetti"
@ -524,8 +465,6 @@ objectStorageUseProxy: "Usa proxy"
objectStorageUseProxyDesc: "Disabilita quest'opzione se non usi proxy per la connessione\ objectStorageUseProxyDesc: "Disabilita quest'opzione se non usi proxy per la connessione\
\ API." \ API."
objectStorageSetPublicRead: "Imposta \"visibilità pubblica\" al momento di caricare" objectStorageSetPublicRead: "Imposta \"visibilità pubblica\" al momento di caricare"
serverLogs: "Log del server"
deleteAll: "Cancella cronologia"
showFixedPostForm: "Visualizzare la finestra di pubblicazione in cima alla timeline" showFixedPostForm: "Visualizzare la finestra di pubblicazione in cima alla timeline"
newNoteRecived: "Vedi le nuove note" newNoteRecived: "Vedi le nuove note"
sounds: "Impostazioni suoni" sounds: "Impostazioni suoni"
@ -536,7 +475,6 @@ popout: "Finestra pop-out"
volume: "Volume" volume: "Volume"
masterVolume: "Volume principale" masterVolume: "Volume principale"
details: "Dettagli" details: "Dettagli"
chooseEmoji: "Scegli emoji"
unableToProcess: "Impossibile compiere l'operazione" unableToProcess: "Impossibile compiere l'operazione"
recentUsed: "Usato di recente" recentUsed: "Usato di recente"
install: "Installa" install: "Installa"
@ -554,9 +492,7 @@ scratchpadDescription: "Lo Scratchpad offre un ambiente per esperimenti di AiScr
\ È possibile scrivere, eseguire e confermare i risultati dell'interazione del codice\ \ È possibile scrivere, eseguire e confermare i risultati dell'interazione del codice\
\ con FoundKey." \ con FoundKey."
output: "Uscita" output: "Uscita"
script: "Script"
updateRemoteUser: "Aggiornare le informazioni di utente remot@" updateRemoteUser: "Aggiornare le informazioni di utente remot@"
deleteAllFiles: "Elimina tutti i file"
deleteAllFilesConfirm: "Vuoi davvero eliminare tutti i file?" deleteAllFilesConfirm: "Vuoi davvero eliminare tutti i file?"
removeAllFollowing: "Cancella tutti i follows" removeAllFollowing: "Cancella tutti i follows"
removeAllFollowingDescription: "Cancella tutti i follows del server {host}. Per favore,\ removeAllFollowingDescription: "Cancella tutti i follows del server {host}. Per favore,\
@ -573,10 +509,7 @@ addItem: "Aggiungi elemento"
relays: "Ripetitori" relays: "Ripetitori"
addRelay: "Aggiungi ripetitore" addRelay: "Aggiungi ripetitore"
inboxUrl: "Inbox URL" inboxUrl: "Inbox URL"
addedRelays: "Ripetitori configurati"
serviceworkerInfo: "Deve essere abilitato per le notifiche push. "
deletedNote: "Nota eliminata" deletedNote: "Nota eliminata"
invisibleNote: "Nota invisibile"
enableInfiniteScroll: "Abilita scorrimento infinito" enableInfiniteScroll: "Abilita scorrimento infinito"
visibility: "Visibilità" visibility: "Visibilità"
poll: "Sondaggio" poll: "Sondaggio"
@ -586,15 +519,12 @@ disablePlayer: "Chiudi lettore video"
themeEditor: "Editor di temi" themeEditor: "Editor di temi"
description: "Descrizione" description: "Descrizione"
describeFile: "Aggiungi una descrizione d'immagine" describeFile: "Aggiungi una descrizione d'immagine"
enterFileDescription: "Inserisci descrizione"
author: "Autore" author: "Autore"
leaveConfirm: "Ci sono delle modifiche ancora non salvate. Vuoi cancellarle?" leaveConfirm: "Ci sono delle modifiche ancora non salvate. Vuoi cancellarle?"
manage: "Gestione" manage: "Gestione"
plugins: "Estensioni" plugins: "Estensioni"
deck: "Deck" deck: "Deck"
undeck: "Esci dal deck"
useBlurEffectForModal: "Utilizza effetto sfocatura per i modali" useBlurEffectForModal: "Utilizza effetto sfocatura per i modali"
useFullReactionPicker: "Usa la totalità del pannello di reazioni"
width: "Larghezza" width: "Larghezza"
height: "Altezza" height: "Altezza"
large: "Grande" large: "Grande"
@ -607,7 +537,6 @@ disableAll: "Disabilita tutto"
tokenRequested: "Autorizza accesso all'account" tokenRequested: "Autorizza accesso all'account"
pluginTokenRequestedDescription: "Il plugin potrà utilizzare le autorizzazioni impostate\ pluginTokenRequestedDescription: "Il plugin potrà utilizzare le autorizzazioni impostate\
\ qui." \ qui."
notificationType: "Tipo di notifiche"
edit: "Modifica" edit: "Modifica"
useStarForReactionFallback: "Se è sconosciuto l'emoji di reazione, usare la ★ come\ useStarForReactionFallback: "Se è sconosciuto l'emoji di reazione, usare la ★ come\
\ alternativa." \ alternativa."
@ -633,10 +562,7 @@ userSaysSomething: "{name} ha detto qualcosa"
makeActive: "Attiva" makeActive: "Attiva"
display: "Visualizza" display: "Visualizza"
copy: "Copia" copy: "Copia"
metrics: "Statistiche"
overview: "Anteprima" overview: "Anteprima"
logs: "Log"
delayed: "Ritardo"
database: "Base di dati" database: "Base di dati"
channel: "Canale" channel: "Canale"
create: "Crea" create: "Crea"
@ -653,7 +579,6 @@ regenerateLoginTokenDescription: "Genera un nuovo token di autenticazione. Solit
setMultipleBySeparatingWithSpace: "È possibile creare multiple voci separate da spazi." setMultipleBySeparatingWithSpace: "È possibile creare multiple voci separate da spazi."
fileIdOrUrl: "ID o URL del file" fileIdOrUrl: "ID o URL del file"
behavior: "Comportamento" behavior: "Comportamento"
sample: "Esempio"
abuseReports: "Segnalazioni" abuseReports: "Segnalazioni"
reportAbuse: "Segnalazioni" reportAbuse: "Segnalazioni"
reportAbuseOf: "Segnala {name}" reportAbuseOf: "Segnala {name}"
@ -665,13 +590,8 @@ reporterOrigin: "Origine del segnalatore"
send: "Inviare" send: "Inviare"
abuseMarkAsResolved: "Contrassegna la segnalazione come risolta" abuseMarkAsResolved: "Contrassegna la segnalazione come risolta"
openInNewTab: "Apri in una nuova scheda" openInNewTab: "Apri in una nuova scheda"
openInSideView: "Apri in vista laterale"
defaultNavigationBehaviour: "Navigazione preimpostata" defaultNavigationBehaviour: "Navigazione preimpostata"
editTheseSettingsMayBreakAccount: "Modificare queste impostazioni può danneggiare\
\ l'account."
instanceTicker: "Informazioni sull'istanza da cui vengono le note" instanceTicker: "Informazioni sull'istanza da cui vengono le note"
waitingFor: "Aspettando {x}"
random: "Casuale"
system: "Sistema" system: "Sistema"
switchUi: "Cambiare interfaccia utente" switchUi: "Cambiare interfaccia utente"
desktop: "Desktop" desktop: "Desktop"
@ -710,7 +630,6 @@ loadRawImages: "Visualizza le intere immagini allegate invece delle miniature."
disableShowingAnimatedImages: "Disabilita le immagini animate" disableShowingAnimatedImages: "Disabilita le immagini animate"
verificationEmailSent: "Una mail di verifica è stata inviata. Si prega di accedere\ verificationEmailSent: "Una mail di verifica è stata inviata. Si prega di accedere\
\ al collegamento per compiere la verifica." \ al collegamento per compiere la verifica."
notSet: "Non impostato"
emailVerified: "Il tuo indirizzo email è stato verificato" emailVerified: "Il tuo indirizzo email è stato verificato"
noteFavoritesCount: "Conteggio note tra i preferiti" noteFavoritesCount: "Conteggio note tra i preferiti"
pageLikesCount: "Numero di pagine che ti piacciono" pageLikesCount: "Numero di pagine che ti piacciono"
@ -718,8 +637,6 @@ pageLikedCount: "Numero delle tue pagine che hanno ricevuto \"Mi piace\""
contact: "Contatti" contact: "Contatti"
useSystemFont: "Usa il carattere predefinito del sistema" useSystemFont: "Usa il carattere predefinito del sistema"
clips: "Clip" clips: "Clip"
experimentalFeatures: "Funzioni sperimentali"
developer: "Sviluppatore"
makeExplorable: "Account visibile sulla pagina \"Esplora\"" makeExplorable: "Account visibile sulla pagina \"Esplora\""
makeExplorableDescription: "Se disabiliti l'opzione, il tuo account non verrà visualizzato\ makeExplorableDescription: "Se disabiliti l'opzione, il tuo account non verrà visualizzato\
\ sulla pagina \"Esplora\"." \ sulla pagina \"Esplora\"."
@ -731,26 +648,15 @@ wide: "Largo"
reloadToApplySetting: "Le tue preferenze verranno impostate dopo il ricaricamento\ reloadToApplySetting: "Le tue preferenze verranno impostate dopo il ricaricamento\
\ della pagina. Vuoi ricaricare adesso?" \ della pagina. Vuoi ricaricare adesso?"
needReloadToApply: "È necessario riavviare per rendere effettive le modifiche." needReloadToApply: "È necessario riavviare per rendere effettive le modifiche."
showTitlebar: "Visualizza la barra del titolo"
clearCache: "Svuota cache" clearCache: "Svuota cache"
onlineUsersCount: "{n} utenti online" onlineUsersCount: "{n} utenti online"
nUsers: "{n} utenti"
nNotes: "{n}Note"
myTheme: "I miei temi"
backgroundColor: "Sfondo" backgroundColor: "Sfondo"
textColor: "Testo" textColor: "Testo"
saveAs: "Salva con nome" saveAs: "Salva con nome"
value: "Valore"
createdAt: "Data di creazione" createdAt: "Data di creazione"
updatedAt: "Aggiornato il" updatedAt: "Aggiornato il"
saveConfirm: "Vuoi salvare le modifiche?"
deleteConfirm: "Rimuovere?" deleteConfirm: "Rimuovere?"
invalidValue: "Questo non è un valore valido."
registry: "Registro"
closeAccount: "Disattiva account" closeAccount: "Disattiva account"
currentVersion: "Versione attuale"
latestVersion: "Ultima versione"
youAreRunningUpToDateClient: "Stai usando la versione più recente del client."
newVersionOfClientAvailable: "Una nuova versione del tuo client è disponibile." newVersionOfClientAvailable: "Una nuova versione del tuo client è disponibile."
usageAmount: "In utilizzo" usageAmount: "In utilizzo"
capacity: "Capacità" capacity: "Capacità"
@ -760,12 +666,10 @@ apply: "Applica"
receiveAnnouncementFromInstance: "Ricevi i messaggi informativi dall'istanza" receiveAnnouncementFromInstance: "Ricevi i messaggi informativi dall'istanza"
emailNotification: "Eventi per notifiche via mail" emailNotification: "Eventi per notifiche via mail"
publish: "Pubblico" publish: "Pubblico"
inChannelSearch: "Cerca in canale"
useReactionPickerForContextMenu: "Cliccare sul tasto destro per aprire il pannello\ useReactionPickerForContextMenu: "Cliccare sul tasto destro per aprire il pannello\
\ di reazioni" \ di reazioni"
typingUsers: "{users} sta(nno) scrivendo" typingUsers: "{users} sta(nno) scrivendo"
jumpToSpecifiedDate: "Vai alla data " jumpToSpecifiedDate: "Vai alla data "
showingPastTimeline: "Stai visualizzando una vecchia timeline"
clear: "Cancella" clear: "Cancella"
markAllAsRead: "Segna tutti come già letti" markAllAsRead: "Segna tutti come già letti"
goBack: "Indietro" goBack: "Indietro"
@ -780,7 +684,6 @@ notSpecifiedMentionWarning: "Sono menzionati account che non vengono inclusi fra
info: "Informazioni" info: "Informazioni"
userInfo: "Informazioni utente" userInfo: "Informazioni utente"
unknown: "Sconosciuto" unknown: "Sconosciuto"
onlineStatus: "Stato di connessione"
hideOnlineStatus: "Stato invisibile" hideOnlineStatus: "Stato invisibile"
hideOnlineStatusDescription: "Abilitare l'opzione di stato invisibile può guastare\ hideOnlineStatusDescription: "Abilitare l'opzione di stato invisibile può guastare\
\ la praticità di singole funzioni, come la ricerca." \ la praticità di singole funzioni, come la ricerca."
@ -806,20 +709,11 @@ gallery: "Galleria"
recentPosts: "Le più recenti" recentPosts: "Le più recenti"
popularPosts: "Le più visualizzate" popularPosts: "Le più visualizzate"
shareWithNote: "Condividere in nota" shareWithNote: "Condividere in nota"
expiration: "Scadenza"
memo: "Promemoria"
priority: "Priorità"
high: "Alta"
middle: "Media"
low: "Bassa"
emailNotConfiguredWarning: "Non hai impostato nessun indirizzo e-mail." emailNotConfiguredWarning: "Non hai impostato nessun indirizzo e-mail."
ratio: "Rapporto" ratio: "Rapporto"
previewNoteText: "Anteprima del testo" previewNoteText: "Anteprima del testo"
customCss: "CSS personalizzato" customCss: "CSS personalizzato"
global: "Federata"
squareAvatars: "Mostra l'immagine del profilo come quadrato" squareAvatars: "Mostra l'immagine del profilo come quadrato"
sent: "Inviare"
received: "Ricevuto"
searchResult: "Risultati della Ricerca" searchResult: "Risultati della Ricerca"
hashtags: "Hashtag" hashtags: "Hashtag"
troubleshooting: "Risoluzione problemi" troubleshooting: "Risoluzione problemi"
@ -881,9 +775,6 @@ _accountDelete:
requestAccountDelete: "Richiesta di cancellazione account" requestAccountDelete: "Richiesta di cancellazione account"
started: "Il processo di cancellazione è iniziato." started: "Il processo di cancellazione è iniziato."
inProgress: "Cancellazione in corso" inProgress: "Cancellazione in corso"
_ad:
back: "Indietro"
reduceFrequencyOfThisAd: "Visualizza questa pubblicità meno spesso"
_forgotPassword: _forgotPassword:
enterEmail: "Inserisci l'indirizzo di posta elettronica che hai registrato nel tuo\ enterEmail: "Inserisci l'indirizzo di posta elettronica che hai registrato nel tuo\
\ profilo. Il collegamento necessario per ripristinare la password verrà inviato\ \ profilo. Il collegamento necessario per ripristinare la password verrà inviato\
@ -907,7 +798,6 @@ _plugin:
install: "Installa estensioni" install: "Installa estensioni"
installWarn: "Si prega di installare soltanto estensioni che provengono da fonti\ installWarn: "Si prega di installare soltanto estensioni che provengono da fonti\
\ affidabili." \ affidabili."
manage: "Gestisci estensioni"
_registry: _registry:
key: "Dati" key: "Dati"
keys: "Dati" keys: "Dati"
@ -915,10 +805,8 @@ _registry:
createKey: "Crea chiave" createKey: "Crea chiave"
_aboutMisskey: _aboutMisskey:
about: "FoundKey è un software libero e open source, sviluppato da syuilo dal 2014." about: "FoundKey è un software libero e open source, sviluppato da syuilo dal 2014."
contributors: "Principali sostenitori"
allContributors: "Tutti i sostenitori" allContributors: "Tutti i sostenitori"
source: "Codice sorgente" source: "Codice sorgente"
translation: "Tradurre FoundKey"
_nsfw: _nsfw:
respect: "Nascondere i media segnati come sensibli" respect: "Nascondere i media segnati come sensibli"
ignore: "Visualizzare i media segnati come sensibili" ignore: "Visualizzare i media segnati come sensibili"
@ -1009,56 +897,6 @@ _theme:
alreadyInstalled: "Questo tema è già installato" alreadyInstalled: "Questo tema è già installato"
invalid: "Il formato tema non è valido" invalid: "Il formato tema non è valido"
make: "Crea un tema" make: "Crea un tema"
base: "Base"
addConstant: "Aggiungi costante"
constant: "Costante"
defaultValue: "Valore predefinito"
color: "Colore"
refConst: "Chiama costante"
key: "Chiave"
func: "Funzione"
funcKind: "Tipo di funzione"
argument: "Argomento"
alpha: "Opacità"
darken: "Scuro"
lighten: "Chiaro"
inputConstantName: "Inserisci un nome per la costante"
deleteConstantConfirm: "Vuoi davvero eliminare la costante {const}?"
keys:
bg: "Sfondo"
fg: "Testo"
focus: "Focalizzazione"
indicator: "Indicatore"
panel: "Pannello"
shadow: "Ombra"
header: "Intestazione"
navBg: "Sfondo della barra laterale"
navFg: "Testo della barra laterale"
navHoverFg: "Testo della barra laterale (al passaggio del mouse)"
navActive: "Testo della barra laterale (attivo)"
navIndicator: "Indicatore di barra laterale"
link: "Link"
hashtag: "Hashtag"
mention: "Menzioni"
mentionMe: "Menzioni (di me)"
renote: "Rinota"
divider: "Interruzione di linea"
infoBg: "Sfondo informazioni"
infoFg: "Testo di informazioni"
infoWarnBg: "Sfondo degli avvisi"
infoWarnFg: "Testo di avviso"
cwBg: "Sfondo del CW"
cwFg: "Testo del pulsante CW"
cwHoverBg: "Sfondo del pulsante CW (sorvolato)"
toastBg: "Sfondo di notifica a comparsa"
toastFg: "Testo di notifica a comparsa"
buttonBg: "Sfondo del pulsante"
buttonHoverBg: "Sfondo del pulsante (sorvolato)"
inputBorder: "Inquadra casella di testo"
listItemHoverBg: "Sfondo della voce di elenco (sorvolato)"
driveFolderBg: "Sfondo della cartella di disco"
badge: "Distintivo"
messageBg: "Sfondo della chat"
_sfx: _sfx:
note: "Nota" note: "Nota"
noteMy: "Mia nota" noteMy: "Mia nota"
@ -1325,7 +1163,6 @@ _relayStatus:
accepted: "Approvato" accepted: "Approvato"
rejected: "Respinto" rejected: "Respinto"
_notification: _notification:
fileUploaded: "File caricato correttamente"
youGotMention: "{name} ti ha menzionato" youGotMention: "{name} ti ha menzionato"
youGotReply: "{name} ti ha risposto" youGotReply: "{name} ti ha risposto"
youGotQuote: "{name} ha citato il tuo Nota e ha detto" youGotQuote: "{name} ha citato il tuo Nota e ha detto"
@ -1338,7 +1175,6 @@ _notification:
yourFollowRequestAccepted: "La tua richiesta di follow è stata accettata" yourFollowRequestAccepted: "La tua richiesta di follow è stata accettata"
youWereInvitedToGroup: "Invitat@ al gruppo" youWereInvitedToGroup: "Invitat@ al gruppo"
_types: _types:
all: "Tutto"
follow: "Nuovə follower" follow: "Nuovə follower"
mention: "Menzioni" mention: "Menzioni"
reply: "Risposte" reply: "Risposte"

View file

@ -13,7 +13,6 @@ fetchingAsApObject: "連合に照会中"
ok: "OK" ok: "OK"
gotIt: "わかった" gotIt: "わかった"
cancel: "キャンセル" cancel: "キャンセル"
enterUsername: "ユーザー名を入力"
renotedBy: "{user}がRenote" renotedBy: "{user}がRenote"
noNotes: "ノートはありません" noNotes: "ノートはありません"
noNotifications: "通知はありません" noNotifications: "通知はありません"
@ -29,16 +28,12 @@ login: "ログイン"
loggingIn: "ログイン中" loggingIn: "ログイン中"
logout: "ログアウト" logout: "ログアウト"
signup: "新規登録" signup: "新規登録"
uploading: "アップロード中"
save: "保存" save: "保存"
users: "ユーザー" users: "ユーザー"
addUser: "ユーザーを追加" addUser: "ユーザーを追加"
favorite: "お気に入り" favorite: "お気に入り"
favorites: "お気に入り" favorites: "お気に入り"
unfavorite: "お気に入り解除" unfavorite: "お気に入り解除"
favorited: "お気に入りに登録しました。"
alreadyFavorited: "既にお気に入りに登録されています。"
cantFavorite: "お気に入りに登録できませんでした。"
pin: "ピン留め" pin: "ピン留め"
unpin: "ピン留め解除" unpin: "ピン留め解除"
copyContent: "内容をコピー" copyContent: "内容をコピー"
@ -49,7 +44,6 @@ deleteAndEditConfirm: "このノートを削除してもう一度編集します
addToList: "リストに追加" addToList: "リストに追加"
sendMessage: "メッセージを送信" sendMessage: "メッセージを送信"
copyUsername: "ユーザー名をコピー" copyUsername: "ユーザー名をコピー"
searchUser: "ユーザーを検索"
reply: "返信" reply: "返信"
loadMore: "もっと見る" loadMore: "もっと見る"
showMore: "もっと見る" showMore: "もっと見る"
@ -70,7 +64,6 @@ unfollowConfirm: "{name}のフォローを解除しますか?"
exportRequested: "エクスポートをリクエストしました。これには時間がかかる場合があります。エクスポートが終わると、「ドライブ」に追加されます。" exportRequested: "エクスポートをリクエストしました。これには時間がかかる場合があります。エクスポートが終わると、「ドライブ」に追加されます。"
importRequested: "インポートをリクエストしました。これには時間がかかる場合があります。" importRequested: "インポートをリクエストしました。これには時間がかかる場合があります。"
lists: "リスト" lists: "リスト"
noLists: "リストはありません"
note: "ノート" note: "ノート"
notes: "ノート" notes: "ノート"
following: "フォロー" following: "フォロー"
@ -94,21 +87,15 @@ followRequest: "フォロー申請"
followRequests: "フォロー申請" followRequests: "フォロー申請"
unfollow: "フォロー解除" unfollow: "フォロー解除"
followRequestPending: "フォロー許可待ち" followRequestPending: "フォロー許可待ち"
enterEmoji: "絵文字を入力"
renote: "Renote" renote: "Renote"
unrenote: "Renote解除" unrenote: "Renote解除"
renoted: "Renoteしました。"
cantRenote: "この投稿はRenoteできません。"
cantReRenote: "RenoteをRenoteすることはできません。"
quote: "引用" quote: "引用"
pinnedNote: "ピン留めされたノート" pinnedNote: "ピン留めされたノート"
pinned: "ピン留め"
you: "あなた" you: "あなた"
clickToShow: "クリックして表示" clickToShow: "クリックして表示"
sensitive: "閲覧注意" sensitive: "閲覧注意"
add: "追加" add: "追加"
reaction: "リアクション" reaction: "リアクション"
reactionSetting: "ピッカーに表示するリアクション"
reactionSettingDescription2: "ドラッグして並び替え、クリックして削除、+を押して追加します。" reactionSettingDescription2: "ドラッグして並び替え、クリックして削除、+を押して追加します。"
attachCancel: "添付取り消し" attachCancel: "添付取り消し"
markAsSensitive: "閲覧注意にする" markAsSensitive: "閲覧注意にする"
@ -132,10 +119,7 @@ editWidgetsExit: "編集を終了"
customEmojis: "カスタム絵文字" customEmojis: "カスタム絵文字"
emoji: "絵文字" emoji: "絵文字"
emojis: "絵文字" emojis: "絵文字"
emojiName: "絵文字名"
emojiUrl: "絵文字画像URL"
addEmoji: "絵文字を追加" addEmoji: "絵文字を追加"
settingGuide: "おすすめ設定"
cacheRemoteFiles: "リモートのファイルをキャッシュする" cacheRemoteFiles: "リモートのファイルをキャッシュする"
cacheRemoteFilesDescription: "この設定を無効にすると、リモートファイルをキャッシュせず直リンクするようになります。サーバーのストレージを節約できますが、サムネイルが生成されないので通信量が増加します。" cacheRemoteFilesDescription: "この設定を無効にすると、リモートファイルをキャッシュせず直リンクするようになります。サーバーのストレージを節約できますが、サムネイルが生成されないので通信量が増加します。"
flagAsBot: "Botとして設定" flagAsBot: "Botとして設定"
@ -149,7 +133,6 @@ addAccount: "アカウントを追加"
loginFailed: "ログインに失敗しました" loginFailed: "ログインに失敗しました"
showOnRemote: "リモートで表示" showOnRemote: "リモートで表示"
general: "全般" general: "全般"
wallpaper: "壁紙"
setWallpaper: "壁紙を設定" setWallpaper: "壁紙を設定"
removeWallpaper: "壁紙を削除" removeWallpaper: "壁紙を削除"
youHaveNoLists: "リストがありません" youHaveNoLists: "リストがありません"
@ -161,27 +144,19 @@ selectUser: "ユーザーを選択"
recipient: "宛先" recipient: "宛先"
annotation: "注釈" annotation: "注釈"
federation: "連合" federation: "連合"
instances: "インスタンス"
registeredAt: "初観測" registeredAt: "初観測"
latestRequestSentAt: "直近のリクエスト送信" latestRequestSentAt: "直近のリクエスト送信"
latestRequestReceivedAt: "直近のリクエスト受信" latestRequestReceivedAt: "直近のリクエスト受信"
latestStatus: "直近のステータス" latestStatus: "直近のステータス"
storageUsage: "ストレージ使用量"
charts: "チャート" charts: "チャート"
perHour: "1時間ごと" perHour: "1時間ごと"
perDay: "1日ごと" perDay: "1日ごと"
stopActivityDelivery: "アクティビティの配送を停止" stopActivityDelivery: "アクティビティの配送を停止"
blockThisInstance: "このインスタンスをブロック" blockThisInstance: "このインスタンスをブロック"
operations: "操作"
software: "ソフトウェア" software: "ソフトウェア"
version: "バージョン" version: "バージョン"
metadata: "メタデータ"
withNFiles: "{n}つのファイル" withNFiles: "{n}つのファイル"
monitor: "モニター"
jobQueue: "ジョブキュー" jobQueue: "ジョブキュー"
cpuAndMemory: "CPUとメモリ"
network: "ネットワーク"
disk: "ディスク"
instanceInfo: "インスタンス情報" instanceInfo: "インスタンス情報"
statistics: "統計" statistics: "統計"
clearQueue: "キューをクリア" clearQueue: "キューをクリア"
@ -212,9 +187,6 @@ all: "全て"
subscribing: "購読中" subscribing: "購読中"
publishing: "配信中" publishing: "配信中"
notResponding: "応答なし" notResponding: "応答なし"
instanceFollowing: "インスタンスのフォロー"
instanceFollowers: "インスタンスのフォロワー"
instanceUsers: "インスタンスのユーザー"
changePassword: "パスワードを変更" changePassword: "パスワードを変更"
security: "セキュリティ" security: "セキュリティ"
retypedNotMatch: "入力が一致しません。" retypedNotMatch: "入力が一致しません。"
@ -230,7 +202,6 @@ lookup: "照会"
announcements: "お知らせ" announcements: "お知らせ"
imageUrl: "画像URL" imageUrl: "画像URL"
remove: "削除" remove: "削除"
removed: "削除しました"
removeAreYouSure: "「{x}」を削除しますか?" removeAreYouSure: "「{x}」を削除しますか?"
deleteAreYouSure: "「{x}」を削除しますか?" deleteAreYouSure: "「{x}」を削除しますか?"
resetAreYouSure: "リセットしますか?" resetAreYouSure: "リセットしますか?"
@ -270,7 +241,6 @@ lightThemes: "明るいテーマ"
darkThemes: "暗いテーマ" darkThemes: "暗いテーマ"
syncDeviceDarkMode: "デバイスのダークモードと同期する" syncDeviceDarkMode: "デバイスのダークモードと同期する"
drive: "ドライブ" drive: "ドライブ"
fileName: "ファイル名"
selectFile: "ファイルを選択" selectFile: "ファイルを選択"
selectFiles: "ファイルを選択" selectFiles: "ファイルを選択"
selectFolder: "フォルダーを選択" selectFolder: "フォルダーを選択"
@ -322,7 +292,6 @@ disconnectService: "切断する"
enableLocalTimeline: "ローカルタイムラインを有効にする" enableLocalTimeline: "ローカルタイムラインを有効にする"
enableGlobalTimeline: "グローバルタイムラインを有効にする" enableGlobalTimeline: "グローバルタイムラインを有効にする"
disablingTimelinesInfo: "これらのタイムラインを無効化しても、利便性のため管理者およびモデレーターは引き続き利用することができます。" disablingTimelinesInfo: "これらのタイムラインを無効化しても、利便性のため管理者およびモデレーターは引き続き利用することができます。"
registration: "登録"
enableRegistration: "誰でも新規登録できるようにする" enableRegistration: "誰でも新規登録できるようにする"
invite: "招待" invite: "招待"
driveCapacityPerLocalAccount: "ローカルユーザーひとりあたりのドライブ容量" driveCapacityPerLocalAccount: "ローカルユーザーひとりあたりのドライブ容量"
@ -331,22 +300,12 @@ inMb: "メガバイト単位"
iconUrl: "アイコン画像のURL (faviconなど)" iconUrl: "アイコン画像のURL (faviconなど)"
bannerUrl: "バナー画像のURL" bannerUrl: "バナー画像のURL"
backgroundImageUrl: "背景画像のURL" backgroundImageUrl: "背景画像のURL"
basicInfo: "基本情報"
pinnedUsers: "ピン留めユーザー" pinnedUsers: "ピン留めユーザー"
pinnedUsersDescription: "「みつける」ページなどにピン留めしたいユーザーを改行で区切って記述します。" pinnedUsersDescription: "「みつける」ページなどにピン留めしたいユーザーを改行で区切って記述します。"
pinnedPages: "ピン留めページ"
pinnedPagesDescription: "インスタンスのトップページにピン留めしたいページのパスを改行で区切って記述します。"
pinnedClipId: "ピン留めするクリップのID"
pinnedNotes: "ピン留めされたノート"
hcaptcha: "hCaptcha"
enableHcaptcha: "hCaptchaを有効にする"
hcaptchaSiteKey: "サイトキー" hcaptchaSiteKey: "サイトキー"
hcaptchaSecretKey: "シークレットキー" hcaptchaSecretKey: "シークレットキー"
recaptcha: "reCAPTCHA"
enableRecaptcha: "reCAPTCHAを有効にする"
recaptchaSiteKey: "サイトキー" recaptchaSiteKey: "サイトキー"
recaptchaSecretKey: "シークレットキー" recaptchaSecretKey: "シークレットキー"
avoidMultiCaptchaConfirm: "複数のCaptchaを使用すると干渉を起こす可能性があります。他のCaptchaを無効にしますかキャンセルして複数のCaptchaを有効化したままにすることも可能です。"
antennas: "アンテナ" antennas: "アンテナ"
manageAntennas: "アンテナの管理" manageAntennas: "アンテナの管理"
name: "名前" name: "名前"
@ -356,7 +315,6 @@ antennaExcludeKeywords: "除外キーワード"
antennaKeywordsDescription: "スペースで区切るとAND指定になり、改行で区切るとOR指定になります" antennaKeywordsDescription: "スペースで区切るとAND指定になり、改行で区切るとOR指定になります"
notifyAntenna: "新しいノートを通知する" notifyAntenna: "新しいノートを通知する"
withFileAntenna: "ファイルが添付されたノートのみ" withFileAntenna: "ファイルが添付されたノートのみ"
enableServiceworker: "ブラウザへのプッシュ通知を有効にする"
antennaUsersDescription: "ユーザー名を改行で区切って指定します" antennaUsersDescription: "ユーザー名を改行で区切って指定します"
caseSensitive: "大文字小文字を区別する" caseSensitive: "大文字小文字を区別する"
withReplies: "返信を含む" withReplies: "返信を含む"
@ -371,11 +329,8 @@ popularUsers: "人気のユーザー"
recentlyUpdatedUsers: "最近投稿したユーザー" recentlyUpdatedUsers: "最近投稿したユーザー"
recentlyRegisteredUsers: "最近登録したユーザー" recentlyRegisteredUsers: "最近登録したユーザー"
recentlyDiscoveredUsers: "最近発見されたユーザー" recentlyDiscoveredUsers: "最近発見されたユーザー"
exploreUsersCount: "{count}のユーザーがいます"
exploreFediverse: "Fediverseを探索"
popularTags: "人気のタグ" popularTags: "人気のタグ"
userList: "リスト" userList: "リスト"
about: "情報"
aboutMisskey: "FoundKeyについて" aboutMisskey: "FoundKeyについて"
administrator: "管理者" administrator: "管理者"
token: "トークン" token: "トークン"
@ -395,7 +350,6 @@ share: "共有"
notFound: "見つかりません" notFound: "見つかりません"
notFoundDescription: "指定されたURLに該当するページはありませんでした。" notFoundDescription: "指定されたURLに該当するページはありませんでした。"
uploadFolder: "既定アップロード先" uploadFolder: "既定アップロード先"
cacheClear: "キャッシュを削除"
markAsReadAllNotifications: "すべての通知を既読にする" markAsReadAllNotifications: "すべての通知を既読にする"
markAsReadAllUnreadNotes: "すべての投稿を既読にする" markAsReadAllUnreadNotes: "すべての投稿を既読にする"
markAsReadAllTalkMessages: "すべてのチャットを既読にする" markAsReadAllTalkMessages: "すべてのチャットを既読にする"
@ -426,7 +380,6 @@ noMessagesYet: "まだチャットはありません"
newMessageExists: "新しいメッセージがあります" newMessageExists: "新しいメッセージがあります"
onlyOneFileCanBeAttached: "メッセージに添付できるファイルはひとつです" onlyOneFileCanBeAttached: "メッセージに添付できるファイルはひとつです"
signinRequired: "続行する前に、サインアップまたはサインインが必要です" signinRequired: "続行する前に、サインアップまたはサインインが必要です"
invitations: "招待"
invitationCode: "招待コード" invitationCode: "招待コード"
checking: "確認しています" checking: "確認しています"
available: "利用できます" available: "利用できます"
@ -446,7 +399,6 @@ or: "もしくは"
language: "言語" language: "言語"
uiLanguage: "UIの表示言語" uiLanguage: "UIの表示言語"
groupInvited: "グループに招待されました" groupInvited: "グループに招待されました"
aboutX: "{x}について"
useOsNativeEmojis: "OSネイティブの絵文字を使用" useOsNativeEmojis: "OSネイティブの絵文字を使用"
disableDrawer: "メニューをドロワーで表示しない" disableDrawer: "メニューをドロワーで表示しない"
youHaveNoGroups: "グループがありません" youHaveNoGroups: "グループがありません"
@ -454,27 +406,19 @@ joinOrCreateGroup: "既存のグループに招待してもらうか、新しく
noHistory: "履歴はありません" noHistory: "履歴はありません"
signinHistory: "ログイン履歴" signinHistory: "ログイン履歴"
disableAnimatedMfm: "動きのあるMFMを無効にする" disableAnimatedMfm: "動きのあるMFMを無効にする"
doing: "やっています"
category: "カテゴリ" category: "カテゴリ"
tags: "タグ" tags: "タグ"
docSource: "このドキュメントのソース"
createAccount: "アカウントを作成" createAccount: "アカウントを作成"
existingAccount: "既存のアカウント" existingAccount: "既存のアカウント"
regenerate: "再生成"
fontSize: "フォントサイズ" fontSize: "フォントサイズ"
noFollowRequests: "フォロー申請はありません" noFollowRequests: "フォロー申請はありません"
openImageInNewTab: "画像を新しいタブで開く" openImageInNewTab: "画像を新しいタブで開く"
dashboard: "ダッシュボード" dashboard: "ダッシュボード"
local: "ローカル" local: "ローカル"
remote: "リモート" remote: "リモート"
total: "合計"
weekOverWeekChanges: "前週比"
dayOverDayChanges: "前日比" dayOverDayChanges: "前日比"
appearance: "アピアランス" appearance: "アピアランス"
clientSettings: "クライアント設定" clientSettings: "クライアント設定"
accountSettings: "アカウント設定"
numberOfDays: "日数"
hideThisNote: "このノートを非表示"
showFeaturedNotesInTimeline: "タイムラインにおすすめのノートを表示する" showFeaturedNotesInTimeline: "タイムラインにおすすめのノートを表示する"
objectStorage: "オブジェクトストレージ" objectStorage: "オブジェクトストレージ"
useObjectStorage: "オブジェクトストレージを使用" useObjectStorage: "オブジェクトストレージを使用"
@ -494,8 +438,6 @@ objectStorageUseSSLDesc: "API接続にhttpsを使用しない場合はオフに
objectStorageUseProxy: "Proxyを利用する" objectStorageUseProxy: "Proxyを利用する"
objectStorageUseProxyDesc: "API接続にproxyを利用しない場合はオフにしてください" objectStorageUseProxyDesc: "API接続にproxyを利用しない場合はオフにしてください"
objectStorageSetPublicRead: "アップロード時に'public-read'を設定する" objectStorageSetPublicRead: "アップロード時に'public-read'を設定する"
serverLogs: "サーバーログ"
deleteAll: "全て削除"
showFixedPostForm: "タイムライン上部に投稿フォームを表示する" showFixedPostForm: "タイムライン上部に投稿フォームを表示する"
newNoteRecived: "新しいノートがあります" newNoteRecived: "新しいノートがあります"
sounds: "サウンド" sounds: "サウンド"
@ -506,7 +448,6 @@ popout: "ポップアウト"
volume: "音量" volume: "音量"
masterVolume: "マスター音量" masterVolume: "マスター音量"
details: "詳細" details: "詳細"
chooseEmoji: "絵文字を選択"
unableToProcess: "操作を完了できません" unableToProcess: "操作を完了できません"
recentUsed: "最近使用" recentUsed: "最近使用"
install: "インストール" install: "インストール"
@ -522,9 +463,7 @@ descendingOrder: "降順"
scratchpad: "スクラッチパッド" scratchpad: "スクラッチパッド"
scratchpadDescription: "スクラッチパッドは、AiScriptの実験環境を提供します。FoundKeyと対話するコードの記述、実行、結果の確認ができます。" scratchpadDescription: "スクラッチパッドは、AiScriptの実験環境を提供します。FoundKeyと対話するコードの記述、実行、結果の確認ができます。"
output: "出力" output: "出力"
script: "スクリプト"
updateRemoteUser: "リモートユーザー情報の更新" updateRemoteUser: "リモートユーザー情報の更新"
deleteAllFiles: "すべてのファイルを削除"
deleteAllFilesConfirm: "すべてのファイルを削除しますか?" deleteAllFilesConfirm: "すべてのファイルを削除しますか?"
removeAllFollowing: "フォローを全解除" removeAllFollowing: "フォローを全解除"
removeAllFollowingDescription: "{host}からのフォローをすべて解除します。そのインスタンスがもう存在しなくなった場合などに実行してください。" removeAllFollowingDescription: "{host}からのフォローをすべて解除します。そのインスタンスがもう存在しなくなった場合などに実行してください。"
@ -538,10 +477,7 @@ addItem: "項目を追加"
relays: "リレー" relays: "リレー"
addRelay: "リレーの追加" addRelay: "リレーの追加"
inboxUrl: "inboxのURL" inboxUrl: "inboxのURL"
addedRelays: "追加済みのリレー"
serviceworkerInfo: "プッシュ通知を行うには有効する必要があります。"
deletedNote: "削除された投稿" deletedNote: "削除された投稿"
invisibleNote: "非公開の投稿"
enableInfiniteScroll: "自動でもっと見る" enableInfiniteScroll: "自動でもっと見る"
visibility: "公開範囲" visibility: "公開範囲"
poll: "アンケート" poll: "アンケート"
@ -551,15 +487,12 @@ disablePlayer: "プレイヤーを閉じる"
themeEditor: "テーマエディター" themeEditor: "テーマエディター"
description: "説明" description: "説明"
describeFile: "キャプションを付ける" describeFile: "キャプションを付ける"
enterFileDescription: "キャプションを入力"
author: "作者" author: "作者"
leaveConfirm: "未保存の変更があります。破棄しますか?" leaveConfirm: "未保存の変更があります。破棄しますか?"
manage: "管理" manage: "管理"
plugins: "プラグイン" plugins: "プラグイン"
deck: "デッキ" deck: "デッキ"
undeck: "デッキ解除"
useBlurEffectForModal: "モーダルにぼかし効果を使用" useBlurEffectForModal: "モーダルにぼかし効果を使用"
useFullReactionPicker: "フル機能リアクションピッカーを使用"
width: "幅" width: "幅"
height: "高さ" height: "高さ"
large: "大" large: "大"
@ -571,7 +504,6 @@ enableAll: "全て有効にする"
disableAll: "全て無効にする" disableAll: "全て無効にする"
tokenRequested: "アカウントへのアクセス許可" tokenRequested: "アカウントへのアクセス許可"
pluginTokenRequestedDescription: "このプラグインはここで設定した権限を行使できるようになります。" pluginTokenRequestedDescription: "このプラグインはここで設定した権限を行使できるようになります。"
notificationType: "通知の種類"
edit: "編集" edit: "編集"
useStarForReactionFallback: "リアクション絵文字が不明な場合、代わりに★を使う" useStarForReactionFallback: "リアクション絵文字が不明な場合、代わりに★を使う"
emailServer: "メールサーバー" emailServer: "メールサーバー"
@ -596,10 +528,7 @@ userSaysSomething: "{name}が何かを言いました"
makeActive: "アクティブにする" makeActive: "アクティブにする"
display: "表示" display: "表示"
copy: "コピー" copy: "コピー"
metrics: "メトリクス"
overview: "概要" overview: "概要"
logs: "ログ"
delayed: "遅延"
database: "データベース" database: "データベース"
channel: "チャンネル" channel: "チャンネル"
create: "作成" create: "作成"
@ -613,7 +542,6 @@ regenerateLoginTokenDescription: "ログインに使用される内部トーク
setMultipleBySeparatingWithSpace: "スペースで区切って複数設定できます。" setMultipleBySeparatingWithSpace: "スペースで区切って複数設定できます。"
fileIdOrUrl: "ファイルIDまたはURL" fileIdOrUrl: "ファイルIDまたはURL"
behavior: "動作" behavior: "動作"
sample: "サンプル"
abuseReports: "通報" abuseReports: "通報"
reportAbuse: "通報" reportAbuse: "通報"
reportAbuseOf: "{name}を通報する" reportAbuseOf: "{name}を通報する"
@ -627,12 +555,8 @@ forwardReportIsAnonymous: "リモートインスタンスからはあなたの
send: "送信" send: "送信"
abuseMarkAsResolved: "対応済みにする" abuseMarkAsResolved: "対応済みにする"
openInNewTab: "新しいタブで開く" openInNewTab: "新しいタブで開く"
openInSideView: "サイドビューで開く"
defaultNavigationBehaviour: "デフォルトのナビゲーション" defaultNavigationBehaviour: "デフォルトのナビゲーション"
editTheseSettingsMayBreakAccount: "これらの設定を編集するとアカウントが破損する可能性があります。"
instanceTicker: "ノートのインスタンス情報" instanceTicker: "ノートのインスタンス情報"
waitingFor: "{x}を待っています"
random: "ランダム"
system: "システム" system: "システム"
switchUi: "UI切り替え" switchUi: "UI切り替え"
desktop: "デスクトップ" desktop: "デスクトップ"
@ -668,7 +592,6 @@ alwaysMarkSensitive: "デフォルトでメディアを閲覧注意にする"
loadRawImages: "添付画像のサムネイルをオリジナル画質にする" loadRawImages: "添付画像のサムネイルをオリジナル画質にする"
disableShowingAnimatedImages: "アニメーション画像を再生しない" disableShowingAnimatedImages: "アニメーション画像を再生しない"
verificationEmailSent: "確認のメールを送信しました。メールに記載されたリンクにアクセスして、設定を完了してください。" verificationEmailSent: "確認のメールを送信しました。メールに記載されたリンクにアクセスして、設定を完了してください。"
notSet: "未設定"
emailVerified: "メールアドレスが確認されました" emailVerified: "メールアドレスが確認されました"
noteFavoritesCount: "お気に入りノートの数" noteFavoritesCount: "お気に入りノートの数"
pageLikesCount: "Pageにいいねした数" pageLikesCount: "Pageにいいねした数"
@ -676,8 +599,6 @@ pageLikedCount: "Pageにいいねされた数"
contact: "連絡先" contact: "連絡先"
useSystemFont: "システムのデフォルトのフォントを使う" useSystemFont: "システムのデフォルトのフォントを使う"
clips: "クリップ" clips: "クリップ"
experimentalFeatures: "実験的機能"
developer: "開発者"
makeExplorable: "アカウントを見つけやすくする" makeExplorable: "アカウントを見つけやすくする"
makeExplorableDescription: "オフにすると、「みつける」にアカウントが載らなくなります。" makeExplorableDescription: "オフにすると、「みつける」にアカウントが載らなくなります。"
showGapBetweenNotesInTimeline: "タイムラインのノートを離して表示" showGapBetweenNotesInTimeline: "タイムラインのノートを離して表示"
@ -688,28 +609,16 @@ wide: "広い"
narrow: "狭い" narrow: "狭い"
reloadToApplySetting: "設定はページリロード後に反映されます。今すぐリロードしますか?" reloadToApplySetting: "設定はページリロード後に反映されます。今すぐリロードしますか?"
needReloadToApply: "反映には再起動が必要です。" needReloadToApply: "反映には再起動が必要です。"
showTitlebar: "タイトルバーを表示する"
clearCache: "キャッシュをクリア" clearCache: "キャッシュをクリア"
onlineUsersCount: "{n}人がオンライン" onlineUsersCount: "{n}人がオンライン"
nUsers: "{n}ユーザー"
nNotes: "{n}ノート"
myTheme: "マイテーマ"
backgroundColor: "背景" backgroundColor: "背景"
accentColor: "アクセント" accentColor: "アクセント"
textColor: "文字" textColor: "文字"
saveAs: "名前を付けて保存" saveAs: "名前を付けて保存"
advanced: "高度"
value: "値"
createdAt: "作成日時" createdAt: "作成日時"
updatedAt: "更新日時" updatedAt: "更新日時"
saveConfirm: "保存しますか?"
deleteConfirm: "削除しますか?" deleteConfirm: "削除しますか?"
invalidValue: "有効な値ではありません。"
registry: "レジストリ"
closeAccount: "アカウントを閉鎖する" closeAccount: "アカウントを閉鎖する"
currentVersion: "現在のバージョン"
latestVersion: "最新のバージョン"
youAreRunningUpToDateClient: "お使いのクライアントは最新です。"
newVersionOfClientAvailable: "新しいバージョンのクライアントが利用可能です。" newVersionOfClientAvailable: "新しいバージョンのクライアントが利用可能です。"
usageAmount: "使用量" usageAmount: "使用量"
capacity: "容量" capacity: "容量"
@ -719,11 +628,9 @@ apply: "適用"
receiveAnnouncementFromInstance: "インスタンスからのお知らせを受け取る" receiveAnnouncementFromInstance: "インスタンスからのお知らせを受け取る"
emailNotification: "メール通知" emailNotification: "メール通知"
publish: "公開" publish: "公開"
inChannelSearch: "チャンネル内検索"
useReactionPickerForContextMenu: "右クリックでリアクションピッカーを開く" useReactionPickerForContextMenu: "右クリックでリアクションピッカーを開く"
typingUsers: "{users}が入力中" typingUsers: "{users}が入力中"
jumpToSpecifiedDate: "特定の日付にジャンプ" jumpToSpecifiedDate: "特定の日付にジャンプ"
showingPastTimeline: "過去のタイムラインを表示しています"
clear: "クリア" clear: "クリア"
markAllAsRead: "全て既読にする" markAllAsRead: "全て既読にする"
goBack: "戻る" goBack: "戻る"
@ -736,7 +643,6 @@ notSpecifiedMentionWarning: "宛先に含まれていないメンションがあ
info: "情報" info: "情報"
userInfo: "ユーザー情報" userInfo: "ユーザー情報"
unknown: "不明" unknown: "不明"
onlineStatus: "オンライン状態"
hideOnlineStatus: "オンライン状態を隠す" hideOnlineStatus: "オンライン状態を隠す"
hideOnlineStatusDescription: "オンライン状態を隠すと、検索などの一部機能において利便性が低下することがあります。" hideOnlineStatusDescription: "オンライン状態を隠すと、検索などの一部機能において利便性が低下することがあります。"
federateBlocks: "ブロックを連合に送信" federateBlocks: "ブロックを連合に送信"
@ -764,21 +670,12 @@ gallery: "ギャラリー"
recentPosts: "最近の投稿" recentPosts: "最近の投稿"
popularPosts: "人気の投稿" popularPosts: "人気の投稿"
shareWithNote: "ノートで共有" shareWithNote: "ノートで共有"
expiration: "期限"
memo: "メモ"
priority: "優先度"
high: "高"
middle: "中"
low: "低"
emailNotConfiguredWarning: "メールアドレスの設定がされていません。" emailNotConfiguredWarning: "メールアドレスの設定がされていません。"
ratio: "比率" ratio: "比率"
previewNoteText: "本文をプレビュー" previewNoteText: "本文をプレビュー"
customCss: "カスタムCSS" customCss: "カスタムCSS"
customCssWarn: "この設定は必ず知識のある方が行ってください。不適切な設定を行うとクライアントが正常に使用できなくなる恐れがあります。" customCssWarn: "この設定は必ず知識のある方が行ってください。不適切な設定を行うとクライアントが正常に使用できなくなる恐れがあります。"
global: "グローバル"
squareAvatars: "アイコンを四角形で表示" squareAvatars: "アイコンを四角形で表示"
sent: "送信"
received: "受信"
searchResult: "検索結果" searchResult: "検索結果"
hashtags: "ハッシュタグ" hashtags: "ハッシュタグ"
troubleshooting: "トラブルシューティング" troubleshooting: "トラブルシューティング"
@ -878,10 +775,6 @@ _accountDelete:
started: "削除処理が開始されました。" started: "削除処理が開始されました。"
inProgress: "削除が進行中" inProgress: "削除が進行中"
_ad:
back: "戻る"
reduceFrequencyOfThisAd: "この広告の表示頻度を下げる"
_forgotPassword: _forgotPassword:
enterEmail: "アカウントに登録したメールアドレスを入力してください。そのアドレス宛てに、パスワードリセット用のリンクが送信されます。" enterEmail: "アカウントに登録したメールアドレスを入力してください。そのアドレス宛てに、パスワードリセット用のリンクが送信されます。"
ifNoEmail: "メールアドレスを登録していない場合は、管理者までお問い合わせください。" ifNoEmail: "メールアドレスを登録していない場合は、管理者までお問い合わせください。"
@ -902,8 +795,6 @@ _email:
_plugin: _plugin:
install: "プラグインのインストール" install: "プラグインのインストール"
installWarn: "信頼できないプラグインはインストールしないでください。" installWarn: "信頼できないプラグインはインストールしないでください。"
manage: "プラグインの管理"
_registry: _registry:
scope: "スコープ" scope: "スコープ"
key: "キー" key: "キー"
@ -913,11 +804,8 @@ _registry:
_aboutMisskey: _aboutMisskey:
about: "FoundKeyはsyuiloによって2014年から開発されている、オープンソースのソフトウェアです。" about: "FoundKeyはsyuiloによって2014年から開発されている、オープンソースのソフトウェアです。"
contributors: "主なコントリビューター"
allContributors: "全てのコントリビューター" allContributors: "全てのコントリビューター"
source: "ソースコード" source: "ソースコード"
translation: "FoundKeyを翻訳"
_nsfw: _nsfw:
respect: "閲覧注意のメディアは隠す" respect: "閲覧注意のメディアは隠す"
ignore: "閲覧注意のメディアを隠さない" ignore: "閲覧注意のメディアを隠さない"
@ -1043,70 +931,6 @@ _theme:
alreadyInstalled: "そのテーマは既にインストールされています" alreadyInstalled: "そのテーマは既にインストールされています"
invalid: "テーマの形式が間違っています" invalid: "テーマの形式が間違っています"
make: "テーマを作る" make: "テーマを作る"
base: "ベース"
addConstant: "定数を追加"
constant: "定数"
defaultValue: "デフォルト値"
color: "色"
refProp: "プロパティを参照"
refConst: "定数を参照"
key: "キー"
func: "関数"
funcKind: "関数の種類"
argument: "引数"
basedProp: "元にするプロパティの名前"
alpha: "不透明度"
darken: "暗さ"
lighten: "明るさ"
inputConstantName: "定数名を入力してください"
importInfo: "ここにテーマコードを貼り付けて、エディターにインポートできます"
deleteConstantConfirm: "定数 {const} を削除しても良いですか?"
keys:
accent: "アクセント"
bg: "背景"
fg: "文字"
focus: "フォーカス"
indicator: "インジケーター"
panel: "パネル"
shadow: "影"
header: "ヘッダー"
navBg: "サイドバーの背景"
navFg: "サイドバーの文字"
navHoverFg: "サイドバー文字(ホバー)"
navActive: "サイドバー文字(アクティブ)"
navIndicator: "サイドバーのインジケーター"
link: "リンク"
hashtag: "ハッシュタグ"
mention: "メンション"
mentionMe: "あなた宛てメンション"
renote: "Renote"
modalBg: "モーダルの背景"
divider: "分割線"
scrollbarHandle: "スクロールバーの取っ手"
scrollbarHandleHover: "スクロールバーの取っ手(ホバー)"
dateLabelFg: "日付ラベルの文字"
infoBg: "情報の背景"
infoFg: "情報の文字"
infoWarnBg: "警告の背景"
infoWarnFg: "警告の文字"
cwBg: "CW ボタンの背景"
cwFg: "CW ボタンの文字"
cwHoverBg: "CW ボタンの背景 (ホバー)"
toastBg: "通知トーストの背景"
toastFg: "通知トーストの文字"
buttonBg: "ボタンの背景"
buttonHoverBg: "ボタンの背景 (ホバー)"
inputBorder: "入力ボックスの縁取り"
listItemHoverBg: "リスト項目の背景 (ホバー)"
driveFolderBg: "ドライブフォルダーの背景"
wallpaperOverlay: "壁紙のオーバーレイ"
badge: "バッジ"
messageBg: "チャットの背景"
accentDarken: "アクセント (暗め)"
accentLighten: "アクセント (明るめ)"
fgHighlighted: "強調された文字"
_sfx: _sfx:
note: "ノート" note: "ノート"
noteMy: "ノート(自分)" noteMy: "ノート(自分)"
@ -1393,7 +1217,6 @@ _relayStatus:
rejected: "拒否済み" rejected: "拒否済み"
_notification: _notification:
fileUploaded: "ファイルがアップロードされました"
youGotMention: "{name}からのメンション" youGotMention: "{name}からのメンション"
youGotReply: "{name}からのリプライ" youGotReply: "{name}からのリプライ"
youGotQuote: "{name}による引用" youGotQuote: "{name}による引用"
@ -1409,7 +1232,6 @@ _notification:
emptyPushNotificationMessage: "プッシュ通知の更新をしました" emptyPushNotificationMessage: "プッシュ通知の更新をしました"
_types: _types:
all: "すべて"
follow: "フォロー" follow: "フォロー"
mention: "メンション" mention: "メンション"
reply: "リプライ" reply: "リプライ"

View file

@ -12,7 +12,6 @@ fetchingAsApObject: "今ちと連合に照会しとるで"
ok: "OKや" ok: "OKや"
gotIt: "ほい" gotIt: "ほい"
cancel: "やめとく" cancel: "やめとく"
enterUsername: "ユーザー名を入れてや"
renotedBy: "{user}がRenote" renotedBy: "{user}がRenote"
noNotes: "ノートはあらへん" noNotes: "ノートはあらへん"
noNotifications: "通知はあらへん" noNotifications: "通知はあらへん"
@ -28,16 +27,12 @@ login: "ログイン"
loggingIn: "ログインしよるで" loggingIn: "ログインしよるで"
logout: "ログアウト" logout: "ログアウト"
signup: "新規登録" signup: "新規登録"
uploading: "アップロードしとるで"
save: "保存" save: "保存"
users: "ユーザー" users: "ユーザー"
addUser: "ユーザーを追加や" addUser: "ユーザーを追加や"
favorite: "お気に入り" favorite: "お気に入り"
favorites: "お気に入り" favorites: "お気に入り"
unfavorite: "やっぱ気に入らん" unfavorite: "やっぱ気に入らん"
favorited: "お気に入りに登録したで"
alreadyFavorited: "もうお気に入りに入れとるがな。"
cantFavorite: "アカン、お気に入り登録できへんかったで。"
pin: "ピン留めしとく" pin: "ピン留めしとく"
unpin: "やっぱピン留めせん" unpin: "やっぱピン留めせん"
copyContent: "内容をコピー" copyContent: "内容をコピー"
@ -48,7 +43,6 @@ deleteAndEditConfirm: "このノートをほかして書き直すんか?この
addToList: "リストに入れたる" addToList: "リストに入れたる"
sendMessage: "メッセージを送る" sendMessage: "メッセージを送る"
copyUsername: "ユーザー名をコピー" copyUsername: "ユーザー名をコピー"
searchUser: "ユーザーを検索"
reply: "返事" reply: "返事"
loadMore: "まだまだあるで!" loadMore: "まだまだあるで!"
showMore: "まだまだあるで!" showMore: "まだまだあるで!"
@ -68,7 +62,6 @@ unfollowConfirm: "{name}のフォローを解除してもええんか?"
exportRequested: "エクスポートしてな、ってリクエストしたけど、これ多分めっちゃ時間かかるで。エクスポート終わったら「ドライブ」に突っ込んどくで。" exportRequested: "エクスポートしてな、ってリクエストしたけど、これ多分めっちゃ時間かかるで。エクスポート終わったら「ドライブ」に突っ込んどくで。"
importRequested: "インポートしてな、ってリクエストしたけど、これ多分めっちゃ時間かかるで。" importRequested: "インポートしてな、ってリクエストしたけど、これ多分めっちゃ時間かかるで。"
lists: "リスト" lists: "リスト"
noLists: "リストなんてあらへんで"
note: "ノート" note: "ノート"
notes: "ノート" notes: "ノート"
following: "フォロー" following: "フォロー"
@ -94,21 +87,15 @@ followRequest: "フォローを頼む"
followRequests: "フォロー申請" followRequests: "フォロー申請"
unfollow: "フォローやめる" unfollow: "フォローやめる"
followRequestPending: "フォロー許してくれるん待っとる" followRequestPending: "フォロー許してくれるん待っとる"
enterEmoji: "絵文字を入れてや"
renote: "Renote" renote: "Renote"
unrenote: "Renoteやめる" unrenote: "Renoteやめる"
renoted: "Renoteしたで。"
cantRenote: "この投稿はRenoteできへんらしい。"
cantReRenote: "Renote自体はRenoteできへんで。"
quote: "引用" quote: "引用"
pinnedNote: "ピン留めされとるノート" pinnedNote: "ピン留めされとるノート"
pinned: "ピン留めしとく"
you: "あんた" you: "あんた"
clickToShow: "押したら見えるで" clickToShow: "押したら見えるで"
sensitive: "ちょっとアカンやつやで" sensitive: "ちょっとアカンやつやで"
add: "増やす" add: "増やす"
reaction: "リアクション" reaction: "リアクション"
reactionSetting: "Reaction that will be displayed in Picker. "
reactionSettingDescription2: "ドラッグで並び替え、クリックで削除、+を押して追加やで。" reactionSettingDescription2: "ドラッグで並び替え、クリックで削除、+を押して追加やで。"
attachCancel: "のっけるのやめる" attachCancel: "のっけるのやめる"
markAsSensitive: "ちょっとこれはアカン" markAsSensitive: "ちょっとこれはアカン"
@ -132,10 +119,7 @@ editWidgetsExit: "編集終ったで"
customEmojis: "カスタム絵文字" customEmojis: "カスタム絵文字"
emoji: "絵文字" emoji: "絵文字"
emojis: "絵文字" emojis: "絵文字"
emojiName: "絵文字名"
emojiUrl: "絵文字画像URL"
addEmoji: "絵文字を追加" addEmoji: "絵文字を追加"
settingGuide: "ええ感じの設定"
cacheRemoteFiles: "リモートのファイルをキャッシュする" cacheRemoteFiles: "リモートのファイルをキャッシュする"
cacheRemoteFilesDescription: "この設定を切っとくと、リモートファイルをキャッシュせず直リンクするようになるで。サーバーの容量は節約できるけど、サムネイルが作られんくなるから通信量が増えるで。" cacheRemoteFilesDescription: "この設定を切っとくと、リモートファイルをキャッシュせず直リンクするようになるで。サーバーの容量は節約できるけど、サムネイルが作られんくなるから通信量が増えるで。"
flagAsBot: "Botやで" flagAsBot: "Botやで"
@ -150,7 +134,6 @@ addAccount: "アカウントを追加"
loginFailed: "ログインに失敗してしもうた…" loginFailed: "ログインに失敗してしもうた…"
showOnRemote: "リモートで見る" showOnRemote: "リモートで見る"
general: "全般" general: "全般"
wallpaper: "壁紙"
setWallpaper: "壁紙を設定" setWallpaper: "壁紙を設定"
removeWallpaper: "壁紙を削除" removeWallpaper: "壁紙を削除"
youHaveNoLists: "リストがあらへんで?" youHaveNoLists: "リストがあらへんで?"
@ -162,27 +145,19 @@ selectUser: "ユーザーを選ぶ"
recipient: "宛先" recipient: "宛先"
annotation: "注釈" annotation: "注釈"
federation: "連合" federation: "連合"
instances: "インスタンス"
registeredAt: "初観測" registeredAt: "初観測"
latestRequestSentAt: "ちょっと前のリクエスト送信" latestRequestSentAt: "ちょっと前のリクエスト送信"
latestRequestReceivedAt: "ちょっと前のリクエスト受信" latestRequestReceivedAt: "ちょっと前のリクエスト受信"
latestStatus: "ちょっと前のステータス" latestStatus: "ちょっと前のステータス"
storageUsage: "ストレージ使うた量"
charts: "チャート" charts: "チャート"
perHour: "1時間ごと" perHour: "1時間ごと"
perDay: "1日ごと" perDay: "1日ごと"
stopActivityDelivery: "アクティビティの配送をやめる" stopActivityDelivery: "アクティビティの配送をやめる"
blockThisInstance: "このインスタンスをブロック" blockThisInstance: "このインスタンスをブロック"
operations: "操作"
software: "ソフトウェア" software: "ソフトウェア"
version: "バージョン" version: "バージョン"
metadata: "メタデータ"
withNFiles: "{n}個のファイル" withNFiles: "{n}個のファイル"
monitor: "モニター"
jobQueue: "ジョブキュー" jobQueue: "ジョブキュー"
cpuAndMemory: "CPUとメモリ"
network: "ネットワーク"
disk: "ディスク"
instanceInfo: "インスタンス情報" instanceInfo: "インスタンス情報"
statistics: "統計" statistics: "統計"
clearQueue: "キューにさいなら" clearQueue: "キューにさいなら"
@ -213,9 +188,6 @@ all: "みんな"
subscribing: "購読しとる" subscribing: "購読しとる"
publishing: "配信しとる" publishing: "配信しとる"
notResponding: "応答してへんで" notResponding: "応答してへんで"
instanceFollowing: "インスタンスのフォロー"
instanceFollowers: "インスタンスのフォロワー\n"
instanceUsers: "インスタンスのユーザー"
changePassword: "パスワード変える" changePassword: "パスワード変える"
security: "セキュリティ" security: "セキュリティ"
retypedNotMatch: "そやないねん。" retypedNotMatch: "そやないねん。"
@ -231,7 +203,6 @@ lookup: "見てきて"
announcements: "お知らせ" announcements: "お知らせ"
imageUrl: "画像URL" imageUrl: "画像URL"
remove: "ほかす" remove: "ほかす"
removed: "削除したで!"
removeAreYouSure: "「{x}」はほかしてええか?" removeAreYouSure: "「{x}」はほかしてええか?"
deleteAreYouSure: "「{x}」はほかしてええか?" deleteAreYouSure: "「{x}」はほかしてええか?"
resetAreYouSure: "リセットしてええん?" resetAreYouSure: "リセットしてええん?"
@ -272,7 +243,6 @@ lightThemes: "デイゲーム"
darkThemes: "ナイトゲーム" darkThemes: "ナイトゲーム"
syncDeviceDarkMode: "デバイスのダークモードと一緒にする" syncDeviceDarkMode: "デバイスのダークモードと一緒にする"
drive: "ドライブ" drive: "ドライブ"
fileName: "ファイル名"
selectFile: "ファイル選んでや" selectFile: "ファイル選んでや"
selectFiles: "ファイル選んでや" selectFiles: "ファイル選んでや"
selectFolder: "フォルダ選んでや" selectFolder: "フォルダ選んでや"
@ -322,7 +292,6 @@ integration: "連携"
enableLocalTimeline: "ローカルタイムラインを使えるようにする" enableLocalTimeline: "ローカルタイムラインを使えるようにする"
enableGlobalTimeline: "グローバルタイムラインを使えるようにする" enableGlobalTimeline: "グローバルタイムラインを使えるようにする"
disablingTimelinesInfo: "ここらへんのタイムラインを使えんようにしてしもても、管理者とモデレーターは使えるままになってるで、そうやなかったら不便やからな。" disablingTimelinesInfo: "ここらへんのタイムラインを使えんようにしてしもても、管理者とモデレーターは使えるままになってるで、そうやなかったら不便やからな。"
registration: "登録"
enableRegistration: "一見さんでも誰でもいらっしゃ~い" enableRegistration: "一見さんでも誰でもいらっしゃ~い"
invite: "来てや" invite: "来てや"
driveCapacityPerLocalAccount: "ローカルユーザーひとりあたりのドライブ容量" driveCapacityPerLocalAccount: "ローカルユーザーひとりあたりのドライブ容量"
@ -330,20 +299,12 @@ driveCapacityPerRemoteAccount: "リモートユーザーひとりあたりのド
inMb: "メガバイト単位" inMb: "メガバイト単位"
iconUrl: "アイコン画像のURL" iconUrl: "アイコン画像のURL"
bannerUrl: "バナー画像のURL" bannerUrl: "バナー画像のURL"
basicInfo: "基本情報"
pinnedUsers: "ピン留めしたユーザー" pinnedUsers: "ピン留めしたユーザー"
pinnedUsersDescription: "「みつける」ページとかにピン留めしたいユーザーをここに書けばええんやで。他ん人との名前は改行で区切ればええんやで。" pinnedUsersDescription: "「みつける」ページとかにピン留めしたいユーザーをここに書けばええんやで。他ん人との名前は改行で区切ればええんやで。"
pinnedPages: "ピン留めページ"
pinnedNotes: "ピン留めされとるノート"
hcaptcha: "hCaptchaキャプチャ"
enableHcaptcha: "hCaptchaキャプチャをつけとく"
hcaptchaSiteKey: "サイトキー" hcaptchaSiteKey: "サイトキー"
hcaptchaSecretKey: "シークレットキー" hcaptchaSecretKey: "シークレットキー"
recaptcha: "reCAPTCHA"
enableRecaptcha: "reCAPTCHAリキャプチャを有効にする"
recaptchaSiteKey: "サイトキー" recaptchaSiteKey: "サイトキー"
recaptchaSecretKey: "シークレットキー" recaptchaSecretKey: "シークレットキー"
avoidMultiCaptchaConfirm: "ぎょうさんのCaptchaをつこてしまうと、仲良うせんことがあるんや。他のCaptchaをなおしとこか別にキャンセルしてもろうたらCaptchaは消されへんで済むけど知らんで。"
antennas: "アンテナ" antennas: "アンテナ"
manageAntennas: "アンテナいじる" manageAntennas: "アンテナいじる"
name: "名前" name: "名前"
@ -353,7 +314,6 @@ antennaExcludeKeywords: "除外キーワード"
antennaKeywordsDescription: "スペースで区切ったるとAND指定で、改行で区切ったるとOR指定や" antennaKeywordsDescription: "スペースで区切ったるとAND指定で、改行で区切ったるとOR指定や"
notifyAntenna: "新しいノートを通知すんで" notifyAntenna: "新しいノートを通知すんで"
withFileAntenna: "なんか添付されたノートだけ" withFileAntenna: "なんか添付されたノートだけ"
enableServiceworker: "ServiceWorkerをつこて"
antennaUsersDescription: "ユーザー名を改行で区切ったってな" antennaUsersDescription: "ユーザー名を改行で区切ったってな"
caseSensitive: "大文字と小文字は別もんや" caseSensitive: "大文字と小文字は別もんや"
withReplies: "返信も入れたって" withReplies: "返信も入れたって"
@ -368,11 +328,8 @@ popularUsers: "人気のユーザー"
recentlyUpdatedUsers: "ちょっと前に投稿したばっかりのユーザー" recentlyUpdatedUsers: "ちょっと前に投稿したばっかりのユーザー"
recentlyRegisteredUsers: "ちょっと前に始めたばっかりのユーザー" recentlyRegisteredUsers: "ちょっと前に始めたばっかりのユーザー"
recentlyDiscoveredUsers: "最近見っけたユーザー" recentlyDiscoveredUsers: "最近見っけたユーザー"
exploreUsersCount: "{count}もユーザーおるで"
exploreFediverse: "Fediverseを探ってみる"
popularTags: "人気のタグ" popularTags: "人気のタグ"
userList: "リスト" userList: "リスト"
about: "情報"
aboutMisskey: "FoundKeyってなんや" aboutMisskey: "FoundKeyってなんや"
administrator: "管理者" administrator: "管理者"
token: "トークン" token: "トークン"
@ -392,7 +349,6 @@ share: "わけわけ"
notFound: "見つからへんね" notFound: "見つからへんね"
notFoundDescription: "指定されたURLに該当するページはあらへんやった。" notFoundDescription: "指定されたURLに該当するページはあらへんやった。"
uploadFolder: "とりあえずアップロードしたやつ置いとく所" uploadFolder: "とりあえずアップロードしたやつ置いとく所"
cacheClear: "キャッシュをほかす"
markAsReadAllNotifications: "通知はもう全て読んだわっ" markAsReadAllNotifications: "通知はもう全て読んだわっ"
markAsReadAllUnreadNotes: "投稿は全て読んだわっ" markAsReadAllUnreadNotes: "投稿は全て読んだわっ"
markAsReadAllTalkMessages: "チャットはもうぜんぶ読んだわっ" markAsReadAllTalkMessages: "チャットはもうぜんぶ読んだわっ"
@ -423,7 +379,6 @@ noMessagesYet: "まだチャットはあらへんで"
newMessageExists: "新しいメッセージがきたで" newMessageExists: "新しいメッセージがきたで"
onlyOneFileCanBeAttached: "すまん、メッセージに添付できるファイルはひとつだけなんや。" onlyOneFileCanBeAttached: "すまん、メッセージに添付できるファイルはひとつだけなんや。"
signinRequired: "ログインしてくれへん?" signinRequired: "ログインしてくれへん?"
invitations: "来てや"
invitationCode: "招待コード" invitationCode: "招待コード"
checking: "確認しとるで" checking: "確認しとるで"
available: "利用できる\n" available: "利用できる\n"
@ -441,32 +396,23 @@ or: "それか"
language: "言語" language: "言語"
uiLanguage: "UIの表示言語" uiLanguage: "UIの表示言語"
groupInvited: "グループに招待されとるで" groupInvited: "グループに招待されとるで"
aboutX: "{x}について"
useOsNativeEmojis: "OSネイティブの絵文字を使う" useOsNativeEmojis: "OSネイティブの絵文字を使う"
youHaveNoGroups: "グループがあらへんねぇ。" youHaveNoGroups: "グループがあらへんねぇ。"
noHistory: "履歴はあらへんねぇ。" noHistory: "履歴はあらへんねぇ。"
signinHistory: "ログイン履歴" signinHistory: "ログイン履歴"
disableAnimatedMfm: "動きがやかましいMFMを止める" disableAnimatedMfm: "動きがやかましいMFMを止める"
doing: "やっとるがな"
category: "カテゴリ" category: "カテゴリ"
tags: "タグ" tags: "タグ"
docSource: "このドキュメントのソース"
createAccount: "アカウントを作成" createAccount: "アカウントを作成"
regenerate: "再生成"
fontSize: "フォントサイズ" fontSize: "フォントサイズ"
noFollowRequests: "フォロー申請はあらへんで" noFollowRequests: "フォロー申請はあらへんで"
openImageInNewTab: "画像を新しいタブで開く" openImageInNewTab: "画像を新しいタブで開く"
dashboard: "ダッシュボード" dashboard: "ダッシュボード"
local: "ローカル" local: "ローカル"
remote: "リモート" remote: "リモート"
total: "合計"
weekOverWeekChanges: "前週比"
dayOverDayChanges: "前日比" dayOverDayChanges: "前日比"
appearance: "見た目" appearance: "見た目"
clientSettings: "クライアントの設定" clientSettings: "クライアントの設定"
accountSettings: "アカウントの設定"
numberOfDays: "日数"
hideThisNote: "このノートは表示せんでいい"
showFeaturedNotesInTimeline: "タイムラインにおすすめのノートを表示してや" showFeaturedNotesInTimeline: "タイムラインにおすすめのノートを表示してや"
objectStorage: "オブジェクトストレージ" objectStorage: "オブジェクトストレージ"
useObjectStorage: "オブジェクトストレージを使う" useObjectStorage: "オブジェクトストレージを使う"
@ -481,8 +427,6 @@ objectStorageUseSSL: "SSLを使う"
objectStorageUseProxy: "Proxyを使う" objectStorageUseProxy: "Proxyを使う"
objectStorageUseProxyDesc: "API接続にproxy使わんのやったら切ってくれへん" objectStorageUseProxyDesc: "API接続にproxy使わんのやったら切ってくれへん"
objectStorageSetPublicRead: "アップロードした時に'public-read'を設定してや" objectStorageSetPublicRead: "アップロードした時に'public-read'を設定してや"
serverLogs: "サーバーログ"
deleteAll: "全て削除してや"
showFixedPostForm: "タイムラインの上の方で投稿できるようにやってくれへん?" showFixedPostForm: "タイムラインの上の方で投稿できるようにやってくれへん?"
newNoteRecived: "新しいノートがあるで" newNoteRecived: "新しいノートがあるで"
sounds: "サウンド" sounds: "サウンド"
@ -493,7 +437,6 @@ popout: "ポップアウト"
volume: "音量" volume: "音量"
masterVolume: "全体の音量" masterVolume: "全体の音量"
details: "もっと" details: "もっと"
chooseEmoji: "絵文字を選ぶ"
unableToProcess: "なんか作業が止まってしまったようやね" unableToProcess: "なんか作業が止まってしまったようやね"
recentUsed: "最近使ったやつ" recentUsed: "最近使ったやつ"
install: "インストール" install: "インストール"
@ -509,9 +452,7 @@ descendingOrder: "大きい順"
scratchpad: "スクラッチパッド" scratchpad: "スクラッチパッド"
scratchpadDescription: "スクラッチパッドではAiScriptを色々試すことができるんや。FoundKeyに対して色々できるコードを書いて動かしてみたり、結果を見たりできるで。" scratchpadDescription: "スクラッチパッドではAiScriptを色々試すことができるんや。FoundKeyに対して色々できるコードを書いて動かしてみたり、結果を見たりできるで。"
output: "出力" output: "出力"
script: "スクリプト"
updateRemoteUser: "リモートユーザー情報の更新してくれん?" updateRemoteUser: "リモートユーザー情報の更新してくれん?"
deleteAllFiles: "すべてのファイルを削除"
deleteAllFilesConfirm: "ホンマにすべてのファイルを削除するん?消したもんはもう戻ってこんのやで?" deleteAllFilesConfirm: "ホンマにすべてのファイルを削除するん?消したもんはもう戻ってこんのやで?"
removeAllFollowing: "フォローを全解除" removeAllFollowing: "フォローを全解除"
removeAllFollowingDescription: "{host}からのフォローをすべて解除するで。そのインスタンスが消えて無くなった時とかには便利な機能やで。" removeAllFollowingDescription: "{host}からのフォローをすべて解除するで。そのインスタンスが消えて無くなった時とかには便利な機能やで。"
@ -521,7 +462,6 @@ divider: "分割線"
relays: "リレー" relays: "リレー"
addRelay: "リレーの追加" addRelay: "リレーの追加"
inboxUrl: "inboxのURL" inboxUrl: "inboxのURL"
addedRelays: "追加済みのリレー"
poll: "アンケート" poll: "アンケート"
enablePlayer: "プレイヤーを開く" enablePlayer: "プレイヤーを開く"
disablePlayer: "プレイヤーを閉じる" disablePlayer: "プレイヤーを閉じる"
@ -532,7 +472,6 @@ leaveConfirm: "未保存の変更があるで!ほかしてええか?"
manage: "管理" manage: "管理"
plugins: "プラグイン" plugins: "プラグイン"
deck: "デッキ" deck: "デッキ"
undeck: "デッキ解除"
width: "幅" width: "幅"
height: "高さ" height: "高さ"
large: "大" large: "大"
@ -556,10 +495,7 @@ userSaysSomething: "{name}が何か言ったようやで"
makeActive: "使うで" makeActive: "使うで"
display: "表示" display: "表示"
copy: "コピー" copy: "コピー"
metrics: "メトリクス"
overview: "概要" overview: "概要"
logs: "ログ"
delayed: "遅延"
database: "データベース" database: "データベース"
channel: "チャンネル" channel: "チャンネル"
create: "作成" create: "作成"
@ -569,19 +505,14 @@ useGlobalSetting: "グローバル設定を使ってや"
other: "その他" other: "その他"
regenerateLoginToken: "ログイントークンを再生成" regenerateLoginToken: "ログイントークンを再生成"
behavior: "動作" behavior: "動作"
sample: "サンプル"
abuseReports: "通報" abuseReports: "通報"
reportAbuse: "通報" reportAbuse: "通報"
reportAbuseOf: "{name}を通報する" reportAbuseOf: "{name}を通報する"
send: "送信" send: "送信"
abuseMarkAsResolved: "対応したで" abuseMarkAsResolved: "対応したで"
openInNewTab: "新しいタブで開く" openInNewTab: "新しいタブで開く"
openInSideView: "サイドビューで開く"
defaultNavigationBehaviour: "デフォルトのナビゲーション" defaultNavigationBehaviour: "デフォルトのナビゲーション"
editTheseSettingsMayBreakAccount: "このへんの設定をようわからんままイジるとアカウントが壊れて使えんくなるかも知れへんで?"
instanceTicker: "ノートのインスタンス情報" instanceTicker: "ノートのインスタンス情報"
waitingFor: "{x}を待っとるで"
random: "ランダム"
system: "システム" system: "システム"
switchUi: "UI切り替え" switchUi: "UI切り替え"
desktop: "デスクトップ" desktop: "デスクトップ"
@ -602,27 +533,16 @@ center: "中央"
wide: "広い" wide: "広い"
narrow: "狭い" narrow: "狭い"
reloadToApplySetting: "設定はページリロード後に反映されるで。今リロードしとくか?" reloadToApplySetting: "設定はページリロード後に反映されるで。今リロードしとくか?"
showTitlebar: "タイトルバーを見せる"
clearCache: "キャッシュをほかす" clearCache: "キャッシュをほかす"
onlineUsersCount: "{n}人が起きとるで" onlineUsersCount: "{n}人が起きとるで"
nUsers: "{n}ユーザー"
nNotes: "{n}ノート"
myTheme: "マイテーマ"
backgroundColor: "背景" backgroundColor: "背景"
accentColor: "アクセント" accentColor: "アクセント"
textColor: "文字" textColor: "文字"
saveAs: "名前を付けて保存" saveAs: "名前を付けて保存"
advanced: "高度"
value: "値"
createdAt: "作成した日" createdAt: "作成した日"
updatedAt: "更新日時" updatedAt: "更新日時"
saveConfirm: "保存するで?"
deleteConfirm: "ホンマに削除するで?" deleteConfirm: "ホンマに削除するで?"
registry: "レジストリ"
closeAccount: "アカウントを閉鎖する" closeAccount: "アカウントを閉鎖する"
currentVersion: "現在のバージョン"
latestVersion: "最新のバージョン"
youAreRunningUpToDateClient: "今使ってるクライアントが最新やで!"
newVersionOfClientAvailable: "新しいバージョンのクライアントが使えるで。" newVersionOfClientAvailable: "新しいバージョンのクライアントが使えるで。"
usageAmount: "使用量" usageAmount: "使用量"
capacity: "容量" capacity: "容量"
@ -631,29 +551,18 @@ editCode: "コードを編集"
apply: "適用" apply: "適用"
receiveAnnouncementFromInstance: "インスタンスからのお知らせを受け取る" receiveAnnouncementFromInstance: "インスタンスからのお知らせを受け取る"
emailNotification: "メール通知" emailNotification: "メール通知"
inChannelSearch: "チャンネル内検索"
useReactionPickerForContextMenu: "右クリックでリアクションピッカーを開くようにする" useReactionPickerForContextMenu: "右クリックでリアクションピッカーを開くようにする"
typingUsers: "{users}が今書きよるで" typingUsers: "{users}が今書きよるで"
jumpToSpecifiedDate: "特定の日付にジャンプ" jumpToSpecifiedDate: "特定の日付にジャンプ"
showingPastTimeline: "過去のタイムラインを表示してるで"
clear: "クリア" clear: "クリア"
markAllAsRead: "もうみな読んでもうたわ" markAllAsRead: "もうみな読んでもうたわ"
goBack: "戻る" goBack: "戻る"
info: "情報" info: "情報"
user: "ユーザー" user: "ユーザー"
administration: "管理" administration: "管理"
expiration: "期限"
memo: "メモ"
high: "高い"
middle: "中"
low: "低い"
global: "グローバル"
sent: "送信"
hashtags: "ハッシュタグ" hashtags: "ハッシュタグ"
hide: "隠す" hide: "隠す"
indefinitely: "無期限" indefinitely: "無期限"
_ad:
back: "戻る"
_gallery: _gallery:
unlike: "良くないわ" unlike: "良くないわ"
_email: _email:
@ -664,7 +573,6 @@ _email:
_plugin: _plugin:
install: "プラグインのインストール" install: "プラグインのインストール"
installWarn: "信頼できへんプラグインはインストールせんとってな" installWarn: "信頼できへんプラグインはインストールせんとってな"
manage: "プラグインの管理"
_registry: _registry:
scope: "スコープ" scope: "スコープ"
key: "キー" key: "キー"
@ -673,10 +581,8 @@ _registry:
createKey: "キーを作る" createKey: "キーを作る"
_aboutMisskey: _aboutMisskey:
about: "FoundKeyはsyuiloが2014年からずっと作ってはる、オープンソースなソフトウェアや。" about: "FoundKeyはsyuiloが2014年からずっと作ってはる、オープンソースなソフトウェアや。"
contributors: "主な貢献者"
allContributors: "全ての貢献者" allContributors: "全ての貢献者"
source: "ソースコード" source: "ソースコード"
translation: "FoundKeyを翻訳"
_mfm: _mfm:
cheatSheet: "MFMチートシート" cheatSheet: "MFMチートシート"
mention: "メンション" mention: "メンション"
@ -727,64 +633,6 @@ _theme:
builtinThemes: "標準のテーマ" builtinThemes: "標準のテーマ"
alreadyInstalled: "そのテーマはもうインストールされとるで?" alreadyInstalled: "そのテーマはもうインストールされとるで?"
make: "テーマを作る" make: "テーマを作る"
base: "ベース"
addConstant: "定数を追加"
defaultValue: "デフォルト値"
color: "色"
refProp: "プロパティを参照"
refConst: "定数を参照"
key: "キー"
func: "関数"
funcKind: "関数の種類"
argument: "引数"
basedProp: "元にするプロパティの名前"
alpha: "不透明度"
darken: "暗さ"
lighten: "明るさ"
keys:
accent: "アクセント"
bg: "背景"
fg: "文字"
focus: "フォーカス"
indicator: "インジケーター"
panel: "パネル"
shadow: "影"
header: "ヘッダー"
navBg: "サイドバーの背景"
navFg: "サイドバーの文字"
navHoverFg: "サイドバー文字(ホバー)"
navActive: "サイドバー文字(アクティブ)"
navIndicator: "サイドバーのインジケーター"
link: "リンク"
hashtag: "ハッシュタグ"
mention: "メンション"
mentionMe: "うち宛てのメンション"
renote: "Renote"
modalBg: "モーダルの背景"
divider: "分割線"
scrollbarHandle: "スクロールバーの取っ手"
scrollbarHandleHover: "スクロールバーの取っ手(ホバー)"
dateLabelFg: "日付ラベルの文字"
infoBg: "情報の背景"
infoFg: "情報の文字"
infoWarnBg: "警告の背景"
infoWarnFg: "警告の文字"
cwBg: "CW ボタンの背景"
cwFg: "CW ボタンの文字"
cwHoverBg: "CW ボタンの背景 (ホバー)"
toastBg: "通知トーストの背景"
toastFg: "通知トーストの文字"
buttonBg: "ボタンの背景"
buttonHoverBg: "ボタンの背景 (ホバー)"
inputBorder: "入力ボックスの縁取り"
listItemHoverBg: "リスト項目の背景 (ホバー)"
driveFolderBg: "ドライブフォルダーの背景"
wallpaperOverlay: "壁紙のオーバーレイ"
badge: "バッジ"
messageBg: "チャットの背景"
accentDarken: "アクセント (暗め)"
accentLighten: "アクセント (明るめ)"
fgHighlighted: "強調されとる文字"
_sfx: _sfx:
note: "ノート" note: "ノート"
noteMy: "ノート(自分)" noteMy: "ノート(自分)"
@ -931,7 +779,6 @@ _pages:
eyeCatchingImageSet: "アイキャッチ画像を設定" eyeCatchingImageSet: "アイキャッチ画像を設定"
eyeCatchingImageRemove: "アイキャッチ画像を削除" eyeCatchingImageRemove: "アイキャッチ画像を削除"
_notification: _notification:
fileUploaded: "ファイルが無事アップロードされたで。"
youGotMention: "{name}からのメンション" youGotMention: "{name}からのメンション"
youGotReply: "{name}からのリプライ" youGotReply: "{name}からのリプライ"
youWereFollowed: "フォローされたで" youWereFollowed: "フォローされたで"
@ -939,7 +786,6 @@ _notification:
yourFollowRequestAccepted: "フォローさせてもろたで" yourFollowRequestAccepted: "フォローさせてもろたで"
youWereInvitedToGroup: "グループに招待されとるで" youWereInvitedToGroup: "グループに招待されとるで"
_types: _types:
all: "すべて"
follow: "フォロー" follow: "フォロー"
mention: "メンション" mention: "メンション"
renote: "Renote" renote: "Renote"

View file

@ -22,7 +22,6 @@ export: "Sifeḍ"
files: "Ifuyla" files: "Ifuyla"
download: "Sider" download: "Sider"
lists: "Tibdarin" lists: "Tibdarin"
noLists: "Ulac ɣur-k·m ula d yiwet n tabdart"
following: "Ig ṭṭafaṛ" following: "Ig ṭṭafaṛ"
followers: "Imeḍfaṛen" followers: "Imeḍfaṛen"
followsYou: "Yeṭṭafaṛ-ik·em-id" followsYou: "Yeṭṭafaṛ-ik·em-id"
@ -43,7 +42,6 @@ signinRequired: "Ttxil jerred"
signinWith: "Tuqqna s {x}" signinWith: "Tuqqna s {x}"
tapSecurityKey: "Sekcem tasarutt-ik·im n tɣellist" tapSecurityKey: "Sekcem tasarutt-ik·im n tɣellist"
uiLanguage: "Tutlayt n wegrudem" uiLanguage: "Tutlayt n wegrudem"
accountSettings: "Iɣewwaṛen n umiḍan"
plugins: "Izegrar" plugins: "Izegrar"
email: "Imayl" email: "Imayl"
emailAddress: "Tansa imayl" emailAddress: "Tansa imayl"
@ -61,9 +59,7 @@ _mfm:
mention: "Bder" mention: "Bder"
search: "Nadi" search: "Nadi"
font: "Tasefsit" font: "Tasefsit"
_theme: _theme: {}
keys:
mention: "Bder"
_sfx: _sfx:
notification: "Ilɣuyen" notification: "Ilɣuyen"
_permissions: _permissions:

View file

@ -12,7 +12,6 @@ fetchingAsApObject: "ಒಕ್ಕೂಟದಿಂದ ಪಡೆಯಲಾಗುತ
ok: "ಸರಿ" ok: "ಸರಿ"
gotIt: "ಅರ್ಥವಾಯಿತು!" gotIt: "ಅರ್ಥವಾಯಿತು!"
cancel: "ರದ್ದು" cancel: "ರದ್ದು"
enterUsername: "ಬಳಕೆಹೆಸರನ್ನು ಭರ್ತಿ ಮಾಡಿ"
renotedBy: "{user} ಪುನರಾವರ್ತಿಸಿದರು" renotedBy: "{user} ಪುನರಾವರ್ತಿಸಿದರು"
noNotes: "ಟಿಪ್ಪಣಿಗಳಿಲ್ಲ" noNotes: "ಟಿಪ್ಪಣಿಗಳಿಲ್ಲ"
noNotifications: "ಅಧಿಸೂಚನೆಗಳಿಲ್ಲ" noNotifications: "ಅಧಿಸೂಚನೆಗಳಿಲ್ಲ"
@ -25,7 +24,6 @@ login: "ಪ್ರವೇಶ"
loggingIn: "ಪ್ರವೇಶಿಸುತ್ತಾ..." loggingIn: "ಪ್ರವೇಶಿಸುತ್ತಾ..."
logout: "ಆಚೆಗೆ" logout: "ಆಚೆಗೆ"
signup: "ನೋಂದಣಿ" signup: "ನೋಂದಣಿ"
uploading: "ಅಪ್‌ಲೋಡಾಗುತ್ತಿದೆ"
save: "ಉಳಿಸಿ" save: "ಉಳಿಸಿ"
users: "ಬಳಕೆದಾರ" users: "ಬಳಕೆದಾರ"
addUser: "ಬಳಕೆದಾರರನ್ನು ಸೇರಿಸಿ" addUser: "ಬಳಕೆದಾರರನ್ನು ಸೇರಿಸಿ"
@ -56,8 +54,6 @@ download: "ಜಾಲದಿಂದಿಳಿಸು"
driveFileDeleteConfirm: "\"{name}\" ಕಡತವನ್ನು ಅಳಿಸಲು ನೀವು ಬಯಸುವಿರಾ? ಈ ನೋಡಿರಿ ಲಗತ್ತಿಸಲಾದ\ driveFileDeleteConfirm: "\"{name}\" ಕಡತವನ್ನು ಅಳಿಸಲು ನೀವು ಬಯಸುವಿರಾ? ಈ ನೋಡಿರಿ ಲಗತ್ತಿಸಲಾದ\
\ ಟಿಪ್ಪಣಿ ಸಹ ಕಣ್ಮರೆಯಾಗುತ್ತದೆ." \ ಟಿಪ್ಪಣಿ ಸಹ ಕಣ್ಮರೆಯಾಗುತ್ತದೆ."
unfollowConfirm: "{name}ಅನ್ನು ಹಿಂಬಾಲಿಸದಿರುವುದೇ?" unfollowConfirm: "{name}ಅನ್ನು ಹಿಂಬಾಲಿಸದಿರುವುದೇ?"
pinned: "ಪ್ರೊಫ಼ೈಲಿಗೆ ಅಂಟಿಸು"
instances: "ನಿದರ್ಶನ"
remove: "ಅಳಿಸು" remove: "ಅಳಿಸು"
smtpUser: "ಬಳಕೆಹೆಸರು" smtpUser: "ಬಳಕೆಹೆಸರು"
smtpPass: "ಗುಪ್ತಪದ" smtpPass: "ಗುಪ್ತಪದ"

View file

@ -14,7 +14,6 @@ fetchingAsApObject: "Ophalen vanuit de Fediverse"
ok: "Ok" ok: "Ok"
gotIt: "Begrepen" gotIt: "Begrepen"
cancel: "Annuleren" cancel: "Annuleren"
enterUsername: "Voer een gebruikersnaam in"
renotedBy: "Hergedeeld door {user}" renotedBy: "Hergedeeld door {user}"
noNotes: "Geen notities" noNotes: "Geen notities"
noNotifications: "Geen meldingen" noNotifications: "Geen meldingen"
@ -30,16 +29,12 @@ login: "Inloggen"
loggingIn: "Aan het inloggen" loggingIn: "Aan het inloggen"
logout: "Afmelden" logout: "Afmelden"
signup: "Registreren" signup: "Registreren"
uploading: "Bezig met uploaden"
save: "Opslaan" save: "Opslaan"
users: "Gebruikers" users: "Gebruikers"
addUser: "Toevoegen gebruiker" addUser: "Toevoegen gebruiker"
favorite: "Favorieten" favorite: "Favorieten"
favorites: "Toevoegen aan favorieten" favorites: "Toevoegen aan favorieten"
unfavorite: "Verwijderen uit favorieten" unfavorite: "Verwijderen uit favorieten"
favorited: "Toegevoegd aan favorieten."
alreadyFavorited: "Al toegevoegd aan favorieten"
cantFavorite: "Kon niet toevoegen aan favorieten"
pin: "Vastmaken aan profielpagina" pin: "Vastmaken aan profielpagina"
unpin: "Losmaken van profielpagina" unpin: "Losmaken van profielpagina"
copyContent: "Kopiëren inhoud" copyContent: "Kopiëren inhoud"
@ -51,7 +46,6 @@ deleteAndEditConfirm: "Weet je zeker dat je deze notitie wilt verwijderen en dan
addToList: "Aan lijst toevoegen" addToList: "Aan lijst toevoegen"
sendMessage: "Verstuur bericht" sendMessage: "Verstuur bericht"
copyUsername: "Kopiëren gebruikersnaam " copyUsername: "Kopiëren gebruikersnaam "
searchUser: "Zoeken een gebruiker"
reply: "Antwoord" reply: "Antwoord"
loadMore: "Laad meer" loadMore: "Laad meer"
showMore: "Toon meer" showMore: "Toon meer"
@ -74,7 +68,6 @@ exportRequested: "Je hebt een export aangevraagd. Dit kan een tijdje duren. Het
\ toegevoegd aan je Drive zodra het is voltooid." \ toegevoegd aan je Drive zodra het is voltooid."
importRequested: "Je hebt een import aangevraagd. Dit kan even duren." importRequested: "Je hebt een import aangevraagd. Dit kan even duren."
lists: "Lijsten" lists: "Lijsten"
noLists: "Je hebt geen lijsten"
note: "Notitie" note: "Notitie"
notes: "Notities" notes: "Notities"
following: "Volgend" following: "Volgend"
@ -100,15 +93,10 @@ followRequest: "Verzoek om te mogen volgen"
followRequests: "Volgverzoeken" followRequests: "Volgverzoeken"
unfollow: "Ontvolgen" unfollow: "Ontvolgen"
followRequestPending: "Wachten op goedkeuring volgverzoek" followRequestPending: "Wachten op goedkeuring volgverzoek"
enterEmoji: "Voer een emoji in"
renote: "Herdelen" renote: "Herdelen"
unrenote: "Stop herdelen" unrenote: "Stop herdelen"
renoted: "Herdeeld"
cantRenote: "Dit bericht kan niet worden herdeeld."
cantReRenote: "Een herdeling kan niet worden herdeeld."
quote: "Quote" quote: "Quote"
pinnedNote: "Vastgemaakte notitie" pinnedNote: "Vastgemaakte notitie"
pinned: "Vastmaken aan profielpagina"
you: "Jij" you: "Jij"
clickToShow: "Klik om te bekijken" clickToShow: "Klik om te bekijken"
sensitive: "NSFW" sensitive: "NSFW"
@ -146,7 +134,6 @@ addAccount: "Account toevoegen"
loginFailed: "Aanmelding mislukt." loginFailed: "Aanmelding mislukt."
showOnRemote: "Toon op de externe instantie." showOnRemote: "Toon op de externe instantie."
general: "Algemeen" general: "Algemeen"
wallpaper: "Achtergrond"
setWallpaper: "Achtergrond instellen" setWallpaper: "Achtergrond instellen"
removeWallpaper: "Achtergrond verwijderen" removeWallpaper: "Achtergrond verwijderen"
youHaveNoLists: "Je hebt geen lijsten" youHaveNoLists: "Je hebt geen lijsten"
@ -162,27 +149,19 @@ selectUser: "Kies een gebruiker"
recipient: "Ontvanger" recipient: "Ontvanger"
annotation: "Reacties" annotation: "Reacties"
federation: "Federatie" federation: "Federatie"
instances: "Server"
registeredAt: "Geregistreerd op" registeredAt: "Geregistreerd op"
latestRequestSentAt: "Laatste aanvraag verstuurd" latestRequestSentAt: "Laatste aanvraag verstuurd"
latestRequestReceivedAt: "Laatste aanvraag ontvangen" latestRequestReceivedAt: "Laatste aanvraag ontvangen"
latestStatus: "Laatste status" latestStatus: "Laatste status"
storageUsage: "Gebruikte opslagruimte"
charts: "Grafieken" charts: "Grafieken"
perHour: "Per uur" perHour: "Per uur"
perDay: "Per dag" perDay: "Per dag"
stopActivityDelivery: "Stop met versturen activiteiten" stopActivityDelivery: "Stop met versturen activiteiten"
blockThisInstance: "Blokkeer deze server" blockThisInstance: "Blokkeer deze server"
operations: "Verwerkingen"
software: "Software" software: "Software"
version: "Versie" version: "Versie"
metadata: "Metadata"
withNFiles: "{n} bestand(en)" withNFiles: "{n} bestand(en)"
monitor: "Monitor"
jobQueue: "Job Queue" jobQueue: "Job Queue"
cpuAndMemory: "CPU en geheugen"
network: "Netwerk"
disk: "Schijfruimte"
instanceInfo: "Serverinformatie" instanceInfo: "Serverinformatie"
statistics: "Statistieken" statistics: "Statistieken"
clearQueue: "Wachtrij wissen" clearQueue: "Wachtrij wissen"
@ -217,9 +196,6 @@ all: "Alle"
subscribing: "Abonneren" subscribing: "Abonneren"
publishing: "Publiceren" publishing: "Publiceren"
notResponding: "Reageert niet" notResponding: "Reageert niet"
instanceFollowing: "Volgend op server"
instanceFollowers: "Volgers op server"
instanceUsers: "Gebruikers van deze server"
changePassword: "Wachtwoord wijzigen" changePassword: "Wachtwoord wijzigen"
security: "Beveiliging" security: "Beveiliging"
retypedNotMatch: "Invoer komt niet overeen" retypedNotMatch: "Invoer komt niet overeen"
@ -235,7 +211,6 @@ lookup: "Opzoeken"
announcements: "Aankondigingen" announcements: "Aankondigingen"
imageUrl: "AfbeeldingsURL" imageUrl: "AfbeeldingsURL"
remove: "Verwijderen" remove: "Verwijderen"
removed: "Succesvol verwijderd"
removeAreYouSure: "Weet je zeker dat je \"{x}\" wil verwijderen?" removeAreYouSure: "Weet je zeker dat je \"{x}\" wil verwijderen?"
deleteAreYouSure: "Weet je zeker dat je \"{x}\" wil verwijderen?" deleteAreYouSure: "Weet je zeker dat je \"{x}\" wil verwijderen?"
resetAreYouSure: "Resetten?" resetAreYouSure: "Resetten?"
@ -278,7 +253,6 @@ lightThemes: "Licht thema's"
darkThemes: "Donkere thema's" darkThemes: "Donkere thema's"
syncDeviceDarkMode: "Synchroniseer donkere modus met je apparaatinstellingen" syncDeviceDarkMode: "Synchroniseer donkere modus met je apparaatinstellingen"
drive: "Schijf" drive: "Schijf"
fileName: "Bestandsnaam"
selectFile: "Kies een bestand" selectFile: "Kies een bestand"
selectFiles: "Selecteer bestanden" selectFiles: "Selecteer bestanden"
selectFolder: "Kies een map" selectFolder: "Kies een map"
@ -301,7 +275,6 @@ nsfw: "NSFW"
whenServerDisconnected: "Wanneer de verbinding met de server wordt onderbroken" whenServerDisconnected: "Wanneer de verbinding met de server wordt onderbroken"
disconnectedFromServer: "Verbinding met de server onderbroken." disconnectedFromServer: "Verbinding met de server onderbroken."
inMb: "in megabytes" inMb: "in megabytes"
pinnedNotes: "Vastgemaakte notitie"
userList: "Lijsten" userList: "Lijsten"
aboutMisskey: "Over FoundKey" aboutMisskey: "Over FoundKey"
administrator: "Beheerder" administrator: "Beheerder"
@ -316,7 +289,6 @@ newPasswordIs: "Het nieuwe wachtwoord is „{password}”."
reduceUiAnimation: "Verminder beweging in de UI" reduceUiAnimation: "Verminder beweging in de UI"
share: "Delen" share: "Delen"
notFound: "Niet gevonden" notFound: "Niet gevonden"
cacheClear: "Cache verwijderen"
smtpHost: "Server" smtpHost: "Server"
smtpUser: "Gebruikersnaam" smtpUser: "Gebruikersnaam"
smtpPass: "Wachtwoord" smtpPass: "Wachtwoord"
@ -334,10 +306,7 @@ _mfm:
mention: "Vermelding" mention: "Vermelding"
quote: "Quote" quote: "Quote"
search: "Zoeken" search: "Zoeken"
_theme: _theme: {}
keys:
mention: "Vermelding"
renote: "Herdelen"
_sfx: _sfx:
note: "Notities" note: "Notities"
notification: "Meldingen" notification: "Meldingen"

View file

@ -15,7 +15,6 @@ fetchingAsApObject: "Pobieranie z Fediwersum…"
ok: "OK" ok: "OK"
gotIt: "Rozumiem!" gotIt: "Rozumiem!"
cancel: "Anuluj" cancel: "Anuluj"
enterUsername: "Wprowadź nazwę użytkownika"
renotedBy: "Udostępniono przez {user}" renotedBy: "Udostępniono przez {user}"
noNotes: "Brak wpisów" noNotes: "Brak wpisów"
noNotifications: "Brak powiadomień" noNotifications: "Brak powiadomień"
@ -31,16 +30,12 @@ login: "Zaloguj się"
loggingIn: "Logowanie" loggingIn: "Logowanie"
logout: "Wyloguj się" logout: "Wyloguj się"
signup: "Zarejestruj się" signup: "Zarejestruj się"
uploading: "Wysyłanie"
save: "Zapisz" save: "Zapisz"
users: "Użytkownicy" users: "Użytkownicy"
addUser: "Dodaj użytkownika" addUser: "Dodaj użytkownika"
favorite: "Dodaj do ulubionych" favorite: "Dodaj do ulubionych"
favorites: "Ulubione" favorites: "Ulubione"
unfavorite: "Usuń z ulubionych" unfavorite: "Usuń z ulubionych"
favorited: "Dodano do ulubionych."
alreadyFavorited: "Już jest w ulubionych."
cantFavorite: "Nie można dodać do ulubionych."
pin: "Przypnij do profilu" pin: "Przypnij do profilu"
unpin: "Odepnij z profilu" unpin: "Odepnij z profilu"
copyContent: "Skopiuj zawartość" copyContent: "Skopiuj zawartość"
@ -52,7 +47,6 @@ deleteAndEditConfirm: "Czy na pewno chcesz usunąć ten wpis i zedytować go? Ut
addToList: "Dodaj do listy" addToList: "Dodaj do listy"
sendMessage: "Wyślij wiadomość" sendMessage: "Wyślij wiadomość"
copyUsername: "Kopiuj nazwę użytkownika" copyUsername: "Kopiuj nazwę użytkownika"
searchUser: "Wyszukiwanie użytkowników"
reply: "Odpowiedz" reply: "Odpowiedz"
loadMore: "Załaduj więcej" loadMore: "Załaduj więcej"
showMore: "Załaduj więcej" showMore: "Załaduj więcej"
@ -74,7 +68,6 @@ exportRequested: "Zażądałeś eksportu. Może to zająć trochę czasu. Po zak
\ zostanie on dodany do Twoich \"dysków\"." \ zostanie on dodany do Twoich \"dysków\"."
importRequested: "Zażądano importu. Może to zająć chwilę." importRequested: "Zażądano importu. Może to zająć chwilę."
lists: "Listy" lists: "Listy"
noLists: "Nie masz żadnych list"
note: "Utwórz wpis" note: "Utwórz wpis"
notes: "Wpisy" notes: "Wpisy"
following: "Obserwowani" following: "Obserwowani"
@ -99,21 +92,15 @@ followRequest: "Poproś o możliwość obserwacji"
followRequests: "Prośby o możliwość obserwacji" followRequests: "Prośby o możliwość obserwacji"
unfollow: "Przestań obserwować" unfollow: "Przestań obserwować"
followRequestPending: "Oczekująca prośba o możliwość obserwacji" followRequestPending: "Oczekująca prośba o możliwość obserwacji"
enterEmoji: "Wprowadź emoji"
renote: "Udostępnij" renote: "Udostępnij"
unrenote: "Cofnij udostępnienie" unrenote: "Cofnij udostępnienie"
renoted: "Udostępniono."
cantRenote: "Ten wpis nie może zostać udostępniony."
cantReRenote: "Udostępnienie nie może zostać udostępnione."
quote: "Cytuj" quote: "Cytuj"
pinnedNote: "Przypięty wpis" pinnedNote: "Przypięty wpis"
pinned: "Przypnij do profilu"
you: "Ty" you: "Ty"
clickToShow: "Kliknij, aby wyświetlić" clickToShow: "Kliknij, aby wyświetlić"
sensitive: "NSFW" sensitive: "NSFW"
add: "Dodaj" add: "Dodaj"
reaction: "Reakcja" reaction: "Reakcja"
reactionSetting: "Reakcje do pokazania w wyborniku reakcji"
reactionSettingDescription2: "Przeciągnij aby zmienić kolejność, naciśnij aby usunąć,\ reactionSettingDescription2: "Przeciągnij aby zmienić kolejność, naciśnij aby usunąć,\
\ naciśnij „+” aby dodać" \ naciśnij „+” aby dodać"
attachCancel: "Usuń załącznik" attachCancel: "Usuń załącznik"
@ -138,10 +125,7 @@ editWidgetsExit: "Gotowe"
customEmojis: "Niestandardowe emoji" customEmojis: "Niestandardowe emoji"
emoji: "Emoji" emoji: "Emoji"
emojis: "Emoji" emojis: "Emoji"
emojiName: "Nazwa emoji"
emojiUrl: "Adres URL emoji"
addEmoji: "Dodaj emoji" addEmoji: "Dodaj emoji"
settingGuide: "Proponowana konfiguracja"
cacheRemoteFiles: "Przechowuj zdalne pliki w pamięci podręcznej" cacheRemoteFiles: "Przechowuj zdalne pliki w pamięci podręcznej"
cacheRemoteFilesDescription: "Gdy ta opcja jest wyłączona, zdalne pliki są ładowane\ cacheRemoteFilesDescription: "Gdy ta opcja jest wyłączona, zdalne pliki są ładowane\
\ bezpośrednio ze zdalnych instancji. Wyłączenie the opcji zmniejszy użycie powierzchni\ \ bezpośrednio ze zdalnych instancji. Wyłączenie the opcji zmniejszy użycie powierzchni\
@ -159,7 +143,6 @@ addAccount: "Dodaj konto"
loginFailed: "Nie udało się zalogować" loginFailed: "Nie udało się zalogować"
showOnRemote: "Zobacz na zdalnej instancji" showOnRemote: "Zobacz na zdalnej instancji"
general: "Ogólne" general: "Ogólne"
wallpaper: "Tapeta"
setWallpaper: "Ustaw tapetę" setWallpaper: "Ustaw tapetę"
removeWallpaper: "Usuń tapetę" removeWallpaper: "Usuń tapetę"
youHaveNoLists: "Nie masz żadnej listy" youHaveNoLists: "Nie masz żadnej listy"
@ -170,27 +153,19 @@ selectUser: "Wybierz użytkownika"
recipient: "Odbiorca" recipient: "Odbiorca"
annotation: "Komentarze" annotation: "Komentarze"
federation: "Federacja" federation: "Federacja"
instances: "Instancja"
registeredAt: "Zarejestrowano" registeredAt: "Zarejestrowano"
latestRequestSentAt: "Ostatnie żądanie wysłano o" latestRequestSentAt: "Ostatnie żądanie wysłano o"
latestRequestReceivedAt: "Ostatnie żądanie otrzymano o" latestRequestReceivedAt: "Ostatnie żądanie otrzymano o"
latestStatus: "Najnowszy status" latestStatus: "Najnowszy status"
storageUsage: "Użycie pamięci"
charts: "Wykresy" charts: "Wykresy"
perHour: "co godzinę" perHour: "co godzinę"
perDay: "co dzień" perDay: "co dzień"
stopActivityDelivery: "Przestań przesyłać aktywności" stopActivityDelivery: "Przestań przesyłać aktywności"
blockThisInstance: "Zablokuj tę instancję" blockThisInstance: "Zablokuj tę instancję"
operations: "Działania"
software: "Oprogramowanie" software: "Oprogramowanie"
version: "Wersja" version: "Wersja"
metadata: "Metadane"
withNFiles: "{n} plik(i)" withNFiles: "{n} plik(i)"
monitor: "Monitor"
jobQueue: "Kolejka zadań" jobQueue: "Kolejka zadań"
cpuAndMemory: "CPU i pamięć"
network: "Sieć"
disk: "Dysk"
instanceInfo: "Informacje o instancji" instanceInfo: "Informacje o instancji"
statistics: "Statystyki" statistics: "Statystyki"
clearQueue: "Wyczyść kolejkę" clearQueue: "Wyczyść kolejkę"
@ -224,9 +199,6 @@ all: "Wszystkie"
subscribing: "Subskrybowanie" subscribing: "Subskrybowanie"
publishing: "Publikowanie" publishing: "Publikowanie"
notResponding: "Nie odpowiada" notResponding: "Nie odpowiada"
instanceFollowing: "Obserwowani na instancji"
instanceFollowers: "Obserwujący na instancji"
instanceUsers: "Użytkownicy tej instancji"
changePassword: "Zmień hasło" changePassword: "Zmień hasło"
security: "Bezpieczeństwo" security: "Bezpieczeństwo"
retypedNotMatch: "Wejście nie zgadza się." retypedNotMatch: "Wejście nie zgadza się."
@ -242,7 +214,6 @@ lookup: "Zapytania"
announcements: "Ogłoszenia" announcements: "Ogłoszenia"
imageUrl: "Adres URL obrazka" imageUrl: "Adres URL obrazka"
remove: "Usuń" remove: "Usuń"
removed: "Pomyślnie usunięto"
removeAreYouSure: "Czy na pewno chcesz usunąć „{x}”?" removeAreYouSure: "Czy na pewno chcesz usunąć „{x}”?"
deleteAreYouSure: "Czy na pewno chcesz usunąć „{x}”?" deleteAreYouSure: "Czy na pewno chcesz usunąć „{x}”?"
resetAreYouSure: "Czy na pewno chcesz zresetować?" resetAreYouSure: "Czy na pewno chcesz zresetować?"
@ -281,7 +252,6 @@ lightThemes: "Jasny motyw"
darkThemes: "Ciemny motyw" darkThemes: "Ciemny motyw"
syncDeviceDarkMode: "Synchronizuj ciemny motyw z ustawieniami urządzenia" syncDeviceDarkMode: "Synchronizuj ciemny motyw z ustawieniami urządzenia"
drive: "Dysk" drive: "Dysk"
fileName: "Nazwa pliku"
selectFile: "Wybierz plik" selectFile: "Wybierz plik"
selectFiles: "Wybierz pliki" selectFiles: "Wybierz pliki"
selectFolder: "Wybierz folder" selectFolder: "Wybierz folder"
@ -335,7 +305,6 @@ enableLocalTimeline: "Włącz lokalną oś czasu"
enableGlobalTimeline: "Włącz globalną oś czasu" enableGlobalTimeline: "Włącz globalną oś czasu"
disablingTimelinesInfo: "Administratorzy i moderatorzy będą zawsze mieć dostęp do\ disablingTimelinesInfo: "Administratorzy i moderatorzy będą zawsze mieć dostęp do\
\ wszystkich osi czasu, nawet gdy są one wyłączone." \ wszystkich osi czasu, nawet gdy są one wyłączone."
registration: "Zarejestruj się"
enableRegistration: "Włącz rejestrację nowych użytkowników" enableRegistration: "Włącz rejestrację nowych użytkowników"
invite: "Zaproś" invite: "Zaproś"
driveCapacityPerLocalAccount: "Powierzchnia dyskowa na lokalnego użytkownika" driveCapacityPerLocalAccount: "Powierzchnia dyskowa na lokalnego użytkownika"
@ -344,25 +313,13 @@ inMb: "W megabajtach"
iconUrl: "Adres URL ikony" iconUrl: "Adres URL ikony"
bannerUrl: "Adres URL banera" bannerUrl: "Adres URL banera"
backgroundImageUrl: "Adres URL tła" backgroundImageUrl: "Adres URL tła"
basicInfo: "Podstawowe informacje"
pinnedUsers: "Przypięty użytkownik" pinnedUsers: "Przypięty użytkownik"
pinnedUsersDescription: "Wypisz po jednej nazwie użytkownika w wierszu. Podani użytkownicy\ pinnedUsersDescription: "Wypisz po jednej nazwie użytkownika w wierszu. Podani użytkownicy\
\ zostaną przypięci pod kartą „Eksploruj”." \ zostaną przypięci pod kartą „Eksploruj”."
pinnedPages: "Przypięte strony"
pinnedPagesDescription: "Wprowadź ścieżki stron które chcesz przypiąć na głównej stronie\
\ instancji, oddzielone znakiem nowego wiersza."
pinnedClipId: "ID przypiętego klipu"
pinnedNotes: "Przypięty wpis"
hcaptcha: "hCaptcha"
enableHcaptcha: "Włącz hCaptcha"
hcaptchaSiteKey: "Klucz strony" hcaptchaSiteKey: "Klucz strony"
hcaptchaSecretKey: "Tajny klucz" hcaptchaSecretKey: "Tajny klucz"
recaptcha: "reCAPTCHA"
enableRecaptcha: "Włącz reCAPTCHA"
recaptchaSiteKey: "Klucz strony" recaptchaSiteKey: "Klucz strony"
recaptchaSecretKey: "Tajny klucz" recaptchaSecretKey: "Tajny klucz"
avoidMultiCaptchaConfirm: "Używanie wielu Captchy może spowodować zakłócenia. Czy\
\ chcesz wyłączyć inną Captchę? Możesz zostawić wiele jednocześnie, klikając Anuluj."
antennas: "Anteny" antennas: "Anteny"
manageAntennas: "Zarządzaj Antenami" manageAntennas: "Zarządzaj Antenami"
name: "Nazwa" name: "Nazwa"
@ -373,7 +330,6 @@ antennaKeywordsDescription: "Oddziel spacjami dla warunku AND, albo wymuś konie
\ dla warunku OR" \ dla warunku OR"
notifyAntenna: "Powiadamiaj o nowych wpisach" notifyAntenna: "Powiadamiaj o nowych wpisach"
withFileAntenna: "Filtruj tylko wpisy z załączonym plikiem" withFileAntenna: "Filtruj tylko wpisy z załączonym plikiem"
enableServiceworker: "Włącz ServiceWorker"
antennaUsersDescription: "Wypisz po jednej nazwie użytkownika w linii" antennaUsersDescription: "Wypisz po jednej nazwie użytkownika w linii"
caseSensitive: "Wielkość liter ma znaczenie" caseSensitive: "Wielkość liter ma znaczenie"
withReplies: "Uwzględnij odpowiedzi" withReplies: "Uwzględnij odpowiedzi"
@ -388,11 +344,8 @@ popularUsers: "Popularni użytkownicy"
recentlyUpdatedUsers: "Ostatnio aktywni użytkownicy" recentlyUpdatedUsers: "Ostatnio aktywni użytkownicy"
recentlyRegisteredUsers: "Ostatnio zarejestrowani użytkownicy" recentlyRegisteredUsers: "Ostatnio zarejestrowani użytkownicy"
recentlyDiscoveredUsers: "Ostatnio odkryci użytkownicy" recentlyDiscoveredUsers: "Ostatnio odkryci użytkownicy"
exploreUsersCount: "Jest {count} użytkowników"
exploreFediverse: "Eksploruj Fediwersum"
popularTags: "Tagi na czasie" popularTags: "Tagi na czasie"
userList: "Listy" userList: "Listy"
about: "Informacje"
aboutMisskey: "O FoundKey" aboutMisskey: "O FoundKey"
administrator: "Admin" administrator: "Admin"
token: "Token" token: "Token"
@ -412,7 +365,6 @@ share: "Udostępnij"
notFound: "Nie znaleziono" notFound: "Nie znaleziono"
notFoundDescription: "Nie ma strony odpowiadającej określonemu adresowi URL." notFoundDescription: "Nie ma strony odpowiadającej określonemu adresowi URL."
uploadFolder: "Domyślne położenie wysłanych" uploadFolder: "Domyślne położenie wysłanych"
cacheClear: "Wyczyść pamięć podręczną"
markAsReadAllNotifications: "Oznacz wszystkie powiadomienia jako przeczytane" markAsReadAllNotifications: "Oznacz wszystkie powiadomienia jako przeczytane"
markAsReadAllUnreadNotes: "Oznacz wszystkie wpisy jako przeczytane" markAsReadAllUnreadNotes: "Oznacz wszystkie wpisy jako przeczytane"
markAsReadAllTalkMessages: "Oznacz wszystkie wiadomości jako przeczytane" markAsReadAllTalkMessages: "Oznacz wszystkie wiadomości jako przeczytane"
@ -443,7 +395,6 @@ noMessagesYet: "Nie napisano jeszcze wiadomości"
newMessageExists: "Masz nową wiadomość" newMessageExists: "Masz nową wiadomość"
onlyOneFileCanBeAttached: "Możesz załączyć tylko jeden plik do wiadomości" onlyOneFileCanBeAttached: "Możesz załączyć tylko jeden plik do wiadomości"
signinRequired: "Proszę się zalogować" signinRequired: "Proszę się zalogować"
invitations: "Zaproś"
invitationCode: "Kod zaproszenia" invitationCode: "Kod zaproszenia"
checking: "Sprawdzam" checking: "Sprawdzam"
available: "Dostępna" available: "Dostępna"
@ -464,7 +415,6 @@ or: "Lub"
language: "Język" language: "Język"
uiLanguage: "Język wyświetlania UI" uiLanguage: "Język wyświetlania UI"
groupInvited: "Zaproszony(-a) do grupy" groupInvited: "Zaproszony(-a) do grupy"
aboutX: "O {x}"
useOsNativeEmojis: "Używaj natywnych Emoji systemu" useOsNativeEmojis: "Używaj natywnych Emoji systemu"
youHaveNoGroups: "Nie masz żadnych grup" youHaveNoGroups: "Nie masz żadnych grup"
joinOrCreateGroup: "Uzyskaj zaproszenie do dołączenia do grupy lub utwórz własną grupę." joinOrCreateGroup: "Uzyskaj zaproszenie do dołączenia do grupy lub utwórz własną grupę."
@ -473,24 +423,17 @@ signinHistory: "Historia logowania"
disableAnimatedMfm: "Wyłącz MFM z animacją" disableAnimatedMfm: "Wyłącz MFM z animacją"
category: "Kategoria" category: "Kategoria"
tags: "Tagi" tags: "Tagi"
docSource: "Źródło tego dokumentu"
createAccount: "Utwórz konto" createAccount: "Utwórz konto"
existingAccount: "Istniejące konto" existingAccount: "Istniejące konto"
regenerate: "Wygeneruj ponownie"
fontSize: "Rozmiar czcionki" fontSize: "Rozmiar czcionki"
noFollowRequests: "Nie masz żadnych oczekujących próśb o możliwość obserwacji" noFollowRequests: "Nie masz żadnych oczekujących próśb o możliwość obserwacji"
openImageInNewTab: "Otwórz obraz w nowej karcie" openImageInNewTab: "Otwórz obraz w nowej karcie"
dashboard: "Kokpit" dashboard: "Kokpit"
local: "Lokalne" local: "Lokalne"
remote: "Zdalny" remote: "Zdalny"
total: "Łącznie"
weekOverWeekChanges: "Cotygodniowo"
dayOverDayChanges: "Codziennie" dayOverDayChanges: "Codziennie"
appearance: "Wygląd" appearance: "Wygląd"
clientSettings: "Ustawienia klienta" clientSettings: "Ustawienia klienta"
accountSettings: "Ustawienia konta"
numberOfDays: "Liczba dni"
hideThisNote: "Ukryj ten wpis"
showFeaturedNotesInTimeline: "Pokazuj wyróżnione wpisy w osi czasu" showFeaturedNotesInTimeline: "Pokazuj wyróżnione wpisy w osi czasu"
objectStorage: "Pamięć obiektowa" objectStorage: "Pamięć obiektowa"
useObjectStorage: "Używaj pamięci obiektowej" useObjectStorage: "Używaj pamięci obiektowej"
@ -512,8 +455,6 @@ objectStorageUseSSLDesc: "Wyłącz, jeżeli nie zamierzasz używać HTTPS dla po
objectStorageUseProxy: "Połącz przez proxy" objectStorageUseProxy: "Połącz przez proxy"
objectStorageUseProxyDesc: "Wyłącz, jeżeli nie zamierzasz używać proxy dla połączenia\ objectStorageUseProxyDesc: "Wyłącz, jeżeli nie zamierzasz używać proxy dla połączenia\
\ z pamięcią blokową" \ z pamięcią blokową"
serverLogs: "Dziennik zdarzeń"
deleteAll: "Usuń wszystkie"
showFixedPostForm: "Wyświetlaj formularz tworzenia wpisu w górnej części osi czasu" showFixedPostForm: "Wyświetlaj formularz tworzenia wpisu w górnej części osi czasu"
newNoteRecived: "Masz nowy wpis" newNoteRecived: "Masz nowy wpis"
sounds: "Dźwięk" sounds: "Dźwięk"
@ -524,7 +465,6 @@ popout: "Popout"
volume: "Głośność" volume: "Głośność"
masterVolume: "Głośność główna" masterVolume: "Głośność główna"
details: "Szczegóły" details: "Szczegóły"
chooseEmoji: "Wybierz emoji"
unableToProcess: "Nie udało się dokończyć działania." unableToProcess: "Nie udało się dokończyć działania."
recentUsed: "Ostatnio używane" recentUsed: "Ostatnio używane"
install: "Zainstaluj" install: "Zainstaluj"
@ -541,9 +481,7 @@ scratchpad: "Brudnopis"
scratchpadDescription: "Brudnopis zawiera eksperymentalne środowisko dla AiScript.\ scratchpadDescription: "Brudnopis zawiera eksperymentalne środowisko dla AiScript.\
\ Możesz pisać, wykonywać i sprawdzać wyniki w interakcji z FoundKey." \ Możesz pisać, wykonywać i sprawdzać wyniki w interakcji z FoundKey."
output: "Wyjście" output: "Wyjście"
script: "Skrypt"
updateRemoteUser: "Aktualizuj zdalne dane o użytkowniku" updateRemoteUser: "Aktualizuj zdalne dane o użytkowniku"
deleteAllFiles: "Usuń wszystkie pliki"
deleteAllFilesConfirm: "Czy na pewno chcesz usunąć wszystkie pliki?" deleteAllFilesConfirm: "Czy na pewno chcesz usunąć wszystkie pliki?"
removeAllFollowingDescription: "Przestań obserwować wszystkie konta z {host}. Wykonaj\ removeAllFollowingDescription: "Przestań obserwować wszystkie konta z {host}. Wykonaj\
\ to, jeżeli instancja już nie istnieje." \ to, jeżeli instancja już nie istnieje."
@ -554,10 +492,7 @@ addItem: "Dodaj element"
relays: "Przekaźniki" relays: "Przekaźniki"
addRelay: "Dodaj przekaźnik" addRelay: "Dodaj przekaźnik"
inboxUrl: "Adres URL skrzynki nadawczej" inboxUrl: "Adres URL skrzynki nadawczej"
addedRelays: "Dodane przekaźniki"
serviceworkerInfo: "Musi być włączone dla powiadomień push."
deletedNote: "Usunięty wpis" deletedNote: "Usunięty wpis"
invisibleNote: "Niewidzialny wpis"
enableInfiniteScroll: "Włącz nieskończone przewijanie" enableInfiniteScroll: "Włącz nieskończone przewijanie"
visibility: "Widoczność" visibility: "Widoczność"
poll: "Ankieta" poll: "Ankieta"
@ -567,14 +502,12 @@ disablePlayer: "Zamknij odtwarzacz wideo"
themeEditor: "Edytor motywu" themeEditor: "Edytor motywu"
description: "Opis" description: "Opis"
describeFile: "dodaj podpis" describeFile: "dodaj podpis"
enterFileDescription: "Wprowadź napis"
author: "Autor" author: "Autor"
leaveConfirm: "Są niezapisane zmiany. Czy chcesz je odrzucić?" leaveConfirm: "Są niezapisane zmiany. Czy chcesz je odrzucić?"
manage: "Zarządzanie" manage: "Zarządzanie"
plugins: "Wtyczki" plugins: "Wtyczki"
deck: "Tablica" deck: "Tablica"
useBlurEffectForModal: "Używaj efektu rozmycia w modalach" useBlurEffectForModal: "Używaj efektu rozmycia w modalach"
useFullReactionPicker: "Używaj pełnowymiarowego wybornika reakcji"
width: "Szerokość" width: "Szerokość"
height: "Wysokość" height: "Wysokość"
large: "Duże" large: "Duże"
@ -587,7 +520,6 @@ disableAll: "Wyłącz wszystko"
tokenRequested: "Przydziel dostęp do konta" tokenRequested: "Przydziel dostęp do konta"
pluginTokenRequestedDescription: "Ta wtyczka będzie mogła korzystać z ustawionych\ pluginTokenRequestedDescription: "Ta wtyczka będzie mogła korzystać z ustawionych\
\ tu uprawnień." \ tu uprawnień."
notificationType: "Rodzaj powiadomień"
edit: "Edytuj" edit: "Edytuj"
useStarForReactionFallback: "Użyj ★ jako zapasowego emoji, gdy emoji reakcji jest\ useStarForReactionFallback: "Użyj ★ jako zapasowego emoji, gdy emoji reakcji jest\
\ nieznane" \ nieznane"
@ -611,10 +543,7 @@ userSaysSomething: "{name} powiedział(-a) coś"
makeActive: "Aktywuj" makeActive: "Aktywuj"
display: "Wyświetlanie" display: "Wyświetlanie"
copy: "Kopiuj" copy: "Kopiuj"
metrics: "Pomiary"
overview: "Przegląd" overview: "Przegląd"
logs: "Dzienniki"
delayed: "Opóźnione"
database: "Baza danych" database: "Baza danych"
channel: "Kanały" channel: "Kanały"
create: "Utwórz" create: "Utwórz"
@ -630,7 +559,6 @@ regenerateLoginTokenDescription: "Regeneruje token używany wewnętrznie podczas
setMultipleBySeparatingWithSpace: "Możesz ustawić wiele, oddzielając je spacjami." setMultipleBySeparatingWithSpace: "Możesz ustawić wiele, oddzielając je spacjami."
fileIdOrUrl: "ID pliku albo URL" fileIdOrUrl: "ID pliku albo URL"
behavior: "Zachowanie" behavior: "Zachowanie"
sample: "Przykład"
abuseReports: "Zgłoszenia" abuseReports: "Zgłoszenia"
reportAbuse: "Zgłoś" reportAbuse: "Zgłoś"
reportAbuseOf: "Zgłoś {name}" reportAbuseOf: "Zgłoś {name}"
@ -641,12 +569,8 @@ reporterOrigin: "Pochodzenie zgłaszającego"
send: "Wyślij" send: "Wyślij"
abuseMarkAsResolved: "Oznacz zgłoszenie jako rozwiązane" abuseMarkAsResolved: "Oznacz zgłoszenie jako rozwiązane"
openInNewTab: "Otwórz w nowej karcie" openInNewTab: "Otwórz w nowej karcie"
openInSideView: "Otwórz w bocznym widoku"
defaultNavigationBehaviour: "Domyślne zachowanie nawigacji" defaultNavigationBehaviour: "Domyślne zachowanie nawigacji"
editTheseSettingsMayBreakAccount: "Edycja tych ustawień może uszkodzić Twoje konto."
instanceTicker: "Informacje o wpisach instancji" instanceTicker: "Informacje o wpisach instancji"
waitingFor: "Oczekiwanie na {x}"
random: "Losowe"
system: "System" system: "System"
switchUi: "Przełącz interfejs użytkownika" switchUi: "Przełącz interfejs użytkownika"
desktop: "Pulpit" desktop: "Pulpit"
@ -683,15 +607,12 @@ loadRawImages: "Wyświetlaj zdjęcia w załącznikach w całości zamiast miniat
disableShowingAnimatedImages: "Nie odtwarzaj animowanych obrazów" disableShowingAnimatedImages: "Nie odtwarzaj animowanych obrazów"
verificationEmailSent: "Wiadomość weryfikacyjna została wysłana. Odwiedź uwzględniony\ verificationEmailSent: "Wiadomość weryfikacyjna została wysłana. Odwiedź uwzględniony\
\ odnośnik, aby ukończyć weryfikację." \ odnośnik, aby ukończyć weryfikację."
notSet: "Nie ustawiono"
emailVerified: "Adres e-mail został potwierdzony" emailVerified: "Adres e-mail został potwierdzony"
noteFavoritesCount: "Liczba polubionych wpisów" noteFavoritesCount: "Liczba polubionych wpisów"
pageLikesCount: "Liczba otrzymanych polubień stron" pageLikesCount: "Liczba otrzymanych polubień stron"
pageLikedCount: "Liczba polubionych stron" pageLikedCount: "Liczba polubionych stron"
contact: "Kontakt" contact: "Kontakt"
useSystemFont: "Używaj domyślnej czcionki systemu" useSystemFont: "Używaj domyślnej czcionki systemu"
experimentalFeatures: "Eksperymentalne funkcje"
developer: "Programista"
makeExplorable: "Pokazuj konto na stronie „Eksploruj”" makeExplorable: "Pokazuj konto na stronie „Eksploruj”"
makeExplorableDescription: "Jeżeli wyłączysz tę opcję, Twoje konto nie będzie wyświetlać\ makeExplorableDescription: "Jeżeli wyłączysz tę opcję, Twoje konto nie będzie wyświetlać\
\ się w sekcji „Eksploruj”." \ się w sekcji „Eksploruj”."
@ -704,28 +625,16 @@ narrow: "Wąskie"
reloadToApplySetting: "To ustawienie zostanie zastosowane po odświeżeniu strony. Chcesz\ reloadToApplySetting: "To ustawienie zostanie zastosowane po odświeżeniu strony. Chcesz\
\ odświeżyć?" \ odświeżyć?"
needReloadToApply: "To ustawienie zostanie zastosowane po odświeżeniu strony" needReloadToApply: "To ustawienie zostanie zastosowane po odświeżeniu strony"
showTitlebar: "Pokazuj pasek tytułowy"
clearCache: "Wyczyść pamięć podręczną" clearCache: "Wyczyść pamięć podręczną"
onlineUsersCount: "{n} osób jest online" onlineUsersCount: "{n} osób jest online"
nUsers: "{n} użytkowników"
nNotes: "{n} wpisów"
myTheme: "Mój motyw"
backgroundColor: "Tło" backgroundColor: "Tło"
accentColor: "Akcent" accentColor: "Akcent"
textColor: "Tekst" textColor: "Tekst"
saveAs: "Zapisz jako…" saveAs: "Zapisz jako…"
advanced: "Zaawansowane"
value: "Wartość"
createdAt: "Utworzono" createdAt: "Utworzono"
updatedAt: "Zaktualizowano" updatedAt: "Zaktualizowano"
saveConfirm: "Zapisać zmiany?"
deleteConfirm: "Na pewno usunąć?" deleteConfirm: "Na pewno usunąć?"
invalidValue: "Nieprawidłowa wartość."
registry: "Rejestr"
closeAccount: "Zamknij konto" closeAccount: "Zamknij konto"
currentVersion: "Bieżąca wersja"
latestVersion: "Najnowsza wersja"
youAreRunningUpToDateClient: "Korzystasz z najnowszej wersji klienta."
newVersionOfClientAvailable: "Nowsza wersja klienta jest dostępna." newVersionOfClientAvailable: "Nowsza wersja klienta jest dostępna."
usageAmount: "Użycie" usageAmount: "Użycie"
capacity: "Pojemność" capacity: "Pojemność"
@ -735,11 +644,9 @@ apply: "Zastosuj"
receiveAnnouncementFromInstance: "Otrzymuj powiadomienia e-mail z tej instancji" receiveAnnouncementFromInstance: "Otrzymuj powiadomienia e-mail z tej instancji"
emailNotification: "Powiadomienia e-mail" emailNotification: "Powiadomienia e-mail"
publish: "Publikuj" publish: "Publikuj"
inChannelSearch: "Szukaj na kanale"
useReactionPickerForContextMenu: "Otwórz wybornik reakcji prawym kliknięciem" useReactionPickerForContextMenu: "Otwórz wybornik reakcji prawym kliknięciem"
typingUsers: "{users} pisze(-ą)..." typingUsers: "{users} pisze(-ą)..."
jumpToSpecifiedDate: "Przejdź do określonej daty" jumpToSpecifiedDate: "Przejdź do określonej daty"
showingPastTimeline: "Obecnie wyświetla starą oś czasu"
clear: "Wróć" clear: "Wróć"
markAllAsRead: "Oznacz wszystkie jako przeczytane" markAllAsRead: "Oznacz wszystkie jako przeczytane"
goBack: "Wróć" goBack: "Wróć"
@ -754,7 +661,6 @@ notSpecifiedMentionWarning: "Ten wpis zawiera wzmianki o użytkownikach niezawar
info: "Informacje" info: "Informacje"
userInfo: "Informacje o użykowniku" userInfo: "Informacje o użykowniku"
unknown: "Nieznane" unknown: "Nieznane"
onlineStatus: "Status online"
hideOnlineStatus: "Ukryj status online" hideOnlineStatus: "Ukryj status online"
hideOnlineStatusDescription: "Ukrywanie statusu online ogranicza wygody niektórych\ hideOnlineStatusDescription: "Ukrywanie statusu online ogranicza wygody niektórych\
\ funkcji, tj. wyszukiwanie" \ funkcji, tj. wyszukiwanie"
@ -780,31 +686,19 @@ gallery: "Galeria"
recentPosts: "Ostatnie wpisy" recentPosts: "Ostatnie wpisy"
popularPosts: "Popularne wpisy" popularPosts: "Popularne wpisy"
shareWithNote: "Udostępnij z wpisem" shareWithNote: "Udostępnij z wpisem"
expiration: "Ankieta kończy się"
memo: "Notatki"
priority: "Priorytet"
high: "Wysoki"
middle: "Średnie"
low: "Niski"
emailNotConfiguredWarning: "Nie podano adresu e-mail" emailNotConfiguredWarning: "Nie podano adresu e-mail"
ratio: "Stosunek" ratio: "Stosunek"
previewNoteText: "Pokaż podgląd" previewNoteText: "Pokaż podgląd"
customCss: "Własny CSS" customCss: "Własny CSS"
customCssWarn: "Używaj tego ustawienia tylko wtedy, gdy wiesz co ono robi. Nieprawidłowe\ customCssWarn: "Używaj tego ustawienia tylko wtedy, gdy wiesz co ono robi. Nieprawidłowe\
\ wpisy mogą spowodować, że klient przestanie działać poprawnie." \ wpisy mogą spowodować, że klient przestanie działać poprawnie."
global: "Globalna"
squareAvatars: "Wyświetlaj kwadratowe awatary" squareAvatars: "Wyświetlaj kwadratowe awatary"
sent: "Wyślij"
received: "Otrzymane"
hashtags: "Hashtag" hashtags: "Hashtag"
pubSub: "Konta Pub/Sub" pubSub: "Konta Pub/Sub"
hide: "Ukryj" hide: "Ukryj"
indefinitely: "Nigdy" indefinitely: "Nigdy"
_ffVisibility: _ffVisibility:
public: "Publikuj" public: "Publikuj"
_ad:
back: "Wróć"
reduceFrequencyOfThisAd: "Pokazuj tę reklamę rzadziej"
_forgotPassword: _forgotPassword:
ifNoEmail: "Jeżeli nie podano adresu e-mail podczas rejestracji, skontaktuj się\ ifNoEmail: "Jeżeli nie podano adresu e-mail podczas rejestracji, skontaktuj się\
\ z administratorem zamiast tego." \ z administratorem zamiast tego."
@ -823,7 +717,6 @@ _email:
_plugin: _plugin:
install: "Zainstaluj wtyczki" install: "Zainstaluj wtyczki"
installWarn: "Nie instaluj niezaufanych wtyczek." installWarn: "Nie instaluj niezaufanych wtyczek."
manage: "Zarządzanie wtyczkami"
_registry: _registry:
scope: "Zakres" scope: "Zakres"
key: "Klucz" key: "Klucz"
@ -832,10 +725,8 @@ _registry:
createKey: "Utwórz klucz" createKey: "Utwórz klucz"
_aboutMisskey: _aboutMisskey:
about: "FoundKey jest oprogramowanie open source rozwijanym przez syuilo od 2014." about: "FoundKey jest oprogramowanie open source rozwijanym przez syuilo od 2014."
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 FoundKey"
_nsfw: _nsfw:
respect: "Ukrywaj media NSFW" respect: "Ukrywaj media NSFW"
ignore: "Nie ukrywaj mediów NSFW" ignore: "Nie ukrywaj mediów NSFW"
@ -919,69 +810,6 @@ _theme:
alreadyInstalled: "Motyw jest już zainstalowany" alreadyInstalled: "Motyw jest już zainstalowany"
invalid: "Format motywu jest nieprawidłowy." invalid: "Format motywu jest nieprawidłowy."
make: "Utwórz motyw" make: "Utwórz motyw"
base: "Podstawowy"
addConstant: "Dodaj stałą"
constant: "Stała"
defaultValue: "Domyślna wartość"
color: "Kolor"
refProp: "Nawiąż do właściwości"
refConst: "Nawiąż do stałej"
key: "Klucz"
func: "Funkcje"
funcKind: "Rodzaj funkcji"
argument: "Argument"
basedProp: "Nawiązana właściwość"
alpha: "Przezroczystość"
darken: "Ściemnij"
lighten: "Rozjaśnij"
inputConstantName: "Wprowadź nazwę stałej"
importInfo: "Jeżeli wprowadzisz tu kod motywu, możesz zaimportować go w edytorze\
\ motywu"
deleteConstantConfirm: "Czy na pewno chcesz usunąć stała {const}?"
keys:
accent: "Akcent"
bg: "Tło"
fg: "Tekst"
focus: "Skupienie"
indicator: "Wskaźnik"
panel: "Panel"
shadow: "Cień"
header: "Nagłówek"
navBg: "Tło paska bocznego"
navFg: "Tekst paska bocznego"
navHoverFg: "Tekst paska bocznego (zbliżenie)"
navActive: "Tekst paska bocznego (aktywny)"
navIndicator: "Wskaźnik paska bocznego"
link: "Odnośnik"
hashtag: "Hashtag"
mention: "Wspomnij"
mentionMe: "Wspomnienia (ja)"
renote: "Udostępnij"
modalBg: "Tło modalu"
divider: "Rozdzielacz"
scrollbarHandle: "Uchwyt paska przewijania"
scrollbarHandleHover: "Uchwyt paska przewijania (po najechaniu)"
dateLabelFg: "Tekst z datą"
infoBg: "Tło informacji"
infoFg: "Tekst informacji"
infoWarnBg: "Tło ostrzeżenia"
infoWarnFg: "Tekst ostrzeżenia"
cwBg: "Tło CW"
cwFg: "Tekst CW"
cwHoverBg: "Tło CW (po najechaniu)"
toastBg: "Tło powiadomień"
toastFg: "Tekst powiadomień"
buttonBg: "Tło przycisku"
buttonHoverBg: "Tło przycisku (po najechaniu)"
inputBorder: "Obramowanie pola wejścia"
listItemHoverBg: "Tło elementu listy (po najechaniu)"
driveFolderBg: "Tło folderu na dysku"
wallpaperOverlay: "Nakładka tapety"
badge: "Odznaka"
messageBg: "Tło czatu"
accentDarken: "Akcent (ciemniejszy)"
accentLighten: "Akcent (jaśniejszy)"
fgHighlighted: "Wyróżniony tekst"
_sfx: _sfx:
note: "Wpisy" note: "Wpisy"
noteMy: "Mój wpis" noteMy: "Mój wpis"
@ -1183,7 +1011,6 @@ _relayStatus:
accepted: "Zaakceptowano" accepted: "Zaakceptowano"
rejected: "Odrzucono" rejected: "Odrzucono"
_notification: _notification:
fileUploaded: "Pomyślnie wysłano plik"
youGotMention: "{name} wspomniał(a) o Tobie" youGotMention: "{name} wspomniał(a) o Tobie"
youGotReply: "{name} odpowiedział(a) Tobie" youGotReply: "{name} odpowiedział(a) Tobie"
youGotQuote: "{name} zacytował(a) Ciebie" youGotQuote: "{name} zacytował(a) Ciebie"
@ -1196,7 +1023,6 @@ _notification:
yourFollowRequestAccepted: "Twoja prośba o możliwość obserwacji została przyjęta" yourFollowRequestAccepted: "Twoja prośba o możliwość obserwacji została przyjęta"
youWereInvitedToGroup: "Zaproszony(-a) do grupy" youWereInvitedToGroup: "Zaproszony(-a) do grupy"
_types: _types:
all: "Wszystkie"
follow: "Obserwowani" follow: "Obserwowani"
mention: "Wspomnij" mention: "Wspomnij"
reply: "Odpowiedzi" reply: "Odpowiedzi"

View file

@ -14,7 +14,6 @@ fetchingAsApObject: "Buscando no Fediverso"
ok: "OK" ok: "OK"
gotIt: "Entendi" gotIt: "Entendi"
cancel: "Cancelar" cancel: "Cancelar"
enterUsername: "Digite o nome de usuário"
renotedBy: "Repostado por {user}" renotedBy: "Repostado por {user}"
noNotes: "Sem posts" noNotes: "Sem posts"
noNotifications: "Sem notificações" noNotifications: "Sem notificações"
@ -30,16 +29,12 @@ login: "Iniciar sessão"
loggingIn: "Iniciando sessão…" loggingIn: "Iniciando sessão…"
logout: "Sair" logout: "Sair"
signup: "Registrar-se" signup: "Registrar-se"
uploading: "Enviando…"
save: "Guardar" save: "Guardar"
users: "Usuários" users: "Usuários"
addUser: "Adicionar usuário" addUser: "Adicionar usuário"
favorite: "Favoritar" favorite: "Favoritar"
favorites: "Favoritar" favorites: "Favoritar"
unfavorite: "Remover dos favoritos" unfavorite: "Remover dos favoritos"
favorited: "Adicionado aos favoritos."
alreadyFavorited: "Já adicionado aos favoritos."
cantFavorite: "Não foi possível adicionar aos favoritos."
pin: "Afixar no perfil" pin: "Afixar no perfil"
unpin: "Desafixar do perfil" unpin: "Desafixar do perfil"
copyContent: "Copiar conteúdos" copyContent: "Copiar conteúdos"
@ -51,7 +46,6 @@ deleteAndEditConfirm: "Tens a certeza que pretendes eliminar esta nota e editá-
addToList: "Adicionar a lista" addToList: "Adicionar a lista"
sendMessage: "Enviar uma mensagem" sendMessage: "Enviar uma mensagem"
copyUsername: "Copiar nome de utilizador" copyUsername: "Copiar nome de utilizador"
searchUser: "Pesquisar utilizador"
reply: "Responder" reply: "Responder"
loadMore: "Carregar mais" loadMore: "Carregar mais"
showMore: "Ver mais" showMore: "Ver mais"
@ -73,7 +67,6 @@ exportRequested: "Pediste uma exportação. Este processo pode demorar algum tem
\ Será adicionado à tua Drive após a conclusão do processo." \ Será adicionado à tua Drive após a conclusão do processo."
importRequested: "Pediste uma importação. Este processo pode demorar algum tempo." importRequested: "Pediste uma importação. Este processo pode demorar algum tempo."
lists: "Listas" lists: "Listas"
noLists: "Não tens nenhuma lista"
note: "Post" note: "Post"
notes: "Posts" notes: "Posts"
following: "Seguindo" following: "Seguindo"
@ -100,20 +93,14 @@ followRequest: "Mandar pedido de seguimento"
followRequests: "Pedidos de seguimento" followRequests: "Pedidos de seguimento"
unfollow: "Deixar de seguir" unfollow: "Deixar de seguir"
followRequestPending: "Pedido de seguimento pendente" followRequestPending: "Pedido de seguimento pendente"
enterEmoji: "Inserir emoji"
renote: "Repostar" renote: "Repostar"
renoted: "Repostado"
cantRenote: "Não pode repostar"
cantReRenote: "Não pode repostar este repost"
quote: "Citar" quote: "Citar"
pinnedNote: "Post fixado" pinnedNote: "Post fixado"
pinned: "Afixar no perfil"
you: "Você" you: "Você"
clickToShow: "Clique para ver" clickToShow: "Clique para ver"
sensitive: "Conteúdo sensível" sensitive: "Conteúdo sensível"
add: "Adicionar" add: "Adicionar"
reaction: "Reações" reaction: "Reações"
reactionSetting: "Quais reações a mostrar no selecionador de reações"
attachCancel: "Remover anexo" attachCancel: "Remover anexo"
markAsSensitive: "Marcar como sensível" markAsSensitive: "Marcar como sensível"
unmarkAsSensitive: "Desmarcar como sensível" unmarkAsSensitive: "Desmarcar como sensível"
@ -136,19 +123,14 @@ editWidgetsExit: "Pronto"
customEmojis: "Emoji personalizado" customEmojis: "Emoji personalizado"
emoji: "Emoji" emoji: "Emoji"
emojis: "Emojis" emojis: "Emojis"
emojiName: "Nome do Emoji"
emojiUrl: "URL do Emoji"
addEmoji: "Adicionar um Emoji" addEmoji: "Adicionar um Emoji"
settingGuide: "Guia de configuração"
flagAsBot: "Marcar conta como robô" flagAsBot: "Marcar conta como robô"
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"
general: "Geral" general: "Geral"
wallpaper: "Papel de parede"
youHaveNoLists: "Não tem nenhuma lista" youHaveNoLists: "Não tem nenhuma lista"
followConfirm: "Tem certeza que quer deixar de seguir {name}?" followConfirm: "Tem certeza que quer deixar de seguir {name}?"
instances: "Instância"
registeredAt: "Registrado em" registeredAt: "Registrado em"
perHour: "por hora" perHour: "por hora"
perDay: "por dia" perDay: "por dia"
@ -160,7 +142,6 @@ darkThemes: "Tema escuro"
addFile: "Adicionar arquivo" addFile: "Adicionar arquivo"
nsfw: "Conteúdo sensível" nsfw: "Conteúdo sensível"
monthX: "mês de {month}" monthX: "mês de {month}"
pinnedNotes: "Post fixado"
userList: "Listas" userList: "Listas"
none: "Nenhum" none: "Nenhum"
output: "Resultado" output: "Resultado"
@ -175,10 +156,7 @@ _mfm:
quote: "Citar" quote: "Citar"
emoji: "Emoji personalizado" emoji: "Emoji personalizado"
search: "Pesquisar" search: "Pesquisar"
_theme: _theme: {}
keys:
mention: "Menção"
renote: "Repostar"
_sfx: _sfx:
note: "Posts" note: "Posts"
notification: "Notificações" notification: "Notificações"
@ -201,7 +179,6 @@ _relayStatus:
accepted: "Aprovado" accepted: "Aprovado"
rejected: "Recusado" rejected: "Recusado"
_notification: _notification:
fileUploaded: "Carregamento de arquivo efetuado com sucesso"
youGotMention: "{name} te mencionou" youGotMention: "{name} te mencionou"
youGotReply: "{name} te respondeu" youGotReply: "{name} te respondeu"
youGotQuote: "{name} te citou" youGotQuote: "{name} te citou"
@ -215,7 +192,6 @@ _notification:
pollEnded: "Os resultados da enquete agora estão disponíveis" pollEnded: "Os resultados da enquete agora estão disponíveis"
emptyPushNotificationMessage: "As notificações de alerta foram atualizadas" emptyPushNotificationMessage: "As notificações de alerta foram atualizadas"
_types: _types:
all: "Todos"
follow: "Seguindo" follow: "Seguindo"
mention: "Menção" mention: "Menção"
reply: "Respostas" reply: "Respostas"

View file

@ -14,7 +14,6 @@ fetchingAsApObject: "Se aduce din Fediverse..."
ok: "OK" ok: "OK"
gotIt: "Am înțeles!" gotIt: "Am înțeles!"
cancel: "Anulează" cancel: "Anulează"
enterUsername: "Introdu numele de utilizator"
renotedBy: "Re-notat de {user}" renotedBy: "Re-notat de {user}"
noNotes: "Nicio notă" noNotes: "Nicio notă"
noNotifications: "Nicio notificare" noNotifications: "Nicio notificare"
@ -30,16 +29,12 @@ login: "Autentifică-te"
loggingIn: "Se autentifică" loggingIn: "Se autentifică"
logout: "Deconectează-te" logout: "Deconectează-te"
signup: "Înregistrează-te" signup: "Înregistrează-te"
uploading: "Se încarcă"
save: "Salvează" save: "Salvează"
users: "Utilizatori" users: "Utilizatori"
addUser: "Adăugă utilizator" addUser: "Adăugă utilizator"
favorite: "Adaugă la favorite" favorite: "Adaugă la favorite"
favorites: "Favorite" favorites: "Favorite"
unfavorite: "Elimină din favorite" unfavorite: "Elimină din favorite"
favorited: "Adăugat la favorite."
alreadyFavorited: "Deja adăugat la favorite."
cantFavorite: "Nu se poate adăuga la favorite."
pin: "Fixează pe profil" pin: "Fixează pe profil"
unpin: "Anulati fixare" unpin: "Anulati fixare"
copyContent: "Copiază conținutul" copyContent: "Copiază conținutul"
@ -51,7 +46,6 @@ deleteAndEditConfirm: "Ești sigur că vrei să ștergi această notă și să o
addToList: "Adaugă în listă" addToList: "Adaugă în listă"
sendMessage: "Trimite un mesaj" sendMessage: "Trimite un mesaj"
copyUsername: "Copiază numele de utilizator" copyUsername: "Copiază numele de utilizator"
searchUser: "Caută un utilizator"
reply: "Răspunde" reply: "Răspunde"
loadMore: "Incarcă mai mult" loadMore: "Incarcă mai mult"
showMore: "Arată mai mult" showMore: "Arată mai mult"
@ -73,7 +67,6 @@ exportRequested: "Ai cerut un export. S-ar putea să ia un pic. Va fi adăugat i
\ tău odată completat." \ tău odată completat."
importRequested: "Ai cerut un import. S-ar putea să ia un pic." importRequested: "Ai cerut un import. S-ar putea să ia un pic."
lists: "Liste" lists: "Liste"
noLists: "Nu ai nici o listă"
note: "Notă" note: "Notă"
notes: "Note" notes: "Note"
following: "Urmărești" following: "Urmărești"
@ -101,21 +94,15 @@ followRequest: "Trimite cerere de urmărire"
followRequests: "Cereri de urmărire" followRequests: "Cereri de urmărire"
unfollow: "Nu mai urmări" unfollow: "Nu mai urmări"
followRequestPending: "Cerere de urmărire în așteptare" followRequestPending: "Cerere de urmărire în așteptare"
enterEmoji: "Introdu un emoji"
renote: "Re-notează" renote: "Re-notează"
unrenote: "Ia înapoi re-nota" unrenote: "Ia înapoi re-nota"
renoted: "Re-notat."
cantRenote: "Această postare nu poate fi re-notată."
cantReRenote: "O re-notă nu poate fi re-notată."
quote: "Citează" quote: "Citează"
pinnedNote: "Notă fixată" pinnedNote: "Notă fixată"
pinned: "Fixat pe profil"
you: "Tu" you: "Tu"
clickToShow: "Click pentru a afișa" clickToShow: "Click pentru a afișa"
sensitive: "NSFW" sensitive: "NSFW"
add: "Adaugă" add: "Adaugă"
reaction: "Reacție" reaction: "Reacție"
reactionSetting: "Reacții care să apară in selectorul de reacții"
reactionSettingDescription2: "Trage pentru a rearanja, apasă pe \"+\" pentru a adăuga." reactionSettingDescription2: "Trage pentru a rearanja, apasă pe \"+\" pentru a adăuga."
attachCancel: "Înlătură atașament" attachCancel: "Înlătură atașament"
markAsSensitive: "Marchează ca NSFW" markAsSensitive: "Marchează ca NSFW"
@ -139,10 +126,7 @@ editWidgetsExit: "Terminat"
customEmojis: "Emoji personalizat" customEmojis: "Emoji personalizat"
emoji: "Emoji" emoji: "Emoji"
emojis: "Emoji-uri" emojis: "Emoji-uri"
emojiName: "Numele emoji-ului"
emojiUrl: "URL-ul emoji-ului"
addEmoji: "Adaugă un emoji" addEmoji: "Adaugă un emoji"
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\ cacheRemoteFilesDescription: "Când această setare este dezactivată, fișierele externe\
\ sunt încărcate direct din instanța externă. Dezactivarea va scădea utilizarea\ \ sunt încărcate direct din instanța externă. Dezactivarea va scădea utilizarea\
@ -164,7 +148,6 @@ addAccount: "Adaugă un cont"
loginFailed: "Autentificare eșuată" loginFailed: "Autentificare eșuată"
showOnRemote: "Vezi mai multe pe instanța externă" showOnRemote: "Vezi mai multe pe instanța externă"
general: "General" general: "General"
wallpaper: "Imagine de fundal"
setWallpaper: "Setați imaginea de fundal" setWallpaper: "Setați imaginea de fundal"
removeWallpaper: "Șterge imagine de fundal" removeWallpaper: "Șterge imagine de fundal"
youHaveNoLists: "Nu ai nici o listă" youHaveNoLists: "Nu ai nici o listă"
@ -180,27 +163,19 @@ selectUser: "Selectează un utilizator"
recipient: "Destinatar" recipient: "Destinatar"
annotation: "Adnotări" annotation: "Adnotări"
federation: "Federație" federation: "Federație"
instances: "Instanțe"
registeredAt: "Înregistrat în" registeredAt: "Înregistrat în"
latestRequestSentAt: "Ultima cerere trimisă" latestRequestSentAt: "Ultima cerere trimisă"
latestRequestReceivedAt: "Ultima cerere primită" latestRequestReceivedAt: "Ultima cerere primită"
latestStatus: "Ultimul status" latestStatus: "Ultimul status"
storageUsage: "Utilizare stocare"
charts: "Diagrame" charts: "Diagrame"
perHour: "Pe oră" perHour: "Pe oră"
perDay: "Pe zi" perDay: "Pe zi"
stopActivityDelivery: "Nu mai trimite activități" stopActivityDelivery: "Nu mai trimite activități"
blockThisInstance: "Blochează această instanță" blockThisInstance: "Blochează această instanță"
operations: "Operațiuni"
software: "Software" software: "Software"
version: "Versiune" version: "Versiune"
metadata: "Metadata"
withNFiles: "{n} fișier(e)" withNFiles: "{n} fișier(e)"
monitor: "Monitor"
jobQueue: "coada de job-uri" jobQueue: "coada de job-uri"
cpuAndMemory: "CPU și memorie"
network: "Rețea"
disk: "Disk"
instanceInfo: "Informații despre instanță" instanceInfo: "Informații despre instanță"
statistics: "Statistici" statistics: "Statistici"
clearQueue: "Șterge coada" clearQueue: "Șterge coada"
@ -234,9 +209,6 @@ all: "Tot"
subscribing: "Abonare" subscribing: "Abonare"
publishing: "Publicare" publishing: "Publicare"
notResponding: "Nu răspunde" notResponding: "Nu răspunde"
instanceFollowing: "Urmărind în instanță"
instanceFollowers: "Urmăritori ai instanței"
instanceUsers: "Utilizatori ai acestei instanțe"
changePassword: "Schimbă parolă" changePassword: "Schimbă parolă"
security: "Securitate" security: "Securitate"
retypedNotMatch: "Intrările nu corespund" retypedNotMatch: "Intrările nu corespund"
@ -252,7 +224,6 @@ lookup: "Privire"
announcements: "Anunțuri" announcements: "Anunțuri"
imageUrl: "URL-ul imaginii" imageUrl: "URL-ul imaginii"
remove: "Şterge" remove: "Şterge"
removed: "Șterș cu succes"
removeAreYouSure: "Ești sigur că vrei să înlături {x}?" removeAreYouSure: "Ești sigur că vrei să înlături {x}?"
deleteAreYouSure: "Ești sigur că vrei să ștergi {x}?" deleteAreYouSure: "Ești sigur că vrei să ștergi {x}?"
resetAreYouSure: "Sigur vrei să resetezi?" resetAreYouSure: "Sigur vrei să resetezi?"
@ -294,7 +265,6 @@ lightThemes: "Teme luminoase"
darkThemes: "Teme întunecate" darkThemes: "Teme întunecate"
syncDeviceDarkMode: "Sincronizează Modul Întunecat cu setările dispozitivului" syncDeviceDarkMode: "Sincronizează Modul Întunecat cu setările dispozitivului"
drive: "Drive" drive: "Drive"
fileName: "Nume fișier"
selectFile: "Alege un fisier" selectFile: "Alege un fisier"
selectFiles: "Alege fișiere" selectFiles: "Alege fișiere"
selectFolder: "Selectează un folder" selectFolder: "Selectează un folder"
@ -348,7 +318,6 @@ enableLocalTimeline: "Activează cronologia locală"
enableGlobalTimeline: "Activeaza cronologia globală" enableGlobalTimeline: "Activeaza cronologia globală"
disablingTimelinesInfo: "Administratorii și Moderatorii vor avea mereu access la toate\ disablingTimelinesInfo: "Administratorii și Moderatorii vor avea mereu access la toate\
\ cronologiile, chiar dacă nu sunt activate." \ cronologiile, chiar dacă nu sunt activate."
registration: "Inregistrare"
enableRegistration: "Activează înregistrările pentru utilizatori noi" enableRegistration: "Activează înregistrările pentru utilizatori noi"
invite: "Invită" invite: "Invită"
driveCapacityPerLocalAccount: "Capacitatea Drive-ului per utilizator local" driveCapacityPerLocalAccount: "Capacitatea Drive-ului per utilizator local"
@ -357,26 +326,13 @@ inMb: "În megabytes"
iconUrl: "URL-ul iconiței" iconUrl: "URL-ul iconiței"
bannerUrl: "URL-ul imaginii de banner" bannerUrl: "URL-ul imaginii de banner"
backgroundImageUrl: "URL-ul imaginii de fundal" backgroundImageUrl: "URL-ul imaginii de fundal"
basicInfo: "Informații de bază"
pinnedUsers: "Utilizatori fixați" pinnedUsers: "Utilizatori fixați"
pinnedUsersDescription: "Scrie utilizatorii, separați prin pauză de rând, care vor\ pinnedUsersDescription: "Scrie utilizatorii, separați prin pauză de rând, care vor\
\ fi fixați pe pagina \"Explorează\"." \ fi fixați pe pagina \"Explorează\"."
pinnedPages: "Pagini fixate"
pinnedPagesDescription: "Introdu linkurile Paginilor pe care le vrei fixate in vâruful\
\ paginii acestei instanțe, separate de pauze de rând."
pinnedClipId: "ID-ul clip-ului pe care să îl fixezi"
pinnedNotes: "Notă fixată"
hcaptcha: "hCaptcha"
enableHcaptcha: "Activează hCaptcha"
hcaptchaSiteKey: "Site key" hcaptchaSiteKey: "Site key"
hcaptchaSecretKey: "Secret key" hcaptchaSecretKey: "Secret key"
recaptcha: "reCAPTCHA"
enableRecaptcha: "Activează reCAPTCHA"
recaptchaSiteKey: "Site key" recaptchaSiteKey: "Site key"
recaptchaSecretKey: "Secret key" recaptchaSecretKey: "Secret key"
avoidMultiCaptchaConfirm: "Folosirea mai multor sisteme Captcha poate cauza interferență\
\ între acestea. Ai dori să dezactivezi alte sisteme Captcha acum active? Dacă preferi\
\ să rămână activate, apasă Anulare."
antennas: "Antene" antennas: "Antene"
manageAntennas: "Gestionează Antenele" manageAntennas: "Gestionează Antenele"
name: "Nume" name: "Nume"
@ -387,7 +343,6 @@ antennaKeywordsDescription: "Separă cu spații pentru o condiție ȘI sau cu o
\ de rând pentru o condiție SAU." \ de rând pentru o condiție SAU."
notifyAntenna: "Notifică-mă pentru note noi" notifyAntenna: "Notifică-mă pentru note noi"
withFileAntenna: "Doar note cu fișiere" withFileAntenna: "Doar note cu fișiere"
enableServiceworker: "Activează ServiceWorker"
antennaUsersDescription: "Scrie un nume de utilizator per linie" antennaUsersDescription: "Scrie un nume de utilizator per linie"
caseSensitive: "Sensibil la majuscule și minuscule" caseSensitive: "Sensibil la majuscule și minuscule"
withReplies: "Include răspunsuri" withReplies: "Include răspunsuri"
@ -402,11 +357,8 @@ popularUsers: "Utilizatori populari"
recentlyUpdatedUsers: "Utilizatori activi recent" recentlyUpdatedUsers: "Utilizatori activi recent"
recentlyRegisteredUsers: "Utilizatori ce s-au alăturat recent" recentlyRegisteredUsers: "Utilizatori ce s-au alăturat recent"
recentlyDiscoveredUsers: "Utilizatori descoperiți recent" recentlyDiscoveredUsers: "Utilizatori descoperiți recent"
exploreUsersCount: "Aici sunt {count} utilizatori"
exploreFediverse: "Explorează Fediverse-ul"
popularTags: "Taguri populare" popularTags: "Taguri populare"
userList: "Liste" userList: "Liste"
about: "Despre"
aboutMisskey: "Despre FoundKey" aboutMisskey: "Despre FoundKey"
administrator: "Administrator" administrator: "Administrator"
token: "Token" token: "Token"
@ -426,7 +378,6 @@ share: "Distribuie"
notFound: "Nu a fost găsit" notFound: "Nu a fost găsit"
notFoundDescription: "N-a fost găsită nicio pagină cu acest URL." notFoundDescription: "N-a fost găsită nicio pagină cu acest URL."
uploadFolder: "Folder implicit pentru încărcări" uploadFolder: "Folder implicit pentru încărcări"
cacheClear: "Golește cache-ul"
markAsReadAllNotifications: "Marchează toate notificările drept citit" markAsReadAllNotifications: "Marchează toate notificările drept citit"
markAsReadAllUnreadNotes: "Marchează toate notele drept citit" markAsReadAllUnreadNotes: "Marchează toate notele drept citit"
markAsReadAllTalkMessages: "Marchează toate mesajele drept citit" markAsReadAllTalkMessages: "Marchează toate mesajele drept citit"
@ -457,7 +408,6 @@ noMessagesYet: "Niciun mesaj încă"
newMessageExists: "Ai mesaje noi" newMessageExists: "Ai mesaje noi"
onlyOneFileCanBeAttached: "Poți atașa un singur fișier la un mesaj" onlyOneFileCanBeAttached: "Poți atașa un singur fișier la un mesaj"
signinRequired: "Te rog autentifică-te" signinRequired: "Te rog autentifică-te"
invitations: "Invită"
invitationCode: "Cod de invitație" invitationCode: "Cod de invitație"
checking: "Se verifică..." checking: "Se verifică..."
available: "Disponibil" available: "Disponibil"
@ -478,7 +428,6 @@ or: "Sau"
language: "Limbă" language: "Limbă"
uiLanguage: "Limba interfeței" uiLanguage: "Limba interfeței"
groupInvited: "Ai fost invitat într-un grup" groupInvited: "Ai fost invitat într-un grup"
aboutX: "Despre {x}"
useOsNativeEmojis: "Folosește emojiuri native OS-ului" useOsNativeEmojis: "Folosește emojiuri native OS-ului"
disableDrawer: "Nu folosi meniuri în stil sertar" disableDrawer: "Nu folosi meniuri în stil sertar"
youHaveNoGroups: "Nu ai niciun grup" youHaveNoGroups: "Nu ai niciun grup"
@ -486,27 +435,19 @@ joinOrCreateGroup: "Primește o invitație într-un grup sau creează unul nou."
noHistory: "Nu există istoric" noHistory: "Nu există istoric"
signinHistory: "Istoric autentificări" signinHistory: "Istoric autentificări"
disableAnimatedMfm: "Dezactivează MFM cu animații" disableAnimatedMfm: "Dezactivează MFM cu animații"
doing: "Se procesează..."
category: "Categorie" category: "Categorie"
tags: "Etichete" tags: "Etichete"
docSource: "Sursa acestui document"
createAccount: "Creează un cont" createAccount: "Creează un cont"
existingAccount: "Cont existent" existingAccount: "Cont existent"
regenerate: "Regenerează"
fontSize: "Mărimea fontului" fontSize: "Mărimea fontului"
noFollowRequests: "Nu ai nicio cerere de urmărire în așteptare" noFollowRequests: "Nu ai nicio cerere de urmărire în așteptare"
openImageInNewTab: "Deschide imaginile în taburi noi" openImageInNewTab: "Deschide imaginile în taburi noi"
dashboard: "Panou de control" dashboard: "Panou de control"
local: "Local" local: "Local"
remote: "Extern" remote: "Extern"
total: "Total"
weekOverWeekChanges: "Schimbări până săptămâna trecută"
dayOverDayChanges: "Schimbări până ieri" dayOverDayChanges: "Schimbări până ieri"
appearance: "Aspect" appearance: "Aspect"
clientSettings: "Setări client" clientSettings: "Setări client"
accountSettings: "Setări cont"
numberOfDays: "Numărul zilelor"
hideThisNote: "Ascunde această notă"
showFeaturedNotesInTimeline: "Arată notele recomandate în cronologii" showFeaturedNotesInTimeline: "Arată notele recomandate în cronologii"
objectStorage: "Object Storage" objectStorage: "Object Storage"
useObjectStorage: "Folosește Object Storage" useObjectStorage: "Folosește Object Storage"
@ -532,8 +473,6 @@ objectStorageUseProxy: "Conectează-te prin Proxy"
objectStorageUseProxyDesc: "Oprește această opțiune dacă vei nu folosi un Proxy pentru\ objectStorageUseProxyDesc: "Oprește această opțiune dacă vei nu folosi un Proxy pentru\
\ conexiunile API-ului" \ conexiunile API-ului"
objectStorageSetPublicRead: "Setează \"public-read\" pentru încărcare" objectStorageSetPublicRead: "Setează \"public-read\" pentru încărcare"
serverLogs: "Loguri server"
deleteAll: "Șterge tot"
showFixedPostForm: "Arată caseta de postare în vârful cronologie" showFixedPostForm: "Arată caseta de postare în vârful cronologie"
newNoteRecived: "Sunt note noi" newNoteRecived: "Sunt note noi"
sounds: "Sunete" sounds: "Sunete"
@ -544,7 +483,6 @@ popout: "Scoate în afară"
volume: "Volum" volume: "Volum"
masterVolume: "Volumul principal" masterVolume: "Volumul principal"
details: "Detalii" details: "Detalii"
chooseEmoji: "Alege un emoji"
unableToProcess: "Această operație nu poate fi completată" unableToProcess: "Această operație nu poate fi completată"
recentUsed: "Folosit recent" recentUsed: "Folosit recent"
install: "Instalează" install: "Instalează"
@ -562,9 +500,7 @@ scratchpadDescription: "Scratchpad-ul oferă un mediu de experimentare în AiScr
\ Poți scrie, executa și verifica rezultatele acestuia interacționând cu FoundKey\ \ Poți scrie, executa și verifica rezultatele acestuia interacționând cu FoundKey\
\ în el." \ în el."
output: "Ieșire" output: "Ieșire"
script: "Script"
updateRemoteUser: "Actualizează informațiile utilizatorului extern" updateRemoteUser: "Actualizează informațiile utilizatorului extern"
deleteAllFiles: "Șterge toate fișierele"
deleteAllFilesConfirm: "Ești sigur că vrei să ștergi toate fișierele?" deleteAllFilesConfirm: "Ești sigur că vrei să ștergi toate fișierele?"
removeAllFollowing: "Dezurmărește toți utilizatorii urmăriți" removeAllFollowing: "Dezurmărește toți utilizatorii urmăriți"
removeAllFollowingDescription: "Asta va dez-urmări toate conturile din {host}. Te\ removeAllFollowingDescription: "Asta va dez-urmări toate conturile din {host}. Te\
@ -581,10 +517,7 @@ addItem: "Adaugă element"
relays: "Relee" relays: "Relee"
addRelay: "Adaugă Releu" addRelay: "Adaugă Releu"
inboxUrl: "URL-ul inbox-ului" inboxUrl: "URL-ul inbox-ului"
addedRelays: "Relee adăugate"
serviceworkerInfo: "Trebuie să fie activat pentru notificări push."
deletedNote: "Notă ștearsă" deletedNote: "Notă ștearsă"
invisibleNote: "Note ascunse"
enableInfiniteScroll: "Încarcă mai mult automat" enableInfiniteScroll: "Încarcă mai mult automat"
visibility: "Vizibilitate" visibility: "Vizibilitate"
poll: "Sondaj" poll: "Sondaj"
@ -594,13 +527,11 @@ disablePlayer: "Închide player-ul video"
themeEditor: "Editor de teme" themeEditor: "Editor de teme"
description: "Descriere" description: "Descriere"
describeFile: "Adaugă titrări" describeFile: "Adaugă titrări"
enterFileDescription: "Introdu titrările"
author: "Autor" author: "Autor"
leaveConfirm: "Ai schimbări nesalvate. Vrei să renunți la ele?" leaveConfirm: "Ai schimbări nesalvate. Vrei să renunți la ele?"
manage: "Gestionare" manage: "Gestionare"
plugins: "Pluginuri" plugins: "Pluginuri"
deck: "Deck" deck: "Deck"
undeck: "Părăsește Deck"
useBlurEffectForModal: "Folosește efect de blur pentru modale" useBlurEffectForModal: "Folosește efect de blur pentru modale"
width: "Lăţime" width: "Lăţime"
height: "Înălţime" height: "Înălţime"
@ -614,7 +545,6 @@ disableAll: "Dezactivează tot"
tokenRequested: "Acordă acces la cont" tokenRequested: "Acordă acces la cont"
pluginTokenRequestedDescription: "Acest plugin va putea să folosească permisiunile\ pluginTokenRequestedDescription: "Acest plugin va putea să folosească permisiunile\
\ setate aici." \ setate aici."
notificationType: "Tipul notificării"
edit: "Editează" edit: "Editează"
useStarForReactionFallback: "Folosește ★ ca fallback dacă emoji-ul este necunoscut" useStarForReactionFallback: "Folosește ★ ca fallback dacă emoji-ul este necunoscut"
emailServer: "Server email" emailServer: "Server email"
@ -642,10 +572,7 @@ userSaysSomething: "{name} a spus ceva"
makeActive: "Activează" makeActive: "Activează"
display: "Arată" display: "Arată"
copy: "Copiază" copy: "Copiază"
metrics: "Metrici"
overview: "Privire de ansamblu" overview: "Privire de ansamblu"
logs: "Log-uri"
delayed: "Întârziate"
database: "Baza de date" database: "Baza de date"
channel: "Canale" channel: "Canale"
create: "Crează" create: "Crează"
@ -662,7 +589,6 @@ regenerateLoginTokenDescription: "Regenerează token-ul folosit intern în timpu
setMultipleBySeparatingWithSpace: "Separă mai multe intrări cu spații." setMultipleBySeparatingWithSpace: "Separă mai multe intrări cu spații."
fileIdOrUrl: "Introdu ID sau URL" fileIdOrUrl: "Introdu ID sau URL"
behavior: "Comportament" behavior: "Comportament"
sample: "exemplu"
abuseReports: "Rapoarte" abuseReports: "Rapoarte"
reportAbuse: "Raportează" reportAbuse: "Raportează"
reportAbuseOf: "Raportează {name}" reportAbuseOf: "Raportează {name}"
@ -677,11 +603,7 @@ forwardReportIsAnonymous: "În locul contului tău, va fi afișat un cont anonim
send: "Trimite" send: "Trimite"
abuseMarkAsResolved: "Marchează raportul ca rezolvat" abuseMarkAsResolved: "Marchează raportul ca rezolvat"
openInNewTab: "Deschide în tab nou" openInNewTab: "Deschide în tab nou"
openInSideView: "Deschide în vedere laterală"
defaultNavigationBehaviour: "Comportament de navigare implicit" defaultNavigationBehaviour: "Comportament de navigare implicit"
editTheseSettingsMayBreakAccount: "Editarea acestor setări îți pot defecta contul."
waitingFor: "Așteptând pentru {x}"
random: "Aleator"
system: "Sistem" system: "Sistem"
switchUi: "Schimbă UI" switchUi: "Schimbă UI"
desktop: "Desktop" desktop: "Desktop"
@ -689,8 +611,6 @@ clearCache: "Golește cache-ul"
info: "Despre" info: "Despre"
user: "Utilizatori" user: "Utilizatori"
administration: "Gestionare" administration: "Gestionare"
middle: "Mediu"
sent: "Trimite"
_email: _email:
_follow: _follow:
title: "te-a urmărit" title: "te-a urmărit"
@ -701,10 +621,6 @@ _mfm:
search: "Caută" search: "Caută"
_theme: _theme:
description: "Descriere" description: "Descriere"
keys:
mention: "Mențiune"
renote: "Re-notează"
divider: "Separator"
_sfx: _sfx:
note: "Note" note: "Note"
notification: "Notificări" notification: "Notificări"

View file

@ -14,7 +14,6 @@ fetchingAsApObject: "Приём с других сайтов"
ok: "Окей" ok: "Окей"
gotIt: "Ясно!" gotIt: "Ясно!"
cancel: "Отмена" cancel: "Отмена"
enterUsername: "Введите имя пользователя"
renotedBy: "{user} делится" renotedBy: "{user} делится"
noNotes: "Нет ни одной заметки" noNotes: "Нет ни одной заметки"
noNotifications: "Нет ни одного уведомления" noNotifications: "Нет ни одного уведомления"
@ -30,16 +29,12 @@ login: "Войти"
loggingIn: "Выполняется вход" loggingIn: "Выполняется вход"
logout: "Выйти" logout: "Выйти"
signup: "Регистрация" signup: "Регистрация"
uploading: "Загрузка..."
save: "Сохранить" save: "Сохранить"
users: "Пользователи" users: "Пользователи"
addUser: "Добавить пользователя" addUser: "Добавить пользователя"
favorite: "В избранное" favorite: "В избранное"
favorites: "Избранное" favorites: "Избранное"
unfavorite: "Убрать из избранного" unfavorite: "Убрать из избранного"
favorited: "Добавлено в избранное."
alreadyFavorited: "Уже есть в избранном."
cantFavorite: "Не удалось добавить в избранное."
pin: "Закрепить в профиле" pin: "Закрепить в профиле"
unpin: "Открепить от профиля" unpin: "Открепить от профиля"
copyContent: "Скопировать содержимое" copyContent: "Скопировать содержимое"
@ -51,7 +46,6 @@ deleteAndEditConfirm: "Удалить эту заметку и создать о
addToList: "Добавить в список" addToList: "Добавить в список"
sendMessage: "Отправить сообщение" sendMessage: "Отправить сообщение"
copyUsername: "Скопировать имя пользователя" copyUsername: "Скопировать имя пользователя"
searchUser: "Поиск людей"
reply: "Ответить" reply: "Ответить"
loadMore: "Показать еще" loadMore: "Показать еще"
showMore: "Показать еще" showMore: "Показать еще"
@ -72,7 +66,6 @@ exportRequested: "Вы запросили экспорт. Это может за
\ будет добавлен на «Диск»." \ будет добавлен на «Диск»."
importRequested: "Вы запросили импорт. Это может занять некоторое время." importRequested: "Вы запросили импорт. Это может занять некоторое время."
lists: "Списки" lists: "Списки"
noLists: "Нет ни одного списка"
note: "Заметка" note: "Заметка"
notes: "Заметки" notes: "Заметки"
following: "Подписки" following: "Подписки"
@ -98,21 +91,15 @@ followRequest: "Запрос на подписку"
followRequests: "Запросы на подписку" followRequests: "Запросы на подписку"
unfollow: "Отписаться" unfollow: "Отписаться"
followRequestPending: "Нерассмотренный запрос на подписку" followRequestPending: "Нерассмотренный запрос на подписку"
enterEmoji: "Введите эмодзи"
renote: "Репост" renote: "Репост"
unrenote: "Отмена репоста" unrenote: "Отмена репоста"
renoted: "Репост совершён."
cantRenote: "Это нельзя репостить."
cantReRenote: "Невозможно репостить репост."
quote: "Цитата" quote: "Цитата"
pinnedNote: "Закреплённая заметка" pinnedNote: "Закреплённая заметка"
pinned: "Закрепить в профиле"
you: "Вы" you: "Вы"
clickToShow: "Нажмите для просмотра" clickToShow: "Нажмите для просмотра"
sensitive: "Содержимое не для всех" sensitive: "Содержимое не для всех"
add: "Добавить" add: "Добавить"
reaction: "Реакции" reaction: "Реакции"
reactionSetting: "Реакции, отображаемые в палитре"
reactionSettingDescription2: "Расставляйте перетаскиванием, удаляйте нажатием, добавляйте\ reactionSettingDescription2: "Расставляйте перетаскиванием, удаляйте нажатием, добавляйте\
\ кнопкой «+»." \ кнопкой «+»."
attachCancel: "Удалить вложение" attachCancel: "Удалить вложение"
@ -137,10 +124,7 @@ editWidgetsExit: "Готово"
customEmojis: "Собственные эмодзи" customEmojis: "Собственные эмодзи"
emoji: "Эмодзи" emoji: "Эмодзи"
emojis: "Эмодзи" emojis: "Эмодзи"
emojiName: "Название эмодзи"
emojiUrl: "URL эмодзи"
addEmoji: "Добавить эмодзи" addEmoji: "Добавить эмодзи"
settingGuide: "Рекомендуемые настройки"
cacheRemoteFiles: "Кешировать внешние файлы" cacheRemoteFiles: "Кешировать внешние файлы"
cacheRemoteFilesDescription: "Когда эта настройка отключена, файлы с других сайтов\ cacheRemoteFilesDescription: "Когда эта настройка отключена, файлы с других сайтов\
\ будут загружаться прямо оттуда. Это сэкономит место на сервере, но увеличит трафик,\ \ будут загружаться прямо оттуда. Это сэкономит место на сервере, но увеличит трафик,\
@ -159,7 +143,6 @@ addAccount: "Добавить учётную запись"
loginFailed: "Неудачная попытка входа" loginFailed: "Неудачная попытка входа"
showOnRemote: "Перейти к оригиналу на сайт" showOnRemote: "Перейти к оригиналу на сайт"
general: "Общее" general: "Общее"
wallpaper: "Обои"
setWallpaper: "Установить обои" setWallpaper: "Установить обои"
removeWallpaper: "Удалить обои" removeWallpaper: "Удалить обои"
youHaveNoLists: "У вас нет ни одного списка" youHaveNoLists: "У вас нет ни одного списка"
@ -175,27 +158,19 @@ selectUser: "Выберите пользователя"
recipient: "Кому" recipient: "Кому"
annotation: "Описание" annotation: "Описание"
federation: "Федерация" federation: "Федерация"
instances: "Инстанс"
registeredAt: "Первое наблюдение" registeredAt: "Первое наблюдение"
latestRequestSentAt: "Последний отправленный запрос" latestRequestSentAt: "Последний отправленный запрос"
latestRequestReceivedAt: "Последний полученный запрос" latestRequestReceivedAt: "Последний полученный запрос"
latestStatus: "Последний статус" latestStatus: "Последний статус"
storageUsage: "Использовано"
charts: "Диаграммы" charts: "Диаграммы"
perHour: "По часам" perHour: "По часам"
perDay: "По дням" perDay: "По дням"
stopActivityDelivery: "Остановить отправку обновлений активности" stopActivityDelivery: "Остановить отправку обновлений активности"
blockThisInstance: "Блокировать этот инстанс" blockThisInstance: "Блокировать этот инстанс"
operations: "Операции"
software: "Программы" software: "Программы"
version: "Версия" version: "Версия"
metadata: "Метаданные"
withNFiles: "Файлы, {n} шт." withNFiles: "Файлы, {n} шт."
monitor: "Монитор"
jobQueue: "Очередь заданий" jobQueue: "Очередь заданий"
cpuAndMemory: "Процессор и память"
network: "Сеть"
disk: "Диск"
instanceInfo: "Информация об инстансе" instanceInfo: "Информация об инстансе"
statistics: "Статистика" statistics: "Статистика"
clearQueue: "Очистить очередь" clearQueue: "Очистить очередь"
@ -228,9 +203,6 @@ all: "Всё"
subscribing: "Подписка" subscribing: "Подписка"
publishing: "Публикация" publishing: "Публикация"
notResponding: "Нет ответа" notResponding: "Нет ответа"
instanceFollowing: "Подписанные на инстансе"
instanceFollowers: "Подписчики инстанса"
instanceUsers: "Пользователи инстанса"
changePassword: "Изменить пароль" changePassword: "Изменить пароль"
security: "Безопасность" security: "Безопасность"
retypedNotMatch: "Не совпадают" retypedNotMatch: "Не совпадают"
@ -246,7 +218,6 @@ lookup: "Запрос"
announcements: "Оповещения" announcements: "Оповещения"
imageUrl: "Ссылка на изображение" imageUrl: "Ссылка на изображение"
remove: "Удалить" remove: "Удалить"
removed: "\uFEFFУдалено"
removeAreYouSure: "Хотите удалить «{x}»?" removeAreYouSure: "Хотите удалить «{x}»?"
deleteAreYouSure: "Хотите удалить «{x}»?" deleteAreYouSure: "Хотите удалить «{x}»?"
resetAreYouSure: "На самом деле сбросить?" resetAreYouSure: "На самом деле сбросить?"
@ -288,7 +259,6 @@ lightThemes: "Светлые темы"
darkThemes: "Тёмные темы" darkThemes: "Тёмные темы"
syncDeviceDarkMode: "Синхронизировать с темным режимом устройства" syncDeviceDarkMode: "Синхронизировать с темным режимом устройства"
drive: "Диск" drive: "Диск"
fileName: "Имя файла"
selectFile: "Выберите файл" selectFile: "Выберите файл"
selectFiles: "Выберите файлы" selectFiles: "Выберите файлы"
selectFolder: "Выберите папку" selectFolder: "Выберите папку"
@ -341,7 +311,6 @@ enableLocalTimeline: "Включить локальную ленту"
enableGlobalTimeline: "Включить глобальную ленту" enableGlobalTimeline: "Включить глобальную ленту"
disablingTimelinesInfo: "У администраторов и модераторов есть доступ ко всем лентам,\ disablingTimelinesInfo: "У администраторов и модераторов есть доступ ко всем лентам,\
\ даже если они отключены." \ даже если они отключены."
registration: "Регистрация"
enableRegistration: "Разрешить регистрацию" enableRegistration: "Разрешить регистрацию"
invite: "Пригласить" invite: "Пригласить"
driveCapacityPerLocalAccount: "Объём диска на одного локального пользователя" driveCapacityPerLocalAccount: "Объём диска на одного локального пользователя"
@ -350,26 +319,13 @@ inMb: "В мегабайтах"
iconUrl: "Ссылка на аватар" iconUrl: "Ссылка на аватар"
bannerUrl: "Ссылка на изображение в шапке" bannerUrl: "Ссылка на изображение в шапке"
backgroundImageUrl: "Ссылка на фоновое изображение" backgroundImageUrl: "Ссылка на фоновое изображение"
basicInfo: "Общая информация"
pinnedUsers: "Прикреплённый пользователь" pinnedUsers: "Прикреплённый пользователь"
pinnedUsersDescription: "Перечислите по одному имени пользователя в строке. Пользователи,\ pinnedUsersDescription: "Перечислите по одному имени пользователя в строке. Пользователи,\
\ перечисленные здесь, будут привязаны к закладке \"Изучение\"." \ перечисленные здесь, будут привязаны к закладке \"Изучение\"."
pinnedPages: "Закрепленные страницы"
pinnedPagesDescription: "Если хотите закрепить страницы на главной сайта, сюда можно\
\ добавить пути к ним, каждый в отдельной строке."
pinnedClipId: "Идентификатор закреплённой подборки"
pinnedNotes: "Закреплённая заметка"
hcaptcha: "hCaptcha"
enableHcaptcha: "Включить hCaptcha"
hcaptchaSiteKey: "Ключ сайта" hcaptchaSiteKey: "Ключ сайта"
hcaptchaSecretKey: "Секретный ключ" hcaptchaSecretKey: "Секретный ключ"
recaptcha: "reCAPTCHA"
enableRecaptcha: "Включить reCAPTCHA"
recaptchaSiteKey: "Ключ сайта" recaptchaSiteKey: "Ключ сайта"
recaptchaSecretKey: "Секретный ключ" recaptchaSecretKey: "Секретный ключ"
avoidMultiCaptchaConfirm: "Несколько способов проверки могут мешать друг другу. Подтвердите,\
\ если хотите отключить другие способы. Или нажмите «Отмена», чтобы оставить их\
\ включёнными."
antennas: "Антенны" antennas: "Антенны"
manageAntennas: "Настройки антенн" manageAntennas: "Настройки антенн"
name: "Название" name: "Название"
@ -381,7 +337,6 @@ antennaKeywordsDescription: "Пишите слова через пробел в
\ чтобы ловить любые из них." \ чтобы ловить любые из них."
notifyAntenna: "Уведомлять о новых заметках" notifyAntenna: "Уведомлять о новых заметках"
withFileAntenna: "Только заметки с вложениями" withFileAntenna: "Только заметки с вложениями"
enableServiceworker: "Включить ServiceWorker"
antennaUsersDescription: "Пишите каждое название аккаута на отдельной строке" antennaUsersDescription: "Пишите каждое название аккаута на отдельной строке"
caseSensitive: "С учётом регистра" caseSensitive: "С учётом регистра"
withReplies: "Включая ответы" withReplies: "Включая ответы"
@ -396,11 +351,8 @@ popularUsers: "Популярные пользователи"
recentlyUpdatedUsers: "Активные последнее время" recentlyUpdatedUsers: "Активные последнее время"
recentlyRegisteredUsers: "Недавно зарегистрированные пользователи" recentlyRegisteredUsers: "Недавно зарегистрированные пользователи"
recentlyDiscoveredUsers: "Недавно обнаруженные пользователи" recentlyDiscoveredUsers: "Недавно обнаруженные пользователи"
exploreUsersCount: "Пользователей: {count}"
exploreFediverse: "Исследуйте Fediverse"
popularTags: "Популярные теги" popularTags: "Популярные теги"
userList: "Списки" userList: "Списки"
about: "Описание"
aboutMisskey: "О FoundKey" aboutMisskey: "О FoundKey"
administrator: "Администратор" administrator: "Администратор"
token: "Токен" token: "Токен"
@ -420,7 +372,6 @@ share: "Поделиться"
notFound: "Не найдено" notFound: "Не найдено"
notFoundDescription: "Страница по указанной ссылке не найдена" notFoundDescription: "Страница по указанной ссылке не найдена"
uploadFolder: "Место загрузки по умолчанию" uploadFolder: "Место загрузки по умолчанию"
cacheClear: "Очистка кэша"
markAsReadAllNotifications: "Отметить все уведомления как прочитанные" markAsReadAllNotifications: "Отметить все уведомления как прочитанные"
markAsReadAllUnreadNotes: "Отметить все заметки как прочитанные" markAsReadAllUnreadNotes: "Отметить все заметки как прочитанные"
markAsReadAllTalkMessages: "Отметить все реплики как прочитанные" markAsReadAllTalkMessages: "Отметить все реплики как прочитанные"
@ -451,7 +402,6 @@ noMessagesYet: "Пока ни одного сообщения"
newMessageExists: "Новое сообщение" newMessageExists: "Новое сообщение"
onlyOneFileCanBeAttached: "К сообщению можно прикрепить только один файл" onlyOneFileCanBeAttached: "К сообщению можно прикрепить только один файл"
signinRequired: "Пожалуйста, войдите" signinRequired: "Пожалуйста, войдите"
invitations: "Приглашения"
invitationCode: "Код приглашения" invitationCode: "Код приглашения"
checking: "Проверка" checking: "Проверка"
available: "Доступно" available: "Доступно"
@ -473,7 +423,6 @@ or: "или"
language: "Язык" language: "Язык"
uiLanguage: "Язык интерфейса" uiLanguage: "Язык интерфейса"
groupInvited: "Приглашение в группу" groupInvited: "Приглашение в группу"
aboutX: "Описание {x}"
useOsNativeEmojis: "Использовать эмодзи операционной системы" useOsNativeEmojis: "Использовать эмодзи операционной системы"
disableDrawer: "Не использовать выдвижные меню" disableDrawer: "Не использовать выдвижные меню"
youHaveNoGroups: "У вас нет ни одной группы" youHaveNoGroups: "У вас нет ни одной группы"
@ -481,27 +430,19 @@ joinOrCreateGroup: "Получайте приглашения в группы и
noHistory: "История пока пуста" noHistory: "История пока пуста"
signinHistory: "Журнал посещений" signinHistory: "Журнал посещений"
disableAnimatedMfm: "Отключение анимированной разметки MFM" disableAnimatedMfm: "Отключение анимированной разметки MFM"
doing: "В процессе"
category: "Категория" category: "Категория"
tags: "Метки" tags: "Метки"
docSource: "Источник документа"
createAccount: "Новая учётная запись" createAccount: "Новая учётная запись"
existingAccount: "Существующая учётная запись" existingAccount: "Существующая учётная запись"
regenerate: "Создать повторно"
fontSize: "Размер шрифта" fontSize: "Размер шрифта"
noFollowRequests: "Нерассмотренные запросы на подписку отсутствуют" noFollowRequests: "Нерассмотренные запросы на подписку отсутствуют"
openImageInNewTab: "Открыть изображение в новой вкладке" openImageInNewTab: "Открыть изображение в новой вкладке"
dashboard: "Панель управления" dashboard: "Панель управления"
local: "С этого сайта" local: "С этого сайта"
remote: "С других сайтов" remote: "С других сайтов"
total: "Всего"
weekOverWeekChanges: "За неделю"
dayOverDayChanges: "За день" dayOverDayChanges: "За день"
appearance: "Внешний вид" appearance: "Внешний вид"
clientSettings: "Настройки клиента" clientSettings: "Настройки клиента"
accountSettings: "Настройки учетной записи"
numberOfDays: "Количество дней"
hideThisNote: "Спрятать эту запись"
showFeaturedNotesInTimeline: "Показывать в ленте заметки из «Горячего»" showFeaturedNotesInTimeline: "Показывать в ленте заметки из «Горячего»"
objectStorage: "Хранилище" objectStorage: "Хранилище"
useObjectStorage: "Занято в хранилище" useObjectStorage: "Занято в хранилище"
@ -528,8 +469,6 @@ objectStorageUseProxy: "Использовать прокси"
objectStorageUseProxyDesc: "Отключите, если не будете испоьзовать прокси для соединений\ objectStorageUseProxyDesc: "Отключите, если не будете испоьзовать прокси для соединений\
\ по протоколу ObjectStorage." \ по протоколу ObjectStorage."
objectStorageSetPublicRead: "Устанавливать public-read при загрузке на сервер" objectStorageSetPublicRead: "Устанавливать public-read при загрузке на сервер"
serverLogs: "Журнал сервера"
deleteAll: "Удалить всё"
showFixedPostForm: "Показывать поле для ввода новой заметки наверху ленты" showFixedPostForm: "Показывать поле для ввода новой заметки наверху ленты"
newNoteRecived: "Появилась новая заметка" newNoteRecived: "Появилась новая заметка"
sounds: "Звуки" sounds: "Звуки"
@ -540,7 +479,6 @@ popout: "Развернуть"
volume: "Громкость" volume: "Громкость"
masterVolume: "Основная регулировка громкости" masterVolume: "Основная регулировка громкости"
details: "Подробнее" details: "Подробнее"
chooseEmoji: "Выберите эмодзи"
unableToProcess: "Не удаётся завершить операцию" unableToProcess: "Не удаётся завершить операцию"
recentUsed: "Последние использованные" recentUsed: "Последние использованные"
install: "Установить" install: "Установить"
@ -558,9 +496,7 @@ scratchpadDescription: "«Когтеточка» — это место для о
\ писать программы, взаимодействующие с FoundKey, запускать и смотреть что из этого\ \ писать программы, взаимодействующие с FoundKey, запускать и смотреть что из этого\
\ получается." \ получается."
output: "Выходы" output: "Выходы"
script: "Скрипт"
updateRemoteUser: "Обновить данные пользователя с его сервера" updateRemoteUser: "Обновить данные пользователя с его сервера"
deleteAllFiles: "Удалить все файлы"
deleteAllFilesConfirm: "Вы хотите удалить все файлы?" deleteAllFilesConfirm: "Вы хотите удалить все файлы?"
removeAllFollowing: "Удалить всех подписчиков" removeAllFollowing: "Удалить всех подписчиков"
removeAllFollowingDescription: "Отменить все подписки с домена {host}? Пожалуйста,\ removeAllFollowingDescription: "Отменить все подписки с домена {host}? Пожалуйста,\
@ -577,10 +513,7 @@ addItem: "Добавить элемент"
relays: "Ретрансляторы" relays: "Ретрансляторы"
addRelay: "Добавить ретранслятор" addRelay: "Добавить ретранслятор"
inboxUrl: "URL ящика входящих сообщений" inboxUrl: "URL ящика входящих сообщений"
addedRelays: "Добавленные ретрансляторы"
serviceworkerInfo: "Нужно включить, чтобы работали push-уведомления."
deletedNote: "Удалённая заметка" deletedNote: "Удалённая заметка"
invisibleNote: "Личное сообщение"
enableInfiniteScroll: "Включить бесконечную прокрутку" enableInfiniteScroll: "Включить бесконечную прокрутку"
visibility: "Видимость" visibility: "Видимость"
poll: "Опрос" poll: "Опрос"
@ -590,15 +523,12 @@ disablePlayer: "Выключить проигрыватель"
themeEditor: "Редактор темы оформления" themeEditor: "Редактор темы оформления"
description: "Описание" description: "Описание"
describeFile: "Добавить подпись" describeFile: "Добавить подпись"
enterFileDescription: "Введите подпись"
author: "Автор" author: "Автор"
leaveConfirm: "Вы не сохранили изменения. Хотите выйти и потерять их?" leaveConfirm: "Вы не сохранили изменения. Хотите выйти и потерять их?"
manage: "Управление" manage: "Управление"
plugins: "Расширения" plugins: "Расширения"
deck: "Пульт" deck: "Пульт"
undeck: "Покинуть пульт"
useBlurEffectForModal: "Размывка под формой поверх всего" useBlurEffectForModal: "Размывка под формой поверх всего"
useFullReactionPicker: "Полнофункциональный выбор реакций"
width: "Ширина" width: "Ширина"
height: "Высота" height: "Высота"
large: "Крупно" large: "Крупно"
@ -611,7 +541,6 @@ disableAll: "Выключить всё"
tokenRequested: "Открыть доступ к учётной записи" tokenRequested: "Открыть доступ к учётной записи"
pluginTokenRequestedDescription: "Это расширение сможет пользоваться разрешениями,\ pluginTokenRequestedDescription: "Это расширение сможет пользоваться разрешениями,\
\ установленными здесь." \ установленными здесь."
notificationType: "Тип уведомления"
edit: "Изменить" edit: "Изменить"
useStarForReactionFallback: "Ставить ★ в качестве реакции вместо неизвестного эмодзи" useStarForReactionFallback: "Ставить ★ в качестве реакции вместо неизвестного эмодзи"
emailServer: "Сервер электронной почты" emailServer: "Сервер электронной почты"
@ -637,10 +566,7 @@ userSaysSomething: "{name} что-то сообщает"
makeActive: "Активировать" makeActive: "Активировать"
display: "Отображение" display: "Отображение"
copy: "Копировать" copy: "Копировать"
metrics: "Метрики"
overview: "Обзор" overview: "Обзор"
logs: "Журналы"
delayed: "Задержка"
database: "База данных" database: "База данных"
channel: "Каналы" channel: "Каналы"
create: "Создать" create: "Создать"
@ -657,7 +583,6 @@ regenerateLoginTokenDescription: "Создаёт новый токен, испо
setMultipleBySeparatingWithSpace: "Можно написать несколько через пробел" setMultipleBySeparatingWithSpace: "Можно написать несколько через пробел"
fileIdOrUrl: "Идентификатор файла или ссылка" fileIdOrUrl: "Идентификатор файла или ссылка"
behavior: "Поведение" behavior: "Поведение"
sample: "Пример"
abuseReports: "Жалобы" abuseReports: "Жалобы"
reportAbuse: "Жалоба" reportAbuse: "Жалоба"
reportAbuseOf: "Пожаловаться на пользователя {name}" reportAbuseOf: "Пожаловаться на пользователя {name}"
@ -671,13 +596,8 @@ forwardReportIsAnonymous: "Удаленный инстант не сможет
send: "Отправить" send: "Отправить"
abuseMarkAsResolved: "Отметить жалобу как решённую" abuseMarkAsResolved: "Отметить жалобу как решённую"
openInNewTab: "Открыть в новой вкладке" openInNewTab: "Открыть в новой вкладке"
openInSideView: "Открывать в боковой колонке"
defaultNavigationBehaviour: "Поведение навигации по умолчанию" defaultNavigationBehaviour: "Поведение навигации по умолчанию"
editTheseSettingsMayBreakAccount: "От изменений в этих настройках ваша учётная запись\
\ может поломаться."
instanceTicker: "Строка с названием инстанса в заметках" instanceTicker: "Строка с названием инстанса в заметках"
waitingFor: "Ждём, когда {x} ответит"
random: "Случайные"
system: "Система" system: "Система"
switchUi: "Выбор вида" switchUi: "Выбор вида"
desktop: "Стол" desktop: "Стол"
@ -715,7 +635,6 @@ loadRawImages: "Сразу показывать изображения в пол
disableShowingAnimatedImages: "Не проигрывать анимацию" disableShowingAnimatedImages: "Не проигрывать анимацию"
verificationEmailSent: "Вам отправлено письмо для подтверждения. Пройдите, пожалуйста,\ verificationEmailSent: "Вам отправлено письмо для подтверждения. Пройдите, пожалуйста,\
\ по ссылке из письма, чтобы завершить проверку." \ по ссылке из письма, чтобы завершить проверку."
notSet: "Не настроено"
emailVerified: "Адрес электронной почты подтверждён." emailVerified: "Адрес электронной почты подтверждён."
noteFavoritesCount: "Количество добавленного в избранное" noteFavoritesCount: "Количество добавленного в избранное"
pageLikesCount: "Количество понравившихся страниц" pageLikesCount: "Количество понравившихся страниц"
@ -723,8 +642,6 @@ pageLikedCount: "Количество страниц, понравившихся
contact: "Как связаться" contact: "Как связаться"
useSystemFont: "Использовать шрифт, предлагаемый системой" useSystemFont: "Использовать шрифт, предлагаемый системой"
clips: "Подборки" clips: "Подборки"
experimentalFeatures: "Экспериментальные функции"
developer: "Разработчик"
makeExplorable: "Опубликовать профиль в «Обзоре»." makeExplorable: "Опубликовать профиль в «Обзоре»."
makeExplorableDescription: "Если выключить, ваш профиль не будет показан в разделе\ makeExplorableDescription: "Если выключить, ваш профиль не будет показан в разделе\
\ «Обзор»." \ «Обзор»."
@ -737,28 +654,16 @@ narrow: "Тонкий"
reloadToApplySetting: "Это настройка вступает в силу при загрузке страницы. Перезагрузить\ reloadToApplySetting: "Это настройка вступает в силу при загрузке страницы. Перезагрузить\
\ сейчас?" \ сейчас?"
needReloadToApply: "Изменения вступят в силу после перезагрузки страницы." needReloadToApply: "Изменения вступят в силу после перезагрузки страницы."
showTitlebar: "Показать заголовок"
clearCache: "Очистить кэш" clearCache: "Очистить кэш"
onlineUsersCount: "Пользователей сейчас в сети: {n}" onlineUsersCount: "Пользователей сейчас в сети: {n}"
nUsers: "Пользователей: {n}"
nNotes: "Заметок: {n}"
myTheme: "Личная тема"
backgroundColor: "Фон" backgroundColor: "Фон"
accentColor: "Акцент" accentColor: "Акцент"
textColor: "Текст" textColor: "Текст"
saveAs: "Сохранить под названием…" saveAs: "Сохранить под названием…"
advanced: "Для продвинутых"
value: "Значения"
createdAt: "Создано" createdAt: "Создано"
updatedAt: "Обновлено" updatedAt: "Обновлено"
saveConfirm: "Сохранить изменения?"
deleteConfirm: "Удалить?" deleteConfirm: "Удалить?"
invalidValue: "Недопустимое значение."
registry: "Реестр"
closeAccount: "Закрыть учётную запись" closeAccount: "Закрыть учётную запись"
currentVersion: "Используемая версия"
latestVersion: "Самая свежая версия"
youAreRunningUpToDateClient: "У вас самая свежая версия клиента."
newVersionOfClientAvailable: "Доступна более свежая версия клиента." newVersionOfClientAvailable: "Доступна более свежая версия клиента."
usageAmount: "Использовано" usageAmount: "Использовано"
capacity: "Ёмкость" capacity: "Ёмкость"
@ -768,11 +673,9 @@ apply: "Применить"
receiveAnnouncementFromInstance: "Получать оповещения с инстанса" receiveAnnouncementFromInstance: "Получать оповещения с инстанса"
emailNotification: "Уведомления по электронной почте" emailNotification: "Уведомления по электронной почте"
publish: "Опубликовать" publish: "Опубликовать"
inChannelSearch: "Поиск по каналу"
useReactionPickerForContextMenu: "Открывать палитру реакций правой кнопкой" useReactionPickerForContextMenu: "Открывать палитру реакций правой кнопкой"
typingUsers: "Стук клавиш. Это {users}…" typingUsers: "Стук клавиш. Это {users}…"
jumpToSpecifiedDate: "Перейти к заданной дате" jumpToSpecifiedDate: "Перейти к заданной дате"
showingPastTimeline: "Отображается старая лента"
clear: "Очистить" clear: "Очистить"
markAllAsRead: "Отметить всё как прочитанное" markAllAsRead: "Отметить всё как прочитанное"
goBack: "Выход" goBack: "Выход"
@ -787,7 +690,6 @@ notSpecifiedMentionWarning: "В этой заметке есть упомина
info: "Описание" info: "Описание"
userInfo: "Сведения о пользователе" userInfo: "Сведения о пользователе"
unknown: "Неизвестно" unknown: "Неизвестно"
onlineStatus: "Присутствие в сети"
hideOnlineStatus: "Скрыть присутствие" hideOnlineStatus: "Скрыть присутствие"
hideOnlineStatusDescription: "Сокрытие присутствия делает некоторые функции, такие\ hideOnlineStatusDescription: "Сокрытие присутствия делает некоторые функции, такие\
\ как поиск, менее удобными." \ как поиск, менее удобными."
@ -814,22 +716,13 @@ gallery: "Галерея"
recentPosts: "Недавние публикации" recentPosts: "Недавние публикации"
popularPosts: "Популярные публикации" popularPosts: "Популярные публикации"
shareWithNote: "Поделиться заметкой" shareWithNote: "Поделиться заметкой"
expiration: "Опрос длится"
memo: "Памятка"
priority: "Приоритет"
high: "Высокий"
middle: "Средне"
low: "Низкий"
emailNotConfiguredWarning: "Не указан адрес электронной почты" emailNotConfiguredWarning: "Не указан адрес электронной почты"
ratio: "Соотношение" ratio: "Соотношение"
previewNoteText: "Предварительный просмотр" previewNoteText: "Предварительный просмотр"
customCss: "Индивидуальный CSS" customCss: "Индивидуальный CSS"
customCssWarn: "Используйте эту настройку только если знаете, что делаете. Ошибки\ customCssWarn: "Используйте эту настройку только если знаете, что делаете. Ошибки\
\ здесь чреваты тем, что сайт перестанет нормально работать у вас." \ здесь чреваты тем, что сайт перестанет нормально работать у вас."
global: "Всеобщая"
squareAvatars: "Квадратные аватарки" squareAvatars: "Квадратные аватарки"
sent: "Отправить"
received: "Получено"
searchResult: "Результаты поиска" searchResult: "Результаты поиска"
hashtags: "Хэштег" hashtags: "Хэштег"
troubleshooting: "Разрешение проблем" troubleshooting: "Разрешение проблем"
@ -909,9 +802,6 @@ _accountDelete:
requestAccountDelete: "Запросить удаление вашей учетной записи" requestAccountDelete: "Запросить удаление вашей учетной записи"
started: "Процесс удаления начался." started: "Процесс удаления начался."
inProgress: "Удаление в процессе" inProgress: "Удаление в процессе"
_ad:
back: "Выход"
reduceFrequencyOfThisAd: "Реже показывать эту рекламу"
_forgotPassword: _forgotPassword:
enterEmail: "Введите адрес электронной почты, который ввели при регистрации. На\ enterEmail: "Введите адрес электронной почты, который ввели при регистрации. На\
\ неё будет выслана ссылка для смены пароля." \ неё будет выслана ссылка для смены пароля."
@ -932,7 +822,6 @@ _email:
_plugin: _plugin:
install: "Установка расширений" install: "Установка расширений"
installWarn: "Пожалуйста, не устанавливайте расширения, которым не доверяете." installWarn: "Пожалуйста, не устанавливайте расширения, которым не доверяете."
manage: "Управление расширениями"
_registry: _registry:
scope: "Область" scope: "Область"
key: "Ключ" key: "Ключ"
@ -942,10 +831,8 @@ _registry:
_aboutMisskey: _aboutMisskey:
about: "FoundKey — программа с открытым исходным кодом, которую разрабатывает syuilo\ about: "FoundKey — программа с открытым исходным кодом, которую разрабатывает syuilo\
\ с 2014 года." \ с 2014 года."
contributors: "Основные соавторы"
allContributors: "Все соавторы" allContributors: "Все соавторы"
source: "Исходный код" source: "Исходный код"
translation: "Перевод FoundKey"
_nsfw: _nsfw:
respect: "Скрывать содержимое не для всех" respect: "Скрывать содержимое не для всех"
ignore: "Показывать содержимое не для всех" ignore: "Показывать содержимое не для всех"
@ -1071,69 +958,6 @@ _theme:
alreadyInstalled: "Тема уже установлена." alreadyInstalled: "Тема уже установлена."
invalid: "Формат темы некорректный." invalid: "Формат темы некорректный."
make: "Создать тему" make: "Создать тему"
base: "Основа"
addConstant: "Добавить константу"
constant: "Константа"
defaultValue: "По умолчанию"
color: "Цвет"
refProp: "Ссылка на свойство"
refConst: "Ссылка на константу"
key: "Ключ"
func: "Функции"
funcKind: "Тип функции"
argument: "Аргумент"
basedProp: "Исходное свойство"
alpha: "Непрозрачность"
darken: "Затемнение"
lighten: "Осветление"
inputConstantName: "Введите имя для константы."
importInfo: "Если вы введете код темы здесь, вы можете импортировать его в редактор\
\ тем."
deleteConstantConfirm: "Вы действительно хотите удалить константу {const}?"
keys:
accent: "Акцент"
bg: "Фон"
fg: "Текст"
focus: "Фокус"
indicator: "Индикатор"
panel: "Панель"
shadow: "Тень"
header: "Заголовок"
navBg: "Фон боковой панели"
navFg: "Текст на боковой панели"
navHoverFg: "Текст на боковой панели (под указателем)"
navActive: "Текст на боковой панели (активирован)"
navIndicator: "Индикатор на боковой панели"
link: "Ссылка"
hashtag: "Хэштег"
mention: "Упоминание"
mentionMe: "Упоминания вас"
renote: "Репост"
modalBg: "Фон формы поверх страницы"
divider: "Разделитель"
scrollbarHandle: "Ползунок прокрутки"
scrollbarHandleHover: "Ползунок прокрутки (под указателем)"
dateLabelFg: "Текст отметки даты"
infoBg: "Фон сообщения"
infoFg: "Текст сообщения"
infoWarnBg: "Фон предупреждения"
infoWarnFg: "Текст предупреждения"
cwBg: "Фон предупреждения о содержимом"
cwFg: "Текст предупреждения о содержимом"
cwHoverBg: "Фон предупреждения о содержимом (под указателем)"
toastBg: "Фон оповещения"
toastFg: "Текст оповещения"
buttonBg: "Фон кнопки"
buttonHoverBg: "Текст кнопки"
inputBorder: "Рамка поля ввода"
listItemHoverBg: "Фон пункта списка (под указателем)"
driveFolderBg: "Фон папки «Диска»"
wallpaperOverlay: "Слой обоев"
badge: "Значок"
messageBg: "Фон беседы"
accentDarken: "Фон (затемнённый)"
accentLighten: "Фон (осветлённый)"
fgHighlighted: "Подсвеченный текст"
_sfx: _sfx:
note: "Заметки" note: "Заметки"
noteMy: "Собственные заметки" noteMy: "Собственные заметки"
@ -1415,7 +1239,6 @@ _relayStatus:
accepted: "Одобрено." accepted: "Одобрено."
rejected: "Отказано." rejected: "Отказано."
_notification: _notification:
fileUploaded: "Файл успешно загружен."
youGotMention: "{name} упоминает вас." youGotMention: "{name} упоминает вас."
youGotReply: "{name} отвечает вам." youGotReply: "{name} отвечает вам."
youGotQuote: "{name} цитирует вас." youGotQuote: "{name} цитирует вас."
@ -1428,7 +1251,6 @@ _notification:
yourFollowRequestAccepted: "Ваш запрос на подписку одобрен." yourFollowRequestAccepted: "Ваш запрос на подписку одобрен."
youWereInvitedToGroup: "Вы приглашены в группу." youWereInvitedToGroup: "Вы приглашены в группу."
_types: _types:
all: "Все"
follow: "Подписки" follow: "Подписки"
mention: "Упоминания" mention: "Упоминания"
reply: "Ответы" reply: "Ответы"

View file

@ -14,7 +14,6 @@ fetchingAsApObject: "Načítam údaje z Fediverzu"
ok: "OK" ok: "OK"
gotIt: "Rozumiem!" gotIt: "Rozumiem!"
cancel: "Zrušiť" cancel: "Zrušiť"
enterUsername: "Zadajte meno používateľa"
renotedBy: "{user} preposlal/a" renotedBy: "{user} preposlal/a"
noNotes: "Žiadne poznámky" noNotes: "Žiadne poznámky"
noNotifications: "Žiadne oznámenia" noNotifications: "Žiadne oznámenia"
@ -30,16 +29,12 @@ login: "Prihlásiť sa"
loggingIn: "Prebieha prihlasovanie" loggingIn: "Prebieha prihlasovanie"
logout: "Odhlásiť" logout: "Odhlásiť"
signup: "Registrovať" signup: "Registrovať"
uploading: "Nahrávanie..."
save: "Uložiť" save: "Uložiť"
users: "Používatelia" users: "Používatelia"
addUser: "Pridať používateľa" addUser: "Pridať používateľa"
favorite: "Páči sa mi" favorite: "Páči sa mi"
favorites: "Obľúbené" favorites: "Obľúbené"
unfavorite: "Nepáči sa mi" unfavorite: "Nepáči sa mi"
favorited: "Pridané do obľúbených"
alreadyFavorited: "Už je medzi obľúbenými"
cantFavorite: "Nepodarilo sa pridať medzi obľúbené."
pin: "Pripnúť" pin: "Pripnúť"
unpin: "Odopnúť" unpin: "Odopnúť"
copyContent: "Kopírovať obsah" copyContent: "Kopírovať obsah"
@ -51,7 +46,6 @@ deleteAndEditConfirm: "Naozaj chcete odstrániť túto poznámku a upraviť ju?
addToList: "Pridať do zoznamu" addToList: "Pridať do zoznamu"
sendMessage: "Odoslať správu" sendMessage: "Odoslať správu"
copyUsername: "Kopírovať meno používateľa" copyUsername: "Kopírovať meno používateľa"
searchUser: "Hľadať používateľov"
reply: "Odpovedať" reply: "Odpovedať"
loadMore: "Zobraziť viac" loadMore: "Zobraziť viac"
showMore: "Zobraziť viac" showMore: "Zobraziť viac"
@ -73,7 +67,6 @@ exportRequested: "Vyžiadali ste export. Môže to chvíľu trvať. Po skončen
\ na vašom disku." \ na vašom disku."
importRequested: "Požiadali ste o export. Môže to chvíľu trvať." importRequested: "Požiadali ste o export. Môže to chvíľu trvať."
lists: "Zoznamy" lists: "Zoznamy"
noLists: "Nemáte žiadne zoznamy"
note: "Poznámka" note: "Poznámka"
notes: "Poznámky" notes: "Poznámky"
following: "Sledujete" following: "Sledujete"
@ -98,21 +91,15 @@ followRequest: "Požiadať o sledovanie"
followRequests: "Žiadosti o sledovanie" followRequests: "Žiadosti o sledovanie"
unfollow: "Nesledovať" unfollow: "Nesledovať"
followRequestPending: "Žiadosť o sledovanie čaká" followRequestPending: "Žiadosť o sledovanie čaká"
enterEmoji: "Zadajte emoji"
renote: "Preposlať" renote: "Preposlať"
unrenote: "Vrátiť preposlanie" unrenote: "Vrátiť preposlanie"
renoted: "Preposlané."
cantRenote: "Tento príspevok sa nedá preposlať."
cantReRenote: "Odpoveď nemôže byť odstránená."
quote: "Citovať" quote: "Citovať"
pinnedNote: "Pripnuté poznámky" pinnedNote: "Pripnuté poznámky"
pinned: "Pripnúť"
you: "Vy" you: "Vy"
clickToShow: "Kliknutím zobrazíte" clickToShow: "Kliknutím zobrazíte"
sensitive: "NSFW" sensitive: "NSFW"
add: "Pridať" add: "Pridať"
reaction: "Reakcie" reaction: "Reakcie"
reactionSetting: "Reakcie zobrazené vo výbere reakcií"
reactionSettingDescription2: "Ťahaním preusporiadate, kliknutím odstránite, Stlačením\ reactionSettingDescription2: "Ťahaním preusporiadate, kliknutím odstránite, Stlačením\
\ \"+\" pridáte" \ \"+\" pridáte"
attachCancel: "Odstrániť prílohu" attachCancel: "Odstrániť prílohu"
@ -137,10 +124,7 @@ editWidgetsExit: "Hotovo"
customEmojis: "Vlastné emoji" customEmojis: "Vlastné emoji"
emoji: "Emoji" emoji: "Emoji"
emojis: "Emoji" emojis: "Emoji"
emojiName: "Názov emoji"
emojiUrl: "URL obrázku"
addEmoji: "Pridať emoji" addEmoji: "Pridať emoji"
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\ 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,\ \ budú odkazované priamo, namiesto ukladania do cache. Ušetrí sa tak miesto na serveri,\
@ -159,7 +143,6 @@ addAccount: "Pridať účet"
loginFailed: "Prihlásenie sa nepodarilo." loginFailed: "Prihlásenie sa nepodarilo."
showOnRemote: "Zobraziť na vzdialenom serveri" showOnRemote: "Zobraziť na vzdialenom serveri"
general: "Všeobecné" general: "Všeobecné"
wallpaper: "Tapeta"
setWallpaper: "Nastaviť tapetu" setWallpaper: "Nastaviť tapetu"
removeWallpaper: "Odstrániť tapetu" removeWallpaper: "Odstrániť tapetu"
youHaveNoLists: "Nemáte žiadne zoznamy" youHaveNoLists: "Nemáte žiadne zoznamy"
@ -175,27 +158,19 @@ selectUser: "Vyberte používateľa"
recipient: "Prijímateľ" recipient: "Prijímateľ"
annotation: "Komentáre" annotation: "Komentáre"
federation: "Federácia" federation: "Federácia"
instances: "Inštancia"
registeredAt: "Registrácia" registeredAt: "Registrácia"
latestRequestSentAt: "Posledná odoslaná požiadavka" latestRequestSentAt: "Posledná odoslaná požiadavka"
latestRequestReceivedAt: "Posledná prijatá požiadavka" latestRequestReceivedAt: "Posledná prijatá požiadavka"
latestStatus: "Posledný status" latestStatus: "Posledný status"
storageUsage: "Využité úložisko"
charts: "Grafy" charts: "Grafy"
perHour: "za hodinu" perHour: "za hodinu"
perDay: "za deň" perDay: "za deň"
stopActivityDelivery: "Zastaviť posielanie aktivít" stopActivityDelivery: "Zastaviť posielanie aktivít"
blockThisInstance: "Blokovať tento server" blockThisInstance: "Blokovať tento server"
operations: "Operácie"
software: "Softvér" software: "Softvér"
version: "Verzia" version: "Verzia"
metadata: "Metadáta"
withNFiles: "{n} súbor(ov)" withNFiles: "{n} súbor(ov)"
monitor: "Monitor"
jobQueue: "Fronta úloh" jobQueue: "Fronta úloh"
cpuAndMemory: "CPU a pamäť"
network: "Sieť"
disk: "Disk"
instanceInfo: "Informácie o serveri" instanceInfo: "Informácie o serveri"
statistics: "Štatistiky" statistics: "Štatistiky"
clearQueue: "Vyčistiť frontu" clearQueue: "Vyčistiť frontu"
@ -228,9 +203,6 @@ all: "Všetko"
subscribing: "Odoberanie" subscribing: "Odoberanie"
publishing: "Zverejňovanie" publishing: "Zverejňovanie"
notResponding: "Neodpovedá" notResponding: "Neodpovedá"
instanceFollowing: "Sledujem na serveri"
instanceFollowers: "Sledujúci zo servera"
instanceUsers: "Používatelia servera"
changePassword: "Zmeniť heslo" changePassword: "Zmeniť heslo"
security: "Zabezpečenie" security: "Zabezpečenie"
retypedNotMatch: "Zadané vstupy nesúhlasia" retypedNotMatch: "Zadané vstupy nesúhlasia"
@ -246,7 +218,6 @@ lookup: "Vyhľadať"
announcements: "Oznamy" announcements: "Oznamy"
imageUrl: "URL obrázku" imageUrl: "URL obrázku"
remove: "Odstrániť" remove: "Odstrániť"
removed: "Odstránené"
removeAreYouSure: "Naozaj chcete odstrániť \"{x}\"?" removeAreYouSure: "Naozaj chcete odstrániť \"{x}\"?"
deleteAreYouSure: "Naozaj chcete odstrániť \"{x}\"?" deleteAreYouSure: "Naozaj chcete odstrániť \"{x}\"?"
resetAreYouSure: "Naozaj resetovať?" resetAreYouSure: "Naozaj resetovať?"
@ -288,7 +259,6 @@ lightThemes: "Svetlá téma"
darkThemes: "Tmavá téma" darkThemes: "Tmavá téma"
syncDeviceDarkMode: "Synchronizovať tmavú tému s nastavení vášho systému" syncDeviceDarkMode: "Synchronizovať tmavú tému s nastavení vášho systému"
drive: "Disk" drive: "Disk"
fileName: "Názov súboru"
selectFile: "Vyberte súbor" selectFile: "Vyberte súbor"
selectFiles: "Vyberte súbory" selectFiles: "Vyberte súbory"
selectFolder: "Vyberte priečinok" selectFolder: "Vyberte priečinok"
@ -342,7 +312,6 @@ enableLocalTimeline: "Povoliť lokálnu časovú os"
enableGlobalTimeline: "Povoliť globálnu časovú os" enableGlobalTimeline: "Povoliť globálnu časovú os"
disablingTimelinesInfo: "Administrátori a moderátori majú vždy prístup ku všetkým\ disablingTimelinesInfo: "Administrátori a moderátori majú vždy prístup ku všetkým\
\ časovým osiam, aj keď sú vypnuté." \ časovým osiam, aj keď sú vypnuté."
registration: "Registrácia"
enableRegistration: "Povoliť registráciu nových používateľov" enableRegistration: "Povoliť registráciu nových používateľov"
invite: "Pozvať" invite: "Pozvať"
driveCapacityPerLocalAccount: "Kapacita disku pre používateľa" driveCapacityPerLocalAccount: "Kapacita disku pre používateľa"
@ -351,26 +320,13 @@ inMb: "V megabajtoch"
iconUrl: "Favicon URL" iconUrl: "Favicon URL"
bannerUrl: "URL obrázku bannera" bannerUrl: "URL obrázku bannera"
backgroundImageUrl: "URL obrázku pozadia" backgroundImageUrl: "URL obrázku pozadia"
basicInfo: "Základné informácie"
pinnedUsers: "Pripnutí používatelia" pinnedUsers: "Pripnutí používatelia"
pinnedUsersDescription: "Zoznam mien používateľov oddelených riadkami, ktorý budú\ pinnedUsersDescription: "Zoznam mien používateľov oddelených riadkami, ktorý budú\
\ pripnutí v záložke \"Objavovať\"." \ pripnutí v záložke \"Objavovať\"."
pinnedPages: "Pripnuté stránky"
pinnedPagesDescription: "Na každý riadok zadajte cesty stránok, ktoré chcete pripnúť\
\ na vrch stránky tohoto servera."
pinnedClipId: "ID pripnutého klipu"
pinnedNotes: "Pripnuté poznámky"
hcaptcha: "hCaptcha"
enableHcaptcha: "Zapnúť hCaptchu"
hcaptchaSiteKey: "Site key" hcaptchaSiteKey: "Site key"
hcaptchaSecretKey: "Secret key" hcaptchaSecretKey: "Secret key"
recaptcha: "reCAPTCHA"
enableRecaptcha: "Zapnúť ReCAPTCHA"
recaptchaSiteKey: "Site key" recaptchaSiteKey: "Site key"
recaptchaSecretKey: "Secret key" recaptchaSecretKey: "Secret key"
avoidMultiCaptchaConfirm: "Použitie viacerých Captcha systémov môže sposobiť problémy.\
\ Chcete radšej vypnúť ostatné Captcha systémy? Môžete ich povoliť viaceré stlačení\
\ Zrušiť."
antennas: "Antény" antennas: "Antény"
manageAntennas: "Spravovať antény" manageAntennas: "Spravovať antény"
name: "Názov" name: "Názov"
@ -381,7 +337,6 @@ antennaKeywordsDescription: "Oddeľte medzerami pre podmienku AND alebo novými
\ pre podmienku OR." \ pre podmienku OR."
notifyAntenna: "Upozorniť na nové poznámky" notifyAntenna: "Upozorniť na nové poznámky"
withFileAntenna: "Len poznámky so súbormi" withFileAntenna: "Len poznámky so súbormi"
enableServiceworker: "Povoliť Service Worker"
antennaUsersDescription: "Zoznam používateľov jeden na riadok" antennaUsersDescription: "Zoznam používateľov jeden na riadok"
caseSensitive: "Rozlišuje malé a veľké písmená" caseSensitive: "Rozlišuje malé a veľké písmená"
withReplies: "Vrátane odpovedí" withReplies: "Vrátane odpovedí"
@ -396,11 +351,8 @@ popularUsers: "Populárni používatelia"
recentlyUpdatedUsers: "Používatelia s najnovšou aktivitou" recentlyUpdatedUsers: "Používatelia s najnovšou aktivitou"
recentlyRegisteredUsers: "Najnovší používatelia" recentlyRegisteredUsers: "Najnovší používatelia"
recentlyDiscoveredUsers: "Naposledy objavení používatelia" recentlyDiscoveredUsers: "Naposledy objavení používatelia"
exploreUsersCount: "Existuje {count} používateľov"
exploreFediverse: "Objavovať Fediverzum"
popularTags: "Populárne značky" popularTags: "Populárne značky"
userList: "Zoznamy" userList: "Zoznamy"
about: "Informácie"
aboutMisskey: "O FoundKey" aboutMisskey: "O FoundKey"
administrator: "Administrátor" administrator: "Administrátor"
token: "Token" token: "Token"
@ -420,7 +372,6 @@ share: "Zdieľať"
notFound: "Nenájdené" notFound: "Nenájdené"
notFoundDescription: "Nenašla sa žiadna stránka na zadanej URL." notFoundDescription: "Nenašla sa žiadna stránka na zadanej URL."
uploadFolder: "Predvolený priečinok pre nahrávanie" uploadFolder: "Predvolený priečinok pre nahrávanie"
cacheClear: "Vyčistiť cache"
markAsReadAllNotifications: "Označiť všetky oznámenia ako prečítané" markAsReadAllNotifications: "Označiť všetky oznámenia ako prečítané"
markAsReadAllUnreadNotes: "Označiť všetky poznámky ako prečítané" markAsReadAllUnreadNotes: "Označiť všetky poznámky ako prečítané"
markAsReadAllTalkMessages: "Označiť všetky správy ako prečítané" markAsReadAllTalkMessages: "Označiť všetky správy ako prečítané"
@ -451,7 +402,6 @@ noMessagesYet: "Zatiaľ žiadne správy"
newMessageExists: "Máte novú správu" newMessageExists: "Máte novú správu"
onlyOneFileCanBeAttached: "Ku správe môžete priložiť len jeden súbor" onlyOneFileCanBeAttached: "Ku správe môžete priložiť len jeden súbor"
signinRequired: "Prihláste sa, prosím!" signinRequired: "Prihláste sa, prosím!"
invitations: "Pozvať"
invitationCode: "Kód pozvánky" invitationCode: "Kód pozvánky"
checking: "Overujem..." checking: "Overujem..."
available: "Dostupné" available: "Dostupné"
@ -471,7 +421,6 @@ or: "Alebo"
language: "Jazyk" language: "Jazyk"
uiLanguage: "Jazyk používateľského prostredia" uiLanguage: "Jazyk používateľského prostredia"
groupInvited: "Pozvať do skupiny" groupInvited: "Pozvať do skupiny"
aboutX: "O {x}"
useOsNativeEmojis: "Používať natívne emoji z OS" useOsNativeEmojis: "Používať natívne emoji z OS"
disableDrawer: "Nepoužívať šuflíkové menu" disableDrawer: "Nepoužívať šuflíkové menu"
youHaveNoGroups: "Nemáte žiadne skupiny" youHaveNoGroups: "Nemáte žiadne skupiny"
@ -479,27 +428,19 @@ joinOrCreateGroup: "Požiadajte o pozvanie do existujúcej skupiny alebo vytvort
noHistory: "Žiadna história" noHistory: "Žiadna história"
signinHistory: "História prihlásení" signinHistory: "História prihlásení"
disableAnimatedMfm: "Vypnúť MFM s animáciou" disableAnimatedMfm: "Vypnúť MFM s animáciou"
doing: "Pracujem..."
category: "Kategórie" category: "Kategórie"
tags: "Značky" tags: "Značky"
docSource: "Zdroj tohoto dokumentu"
createAccount: "Vytvoriť účet" createAccount: "Vytvoriť účet"
existingAccount: "Existujúci účet" existingAccount: "Existujúci účet"
regenerate: "Pregenerovať"
fontSize: "Veľkosť písma" fontSize: "Veľkosť písma"
noFollowRequests: "Nemáte nijaké čakajúce žiadosti o sledovanie" noFollowRequests: "Nemáte nijaké čakajúce žiadosti o sledovanie"
openImageInNewTab: "Otvoriť obrázok v novom tabe" openImageInNewTab: "Otvoriť obrázok v novom tabe"
dashboard: "Prehľad" dashboard: "Prehľad"
local: "Lokálne" local: "Lokálne"
remote: "Vzdialené" remote: "Vzdialené"
total: "Celkom"
weekOverWeekChanges: "Medzitýždňové zmeny"
dayOverDayChanges: "Medzidenné zmeny" dayOverDayChanges: "Medzidenné zmeny"
appearance: "Vzhľad" appearance: "Vzhľad"
clientSettings: "Nastavenia klienta" clientSettings: "Nastavenia klienta"
accountSettings: "Nastavenia účtu"
numberOfDays: "Počet dní"
hideThisNote: "Skryť túto poznámku"
showFeaturedNotesInTimeline: "Zobraziť významné poznámky v časovej osi" showFeaturedNotesInTimeline: "Zobraziť významné poznámky v časovej osi"
objectStorage: "Objektové úložisko" objectStorage: "Objektové úložisko"
useObjectStorage: "Použiť objektové úložisko" useObjectStorage: "Použiť objektové úložisko"
@ -522,8 +463,6 @@ objectStorageUseSSLDesc: "Vypnite to ak nechcete použiť HTTPS na API spojenia.
objectStorageUseProxy: "Pripájať cez Proxy" objectStorageUseProxy: "Pripájať cez Proxy"
objectStorageUseProxyDesc: "Vypnite ak nechcete, aby spojenia na API išli cez Proxy" objectStorageUseProxyDesc: "Vypnite ak nechcete, aby spojenia na API išli cez Proxy"
objectStorageSetPublicRead: "Pri nahratí nastaviť \"public-read\"" objectStorageSetPublicRead: "Pri nahratí nastaviť \"public-read\""
serverLogs: "Logy servera"
deleteAll: "Odstrániť všetko"
showFixedPostForm: "Zobraziť formulár na nové príspevky nad časovou osou" showFixedPostForm: "Zobraziť formulár na nové príspevky nad časovou osou"
newNoteRecived: "Sú nové poznámky" newNoteRecived: "Sú nové poznámky"
sounds: "Zvuky" sounds: "Zvuky"
@ -534,7 +473,6 @@ popout: "Pop-out"
volume: "Hlasitosť" volume: "Hlasitosť"
masterVolume: "Celková hlasitosť" masterVolume: "Celková hlasitosť"
details: "Detaily" details: "Detaily"
chooseEmoji: "Vybrať emoji"
unableToProcess: "Operáciu sa nepodarilo dokončiť." unableToProcess: "Operáciu sa nepodarilo dokončiť."
recentUsed: "Neposledy použité" recentUsed: "Neposledy použité"
install: "Nainštalovať" install: "Nainštalovať"
@ -551,9 +489,7 @@ scratchpad: "Zápisník"
scratchpadDescription: "Zápisník poskytuje prostredia pre experimenty s AiScriptom.\ scratchpadDescription: "Zápisník poskytuje prostredia pre experimenty s AiScriptom.\
\ Môžete písať, spúšťať a skúšať vysledky pri interakcii s FoundKey." \ Môžete písať, spúšťať a skúšať vysledky pri interakcii s FoundKey."
output: "Výstup" output: "Výstup"
script: "Skript"
updateRemoteUser: "Aktualizovať informácie o vzdialenom účte" updateRemoteUser: "Aktualizovať informácie o vzdialenom účte"
deleteAllFiles: "Odstrániť všetky súbory"
deleteAllFilesConfirm: "Naozaj chcete odstrániť všetky súbory" deleteAllFilesConfirm: "Naozaj chcete odstrániť všetky súbory"
removeAllFollowing: "Zrušiť sledovani všetkých používateľov" removeAllFollowing: "Zrušiť sledovani všetkých používateľov"
removeAllFollowingDescription: "Týmto zrušíte sledovanie všetkých používateľov z {host}.\ removeAllFollowingDescription: "Týmto zrušíte sledovanie všetkých používateľov z {host}.\
@ -570,10 +506,7 @@ addItem: "Pridať položku"
relays: "Prenos" relays: "Prenos"
addRelay: "Pridať prenos" addRelay: "Pridať prenos"
inboxUrl: "Inbox URL" inboxUrl: "Inbox URL"
addedRelays: "Pridané prenosy"
serviceworkerInfo: "Musí byť zapnuté pre push notifikácie."
deletedNote: "Odstránené príspevky" deletedNote: "Odstránené príspevky"
invisibleNote: "Skryté príspevky"
enableInfiniteScroll: "Zapnúť nekonečné skrolovanie" enableInfiniteScroll: "Zapnúť nekonečné skrolovanie"
visibility: "Viditeľnosť" visibility: "Viditeľnosť"
poll: "Hlasovanie" poll: "Hlasovanie"
@ -583,14 +516,12 @@ disablePlayer: "Zavrieť video prehrávač"
themeEditor: "Editor tém" themeEditor: "Editor tém"
description: "Popis" description: "Popis"
describeFile: "Pridať nadpis" describeFile: "Pridať nadpis"
enterFileDescription: "Zadajte nadpis"
author: "Autor" author: "Autor"
leaveConfirm: "Máte neuložené zmeny. Chcete ich zahodiť?" leaveConfirm: "Máte neuložené zmeny. Chcete ich zahodiť?"
manage: "Administrácia" manage: "Administrácia"
plugins: "Pluginy" plugins: "Pluginy"
deck: "Deck" deck: "Deck"
useBlurEffectForModal: "Použiť efekt rozmazania na okná" useBlurEffectForModal: "Použiť efekt rozmazania na okná"
useFullReactionPicker: "Použiť plnú veľkosť výberu reakcií"
width: "Šírka" width: "Šírka"
height: "Výška" height: "Výška"
large: "Veľké" large: "Veľké"
@ -603,7 +534,6 @@ disableAll: "Vypnúť všetko"
tokenRequested: "Povoliť prístup k účtu" tokenRequested: "Povoliť prístup k účtu"
pluginTokenRequestedDescription: "Tento plugin bude môcť používať oprávnenia nastavené\ pluginTokenRequestedDescription: "Tento plugin bude môcť používať oprávnenia nastavené\
\ tu." \ tu."
notificationType: "Typ oznámenia"
edit: "Upraviť" edit: "Upraviť"
useStarForReactionFallback: "Použiť ★ keď emoji reakcie nie je známe" useStarForReactionFallback: "Použiť ★ keď emoji reakcie nie je známe"
emailServer: "Email server" emailServer: "Email server"
@ -629,10 +559,7 @@ userSaysSomething: "{name} niečo povedal/a"
makeActive: "Aktivovať" makeActive: "Aktivovať"
display: "Zobraziť" display: "Zobraziť"
copy: "Kopírovať" copy: "Kopírovať"
metrics: "Metriky"
overview: "Prehľad" overview: "Prehľad"
logs: "Logy"
delayed: "Oneskorené"
database: "Databáza" database: "Databáza"
channel: "Kanály" channel: "Kanály"
create: "Vytvoriť" create: "Vytvoriť"
@ -648,7 +575,6 @@ regenerateLoginTokenDescription: "Pregeneruje token interne používaný počas
setMultipleBySeparatingWithSpace: "Viaceré položky oddeľte medzerami." setMultipleBySeparatingWithSpace: "Viaceré položky oddeľte medzerami."
fileIdOrUrl: "ID alebo URL súboru" fileIdOrUrl: "ID alebo URL súboru"
behavior: "Správanie" behavior: "Správanie"
sample: "Ukážka"
abuseReports: "Nahlásenia" abuseReports: "Nahlásenia"
reportAbuse: "Nahlásiť" reportAbuse: "Nahlásiť"
reportAbuseOf: "Nahlásiť {name}" reportAbuseOf: "Nahlásiť {name}"
@ -663,12 +589,8 @@ forwardReportIsAnonymous: "Namiesto vášho účtu bude zobrazený anonymný sys
send: "Poslať" send: "Poslať"
abuseMarkAsResolved: "Označiť nahlásenia ako vyriešené" abuseMarkAsResolved: "Označiť nahlásenia ako vyriešené"
openInNewTab: "Otvoriť v novom tabe" openInNewTab: "Otvoriť v novom tabe"
openInSideView: "Otvoriť v bočnom paneli"
defaultNavigationBehaviour: "Predvolené správanie navigácie" defaultNavigationBehaviour: "Predvolené správanie navigácie"
editTheseSettingsMayBreakAccount: "Úpravou týchto nastavení si môžete pokaziť účet."
instanceTicker: "Informácie servera o poznámkach" instanceTicker: "Informácie servera o poznámkach"
waitingFor: "Čaká sa na {x}"
random: "Náhodné"
system: "Systém" system: "Systém"
switchUi: "Prepnúť UI" switchUi: "Prepnúť UI"
desktop: "Desktop" desktop: "Desktop"
@ -706,7 +628,6 @@ loadRawImages: "Načítať originálne obrázky namiesto miniatúr"
disableShowingAnimatedImages: "Neprehrávať animované obrázky" disableShowingAnimatedImages: "Neprehrávať animované obrázky"
verificationEmailSent: "Odoslali sme overovací email. Overenie dokončíte kliknutím\ verificationEmailSent: "Odoslali sme overovací email. Overenie dokončíte kliknutím\
\ na odkaz v emaili." \ na odkaz v emaili."
notSet: "Nenastavené"
emailVerified: "Email overený" emailVerified: "Email overený"
noteFavoritesCount: "Počet obľúbených poznámok" noteFavoritesCount: "Počet obľúbených poznámok"
pageLikesCount: "Počet obľúbených stránok" pageLikesCount: "Počet obľúbených stránok"
@ -714,8 +635,6 @@ pageLikedCount: "Počet prijatých \"páči sa mi\""
contact: "Kontakt" contact: "Kontakt"
useSystemFont: "Použiť predvolené systémové písmo" useSystemFont: "Použiť predvolené systémové písmo"
clips: "Klip" clips: "Klip"
experimentalFeatures: "Experimentálne funkcie"
developer: "Vývojár"
makeExplorable: "Spraviť účet viditeľný v \"Objavovať\"" makeExplorable: "Spraviť účet viditeľný v \"Objavovať\""
makeExplorableDescription: "Ak toto vypnete, váš účet sa nezobrazí v sekcii \"Objavovat\"\ makeExplorableDescription: "Ak toto vypnete, váš účet sa nezobrazí v sekcii \"Objavovat\"\
." ."
@ -728,28 +647,16 @@ narrow: "Úzko"
reloadToApplySetting: "Toto nastavenia sa prejaví až po obnovení stránky. Obnoviť\ reloadToApplySetting: "Toto nastavenia sa prejaví až po obnovení stránky. Obnoviť\
\ teraz?" \ teraz?"
needReloadToApply: "Toto nastavenie sa prejaví až po obnovení stránky." needReloadToApply: "Toto nastavenie sa prejaví až po obnovení stránky."
showTitlebar: "Zobraziť riadok s nadpisom"
clearCache: "Vyprázdniť cache" clearCache: "Vyprázdniť cache"
onlineUsersCount: "{n} používateľov je online" onlineUsersCount: "{n} používateľov je online"
nUsers: "{n} používateľov"
nNotes: "{n} poznámok"
myTheme: "Moja téma"
backgroundColor: "Pozadie" backgroundColor: "Pozadie"
accentColor: "Akcent" accentColor: "Akcent"
textColor: "Text" textColor: "Text"
saveAs: "Uložiť ako..." saveAs: "Uložiť ako..."
advanced: "Rozšírené"
value: "Hodnoty"
createdAt: "Vytvorené" createdAt: "Vytvorené"
updatedAt: "Upravené" updatedAt: "Upravené"
saveConfirm: "Uložiť zmeny?"
deleteConfirm: "Naozaj odstrániť?" deleteConfirm: "Naozaj odstrániť?"
invalidValue: "Nesprávna hodnota."
registry: "Register"
closeAccount: "Zavrieť účet" closeAccount: "Zavrieť účet"
currentVersion: "Aktuálna verzia"
latestVersion: "Najnovšia verzia"
youAreRunningUpToDateClient: "Používate najnovšiu verziu vášho klienta."
newVersionOfClientAvailable: "Je dostupná novšia verzia vášho klienta." newVersionOfClientAvailable: "Je dostupná novšia verzia vášho klienta."
usageAmount: "Využitie" usageAmount: "Využitie"
capacity: "Kapacita" capacity: "Kapacita"
@ -759,11 +666,9 @@ apply: "Použiť"
receiveAnnouncementFromInstance: "Prijať notifikácie z tohoto servera" receiveAnnouncementFromInstance: "Prijať notifikácie z tohoto servera"
emailNotification: "Emailové upozornenia" emailNotification: "Emailové upozornenia"
publish: "Zverejniť" publish: "Zverejniť"
inChannelSearch: "Hľadať v kanáli"
useReactionPickerForContextMenu: "Otvoriť výber reakcií na pravý klik" useReactionPickerForContextMenu: "Otvoriť výber reakcií na pravý klik"
typingUsers: "{users} píše/u" typingUsers: "{users} píše/u"
jumpToSpecifiedDate: "Skočiť na konkrétny dátum" jumpToSpecifiedDate: "Skočiť na konkrétny dátum"
showingPastTimeline: "Práve vidíte starú časovú os"
clear: "Vrátiť" clear: "Vrátiť"
markAllAsRead: "Označiť všetko ako prečítané" markAllAsRead: "Označiť všetko ako prečítané"
goBack: "Späť" goBack: "Späť"
@ -778,7 +683,6 @@ notSpecifiedMentionWarning: "Táto poznámka obsahuje spomenutých používateľ
info: "Informácie" info: "Informácie"
userInfo: "Informácie o používateľovi" userInfo: "Informácie o používateľovi"
unknown: "Neznáme" unknown: "Neznáme"
onlineStatus: "Online status"
hideOnlineStatus: "Skryť online status" hideOnlineStatus: "Skryť online status"
hideOnlineStatusDescription: "Skrytie vášho online statusu zníži pohodlnosť niektorých\ hideOnlineStatusDescription: "Skrytie vášho online statusu zníži pohodlnosť niektorých\
\ funkcií ako napríklad vyhľadávanie." \ funkcií ako napríklad vyhľadávanie."
@ -805,22 +709,13 @@ gallery: "Galéria"
recentPosts: "Najnovšie príspevky" recentPosts: "Najnovšie príspevky"
popularPosts: "Populárne príspevky" popularPosts: "Populárne príspevky"
shareWithNote: "Zdieľať s poznámkou" shareWithNote: "Zdieľať s poznámkou"
expiration: "Ukončiť hlasovanie"
memo: "Memo"
priority: "Priorita"
high: "Vysoká"
middle: "Stredné"
low: "Málo"
emailNotConfiguredWarning: "Nie je nastavená emailová adresa." emailNotConfiguredWarning: "Nie je nastavená emailová adresa."
ratio: "Pomer" ratio: "Pomer"
previewNoteText: "Zobraziť náhľad" previewNoteText: "Zobraziť náhľad"
customCss: "Vlastné CSS" customCss: "Vlastné CSS"
customCssWarn: "Toto nastavenie by sa malo používať iba ak viete čo robíte. Zadanie\ customCssWarn: "Toto nastavenie by sa malo používať iba ak viete čo robíte. Zadanie\
\ nesprávnych hodnôt môže spôsobiť nenormálne správanie klienta." \ nesprávnych hodnôt môže spôsobiť nenormálne správanie klienta."
global: "Globálne"
squareAvatars: "Zobrazovať štvorcové avatary" squareAvatars: "Zobrazovať štvorcové avatary"
sent: "Poslať"
received: "Prijaté"
searchResult: "Výsledky hľadania" searchResult: "Výsledky hľadania"
hashtags: "Hashtagy" hashtags: "Hashtagy"
troubleshooting: "Riešenie problémov" troubleshooting: "Riešenie problémov"
@ -907,9 +802,6 @@ _accountDelete:
requestAccountDelete: "Požiadať o zmazanie účtu" requestAccountDelete: "Požiadať o zmazanie účtu"
started: "Odstraňovanie začalo." started: "Odstraňovanie začalo."
inProgress: "Odstraňovanie prebieha" inProgress: "Odstraňovanie prebieha"
_ad:
back: "Späť"
reduceFrequencyOfThisAd: "Túto reklamu zobrazovať menej"
_forgotPassword: _forgotPassword:
enterEmail: "Zadajte emailovú adresu, ktorú ste použili pri registrácii. Pošleme\ enterEmail: "Zadajte emailovú adresu, ktorú ste použili pri registrácii. Pošleme\
\ vám na ňu odkaz, cez ktorý si môžete obnoviť heslo." \ vám na ňu odkaz, cez ktorý si môžete obnoviť heslo."
@ -929,7 +821,6 @@ _email:
_plugin: _plugin:
install: "Inštalova pluginy" install: "Inštalova pluginy"
installWarn: "Prosím neinštalujte nedôveryhodné pluginy." installWarn: "Prosím neinštalujte nedôveryhodné pluginy."
manage: "Spravovanie pluginov"
_registry: _registry:
scope: "Oblasť" scope: "Oblasť"
key: "Kľúč" key: "Kľúč"
@ -938,10 +829,8 @@ _registry:
createKey: "Vytvoriť kľúč" createKey: "Vytvoriť kľúč"
_aboutMisskey: _aboutMisskey:
about: "FoundKey je open-source softvér, ktorý vyvíja syuilo od 2014." about: "FoundKey je open-source softvér, ktorý vyvíja syuilo od 2014."
contributors: "Hlavní prispievatelia"
allContributors: "Všetci prispievatelia" allContributors: "Všetci prispievatelia"
source: "Zdrojový kód" source: "Zdrojový kód"
translation: "Preložiť FoundKey"
_nsfw: _nsfw:
respect: "Skryť NSFW médiá" respect: "Skryť NSFW médiá"
ignore: "Neskrývať NSFW médiá" ignore: "Neskrývať NSFW médiá"
@ -1066,68 +955,6 @@ _theme:
alreadyInstalled: "Táto téma je už nainštalovaná" alreadyInstalled: "Táto téma je už nainštalovaná"
invalid: "Formát tejto témy je nesprávny" invalid: "Formát tejto témy je nesprávny"
make: "Vytvoriť tému" make: "Vytvoriť tému"
base: "Základ"
addConstant: "Pridať konštantu"
constant: "Konštanta"
defaultValue: "Predvolená hodnota"
color: "Farba"
refProp: "Odkaz na vlastnosť"
refConst: "Odkaz na konštantu"
key: "Kľúč"
func: "Funkcie"
funcKind: "Typ funkcie"
argument: "Argument"
basedProp: "Odkazovaná vlastnosť"
alpha: "Priehľadnosť"
darken: "Stmaviť"
lighten: "Zosvetliť"
inputConstantName: "Zadajte názov tejto konštanty"
importInfo: "Ak sem zadáte kód témy, môžete ju importovať do editora tém."
deleteConstantConfirm: "Naozaj chcete odstrániť konštantu {const}?"
keys:
accent: "Akcent"
bg: "Pozadie"
fg: "Text"
focus: "Fokus"
indicator: "Indikátor"
panel: "Panel"
shadow: "Tieň"
header: "Hlavička"
navBg: "Pozadie bočného panela"
navFg: "Text bočného panela"
navHoverFg: "Text bočného panela (pod kurzorom)"
navActive: "Text bočného panela (aktívny)"
navIndicator: "Indikátor bočného panela"
link: "Odkaz"
hashtag: "Hashtag"
mention: "Zmienka"
mentionMe: "Zmienky (mňa)"
renote: "Preposlať"
modalBg: "Pozadie modálu"
divider: "Oddeľovač"
scrollbarHandle: "Rúčka scrollbaru"
scrollbarHandleHover: "Rúčka scrollbaru (pod kurzorom)"
dateLabelFg: "Text dátového popisku"
infoBg: "Pozadie informácií"
infoFg: "Informačný text"
infoWarnBg: "Pozadie varovania"
infoWarnFg: "Text varovania"
cwBg: "CW pozadie tlačidla"
cwFg: "CW text tlačidla"
cwHoverBg: "CW pozadie tlačidla (pod kurzorom)"
toastBg: "Pozadie upozornenia"
toastFg: "Text upozornenia"
buttonBg: "Pozadie tlačidla"
buttonHoverBg: "Pozadie tlačidla (pod kurzorom)"
inputBorder: "Okraj vstupného poľa"
listItemHoverBg: "Pozadie položky zoznamu (pod kurzorom)"
driveFolderBg: "Pozadie priečinu disku"
wallpaperOverlay: "Vrstvenie pozadia"
badge: "Odznak"
messageBg: "Pozadie chatu"
accentDarken: "Akcent (stmavené)"
accentLighten: "Akcent (zosvetlené)"
fgHighlighted: "Zvýraznený text"
_sfx: _sfx:
note: "Poznámky" note: "Poznámky"
noteMy: "Vlastná poznámka" noteMy: "Vlastná poznámka"
@ -1408,7 +1235,6 @@ _relayStatus:
accepted: "Akceptované" accepted: "Akceptované"
rejected: "Odmietnuté" rejected: "Odmietnuté"
_notification: _notification:
fileUploaded: "Súbor sa úspešne nahral"
youGotMention: "{name} vás spomenul/a" youGotMention: "{name} vás spomenul/a"
youGotReply: "{name} vám odpovedal/a" youGotReply: "{name} vám odpovedal/a"
youGotQuote: "{name} vás citoval/a" youGotQuote: "{name} vás citoval/a"
@ -1422,7 +1248,6 @@ _notification:
youWereInvitedToGroup: "Pozvať do skupiny" youWereInvitedToGroup: "Pozvať do skupiny"
pollEnded: "Výsledky hlasovania sú k dispozícii." pollEnded: "Výsledky hlasovania sú k dispozícii."
_types: _types:
all: "Všetky"
follow: "Sledujete" follow: "Sledujete"
mention: "Zmienka" mention: "Zmienka"
reply: "Odpovede" reply: "Odpovede"

View file

@ -14,7 +14,6 @@ fetchingAsApObject: "Hämtar från Fediversum..."
ok: "OK" ok: "OK"
gotIt: "Uppfattat!" gotIt: "Uppfattat!"
cancel: "Avbryt" cancel: "Avbryt"
enterUsername: "Ange användarnamn"
renotedBy: "Omnoterad av {user}" renotedBy: "Omnoterad av {user}"
noNotes: "Inga noteringar" noNotes: "Inga noteringar"
noNotifications: "Inga aviseringar" noNotifications: "Inga aviseringar"
@ -30,16 +29,12 @@ login: "Logga in"
loggingIn: "Loggar in" loggingIn: "Loggar in"
logout: "Logga ut" logout: "Logga ut"
signup: "Registrera" signup: "Registrera"
uploading: "Uppladdning sker..."
save: "Spara" save: "Spara"
users: "Användare" users: "Användare"
addUser: "Lägg till användare" addUser: "Lägg till användare"
favorite: "Lägg till i favoriter" favorite: "Lägg till i favoriter"
favorites: "Favoriter" favorites: "Favoriter"
unfavorite: "Avfavorisera" unfavorite: "Avfavorisera"
favorited: "Tillagd i favoriter."
alreadyFavorited: "Redan tillagd i favoriter."
cantFavorite: "Gick inte att lägga till i favoriter."
pin: "Fäst till profil" pin: "Fäst till profil"
unpin: "Lossa från profil" unpin: "Lossa från profil"
copyContent: "Kopiera innehåll" copyContent: "Kopiera innehåll"
@ -51,7 +46,6 @@ deleteAndEditConfirm: "Är du säker att du vill radera denna not och ändra den
addToList: "Lägg till i lista" addToList: "Lägg till i lista"
sendMessage: "Skicka ett meddelande" sendMessage: "Skicka ett meddelande"
copyUsername: "Kopiera användarnamn" copyUsername: "Kopiera användarnamn"
searchUser: "Sök användare"
reply: "Svara" reply: "Svara"
loadMore: "Ladda mer" loadMore: "Ladda mer"
showMore: "Visa mer" showMore: "Visa mer"
@ -73,7 +67,6 @@ exportRequested: "Du har begärt en export. Detta kan ta lite tid. Den kommer l
\ till i din Drive när den blir klar." \ till i din Drive när den blir klar."
importRequested: "Du har begärt en import. Detta kan ta lite tid." importRequested: "Du har begärt en import. Detta kan ta lite tid."
lists: "Listor" lists: "Listor"
noLists: "Du har inga listor"
note: "Not" note: "Not"
notes: "Noter" notes: "Noter"
following: "Följer" following: "Följer"
@ -99,21 +92,15 @@ followRequest: "Skicka följarförfrågan"
followRequests: "Följarförfrågningar" followRequests: "Följarförfrågningar"
unfollow: "Avfölj" unfollow: "Avfölj"
followRequestPending: "Följarförfrågning avvaktar för svar" followRequestPending: "Följarförfrågning avvaktar för svar"
enterEmoji: "Skriv en emoji"
renote: "Omnotera" renote: "Omnotera"
unrenote: "Ta tillbaka omnotering" unrenote: "Ta tillbaka omnotering"
renoted: "Omnoterad."
cantRenote: "Inlägget kunde inte bli omnoterat."
cantReRenote: "En omnotering kan inte bli omnoterad."
quote: "Citat" quote: "Citat"
pinnedNote: "Fästad not" pinnedNote: "Fästad not"
pinned: "Fäst till profil"
you: "Du" you: "Du"
clickToShow: "Klicka för att visa" clickToShow: "Klicka för att visa"
sensitive: "Känsligt innehåll" sensitive: "Känsligt innehåll"
add: "Lägg till" add: "Lägg till"
reaction: "Reaktioner" reaction: "Reaktioner"
reactionSetting: "Reaktioner som ska visas i reaktionsväljaren"
reactionSettingDescription2: "Dra för att omordna, klicka för att radera, tryck \"\ reactionSettingDescription2: "Dra för att omordna, klicka för att radera, tryck \"\
+\" för att lägga till." +\" för att lägga till."
attachCancel: "Ta bort bilaga" attachCancel: "Ta bort bilaga"
@ -138,10 +125,7 @@ editWidgetsExit: "Avsluta redigering"
customEmojis: "Anpassa emoji" customEmojis: "Anpassa emoji"
emoji: "Emoji" emoji: "Emoji"
emojis: "Emoji" emojis: "Emoji"
emojiName: "Emoji namn"
emojiUrl: "Emoji länk"
addEmoji: "Lägg till emoji" addEmoji: "Lägg till emoji"
settingGuide: "Rekommenderade inställningar"
cacheRemoteFiles: "Spara externa filer till cachen" cacheRemoteFiles: "Spara externa filer till cachen"
cacheRemoteFilesDescription: "När denna inställning är avstängd kommer externa filer\ cacheRemoteFilesDescription: "När denna inställning är avstängd kommer externa filer\
\ laddas direkt från den externa instansen. Genom att stänga av detta kommer lagringsutrymme\ \ laddas direkt från den externa instansen. Genom att stänga av detta kommer lagringsutrymme\
@ -162,7 +146,6 @@ addAccount: "Lägg till konto"
loginFailed: "Inloggningen misslyckades" loginFailed: "Inloggningen misslyckades"
showOnRemote: "Se på extern instans" showOnRemote: "Se på extern instans"
general: "Allmänt" general: "Allmänt"
wallpaper: "Bakgrundsbild"
setWallpaper: "Välj bakgrund" setWallpaper: "Välj bakgrund"
removeWallpaper: "Ta bort bakgrund" removeWallpaper: "Ta bort bakgrund"
youHaveNoLists: "Du har inga listor" youHaveNoLists: "Du har inga listor"
@ -178,27 +161,19 @@ selectUser: "Välj användare"
recipient: "Mottagare" recipient: "Mottagare"
annotation: "Kommentarer" annotation: "Kommentarer"
federation: "Federation" federation: "Federation"
instances: "Instanser"
registeredAt: "Registrerad på" registeredAt: "Registrerad på"
latestRequestSentAt: "Senaste förfrågan skickad" latestRequestSentAt: "Senaste förfrågan skickad"
latestRequestReceivedAt: "Senaste begäran mottagen" latestRequestReceivedAt: "Senaste begäran mottagen"
latestStatus: "Senaste status" latestStatus: "Senaste status"
storageUsage: "Använt lagringsutrymme"
charts: "Diagram" charts: "Diagram"
perHour: "Per timme" perHour: "Per timme"
perDay: "Per dag" perDay: "Per dag"
stopActivityDelivery: "Sluta skicka aktiviteter" stopActivityDelivery: "Sluta skicka aktiviteter"
blockThisInstance: "Blockera instans" blockThisInstance: "Blockera instans"
operations: "Operationer"
software: "Mjukvara" software: "Mjukvara"
version: "Version" version: "Version"
metadata: "Metadata"
withNFiles: "{n} fil(er)" withNFiles: "{n} fil(er)"
monitor: "Övervakning"
jobQueue: "Jobbkö" jobQueue: "Jobbkö"
cpuAndMemory: "CPU och minne"
network: "Nätverk"
disk: "Disk"
instanceInfo: "Instansinformation" instanceInfo: "Instansinformation"
statistics: "Statistik" statistics: "Statistik"
clearQueue: "Rensa kö" clearQueue: "Rensa kö"
@ -231,9 +206,6 @@ all: "Allt"
subscribing: "Prenumererar" subscribing: "Prenumererar"
publishing: "Publiceras" publishing: "Publiceras"
notResponding: "Svarar inte" notResponding: "Svarar inte"
instanceFollowing: "Följer på instans"
instanceFollowers: "Följare av instans"
instanceUsers: "Användare av denna instans"
changePassword: "Ändra lösenord" changePassword: "Ändra lösenord"
security: "Säkerhet" security: "Säkerhet"
retypedNotMatch: "Inmatningen matchar inte" retypedNotMatch: "Inmatningen matchar inte"
@ -249,7 +221,6 @@ lookup: "Sökning"
announcements: "Nyheter" announcements: "Nyheter"
imageUrl: "Bild-URL" imageUrl: "Bild-URL"
remove: "Radera" remove: "Radera"
removed: "Borttaget"
removeAreYouSure: "Är du säker att du vill radera \"{x}\"?" removeAreYouSure: "Är du säker att du vill radera \"{x}\"?"
deleteAreYouSure: "Är du säker att du vill radera \"{x}\"?" deleteAreYouSure: "Är du säker att du vill radera \"{x}\"?"
resetAreYouSure: "Vill du återställa?" resetAreYouSure: "Vill du återställa?"
@ -258,7 +229,6 @@ messaging: "Chatt"
upload: "Ladda upp" upload: "Ladda upp"
keepOriginalUploading: "Behåll originalbild" keepOriginalUploading: "Behåll originalbild"
nsfw: "Känsligt innehåll" nsfw: "Känsligt innehåll"
pinnedNotes: "Fästad not"
userList: "Listor" userList: "Listor"
smtpHost: "Värd" smtpHost: "Värd"
smtpUser: "Användarnamn" smtpUser: "Användarnamn"
@ -273,10 +243,7 @@ _mfm:
quote: "Citat" quote: "Citat"
emoji: "Anpassa emoji" emoji: "Anpassa emoji"
search: "Sök" search: "Sök"
_theme: _theme: {}
keys:
mention: "Nämn"
renote: "Omnotera"
_sfx: _sfx:
note: "Noter" note: "Noter"
notification: "Notifikationer" notification: "Notifikationer"

View file

@ -14,7 +14,6 @@ forgotPassword: "şifremi unuttum"
ok: "TAMAM" ok: "TAMAM"
gotIt: "Anladım" gotIt: "Anladım"
cancel: "İptal" cancel: "İptal"
enterUsername: "Kullanıcı adınızı giriniz"
noNotes: "Notlar mevcut değil." noNotes: "Notlar mevcut değil."
noNotifications: "Bildirim bulunmuyor" noNotifications: "Bildirim bulunmuyor"
settings: "Ayarlar" settings: "Ayarlar"
@ -27,14 +26,11 @@ noAccountDescription: "Bu kullanıcı henüz biyografisini yazmadı"
login: "Giriş Yap " login: "Giriş Yap "
logout: ıkış Yap" logout: ıkış Yap"
signup: "Kayıt Ol" signup: "Kayıt Ol"
uploading: "Yükleniyor"
users: "Kullanıcı" users: "Kullanıcı"
addUser: "Kullanıcı Ekle" addUser: "Kullanıcı Ekle"
favorite: "Favoriler" favorite: "Favoriler"
favorites: "Favoriler" favorites: "Favoriler"
unfavorite: "Favorilerden Kaldır" unfavorite: "Favorilerden Kaldır"
favorited: "Favorilerime eklendi."
alreadyFavorited: "Zaten favorilerinizde kayıtlı."
pin: "Sabitlenmiş" pin: "Sabitlenmiş"
unpin: "Sabitlemeyi kaldır" unpin: "Sabitlemeyi kaldır"
copyContent: "İçeriği kopyala" copyContent: "İçeriği kopyala"
@ -46,8 +42,6 @@ deleteAndEditConfirm: "Bu notu silip yeniden düzenlemek istiyor musunuz? Bu not
addToList: "Listeye ekle" addToList: "Listeye ekle"
sendMessage: "Mesaj Gönder" sendMessage: "Mesaj Gönder"
copyUsername: "Kullanıcı Adını Kopyala" copyUsername: "Kullanıcı Adını Kopyala"
searchUser: "Kullanıcıları ara"
pinned: "Sabitlenmiş"
remove: "Sil" remove: "Sil"
smtpUser: "Kullanıcı Adı" smtpUser: "Kullanıcı Adı"
smtpPass: "Şifre" smtpPass: "Şifre"

View file

@ -14,7 +14,6 @@ fetchingAsApObject: "Отримуємо з федіверсу..."
ok: "OK" ok: "OK"
gotIt: "Зрозуміло!" gotIt: "Зрозуміло!"
cancel: "Скасувати" cancel: "Скасувати"
enterUsername: "Введіть ім'я користувача"
renotedBy: "Поширено {user}" renotedBy: "Поширено {user}"
noNotes: "Немає нотаток" noNotes: "Немає нотаток"
noNotifications: "Немає сповіщень" noNotifications: "Немає сповіщень"
@ -30,16 +29,12 @@ login: "Увійти"
loggingIn: "Здійснюємо вхід..." loggingIn: "Здійснюємо вхід..."
logout: "Вийти" logout: "Вийти"
signup: "Реєстрація" signup: "Реєстрація"
uploading: "Завантаження..."
save: "Зберегти" save: "Зберегти"
users: "Користувачі" users: "Користувачі"
addUser: "Додати користувача" addUser: "Додати користувача"
favorite: "Обране" favorite: "Обране"
favorites: "Обране" favorites: "Обране"
unfavorite: "Видалити з обраного" unfavorite: "Видалити з обраного"
favorited: "Додано до вподобаних."
alreadyFavorited: "Вже додано до вподобаних."
cantFavorite: "Неможливо вподобати."
pin: "Закріпити" pin: "Закріпити"
unpin: "Відкріпити" unpin: "Відкріпити"
copyContent: "Скопіювати контент" copyContent: "Скопіювати контент"
@ -51,7 +46,6 @@ deleteAndEditConfirm: "Ви впевнені, що хочете видалити
addToList: "Додати до списку" addToList: "Додати до списку"
sendMessage: "Надіслати повідомлення" sendMessage: "Надіслати повідомлення"
copyUsername: "Скопіювати ім’я користувача" copyUsername: "Скопіювати ім’я користувача"
searchUser: "Пошук користувачів"
reply: "Відповісти" reply: "Відповісти"
loadMore: "Показати більше" loadMore: "Показати більше"
showMore: "Показати більше" showMore: "Показати більше"
@ -73,7 +67,6 @@ exportRequested: "Експортування розпочато. Це може
\ експорту отриманий файл буде додано на диск." \ експорту отриманий файл буде додано на диск."
importRequested: "Імпортування розпочато. Це може зайняти деякий час." importRequested: "Імпортування розпочато. Це може зайняти деякий час."
lists: "Списки" lists: "Списки"
noLists: "Немає списків"
note: "Запис" note: "Запис"
notes: "Записи" notes: "Записи"
following: "Підписки" following: "Підписки"
@ -99,21 +92,15 @@ followRequest: "Запит на підписку"
followRequests: "Запити на підписку" followRequests: "Запити на підписку"
unfollow: "Відписатись" unfollow: "Відписатись"
followRequestPending: "Очікуючі запити на підписку" followRequestPending: "Очікуючі запити на підписку"
enterEmoji: "Введіть емодзі"
renote: "Поширити" renote: "Поширити"
unrenote: "Відміна поширення" unrenote: "Відміна поширення"
renoted: "Поширити запис."
cantRenote: "Неможливо поширити."
cantReRenote: "Поширення не можливо поширити."
quote: "Цитата" quote: "Цитата"
pinnedNote: "Закріплений запис" pinnedNote: "Закріплений запис"
pinned: "Закріпити"
you: "Ви" you: "Ви"
clickToShow: "Натисніть для перегляду" clickToShow: "Натисніть для перегляду"
sensitive: "NSFW" sensitive: "NSFW"
add: "Додати" add: "Додати"
reaction: "Реакції" reaction: "Реакції"
reactionSetting: "Налаштування реакцій"
reactionSettingDescription2: "Перемістити щоб змінити порядок, Клацнути мишою щоб\ reactionSettingDescription2: "Перемістити щоб змінити порядок, Клацнути мишою щоб\
\ видалити, Натиснути \"+\" щоб додати." \ видалити, Натиснути \"+\" щоб додати."
attachCancel: "Видалити вкладення" attachCancel: "Видалити вкладення"
@ -138,10 +125,7 @@ editWidgetsExit: "Готово"
customEmojis: "Кастомні емоджі" customEmojis: "Кастомні емоджі"
emoji: "Емоджі" emoji: "Емоджі"
emojis: "Емоджі" emojis: "Емоджі"
emojiName: "Назва емоджі"
emojiUrl: "URL емодзі"
addEmoji: "Додати емодзі" addEmoji: "Додати емодзі"
settingGuide: "Рекомендована конфігурація"
cacheRemoteFiles: "Кешувати дані з інших інстансів" cacheRemoteFiles: "Кешувати дані з інших інстансів"
cacheRemoteFilesDescription: "Якщо кешування вимкнено, віддалені файли завантажуються\ cacheRemoteFilesDescription: "Якщо кешування вимкнено, віддалені файли завантажуються\
\ безпосередньо з віддаленого інстансу. Це зменшує використання сховища, але збільшує\ \ безпосередньо з віддаленого інстансу. Це зменшує використання сховища, але збільшує\
@ -161,7 +145,6 @@ addAccount: "Додати акаунт"
loginFailed: "Не вдалося увійти" loginFailed: "Не вдалося увійти"
showOnRemote: "Переглянути в оригіналі" showOnRemote: "Переглянути в оригіналі"
general: "Загальне" general: "Загальне"
wallpaper: "Шпалери"
setWallpaper: "Встановити шпалери" setWallpaper: "Встановити шпалери"
removeWallpaper: "Прибрати шпалери" removeWallpaper: "Прибрати шпалери"
youHaveNoLists: "У вас немає списків" youHaveNoLists: "У вас немає списків"
@ -177,27 +160,19 @@ selectUser: "Виберіть користувача"
recipient: "Отримувач" recipient: "Отримувач"
annotation: "Коментарі" annotation: "Коментарі"
federation: "Федіверс" federation: "Федіверс"
instances: "Інстанс"
registeredAt: "Приєднався(лась)" registeredAt: "Приєднався(лась)"
latestRequestSentAt: "Останній запит надіслано" latestRequestSentAt: "Останній запит надіслано"
latestRequestReceivedAt: "Останній запит прийнято" latestRequestReceivedAt: "Останній запит прийнято"
latestStatus: "Останній статус" latestStatus: "Останній статус"
storageUsage: "Використання простору"
charts: "Графіки" charts: "Графіки"
perHour: "Щогодинно" perHour: "Щогодинно"
perDay: "Щоденно" perDay: "Щоденно"
stopActivityDelivery: "Припинити розсилання активності" stopActivityDelivery: "Припинити розсилання активності"
blockThisInstance: "Заблокувати цей інстанс" blockThisInstance: "Заблокувати цей інстанс"
operations: "Операції"
software: "Програмне забезпечення" software: "Програмне забезпечення"
version: "Версія" version: "Версія"
metadata: "Метадані"
withNFiles: "файли: {n}" withNFiles: "файли: {n}"
monitor: "Монітор"
jobQueue: "Черга завдань" jobQueue: "Черга завдань"
cpuAndMemory: "ЦП та пам'ять"
network: "Мережа"
disk: "Диск"
instanceInfo: "Про цей інстанс" instanceInfo: "Про цей інстанс"
statistics: "Статистика" statistics: "Статистика"
clearQueue: "Очистити чергу" clearQueue: "Очистити чергу"
@ -230,9 +205,6 @@ all: "Всі"
subscribing: "Підписка" subscribing: "Підписка"
publishing: "Публікація" publishing: "Публікація"
notResponding: "Не відповідає" notResponding: "Не відповідає"
instanceFollowing: "Підписка на інстанс"
instanceFollowers: "Підписники інстансу"
instanceUsers: "Користувачі цього інстансу"
changePassword: "Змінити пароль" changePassword: "Змінити пароль"
security: "Безпека" security: "Безпека"
retypedNotMatch: "Введені дані не збігаються." retypedNotMatch: "Введені дані не збігаються."
@ -248,7 +220,6 @@ lookup: "Пошук"
announcements: "Оголошення" announcements: "Оголошення"
imageUrl: "Посилання на зображення" imageUrl: "Посилання на зображення"
remove: "Видалити" remove: "Видалити"
removed: "Видалено"
removeAreYouSure: "Ви впевнені, що хочете видалити \"{x}\"?" removeAreYouSure: "Ви впевнені, що хочете видалити \"{x}\"?"
deleteAreYouSure: "Ви впевнені, що хочете видалити \"{x}\"?" deleteAreYouSure: "Ви впевнені, що хочете видалити \"{x}\"?"
resetAreYouSure: "Справді скинути?" resetAreYouSure: "Справді скинути?"
@ -289,7 +260,6 @@ lightThemes: "Світлі теми"
darkThemes: "Темні теми" darkThemes: "Темні теми"
syncDeviceDarkMode: "Синхронізувати темний режим із налаштуваннями вашого пристрою" syncDeviceDarkMode: "Синхронізувати темний режим із налаштуваннями вашого пристрою"
drive: "Диск" drive: "Диск"
fileName: "Ім'я файлу"
selectFile: "Вибрати файл" selectFile: "Вибрати файл"
selectFiles: "Вибрати файли" selectFiles: "Вибрати файли"
selectFolder: "Вибрати теку" selectFolder: "Вибрати теку"
@ -342,7 +312,6 @@ enableLocalTimeline: "Увімкнути локальну стрічку"
enableGlobalTimeline: "Увімкнути глобальну стрічку" enableGlobalTimeline: "Увімкнути глобальну стрічку"
disablingTimelinesInfo: "Адміністратори та модератори завжди мають доступ до всіх\ disablingTimelinesInfo: "Адміністратори та модератори завжди мають доступ до всіх\
\ стрічок, навіть якщо вони вимкнуті." \ стрічок, навіть якщо вони вимкнуті."
registration: "Реєстрація"
enableRegistration: "Дозволити реєстрацію" enableRegistration: "Дозволити реєстрацію"
invite: "Запросити" invite: "Запросити"
driveCapacityPerLocalAccount: "Об'єм диска на одного локального користувача" driveCapacityPerLocalAccount: "Об'єм диска на одного локального користувача"
@ -351,26 +320,13 @@ inMb: "В мегабайтах"
iconUrl: "URL аватара" iconUrl: "URL аватара"
bannerUrl: "URL банера" bannerUrl: "URL банера"
backgroundImageUrl: "URL-адреса фонового зображення" backgroundImageUrl: "URL-адреса фонового зображення"
basicInfo: "Основна інформація"
pinnedUsers: "Закріплені користувачі" pinnedUsers: "Закріплені користувачі"
pinnedUsersDescription: "Впишіть в список користувачів, яких хочете закріпити на сторінці\ pinnedUsersDescription: "Впишіть в список користувачів, яких хочете закріпити на сторінці\
\ \"Знайти\", ім'я в стовпчик." \ \"Знайти\", ім'я в стовпчик."
pinnedPages: "Закріплені сторінки"
pinnedPagesDescription: "Введіть шляхи сторінок, які ви бажаєте закріпити на головній\
\ сторінці цього інстанса, розділені новими рядками."
pinnedClipId: "Ідентифікатор закріпленої замітки."
pinnedNotes: "Закріплена нотатка"
hcaptcha: "hCaptcha"
enableHcaptcha: "Увімкнути hCaptcha"
hcaptchaSiteKey: "Ключ сайту" hcaptchaSiteKey: "Ключ сайту"
hcaptchaSecretKey: "Секретний ключ" hcaptchaSecretKey: "Секретний ключ"
recaptcha: "reCAPTCHA"
enableRecaptcha: "Увімкнути reCAPTCHA"
recaptchaSiteKey: "Ключ сайту" recaptchaSiteKey: "Ключ сайту"
recaptchaSecretKey: "Секретний ключ" recaptchaSecretKey: "Секретний ключ"
avoidMultiCaptchaConfirm: "Використання кількох систем Captcha може спричинити перешкоди\
\ між ними. Бажаєте вимкнути інші активні системи Captcha? Якщо ви хочете, щоб вони\
\ залишалися ввімкненими, натисніть «Скасувати»."
antennas: "Антени" antennas: "Антени"
manageAntennas: "Налаштування антен" manageAntennas: "Налаштування антен"
name: "Ім'я" name: "Ім'я"
@ -381,7 +337,6 @@ antennaKeywordsDescription: "Розділення ключових слів пр
\ лінійки для \"АБО\"" \ лінійки для \"АБО\""
notifyAntenna: "Сповіщати про нові нотатки" notifyAntenna: "Сповіщати про нові нотатки"
withFileAntenna: "Тільки нотатки з вкладеними файлами" withFileAntenna: "Тільки нотатки з вкладеними файлами"
enableServiceworker: "Ввімкнути ServiceWorker"
antennaUsersDescription: "Список імя користувачів в стопчик" antennaUsersDescription: "Список імя користувачів в стопчик"
caseSensitive: "З урахуванням регістру" caseSensitive: "З урахуванням регістру"
withReplies: "Включаючи відповіді" withReplies: "Включаючи відповіді"
@ -396,11 +351,8 @@ popularUsers: "Популярні користувачі"
recentlyUpdatedUsers: "Нещодавно активні користувачі" recentlyUpdatedUsers: "Нещодавно активні користувачі"
recentlyRegisteredUsers: "Нещодавно зареєстровані користувачі" recentlyRegisteredUsers: "Нещодавно зареєстровані користувачі"
recentlyDiscoveredUsers: "Нещодавно знайдені користувачі" recentlyDiscoveredUsers: "Нещодавно знайдені користувачі"
exploreUsersCount: "{count} користувачів"
exploreFediverse: "Огляд федіверсу"
popularTags: "Популярні теги" popularTags: "Популярні теги"
userList: "Списки" userList: "Списки"
about: "Інформація"
aboutMisskey: "Про FoundKey" aboutMisskey: "Про FoundKey"
administrator: "Адмін" administrator: "Адмін"
token: "Токен" token: "Токен"
@ -420,7 +372,6 @@ share: "Поділитись"
notFound: "Не знайдено" notFound: "Не знайдено"
notFoundDescription: "Сторінка за вказаною адресою не знайдена." notFoundDescription: "Сторінка за вказаною адресою не знайдена."
uploadFolder: "Місце для завантаження за замовчуванням" uploadFolder: "Місце для завантаження за замовчуванням"
cacheClear: "Очистити кеш"
markAsReadAllNotifications: "Позначити всі сповіщення як прочитані" markAsReadAllNotifications: "Позначити всі сповіщення як прочитані"
markAsReadAllUnreadNotes: "Позначити всі нотатки як прочитані" markAsReadAllUnreadNotes: "Позначити всі нотатки як прочитані"
markAsReadAllTalkMessages: "Позначити всі повідомлення як прочитані" markAsReadAllTalkMessages: "Позначити всі повідомлення як прочитані"
@ -451,7 +402,6 @@ noMessagesYet: "Ще немає повідомлень"
newMessageExists: "Є нові повідомлення" newMessageExists: "Є нові повідомлення"
onlyOneFileCanBeAttached: "До повідомлення можна вкласти лише один файл" onlyOneFileCanBeAttached: "До повідомлення можна вкласти лише один файл"
signinRequired: "Будь ласка, авторизуйтесь" signinRequired: "Будь ласка, авторизуйтесь"
invitations: "Запрошення"
invitationCode: "Код запрошення" invitationCode: "Код запрошення"
checking: "Перевірка…" checking: "Перевірка…"
available: "Доступно" available: "Доступно"
@ -471,7 +421,6 @@ or: "або"
language: "Мова" language: "Мова"
uiLanguage: "Мова інтерфейсу" uiLanguage: "Мова інтерфейсу"
groupInvited: "Запрошення до групи" groupInvited: "Запрошення до групи"
aboutX: "Про {x}"
useOsNativeEmojis: "Використовувати емодзі ОС" useOsNativeEmojis: "Використовувати емодзі ОС"
disableDrawer: "Не використовувати висувні меню" disableDrawer: "Не використовувати висувні меню"
youHaveNoGroups: "Немає груп" youHaveNoGroups: "Немає груп"
@ -479,27 +428,19 @@ joinOrCreateGroup: "Отримуйте запрошення до груп або
noHistory: "Історія порожня" noHistory: "Історія порожня"
signinHistory: "Історія входів" signinHistory: "Історія входів"
disableAnimatedMfm: "Відключити анімації MFM" disableAnimatedMfm: "Відключити анімації MFM"
doing: "Виконується"
category: "Категорія" category: "Категорія"
tags: "Теги" tags: "Теги"
docSource: "Джерело цього документа"
createAccount: "Створити акаунт" createAccount: "Створити акаунт"
existingAccount: "Існуючий обліковий запис" existingAccount: "Існуючий обліковий запис"
regenerate: "Оновити"
fontSize: "Розмір шрифту" fontSize: "Розмір шрифту"
noFollowRequests: "Немає запитів на підписку" noFollowRequests: "Немає запитів на підписку"
openImageInNewTab: "Відкрити зображення в новій вкладці" openImageInNewTab: "Відкрити зображення в новій вкладці"
dashboard: "Панель приладів" dashboard: "Панель приладів"
local: "Локальні" local: "Локальні"
remote: "Віддалені" remote: "Віддалені"
total: "Всього"
weekOverWeekChanges: "Тиждень"
dayOverDayChanges: "Доба" dayOverDayChanges: "Доба"
appearance: "Вигляд" appearance: "Вигляд"
clientSettings: "Налаштування клієнта" clientSettings: "Налаштування клієнта"
accountSettings: "Налаштування акаунта"
numberOfDays: "Кількість днів"
hideThisNote: "Сховати цю нотатку"
showFeaturedNotesInTimeline: "Показувати популярні нотатки у стрічці" showFeaturedNotesInTimeline: "Показувати популярні нотатки у стрічці"
objectStorage: "Object Storage" objectStorage: "Object Storage"
useObjectStorage: "Використовувати object storage" useObjectStorage: "Використовувати object storage"
@ -523,8 +464,6 @@ objectStorageUseProxy: "Використовувати Proxy"
objectStorageUseProxyDesc: "Вимкніть коли проксі не використовується для з'єднання\ objectStorageUseProxyDesc: "Вимкніть коли проксі не використовується для з'єднання\
\ ObjectStorage" \ ObjectStorage"
objectStorageSetPublicRead: "Встановіть 'публічне читання' при завантаженні" objectStorageSetPublicRead: "Встановіть 'публічне читання' при завантаженні"
serverLogs: "Журнал сервера"
deleteAll: "Видалити все"
showFixedPostForm: "Показати форму запису над стрічкою новин." showFixedPostForm: "Показати форму запису над стрічкою новин."
newNoteRecived: "Є нові нотатки" newNoteRecived: "Є нові нотатки"
sounds: "Звуки" sounds: "Звуки"
@ -535,7 +474,6 @@ popout: "Від'єднати"
volume: "Гучність" volume: "Гучність"
masterVolume: "Загальна гучність" masterVolume: "Загальна гучність"
details: "Детальніше" details: "Детальніше"
chooseEmoji: "Виберіть емодзі"
unableToProcess: "Не вдається завершити операцію" unableToProcess: "Не вдається завершити операцію"
recentUsed: "Нещодавні" recentUsed: "Нещодавні"
install: "Встановити" install: "Встановити"
@ -552,9 +490,7 @@ scratchpad: "Чернетка"
scratchpadDescription: "Scratchpad надає середовище для експериментів з AiScript.\ scratchpadDescription: "Scratchpad надає середовище для експериментів з AiScript.\
\ Ви можете писати, виконувати його і тестувати взаємодію з FoundKey." \ Ви можете писати, виконувати його і тестувати взаємодію з FoundKey."
output: "Вихід" output: "Вихід"
script: "Скрипт"
updateRemoteUser: "Оновити інформацію про віддаленого користувача" updateRemoteUser: "Оновити інформацію про віддаленого користувача"
deleteAllFiles: "Видалити всі файли"
deleteAllFilesConfirm: "Ви дійсно хочете видалити всі файли?" deleteAllFilesConfirm: "Ви дійсно хочете видалити всі файли?"
removeAllFollowing: "Скасувати всі підписки" removeAllFollowing: "Скасувати всі підписки"
removeAllFollowingDescription: "Скасувати підписку на всі акаунти з {host}. Будь ласка,\ removeAllFollowingDescription: "Скасувати підписку на всі акаунти з {host}. Будь ласка,\
@ -571,10 +507,7 @@ addItem: "Додати елемент"
relays: "Ретранслятори" relays: "Ретранслятори"
addRelay: "Додати ретранслятор" addRelay: "Додати ретранслятор"
inboxUrl: "Inbox URL" inboxUrl: "Inbox URL"
addedRelays: "Додані ретранслятори"
serviceworkerInfo: "Повинен бути ввімкнений для push-сповіщень."
deletedNote: "Видалена нотатка" deletedNote: "Видалена нотатка"
invisibleNote: "Приховані записи"
enableInfiniteScroll: "Увімкнути нескінченну прокрутку" enableInfiniteScroll: "Увімкнути нескінченну прокрутку"
visibility: "Видимість" visibility: "Видимість"
poll: "Опитування" poll: "Опитування"
@ -584,15 +517,12 @@ disablePlayer: "Закрити відеоплеєр"
themeEditor: "Редактор тем" themeEditor: "Редактор тем"
description: "Опис" description: "Опис"
describeFile: "Додати підпис" describeFile: "Додати підпис"
enterFileDescription: "Введіть підпис"
author: "Автор" author: "Автор"
leaveConfirm: "Зміни не збережені. Ви дійсно хочете скасувати зміни?" leaveConfirm: "Зміни не збережені. Ви дійсно хочете скасувати зміни?"
manage: "Управління" manage: "Управління"
plugins: "Плагіни" plugins: "Плагіни"
deck: "Дек" deck: "Дек"
undeck: "Залишити Дек"
useBlurEffectForModal: "Ефект розмиття під модальними діалогами" useBlurEffectForModal: "Ефект розмиття під модальними діалогами"
useFullReactionPicker: "Повнорозмірний селектор реакцій"
width: "Ширина" width: "Ширина"
height: "Висота" height: "Висота"
large: "Крупний" large: "Крупний"
@ -605,7 +535,6 @@ disableAll: "Вимкнути все"
tokenRequested: "Надати доступ до акаунту" tokenRequested: "Надати доступ до акаунту"
pluginTokenRequestedDescription: "Цей плагін зможе використовувати дозволи які тут\ pluginTokenRequestedDescription: "Цей плагін зможе використовувати дозволи які тут\
\ вказані." \ вказані."
notificationType: "Тип сповіщення"
edit: "Редагувати" edit: "Редагувати"
useStarForReactionFallback: "Використовувати ★ як запасний варіант, якщо емодзі реакції\ useStarForReactionFallback: "Використовувати ★ як запасний варіант, якщо емодзі реакції\
\ невідомий" \ невідомий"
@ -634,10 +563,7 @@ userSaysSomething: "{name} щось сказав(ла)"
makeActive: "Активувати" makeActive: "Активувати"
display: "Відображення" display: "Відображення"
copy: "Скопіювати" copy: "Скопіювати"
metrics: "Показники"
overview: "Огляд" overview: "Огляд"
logs: "Журнал"
delayed: "Затримка"
database: "База даних" database: "База даних"
channel: "Канали" channel: "Канали"
create: "Створити" create: "Створити"
@ -654,7 +580,6 @@ regenerateLoginTokenDescription: "Регенерувати внутрішній
setMultipleBySeparatingWithSpace: "Можна вказати кілька значень, відділивши їх пробілом." setMultipleBySeparatingWithSpace: "Можна вказати кілька значень, відділивши їх пробілом."
fileIdOrUrl: "Ідентифікатор файлу або посилання" fileIdOrUrl: "Ідентифікатор файлу або посилання"
behavior: "Поведінка" behavior: "Поведінка"
sample: "Приклад"
abuseReports: "Скарги" abuseReports: "Скарги"
reportAbuse: "Поскаржитись" reportAbuse: "Поскаржитись"
reportAbuseOf: "Поскаржитись на {name}" reportAbuseOf: "Поскаржитись на {name}"
@ -669,13 +594,8 @@ forwardReportIsAnonymous: "Замість вашого облікового за
send: "Відправити" send: "Відправити"
abuseMarkAsResolved: "Позначити скаргу як вирішену" abuseMarkAsResolved: "Позначити скаргу як вирішену"
openInNewTab: "Відкрити в новій вкладці" openInNewTab: "Відкрити в новій вкладці"
openInSideView: "Відкрити збоку"
defaultNavigationBehaviour: "Поведінка навігації за замовчуванням" defaultNavigationBehaviour: "Поведінка навігації за замовчуванням"
editTheseSettingsMayBreakAccount: "Зміна цих параметрів може призвести до пошкодження\
\ вашого акаунта."
instanceTicker: "Мітка з назвою інстанса в нотатках" instanceTicker: "Мітка з назвою інстанса в нотатках"
waitingFor: "Чекаємо на {x}"
random: "Випадковий"
system: "Система" system: "Система"
switchUi: "Інтерфейс" switchUi: "Інтерфейс"
desktop: "Десктоп" desktop: "Десктоп"
@ -714,7 +634,6 @@ loadRawImages: "Відображати вкладені зображення п
disableShowingAnimatedImages: "Не програвати анімовані зображення" disableShowingAnimatedImages: "Не програвати анімовані зображення"
verificationEmailSent: "Електронний лист з підтвердженням відісланий. Будь ласка перейдіть\ verificationEmailSent: "Електронний лист з підтвердженням відісланий. Будь ласка перейдіть\
\ по посиланню в листі для підтвердження." \ по посиланню в листі для підтвердження."
notSet: "Не налаштовано"
emailVerified: "Електронну пошту підтверджено." emailVerified: "Електронну пошту підтверджено."
noteFavoritesCount: "Кількість улюблених нотаток" noteFavoritesCount: "Кількість улюблених нотаток"
pageLikesCount: "Кількість отриманих вподобань сторінки" pageLikesCount: "Кількість отриманих вподобань сторінки"
@ -722,8 +641,6 @@ pageLikedCount: "Кількість вподобаних сторінок"
contact: "Контакт" contact: "Контакт"
useSystemFont: "Використовувати стандартний шрифт системи" useSystemFont: "Використовувати стандартний шрифт системи"
clips: "Добірка" clips: "Добірка"
experimentalFeatures: "Експериментальні функції"
developer: "Розробник"
makeExplorable: "Зробіть обліковий запис видимим у розділі \"Огляд\"" makeExplorable: "Зробіть обліковий запис видимим у розділі \"Огляд\""
makeExplorableDescription: "Вимкніть, щоб обліковий запис не показувався у розділі\ makeExplorableDescription: "Вимкніть, щоб обліковий запис не показувався у розділі\
\ \"Огляд\"." \ \"Огляд\"."
@ -735,28 +652,16 @@ wide: "Широкий"
narrow: "Вузький" narrow: "Вузький"
reloadToApplySetting: "Налаштування ввійде в дію при перезавантаженні. Перезавантажити?" reloadToApplySetting: "Налаштування ввійде в дію при перезавантаженні. Перезавантажити?"
needReloadToApply: "Зміни набудуть чинності після перезавантаження сторінки." needReloadToApply: "Зміни набудуть чинності після перезавантаження сторінки."
showTitlebar: "Показати титульний рядок"
clearCache: "Очистити кеш" clearCache: "Очистити кеш"
onlineUsersCount: "{n} користувачів онлайн" onlineUsersCount: "{n} користувачів онлайн"
nUsers: "{n} Користувачів"
nNotes: "{n} Записів"
myTheme: "Моя тема"
backgroundColor: "Фон" backgroundColor: "Фон"
accentColor: "Акцент" accentColor: "Акцент"
textColor: "Текст" textColor: "Текст"
saveAs: "Зберегти як…" saveAs: "Зберегти як…"
advanced: "Розширені"
value: "Значення"
createdAt: "Створено" createdAt: "Створено"
updatedAt: "Останнє оновлення" updatedAt: "Останнє оновлення"
saveConfirm: "Зберегти зміни?"
deleteConfirm: "Ви дійсно бажаєте це видалити?" deleteConfirm: "Ви дійсно бажаєте це видалити?"
invalidValue: "Некоректне значення."
registry: "Реєстр"
closeAccount: "Закрити обліковий запис" closeAccount: "Закрити обліковий запис"
currentVersion: "Версія, що використовується"
latestVersion: "Сама свіжа версія"
youAreRunningUpToDateClient: "У вас найсвіжіша версія клієнта."
newVersionOfClientAvailable: "Доступніша свіжа версія клієнта." newVersionOfClientAvailable: "Доступніша свіжа версія клієнта."
usageAmount: "Використане" usageAmount: "Використане"
capacity: "Ємність" capacity: "Ємність"
@ -766,24 +671,17 @@ apply: "Застосувати"
receiveAnnouncementFromInstance: "Отримувати оповіщення з інстансу" receiveAnnouncementFromInstance: "Отримувати оповіщення з інстансу"
emailNotification: "Сповіщення електронною поштою" emailNotification: "Сповіщення електронною поштою"
publish: "Опублікувати" publish: "Опублікувати"
inChannelSearch: "Пошук за каналом"
useReactionPickerForContextMenu: "Відкривати палітру реакцій правою кнопкою" useReactionPickerForContextMenu: "Відкривати палітру реакцій правою кнопкою"
typingUsers: "Стук клавіш. Це {users}…" typingUsers: "Стук клавіш. Це {users}…"
goBack: "Назад" goBack: "Назад"
info: "Інформація" info: "Інформація"
user: "Користувачі" user: "Користувачі"
administration: "Управління" administration: "Управління"
expiration: "Опитування закінчується"
middle: "Середній"
global: "Глобальна"
sent: "Відправити"
hashtags: "Хештеґ" hashtags: "Хештеґ"
hide: "Сховати" hide: "Сховати"
indefinitely: "Ніколи" indefinitely: "Ніколи"
_ffVisibility: _ffVisibility:
public: "Опублікувати" public: "Опублікувати"
_ad:
back: "Назад"
_gallery: _gallery:
unlike: "Не вподобати" unlike: "Не вподобати"
_email: _email:
@ -797,10 +695,8 @@ _registry:
_aboutMisskey: _aboutMisskey:
about: "FoundKey - це програмне забезпечення з відкритим кодом, яке розробляє syuilo\ about: "FoundKey - це програмне забезпечення з відкритим кодом, яке розробляє syuilo\
\ з 2014 року." \ з 2014 року."
contributors: "Головні помічники"
allContributors: "Всі помічники" allContributors: "Всі помічники"
source: "Вихідний код" source: "Вихідний код"
translation: "Перекладати FoundKey"
_nsfw: _nsfw:
respect: "Приховувати NSFW медіа" respect: "Приховувати NSFW медіа"
ignore: "Не приховувати NSFW медіа" ignore: "Не приховувати NSFW медіа"
@ -907,57 +803,6 @@ _theme:
alreadyInstalled: "Тему вже встановлено" alreadyInstalled: "Тему вже встановлено"
invalid: "Неправильний формат теми" invalid: "Неправильний формат теми"
make: "Створити тему" make: "Створити тему"
base: "Основа"
defaultValue: "Значення за замовчуванням"
func: "Функції"
lighten: "Яскравість"
inputConstantName: "Введіть назву константи"
importInfo: "Вставляючи сюди код теми, ви можете добавити її до редактору тем"
deleteConstantConfirm: "Ви дійсно бажаєте видалити константу \"{const}\"?"
keys:
accent: "Акцент"
bg: "Фон"
fg: "Текст"
focus: "Фокус"
indicator: "Індикатор"
panel: "Панель"
shadow: "Тінь"
header: "Заголовок"
navBg: "Фон бокової панелі"
navFg: "Текст бокової панелі"
navHoverFg: "Текст бокової панелі (під курсором)"
navActive: "Текст бокової панелі (активне)"
navIndicator: "Індикатор бокової панелі"
link: "Посилання"
hashtag: "Хештеґ"
mention: "Згадка"
mentionMe: "Згадки (мене)"
renote: "Поширити"
modalBg: "Модальний фон"
divider: "Розділювач"
scrollbarHandle: "Ручка смуги прокрутки"
scrollbarHandleHover: "Ручка смуги прокрутки (при наведенні)"
dateLabelFg: "Текст позначок дати"
infoBg: "Фон інформації"
infoFg: "Текст інформації"
infoWarnBg: "Фон попередження"
infoWarnFg: "Текст попередження"
cwBg: "Фон чутливого змісту"
cwFg: "Текст чутливого змісту"
cwHoverBg: "Фон чутливого змісту (при наведенні)"
toastBg: "Фон повідомлення"
toastFg: "Текст повідомлення"
buttonBg: "Фон кнопки"
buttonHoverBg: "Фон кнопки (при наведенні)"
inputBorder: "Край поля вводу"
listItemHoverBg: "Фон елементу в списку (при наведенні)"
driveFolderBg: "Фон папки на диску"
wallpaperOverlay: "Накладання шпалер"
badge: "Значок"
messageBg: "Фон переписки"
accentDarken: "Акцент (Затемлений)"
accentLighten: "Акцент (Освітлений)"
fgHighlighted: "Виділений текст"
_sfx: _sfx:
note: "Нотатки" note: "Нотатки"
noteMy: "Мої нотатки" noteMy: "Мої нотатки"
@ -1205,7 +1050,6 @@ _relayStatus:
accepted: "Затверджено" accepted: "Затверджено"
rejected: "Відхилено" rejected: "Відхилено"
_notification: _notification:
fileUploaded: "Файл успішно завантажено"
youGotMention: "{name} згадує вас" youGotMention: "{name} згадує вас"
youGotReply: "{name} відповідає" youGotReply: "{name} відповідає"
youGotQuote: "{name} цитує вас" youGotQuote: "{name} цитує вас"
@ -1218,7 +1062,6 @@ _notification:
yourFollowRequestAccepted: "Запит на підписку прийнято" yourFollowRequestAccepted: "Запит на підписку прийнято"
youWereInvitedToGroup: "Запрошення до групи" youWereInvitedToGroup: "Запрошення до групи"
_types: _types:
all: "Все"
follow: "Підписки" follow: "Підписки"
mention: "Згадка" mention: "Згадка"
reply: "Відповіді" reply: "Відповіді"

View file

@ -14,7 +14,6 @@ fetchingAsApObject: "Đang nạp dữ liệu từ Fediverse..."
ok: "Đồng ý" ok: "Đồng ý"
gotIt: "Đã hiểu!" gotIt: "Đã hiểu!"
cancel: "Hủy" cancel: "Hủy"
enterUsername: "Nhập tên người dùng"
renotedBy: "Chia sẻ bởi {user}" renotedBy: "Chia sẻ bởi {user}"
noNotes: "Chưa có tút nào." noNotes: "Chưa có tút nào."
noNotifications: "Không có thông báo" noNotifications: "Không có thông báo"
@ -30,16 +29,12 @@ login: "Đăng nhập"
loggingIn: "Đang đăng nhập..." loggingIn: "Đang đăng nhập..."
logout: "Đăng xuất" logout: "Đăng xuất"
signup: "Đăng ký" signup: "Đăng ký"
uploading: "Đang tải lên…"
save: "Lưu" save: "Lưu"
users: "Người dùng" users: "Người dùng"
addUser: "Thêm người dùng" addUser: "Thêm người dùng"
favorite: "Thêm vào yêu thích" favorite: "Thêm vào yêu thích"
favorites: "Lượt thích" favorites: "Lượt thích"
unfavorite: "Bỏ thích" unfavorite: "Bỏ thích"
favorited: "Đã thêm vào yêu thích."
alreadyFavorited: "Đã thêm vào yêu thích rồi."
cantFavorite: "Không thể thêm vào yêu thích."
pin: "Ghim" pin: "Ghim"
unpin: "Bỏ ghim" unpin: "Bỏ ghim"
copyContent: "Chép nội dung" copyContent: "Chép nội dung"
@ -51,7 +46,6 @@ deleteAndEditConfirm: "Bạn có chắc muốn sửa tút này? Những biểu c
addToList: "Thêm vào danh sách" addToList: "Thêm vào danh sách"
sendMessage: "Gửi tin nhắn" sendMessage: "Gửi tin nhắn"
copyUsername: "Chép tên người dùng" copyUsername: "Chép tên người dùng"
searchUser: "Tìm kiếm người dùng"
reply: "Trả lời" reply: "Trả lời"
loadMore: "Tải thêm" loadMore: "Tải thêm"
showMore: "Xem thêm" showMore: "Xem thêm"
@ -73,7 +67,6 @@ exportRequested: "Đang chuẩn bị xuất tập tin. Quá trình này có th
\ sẽ được tự động thêm vào Drive sau khi hoàn thành." \ sẽ được tự động thêm vào Drive sau khi hoàn thành."
importRequested: "Bạn vừa yêu cầu nhập dữ liệu. Quá trình này có thể mất ít phút." importRequested: "Bạn vừa yêu cầu nhập dữ liệu. Quá trình này có thể mất ít phút."
lists: "Danh sách" lists: "Danh sách"
noLists: "Bạn chưa có danh sách nào"
note: "Tút" note: "Tút"
notes: "Tút" notes: "Tút"
following: "Đang theo dõi" following: "Đang theo dõi"
@ -98,21 +91,15 @@ followRequest: "Gửi yêu cầu theo dõi"
followRequests: "Yêu cầu theo dõi" followRequests: "Yêu cầu theo dõi"
unfollow: "Ngưng theo dõi" unfollow: "Ngưng theo dõi"
followRequestPending: "Yêu cầu theo dõi đang chờ" followRequestPending: "Yêu cầu theo dõi đang chờ"
enterEmoji: "Chèn emoji"
renote: "Đăng lại" renote: "Đăng lại"
unrenote: "Hủy đăng lại" unrenote: "Hủy đăng lại"
renoted: "Đã đăng lại."
cantRenote: "Không thể đăng lại tút này."
cantReRenote: "Không thể đăng lại một tút đăng lại."
quote: "Trích dẫn" quote: "Trích dẫn"
pinnedNote: "Tút ghim" pinnedNote: "Tút ghim"
pinned: "Ghim"
you: "Bạn" you: "Bạn"
clickToShow: "Nhấn để xem" clickToShow: "Nhấn để xem"
sensitive: "Nhạy cảm" sensitive: "Nhạy cảm"
add: "Thêm" add: "Thêm"
reaction: "Biểu cảm" reaction: "Biểu cảm"
reactionSetting: "Chọn những biểu cảm hiển thị"
reactionSettingDescription2: "Kéo để sắp xếp, nhấn để xóa, nhấn \"+\" để thêm." reactionSettingDescription2: "Kéo để sắp xếp, nhấn để xóa, nhấn \"+\" để thêm."
attachCancel: "Gỡ tập tin đính kèm" attachCancel: "Gỡ tập tin đính kèm"
markAsSensitive: "Đánh dấu là nhạy cảm" markAsSensitive: "Đánh dấu là nhạy cảm"
@ -136,10 +123,7 @@ editWidgetsExit: "Xong"
customEmojis: "Tùy chỉnh emoji" customEmojis: "Tùy chỉnh emoji"
emoji: "Emoji" emoji: "Emoji"
emojis: "Emoji" emojis: "Emoji"
emojiName: "Tên emoji"
emojiUrl: "URL Emoji"
addEmoji: "Thêm emoji" addEmoji: "Thêm emoji"
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\ 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\ \ 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\
@ -159,7 +143,6 @@ addAccount: "Thêm tài khoản"
loginFailed: "Đăng nhập không thành công" loginFailed: "Đăng nhập không thành công"
showOnRemote: "Truy cập trang của người này" showOnRemote: "Truy cập trang của người này"
general: "Tổng quan" general: "Tổng quan"
wallpaper: "Ảnh bìa"
setWallpaper: "Đặt ảnh bìa" setWallpaper: "Đặt ảnh bìa"
removeWallpaper: "Xóa ảnh bìa" removeWallpaper: "Xóa ảnh bìa"
youHaveNoLists: "Bạn chưa có danh sách nào" youHaveNoLists: "Bạn chưa có danh sách nào"
@ -175,27 +158,19 @@ selectUser: "Chọn người dùng"
recipient: "Người nhận" recipient: "Người nhận"
annotation: "Bình luận" annotation: "Bình luận"
federation: "Liên hợp" federation: "Liên hợp"
instances: "Máy chủ"
registeredAt: "Đăng ký vào" registeredAt: "Đăng ký vào"
latestRequestSentAt: "Yêu cầu cuối gửi lúc" latestRequestSentAt: "Yêu cầu cuối gửi lúc"
latestRequestReceivedAt: "Yêu cầu cuối nhận lúc" latestRequestReceivedAt: "Yêu cầu cuối nhận lúc"
latestStatus: "Trạng thái cuối cùng" latestStatus: "Trạng thái cuối cùng"
storageUsage: "Dung lượng lưu trữ"
charts: "Đồ thị" charts: "Đồ thị"
perHour: "Mỗi Giờ" perHour: "Mỗi Giờ"
perDay: "Mỗi Ngày" perDay: "Mỗi Ngày"
stopActivityDelivery: "Ngưng gửi hoạt động" stopActivityDelivery: "Ngưng gửi hoạt động"
blockThisInstance: "Chặn máy chủ này" blockThisInstance: "Chặn máy chủ này"
operations: "Vận hành"
software: "Phần mềm" software: "Phần mềm"
version: "Phiên bản" version: "Phiên bản"
metadata: "Metadata"
withNFiles: "{n} tập tin" withNFiles: "{n} tập tin"
monitor: "Giám sát"
jobQueue: "Công việc chờ xử lý" jobQueue: "Công việc chờ xử lý"
cpuAndMemory: "CPU và Dung lượng"
network: "Mạng"
disk: "Ổ đĩa"
instanceInfo: "Thông tin máy chủ" instanceInfo: "Thông tin máy chủ"
statistics: "Thống kê" statistics: "Thống kê"
clearQueue: "Xóa hàng đợi" clearQueue: "Xóa hàng đợi"
@ -228,9 +203,6 @@ all: "Tất cả"
subscribing: "Đang đăng ký" subscribing: "Đang đăng ký"
publishing: "Đang đăng" publishing: "Đang đăng"
notResponding: "Không có phản hồi" notResponding: "Không có phản hồi"
instanceFollowing: "Đang theo dõi máy chủ"
instanceFollowers: "Người theo dõi của máy chủ"
instanceUsers: "Người dùng trên máy chủ này"
changePassword: "Đổi mật khẩu" changePassword: "Đổi mật khẩu"
security: "Bảo mật" security: "Bảo mật"
retypedNotMatch: "Mật khẩu không trùng khớp." retypedNotMatch: "Mật khẩu không trùng khớp."
@ -246,7 +218,6 @@ lookup: "Tìm kiếm"
announcements: "Thông báo" announcements: "Thông báo"
imageUrl: "URL ảnh" imageUrl: "URL ảnh"
remove: "Xóa" remove: "Xóa"
removed: "Đã xóa"
removeAreYouSure: "Bạn có chắc muốn gỡ \"{x}\"?" removeAreYouSure: "Bạn có chắc muốn gỡ \"{x}\"?"
deleteAreYouSure: "Bạn có chắc muốn xóa \"{x}\"?" deleteAreYouSure: "Bạn có chắc muốn xóa \"{x}\"?"
resetAreYouSure: "Bạn có chắc muốn đặt lại?" resetAreYouSure: "Bạn có chắc muốn đặt lại?"
@ -288,7 +259,6 @@ lightThemes: "Những chủ đề sáng"
darkThemes: "Những chủ đề tối" darkThemes: "Những chủ đề tối"
syncDeviceDarkMode: "Đồng bộ với thiết bị" syncDeviceDarkMode: "Đồng bộ với thiết bị"
drive: "Ổ đĩa" drive: "Ổ đĩa"
fileName: "Tên tập tin"
selectFile: "Chọn tập tin" selectFile: "Chọn tập tin"
selectFiles: "Chọn nhiều tập tin" selectFiles: "Chọn nhiều tập tin"
selectFolder: "Chọn thư mục" selectFolder: "Chọn thư mục"
@ -342,7 +312,6 @@ enableLocalTimeline: "Bật bảng tin máy chủ"
enableGlobalTimeline: "Bật bảng tin liên hợp" enableGlobalTimeline: "Bật bảng tin liên hợp"
disablingTimelinesInfo: "Quản trị viên và Kiểm duyệt viên luôn có quyền truy cập mọi\ disablingTimelinesInfo: "Quản trị viên và Kiểm duyệt viên luôn có quyền truy cập mọi\
\ bảng tin, kể cả khi chúng không được bật." \ bảng tin, kể cả khi chúng không được bật."
registration: "Đăng ký"
enableRegistration: "Cho phép đăng ký mới" enableRegistration: "Cho phép đăng ký mới"
invite: "Mời" invite: "Mời"
driveCapacityPerLocalAccount: "Dung lượng ổ đĩa tối đa cho mỗi người dùng" driveCapacityPerLocalAccount: "Dung lượng ổ đĩa tối đa cho mỗi người dùng"
@ -351,25 +320,13 @@ inMb: "Tính bằng MB"
iconUrl: "URL Icon" iconUrl: "URL Icon"
bannerUrl: "URL Ảnh bìa" bannerUrl: "URL Ảnh bìa"
backgroundImageUrl: "URL Ảnh nền" backgroundImageUrl: "URL Ảnh nền"
basicInfo: "Thông tin cơ bản"
pinnedUsers: "Những người thú vị" pinnedUsers: "Những người thú vị"
pinnedUsersDescription: "Liệt kê mỗi hàng một tên người dùng xuống dòng để ghim trên\ pinnedUsersDescription: "Liệt kê mỗi hàng một tên người dùng xuống dòng để ghim trên\
\ tab \"Khám phá\"." \ tab \"Khám phá\"."
pinnedPages: "Trang đã ghim"
pinnedPagesDescription: "Liệt kê các trang thú vị để ghim trên máy chủ."
pinnedClipId: "ID của clip muốn ghim"
pinnedNotes: "Tút ghim"
hcaptcha: "hCaptcha"
enableHcaptcha: "Bật hCaptcha"
hcaptchaSiteKey: "Khóa của trang" hcaptchaSiteKey: "Khóa của trang"
hcaptchaSecretKey: "Khóa bí mật" hcaptchaSecretKey: "Khóa bí mật"
recaptcha: "reCAPTCHA"
enableRecaptcha: "Bật reCAPTCHA"
recaptchaSiteKey: "Khóa của trang" recaptchaSiteKey: "Khóa của trang"
recaptchaSecretKey: "Khóa bí mật" recaptchaSecretKey: "Khóa bí mật"
avoidMultiCaptchaConfirm: "Dùng nhiều hệ thống Captcha có thể gây nhiễu giữa chúng.\
\ Bạn có muốn tắt các hệ thống Captcha khác hiện đang hoạt động không? Nếu bạn muốn\
\ chúng tiếp tục được bật, hãy nhấn hủy."
antennas: "Trạm phát sóng" antennas: "Trạm phát sóng"
manageAntennas: "Quản lý trạm phát sóng" manageAntennas: "Quản lý trạm phát sóng"
name: "Tên" name: "Tên"
@ -380,7 +337,6 @@ antennaKeywordsDescription: "Phân cách bằng dấu cách cho điều kiện A
\ dòng cho điều kiện OR." \ dòng cho điều kiện OR."
notifyAntenna: "Thông báo có tút mới" notifyAntenna: "Thông báo có tút mới"
withFileAntenna: "Chỉ những tút có media" withFileAntenna: "Chỉ những tút có media"
enableServiceworker: "Bật ServiceWorker"
antennaUsersDescription: "Liệt kê mỗi hàng một tên người dùng" antennaUsersDescription: "Liệt kê mỗi hàng một tên người dùng"
caseSensitive: "Trường hợp nhạy cảm" caseSensitive: "Trường hợp nhạy cảm"
withReplies: "Bao gồm lượt trả lời" withReplies: "Bao gồm lượt trả lời"
@ -395,11 +351,8 @@ popularUsers: "Những người nổi tiếng"
recentlyUpdatedUsers: "Hoạt động gần đây" recentlyUpdatedUsers: "Hoạt động gần đây"
recentlyRegisteredUsers: "Mới tham gia" recentlyRegisteredUsers: "Mới tham gia"
recentlyDiscoveredUsers: "Mới khám phá" recentlyDiscoveredUsers: "Mới khám phá"
exploreUsersCount: "Có {count} người"
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"
aboutMisskey: "Về FoundKey" aboutMisskey: "Về FoundKey"
administrator: "Quản trị viên" administrator: "Quản trị viên"
token: "Token" token: "Token"
@ -419,7 +372,6 @@ share: "Chia sẻ"
notFound: "Không tìm thấy" notFound: "Không tìm thấy"
notFoundDescription: "Không tìm thấy trang nào tương ứng với URL này." notFoundDescription: "Không tìm thấy trang nào tương ứng với URL này."
uploadFolder: "Thư mục tải lên mặc định" uploadFolder: "Thư mục tải lên mặc định"
cacheClear: "Xóa bộ nhớ đệm"
markAsReadAllNotifications: "Đánh dấu tất cả các thông báo là đã đọc" markAsReadAllNotifications: "Đánh dấu tất cả các thông báo là đã đọc"
markAsReadAllUnreadNotes: "Đánh dấu tất cả các tút là đã đọc" markAsReadAllUnreadNotes: "Đánh dấu tất cả các tút là đã đọc"
markAsReadAllTalkMessages: "Đánh dấu tất cả các tin nhắn là đã đọc" markAsReadAllTalkMessages: "Đánh dấu tất cả các tin nhắn là đã đọc"
@ -450,7 +402,6 @@ noMessagesYet: "Chưa có tin nhắn"
newMessageExists: "Bạn có tin nhắn mới" newMessageExists: "Bạn có tin nhắn mới"
onlyOneFileCanBeAttached: "Bạn chỉ có thể đính kèm một tập tin" onlyOneFileCanBeAttached: "Bạn chỉ có thể đính kèm một tập tin"
signinRequired: "Vui lòng đăng nhập" signinRequired: "Vui lòng đăng nhập"
invitations: "Mời"
invitationCode: "Mã mời" invitationCode: "Mã mời"
checking: "Đang kiểm tra..." checking: "Đang kiểm tra..."
available: "Khả dụng" available: "Khả dụng"
@ -472,7 +423,6 @@ or: "Hoặc"
language: "Ngôn ngữ" language: "Ngôn ngữ"
uiLanguage: "Ngôn ngữ giao diện" uiLanguage: "Ngôn ngữ giao diện"
groupInvited: "Bạn đã được mời tham gia nhóm" groupInvited: "Bạn đã được mời tham gia nhóm"
aboutX: "Giới thiệu {x}"
useOsNativeEmojis: "Dùng emoji hệ thống" useOsNativeEmojis: "Dùng emoji hệ thống"
disableDrawer: "Không dùng menu thanh bên" disableDrawer: "Không dùng menu thanh bên"
youHaveNoGroups: "Không có nhóm nào" youHaveNoGroups: "Không có nhóm nào"
@ -480,27 +430,19 @@ joinOrCreateGroup: "Tham gia hoặc tạo một nhóm mới."
noHistory: "Không có dữ liệu" noHistory: "Không có dữ liệu"
signinHistory: "Lịch sử đăng nhập" signinHistory: "Lịch sử đăng nhập"
disableAnimatedMfm: "Tắt MFM với chuyển động" disableAnimatedMfm: "Tắt MFM với chuyển động"
doing: "Đang xử lý..."
category: "Phân loại" category: "Phân loại"
tags: "Thẻ" tags: "Thẻ"
docSource: "Nguồn tài liệu"
createAccount: "Tạo tài khoản" createAccount: "Tạo tài khoản"
existingAccount: "Tài khoản hiện có" existingAccount: "Tài khoản hiện có"
regenerate: "Tạo lại"
fontSize: "Cỡ chữ" fontSize: "Cỡ chữ"
noFollowRequests: "Bạn không có yêu cầu theo dõi nào" noFollowRequests: "Bạn không có yêu cầu theo dõi nào"
openImageInNewTab: "Mở ảnh trong tab mới" openImageInNewTab: "Mở ảnh trong tab mới"
dashboard: "Trang chính" dashboard: "Trang chính"
local: "Máy chủ này" local: "Máy chủ này"
remote: "Máy chủ khác" remote: "Máy chủ khác"
total: "Tổng cộng"
weekOverWeekChanges: "Thay đổi tuần rồi"
dayOverDayChanges: "Thay đổi hôm qua" dayOverDayChanges: "Thay đổi hôm qua"
appearance: "Giao diện" appearance: "Giao diện"
clientSettings: "Cài đặt Client" clientSettings: "Cài đặt Client"
accountSettings: "Cài đặt tài khoản"
numberOfDays: "Số ngày"
hideThisNote: "Ẩn tút này"
showFeaturedNotesInTimeline: "Hiện tút nổi bật trong bảng tin" showFeaturedNotesInTimeline: "Hiện tút nổi bật trong bảng tin"
objectStorage: "Đối tượng lưu trữ" objectStorage: "Đối tượng lưu trữ"
useObjectStorage: "Dùng đối tượng lưu trữ" useObjectStorage: "Dùng đối tượng lưu trữ"
@ -525,8 +467,6 @@ objectStorageUseSSLDesc: "Tắt nếu bạn không dùng HTTPS để kết nối
objectStorageUseProxy: "Kết nối thông qua Proxy" objectStorageUseProxy: "Kết nối thông qua Proxy"
objectStorageUseProxyDesc: "Tắt nếu bạn không dùng Proxy để kết nối API" objectStorageUseProxyDesc: "Tắt nếu bạn không dùng Proxy để kết nối API"
objectStorageSetPublicRead: "Đặt \"public-read\" khi tải lên" objectStorageSetPublicRead: "Đặt \"public-read\" khi tải lên"
serverLogs: "Nhật ký máy chủ"
deleteAll: "Xóa tất cả"
showFixedPostForm: "Hiện khung soạn tút ở phía trên bảng tin" showFixedPostForm: "Hiện khung soạn tút ở phía trên bảng tin"
newNoteRecived: "Đã nhận tút mới" newNoteRecived: "Đã nhận tút mới"
sounds: "Âm thanh" sounds: "Âm thanh"
@ -537,7 +477,6 @@ popout: "Pop-out"
volume: "Âm lượng" volume: "Âm lượng"
masterVolume: "Âm thanh chung" masterVolume: "Âm thanh chung"
details: "Chi tiết" details: "Chi tiết"
chooseEmoji: "Chọn emoji"
unableToProcess: "Không thể hoàn tất hành động" unableToProcess: "Không thể hoàn tất hành động"
recentUsed: "Sử dụng gần đây" recentUsed: "Sử dụng gần đây"
install: "Cài đặt" install: "Cài đặt"
@ -554,9 +493,7 @@ scratchpad: "Scratchpad"
scratchpadDescription: "Scratchpad cung cấp môi trường cho các thử nghiệm AiScript.\ 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 FoundKey trong đó." \ Bạn có thể viết, thực thi và kiểm tra kết quả tương tác với FoundKey trong đó."
output: "Nguồn ra" output: "Nguồn ra"
script: "Kịch bản"
updateRemoteUser: "Cập nhật thông tin người dùng ở máy chủ khác" updateRemoteUser: "Cập nhật thông tin người dùng ở máy chủ khác"
deleteAllFiles: "Xóa toàn bộ tập tin"
deleteAllFilesConfirm: "Bạn có chắc xóa toàn bộ tập tin?" deleteAllFilesConfirm: "Bạn có chắc xóa toàn bộ tập tin?"
removeAllFollowing: "Ngưng theo dõi tất cả mọi người" removeAllFollowing: "Ngưng theo dõi tất cả mọi người"
removeAllFollowingDescription: "Thực hiện điều này sẽ ngưng theo dõi tất cả các tài\ removeAllFollowingDescription: "Thực hiện điều này sẽ ngưng theo dõi tất cả các tài\
@ -573,10 +510,7 @@ addItem: "Thêm mục"
relays: "Chuyển tiếp" relays: "Chuyển tiếp"
addRelay: "Thêm chuyển tiếp" addRelay: "Thêm chuyển tiếp"
inboxUrl: "URL Hộp thư đến" inboxUrl: "URL Hộp thư đến"
addedRelays: "Đã thêm các chuyển tiếp"
serviceworkerInfo: "Phải được bật cho thông báo đẩy."
deletedNote: "Tút đã bị xóa" deletedNote: "Tút đã bị xóa"
invisibleNote: "Tút ẩn"
enableInfiniteScroll: "Tự động tải tút mới" enableInfiniteScroll: "Tự động tải tút mới"
visibility: "Hiển thị" visibility: "Hiển thị"
poll: "Bình chọn" poll: "Bình chọn"
@ -586,15 +520,12 @@ disablePlayer: "Đóng trình phát video"
themeEditor: "Công cụ thiết kế theme" themeEditor: "Công cụ thiết kế theme"
description: "Mô tả" description: "Mô tả"
describeFile: "Thêm mô tả" describeFile: "Thêm mô tả"
enterFileDescription: "Nhập mô tả"
author: "Tác giả" author: "Tác giả"
leaveConfirm: "Có những thay đổi chưa được lưu. Bạn có muốn bỏ chúng không?" leaveConfirm: "Có những thay đổi chưa được lưu. Bạn có muốn bỏ chúng không?"
manage: "Quản lý" manage: "Quản lý"
plugins: "Plugin" plugins: "Plugin"
deck: "Deck" deck: "Deck"
undeck: "Bỏ Deck"
useBlurEffectForModal: "Sử dụng hiệu ứng mờ cho các hộp thoại" useBlurEffectForModal: "Sử dụng hiệu ứng mờ cho các hộp thoại"
useFullReactionPicker: "Dùng bộ chọn biểu cảm cỡ lớn"
width: "Chiều rộng" width: "Chiều rộng"
height: "Chiều cao" height: "Chiều cao"
large: "Lớn" large: "Lớn"
@ -607,7 +538,6 @@ disableAll: "Tắt toàn bộ"
tokenRequested: "Cấp quyền truy cập vào tài khoản" tokenRequested: "Cấp quyền truy cập vào tài khoản"
pluginTokenRequestedDescription: "Plugin này sẽ có thể sử dụng các quyền được đặt\ pluginTokenRequestedDescription: "Plugin này sẽ có thể sử dụng các quyền được đặt\
\ ở đây." \ ở đây."
notificationType: "Loại thông báo"
edit: "Sửa" edit: "Sửa"
useStarForReactionFallback: "Dùng ★ nếu emoji biểu cảm không có" useStarForReactionFallback: "Dùng ★ nếu emoji biểu cảm không có"
emailServer: "Email máy chủ" emailServer: "Email máy chủ"
@ -633,10 +563,7 @@ userSaysSomething: "{name} nói gì đó"
makeActive: "Kích hoạt" makeActive: "Kích hoạt"
display: "Hiển thị" display: "Hiển thị"
copy: "Sao chép" copy: "Sao chép"
metrics: "Số liệu"
overview: "Tổng quan" overview: "Tổng quan"
logs: "Nhật ký"
delayed: "Độ trễ"
database: "Cơ sở dữ liệu" database: "Cơ sở dữ liệu"
channel: "Kênh" channel: "Kênh"
create: "Tạo" create: "Tạo"
@ -653,7 +580,6 @@ regenerateLoginTokenDescription: "Tạo lại mã nội bộ có thể dùng đ
setMultipleBySeparatingWithSpace: "Tách nhiều mục nhập bằng dấu cách." setMultipleBySeparatingWithSpace: "Tách nhiều mục nhập bằng dấu cách."
fileIdOrUrl: "ID tập tin hoặc URL" fileIdOrUrl: "ID tập tin hoặc URL"
behavior: "Thao tác" behavior: "Thao tác"
sample: "Ví dụ"
abuseReports: "Lượt báo cáo" abuseReports: "Lượt báo cáo"
reportAbuse: "Báo cáo" reportAbuse: "Báo cáo"
reportAbuseOf: "Báo cáo {name}" reportAbuseOf: "Báo cáo {name}"
@ -668,13 +594,8 @@ forwardReportIsAnonymous: "Thay vì tài khoản của bạn, một tài khoản
send: "Gửi" send: "Gửi"
abuseMarkAsResolved: "Đánh dấu đã xử lý" abuseMarkAsResolved: "Đánh dấu đã xử lý"
openInNewTab: "Mở trong tab mới" openInNewTab: "Mở trong tab mới"
openInSideView: "Mở trong thanh bên"
defaultNavigationBehaviour: "Thao tác điều hướng mặc định" defaultNavigationBehaviour: "Thao tác điều hướng mặc định"
editTheseSettingsMayBreakAccount: "Việc chỉnh sửa các cài đặt này có thể làm hỏng\
\ tài khoản của bạn."
instanceTicker: "Thông tin máy chủ của tút" instanceTicker: "Thông tin máy chủ của tút"
waitingFor: "Đang đợi {x}"
random: "Ngẫu nhiên"
system: "Hệ thống" system: "Hệ thống"
switchUi: "Chuyển đổi giao diện người dùng" switchUi: "Chuyển đổi giao diện người dùng"
desktop: "Desktop" desktop: "Desktop"
@ -712,7 +633,6 @@ loadRawImages: "Tải ảnh gốc thay vì ảnh thu nhỏ"
disableShowingAnimatedImages: "Không phát ảnh động" disableShowingAnimatedImages: "Không phát ảnh động"
verificationEmailSent: "Một email xác minh đã được gửi. Vui lòng nhấn vào liên kết\ verificationEmailSent: "Một email xác minh đã được gửi. Vui lòng nhấn vào liên kết\
\ đính kèm để hoàn tất xác minh." \ đính kèm để hoàn tất xác minh."
notSet: "Chưa đặt"
emailVerified: "Email đã được xác minh" emailVerified: "Email đã được xác minh"
noteFavoritesCount: "Số lượng tút yêu thích" noteFavoritesCount: "Số lượng tút yêu thích"
pageLikesCount: "Số lượng trang đã thích" pageLikesCount: "Số lượng trang đã thích"
@ -720,8 +640,6 @@ pageLikedCount: "Số lượng thích trang đã nhận"
contact: "Liên hệ" contact: "Liên hệ"
useSystemFont: "Dùng phông chữ mặc định của hệ thống" useSystemFont: "Dùng phông chữ mặc định của hệ thống"
clips: "Ghim" clips: "Ghim"
experimentalFeatures: "Tính năng thử nghiệm"
developer: "Nhà phát triển"
makeExplorable: "Không hiện tôi trong \"Khám phá\"" makeExplorable: "Không hiện tôi trong \"Khám phá\""
makeExplorableDescription: "Nếu bạn tắt, tài khoản của bạn sẽ không hiện trong mục\ makeExplorableDescription: "Nếu bạn tắt, tài khoản của bạn sẽ không hiện trong mục\
\ \"Khám phá\"." \ \"Khám phá\"."
@ -734,28 +652,16 @@ narrow: "Thu hẹp"
reloadToApplySetting: "Cài đặt này sẽ chỉ áp dụng sau khi tải lại trang. Tải lại ngay\ reloadToApplySetting: "Cài đặt này sẽ chỉ áp dụng sau khi tải lại trang. Tải lại ngay\
\ bây giờ?" \ bây giờ?"
needReloadToApply: "Cần tải lại để điều này được áp dụng." needReloadToApply: "Cần tải lại để điều này được áp dụng."
showTitlebar: "Hiện thanh tựa đề"
clearCache: "Xóa bộ nhớ đệm" clearCache: "Xóa bộ nhớ đệm"
onlineUsersCount: "{n} người đang online" onlineUsersCount: "{n} người đang online"
nUsers: "{n} Người"
nNotes: "{n} Tút"
myTheme: "Theme của tôi"
backgroundColor: "Màu nền" backgroundColor: "Màu nền"
accentColor: "Màu phụ" accentColor: "Màu phụ"
textColor: "Màu chữ" textColor: "Màu chữ"
saveAs: "Lưu thành" saveAs: "Lưu thành"
advanced: "Nâng cao"
value: "Giá trị"
createdAt: "Ngày tạo" createdAt: "Ngày tạo"
updatedAt: "Cập nhật lúc" updatedAt: "Cập nhật lúc"
saveConfirm: "Lưu thay đổi?"
deleteConfirm: "Bạn có muốn xóa không?" deleteConfirm: "Bạn có muốn xóa không?"
invalidValue: "Giá trị không hợp lệ."
registry: "Registry"
closeAccount: "Đóng tài khoản" closeAccount: "Đóng tài khoản"
currentVersion: "Phiên bản hiện tại"
latestVersion: "Phiên bản mới nhất"
youAreRunningUpToDateClient: "Bạn đang sử dụng phiên bản mới nhất."
newVersionOfClientAvailable: "Có phiên bản mới cho bạn cập nhật." newVersionOfClientAvailable: "Có phiên bản mới cho bạn cập nhật."
usageAmount: "Sử dụng" usageAmount: "Sử dụng"
capacity: "Sức chứa" capacity: "Sức chứa"
@ -765,11 +671,9 @@ apply: "Áp dụng"
receiveAnnouncementFromInstance: "Nhận thông báo từ máy chủ này" receiveAnnouncementFromInstance: "Nhận thông báo từ máy chủ này"
emailNotification: "Thông báo email" emailNotification: "Thông báo email"
publish: "Đăng" publish: "Đăng"
inChannelSearch: "Tìm trong kênh"
useReactionPickerForContextMenu: "Nhấn chuột phải để mở bộ chọn biểu cảm" useReactionPickerForContextMenu: "Nhấn chuột phải để mở bộ chọn biểu cảm"
typingUsers: "{users} đang nhập…" typingUsers: "{users} đang nhập…"
jumpToSpecifiedDate: "Đến một ngày cụ thể" jumpToSpecifiedDate: "Đến một ngày cụ thể"
showingPastTimeline: "Hiện đang hiển thị dòng thời gian cũ"
clear: "Hoàn lại" clear: "Hoàn lại"
markAllAsRead: "Đánh dấu tất cả đã đọc" markAllAsRead: "Đánh dấu tất cả đã đọc"
goBack: "Quay lại" goBack: "Quay lại"
@ -783,7 +687,6 @@ notSpecifiedMentionWarning: "Tút này có đề cập đến những người k
info: "Giới thiệu" info: "Giới thiệu"
userInfo: "Thông tin người dùng" userInfo: "Thông tin người dùng"
unknown: "Chưa biết" unknown: "Chưa biết"
onlineStatus: "Trạng thái"
hideOnlineStatus: "Ẩn trạng thái online" hideOnlineStatus: "Ẩn trạng thái online"
hideOnlineStatusDescription: "Ẩn trạng thái online của bạn làm giảm sự tiện lợi của\ hideOnlineStatusDescription: "Ẩn trạng thái online của bạn làm giảm sự tiện lợi của\
\ một số tính năng như tìm kiếm." \ một số tính năng như tìm kiếm."
@ -810,22 +713,13 @@ gallery: "Thư viện ảnh"
recentPosts: "Tút gần đây" recentPosts: "Tút gần đây"
popularPosts: "Tút được xem nhiều nhất" popularPosts: "Tút được xem nhiều nhất"
shareWithNote: "Chia sẻ kèm với tút" shareWithNote: "Chia sẻ kèm với tút"
expiration: "Thời hạn"
memo: "Lưu ý"
priority: "Ưu tiên"
high: "Cao"
middle: "Vừa"
low: "Thấp"
emailNotConfiguredWarning: "Chưa đặt địa chỉ email." emailNotConfiguredWarning: "Chưa đặt địa chỉ email."
ratio: "Tỷ lệ" ratio: "Tỷ lệ"
previewNoteText: "Hiện xem trước" previewNoteText: "Hiện xem trước"
customCss: "Tùy chỉnh CSS" customCss: "Tùy chỉnh CSS"
customCssWarn: "Chỉ sử dụng những cài đặt này nếu bạn biết rõ về nó. Việc nhập các\ customCssWarn: "Chỉ sử dụng những cài đặt này nếu bạn biết rõ về nó. Việc nhập các\
\ giá trị không đúng có thể khiến máy chủ hoạt động không bình thường." \ giá trị không đúng có thể khiến máy chủ hoạt động không bình thường."
global: "Toàn cầu"
squareAvatars: "Ảnh đại diện vuông" squareAvatars: "Ảnh đại diện vuông"
sent: "Gửi"
received: "Đã nhận"
searchResult: "Kết quả tìm kiếm" searchResult: "Kết quả tìm kiếm"
hashtags: "Hashtag" hashtags: "Hashtag"
troubleshooting: "Khắc phục sự cố" troubleshooting: "Khắc phục sự cố"
@ -913,9 +807,6 @@ _accountDelete:
requestAccountDelete: "Yêu cầu xóa tài khoản" requestAccountDelete: "Yêu cầu xóa tài khoản"
started: "Đang bắt đầu xóa tài khoản." started: "Đang bắt đầu xóa tài khoản."
inProgress: "Đang xóa dần tài khoản." inProgress: "Đang xóa dần tài khoản."
_ad:
back: "Quay lại"
reduceFrequencyOfThisAd: "Hiện ít lại"
_forgotPassword: _forgotPassword:
enterEmail: "Nhập địa chỉ email bạn đã sử dụng để đăng ký. Một liên kết mà bạn có\ enterEmail: "Nhập địa chỉ email bạn đã sử dụng để đăng ký. Một liên kết mà bạn có\
\ thể đặt lại mật khẩu của mình sau đó sẽ được gửi đến nó." \ thể đặt lại mật khẩu của mình sau đó sẽ được gửi đến nó."
@ -936,7 +827,6 @@ _email:
_plugin: _plugin:
install: "Cài đặt tiện ích" install: "Cài đặt tiện ích"
installWarn: "Vui lòng không cài đặt những tiện ích đáng ngờ." installWarn: "Vui lòng không cài đặt những tiện ích đáng ngờ."
manage: "Quản lý plugin"
_registry: _registry:
scope: "Phạm vi" scope: "Phạm vi"
key: "Mã" key: "Mã"
@ -945,10 +835,8 @@ _registry:
createKey: "Tạo mã" createKey: "Tạo mã"
_aboutMisskey: _aboutMisskey:
about: "FoundKey là phần mềm mã nguồn mở được phát triển bởi syuilo từ năm 2014." about: "FoundKey là phần mềm mã nguồn mở được phát triển bởi syuilo từ năm 2014."
contributors: "Những người đóng góp nổi bật"
allContributors: "Toàn bộ người đóng góp" allContributors: "Toàn bộ người đóng góp"
source: "Mã nguồn" source: "Mã nguồn"
translation: "Dịch FoundKey"
_nsfw: _nsfw:
respect: "Ẩn nội dung NSFW" respect: "Ẩn nội dung NSFW"
ignore: "Hiện nội dung NSFW" ignore: "Hiện nội dung NSFW"
@ -1074,69 +962,6 @@ _theme:
alreadyInstalled: "Theme này đã được cài đặt" alreadyInstalled: "Theme này đã được cài đặt"
invalid: "Định dạng của theme này không hợp lệ" invalid: "Định dạng của theme này không hợp lệ"
make: "Tạo theme" make: "Tạo theme"
base: "Dựa trên có sẵn"
addConstant: "Thêm hằng số"
constant: "Hằng số"
defaultValue: "Giá trị mặc định"
color: "Màu sắc"
refProp: "Tham chiếu một thuộc tính"
refConst: "Tham chiếu một hằng số"
key: "Khóa"
func: "Hàm"
funcKind: "Loại hàm"
argument: "Tham số"
basedProp: "Thuộc tính tham chiếu"
alpha: "Độ trong suốt"
darken: "Độ tối"
lighten: "Độ sáng"
inputConstantName: "Nhập tên cho hằng số này"
importInfo: "Nếu bạn nhập mã theme ở đây, bạn có thể nhập mã đó vào trình chỉnh\
\ sửa theme"
deleteConstantConfirm: "Bạn có chắc muốn xóa hằng số {const} không?"
keys:
accent: "Màu phụ"
bg: "Màu nền"
fg: "Màu chữ"
focus: "Trọng tâm"
indicator: "Chỉ báo"
panel: "Thanh bên"
shadow: "Bóng mờ"
header: "Ảnh bìa"
navBg: "Nền thanh bên"
navFg: "Chữ thanh bên"
navHoverFg: "Chữ thanh bên (Khi chạm)"
navActive: "Chữ thanh bên (Khi chọn)"
navIndicator: "Chỉ báo thanh bên"
link: "Đường dẫn"
hashtag: "Hashtag"
mention: "Nhắc đến"
mentionMe: "Lượt nhắc (Tôi)"
renote: "Đăng lại"
modalBg: "Nền phương thức"
divider: "Phân chia"
scrollbarHandle: "Thanh cuộn khi giữ"
scrollbarHandleHover: "Thanh cuộn khi chạm"
dateLabelFg: "Màu ngày tháng năm"
infoBg: "Nền thông tin"
infoFg: "Chữ thông tin"
infoWarnBg: "Nền cảnh báo"
infoWarnFg: "Chữ cảnh báo"
cwBg: "Nền nút nội dung ẩn"
cwFg: "Chữ nút nội dung ẩn"
cwHoverBg: "Nền nút nội dung ẩn (Chạm)"
toastBg: "Nền thông báo"
toastFg: "Chữ thông báo"
buttonBg: "Nền nút"
buttonHoverBg: "Nền nút (Chạm)"
inputBorder: "Đường viền khung soạn thảo"
listItemHoverBg: "Nền mục liệt kê (Chạm)"
driveFolderBg: "Nền thư mục Ổ đĩa"
wallpaperOverlay: "Lớp phủ hình nền"
badge: "Huy hiệu"
messageBg: "Nền chat"
accentDarken: "Màu phụ (Tối)"
accentLighten: "Màu phụ (Sáng)"
fgHighlighted: "Chữ nổi bật"
_sfx: _sfx:
note: "Tút" note: "Tút"
noteMy: "Tút của tôi" noteMy: "Tút của tôi"
@ -1422,7 +1247,6 @@ _relayStatus:
accepted: "Đã duyệt" accepted: "Đã duyệt"
rejected: "Đã từ chối" rejected: "Đã từ chối"
_notification: _notification:
fileUploaded: "Đã tải lên tập tin"
youGotMention: "{name} nhắc đến bạn" youGotMention: "{name} nhắc đến bạn"
youGotReply: "{name} trả lời bạn" youGotReply: "{name} trả lời bạn"
youGotQuote: "{name} trích dẫn tút của bạn" youGotQuote: "{name} trích dẫn tút của bạn"
@ -1437,7 +1261,6 @@ _notification:
pollEnded: "Cuộc bình chọn đã kết thúc" pollEnded: "Cuộc bình chọn đã kết thúc"
emptyPushNotificationMessage: "Đã cập nhật thông báo đẩy" emptyPushNotificationMessage: "Đã cập nhật thông báo đẩy"
_types: _types:
all: "Toàn bộ"
follow: "Đang theo dõi" follow: "Đang theo dõi"
mention: "Nhắc đến" mention: "Nhắc đến"
reply: "Lượt trả lời" reply: "Lượt trả lời"

View file

@ -12,7 +12,6 @@ fetchingAsApObject: "正在联邦宇宙查询中..."
ok: "OK" ok: "OK"
gotIt: "我明白了" gotIt: "我明白了"
cancel: "取消" cancel: "取消"
enterUsername: "输入用户名"
renotedBy: "由 {user} 转贴" renotedBy: "由 {user} 转贴"
noNotes: "没有帖文" noNotes: "没有帖文"
noNotifications: "无通知" noNotifications: "无通知"
@ -28,16 +27,12 @@ login: "登录"
loggingIn: "正在登录..." loggingIn: "正在登录..."
logout: "登出" logout: "登出"
signup: "新用户注册" signup: "新用户注册"
uploading: "正在上传"
save: "保存" save: "保存"
users: "用户" users: "用户"
addUser: "添加用户" addUser: "添加用户"
favorite: "收藏" favorite: "收藏"
favorites: "收藏" favorites: "收藏"
unfavorite: "取消收藏" unfavorite: "取消收藏"
favorited: "已加入收藏夹。"
alreadyFavorited: "收藏夹中已存在。"
cantFavorite: "无法添加到收藏夹。"
pin: "置顶" pin: "置顶"
unpin: "取消置顶" unpin: "取消置顶"
copyContent: "复制内容" copyContent: "复制内容"
@ -48,7 +43,6 @@ deleteAndEditConfirm: "要删除此帖并再次编辑吗?对此帖的所有回
addToList: "添加至列表" addToList: "添加至列表"
sendMessage: "发送" sendMessage: "发送"
copyUsername: "复制用户名" copyUsername: "复制用户名"
searchUser: "搜索用户"
reply: "回复" reply: "回复"
loadMore: "查看更多" loadMore: "查看更多"
showMore: "查看更多" showMore: "查看更多"
@ -68,7 +62,6 @@ unfollowConfirm: "要取消对{name}的关注吗?"
exportRequested: "导出请求已提交,这可能需要花一些时间,导出的文件将保存到网盘中。" exportRequested: "导出请求已提交,这可能需要花一些时间,导出的文件将保存到网盘中。"
importRequested: "导入请求已提交,这可能需要花一点时间。" importRequested: "导入请求已提交,这可能需要花一点时间。"
lists: "列表" lists: "列表"
noLists: "列表为空"
note: "帖子" note: "帖子"
notes: "帖子" notes: "帖子"
following: "关注中" following: "关注中"
@ -92,21 +85,15 @@ followRequest: "关注申请"
followRequests: "关注申请" followRequests: "关注申请"
unfollow: "取消关注" unfollow: "取消关注"
followRequestPending: "发送关注请求" followRequestPending: "发送关注请求"
enterEmoji: "输入表情符号"
renote: "转发" renote: "转发"
unrenote: "取消转发" unrenote: "取消转发"
renoted: "已转发。"
cantRenote: "该帖无法转发。"
cantReRenote: "转发无法被再次转发。"
quote: "引用" quote: "引用"
pinnedNote: "已置顶的帖子" pinnedNote: "已置顶的帖子"
pinned: "置顶"
you: "您" you: "您"
clickToShow: "点击以显示" clickToShow: "点击以显示"
sensitive: "敏感内容" sensitive: "敏感内容"
add: "添加" add: "添加"
reaction: "回应" reaction: "回应"
reactionSetting: "在选择器中显示的回应"
reactionSettingDescription2: "拖动重新排序,单击删除,点击 + 添加。" reactionSettingDescription2: "拖动重新排序,单击删除,点击 + 添加。"
attachCancel: "删除附件" attachCancel: "删除附件"
markAsSensitive: "标记为敏感内容" markAsSensitive: "标记为敏感内容"
@ -130,10 +117,7 @@ editWidgetsExit: "完成编辑"
customEmojis: "自定义表情符号" customEmojis: "自定义表情符号"
emoji: "表情符号" emoji: "表情符号"
emojis: "表情符号" emojis: "表情符号"
emojiName: "表情符号名称"
emojiUrl: "表情符号地址"
addEmoji: "添加表情符号" addEmoji: "添加表情符号"
settingGuide: "推荐配置"
cacheRemoteFiles: "远程文件缓存" cacheRemoteFiles: "远程文件缓存"
cacheRemoteFilesDescription: "当禁用此设定时远程文件将直接从远程实例载入。禁用后会减小储存空间需求,但是会增加流量,因为缩略图不会被生成。" cacheRemoteFilesDescription: "当禁用此设定时远程文件将直接从远程实例载入。禁用后会减小储存空间需求,但是会增加流量,因为缩略图不会被生成。"
flagAsBot: "这是一个机器人账号" flagAsBot: "这是一个机器人账号"
@ -147,7 +131,6 @@ addAccount: "添加账户"
loginFailed: "登录失败" loginFailed: "登录失败"
showOnRemote: "转到所在实例显示" showOnRemote: "转到所在实例显示"
general: "常规设置" general: "常规设置"
wallpaper: "壁纸"
setWallpaper: "设置壁纸" setWallpaper: "设置壁纸"
removeWallpaper: "移除壁纸" removeWallpaper: "移除壁纸"
youHaveNoLists: "列表为空" youHaveNoLists: "列表为空"
@ -159,27 +142,19 @@ selectUser: "选择用户"
recipient: "收件人" recipient: "收件人"
annotation: "注解" annotation: "注解"
federation: "联合" federation: "联合"
instances: "实例"
registeredAt: "初次观测" registeredAt: "初次观测"
latestRequestSentAt: "上次发送的请求" latestRequestSentAt: "上次发送的请求"
latestRequestReceivedAt: "上次收到的请求" latestRequestReceivedAt: "上次收到的请求"
latestStatus: "最后状态" latestStatus: "最后状态"
storageUsage: "已用存储"
charts: "图表" charts: "图表"
perHour: "每小时" perHour: "每小时"
perDay: "每天" perDay: "每天"
stopActivityDelivery: "停止发送活动" stopActivityDelivery: "停止发送活动"
blockThisInstance: "阻止此实例向本实例推流" blockThisInstance: "阻止此实例向本实例推流"
operations: "操作"
software: "软件" software: "软件"
version: "版本" version: "版本"
metadata: "元数据"
withNFiles: "{n}个文件" withNFiles: "{n}个文件"
monitor: "服务器状态"
jobQueue: "作业队列" jobQueue: "作业队列"
cpuAndMemory: "CPU和内存"
network: "网络"
disk: "存储"
instanceInfo: "实例信息" instanceInfo: "实例信息"
statistics: "统计" statistics: "统计"
clearQueue: "清除队列" clearQueue: "清除队列"
@ -210,9 +185,6 @@ all: "全部"
subscribing: "已订阅" subscribing: "已订阅"
publishing: "直播中" publishing: "直播中"
notResponding: "没有响应" notResponding: "没有响应"
instanceFollowing: "关注实例"
instanceFollowers: "关注实例"
instanceUsers: "实例用户"
changePassword: "修改密码" changePassword: "修改密码"
security: "安全" security: "安全"
retypedNotMatch: "两次输入不一致!" retypedNotMatch: "两次输入不一致!"
@ -228,7 +200,6 @@ lookup: "查询"
announcements: "公告" announcements: "公告"
imageUrl: "图片URL" imageUrl: "图片URL"
remove: "删除" remove: "删除"
removed: "已删除"
removeAreYouSure: "要删掉「{x}」吗?" removeAreYouSure: "要删掉「{x}」吗?"
deleteAreYouSure: "要删掉「{x}」吗?" deleteAreYouSure: "要删掉「{x}」吗?"
resetAreYouSure: "恢复默认设置?" resetAreYouSure: "恢复默认设置?"
@ -268,7 +239,6 @@ lightThemes: "浅色主题"
darkThemes: "深色主题" darkThemes: "深色主题"
syncDeviceDarkMode: "将深色模式与设备设置同步" syncDeviceDarkMode: "将深色模式与设备设置同步"
drive: "网盘" drive: "网盘"
fileName: "文件名称"
selectFile: "选择文件" selectFile: "选择文件"
selectFiles: "选择文件" selectFiles: "选择文件"
selectFolder: "选择文件夹" selectFolder: "选择文件夹"
@ -320,7 +290,6 @@ disconnectService: "断开连接"
enableLocalTimeline: "启用本地时间线功能" enableLocalTimeline: "启用本地时间线功能"
enableGlobalTimeline: "启用全局时间线" enableGlobalTimeline: "启用全局时间线"
disablingTimelinesInfo: "即使时间线功能被禁用,出于方便,管理员和数据图表也可以继续使用。" disablingTimelinesInfo: "即使时间线功能被禁用,出于方便,管理员和数据图表也可以继续使用。"
registration: "注册"
enableRegistration: "允许新用户注册" enableRegistration: "允许新用户注册"
invite: "邀请" invite: "邀请"
driveCapacityPerLocalAccount: "每个用户的网盘空间" driveCapacityPerLocalAccount: "每个用户的网盘空间"
@ -329,22 +298,12 @@ inMb: "以兆字节(MegaByte)为单位"
iconUrl: "图标URL" iconUrl: "图标URL"
bannerUrl: "横幅URL" bannerUrl: "横幅URL"
backgroundImageUrl: "背景图URL" backgroundImageUrl: "背景图URL"
basicInfo: "基本信息"
pinnedUsers: "置顶用户" pinnedUsers: "置顶用户"
pinnedUsersDescription: "在「发现」页面中使用换行标记想要置顶的用户。" pinnedUsersDescription: "在「发现」页面中使用换行标记想要置顶的用户。"
pinnedPages: "固定页面"
pinnedPagesDescription: "输入您要固定到实例首页的页面路径,以换行符分隔。"
pinnedClipId: "置顶的书签ID"
pinnedNotes: "已置顶的帖子"
hcaptcha: "hCaptcha"
enableHcaptcha: "启用 hCaptcha"
hcaptchaSiteKey: "网站密钥" hcaptchaSiteKey: "网站密钥"
hcaptchaSecretKey: "密钥" hcaptchaSecretKey: "密钥"
recaptcha: "reCAPTCHA"
enableRecaptcha: "启用 reCAPTCHA\n(请注意, 此功能在中国大陆不可用. 如果启用, 可能导致无法正常使用登录或注册等功能)"
recaptchaSiteKey: "网站密钥" recaptchaSiteKey: "网站密钥"
recaptchaSecretKey: "reCAPTCHA 密钥" recaptchaSecretKey: "reCAPTCHA 密钥"
avoidMultiCaptchaConfirm: "使用多种验证方式可能会造成干扰,您要禁用其他验证方式吗?您可以按“取消”按钮,仍然保持启用多种验证方式。"
antennas: "天线" antennas: "天线"
manageAntennas: "天线管理" manageAntennas: "天线管理"
name: "名称" name: "名称"
@ -354,7 +313,6 @@ antennaExcludeKeywords: "排除关键字"
antennaKeywordsDescription: "使用空格分隔会产生AND规范并且使用换行符分隔会产生OR规范" antennaKeywordsDescription: "使用空格分隔会产生AND规范并且使用换行符分隔会产生OR规范"
notifyAntenna: "开启通知" notifyAntenna: "开启通知"
withFileAntenna: "仅带有附件的帖子" withFileAntenna: "仅带有附件的帖子"
enableServiceworker: "启用ServiceWorker"
antennaUsersDescription: "指定用户名,用换行符分隔" antennaUsersDescription: "指定用户名,用换行符分隔"
caseSensitive: "区分大小写" caseSensitive: "区分大小写"
withReplies: "包括回复" withReplies: "包括回复"
@ -369,11 +327,8 @@ popularUsers: "热门用户"
recentlyUpdatedUsers: "最近投稿的用户" recentlyUpdatedUsers: "最近投稿的用户"
recentlyRegisteredUsers: "最近登录的用户" recentlyRegisteredUsers: "最近登录的用户"
recentlyDiscoveredUsers: "最近发现的用户" recentlyDiscoveredUsers: "最近发现的用户"
exploreUsersCount: "有{count}个用户"
exploreFediverse: "探索联邦宇宙"
popularTags: "热门标签" popularTags: "热门标签"
userList: "列表" userList: "列表"
about: "关于"
aboutMisskey: "关于 FoundKey" aboutMisskey: "关于 FoundKey"
administrator: "管理员" administrator: "管理员"
token: "Token (令牌)" token: "Token (令牌)"
@ -393,7 +348,6 @@ share: "分享"
notFound: "未找到" notFound: "未找到"
notFoundDescription: "没有与指定URL对应的页面。" notFoundDescription: "没有与指定URL对应的页面。"
uploadFolder: "默认上传文件夹" uploadFolder: "默认上传文件夹"
cacheClear: "清空缓存"
markAsReadAllNotifications: "将所有通知标为已读" markAsReadAllNotifications: "将所有通知标为已读"
markAsReadAllUnreadNotes: "将所有帖子标记为已读" markAsReadAllUnreadNotes: "将所有帖子标记为已读"
markAsReadAllTalkMessages: "将所有聊天标记为已读" markAsReadAllTalkMessages: "将所有聊天标记为已读"
@ -424,7 +378,6 @@ noMessagesYet: "现在没有新的聊天"
newMessageExists: "新信息" newMessageExists: "新信息"
onlyOneFileCanBeAttached: "只能添加一个附件" onlyOneFileCanBeAttached: "只能添加一个附件"
signinRequired: "请先登录" signinRequired: "请先登录"
invitations: "邀请"
invitationCode: "邀请码" invitationCode: "邀请码"
checking: "正在确认" checking: "正在确认"
available: "可用" available: "可用"
@ -444,7 +397,6 @@ or: "或者"
language: "语言" language: "语言"
uiLanguage: "显示语言" uiLanguage: "显示语言"
groupInvited: "您有新的群组邀请" groupInvited: "您有新的群组邀请"
aboutX: "关于 {x}"
useOsNativeEmojis: "使用系统的原生表情符号" useOsNativeEmojis: "使用系统的原生表情符号"
disableDrawer: "不显示抽屉菜单" disableDrawer: "不显示抽屉菜单"
youHaveNoGroups: "没有群组" youHaveNoGroups: "没有群组"
@ -452,27 +404,19 @@ joinOrCreateGroup: "请加入一个现有的群组,或者创建新群组。"
noHistory: "没有历史记录" noHistory: "没有历史记录"
signinHistory: "登录历史" signinHistory: "登录历史"
disableAnimatedMfm: "禁用MFM动画" disableAnimatedMfm: "禁用MFM动画"
doing: "正在进行"
category: "类别" category: "类别"
tags: "标签" tags: "标签"
docSource: "文件来源"
createAccount: "注册账户" createAccount: "注册账户"
existingAccount: "现有的账户" existingAccount: "现有的账户"
regenerate: "重新生成"
fontSize: "字体大小" fontSize: "字体大小"
noFollowRequests: "没有关注申请" noFollowRequests: "没有关注申请"
openImageInNewTab: "在新标签页中打开图片" openImageInNewTab: "在新标签页中打开图片"
dashboard: "管理面板" dashboard: "管理面板"
local: "本地" local: "本地"
remote: "远程" remote: "远程"
total: "总计"
weekOverWeekChanges: "与前一周相比"
dayOverDayChanges: "与前一日相比" dayOverDayChanges: "与前一日相比"
appearance: "外观" appearance: "外观"
clientSettings: "客户端设置" clientSettings: "客户端设置"
accountSettings: "账户设置"
numberOfDays: "天数"
hideThisNote: "隐藏这条帖子"
showFeaturedNotesInTimeline: "在时间线上显示热门推荐" showFeaturedNotesInTimeline: "在时间线上显示热门推荐"
objectStorage: "对象存储" objectStorage: "对象存储"
useObjectStorage: "使用对象存储" useObjectStorage: "使用对象存储"
@ -492,8 +436,6 @@ objectStorageUseSSLDesc: "如果不使用https进行API连接请关闭。"
objectStorageUseProxy: "使用代理" objectStorageUseProxy: "使用代理"
objectStorageUseProxyDesc: "如果您不使用代理进行API连接请将其关闭。" objectStorageUseProxyDesc: "如果您不使用代理进行API连接请将其关闭。"
objectStorageSetPublicRead: "上传时设置为public-read" objectStorageSetPublicRead: "上传时设置为public-read"
serverLogs: "服务器日志"
deleteAll: "全部删除"
showFixedPostForm: "在时间线顶部显示发帖框" showFixedPostForm: "在时间线顶部显示发帖框"
newNoteRecived: "有新的帖子" newNoteRecived: "有新的帖子"
sounds: "提示音" sounds: "提示音"
@ -504,7 +446,6 @@ popout: "弹窗"
volume: "音量" volume: "音量"
masterVolume: "主音量" masterVolume: "主音量"
details: "详情" details: "详情"
chooseEmoji: "选择表情符号"
unableToProcess: "操作无法完成" unableToProcess: "操作无法完成"
recentUsed: "最近使用" recentUsed: "最近使用"
install: "安装" install: "安装"
@ -520,9 +461,7 @@ descendingOrder: "降序"
scratchpad: "AiScript控制台" scratchpad: "AiScript控制台"
scratchpadDescription: "AiScript控制台为AiScript提供了实验环境。您可以编写代码以与FoundKey交互运行它并查看结果。" scratchpadDescription: "AiScript控制台为AiScript提供了实验环境。您可以编写代码以与FoundKey交互运行它并查看结果。"
output: "输出" output: "输出"
script: "脚本"
updateRemoteUser: "更新远程用户信息" updateRemoteUser: "更新远程用户信息"
deleteAllFiles: "删除所有文件"
deleteAllFilesConfirm: "要删除所有文件吗?" deleteAllFilesConfirm: "要删除所有文件吗?"
removeAllFollowing: "取消所有关注" removeAllFollowing: "取消所有关注"
removeAllFollowingDescription: "取消{host}的所有关注者。当实例不存在时执行。" removeAllFollowingDescription: "取消{host}的所有关注者。当实例不存在时执行。"
@ -536,10 +475,7 @@ addItem: "添加项目"
relays: "中继" relays: "中继"
addRelay: "添加中继" addRelay: "添加中继"
inboxUrl: "Inbox URL" inboxUrl: "Inbox URL"
addedRelays: "已添加的中继"
serviceworkerInfo: "您需要启用推送通知"
deletedNote: "已删除的帖子" deletedNote: "已删除的帖子"
invisibleNote: "隐藏的帖子"
enableInfiniteScroll: "启用自动滚动页面模式" enableInfiniteScroll: "启用自动滚动页面模式"
visibility: "可见性" visibility: "可见性"
poll: "调查问卷" poll: "调查问卷"
@ -549,15 +485,12 @@ disablePlayer: "关闭播放器"
themeEditor: "主题编辑器" themeEditor: "主题编辑器"
description: "描述" description: "描述"
describeFile: "添加标题" describeFile: "添加标题"
enterFileDescription: "输入标题"
author: "作者" author: "作者"
leaveConfirm: "存在未保存的更改。要放弃更改吗?" leaveConfirm: "存在未保存的更改。要放弃更改吗?"
manage: "管理" manage: "管理"
plugins: "插件" plugins: "插件"
deck: "Deck" deck: "Deck"
undeck: "取消Deck"
useBlurEffectForModal: "对话框使用模糊效果" useBlurEffectForModal: "对话框使用模糊效果"
useFullReactionPicker: "使用全功能的回应工具栏"
width: "宽度" width: "宽度"
height: "高度" height: "高度"
large: "大" large: "大"
@ -569,7 +502,6 @@ enableAll: "启用全部"
disableAll: "禁用全部" disableAll: "禁用全部"
tokenRequested: "允许访问账户" tokenRequested: "允许访问账户"
pluginTokenRequestedDescription: "此插件将能够拥有此处设置的权限" pluginTokenRequestedDescription: "此插件将能够拥有此处设置的权限"
notificationType: "通知类型"
edit: "编辑" edit: "编辑"
useStarForReactionFallback: "如果回应的是未知表情符号,则使用★作为代替" useStarForReactionFallback: "如果回应的是未知表情符号,则使用★作为代替"
emailServer: "邮件服务器" emailServer: "邮件服务器"
@ -594,10 +526,7 @@ userSaysSomething: "{name}说了什么"
makeActive: "启用" makeActive: "启用"
display: "显示" display: "显示"
copy: "复制" copy: "复制"
metrics: "服务器监控"
overview: "服务器概况" overview: "服务器概况"
logs: "日志"
delayed: "滞后"
database: "数据库" database: "数据库"
channel: "频道" channel: "频道"
create: "创建" create: "创建"
@ -611,7 +540,6 @@ regenerateLoginTokenDescription: "重新生成用于登录的内部令牌。通
setMultipleBySeparatingWithSpace: "您可以使用空格分隔多个项目。" setMultipleBySeparatingWithSpace: "您可以使用空格分隔多个项目。"
fileIdOrUrl: "文件ID或者URL" fileIdOrUrl: "文件ID或者URL"
behavior: "行为" behavior: "行为"
sample: "示例"
abuseReports: "举报" abuseReports: "举报"
reportAbuse: "举报" reportAbuse: "举报"
reportAbuseOf: "举报{name}" reportAbuseOf: "举报{name}"
@ -625,12 +553,8 @@ forwardReportIsAnonymous: "勾选则在远程实例上显示的举报者是匿
send: "发送" send: "发送"
abuseMarkAsResolved: "处理完毕" abuseMarkAsResolved: "处理完毕"
openInNewTab: "在新标签页中打开" openInNewTab: "在新标签页中打开"
openInSideView: "在侧边栏中打开"
defaultNavigationBehaviour: "默认导航" defaultNavigationBehaviour: "默认导航"
editTheseSettingsMayBreakAccount: "编辑这些设置可以会损坏您的账号"
instanceTicker: "帖子的实例信息" instanceTicker: "帖子的实例信息"
waitingFor: "等待{x}"
random: "随机"
system: "系统" system: "系统"
switchUi: "切换界面" switchUi: "切换界面"
desktop: "桌面" desktop: "桌面"
@ -664,7 +588,6 @@ alwaysMarkSensitive: "默认将媒体文件标记为敏感内容"
loadRawImages: "添加附件图像的缩略图时使用原始图像质量" loadRawImages: "添加附件图像的缩略图时使用原始图像质量"
disableShowingAnimatedImages: "不播放动画" disableShowingAnimatedImages: "不播放动画"
verificationEmailSent: "已发送确认电子邮件。请访问电子邮件中的链接以完成设置。" verificationEmailSent: "已发送确认电子邮件。请访问电子邮件中的链接以完成设置。"
notSet: "未设置"
emailVerified: "电子邮件地址已验证" emailVerified: "电子邮件地址已验证"
noteFavoritesCount: "收藏的帖子数" noteFavoritesCount: "收藏的帖子数"
pageLikesCount: "页面点赞次数" pageLikesCount: "页面点赞次数"
@ -672,8 +595,6 @@ pageLikedCount: "页面被点赞次数"
contact: "联系人" contact: "联系人"
useSystemFont: "使用系统默认字体" useSystemFont: "使用系统默认字体"
clips: "书签" clips: "书签"
experimentalFeatures: "实验性功能"
developer: "开发者"
makeExplorable: "使账号可见。" makeExplorable: "使账号可见。"
makeExplorableDescription: "关闭时,账号不会显示在\"发现\"中。" makeExplorableDescription: "关闭时,账号不会显示在\"发现\"中。"
showGapBetweenNotesInTimeline: "时间线上的帖子分开显示。" showGapBetweenNotesInTimeline: "时间线上的帖子分开显示。"
@ -684,28 +605,16 @@ wide: "宽"
narrow: "窄" narrow: "窄"
reloadToApplySetting: "页面刷新后设置才会生效。是否现在刷新页面?" reloadToApplySetting: "页面刷新后设置才会生效。是否现在刷新页面?"
needReloadToApply: "重启后应用才会生效。" needReloadToApply: "重启后应用才会生效。"
showTitlebar: "显示标题栏"
clearCache: "清除缓存" clearCache: "清除缓存"
onlineUsersCount: "{n}人在线" onlineUsersCount: "{n}人在线"
nUsers: "{n}用户"
nNotes: "{n}帖子"
myTheme: "我的主题"
backgroundColor: "背景" backgroundColor: "背景"
accentColor: "强调色" accentColor: "强调色"
textColor: "文本" textColor: "文本"
saveAs: "另存为" saveAs: "另存为"
advanced: "高级"
value: "值"
createdAt: "创建日期" createdAt: "创建日期"
updatedAt: "更新时间" updatedAt: "更新时间"
saveConfirm: "确定保存?"
deleteConfirm: "确定删除?" deleteConfirm: "确定删除?"
invalidValue: "无效值。"
registry: "注册表"
closeAccount: "永久注销账户" closeAccount: "永久注销账户"
currentVersion: "当前版本"
latestVersion: "最新版本"
youAreRunningUpToDateClient: "您所使用的客户端已经是最新的。"
newVersionOfClientAvailable: "新版本的客户端可用。" newVersionOfClientAvailable: "新版本的客户端可用。"
usageAmount: "使用量" usageAmount: "使用量"
capacity: "容量" capacity: "容量"
@ -715,11 +624,9 @@ apply: "应用"
receiveAnnouncementFromInstance: "从实例接收通知" receiveAnnouncementFromInstance: "从实例接收通知"
emailNotification: "邮件通知" emailNotification: "邮件通知"
publish: "发布" publish: "发布"
inChannelSearch: "频道内搜索"
useReactionPickerForContextMenu: "单击右键打开回应工具栏" useReactionPickerForContextMenu: "单击右键打开回应工具栏"
typingUsers: "{users}正在输入" typingUsers: "{users}正在输入"
jumpToSpecifiedDate: "跳转到特定日期" jumpToSpecifiedDate: "跳转到特定日期"
showingPastTimeline: "显示过去的时间线"
clear: "清除" clear: "清除"
markAllAsRead: "全部标记为已读" markAllAsRead: "全部标记为已读"
goBack: "返回" goBack: "返回"
@ -732,7 +639,6 @@ notSpecifiedMentionWarning: "有未指定的提及"
info: "关于" info: "关于"
userInfo: "用户信息" userInfo: "用户信息"
unknown: "未知" unknown: "未知"
onlineStatus: "在线状态"
hideOnlineStatus: "隐藏在线状态" hideOnlineStatus: "隐藏在线状态"
hideOnlineStatusDescription: "隐藏在线状态后,可能会降低例如搜索等功能的便利性。" hideOnlineStatusDescription: "隐藏在线状态后,可能会降低例如搜索等功能的便利性。"
online: "在线" online: "在线"
@ -758,21 +664,12 @@ gallery: "图库"
recentPosts: "最新发布" recentPosts: "最新发布"
popularPosts: "热门投稿" popularPosts: "热门投稿"
shareWithNote: "在帖子中分享" shareWithNote: "在帖子中分享"
expiration: "截止时间"
memo: "便笺"
priority: "优先级"
high: "高"
middle: "中"
low: "低"
emailNotConfiguredWarning: "电子邮件地址未设置。" emailNotConfiguredWarning: "电子邮件地址未设置。"
ratio: "比率" ratio: "比率"
previewNoteText: "预览文本" previewNoteText: "预览文本"
customCss: "自定义 CSS" customCss: "自定义 CSS"
customCssWarn: "这些设置必须有相关的基础知识,不当的配置可能导致客户端无法正常使用!" customCssWarn: "这些设置必须有相关的基础知识,不当的配置可能导致客户端无法正常使用!"
global: "全局"
squareAvatars: "显示方形头像图标" squareAvatars: "显示方形头像图标"
sent: "发送"
received: "收取"
searchResult: "搜索结果" searchResult: "搜索结果"
hashtags: "话题标签" hashtags: "话题标签"
troubleshooting: "故障排除" troubleshooting: "故障排除"
@ -852,9 +749,6 @@ _accountDelete:
requestAccountDelete: "请求删除账户" requestAccountDelete: "请求删除账户"
started: "账户删除过程已开始。" started: "账户删除过程已开始。"
inProgress: "正在删除" inProgress: "正在删除"
_ad:
back: "返回"
reduceFrequencyOfThisAd: "减少此广告的频率"
_forgotPassword: _forgotPassword:
enterEmail: "请输入您验证账号时用的电子邮箱地址,密码重置链接将发送至该邮箱上。" enterEmail: "请输入您验证账号时用的电子邮箱地址,密码重置链接将发送至该邮箱上。"
ifNoEmail: "如果您没有使用电子邮件地址进行验证,请联系管理员。" ifNoEmail: "如果您没有使用电子邮件地址进行验证,请联系管理员。"
@ -872,7 +766,6 @@ _email:
_plugin: _plugin:
install: "安装插件" install: "安装插件"
installWarn: "请不要安装不可信的插件。" installWarn: "请不要安装不可信的插件。"
manage: "管理插件..."
_registry: _registry:
scope: "范围" scope: "范围"
key: "主要" key: "主要"
@ -881,10 +774,8 @@ _registry:
createKey: "创建键" createKey: "创建键"
_aboutMisskey: _aboutMisskey:
about: "FoundKey是由syuilo于2014年开发的开源软件。" about: "FoundKey是由syuilo于2014年开发的开源软件。"
contributors: "主要贡献者"
allContributors: "全体贡献者" allContributors: "全体贡献者"
source: "源代码" source: "源代码"
translation: "翻译FoundKey"
_nsfw: _nsfw:
respect: "隐藏敏感内容" respect: "隐藏敏感内容"
ignore: "不隐藏敏感内容" ignore: "不隐藏敏感内容"
@ -1002,68 +893,6 @@ _theme:
alreadyInstalled: "此主题已经安装" alreadyInstalled: "此主题已经安装"
invalid: "主题格式错误" invalid: "主题格式错误"
make: "制作主题" make: "制作主题"
base: "基于"
addConstant: "添加常量"
constant: "常量"
defaultValue: "默认值"
color: "颜色"
refProp: "查看属性"
refConst: "查看常量"
key: "主要"
func: "函数"
funcKind: "功能类型"
argument: "参数"
basedProp: "基于的属性名称"
alpha: "不透明度"
darken: "深色"
lighten: "浅色"
inputConstantName: "请输入常量名称"
importInfo: "您可以在此处粘贴主题代码,将其导入到编辑器中"
deleteConstantConfirm: "确定要删除常量{const}吗?"
keys:
accent: "强调色"
bg: "背景"
fg: "文本"
focus: "聚焦"
indicator: "标记"
panel: "面板"
shadow: "阴影"
header: "顶栏"
navBg: "侧边栏背景"
navFg: "侧栏文本"
navHoverFg: "侧栏文本(悬停)"
navActive: "侧栏文本(活动)"
navIndicator: "侧栏标记"
link: "链接"
hashtag: "话题标签"
mention: "提及"
mentionMe: "提及"
renote: "转发"
modalBg: "对话框背景"
divider: "分割线"
scrollbarHandle: "滚动条"
scrollbarHandleHover: "滚动条(悬停)"
dateLabelFg: "日期标签文字"
infoBg: "信息背景"
infoFg: "信息文本"
infoWarnBg: "警告背景"
infoWarnFg: "警告文本"
cwBg: "CW 按钮背景"
cwFg: "CW 按钮文本"
cwHoverBg: "CW 按钮背景(悬停)"
toastBg: "Toast通知背景"
toastFg: "Toast通知文本"
buttonBg: "按钮背景"
buttonHoverBg: "按钮背景(悬停)"
inputBorder: "输入框边框"
listItemHoverBg: "下拉列表项目背景(悬停)"
driveFolderBg: "网盘的文件夹背景"
wallpaperOverlay: "壁纸叠加层"
badge: "徽章"
messageBg: "聊天背景"
accentDarken: "强调色(深)"
accentLighten: "强调色(浅)"
fgHighlighted: "高亮显示文本"
_sfx: _sfx:
note: "帖子" note: "帖子"
noteMy: "我的帖子" noteMy: "我的帖子"
@ -1329,7 +1158,6 @@ _relayStatus:
accepted: "已批准" accepted: "已批准"
rejected: "已拒绝" rejected: "已拒绝"
_notification: _notification:
fileUploaded: "文件已上传"
youGotMention: "来自{name}的提及" youGotMention: "来自{name}的提及"
youGotReply: "来自{name}的回复" youGotReply: "来自{name}的回复"
youGotQuote: "来自{name}的引用" youGotQuote: "来自{name}的引用"
@ -1344,7 +1172,6 @@ _notification:
pollEnded: "问卷调查结果已生成。" pollEnded: "问卷调查结果已生成。"
emptyPushNotificationMessage: "推送通知已更新" emptyPushNotificationMessage: "推送通知已更新"
_types: _types:
all: "全部"
follow: "关注中" follow: "关注中"
mention: "提及" mention: "提及"
reply: "回复" reply: "回复"

View file

@ -12,7 +12,6 @@ fetchingAsApObject: "從聯邦宇宙取得中..."
ok: "OK" ok: "OK"
gotIt: "知道了" gotIt: "知道了"
cancel: "取消" cancel: "取消"
enterUsername: "輸入使用者名稱"
renotedBy: "{user} 轉傳了" renotedBy: "{user} 轉傳了"
noNotes: "無貼文。" noNotes: "無貼文。"
noNotifications: "沒有通知" noNotifications: "沒有通知"
@ -28,16 +27,12 @@ login: "登入"
loggingIn: "登入中" loggingIn: "登入中"
logout: "登出" logout: "登出"
signup: "註冊" signup: "註冊"
uploading: "上傳中"
save: "儲存" save: "儲存"
users: "使用者" users: "使用者"
addUser: "新增使用者" addUser: "新增使用者"
favorite: "我的最愛" favorite: "我的最愛"
favorites: "我的最愛" favorites: "我的最愛"
unfavorite: "從我的最愛中移除" unfavorite: "從我的最愛中移除"
favorited: "已添加至我的最愛"
alreadyFavorited: "我的最愛中已存在。"
cantFavorite: "無法加入至我的最愛。"
pin: "置頂" pin: "置頂"
unpin: "取消置頂" unpin: "取消置頂"
copyContent: "複製內容" copyContent: "複製內容"
@ -48,7 +43,6 @@ deleteAndEditConfirm: "要刪除並再次編輯嗎?此貼文的所有情感、
addToList: "加入至清單" addToList: "加入至清單"
sendMessage: "發送訊息" sendMessage: "發送訊息"
copyUsername: "複製使用者名稱" copyUsername: "複製使用者名稱"
searchUser: "搜尋使用者"
reply: "回覆" reply: "回覆"
loadMore: "載入更多" loadMore: "載入更多"
showMore: "載入更多" showMore: "載入更多"
@ -68,7 +62,6 @@ unfollowConfirm: "確定要取消追隨{name}嗎?"
exportRequested: "已請求匯出。這可能會花一點時間。結束後檔案將會被放到雲端裡。" exportRequested: "已請求匯出。這可能會花一點時間。結束後檔案將會被放到雲端裡。"
importRequested: "已請求匯入。這可能會花一點時間" importRequested: "已請求匯入。這可能會花一點時間"
lists: "清單" lists: "清單"
noLists: "你沒有任何清單"
note: "貼文" note: "貼文"
notes: "貼文" notes: "貼文"
following: "追隨中" following: "追隨中"
@ -92,21 +85,15 @@ followRequest: "追隨請求"
followRequests: "追隨請求" followRequests: "追隨請求"
unfollow: "取消追隨" unfollow: "取消追隨"
followRequestPending: "追隨許可批准中" followRequestPending: "追隨許可批准中"
enterEmoji: "輸入表情符號"
renote: "轉發" renote: "轉發"
unrenote: "取消轉發" unrenote: "取消轉發"
renoted: "轉傳成功"
cantRenote: "無法轉發此貼文。"
cantReRenote: "無法轉傳之前已經轉傳過的內容。"
quote: "引用" quote: "引用"
pinnedNote: "已置頂的貼文" pinnedNote: "已置頂的貼文"
pinned: "置頂"
you: "您" you: "您"
clickToShow: "按一下以顯示" clickToShow: "按一下以顯示"
sensitive: "敏感內容" sensitive: "敏感內容"
add: "新增" add: "新增"
reaction: "情感" reaction: "情感"
reactionSetting: "在選擇器中顯示反應"
reactionSettingDescription2: "拖動以重新列序,點擊以刪除,按下 + 添加。" reactionSettingDescription2: "拖動以重新列序,點擊以刪除,按下 + 添加。"
attachCancel: "移除附件" attachCancel: "移除附件"
markAsSensitive: "標記為敏感內容" markAsSensitive: "標記為敏感內容"
@ -130,10 +117,7 @@ editWidgetsExit: "完成"
customEmojis: "自訂表情符號" customEmojis: "自訂表情符號"
emoji: "表情符號" emoji: "表情符號"
emojis: "表情符號" emojis: "表情符號"
emojiName: "表情符號名稱"
emojiUrl: "表情符號URL"
addEmoji: "加入表情符號" addEmoji: "加入表情符號"
settingGuide: "推薦設定"
cacheRemoteFiles: "快取遠端檔案" cacheRemoteFiles: "快取遠端檔案"
cacheRemoteFilesDescription: "禁用此設定會停止遠端檔案的緩存,從而節省儲存空間,但資料會因直接連線從而產生額外連接數據。" cacheRemoteFilesDescription: "禁用此設定會停止遠端檔案的緩存,從而節省儲存空間,但資料會因直接連線從而產生額外連接數據。"
flagAsBot: "此使用者是機器人" flagAsBot: "此使用者是機器人"
@ -147,7 +131,6 @@ addAccount: "添加帳戶"
loginFailed: "登入失敗" loginFailed: "登入失敗"
showOnRemote: "轉到所在實例顯示" showOnRemote: "轉到所在實例顯示"
general: "一般" general: "一般"
wallpaper: "桌布"
setWallpaper: "設定桌布" setWallpaper: "設定桌布"
removeWallpaper: "移除桌布" removeWallpaper: "移除桌布"
youHaveNoLists: "你沒有任何清單" youHaveNoLists: "你沒有任何清單"
@ -159,27 +142,19 @@ selectUser: "選取使用者"
recipient: "收件人" recipient: "收件人"
annotation: "註解" annotation: "註解"
federation: "站台聯邦" federation: "站台聯邦"
instances: "實例"
registeredAt: "初次觀測" registeredAt: "初次觀測"
latestRequestSentAt: "上次發送的請求" latestRequestSentAt: "上次發送的請求"
latestRequestReceivedAt: "上次收到的請求" latestRequestReceivedAt: "上次收到的請求"
latestStatus: "最後狀態" latestStatus: "最後狀態"
storageUsage: "已使用容量"
charts: "圖表" charts: "圖表"
perHour: "每小時" perHour: "每小時"
perDay: "每日" perDay: "每日"
stopActivityDelivery: "停止發送活動" stopActivityDelivery: "停止發送活動"
blockThisInstance: "封鎖此實例" blockThisInstance: "封鎖此實例"
operations: "操作"
software: "軟體" software: "軟體"
version: "版本" version: "版本"
metadata: "元資料"
withNFiles: "{n}個檔案" withNFiles: "{n}個檔案"
monitor: "監視器"
jobQueue: "佇列" jobQueue: "佇列"
cpuAndMemory: "CPU及記憶體用量"
network: "網路"
disk: "硬碟"
instanceInfo: "實例資訊" instanceInfo: "實例資訊"
statistics: "統計" statistics: "統計"
clearQueue: "清除佇列" clearQueue: "清除佇列"
@ -210,9 +185,6 @@ all: "全部"
subscribing: "訂閱中" subscribing: "訂閱中"
publishing: "直播中" publishing: "直播中"
notResponding: "沒有回應" notResponding: "沒有回應"
instanceFollowing: "追蹤實例"
instanceFollowers: "追蹤實例"
instanceUsers: "用戶"
changePassword: "修改密碼" changePassword: "修改密碼"
security: "安全性" security: "安全性"
retypedNotMatch: "兩次輸入不一致。" retypedNotMatch: "兩次輸入不一致。"
@ -228,7 +200,6 @@ lookup: "查詢"
announcements: "公告" announcements: "公告"
imageUrl: "圖片URL" imageUrl: "圖片URL"
remove: "刪除" remove: "刪除"
removed: "已刪除"
removeAreYouSure: "確定要刪掉「{x}」嗎?" removeAreYouSure: "確定要刪掉「{x}」嗎?"
deleteAreYouSure: "確定要刪掉「{x}」嗎?" deleteAreYouSure: "確定要刪掉「{x}」嗎?"
resetAreYouSure: "確定要重設嗎?" resetAreYouSure: "確定要重設嗎?"
@ -268,7 +239,6 @@ lightThemes: "明亮主題"
darkThemes: "黑暗主題" darkThemes: "黑暗主題"
syncDeviceDarkMode: "將黑暗模式與設備設置同步" syncDeviceDarkMode: "將黑暗模式與設備設置同步"
drive: "雲端硬碟" drive: "雲端硬碟"
fileName: "檔案名稱"
selectFile: "選擇檔案" selectFile: "選擇檔案"
selectFiles: "選擇檔案" selectFiles: "選擇檔案"
selectFolder: "選擇資料夾" selectFolder: "選擇資料夾"
@ -320,7 +290,6 @@ disconnectService: "己斷開 "
enableLocalTimeline: "開啟本地時間軸" enableLocalTimeline: "開啟本地時間軸"
enableGlobalTimeline: "啟用公開時間軸" enableGlobalTimeline: "啟用公開時間軸"
disablingTimelinesInfo: "即使您關閉了時間線功能,管理員和協調人仍可以繼續使用,以方便您。" disablingTimelinesInfo: "即使您關閉了時間線功能,管理員和協調人仍可以繼續使用,以方便您。"
registration: "註冊"
enableRegistration: "開啟新使用者註冊" enableRegistration: "開啟新使用者註冊"
invite: "邀請" invite: "邀請"
driveCapacityPerLocalAccount: "每個本地用戶的雲端空間大小" driveCapacityPerLocalAccount: "每個本地用戶的雲端空間大小"
@ -329,22 +298,12 @@ inMb: "以Mbps為單位"
iconUrl: "圖像URL" iconUrl: "圖像URL"
bannerUrl: "橫幅圖像URL" bannerUrl: "橫幅圖像URL"
backgroundImageUrl: "背景圖片的來源網址 " backgroundImageUrl: "背景圖片的來源網址 "
basicInfo: "基本資訊"
pinnedUsers: "置頂用戶" pinnedUsers: "置頂用戶"
pinnedUsersDescription: "在「發現」頁面中使用換行標記想要置頂的使用者。" pinnedUsersDescription: "在「發現」頁面中使用換行標記想要置頂的使用者。"
pinnedPages: "釘選頁面"
pinnedPagesDescription: "輸入要固定至實例首頁的頁面路徑,以換行符分隔。"
pinnedClipId: "置頂的摘錄ID"
pinnedNotes: "已置頂的貼文"
hcaptcha: "hCaptcha"
enableHcaptcha: "啟用 hCaptcha"
hcaptchaSiteKey: "網站金鑰" hcaptchaSiteKey: "網站金鑰"
hcaptchaSecretKey: "金鑰" hcaptchaSecretKey: "金鑰"
recaptcha: "reCAPTCHA"
enableRecaptcha: "啟用 reCAPTCHA"
recaptchaSiteKey: "網站金鑰" recaptchaSiteKey: "網站金鑰"
recaptchaSecretKey: "金鑰" recaptchaSecretKey: "金鑰"
avoidMultiCaptchaConfirm: "使用多種驗證方式可能會造成干擾,您要關閉其他驗證方式嗎?您可以按“取消”保留多種驗證方式。"
antennas: "天線" antennas: "天線"
manageAntennas: "管理天線" manageAntennas: "管理天線"
name: "名稱" name: "名稱"
@ -354,7 +313,6 @@ antennaExcludeKeywords: "排除關鍵字"
antennaKeywordsDescription: "用空格分隔指定AND、用換行符分隔指定OR" antennaKeywordsDescription: "用空格分隔指定AND、用換行符分隔指定OR"
notifyAntenna: "通知有新貼文" notifyAntenna: "通知有新貼文"
withFileAntenna: "僅帶有附件的貼文" withFileAntenna: "僅帶有附件的貼文"
enableServiceworker: "開啟 ServiceWorker"
antennaUsersDescription: "指定用換行符分隔的用戶名" antennaUsersDescription: "指定用換行符分隔的用戶名"
caseSensitive: "區分大小寫" caseSensitive: "區分大小寫"
withReplies: "包含回覆" withReplies: "包含回覆"
@ -369,11 +327,8 @@ popularUsers: "熱門使用者"
recentlyUpdatedUsers: "最近發文的使用者" recentlyUpdatedUsers: "最近發文的使用者"
recentlyRegisteredUsers: "新加入使用者" recentlyRegisteredUsers: "新加入使用者"
recentlyDiscoveredUsers: "最近發現的使用者" recentlyDiscoveredUsers: "最近發現的使用者"
exploreUsersCount: "有{count}個使用者"
exploreFediverse: "探索聯邦世界"
popularTags: "熱門標籤" popularTags: "熱門標籤"
userList: "清單" userList: "清單"
about: "資訊"
aboutMisskey: "關於 FoundKey" aboutMisskey: "關於 FoundKey"
administrator: "管理員" administrator: "管理員"
token: "權杖" token: "權杖"
@ -393,7 +348,6 @@ share: "分享"
notFound: "找不到" notFound: "找不到"
notFoundDescription: "找不到與指定URL回應的頁面" notFoundDescription: "找不到與指定URL回應的頁面"
uploadFolder: "預設上傳資料夾" uploadFolder: "預設上傳資料夾"
cacheClear: "清除快取"
markAsReadAllNotifications: "標記所有通知為已讀" markAsReadAllNotifications: "標記所有通知為已讀"
markAsReadAllUnreadNotes: "標記所有貼文為已讀" markAsReadAllUnreadNotes: "標記所有貼文為已讀"
markAsReadAllTalkMessages: "標記所有訊息為已讀" markAsReadAllTalkMessages: "標記所有訊息為已讀"
@ -424,7 +378,6 @@ noMessagesYet: "沒有訊息"
newMessageExists: "有新的訊息" newMessageExists: "有新的訊息"
onlyOneFileCanBeAttached: "只能加入一個附件" onlyOneFileCanBeAttached: "只能加入一個附件"
signinRequired: "請先登入" signinRequired: "請先登入"
invitations: "邀請"
invitationCode: "邀請碼" invitationCode: "邀請碼"
checking: "確認中" checking: "確認中"
available: "可用的" available: "可用的"
@ -444,7 +397,6 @@ or: "或者"
language: "語言" language: "語言"
uiLanguage: "介面語言" uiLanguage: "介面語言"
groupInvited: "您有新的群組邀請" groupInvited: "您有新的群組邀請"
aboutX: "關於{x}"
useOsNativeEmojis: "使用OS原生表情符號" useOsNativeEmojis: "使用OS原生表情符號"
disableDrawer: "不顯示下拉式選單" disableDrawer: "不顯示下拉式選單"
youHaveNoGroups: "找不到群組" youHaveNoGroups: "找不到群組"
@ -452,27 +404,19 @@ joinOrCreateGroup: "請加入現有群組,或創建新群組。"
noHistory: "沒有歷史紀錄" noHistory: "沒有歷史紀錄"
signinHistory: "登入歷史" signinHistory: "登入歷史"
disableAnimatedMfm: "禁用MFM動畫" disableAnimatedMfm: "禁用MFM動畫"
doing: "正在進行"
category: "類別" category: "類別"
tags: "標籤" tags: "標籤"
docSource: "文件來源"
createAccount: "建立帳戶" createAccount: "建立帳戶"
existingAccount: "現有帳戶" existingAccount: "現有帳戶"
regenerate: "再生"
fontSize: "字體大小" fontSize: "字體大小"
noFollowRequests: "沒有要求跟隨您的申請" noFollowRequests: "沒有要求跟隨您的申請"
openImageInNewTab: "於新分頁中開啟圖片" openImageInNewTab: "於新分頁中開啟圖片"
dashboard: "儀表板" dashboard: "儀表板"
local: "本地" local: "本地"
remote: "遠端" remote: "遠端"
total: "合計"
weekOverWeekChanges: "與上週相比"
dayOverDayChanges: "與前一日相比" dayOverDayChanges: "與前一日相比"
appearance: "外觀" appearance: "外觀"
clientSettings: "用戶端設定" clientSettings: "用戶端設定"
accountSettings: "帳戶設定"
numberOfDays: "有效天數"
hideThisNote: "隱藏此貼文"
showFeaturedNotesInTimeline: "在時間軸上顯示熱門推薦" showFeaturedNotesInTimeline: "在時間軸上顯示熱門推薦"
objectStorage: "Object Storage (物件儲存)" objectStorage: "Object Storage (物件儲存)"
useObjectStorage: "使用Object Storage" useObjectStorage: "使用Object Storage"
@ -491,8 +435,6 @@ objectStorageUseSSLDesc: "如果不使用https進行API連接請關閉"
objectStorageUseProxy: "使用網路代理" objectStorageUseProxy: "使用網路代理"
objectStorageUseProxyDesc: "如果不使用代理進行API連接請關閉" objectStorageUseProxyDesc: "如果不使用代理進行API連接請關閉"
objectStorageSetPublicRead: "上傳時設定為\"public-read\"" objectStorageSetPublicRead: "上傳時設定為\"public-read\""
serverLogs: "伺服器日誌"
deleteAll: "刪除所有記錄"
showFixedPostForm: "於時間軸頁頂顯示「發送貼文」方框" showFixedPostForm: "於時間軸頁頂顯示「發送貼文」方框"
newNoteRecived: "發現新的貼文" newNoteRecived: "發現新的貼文"
sounds: "音效" sounds: "音效"
@ -503,7 +445,6 @@ popout: "彈出型窗口"
volume: "音量" volume: "音量"
masterVolume: "主音量" masterVolume: "主音量"
details: "詳細資訊" details: "詳細資訊"
chooseEmoji: "選擇您的表情符號"
unableToProcess: "操作無法完成" unableToProcess: "操作無法完成"
recentUsed: "最近使用" recentUsed: "最近使用"
install: "安裝" install: "安裝"
@ -519,9 +460,7 @@ descendingOrder: "降冪"
scratchpad: "暫存記憶體" scratchpad: "暫存記憶體"
scratchpadDescription: "AiScript控制台為AiScript提供了實驗環境。您可以在此編寫、執行和確認代碼與FoundKey互動的结果。" scratchpadDescription: "AiScript控制台為AiScript提供了實驗環境。您可以在此編寫、執行和確認代碼與FoundKey互動的结果。"
output: "輸出" output: "輸出"
script: "腳本"
updateRemoteUser: "更新遠端使用者資訊" updateRemoteUser: "更新遠端使用者資訊"
deleteAllFiles: "刪除所有檔案"
deleteAllFilesConfirm: "要删除所有檔案嗎?" deleteAllFilesConfirm: "要删除所有檔案嗎?"
removeAllFollowing: "解除所有追蹤" removeAllFollowing: "解除所有追蹤"
removeAllFollowingDescription: "解除{host}所有的追蹤。在實例不再存在時執行。" removeAllFollowingDescription: "解除{host}所有的追蹤。在實例不再存在時執行。"
@ -535,10 +474,7 @@ addItem: "新增項目"
relays: "中繼" relays: "中繼"
addRelay: "新增中繼" addRelay: "新增中繼"
inboxUrl: "收件夾URL" inboxUrl: "收件夾URL"
addedRelays: "已加入的中繼"
serviceworkerInfo: "您需要啟用推送通知"
deletedNote: "已删除的貼文" deletedNote: "已删除的貼文"
invisibleNote: "隱藏的貼文"
enableInfiniteScroll: "啟用自動滾動頁面模式" enableInfiniteScroll: "啟用自動滾動頁面模式"
visibility: "可見性" visibility: "可見性"
poll: "投票" poll: "投票"
@ -548,15 +484,12 @@ disablePlayer: "關閉播放器"
themeEditor: "主題編輯器" themeEditor: "主題編輯器"
description: "描述" description: "描述"
describeFile: "添加標題 " describeFile: "添加標題 "
enterFileDescription: "輸入標題 "
author: "作者" author: "作者"
leaveConfirm: "有未保存的更改。要放棄嗎?" leaveConfirm: "有未保存的更改。要放棄嗎?"
manage: "管理" manage: "管理"
plugins: "外掛" plugins: "外掛"
deck: "多欄模式" deck: "多欄模式"
undeck: "取消多欄模式"
useBlurEffectForModal: "在模態框使用模糊效果" useBlurEffectForModal: "在模態框使用模糊效果"
useFullReactionPicker: "使用全尺寸的反應選擇器"
width: "寬度" width: "寬度"
height: "高度" height: "高度"
large: "大" large: "大"
@ -568,7 +501,6 @@ enableAll: "啟用全部"
disableAll: "停用全部" disableAll: "停用全部"
tokenRequested: "允許存取帳戶" tokenRequested: "允許存取帳戶"
pluginTokenRequestedDescription: "此外掛將擁有在此設定的權限。" pluginTokenRequestedDescription: "此外掛將擁有在此設定的權限。"
notificationType: "通知形式"
edit: "編輯" edit: "編輯"
useStarForReactionFallback: "以★代替未知的表情符號" useStarForReactionFallback: "以★代替未知的表情符號"
emailServer: "電郵伺服器" emailServer: "電郵伺服器"
@ -593,10 +525,7 @@ userSaysSomething: "{name}說了什麼"
makeActive: "啟用" makeActive: "啟用"
display: "檢視" display: "檢視"
copy: "複製" copy: "複製"
metrics: "指標"
overview: "概覽" overview: "概覽"
logs: "日誌"
delayed: "延遲"
database: "資料庫" database: "資料庫"
channel: "頻道" channel: "頻道"
create: "新增" create: "新增"
@ -610,7 +539,6 @@ regenerateLoginTokenDescription: "重新產生用於登入的內部權杖。一
setMultipleBySeparatingWithSpace: "您可以使用空格分隔多個項目。" setMultipleBySeparatingWithSpace: "您可以使用空格分隔多個項目。"
fileIdOrUrl: "檔案ID或URL" fileIdOrUrl: "檔案ID或URL"
behavior: "行為" behavior: "行為"
sample: "範例"
abuseReports: "檢舉" abuseReports: "檢舉"
reportAbuse: "檢舉" reportAbuse: "檢舉"
reportAbuseOf: "檢舉{name}" reportAbuseOf: "檢舉{name}"
@ -624,12 +552,8 @@ forwardReportIsAnonymous: "在遠端實例上看不到您的資訊,顯示的
send: "發送" send: "發送"
abuseMarkAsResolved: "處理完畢" abuseMarkAsResolved: "處理完畢"
openInNewTab: "在新分頁中開啟" openInNewTab: "在新分頁中開啟"
openInSideView: "在側欄中開啟"
defaultNavigationBehaviour: "默認導航" defaultNavigationBehaviour: "默認導航"
editTheseSettingsMayBreakAccount: "修改這些設定可能會毀損您的帳戶"
instanceTicker: "貼文的實例來源" instanceTicker: "貼文的實例來源"
waitingFor: "等待{x}"
random: "隨機"
system: "系統" system: "系統"
switchUi: "切換界面" switchUi: "切換界面"
desktop: "桌面" desktop: "桌面"
@ -663,7 +587,6 @@ alwaysMarkSensitive: "默認將圖像/影像標記為敏感內容"
loadRawImages: "以原始圖檔顯示附件圖檔的縮圖" loadRawImages: "以原始圖檔顯示附件圖檔的縮圖"
disableShowingAnimatedImages: "不播放動態圖檔" disableShowingAnimatedImages: "不播放動態圖檔"
verificationEmailSent: "已發送驗證電子郵件。請點擊進入電子郵件中的鏈接完成驗證。" verificationEmailSent: "已發送驗證電子郵件。請點擊進入電子郵件中的鏈接完成驗證。"
notSet: "未設定"
emailVerified: "已成功驗證您的電郵" emailVerified: "已成功驗證您的電郵"
noteFavoritesCount: "我的最愛貼文的數目" noteFavoritesCount: "我的最愛貼文的數目"
pageLikesCount: "頁面被按讚次數" pageLikesCount: "頁面被按讚次數"
@ -671,8 +594,6 @@ pageLikedCount: "頁面被按讚次數"
contact: "聯絡人" contact: "聯絡人"
useSystemFont: "使用系統預設的字型" useSystemFont: "使用系統預設的字型"
clips: "摘錄" clips: "摘錄"
experimentalFeatures: "實驗中的功能"
developer: "開發者"
makeExplorable: "使自己的帳戶能夠在“探索”頁面中顯示" makeExplorable: "使自己的帳戶能夠在“探索”頁面中顯示"
makeExplorableDescription: "如果關閉,帳戶將不會被顯示在\"探索\"頁面中。" makeExplorableDescription: "如果關閉,帳戶將不會被顯示在\"探索\"頁面中。"
showGapBetweenNotesInTimeline: "分開顯示時間線上的貼文。" showGapBetweenNotesInTimeline: "分開顯示時間線上的貼文。"
@ -683,28 +604,16 @@ wide: "寬"
narrow: "窄" narrow: "窄"
reloadToApplySetting: "設定將會在頁面重新載入之後生效。要現在就重載頁面嗎?" reloadToApplySetting: "設定將會在頁面重新載入之後生效。要現在就重載頁面嗎?"
needReloadToApply: "必須重新載入才會生效。" needReloadToApply: "必須重新載入才會生效。"
showTitlebar: "顯示標題列"
clearCache: "清除快取資料" clearCache: "清除快取資料"
onlineUsersCount: "{n}人正在線上" onlineUsersCount: "{n}人正在線上"
nUsers: "{n}用戶"
nNotes: "{n}貼文"
myTheme: "我的佈景主題"
backgroundColor: "背景" backgroundColor: "背景"
accentColor: "重點色彩" accentColor: "重點色彩"
textColor: "文字" textColor: "文字"
saveAs: "另存為..." saveAs: "另存為..."
advanced: "進階"
value: "數值"
createdAt: "建立於" createdAt: "建立於"
updatedAt: "最後更新" updatedAt: "最後更新"
saveConfirm: "您要儲存變更嗎?"
deleteConfirm: "你確定要刪除嗎?" deleteConfirm: "你確定要刪除嗎?"
invalidValue: "輸入值無效。"
registry: "登錄表"
closeAccount: "停用帳戶" closeAccount: "停用帳戶"
currentVersion: "目前版本"
latestVersion: "最新版本"
youAreRunningUpToDateClient: "您所使用的用戶端已經是最新的。"
newVersionOfClientAvailable: "新版本的用戶端可用。" newVersionOfClientAvailable: "新版本的用戶端可用。"
usageAmount: "使用量" usageAmount: "使用量"
capacity: "容量" capacity: "容量"
@ -714,11 +623,9 @@ apply: "套用"
receiveAnnouncementFromInstance: "接收由本實例發出的電郵通知" receiveAnnouncementFromInstance: "接收由本實例發出的電郵通知"
emailNotification: "郵件通知" emailNotification: "郵件通知"
publish: "發佈" publish: "發佈"
inChannelSearch: "頻道内搜尋"
useReactionPickerForContextMenu: "點擊右鍵開啟回應工具欄" useReactionPickerForContextMenu: "點擊右鍵開啟回應工具欄"
typingUsers: "{users}輸入中..." typingUsers: "{users}輸入中..."
jumpToSpecifiedDate: "跳轉到特定日期" jumpToSpecifiedDate: "跳轉到特定日期"
showingPastTimeline: "顯示過往的時間線"
clear: "清除" clear: "清除"
markAllAsRead: "全部標示為已讀" markAllAsRead: "全部標示為已讀"
goBack: "返回" goBack: "返回"
@ -731,7 +638,6 @@ notSpecifiedMentionWarning: "此貼文有未指定的提及"
info: "資訊" info: "資訊"
userInfo: "用戶資料" userInfo: "用戶資料"
unknown: "未知" unknown: "未知"
onlineStatus: "在線狀態"
hideOnlineStatus: "隱藏在線狀態" hideOnlineStatus: "隱藏在線狀態"
hideOnlineStatusDescription: "隱藏在線狀態後,可能會降低檢索等功能的便利性。" hideOnlineStatusDescription: "隱藏在線狀態後,可能會降低檢索等功能的便利性。"
online: "線上" online: "線上"
@ -757,21 +663,12 @@ gallery: "相簿"
recentPosts: "最新貼文" recentPosts: "最新貼文"
popularPosts: "熱門的貼文" popularPosts: "熱門的貼文"
shareWithNote: "在貼文中分享" shareWithNote: "在貼文中分享"
expiration: "期限"
memo: "備忘錄"
priority: "優先級"
high: "高"
middle: "中"
low: "低"
emailNotConfiguredWarning: "沒有設定電子郵件地址" emailNotConfiguredWarning: "沒有設定電子郵件地址"
ratio: "%" ratio: "%"
previewNoteText: "預覽文本" previewNoteText: "預覽文本"
customCss: "自定義 CSS" customCss: "自定義 CSS"
customCssWarn: "這個設定必須由具備相關知識的人員操作,不當的設定可能导致客戶端無法正常使用。" customCssWarn: "這個設定必須由具備相關知識的人員操作,不當的設定可能导致客戶端無法正常使用。"
global: "公開"
squareAvatars: "頭像以方形顯示" squareAvatars: "頭像以方形顯示"
sent: "發送"
received: "收取"
searchResult: "搜尋結果" searchResult: "搜尋結果"
hashtags: "#tag" hashtags: "#tag"
troubleshooting: "故障排除" troubleshooting: "故障排除"
@ -851,9 +748,6 @@ _accountDelete:
requestAccountDelete: "刪除帳戶請求" requestAccountDelete: "刪除帳戶請求"
started: "已開始刪除作業。" started: "已開始刪除作業。"
inProgress: "正在刪除" inProgress: "正在刪除"
_ad:
back: "返回"
reduceFrequencyOfThisAd: "降低此廣告的頻率 "
_forgotPassword: _forgotPassword:
enterEmail: "請輸入您的帳戶註冊的電子郵件地址。 密碼重置連結將被發送到該電子郵件地址。" enterEmail: "請輸入您的帳戶註冊的電子郵件地址。 密碼重置連結將被發送到該電子郵件地址。"
ifNoEmail: "如果您還沒有註冊您的電子郵件地址,請聯繫管理員。 " ifNoEmail: "如果您還沒有註冊您的電子郵件地址,請聯繫管理員。 "
@ -871,7 +765,6 @@ _email:
_plugin: _plugin:
install: "安裝外掛組件" install: "安裝外掛組件"
installWarn: "請不要安裝來源不明的外掛組件。" installWarn: "請不要安裝來源不明的外掛組件。"
manage: "管理外掛"
_registry: _registry:
scope: "範圍" scope: "範圍"
key: "機碼" key: "機碼"
@ -880,10 +773,8 @@ _registry:
createKey: "新增機碼" createKey: "新增機碼"
_aboutMisskey: _aboutMisskey:
about: "FoundKey是由syuilo自2014年起開發的開源軟體。" about: "FoundKey是由syuilo自2014年起開發的開源軟體。"
contributors: "主要貢獻者"
allContributors: "全體貢獻人員" allContributors: "全體貢獻人員"
source: "原始碼" source: "原始碼"
translation: "翻譯FoundKey"
_nsfw: _nsfw:
respect: "隱藏敏感內容" respect: "隱藏敏感內容"
ignore: "不隱藏敏感內容" ignore: "不隱藏敏感內容"
@ -1001,68 +892,6 @@ _theme:
alreadyInstalled: "此主題已經安裝" alreadyInstalled: "此主題已經安裝"
invalid: "主題格式錯誤" invalid: "主題格式錯誤"
make: "製作主題" make: "製作主題"
base: "基於"
addConstant: "添加常數"
constant: "常數"
defaultValue: "預設值"
color: "顏色"
refProp: "查看屬性 "
refConst: "查看常數"
key: "按鍵"
func: "函数"
funcKind: "功能類型"
argument: "參數"
basedProp: "要基於的屬性的名稱 "
alpha: "透明度"
darken: "暗度"
lighten: "亮度"
inputConstantName: "請輸入常數的名稱"
importInfo: "您可以在此貼上主題代碼,將其匯入編輯器中"
deleteConstantConfirm: "確定要删除常數{const}嗎?"
keys:
accent: "重點色彩"
bg: "背景"
fg: "文本"
focus: "聚焦"
indicator: "指標"
panel: "面板"
shadow: "陰影"
header: "標題"
navBg: "側邊欄的背景 "
navFg: "側邊欄的文字"
navHoverFg: "側邊欄文字(懸停) "
navActive: "側邊欄文本 (活動)"
navIndicator: "側邊欄指示符"
link: "鏈接"
hashtag: "#tag"
mention: "提到"
mentionMe: "提到了我"
renote: "轉發貼文"
modalBg: "對話框背景"
divider: "分割線"
scrollbarHandle: "捲動條"
scrollbarHandleHover: "捲動條 (漂浮)"
dateLabelFg: "日期標籤文字"
infoBg: "資訊背景"
infoFg: "資訊內容"
infoWarnBg: "警告背景"
infoWarnFg: "警告字元"
cwBg: "CW 按鈕背景"
cwFg: "CW 按鈕文本"
cwHoverBg: "CW 按鈕背景 (漂浮)"
toastBg: "通知背景"
toastFg: "通知文本"
buttonBg: "按鈕背景"
buttonHoverBg: "按鈕背景 (漂浮)"
inputBorder: "輸入框邊框"
listItemHoverBg: "列表物品背景 (漂浮)"
driveFolderBg: "雲端硬碟文件夾背景"
wallpaperOverlay: "壁紙覆蓋層"
badge: "獎章"
messageBg: "私訊背景"
accentDarken: "強調色(偏暗)"
accentLighten: "強調色(明亮)"
fgHighlighted: "高亮顯示文本"
_sfx: _sfx:
note: "貼文" note: "貼文"
noteMy: "我的貼文" noteMy: "我的貼文"
@ -1328,7 +1157,6 @@ _relayStatus:
accepted: "已通過核准" accepted: "已通過核准"
rejected: "已拒絕" rejected: "已拒絕"
_notification: _notification:
fileUploaded: "上傳檔案成功。"
youGotMention: "{name}提及到您" youGotMention: "{name}提及到您"
youGotReply: "{name}回覆了您" youGotReply: "{name}回覆了您"
youGotQuote: "{name}引用了您" youGotQuote: "{name}引用了您"
@ -1343,7 +1171,6 @@ _notification:
pollEnded: "問卷調查已產生結果" pollEnded: "問卷調查已產生結果"
emptyPushNotificationMessage: "推送通知已更新" emptyPushNotificationMessage: "推送通知已更新"
_types: _types:
all: "全部 "
follow: "追隨中" follow: "追隨中"
mention: "提及" mention: "提及"
reply: "回覆" reply: "回覆"

View file

@ -1,6 +1,6 @@
{ {
"name": "foundkey", "name": "foundkey",
"version": "13.0.0-preview2", "version": "13.0.0-preview3",
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://akkoma.dev/FoundKeyGang/FoundKey.git" "url": "https://akkoma.dev/FoundKeyGang/FoundKey.git"

View file

@ -0,0 +1,24 @@
import push from 'web-push';
export class forceEnablePush1668374092227 {
name = 'forceEnablePush1668374092227';
async up(queryRunner) {
// set VAPID keys if not yet set
const { publicKey, privateKey } = push.generateVAPIDKeys();
await queryRunner.query(`UPDATE "meta" SET "swPublicKey" = $1, "swPrivateKey" = $2 WHERE "swPublicKey" IS NULL OR "swPrivateKey" IS NULL`, [publicKey, privateKey]);
await queryRunner.query(`ALTER TABLE "meta" DROP COLUMN "enableServiceWorker"`);
await queryRunner.query(`ALTER TABLE "meta" ALTER COLUMN "swPublicKey" SET NOT NULL`);
await queryRunner.query(`ALTER TABLE "meta" ALTER COLUMN "swPrivateKey" SET NOT NULL`);
}
async down(queryRunner) {
await queryRunner.query(`ALTER TABLE "meta" ALTER COLUMN "swPrivateKey" DROP NOT NULL`);
await queryRunner.query(`ALTER TABLE "meta" ALTER COLUMN "swPublicKey" DROP NOT NULL`);
await queryRunner.query(`ALTER TABLE "meta" ADD "enableServiceWorker" boolean NOT NULL DEFAULT false`);
// since VAPID keys are set and the service worker may have been enabled before, make sure it is now enabled
await queryRunner.query(`UPDATE "meta" SET "enableServiceWorker" = true`);
// can't unset the VAPID keys because we do not know if we set them in the migration
}
}

View file

@ -0,0 +1,12 @@
export class detectDeeplPro1669545702493 {
name = 'detectDeeplPro1669545702493';
async up(queryRunner) {
await queryRunner.query(`ALTER TABLE "meta" DROP COLUMN "deeplIsPro"`);
}
async down(queryRunner) {
await queryRunner.query(`ALTER TABLE "meta" ADD "deeplIsPro" boolean NOT NULL DEFAULT false`);
await queryRunner.query(`UPDATE "meta" SET "deeplIsPro" = true WHERE "deeplAuthKey" IS NOT NULL AND "deeplAuthKey" NOT LIKE '%:fx'`);
}
}

View file

@ -1,6 +1,6 @@
{ {
"name": "backend", "name": "backend",
"version": "13.0.0-preview2", "version": "13.0.0-preview3",
"main": "./index.js", "main": "./index.js",
"private": true, "private": true,
"type": "module", "type": "module",
@ -87,7 +87,7 @@
"qrcode": "1.5.1", "qrcode": "1.5.1",
"random-seed": "0.3.0", "random-seed": "0.3.0",
"ratelimiter": "3.4.1", "ratelimiter": "3.4.1",
"re2": "1.17.7", "re2": "1.17.8",
"redis-lock": "0.1.4", "redis-lock": "0.1.4",
"reflect-metadata": "0.1.13", "reflect-metadata": "0.1.13",
"rename": "1.0.4", "rename": "1.0.4",

View file

@ -7,7 +7,7 @@ const treeAdapter = parse5.defaultTreeAdapter;
const urlRegex = /^https?:\/\/[\w\/:%#@$&?!()\[\]~.,=+\-]+/; const urlRegex = /^https?:\/\/[\w\/:%#@$&?!()\[\]~.,=+\-]+/;
const urlRegexFull = /^https?:\/\/[\w\/:%#@$&?!()\[\]~.,=+\-]+$/; const urlRegexFull = /^https?:\/\/[\w\/:%#@$&?!()\[\]~.,=+\-]+$/;
export function fromHtml(html: string, hashtagNames?: string[], quoteUri?: string | null): string { export function fromHtml(html: string, quoteUri?: string | null): string {
const dom = parse5.parseFragment( const dom = parse5.parseFragment(
// some AP servers like Pixelfed use br tags as well as newlines // some AP servers like Pixelfed use br tags as well as newlines
html.replace(/<br\s?\/?>\r?\n/gi, '\n'), html.replace(/<br\s?\/?>\r?\n/gi, '\n'),
@ -63,7 +63,7 @@ export function fromHtml(html: string, hashtagNames?: string[], quoteUri?: strin
const href = node.attrs.find(x => x.name === 'href'); const href = node.attrs.find(x => x.name === 'href');
// hashtags // hashtags
if (hashtagNames && href && hashtagNames.map(x => x.toLowerCase()).includes(txt.toLowerCase())) { if (txt.startsWith('#') && href && /\btag\b/.test(rel?.value)) {
text += txt; text += txt;
// mentions // mentions
} else if (txt.startsWith('@') && !(rel && rel.value.match(/^me /))) { } else if (txt.startsWith('@') && !(rel && rel.value.match(/^me /))) {
@ -204,7 +204,7 @@ export function fromHtml(html: string, hashtagNames?: string[], quoteUri?: strin
case 'span': case 'span':
{ {
const nodeClass = node.attrs.find(({ name }) => name === 'class'); const nodeClass = node.attrs.find(({ name }) => name === 'class')?.value;
if (/\bquote-inline\b/.test(nodeClass) && quoteUri && getText(node).trim() === `RE: ${quoteUri}`) { if (/\bquote-inline\b/.test(nodeClass) && quoteUri && getText(node).trim() === `RE: ${quoteUri}`) {
// embedded quote thingy for backwards compatibility, don't show it // embedded quote thingy for backwards compatibility, don't show it
} else { } else {

View file

@ -35,8 +35,11 @@ async function getMeta(): Promise<void> {
}, },
}); });
if (metas.length === 0) { if (metas.length === 0) {
const { publicKey, privateKey } = push.generateVAPIDKeys();
await db.manager.insert(Meta, { await db.manager.insert(Meta, {
id: 'x', id: 'x',
swPublicKey: publicKey,
swPrivateKey: privateKey,
}); });
metas = await db.manager.find(Meta, { metas = await db.manager.find(Meta, {
order: { order: {

View file

@ -1,27 +1,54 @@
import { Brackets } from 'typeorm';
import { db } from '@/db/postgre.js'; import { db } from '@/db/postgre.js';
import { fetchMeta } from '@/misc/fetch-meta.js'; import { fetchMeta } from '@/misc/fetch-meta.js';
import { Instances } from '@/models/index.js';
import { Instance } from '@/models/entities/instance.js'; import { Instance } from '@/models/entities/instance.js';
import { DAY } from '@/const.js'; import { DAY } from '@/const.js';
import { Meta } from '@/models/entities/meta.js';
// Threshold from last contact after which an instance will be considered // Threshold from last contact after which an instance will be considered
// "dead" and should no longer get activities delivered to it. // "dead" and should no longer get activities delivered to it.
const deadThreshold = 7 * DAY; const deadThreshold = 7 * DAY;
/**
* Returns whether a given host matches a wildcard pattern.
* @param host punycoded instance host
* @param pattern wildcard pattern containing a punycoded instance host
* @returns whether the post matches the pattern
*/
function matchHost(host: Instance['host'], pattern: string): boolean {
// Escape all of the regex special characters. Pattern from:
// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions#escaping
const escape = (str: string): string => str.replace(/[.*+?^${}()|[\]\\]/g, '\\$&');
const re = new RegExp('^' + pattern.split('*').map(escape).join('.*') + '$');
return re.test(host);
}
/**
* Returns whether a specific host (punycoded) should be blocked.
*
* @param host punycoded instance host
* @param meta a Promise contatining the information from the meta table (oprional)
* @returns whether the given host should be blocked
*/
export async function shouldBlockInstance(host: string, meta: Promise<Meta> = fetchMeta()): Promise<boolean> {
const { blockedHosts } = await meta;
return blockedHosts.some(blockedHost => matchHost(host, blockedHost));
}
/** /**
* Returns the subset of hosts which should be skipped. * Returns the subset of hosts which should be skipped.
* *
* @param hosts array of punycoded instance hosts * @param hosts array of punycoded instance hosts
* @returns array of punycoed instance hosts that should be skipped (subset of hosts parameter) * @returns array of punycoded instance hosts that should be skipped (subset of hosts parameter)
*/ */
export async function skippedInstances(hosts: Array<Instace['host']>): Array<Instance['host']> { export async function skippedInstances(hosts: Array<Instance['host']>): Promise<Array<Instance['host']>> {
// first check for blocked instances since that info may already be in memory // Resolve the boolean promises before filtering
const { blockedHosts } = await fetchMeta(); const meta = fetchMeta();
const shouldSkip = await Promise.all(hosts.map(host => shouldBlockInstance(host, meta)));
const skipped = hosts.filter((_, i) => shouldSkip[i]);
const skipped = hosts.filter(host => blockedHosts.includes(host));
// if possible return early and skip accessing the database // if possible return early and skip accessing the database
if (skipped.length === hosts.length) return hosts; if (skipped.length === hosts.length) return hosts;
const deadTime = new Date(Date.now() - deadThreshold); const deadTime = new Date(Date.now() - deadThreshold);
@ -35,7 +62,7 @@ export async function skippedInstances(hosts: Array<Instace['host']>): Array<Ins
hosts.filter(host => !skipped.includes(host) && !host.includes(',')).join(','), hosts.filter(host => !skipped.includes(host) && !host.includes(',')).join(','),
], ],
) )
.then(res => res.map(row => row.host)) .then(res => res.map(row => row.host)),
); );
} }
@ -47,7 +74,7 @@ export async function skippedInstances(hosts: Array<Instace['host']>): Array<Ins
* @param host punycoded instance host * @param host punycoded instance host
* @returns whether the given host should be skipped * @returns whether the given host should be skipped
*/ */
export async function shouldSkipInstance(host: Instance['host']): boolean { export async function shouldSkipInstance(host: Instance['host']): Promise<boolean> {
const skipped = await skippedInstances([host]); const skipped = await skippedInstances([host]);
return skipped.length > 0; return skipped.length > 0;
} }

View file

@ -236,22 +236,15 @@ export class Meta {
}) })
public smtpPass: string | null; public smtpPass: string | null;
@Column('boolean', { @Column('varchar', {
default: false, length: 128,
}) })
public enableServiceWorker: boolean; public swPublicKey: string;
@Column('varchar', { @Column('varchar', {
length: 128, length: 128,
nullable: true,
}) })
public swPublicKey: string | null; public swPrivateKey: string;
@Column('varchar', {
length: 128,
nullable: true,
})
public swPrivateKey: string | null;
@Column('boolean', { @Column('boolean', {
default: false, default: false,
@ -316,11 +309,6 @@ export class Meta {
}) })
public deeplAuthKey: string | null; public deeplAuthKey: string | null;
@Column('boolean', {
default: false,
})
public deeplIsPro: boolean;
@Column('varchar', { @Column('varchar', {
length: 128, length: 128,
nullable: true, nullable: true,

View file

@ -6,7 +6,6 @@ import Logger from '@/services/logger.js';
import { registerOrFetchInstanceDoc } from '@/services/register-or-fetch-instance-doc.js'; import { registerOrFetchInstanceDoc } from '@/services/register-or-fetch-instance-doc.js';
import { Instances } from '@/models/index.js'; import { Instances } from '@/models/index.js';
import { apRequestChart, federationChart, instanceChart } from '@/services/chart/index.js'; import { apRequestChart, federationChart, instanceChart } from '@/services/chart/index.js';
import { fetchMeta } from '@/misc/fetch-meta.js';
import { toPuny, extractDbHost } from '@/misc/convert-host.js'; import { toPuny, extractDbHost } from '@/misc/convert-host.js';
import { getApId } from '@/remote/activitypub/type.js'; import { getApId } from '@/remote/activitypub/type.js';
import { fetchInstanceMetadata } from '@/services/fetch-instance-metadata.js'; import { fetchInstanceMetadata } from '@/services/fetch-instance-metadata.js';
@ -17,6 +16,7 @@ import { StatusError } from '@/misc/fetch.js';
import { CacheableRemoteUser } from '@/models/entities/user.js'; import { CacheableRemoteUser } from '@/models/entities/user.js';
import { UserPublickey } from '@/models/entities/user-publickey.js'; import { UserPublickey } from '@/models/entities/user-publickey.js';
import { InboxJobData } from '@/queue/types.js'; import { InboxJobData } from '@/queue/types.js';
import { shouldBlockInstance } from '@/misc/skipped-instances.js';
const logger = new Logger('inbox'); const logger = new Logger('inbox');
@ -33,9 +33,8 @@ export default async (job: Bull.Job<InboxJobData>): Promise<string> => {
const host = toPuny(new URL(signature.keyId).hostname); const host = toPuny(new URL(signature.keyId).hostname);
// ブロックしてたら中断 // Stop if the host is blocked.
const meta = await fetchMeta(); if (await shouldBlockInstance(host)) {
if (meta.blockedHosts.includes(host)) {
return `Blocked request: ${host}`; return `Blocked request: ${host}`;
} }
@ -117,9 +116,9 @@ export default async (job: Bull.Job<InboxJobData>): Promise<string> => {
return `skip: LD-Signature user(${authUser.user.uri}) !== activity.actor(${activity.actor})`; return `skip: LD-Signature user(${authUser.user.uri}) !== activity.actor(${activity.actor})`;
} }
// ブロックしてたら中断 // Stop if the host is blocked.
const ldHost = extractDbHost(authUser.user.uri); const ldHost = extractDbHost(authUser.user.uri);
if (meta.blockedHosts.includes(ldHost)) { if (await shouldBlockInstance(ldHost)) {
return `Blocked request: ${ldHost}`; return `Blocked request: ${ldHost}`;
} }
} else { } else {

View file

@ -4,17 +4,15 @@ import Resolver from '@/remote/activitypub/resolver.js';
import { IAccept, isFollow, getApType } from '@/remote/activitypub/type.js'; import { IAccept, isFollow, getApType } from '@/remote/activitypub/type.js';
import acceptFollow from './follow.js'; import acceptFollow from './follow.js';
const logger = apLogger;
export default async (actor: CacheableRemoteUser, activity: IAccept): Promise<string> => { export default async (actor: CacheableRemoteUser, activity: IAccept): Promise<string> => {
const uri = activity.id || activity; const uri = activity.id || activity;
logger.info(`Accept: ${uri}`); apLogger.info(`Accept: ${uri}`);
const resolver = new Resolver(); const resolver = new Resolver();
const object = await resolver.resolve(activity.object).catch(e => { const object = await resolver.resolve(activity.object).catch(e => {
logger.error(`Resolution failed: ${e}`); apLogger.error(`Resolution failed: ${e}`);
throw e; throw e;
}); });

View file

@ -4,12 +4,10 @@ import Resolver from '@/remote/activitypub/resolver.js';
import { IAnnounce, getApId } from '@/remote/activitypub/type.js'; import { IAnnounce, getApId } from '@/remote/activitypub/type.js';
import announceNote from './note.js'; import announceNote from './note.js';
const logger = apLogger;
export default async (actor: CacheableRemoteUser, activity: IAnnounce): Promise<void> => { export default async (actor: CacheableRemoteUser, activity: IAnnounce): Promise<void> => {
const uri = getApId(activity); const uri = getApId(activity);
logger.info(`Announce: ${uri}`); apLogger.info(`Announce: ${uri}`);
const resolver = new Resolver(); const resolver = new Resolver();

View file

@ -11,11 +11,6 @@ import { fetchNote, resolveNote } from '@/remote/activitypub/models/note.js';
import Resolver from '@/remote/activitypub/resolver.js'; import Resolver from '@/remote/activitypub/resolver.js';
import { IAnnounce, getApId } from '@/remote/activitypub/type.js'; import { IAnnounce, getApId } from '@/remote/activitypub/type.js';
const logger = apLogger;
/**
*
*/
export default async function(resolver: Resolver, actor: CacheableRemoteUser, activity: IAnnounce, targetUri: string): Promise<void> { export default async function(resolver: Resolver, actor: CacheableRemoteUser, activity: IAnnounce, targetUri: string): Promise<void> {
const uri = getApId(activity); const uri = getApId(activity);
@ -23,39 +18,39 @@ export default async function(resolver: Resolver, actor: CacheableRemoteUser, ac
return; return;
} }
// アナウンス先をブロックしてたら中断 // Cancel if the announced from host is blocked.
const meta = await fetchMeta(); const meta = await fetchMeta();
if (meta.blockedHosts.includes(extractDbHost(uri))) return; if (meta.blockedHosts.includes(extractDbHost(uri))) return;
const unlock = await getApLock(uri); const unlock = await getApLock(uri);
try { try {
// 既に同じURIを持つものが登録されていないかチェック // Check if this has already been announced.
const exist = await fetchNote(uri); const exist = await fetchNote(uri);
if (exist) { if (exist) {
return; return;
} }
// Announce対象をresolve // resolve the announce target
let renote; let renote;
try { try {
renote = await resolveNote(targetUri); renote = await resolveNote(targetUri);
} catch (e) { } catch (e) {
// 対象が4xxならスキップ // skip if the target returns a HTTP client error
if (e instanceof StatusError) { if (e instanceof StatusError) {
if (e.isClientError) { if (e.isClientError) {
logger.warn(`Ignored announce target ${targetUri} - ${e.statusCode}`); apLogger.warn(`Ignored announce target ${targetUri} - ${e.statusCode}`);
return; return;
} }
logger.warn(`Error in announce target ${targetUri} - ${e.statusCode || e}`); apLogger.warn(`Error in announce target ${targetUri} - ${e.statusCode || e}`);
} }
throw e; throw e;
} }
if (!await Notes.isVisibleForMe(renote, actor.id)) return 'skip: invalid actor for this activity'; if (!await Notes.isVisibleForMe(renote, actor.id)) return 'skip: invalid actor for this activity';
logger.info(`Creating the (Re)Note: ${uri}`); apLogger.info(`Creating the (Re)Note: ${uri}`);
const activityAudience = await parseAudience(actor, activity.to, activity.cc); const activityAudience = await parseAudience(actor, activity.to, activity.cc);

View file

@ -5,12 +5,10 @@ import { ICreate, getApId, isPost, getApType } from '../../type.js';
import { apLogger } from '../../logger.js'; import { apLogger } from '../../logger.js';
import createNote from './note.js'; import createNote from './note.js';
const logger = apLogger;
export default async (actor: CacheableRemoteUser, activity: ICreate): Promise<void> => { export default async (actor: CacheableRemoteUser, activity: ICreate): Promise<void> => {
const uri = getApId(activity); const uri = getApId(activity);
logger.info(`Create: ${uri}`); apLogger.info(`Create: ${uri}`);
// copy audiences between activity <=> object. // copy audiences between activity <=> object.
if (typeof activity.object === 'object') { if (typeof activity.object === 'object') {
@ -31,13 +29,13 @@ export default async (actor: CacheableRemoteUser, activity: ICreate): Promise<vo
const resolver = new Resolver(); const resolver = new Resolver();
const object = await resolver.resolve(activity.object).catch(e => { const object = await resolver.resolve(activity.object).catch(e => {
logger.error(`Resolution failed: ${e}`); apLogger.error(`Resolution failed: ${e}`);
throw e; throw e;
}); });
if (isPost(object)) { if (isPost(object)) {
createNote(resolver, actor, object, false, activity); createNote(resolver, actor, object, false, activity);
} else { } else {
logger.warn(`Unknown type: ${getApType(object)}`); apLogger.warn(`Unknown type: ${getApType(object)}`);
} }
}; };

View file

@ -3,10 +3,8 @@ import { CacheableRemoteUser } from '@/models/entities/user.js';
import { Users } from '@/models/index.js'; import { Users } from '@/models/index.js';
import { apLogger } from '@/remote/activitypub/logger.js'; import { apLogger } from '@/remote/activitypub/logger.js';
const logger = apLogger;
export async function deleteActor(actor: CacheableRemoteUser, uri: string): Promise<string> { export async function deleteActor(actor: CacheableRemoteUser, uri: string): Promise<string> {
logger.info(`Deleting the Actor: ${uri}`); apLogger.info(`Deleting the Actor: ${uri}`);
if (actor.uri !== uri) { if (actor.uri !== uri) {
return `skip: delete actor ${actor.uri} !== ${uri}`; return `skip: delete actor ${actor.uri} !== ${uri}`;
@ -14,7 +12,7 @@ export async function deleteActor(actor: CacheableRemoteUser, uri: string): Prom
const user = await Users.findOneByOrFail({ id: actor.id }); const user = await Users.findOneByOrFail({ id: actor.id });
if (user.isDeleted) { if (user.isDeleted) {
logger.info('skip: already deleted'); apLogger.info('skip: already deleted');
} }
const job = await createDeleteAccountJob(actor); const job = await createDeleteAccountJob(actor);

View file

@ -5,10 +5,8 @@ import { deleteMessage } from '@/services/messages/delete.js';
import DbResolver from '@/remote/activitypub/db-resolver.js'; import DbResolver from '@/remote/activitypub/db-resolver.js';
import { apLogger } from '@/remote/activitypub/logger.js'; import { apLogger } from '@/remote/activitypub/logger.js';
const logger = apLogger;
export default async function(actor: CacheableRemoteUser, uri: string): Promise<string> { export default async function(actor: CacheableRemoteUser, uri: string): Promise<string> {
logger.info(`Deleting the Note: ${uri}`); apLogger.info(`Deleting the Note: ${uri}`);
const unlock = await getApLock(uri); const unlock = await getApLock(uri);
@ -18,23 +16,22 @@ export default async function(actor: CacheableRemoteUser, uri: string): Promise<
if (note == null) { if (note == null) {
const message = await dbResolver.getMessageFromApId(uri); const message = await dbResolver.getMessageFromApId(uri);
if (message == null) return 'message not found'; if (message == null) return 'skip: message not found';
if (message.userId !== actor.id) { if (message.userId !== actor.id) {
return '投稿を削除しようとしているユーザーは投稿の作成者ではありません'; return 'skip: cant delete other actors message';
} }
await deleteMessage(message); await deleteMessage(message);
return 'ok: message deleted'; return 'ok: message deleted';
} } else {
if (note.userId !== actor.id) {
return 'skip: cant delete other actors note';
}
if (note.userId !== actor.id) { await deleteNode(actor, note);
return '投稿を削除しようとしているユーザーは投稿の作成者ではありません'; return 'ok: note deleted';
} }
await deleteNode(actor, note);
return 'ok: note deleted';
} finally { } finally {
unlock(); unlock();
} }

View file

@ -4,17 +4,15 @@ import { IReject, isFollow, getApType } from '../../type.js';
import Resolver from '../../resolver.js'; import Resolver from '../../resolver.js';
import rejectFollow from './follow.js'; import rejectFollow from './follow.js';
const logger = apLogger;
export default async (actor: CacheableRemoteUser, activity: IReject): Promise<string> => { export default async (actor: CacheableRemoteUser, activity: IReject): Promise<string> => {
const uri = activity.id || activity; const uri = activity.id || activity;
logger.info(`Reject: ${uri}`); apLogger.info(`Reject: ${uri}`);
const resolver = new Resolver(); const resolver = new Resolver();
const object = await resolver.resolve(activity.object).catch(e => { const object = await resolver.resolve(activity.object).catch(e => {
logger.error(`Resolution failed: ${e}`); apLogger.error(`Resolution failed: ${e}`);
throw e; throw e;
}); });

View file

@ -14,28 +14,27 @@ export default async (actor: CacheableRemoteUser, activity: IFollow): Promise<st
} }
if (followee.host != null) { if (followee.host != null) {
return 'skip: フォロー解除しようとしているユーザーはローカルユーザーではありません'; return 'skip: the unfollowed user is not local';
} }
const req = await FollowRequests.findOneBy({ const [req, following] = await Promise.all([
followerId: actor.id, FollowRequests.findOneBy({
followeeId: followee.id, followerId: actor.id,
}); followeeId: followee.id,
}),
const following = await Followings.findOneBy({ Followings.findOneBy({
followerId: actor.id, followerId: actor.id,
followeeId: followee.id, followeeId: followee.id,
}); }),
]);
if (req) { if (req) {
await cancelRequest(followee, actor); await cancelRequest(followee, actor);
return 'ok: follow request canceled'; return 'ok: follow request canceled';
} } else if (following) {
if (following) {
await unfollow(actor, followee); await unfollow(actor, followee);
return 'ok: unfollowed'; return 'ok: unfollowed';
} else {
return 'skip: no such following or follow request';
} }
return 'skip: リクエストもフォローもされていない';
}; };

View file

@ -8,8 +8,6 @@ import undoLike from './like.js';
import undoAccept from './accept.js'; import undoAccept from './accept.js';
import { undoAnnounce } from './announce.js'; import { undoAnnounce } from './announce.js';
const logger = apLogger;
export default async (actor: CacheableRemoteUser, activity: IUndo): Promise<string> => { export default async (actor: CacheableRemoteUser, activity: IUndo): Promise<string> => {
if ('actor' in activity && actor.uri !== activity.actor) { if ('actor' in activity && actor.uri !== activity.actor) {
throw new Error('invalid actor'); throw new Error('invalid actor');
@ -17,12 +15,11 @@ export default async (actor: CacheableRemoteUser, activity: IUndo): Promise<stri
const uri = activity.id || activity; const uri = activity.id || activity;
logger.info(`Undo: ${uri}`); apLogger.info(`Undo: ${uri}`);
const resolver = new Resolver(); const resolver = new Resolver();
const object = await resolver.resolve(activity.object).catch(e => { const object = await resolver.resolve(activity.object).catch(e => {
logger.error(`Resolution failed: ${e}`); apLogger.error(`Resolution failed: ${e}`);
throw e; throw e;
}); });

View file

@ -26,7 +26,7 @@ export default async (actor: CacheableRemoteUser, activity: IUpdate): Promise<st
await updatePerson(actor.uri!, resolver, object); await updatePerson(actor.uri!, resolver, object);
return 'ok: Person updated'; return 'ok: Person updated';
} else if (getApType(object) === 'Question') { } else if (getApType(object) === 'Question') {
await updateQuestion(object).catch(e => console.log(e)); await updateQuestion(object, resolver).catch(e => console.log(e));
return 'ok: Question updated'; return 'ok: Question updated';
} else { } else {
return `skip: Unknown type: ${getApType(object)}`; return `skip: Unknown type: ${getApType(object)}`;

View file

@ -1,9 +0,0 @@
import { IObject } from '../type.js';
import { extractApHashtagObjects } from '../models/tag.js';
import { fromHtml } from '@/mfm/from-html.js';
export function htmlToMfm(html: string, tag?: IObject | IObject[], quoteUri?: string | null) {
const hashtagNames = extractApHashtagObjects(tag).map(x => x.name).filter((x): x is string => x != null);
return fromHtml(html, hashtagNames, quoteUri);
}

View file

@ -8,8 +8,6 @@ import { DB_MAX_IMAGE_COMMENT_LENGTH } from '@/misc/hard-limits.js';
import Resolver from '../resolver.js'; import Resolver from '../resolver.js';
import { apLogger } from '../logger.js'; import { apLogger } from '../logger.js';
const logger = apLogger;
/** /**
* Imageを作成します * Imageを作成します
*/ */
@ -25,7 +23,7 @@ export async function createImage(actor: CacheableRemoteUser, value: any): Promi
throw new Error('invalid image: url not privided'); throw new Error('invalid image: url not privided');
} }
logger.info(`Creating the Image: ${image.url}`); apLogger.info(`Creating the Image: ${image.url}`);
const instance = await fetchMeta(); const instance = await fetchMeta();

View file

@ -16,11 +16,11 @@ import { fetchMeta } from '@/misc/fetch-meta.js';
import { getApLock } from '@/misc/app-lock.js'; import { getApLock } from '@/misc/app-lock.js';
import { createMessage } from '@/services/messages/create.js'; import { createMessage } from '@/services/messages/create.js';
import { StatusError } from '@/misc/fetch.js'; import { StatusError } from '@/misc/fetch.js';
import { fromHtml } from '@/mfm/from-html.js';
import { parseAudience } from '../audience.js'; import { parseAudience } from '../audience.js';
import { IObject, getOneApId, getApId, getOneApHrefNullable, validPost, IPost, isEmoji, getApType } from '../type.js'; import { IObject, getOneApId, getApId, getOneApHrefNullable, validPost, IPost, isEmoji, getApType } from '../type.js';
import DbResolver from '../db-resolver.js'; import DbResolver from '../db-resolver.js';
import Resolver from '../resolver.js'; import Resolver from '../resolver.js';
import { htmlToMfm } from '../misc/html-to-mfm.js';
import { apLogger } from '../logger.js'; import { apLogger } from '../logger.js';
import { resolvePerson } from './person.js'; import { resolvePerson } from './person.js';
import { resolveImage } from './image.js'; import { resolveImage } from './image.js';
@ -28,8 +28,6 @@ import { extractApHashtags } from './tag.js';
import { extractPollFromQuestion } from './question.js'; import { extractPollFromQuestion } from './question.js';
import { extractApMentions } from './mention.js'; import { extractApMentions } from './mention.js';
const logger = apLogger;
export function validateNote(object: any, uri: string) { export function validateNote(object: any, uri: string) {
const expectHost = extractDbHost(uri); const expectHost = extractDbHost(uri);
@ -71,7 +69,7 @@ export async function createNote(value: string | IObject, resolver?: Resolver =
const entryUri = getApId(value); const entryUri = getApId(value);
const err = validateNote(object, entryUri); const err = validateNote(object, entryUri);
if (err) { if (err) {
logger.error(`${err.message}`, { apLogger.error(`${err.message}`, {
resolver: { resolver: {
history: resolver.getHistory(), history: resolver.getHistory(),
}, },
@ -83,9 +81,9 @@ export async function createNote(value: string | IObject, resolver?: Resolver =
const note: IPost = object; const note: IPost = object;
logger.debug(`Note fetched: ${JSON.stringify(note, null, 2)}`); apLogger.debug(`Note fetched: ${JSON.stringify(note, null, 2)}`);
logger.info(`Creating the Note: ${note.id}`); apLogger.info(`Creating the Note: ${note.id}`);
// 投稿者をフェッチ // 投稿者をフェッチ
const actor = await resolvePerson(getOneApId(note.attributedTo), resolver) as CacheableRemoteUser; const actor = await resolvePerson(getOneApId(note.attributedTo), resolver) as CacheableRemoteUser;
@ -129,7 +127,7 @@ export async function createNote(value: string | IObject, resolver?: Resolver =
const reply: Note | null = note.inReplyTo const reply: Note | null = note.inReplyTo
? await resolveNote(note.inReplyTo, resolver).then(x => { ? await resolveNote(note.inReplyTo, resolver).then(x => {
if (x == null) { if (x == null) {
logger.warn('Specified inReplyTo, but nout found'); apLogger.warn('Specified inReplyTo, but nout found');
throw new Error('inReplyTo not found'); throw new Error('inReplyTo not found');
} else { } else {
return x; return x;
@ -146,7 +144,7 @@ export async function createNote(value: string | IObject, resolver?: Resolver =
} }
} }
logger.warn(`Error in inReplyTo ${note.inReplyTo} - ${e.statusCode || e}`); apLogger.warn(`Error in inReplyTo ${note.inReplyTo} - ${e.statusCode || e}`);
throw e; throw e;
}) })
: null; : null;
@ -201,7 +199,7 @@ export async function createNote(value: string | IObject, resolver?: Resolver =
} else if (typeof note._misskey_content !== 'undefined') { } else if (typeof note._misskey_content !== 'undefined') {
text = note._misskey_content; text = note._misskey_content;
} else if (typeof note.content === 'string') { } else if (typeof note.content === 'string') {
text = htmlToMfm(note.content, note.tag, quote?.uri); text = fromHtml(note.content, quote?.uri);
} }
// vote // vote
@ -210,9 +208,9 @@ export async function createNote(value: string | IObject, resolver?: Resolver =
const tryCreateVote = async (name: string, index: number): Promise<null> => { const tryCreateVote = async (name: string, index: number): Promise<null> => {
if (poll.expiresAt && Date.now() > new Date(poll.expiresAt).getTime()) { if (poll.expiresAt && Date.now() > new Date(poll.expiresAt).getTime()) {
logger.warn(`vote to expired poll from AP: actor=${actor.username}@${actor.host}, note=${note.id}, choice=${name}`); apLogger.warn(`vote to expired poll from AP: actor=${actor.username}@${actor.host}, note=${note.id}, choice=${name}`);
} else if (index >= 0) { } else if (index >= 0) {
logger.info(`vote from AP: actor=${actor.username}@${actor.host}, note=${note.id}, choice=${name}`); apLogger.info(`vote from AP: actor=${actor.username}@${actor.host}, note=${note.id}, choice=${name}`);
await vote(actor, reply, index); await vote(actor, reply, index);
// リモートフォロワーにUpdate配信 // リモートフォロワーにUpdate配信
@ -227,7 +225,7 @@ export async function createNote(value: string | IObject, resolver?: Resolver =
} }
const emojis = await extractEmojis(note.tag || [], actor.host).catch(e => { const emojis = await extractEmojis(note.tag || [], actor.host).catch(e => {
logger.info(`extractEmojis: ${e}`); apLogger.info(`extractEmojis: ${e}`);
return [] as Emoji[]; return [] as Emoji[];
}); });
@ -341,7 +339,7 @@ export async function extractEmojis(tags: IObject | IObject[], idnHost: string):
return exists; return exists;
} }
logger.info(`register emoji host=${host}, name=${name}`); apLogger.info(`register emoji host=${host}, name=${name}`);
return await Emojis.insert({ return await Emojis.insert({
id: genId(), id: genId(),

View file

@ -24,7 +24,6 @@ import { uriPersonCache } from '@/services/user-cache.js';
import { publishInternalEvent } from '@/services/stream.js'; import { publishInternalEvent } from '@/services/stream.js';
import { db } from '@/db/postgre.js'; import { db } from '@/db/postgre.js';
import { apLogger } from '../logger.js'; import { apLogger } from '../logger.js';
import { htmlToMfm } from '../misc/html-to-mfm.js';
import { fromHtml } from '@/mfm/from-html.js'; import { fromHtml } from '@/mfm/from-html.js';
import { isCollectionOrOrderedCollection, isCollection, IActor, getApId, getOneApHrefNullable, IObject, isPropertyValue, IApPropertyValue, getApType, isActor } from '../type.js'; import { isCollectionOrOrderedCollection, isCollection, IActor, getApId, getOneApHrefNullable, IObject, isPropertyValue, IApPropertyValue, getApType, isActor } from '../type.js';
import Resolver from '../resolver.js'; import Resolver from '../resolver.js';
@ -32,8 +31,6 @@ import { extractApHashtags } from './tag.js';
import { resolveNote, extractEmojis } from './note.js'; import { resolveNote, extractEmojis } from './note.js';
import { resolveImage } from './image.js'; import { resolveImage } from './image.js';
const logger = apLogger;
const nameLength = 128; const nameLength = 128;
const summaryLength = 2048; const summaryLength = 2048;
@ -145,7 +142,7 @@ export async function createPerson(uri: string, resolver?: Resolver = new Resolv
const person = validateActor(object, uri); const person = validateActor(object, uri);
logger.info(`Creating the Person: ${person.id}`); apLogger.info(`Creating the Person: ${person.id}`);
const host = toPuny(new URL(object.id).hostname); const host = toPuny(new URL(object.id).hostname);
@ -187,7 +184,7 @@ export async function createPerson(uri: string, resolver?: Resolver = new Resolv
await transactionalEntityManager.save(new UserProfile({ await transactionalEntityManager.save(new UserProfile({
userId: user.id, userId: user.id,
description: person.summary ? htmlToMfm(truncate(person.summary, summaryLength), person.tag) : null, description: person.summary ? fromHtml(truncate(person.summary, summaryLength)) : null,
url: getOneApHrefNullable(person.url), url: getOneApHrefNullable(person.url),
fields, fields,
birthday: bday ? bday[0] : null, birthday: bday ? bday[0] : null,
@ -217,7 +214,7 @@ export async function createPerson(uri: string, resolver?: Resolver = new Resolv
throw new Error('already registered'); throw new Error('already registered');
} }
} else { } else {
logger.error(e instanceof Error ? e : new Error(e as string)); apLogger.error(e instanceof Error ? e : new Error(e as string));
throw e; throw e;
} }
} }
@ -258,7 +255,7 @@ export async function createPerson(uri: string, resolver?: Resolver = new Resolv
//#region カスタム絵文字取得 //#region カスタム絵文字取得
const emojis = await extractEmojis(person.tag || [], host).catch(e => { const emojis = await extractEmojis(person.tag || [], host).catch(e => {
logger.info(`extractEmojis: ${e}`); apLogger.info(`extractEmojis: ${e}`);
return [] as Emoji[]; return [] as Emoji[];
}); });
@ -269,7 +266,7 @@ export async function createPerson(uri: string, resolver?: Resolver = new Resolv
}); });
//#endregion //#endregion
await updateFeatured(user!.id).catch(err => logger.error(err)); await updateFeatured(user!.id, resolver).catch(err => apLogger.error(err));
return user!; return user!;
} }
@ -301,7 +298,7 @@ export async function updatePerson(uri: string, resolver?: Resolver = new Resolv
const person = validateActor(object, uri); const person = validateActor(object, uri);
logger.info(`Updating the Person: ${person.id}`); apLogger.info(`Updating the Person: ${person.id}`);
// アバターとヘッダー画像をフェッチ // アバターとヘッダー画像をフェッチ
const [avatar, banner] = await Promise.all([ const [avatar, banner] = await Promise.all([
@ -315,7 +312,7 @@ export async function updatePerson(uri: string, resolver?: Resolver = new Resolv
// カスタム絵文字取得 // カスタム絵文字取得
const emojis = await extractEmojis(person.tag || [], exist.host).catch(e => { const emojis = await extractEmojis(person.tag || [], exist.host).catch(e => {
logger.info(`extractEmojis: ${e}`); apLogger.info(`extractEmojis: ${e}`);
return [] as Emoji[]; return [] as Emoji[];
}); });
@ -363,7 +360,7 @@ export async function updatePerson(uri: string, resolver?: Resolver = new Resolv
await UserProfiles.update({ userId: exist.id }, { await UserProfiles.update({ userId: exist.id }, {
url: getOneApHrefNullable(person.url), url: getOneApHrefNullable(person.url),
fields, fields,
description: person.summary ? htmlToMfm(truncate(person.summary, summaryLength), person.tag) : null, description: person.summary ? fromHtml(truncate(person.summary, summaryLength)) : null,
birthday: bday ? bday[0] : null, birthday: bday ? bday[0] : null,
location: person['vcard:Address'] || null, location: person['vcard:Address'] || null,
}); });
@ -380,7 +377,7 @@ export async function updatePerson(uri: string, resolver?: Resolver = new Resolv
followerSharedInbox: person.sharedInbox || (person.endpoints ? person.endpoints.sharedInbox : undefined), followerSharedInbox: person.sharedInbox || (person.endpoints ? person.endpoints.sharedInbox : undefined),
}); });
await updateFeatured(exist.id).catch(err => logger.error(err)); await updateFeatured(exist.id, resolver).catch(err => apLogger.error(err));
} }
/** /**
@ -458,14 +455,14 @@ export function analyzeAttachments(attachments: IObject | IObject[] | undefined)
return { fields, services }; return { fields, services };
} }
export async function updateFeatured(userId: User['id']) { export async function updateFeatured(userId: User['id'], resolver?: Resolver) {
const user = await Users.findOneByOrFail({ id: userId }); const user = await Users.findOneByOrFail({ id: userId });
if (!Users.isRemoteUser(user)) return; if (!Users.isRemoteUser(user)) return;
if (!user.featured) return; if (!user.featured) return;
logger.info(`Updating the featured: ${user.uri}`); apLogger.info(`Updating the featured: ${user.uri}`);
const resolver = new Resolver(); if (resolver == null) resolver = new Resolver();
// Resolve to (Ordered)Collection Object // Resolve to (Ordered)Collection Object
const collection = await resolver.resolveCollection(user.featured); const collection = await resolver.resolveCollection(user.featured);

View file

@ -36,9 +36,10 @@ export async function extractPollFromQuestion(source: string | IObject, resolver
/** /**
* Update votes of Question * Update votes of Question
* @param value AP Question object or its id * @param value AP Question object or its id
* @param resolver Resolver to use
* @returns true if updated * @returns true if updated
*/ */
export async function updateQuestion(value: string | IObject) { export async function updateQuestion(value: string | IObject, resolver?: Resolver = new Resolver()) {
const uri = typeof value === 'string' ? value : value.id; const uri = typeof value === 'string' ? value : value.id;
// URIがこのサーバーを指しているならスキップ // URIがこのサーバーを指しているならスキップ
@ -53,7 +54,6 @@ export async function updateQuestion(value: string | IObject) {
//#endregion //#endregion
// resolve new Question object // resolve new Question object
const resolver = new Resolver();
const question = await resolver.resolve(value) as IQuestion; const question = await resolver.resolve(value) as IQuestion;
apLogger.debug(`fetched question: ${JSON.stringify(question, null, 2)}`); apLogger.debug(`fetched question: ${JSON.stringify(question, null, 2)}`);

View file

@ -2,9 +2,29 @@ import config from '@/config/index.js';
import { User } from '@/models/entities/user.js'; import { User } from '@/models/entities/user.js';
import { Users } from '@/models/index.js'; import { Users } from '@/models/index.js';
/**
* Renders a follow activity.
* @param follower user that is (trying to) follow someone
* @param followee the user that is (trying to) be followed
* @param requestId: ID of this follow. If undefined and follower is local, will be generated.
*/
export default (follower: { id: User['id']; host: User['host']; uri: User['host'] }, followee: { id: User['id']; host: User['host']; uri: User['host'] }, requestId?: string) => { export default (follower: { id: User['id']; host: User['host']; uri: User['host'] }, followee: { id: User['id']; host: User['host']; uri: User['host'] }, requestId?: string) => {
let id = requestId;
if (id == null && follower.host == null) {
/*
Generate an id only if the follower is local.
Otherwise we may try to generate an ID for a remote activity,
in which case its better not to put an id at all.
Why IDs must be generated: https://github.com/misskey-dev/misskey/issues/8655
Why IDs must not be generated for remote activities: https://akkoma.dev/FoundKeyGang/FoundKey/issues/263
*/
id = `${config.url}/follows/${follower.id}/${followee.id}`;
}
const follow = { const follow = {
id: requestId ?? `${config.url}/follows/${follower.id}/${followee.id}`, id,
type: 'Follow', type: 'Follow',
actor: Users.isLocalUser(follower) ? `${config.url}/users/${follower.id}` : follower.uri, actor: Users.isLocalUser(follower) ? `${config.url}/users/${follower.id}` : follower.uri,
object: Users.isLocalUser(followee) ? `${config.url}/users/${followee.id}` : followee.uri, object: Users.isLocalUser(followee) ? `${config.url}/users/${followee.id}` : followee.uri,

View file

@ -2,7 +2,6 @@ import config from '@/config/index.js';
import { getJson } from '@/misc/fetch.js'; import { getJson } from '@/misc/fetch.js';
import { ILocalUser } from '@/models/entities/user.js'; import { ILocalUser } from '@/models/entities/user.js';
import { getInstanceActor } from '@/services/instance-actor.js'; import { getInstanceActor } from '@/services/instance-actor.js';
import { fetchMeta } from '@/misc/fetch-meta.js';
import { extractDbHost, isSelfHost } from '@/misc/convert-host.js'; import { extractDbHost, isSelfHost } from '@/misc/convert-host.js';
import { Notes, NoteReactions, Polls, Users } from '@/models/index.js'; import { Notes, NoteReactions, Polls, Users } from '@/models/index.js';
import renderNote from '@/remote/activitypub/renderer/note.js'; import renderNote from '@/remote/activitypub/renderer/note.js';
@ -12,16 +11,24 @@ import renderQuestion from '@/remote/activitypub/renderer/question.js';
import renderCreate from '@/remote/activitypub/renderer/create.js'; import renderCreate from '@/remote/activitypub/renderer/create.js';
import { renderActivity } from '@/remote/activitypub/renderer/index.js'; import { renderActivity } from '@/remote/activitypub/renderer/index.js';
import renderFollow from '@/remote/activitypub/renderer/follow.js'; import renderFollow from '@/remote/activitypub/renderer/follow.js';
import { shouldBlockInstance } from '@/misc/skipped-instances.js';
import { signedGet } from './request.js'; import { signedGet } from './request.js';
import { IObject, isCollectionOrOrderedCollection, ICollection, IOrderedCollection } from './type.js'; import { IObject, isCollectionOrOrderedCollection, ICollection, IOrderedCollection } from './type.js';
import { parseUri } from './db-resolver.js'; import { parseUri } from './db-resolver.js';
/**
* Tries to resolve an ActivityPub URI into an AP object.
*
* As opposed to the DbResolver which will try to resolve an ActivityPub URI into a database object.
*/
export default class Resolver { export default class Resolver {
private history: Set<string>; private history: Set<string>;
private user?: ILocalUser; private user?: ILocalUser;
private recursionLimit?: number;
constructor() { constructor(recursionLimit = 100) {
this.history = new Set(); this.history = new Set();
this.recursionLimit = recursionLimit;
} }
public getHistory(): string[] { public getHistory(): string[] {
@ -59,7 +66,9 @@ export default class Resolver {
if (this.history.has(value)) { if (this.history.has(value)) {
throw new Error('cannot resolve already resolved one'); throw new Error('cannot resolve already resolved one');
} }
if (this.recursionLimit && this.history.size > this.recursionLimit) {
throw new Error('hit recursion limit');
}
this.history.add(value); this.history.add(value);
const host = extractDbHost(value); const host = extractDbHost(value);
@ -67,8 +76,7 @@ export default class Resolver {
return await this.resolveLocal(value); return await this.resolveLocal(value);
} }
const meta = await fetchMeta(); if (await shouldBlockInstance(host)) {
if (meta.blockedHosts.includes(host)) {
throw new Error('Instance is blocked'); throw new Error('Instance is blocked');
} }

View file

@ -48,7 +48,7 @@ export const meta = {
}, },
swPublickey: { swPublickey: {
type: 'string', type: 'string',
optional: false, nullable: true, optional: false, nullable: false,
}, },
bannerUrl: { bannerUrl: {
type: 'string', type: 'string',
@ -114,10 +114,6 @@ export const meta = {
type: 'boolean', type: 'boolean',
optional: false, nullable: false, optional: false, nullable: false,
}, },
enableServiceWorker: {
type: 'boolean',
optional: false, nullable: false,
},
translatorAvailable: { translatorAvailable: {
type: 'boolean', type: 'boolean',
optional: false, nullable: false, optional: false, nullable: false,
@ -219,10 +215,6 @@ export const meta = {
type: 'string', type: 'string',
optional: true, nullable: true, optional: true, nullable: true,
}, },
swPrivateKey: {
type: 'string',
optional: true, nullable: true,
},
useObjectStorage: { useObjectStorage: {
type: 'boolean', type: 'boolean',
optional: true, nullable: false, optional: true, nullable: false,
@ -280,10 +272,6 @@ export const meta = {
type: 'string', type: 'string',
optional: true, nullable: true, optional: true, nullable: true,
}, },
deeplIsPro: {
type: 'boolean',
optional: true, nullable: false,
},
libreTranslateEndpoint: { libreTranslateEndpoint: {
type: 'string', type: 'string',
optional: true, nullable: true, optional: true, nullable: true,
@ -339,7 +327,6 @@ export default define(meta, paramDef, async (ps, me) => {
enableTwitterIntegration: instance.enableTwitterIntegration, enableTwitterIntegration: instance.enableTwitterIntegration,
enableGithubIntegration: instance.enableGithubIntegration, enableGithubIntegration: instance.enableGithubIntegration,
enableDiscordIntegration: instance.enableDiscordIntegration, enableDiscordIntegration: instance.enableDiscordIntegration,
enableServiceWorker: instance.enableServiceWorker,
pinnedPages: instance.pinnedPages, pinnedPages: instance.pinnedPages,
pinnedClipId: instance.pinnedClipId, pinnedClipId: instance.pinnedClipId,
cacheRemoteFiles: instance.cacheRemoteFiles, cacheRemoteFiles: instance.cacheRemoteFiles,
@ -364,7 +351,6 @@ export default define(meta, paramDef, async (ps, me) => {
smtpPort: instance.smtpPort, smtpPort: instance.smtpPort,
smtpUser: instance.smtpUser, smtpUser: instance.smtpUser,
smtpPass: instance.smtpPass, smtpPass: instance.smtpPass,
swPrivateKey: instance.swPrivateKey,
useObjectStorage: instance.useObjectStorage, useObjectStorage: instance.useObjectStorage,
objectStorageBaseUrl: instance.objectStorageBaseUrl, objectStorageBaseUrl: instance.objectStorageBaseUrl,
objectStorageBucket: instance.objectStorageBucket, objectStorageBucket: instance.objectStorageBucket,
@ -382,7 +368,6 @@ export default define(meta, paramDef, async (ps, me) => {
translatorAvailable: translatorAvailable(instance), translatorAvailable: translatorAvailable(instance),
translationService: instance.translationService, translationService: instance.translationService,
deeplAuthKey: instance.deeplAuthKey, deeplAuthKey: instance.deeplAuthKey,
deeplIsPro: instance.deeplIsPro,
libreTranslateEndpoint: instance.libreTranslateEndpoint, libreTranslateEndpoint: instance.libreTranslateEndpoint,
libreTranslateAuthKey: instance.libreTranslateAuthKey, libreTranslateAuthKey: instance.libreTranslateAuthKey,
}; };

View file

@ -58,7 +58,6 @@ export const paramDef = {
summalyProxy: { type: 'string', nullable: true }, summalyProxy: { type: 'string', nullable: true },
translationService: { type: 'string', nullable: true, enum: [null, ...Object.values(TranslationService)] }, translationService: { type: 'string', nullable: true, enum: [null, ...Object.values(TranslationService)] },
deeplAuthKey: { type: 'string', nullable: true }, deeplAuthKey: { type: 'string', nullable: true },
deeplIsPro: { type: 'boolean' },
libreTranslateAuthKey: { type: 'string', nullable: true }, libreTranslateAuthKey: { type: 'string', nullable: true },
libreTranslateEndpoint: { type: 'string', nullable: true }, libreTranslateEndpoint: { type: 'string', nullable: true },
enableTwitterIntegration: { type: 'boolean' }, enableTwitterIntegration: { type: 'boolean' },
@ -77,9 +76,6 @@ export const paramDef = {
smtpPort: { type: 'integer', nullable: true }, smtpPort: { type: 'integer', nullable: true },
smtpUser: { type: 'string', nullable: true }, smtpUser: { type: 'string', nullable: true },
smtpPass: { type: 'string', nullable: true }, smtpPass: { type: 'string', nullable: true },
enableServiceWorker: { type: 'boolean' },
swPublicKey: { type: 'string', nullable: true },
swPrivateKey: { type: 'string', nullable: true },
tosUrl: { type: 'string', nullable: true }, tosUrl: { type: 'string', nullable: true },
useObjectStorage: { type: 'boolean' }, useObjectStorage: { type: 'boolean' },
objectStorageBaseUrl: { type: 'string', nullable: true }, objectStorageBaseUrl: { type: 'string', nullable: true },
@ -298,18 +294,6 @@ export default define(meta, paramDef, async (ps, me) => {
set.smtpPass = ps.smtpPass; set.smtpPass = ps.smtpPass;
} }
if (ps.enableServiceWorker !== undefined) {
set.enableServiceWorker = ps.enableServiceWorker;
}
if (ps.swPublicKey !== undefined) {
set.swPublicKey = ps.swPublicKey;
}
if (ps.swPrivateKey !== undefined) {
set.swPrivateKey = ps.swPrivateKey;
}
if (ps.tosUrl !== undefined) { if (ps.tosUrl !== undefined) {
set.ToSUrl = ps.tosUrl; set.ToSUrl = ps.tosUrl;
} }
@ -378,10 +362,6 @@ export default define(meta, paramDef, async (ps, me) => {
} }
} }
if (ps.deeplIsPro !== undefined) {
set.deeplIsPro = ps.deeplIsPro;
}
if (ps.libreTranslateEndpoint !== undefined) { if (ps.libreTranslateEndpoint !== undefined) {
if (ps.libreTranslateEndpoint === '') { if (ps.libreTranslateEndpoint === '') {
set.libreTranslateEndpoint = null; set.libreTranslateEndpoint = null;

View file

@ -1,4 +1,3 @@
import config from '@/config/index.js';
import { createPerson } from '@/remote/activitypub/models/person.js'; import { createPerson } from '@/remote/activitypub/models/person.js';
import { createNote } from '@/remote/activitypub/models/note.js'; import { createNote } from '@/remote/activitypub/models/note.js';
import DbResolver from '@/remote/activitypub/db-resolver.js'; import DbResolver from '@/remote/activitypub/db-resolver.js';
@ -7,10 +6,10 @@ import { extractDbHost } from '@/misc/convert-host.js';
import { Users, Notes } from '@/models/index.js'; import { Users, Notes } from '@/models/index.js';
import { Note } from '@/models/entities/note.js'; import { Note } from '@/models/entities/note.js';
import { CacheableLocalUser, User } from '@/models/entities/user.js'; import { CacheableLocalUser, User } from '@/models/entities/user.js';
import { fetchMeta } from '@/misc/fetch-meta.js';
import { isActor, isPost, getApId } from '@/remote/activitypub/type.js'; import { isActor, isPost, getApId } from '@/remote/activitypub/type.js';
import { SchemaType } from '@/misc/schema.js'; import { SchemaType } from '@/misc/schema.js';
import { HOUR } from '@/const.js'; import { HOUR } from '@/const.js';
import { shouldBlockInstance } from '@/misc/skipped-instances.js';
import define from '../../define.js'; import define from '../../define.js';
import { ApiError } from '../../error.js'; import { ApiError } from '../../error.js';
@ -85,9 +84,11 @@ export default define(meta, paramDef, async (ps, me) => {
* URIからUserかNoteを解決する * URIからUserかNoteを解決する
*/ */
async function fetchAny(uri: string, me: CacheableLocalUser | null | undefined): Promise<SchemaType<typeof meta['res']> | null> { async function fetchAny(uri: string, me: CacheableLocalUser | null | undefined): Promise<SchemaType<typeof meta['res']> | null> {
// ブロックしてたら中断 // Stop if the host is blocked.
const fetchedMeta = await fetchMeta(); const host = extractDbHost(uri);
if (fetchedMeta.blockedHosts.includes(extractDbHost(uri))) return null; if (await shouldBlockInstance(host)) {
return null;
}
const dbResolver = new DbResolver(); const dbResolver = new DbResolver();

View file

@ -182,10 +182,6 @@ export const meta = {
type: 'boolean', type: 'boolean',
optional: false, nullable: false, optional: false, nullable: false,
}, },
enableServiceWorker: {
type: 'boolean',
optional: false, nullable: false,
},
translatorAvailable: { translatorAvailable: {
type: 'boolean', type: 'boolean',
optional: false, nullable: false, optional: false, nullable: false,
@ -240,7 +236,8 @@ export const meta = {
}, },
serviceWorker: { serviceWorker: {
type: 'boolean', type: 'boolean',
optional: false, nullable: false, optional: true, nullable: false,
default: true,
}, },
miauth: { miauth: {
type: 'boolean', type: 'boolean',
@ -321,8 +318,6 @@ export default define(meta, paramDef, async (ps, me) => {
enableGithubIntegration: instance.enableGithubIntegration, enableGithubIntegration: instance.enableGithubIntegration,
enableDiscordIntegration: instance.enableDiscordIntegration, enableDiscordIntegration: instance.enableDiscordIntegration,
enableServiceWorker: instance.enableServiceWorker,
translatorAvailable: translatorAvailable(instance), translatorAvailable: translatorAvailable(instance),
pinnedPages: instance.pinnedPages, pinnedPages: instance.pinnedPages,
@ -346,7 +341,7 @@ export default define(meta, paramDef, async (ps, me) => {
twitter: instance.enableTwitterIntegration, twitter: instance.enableTwitterIntegration,
github: instance.enableGithubIntegration, github: instance.enableGithubIntegration,
discord: instance.enableDiscordIntegration, discord: instance.enableDiscordIntegration,
serviceWorker: instance.enableServiceWorker, serviceWorker: true,
miauth: true, miauth: true,
}, },
}; };

View file

@ -139,7 +139,11 @@ export default define(meta, paramDef, async (ps, user) => {
params.append('target_lang', targetLang); params.append('target_lang', targetLang);
if (sourceLang) params.append('source_lang', sourceLang); if (sourceLang) params.append('source_lang', sourceLang);
const endpoint = instance.deeplIsPro ? 'https://api.deepl.com/v2/translate' : 'https://api-free.deepl.com/v2/translate'; // From the DeepL API docs:
//> DeepL API Free authentication keys can be identified easily by the suffix ":fx"
const endpoint = instance.deeplAuthKey.endsWith(':fx')
? 'https://api-free.deepl.com/v2/translate'
: 'https://api.deepl.com/v2/translate';
const res = await fetch(endpoint, { const res = await fetch(endpoint, {
method: 'POST', method: 'POST',

View file

@ -101,7 +101,6 @@ const nodeinfo2 = async (): Promise<NodeInfo2Base> => {
enableGithubIntegration: meta.enableGithubIntegration, enableGithubIntegration: meta.enableGithubIntegration,
enableDiscordIntegration: meta.enableDiscordIntegration, enableDiscordIntegration: meta.enableDiscordIntegration,
enableEmail: meta.enableEmail, enableEmail: meta.enableEmail,
enableServiceWorker: meta.enableServiceWorker,
proxyAccountName: proxyAccount?.username ?? null, proxyAccountName: proxyAccount?.username ?? null,
themeColor: meta.themeColor || '#86b300', themeColor: meta.themeColor || '#86b300',
}, },

View file

@ -40,8 +40,6 @@ function truncateNotification(notification: Packed<'Notification'>): any {
export async function pushNotification<T extends keyof pushNotificationsTypes>(userId: string, type: T, body: pushNotificationsTypes[T]) { export async function pushNotification<T extends keyof pushNotificationsTypes>(userId: string, type: T, body: pushNotificationsTypes[T]) {
const meta = await fetchMeta(); const meta = await fetchMeta();
if (!meta.enableServiceWorker || meta.swPublicKey == null || meta.swPrivateKey == null) return;
// Register key pair information // Register key pair information
push.setVapidDetails(config.url, push.setVapidDetails(config.url,
meta.swPublicKey, meta.swPublicKey,

View file

@ -7,14 +7,18 @@ import { HOUR } from '@/const.js';
const cache = new Cache<Instance>( const cache = new Cache<Instance>(
HOUR, HOUR,
(host) => Instances.findOneBy({ host }).then(x => x ?? undefined), async (host) => {
if (host == null) return undefined;
const res = await Instances.findOneBy({ host });
return res ?? undefined;
} ,
); );
export async function registerOrFetchInstanceDoc(idnHost: string): Promise<Instance> { export async function registerOrFetchInstanceDoc(idnHost: string): Promise<Instance> {
const host = toPuny(idnHost); const host = toPuny(idnHost);
const cached = cache.fetch(host); const cached = await cache.fetch(host);
if (cached) return cached; if (cached != null) return cached;
// apparently a new instance // apparently a new instance
const i = await Instances.insert({ const i = await Instances.insert({

View file

@ -1,6 +1,6 @@
{ {
"name": "client", "name": "client",
"version": "13.0.0-preview2", "version": "13.0.0-preview3",
"private": true, "private": true,
"scripts": { "scripts": {
"watch": "vite build --watch --mode development", "watch": "vite build --watch --mode development",

View file

@ -33,7 +33,7 @@
</div> </div>
</template> </template>
<script lang="ts"> <script lang="ts" setup>
import { markRaw, ref, onUpdated, onMounted, onBeforeUnmount, nextTick, watch } from 'vue'; import { markRaw, ref, onUpdated, onMounted, onBeforeUnmount, nextTick, watch } from 'vue';
import contains from '@/scripts/contains'; import contains from '@/scripts/contains';
import { char2filePath } from '@/scripts/twemoji-base'; import { char2filePath } from '@/scripts/twemoji-base';
@ -54,21 +54,19 @@ type EmojiDef = {
isCustomEmoji?: boolean; isCustomEmoji?: boolean;
}; };
const lib = emojilist.filter(x => x.category !== 'flags'); const emjdb: EmojiDef[] = emojilist.map(x => ({
const emjdb: EmojiDef[] = lib.map(x => ({
emoji: x.char, emoji: x.char,
name: x.name, name: x.name,
url: char2filePath(x.char), url: char2filePath(x.char),
})); }));
for (const x of lib) { for (const x of emojilist) {
if (x.keywords) { if (x.keywords) {
for (const k of x.keywords) { for (const k of x.keywords) {
emjdb.push({ emjdb.push({
emoji: x.char, emoji: x.char,
name: k, name: k.toLowerCase(),
aliasOf: x.name, aliasOf: x.name.toLowerCase(),
url: char2filePath(x.char), url: char2filePath(x.char),
}); });
} }
@ -83,7 +81,7 @@ const emojiDefinitions: EmojiDef[] = [];
for (const x of customEmojis) { for (const x of customEmojis) {
emojiDefinitions.push({ emojiDefinitions.push({
name: x.name, name: x.name.toLowerCase(),
emoji: `:${x.name}:`, emoji: `:${x.name}:`,
url: x.url, url: x.url,
isCustomEmoji: true, isCustomEmoji: true,
@ -92,8 +90,8 @@ for (const x of customEmojis) {
if (x.aliases) { if (x.aliases) {
for (const alias of x.aliases) { for (const alias of x.aliases) {
emojiDefinitions.push({ emojiDefinitions.push({
name: alias, name: alias.toLowerCase(),
aliasOf: x.name, aliasOf: x.name.toLowerCase(),
emoji: `:${x.name}:`, emoji: `:${x.name}:`,
url: x.url, url: x.url,
isCustomEmoji: true, isCustomEmoji: true,
@ -107,15 +105,6 @@ emojiDefinitions.sort((a, b) => a.name.length - b.name.length);
const emojiDb = markRaw(emojiDefinitions.concat(emjdb)); const emojiDb = markRaw(emojiDefinitions.concat(emjdb));
//#endregion //#endregion
export default {
emojiDb,
emojiDefinitions,
emojilist,
customEmojis,
};
</script>
<script lang="ts" setup>
const props = defineProps<{ const props = defineProps<{
type: string; type: string;
q: string | null; q: string | null;
@ -226,7 +215,7 @@ function exec() {
} }
} else if (props.type === 'emoji') { } else if (props.type === 'emoji') {
if (!props.q || props.q === '') { if (!props.q || props.q === '') {
// 使 // suggest recently used emoji
emojis.value = defaultStore.state.recentlyUsedEmojis.map(emoji => emojiDb.find(dbEmoji => dbEmoji.emoji === emoji)).filter(x => x) as EmojiDef[]; emojis.value = defaultStore.state.recentlyUsedEmojis.map(emoji => emojiDb.find(dbEmoji => dbEmoji.emoji === emoji)).filter(x => x) as EmojiDef[];
return; return;
} }
@ -234,23 +223,35 @@ function exec() {
const matched: EmojiDef[] = []; const matched: EmojiDef[] = [];
const max = 30; const max = 30;
emojiDb.some(x => { // match emoji case insensitive
if (x.name.startsWith(props.q ?? '') && !x.aliasOf && !matched.some(y => y.emoji === x.emoji)) matched.push(x); const q = props.q.toLowerCase();
return matched.length === max;
}); const matchingEmoji = (matcher) => {
for (const x of emojiDb) {
if (
matcher(x)
// make sure an emoji isnt shown twice (because of an alias)
&& !matched.some(y => y.emoji === x.emoji)
) {
matched.push(x);
// if this brings us to the max allowed, stop checking
if (matched.length === max) break;
}
}
}
// at first only check starting and dont allow aliases
matchingEmoji(x => x.name.startsWith(q) && !x.aliasOf);
if (matched.length < max) { if (matched.length < max) {
emojiDb.some(x => { // there is still space left, now allow aliases too, but still starting with
if (x.name.startsWith(props.q ?? '') && !matched.some(y => y.emoji === x.emoji)) matched.push(x); matchingEmoji(x => x.name.startsWith(q));
return matched.length === max;
});
} }
if (matched.length < max) { if (matched.length < max) {
emojiDb.some(x => { // there is *still* space left, now just check anywhere in the name or alias
if (x.name.includes(props.q ?? '') && !matched.some(y => y.emoji === x.emoji)) matched.push(x); matchingEmoji(x => x.name.includes(q));
return matched.length === max;
});
} }
emojis.value = matched; emojis.value = matched;

View file

@ -1,67 +0,0 @@
<template>
<div class="mk-notification-toast" :style="{ zIndex }">
<transition :name="$store.state.animation ? 'notification-toast' : ''" appear @after-leave="emit('closed')">
<XNotification v-if="showing" :notification="notification" class="notification _panel"/>
</transition>
</div>
</template>
<script lang="ts" setup>
import { onMounted } from 'vue';
import XNotification from './notification.vue';
import * as os from '@/os';
defineProps<{
notification: any; // TODO
}>();
const emit = defineEmits<{
(ev: 'closed'): void;
}>();
const zIndex = os.claimZIndex('high');
let showing = $ref(true);
onMounted(() => {
window.setTimeout(() => {
showing = false;
}, 6000);
});
</script>
<style lang="scss" scoped>
.notification-toast-enter-active, .notification-toast-leave-active {
transition: opacity 0.3s, transform 0.3s !important;
}
.notification-toast-enter-from, .notification-toast-leave-to {
opacity: 0;
transform: translateX(-250px);
}
.mk-notification-toast {
position: fixed;
left: 0;
width: 250px;
top: 32px;
padding: 0 32px;
pointer-events: none;
@media (max-width: 700px) {
top: initial;
bottom: 112px;
padding: 0 16px;
}
@media (max-width: 500px) {
bottom: calc(env(safe-area-inset-bottom, 0px) + 92px);
padding: 0 8px;
}
> .notification {
height: 100%;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
border-radius: 8px;
overflow: hidden;
}
}
</style>

File diff suppressed because it is too large Load diff

View file

@ -24,6 +24,11 @@
{{ i18n.ts._aboutMisskey.source }} {{ i18n.ts._aboutMisskey.source }}
<template #suffix>Gitea</template> <template #suffix>Gitea</template>
</FormLink> </FormLink>
<FormLink to="https://translate.akkoma.dev/projects/foundkey/foundkey/" external>
<template #icon><i class="fas fa-language"></i></template>
{{ i18n.ts._aboutMisskey.translation }}
<template #suffix>Weblate</template>
</FormLink>
</div> </div>
</FormSection> </FormSection>
<FormSection> <FormSection>

View file

@ -107,27 +107,6 @@
</FormInput> </FormInput>
</FormSplit> </FormSplit>
</FormSection> </FormSection>
<FormSection>
<template #label>ServiceWorker</template>
<FormSwitch v-model="enableServiceWorker" class="_formBlock">
<template #label>{{ i18n.ts.enableServiceworker }}</template>
<template #caption>{{ i18n.ts.serviceworkerInfo }}</template>
</FormSwitch>
<template v-if="enableServiceWorker">
<FormInput v-model="swPublicKey" class="_formBlock">
<template #prefix><i class="fas fa-key"></i></template>
<template #label>Public key</template>
</FormInput>
<FormInput v-model="swPrivateKey" class="_formBlock">
<template #prefix><i class="fas fa-key"></i></template>
<template #label>Private key</template>
</FormInput>
</template>
</FormSection>
</div> </div>
</FormSuspense> </FormSuspense>
</MkSpacer> </MkSpacer>
@ -167,9 +146,6 @@ let localDriveCapacityMb: any = $ref(0);
let remoteDriveCapacityMb: any = $ref(0); let remoteDriveCapacityMb: any = $ref(0);
let enableRegistration: boolean = $ref(false); let enableRegistration: boolean = $ref(false);
let emailRequiredForSignup: boolean = $ref(false); let emailRequiredForSignup: boolean = $ref(false);
let enableServiceWorker: boolean = $ref(false);
let swPublicKey: any = $ref(null);
let swPrivateKey: any = $ref(null);
async function init(): Promise<void> { async function init(): Promise<void> {
const meta = await os.api('admin/meta'); const meta = await os.api('admin/meta');
@ -192,9 +168,6 @@ async function init(): Promise<void> {
remoteDriveCapacityMb = meta.driveCapacityPerRemoteUserMb; remoteDriveCapacityMb = meta.driveCapacityPerRemoteUserMb;
enableRegistration = !meta.disableRegistration; enableRegistration = !meta.disableRegistration;
emailRequiredForSignup = meta.emailRequiredForSignup; emailRequiredForSignup = meta.emailRequiredForSignup;
enableServiceWorker = meta.enableServiceWorker;
swPublicKey = meta.swPublickey;
swPrivateKey = meta.swPrivateKey;
} }
function save(): void { function save(): void {
@ -218,9 +191,6 @@ function save(): void {
remoteDriveCapacityMb: parseInt(remoteDriveCapacityMb, 10), remoteDriveCapacityMb: parseInt(remoteDriveCapacityMb, 10),
disableRegistration: !enableRegistration, disableRegistration: !enableRegistration,
emailRequiredForSignup, emailRequiredForSignup,
enableServiceWorker,
swPublicKey,
swPrivateKey,
}).then(() => { }).then(() => {
fetchInstance(); fetchInstance();
}); });

View file

@ -12,9 +12,6 @@
</FormSelect> </FormSelect>
<template v-if="translationService === 'deepl'"> <template v-if="translationService === 'deepl'">
<FormSwitch v-model="deeplIsPro" class="_formBlock">
<template #label>{{ i18n.ts._translationService._deepl.pro }}</template>
</FormSwitch>
<FormInput v-model="deeplAuthKey" class="_formBlock"> <FormInput v-model="deeplAuthKey" class="_formBlock">
<template #prefix><i class="fas fa-key"></i></template> <template #prefix><i class="fas fa-key"></i></template>
<template #label>{{ i18n.ts._translationService._deepl.authKey }}</template> <template #label>{{ i18n.ts._translationService._deepl.authKey }}</template>
@ -46,7 +43,6 @@ import { fetchInstance } from '@/instance';
import { definePageMetadata } from '@/scripts/page-metadata'; import { definePageMetadata } from '@/scripts/page-metadata';
let translationService: string = $ref('none'); let translationService: string = $ref('none');
let deeplIsPro: boolean = $ref(false);
let deeplAuthKey: string = $ref(''); let deeplAuthKey: string = $ref('');
let libreTranslateEndpoint: string = $ref(''); let libreTranslateEndpoint: string = $ref('');
let libreTranslateAuthKey: string = $ref(''); let libreTranslateAuthKey: string = $ref('');
@ -54,7 +50,6 @@ let libreTranslateAuthKey: string = $ref('');
async function init(): Promise<void> { async function init(): Promise<void> {
const meta = await os.api('admin/meta'); const meta = await os.api('admin/meta');
translationService = meta.translationService ?? 'none'; translationService = meta.translationService ?? 'none';
deeplIsPro = meta.deeplIsPro;
deeplAuthKey = meta.deeplAuthKey; deeplAuthKey = meta.deeplAuthKey;
libreTranslateEndpoint = meta.libreTranslateEndpoint; libreTranslateEndpoint = meta.libreTranslateEndpoint;
libreTranslateAuthKey = meta.libreTranslateAuthKey; libreTranslateAuthKey = meta.libreTranslateAuthKey;
@ -64,7 +59,6 @@ function save(): void {
os.apiWithDialog('admin/update-meta', { os.apiWithDialog('admin/update-meta', {
translationService: translationService === 'none' ? null : translationService, translationService: translationService === 'none' ? null : translationService,
deeplAuthKey, deeplAuthKey,
deeplIsPro,
libreTranslateEndpoint, libreTranslateEndpoint,
libreTranslateAuthKey, libreTranslateAuthKey,
}).then(() => { }).then(() => {

View file

@ -47,7 +47,11 @@
{{ i18n.ts.blockThisInstanceDescription }} {{ i18n.ts.blockThisInstanceDescription }}
</template> </template>
</FormSwitch> </FormSwitch>
<MkButton @click="refreshMetadata"><i class="fas fa-refresh"></i> Refresh metadata</MkButton> <MkButton @click="refreshMetadata"><i class="fas fa-refresh"></i> Refresh metadata</MkButton>
<MkInfo style="margin-top: 1em;" warn>{{ i18n.t('removeAllFollowingDescription', { host: instance.host }) }}</MkInfo>
<MkButton danger @click="removeAllFollowing"><i class="fas fa-users-slash"></i> {{ i18n.ts.removeAllFollowing }}</MkButton>
</FormSection> </FormSection>
<FormSection> <FormSection>
@ -148,6 +152,7 @@ import { definePageMetadata } from '@/scripts/page-metadata';
import { i18n } from '@/i18n'; import { i18n } from '@/i18n';
import MkUserCardMini from '@/components/user-card-mini.vue'; import MkUserCardMini from '@/components/user-card-mini.vue';
import MkPagination from '@/components/ui/pagination.vue'; import MkPagination from '@/components/ui/pagination.vue';
import MkInfo from '@/components/ui/info.vue';
const props = defineProps<{ const props = defineProps<{
host: string; host: string;
@ -202,6 +207,12 @@ function refreshMetadata(): void {
}); });
} }
async function removeAllFollowing() {
await os.apiWithDialog('admin/federation/remove-all-following', {
host: instance.host,
});
}
fetch(); fetch();
const headerActions = $computed(() => [{ const headerActions = $computed(() => [{

View file

@ -24,7 +24,7 @@ export class Autocomplete {
} }
/** /**
* * Initialize the object by giving it the targeted text area.
*/ */
constructor(textarea: HTMLInputElement | HTMLTextAreaElement, textRef: Ref<string>) { constructor(textarea: HTMLInputElement | HTMLTextAreaElement, textRef: Ref<string>) {
//#region BIND //#region BIND
@ -42,23 +42,20 @@ export class Autocomplete {
} }
/** /**
* * Starts capturing text area input.
*/ */
public attach() { public attach() {
this.textarea.addEventListener('input', this.onInput); this.textarea.addEventListener('input', this.onInput);
} }
/** /**
* * Stop capturing text area input.
*/ */
public detach() { public detach() {
this.textarea.removeEventListener('input', this.onInput); this.textarea.removeEventListener('input', this.onInput);
this.close(); this.close();
} }
/**
*
*/
private onInput() { private onInput() {
const caretPos = this.textarea.selectionStart; const caretPos = this.textarea.selectionStart;
const text = this.text.substr(0, caretPos).split('\n').pop()!; const text = this.text.substr(0, caretPos).split('\n').pop()!;
@ -127,7 +124,7 @@ export class Autocomplete {
} }
/** /**
* * Show suggestions.
*/ */
private async open(type: string, q: string | null) { private async open(type: string, q: string | null) {
if (type !== this.currentType) { if (type !== this.currentType) {
@ -137,14 +134,13 @@ export class Autocomplete {
this.opening = true; this.opening = true;
this.currentType = type; this.currentType = type;
//#region サジェストを表示すべき位置を計算 // calculate where the suggestion should appear
const caretPosition = getCaretCoordinates(this.textarea, this.textarea.selectionStart); const caretPosition = getCaretCoordinates(this.textarea, this.textarea.selectionStart);
const rect = this.textarea.getBoundingClientRect(); const rect = this.textarea.getBoundingClientRect();
const x = rect.left + caretPosition.left - this.textarea.scrollLeft; const x = rect.left + caretPosition.left - this.textarea.scrollLeft;
const y = rect.top + caretPosition.top - this.textarea.scrollTop; const y = rect.top + caretPosition.top - this.textarea.scrollTop;
//#endregion
if (this.suggestion) { if (this.suggestion) {
this.suggestion.x.value = x; this.suggestion.x.value = x;
@ -182,7 +178,7 @@ export class Autocomplete {
} }
/** /**
* * Close suggestion.
*/ */
private close() { private close() {
if (this.suggestion == null) return; if (this.suggestion == null) return;
@ -194,7 +190,17 @@ export class Autocomplete {
} }
/** /**
* * Positions the cursor within the given text area.
*/
private positionCursor(pos) {
nextTick(() => {
this.textarea.focus();
this.textarea.setSelectionRange(pos, pos);
});
}
/**
* Write the suggestion to the textarea.
*/ */
private complete({ type, value }) { private complete({ type, value }) {
this.close(); this.close();
@ -210,15 +216,9 @@ export class Autocomplete {
const acct = value.host === null ? value.username : `${value.username}@${toASCII(value.host)}`; const acct = value.host === null ? value.username : `${value.username}@${toASCII(value.host)}`;
// 挿入
this.text = `${trimmedBefore}@${acct} ${after}`; this.text = `${trimmedBefore}@${acct} ${after}`;
// add 2 for "@" and space
// キャレットを戻す this.positionCursor(trimmedBefore.length + acct.length + 2);
nextTick(() => {
this.textarea.focus();
const pos = trimmedBefore.length + (acct.length + 2);
this.textarea.setSelectionRange(pos, pos);
});
} else if (type === 'hashtag') { } else if (type === 'hashtag') {
const source = this.text; const source = this.text;
@ -226,15 +226,9 @@ export class Autocomplete {
const trimmedBefore = before.substring(0, before.lastIndexOf('#')); const trimmedBefore = before.substring(0, before.lastIndexOf('#'));
const after = source.substr(caret); const after = source.substr(caret);
// 挿入
this.text = `${trimmedBefore}#${value} ${after}`; this.text = `${trimmedBefore}#${value} ${after}`;
// add 2 for "#" and space
// キャレットを戻す this.positionCursor(trimmedBefore.length + value.length + 2);
nextTick(() => {
this.textarea.focus();
const pos = trimmedBefore.length + (value.length + 2);
this.textarea.setSelectionRange(pos, pos);
});
} else if (type === 'emoji') { } else if (type === 'emoji') {
const source = this.text; const source = this.text;
@ -242,15 +236,8 @@ export class Autocomplete {
const trimmedBefore = before.substring(0, before.lastIndexOf(':')); const trimmedBefore = before.substring(0, before.lastIndexOf(':'));
const after = source.substr(caret); const after = source.substr(caret);
// 挿入
this.text = trimmedBefore + value + after; this.text = trimmedBefore + value + after;
this.positionCursor(trimmedBefore.length + value.length);
// キャレットを戻す
nextTick(() => {
this.textarea.focus();
const pos = trimmedBefore.length + value.length;
this.textarea.setSelectionRange(pos, pos);
});
} else if (type === 'mfmTag') { } else if (type === 'mfmTag') {
const source = this.text; const source = this.text;
@ -258,15 +245,8 @@ export class Autocomplete {
const trimmedBefore = before.substring(0, before.lastIndexOf('$')); const trimmedBefore = before.substring(0, before.lastIndexOf('$'));
const after = source.substr(caret); const after = source.substr(caret);
// 挿入
this.text = `${trimmedBefore}$[${value} ]${after}`; this.text = `${trimmedBefore}$[${value} ]${after}`;
this.positionCursor(trimmedBefore.length + value.length + 3);
// キャレットを戻す
nextTick(() => {
this.textarea.focus();
const pos = trimmedBefore.length + (value.length + 3);
this.textarea.setSelectionRange(pos, pos);
});
} }
} }
} }

View file

@ -9,7 +9,7 @@ export async function initializeSw() {
navigator.serviceWorker.register('/sw.js', { scope: '/', type: 'classic' }); navigator.serviceWorker.register('/sw.js', { scope: '/', type: 'classic' });
navigator.serviceWorker.ready.then(registration => { navigator.serviceWorker.ready.then(registration => {
registration.active?.postMessage({ registration.active?.postMessage({
msg: 'initialize', type: 'initialize',
lang, lang,
}); });
@ -33,14 +33,14 @@ export async function initializeSw() {
}) })
// When subscribe failed // When subscribe failed
.catch(async (err: Error) => { .catch(async (err: Error) => {
// 通知が許可されていなかったとき // when notifications were not authorized
if (err.name === 'NotAllowedError') { if (err.name === 'NotAllowedError') {
return; return;
} }
// 違うapplicationServerKey (または gcm_sender_id)のサブスクリプションが // The error may have been caused by the fact that a subscription to a
// 既に存在していることが原因でエラーになった可能性があるので、 // different applicationServerKey (or gcm_sender_id) already exists, so
// そのサブスクリプションを解除しておく // unsubscribe to it.
const subscription = await registration.pushManager.getSubscription(); const subscription = await registration.pushManager.getSubscription();
if (subscription) subscription.unsubscribe(); if (subscription) subscription.unsubscribe();
}); });

View file

@ -19,6 +19,7 @@
<script lang="ts" setup> <script lang="ts" setup>
import { defineAsyncComponent, Ref, ref } from 'vue'; import { defineAsyncComponent, Ref, ref } from 'vue';
import { swInject } from './sw-inject'; import { swInject } from './sw-inject';
import { instance } from '@/instance';
import { popup as showPopup, popups, pendingApiRequestsCount } from '@/os'; import { popup as showPopup, popups, pendingApiRequestsCount } from '@/os';
import { uploads } from '@/scripts/upload'; import { uploads } from '@/scripts/upload';
import * as sound from '@/scripts/sound'; import * as sound from '@/scripts/sound';
@ -32,14 +33,12 @@ const dev: Ref<boolean> = ref(_DEV_);
const onNotification = (notification: { type: string; id: any; }): void => { const onNotification = (notification: { type: string; id: any; }): void => {
if ($i?.mutingNotificationTypes.includes(notification.type)) return; if ($i?.mutingNotificationTypes.includes(notification.type)) return;
if (document.visibilityState === 'visible') { // if push notifications are enabled there is no need to pass the notification along
stream.send('readNotification', { if (!instance.enableServiceWorker) {
id: notification.id, // service worker is not enabled or set up on the server, pass the notification along
navigator.serviceWorker.ready.then(registration => {
registration.active.postMessage({ type: 'notification', body: notification });
}); });
showPopup(defineAsyncComponent(() => import('@/components/notification-toast.vue')), {
notification,
}, {}, 'closed');
} }
sound.play('notification'); sound.play('notification');

View file

@ -1,6 +1,6 @@
{ {
"name": "foundkey-js", "name": "foundkey-js",
"version": "13.0.0-preview2", "version": "13.0.0-preview3",
"description": "Fork of misskey-js for Foundkey", "description": "Fork of misskey-js for Foundkey",
"type": "module", "type": "module",
"main": "./built/index.js", "main": "./built/index.js",

View file

@ -1,6 +1,6 @@
{ {
"name": "sw", "name": "sw",
"version": "13.0.0-preview2", "version": "13.0.0-preview3",
"private": true, "private": true,
"scripts": { "scripts": {
"watch": "node build.js watch", "watch": "node build.js watch",

View file

@ -24,19 +24,13 @@ self.addEventListener('activate', ev => {
}); });
self.addEventListener('push', ev => { self.addEventListener('push', ev => {
// クライアント取得 ev.waitUntil((async <K extends keyof pushNotificationDataMap>() => {
ev.waitUntil(self.clients.matchAll({
includeUncontrolled: true,
type: 'window'
}).then(async <K extends keyof pushNotificationDataMap>(clients: readonly WindowClient[]) => {
const data: pushNotificationDataMap[K] = ev.data?.json(); const data: pushNotificationDataMap[K] = ev.data?.json();
switch (data.type) { switch (data.type) {
// case 'driveFileCreated': // case 'driveFileCreated':
case 'notification': case 'notification':
case 'unreadMessagingMessage': case 'unreadMessagingMessage':
// クライアントがあったらストリームに接続しているということなので通知しない
if (clients.length != 0) return;
return createNotification(data); return createNotification(data);
case 'readAllNotifications': case 'readAllNotifications':
for (const n of await self.registration.getNotifications()) { for (const n of await self.registration.getNotifications()) {
@ -67,7 +61,7 @@ self.addEventListener('push', ev => {
} }
break; break;
} }
})); })());
}); });
self.addEventListener('notificationclick', <K extends keyof pushNotificationDataMap>(ev: ServiceWorkerGlobalScopeEventMap['notificationclick']) => { self.addEventListener('notificationclick', <K extends keyof pushNotificationDataMap>(ev: ServiceWorkerGlobalScopeEventMap['notificationclick']) => {
@ -167,24 +161,14 @@ self.addEventListener('notificationclose', <K extends keyof pushNotificationData
self.addEventListener('message', (ev: ServiceWorkerGlobalScopeEventMap['message']) => { self.addEventListener('message', (ev: ServiceWorkerGlobalScopeEventMap['message']) => {
ev.waitUntil((async () => { ev.waitUntil((async () => {
switch (ev.data) {
case 'clear':
// Cache Storage全削除
await caches.keys()
.then(cacheNames => Promise.all(
cacheNames.map(name => caches.delete(name))
));
return; // TODO
}
if (typeof ev.data === 'object') { if (typeof ev.data === 'object') {
// E.g. '[object Array]' → 'array' switch (ev.data.type) {
const otype = Object.prototype.toString.call(ev.data).slice(8, -1).toLowerCase(); case 'initialize':
if (otype === 'object') {
if (ev.data.msg === 'initialize') {
swLang.setLang(ev.data.lang); swLang.setLang(ev.data.lang);
} break;
case 'notification':
createNotification(ev.data);
break;
} }
} }
})()); })());

View file

@ -3765,7 +3765,7 @@ __metadata:
qrcode: 1.5.1 qrcode: 1.5.1
random-seed: 0.3.0 random-seed: 0.3.0
ratelimiter: 3.4.1 ratelimiter: 3.4.1
re2: 1.17.7 re2: 1.17.8
redis-lock: 0.1.4 redis-lock: 0.1.4
reflect-metadata: 0.1.13 reflect-metadata: 0.1.13
rename: 1.0.4 rename: 1.0.4
@ -12166,12 +12166,12 @@ __metadata:
languageName: node languageName: node
linkType: hard linkType: hard
"nan@npm:^2.16.0": "nan@npm:^2.17.0":
version: 2.16.0 version: 2.17.0
resolution: "nan@npm:2.16.0" resolution: "nan@npm:2.17.0"
dependencies: dependencies:
node-gyp: latest node-gyp: latest
checksum: cb16937273ea55b01ea47df244094c12297ce6b29b36e845d349f1f7c268b8d7c5abd126a102c5678a1e1afd0d36bba35ea0cc959e364928ce60561c9306064a checksum: ec609aeaf7e68b76592a3ba96b372aa7f5df5b056c1e37410b0f1deefbab5a57a922061e2c5b369bae9c7c6b5e6eecf4ad2dac8833a1a7d3a751e0a7c7f849ed
languageName: node languageName: node
linkType: hard linkType: hard
@ -12390,7 +12390,27 @@ __metadata:
languageName: node languageName: node
linkType: hard linkType: hard
"node-gyp@npm:^9.0.0, node-gyp@npm:latest": "node-gyp@npm:^9.3.0":
version: 9.3.0
resolution: "node-gyp@npm:9.3.0"
dependencies:
env-paths: ^2.2.0
glob: ^7.1.4
graceful-fs: ^4.2.6
make-fetch-happen: ^10.0.3
nopt: ^6.0.0
npmlog: ^6.0.0
rimraf: ^3.0.2
semver: ^7.3.5
tar: ^6.1.2
which: ^2.0.2
bin:
node-gyp: bin/node-gyp.js
checksum: 589ddd3ed967724ef425f9624bfa47cf73022640ab3eba6d556e92cdc4ddef33b63fce3a467c93b995a3f61df92eafd3c3d1e8dbe4a2c00c383334487dea99c3
languageName: node
linkType: hard
"node-gyp@npm:latest":
version: 9.1.0 version: 9.1.0
resolution: "node-gyp@npm:9.1.0" resolution: "node-gyp@npm:9.1.0"
dependencies: dependencies:
@ -14351,14 +14371,14 @@ __metadata:
languageName: node languageName: node
linkType: hard linkType: hard
"re2@npm:1.17.7": "re2@npm:1.17.8":
version: 1.17.7 version: 1.17.8
resolution: "re2@npm:1.17.7" resolution: "re2@npm:1.17.8"
dependencies: dependencies:
install-artifact-from-github: ^1.3.1 install-artifact-from-github: ^1.3.1
nan: ^2.16.0 nan: ^2.17.0
node-gyp: ^9.0.0 node-gyp: ^9.3.0
checksum: a53efcf1fd77ee9071206e9600791602f95818a471f9313aee931c6417bae4462e8441487ddf78be707ab3faa6cf9956e8deb5a3048c73ba4c024b16a05e5655 checksum: 451a12888650fb1b9baaf5ec7441396f00fc5a7289fc0c0704732cb8eec668489ec6f4372aea9cd3fc5ddf6ff5dc42cd7c93c118939fea3e7f4f5c512e292fe3
languageName: node languageName: node
linkType: hard linkType: hard