diff --git a/.config/example.yml b/.config/example.yml
index c179395966..b996a83fb5 100644
--- a/.config/example.yml
+++ b/.config/example.yml
@@ -30,6 +30,10 @@ url: https://example.tld/
# The port that your Misskey server should listen on.
port: 3000
+# You can also use UNIX domain socket.
+# socket: /path/to/misskey.sock
+# chmodSocket: '777'
+
# ┌──────────────────────────┐
#───┘ PostgreSQL configuration └────────────────────────────────
@@ -78,6 +82,8 @@ redis:
#pass: example-pass
#prefix: example-prefix
#db: 1
+ # You can specify more ioredis options...
+ #username: example-username
#redisForPubsub:
# host: localhost
@@ -86,6 +92,8 @@ redis:
# #pass: example-pass
# #prefix: example-prefix
# #db: 1
+# # You can specify more ioredis options...
+# #username: example-username
#redisForJobQueue:
# host: localhost
@@ -94,6 +102,8 @@ redis:
# #pass: example-pass
# #prefix: example-prefix
# #db: 1
+# # You can specify more ioredis options...
+# #username: example-username
# ┌───────────────────────────┐
#───┘ MeiliSearch configuration └─────────────────────────────
@@ -104,6 +114,7 @@ redis:
# apiKey: ''
# ssl: true
# index: ''
+# scope: local
# ┌───────────────┐
#───┘ ID generation └───────────────────────────────────────────
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
index a47804ab07..0664ecd110 100644
--- a/.devcontainer/devcontainer.json
+++ b/.devcontainer/devcontainer.json
@@ -6,7 +6,7 @@
"features": {
"ghcr.io/devcontainers-contrib/features/pnpm:2": {},
"ghcr.io/devcontainers/features/node:1": {
- "version": "18.16.0"
+ "version": "20.3.1"
}
},
"forwardPorts": [3000],
diff --git a/.devcontainer/docker-compose.yml b/.devcontainer/docker-compose.yml
index 8f8c5a13ab..2809cd2ca4 100644
--- a/.devcontainer/docker-compose.yml
+++ b/.devcontainer/docker-compose.yml
@@ -2,7 +2,7 @@ version: '3.8'
services:
app:
- build:
+ build:
context: .
dockerfile: Dockerfile
diff --git a/.editorconfig b/.editorconfig
index a6f988f8d7..def7baa1a8 100644
--- a/.editorconfig
+++ b/.editorconfig
@@ -6,6 +6,10 @@ indent_size = 2
charset = utf-8
insert_final_newline = true
end_of_line = lf
+trim_trailing_whitespace = true
+
+[*.md]
+trim_trailing_whitespace = false
[*.{yml,yaml}]
indent_style = space
diff --git a/.github/ISSUE_TEMPLATE/01_bug-report.md b/.github/ISSUE_TEMPLATE/01_bug-report.md
index 25e7fc8b20..b889d96eb3 100644
--- a/.github/ISSUE_TEMPLATE/01_bug-report.md
+++ b/.github/ISSUE_TEMPLATE/01_bug-report.md
@@ -54,7 +54,7 @@ Please include errors from the developer console and/or server log files if you
* Installation Method or Hosting Service:
* Misskey: 13.x.x
-* Node: 18.x.x
+* Node: 20.x.x
* PostgreSQL: 15.x.x
* Redis: 7.x.x
* OS and Architecture:
diff --git a/.github/workflows/storybook.yml b/.github/workflows/storybook.yml
index 6cb1b34997..1aea8b5459 100644
--- a/.github/workflows/storybook.yml
+++ b/.github/workflows/storybook.yml
@@ -37,7 +37,7 @@ jobs:
with:
version: 8
run_install: false
- - name: Use Node.js 18.x
+ - name: Use Node.js 20.x
uses: actions/setup-node@v3.6.0
with:
node-version-file: '.node-version'
diff --git a/.github/workflows/test-backend.yml b/.github/workflows/test-backend.yml
index d7be15bd4f..96e64c322e 100644
--- a/.github/workflows/test-backend.yml
+++ b/.github/workflows/test-backend.yml
@@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
- node-version: [18.x]
+ node-version: [20.x]
services:
postgres:
diff --git a/.github/workflows/test-frontend.yml b/.github/workflows/test-frontend.yml
index 4ea4ba4628..eef68aa0d1 100644
--- a/.github/workflows/test-frontend.yml
+++ b/.github/workflows/test-frontend.yml
@@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
- node-version: [18.x]
+ node-version: [20.x]
steps:
- uses: actions/checkout@v3.3.0
@@ -51,7 +51,7 @@ jobs:
strategy:
fail-fast: false
matrix:
- node-version: [18.x]
+ node-version: [20.x]
browser: [chrome]
services:
diff --git a/.github/workflows/test-misskey-js.yml b/.github/workflows/test-misskey-js.yml
index b15e704c7f..213657ce1f 100644
--- a/.github/workflows/test-misskey-js.yml
+++ b/.github/workflows/test-misskey-js.yml
@@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
- node-version: [18.x]
+ node-version: [20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
diff --git a/.github/workflows/test-production.yml b/.github/workflows/test-production.yml
index 5243a83777..8429465b5b 100644
--- a/.github/workflows/test-production.yml
+++ b/.github/workflows/test-production.yml
@@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
- node-version: [18.x]
+ node-version: [20.x]
steps:
- uses: actions/checkout@v3.3.0
diff --git a/.gitignore b/.gitignore
index 537232d37f..a66e527db0 100644
--- a/.gitignore
+++ b/.gitignore
@@ -64,3 +64,6 @@ temp
*.blend3
*.blend4
*.blend5
+
+# VSCode addon
+.favorites.json
diff --git a/.node-version b/.node-version
index 6d80269a4f..dd0fe95cce 100644
--- a/.node-version
+++ b/.node-version
@@ -1 +1 @@
-18.16.0
+20.3.1
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 45dc0e3c90..438436f01a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -12,6 +12,70 @@
-->
+## 13.x.x (unreleased)
+
+### General
+- 招待機能を改善しました
+ * 過去に発行した招待コードを確認できるようになりました
+ * ロールごとに招待コードの発行数制限と制限対象期間、有効期限を設定できるようになりました
+ * 招待コードを作成したユーザーと使用したユーザーを確認できるようになりました
+- ユーザーにロールが期限付きでアサインされている場合、その期限をユーザーのモデレーションページで確認できるようになりました
+- identicon生成を無効にしてパフォーマンスを向上させることができるようになりました
+- サーバーのマシン情報の公開を無効にしてパフォーマンスを向上させることができるようになりました
+
+### Client
+- deck UIのカラムのメニューからアンテナとリストの編集画面を開けるように
+- ドライブファイルのメニューで画像をクロップできるように
+- 画像を動画と同様に簡単に隠せるように
+- Enhance: ノートの埋め込みが複数画像と動画を表示されるように
+- オリジナル画像を保持せずにアップロードする場合webpでアップロードされるように(Safari以外)
+- 見たことのあるRenoteを省略して表示をオンのときに自分のnoteのrenoteを省略するように
+- フォルダーやファイルに対しても開発者モード使用時、IDをコピーできるように
+- 引用対象を「もっと見る」で展開した場合、「閉じる」で畳めるように
+- プロフィールURLをコピーできるボタンを追加 #11190
+- `CURRENT_URL`で現在表示中のURLを取得できるように(AiScript)
+- ユーザーのContextMenuに「アンテナに追加」ボタンを追加
+- フォローやお気に入り登録をしていないチャンネルを開く時は概要ページを開くように
+- 画面ビューワをタップした場合、マウスクリックと同様に画像ビューワを閉じるように
+- オフライン時の画面にリロードボタンを追加
+- Renote時に公開範囲のデフォルト設定が適用されるように
+- Deckで非ルートページにアクセスした際に簡易UIで表示しない設定を追加
+- ロール設定画面でロールIDを確認できるように
+- コンテキストメニュー表示時のパフォーマンスを改善
+- フォロー/フォロワー非公開時の表示を改善
+- 本文にMFMが含まれている場合に自動でたたまれる機能が、返信先や引用RNにも適用されるように
+ - position は対象外になりました
+- AiScriptを0.15.0に更新
+- Fix: サーバーメトリクスが90度傾いている
+- Fix: 非ログイン時にクレデンシャルが必要なページに行くとエラーが出る問題を修正
+- Fix: sparkle内にリンクを入れるとクリック不能になる問題の修正
+- Fix: ZenUIでポップアップの表示位置がおかしい問題を修正
+- Fix: ページ遷移でスクロール位置が保持されない問題を修正
+- Fix: フォルダーのページネーションが機能しない #11180
+- Fix: 長い文章を投稿する際、プレビューが画面からはみ出る問題を修正
+- Fix: システムフォント設定が正しく反映されない問題を修正
+- Fix: アンケート終了時のプッシュ通知が正しく表示されない問題を修正
+- Fix: MasterVolumeが0の時だけでなく各通知音の音量設定が0のときも、HTMLAudioElement.playが実行されないように変更
+
+### Server
+- JSON.parse の回数を削減することで、ストリーミングのパフォーマンスを向上しました
+- nsfwjs のモデルロードを排他することで、重複ロードによってメモリ使用量が増加しないように
+- 連合の配送ジョブのパフォーマンスを向上(ロック機構の見直し、Redisキャッシュの活用)
+- featuredノートのsignedGet回数を減らしました
+- ActivityPubの署名用鍵長を2048bitに変更しパフォーマンスを向上(新規アカウントのみ)
+- リモートサーバーのセンシティブなファイルのキャッシュだけを無効化できるオプションを追加
+- MeilisearchにIndexするノートの範囲を設定できるように
+- Export notes with file detail
+- Add unix socket support
+- 設定ファイルでioredisの全てのオプションを指定可能に
+- Fix: エクスポートしたカスタム絵文字のzipが大きいと読み込めない問題を修正
+- Fix: リモートサーバーに無意味なActivityPubの配信を行うことがあるのを修正
+- Fix: Remove Meilisearch index when notes are deleted
+- Fix: 非英語環境でのPostgreSQLのエラーハンドリングを修正
+- Fix: インスタンスのアイコンがbase64の場合の挙動を修正
+- Fix: ローカルの `Person` を指す `acct` URI を解析するときのバグを修正しました
+- Fix: 無効化されたアンテナが再度有効化されないことがある問題を修正
+
## 13.13.2
### General
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index f6b3804f84..62bc11cd99 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -106,7 +106,7 @@ If your language is not listed in Crowdin, please open an issue.
![Crowdin](https://d322cqt584bo4o.cloudfront.net/misskey/localized.svg)
## Development
-During development, it is useful to use the
+During development, it is useful to use the
```
pnpm dev
@@ -150,7 +150,7 @@ Prepare DB/Redis for testing.
```
docker compose -f packages/backend/test/docker-compose.yml up
```
-Alternatively, prepare an empty (data can be erased) DB and edit `.config/test.yml`.
+Alternatively, prepare an empty (data can be erased) DB and edit `.config/test.yml`.
Run all test.
```
@@ -214,30 +214,13 @@ Misskey uses [Storybook](https://storybook.js.org/) for UI development.
### Setup & Run
-#### Universal
-
-##### Setup
-
-```bash
-pnpm --filter misskey-js build
-pnpm --filter frontend tsc -p .storybook && (node packages/frontend/.storybook/preload-locale.js & node packages/frontend/.storybook/preload-theme.js)
-```
-
-##### Run
-
-```bash
-node packages/frontend/.storybook/generate.js && pnpm --filter frontend storybook dev
-```
-
-#### macOS & Linux
-
-##### Setup
+#### Setup
```bash
pnpm --filter misskey-js build
```
-##### Run
+#### Run
```bash
pnpm --filter frontend storybook-dev
diff --git a/Dockerfile b/Dockerfile
index fb389659bc..5431c28aad 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,6 +1,6 @@
# syntax = docker/dockerfile:1.4
-ARG NODE_VERSION=18.16.0-bullseye
+ARG NODE_VERSION=20.3.1-bullseye
# build assets & compile TypeScript
diff --git a/README.md b/README.md
index 2aae4bb865..ab4388c2eb 100644
--- a/README.md
+++ b/README.md
@@ -2,9 +2,9 @@
-
+
**🌎 **[Misskey](https://misskey-hub.net/)** is an open source, decentralized social media platform that's free forever! 🚀**
-
+
---
@@ -21,7 +21,7 @@
-
+
---
[![codecov](https://codecov.io/gh/misskey-dev/misskey/branch/develop/graph/badge.svg?token=R6IQZ3QJOL)](https://codecov.io/gh/misskey-dev/misskey)
diff --git a/assets/title_float.svg b/assets/title_float.svg
index 43205ac1c4..ed1749e321 100644
Binary files a/assets/title_float.svg and b/assets/title_float.svg differ
diff --git a/cypress/e2e/basic.cy.js b/cypress/e2e/basic.cy.js
index 2515c14ad6..5ab07c7480 100644
--- a/cypress/e2e/basic.cy.js
+++ b/cypress/e2e/basic.cy.js
@@ -54,9 +54,10 @@ describe('After setup instance', () => {
cy.get('[data-cy-signup]').click();
cy.get('[data-cy-signup-rules-continue]').should('be.disabled');
cy.get('[data-cy-signup-rules-notes-agree] [data-cy-switch-toggle]').click();
+ cy.get('[data-cy-modal-dialog-ok]').click();
cy.get('[data-cy-signup-rules-continue]').should('not.be.disabled');
cy.get('[data-cy-signup-rules-continue]').click();
-
+
cy.get('[data-cy-signup-submit]').should('be.disabled');
cy.get('[data-cy-signup-username] input').type('alice');
cy.get('[data-cy-signup-submit]').should('be.disabled');
@@ -78,6 +79,7 @@ describe('After setup instance', () => {
cy.get('[data-cy-signup]').click();
cy.get('[data-cy-signup-rules-continue]').should('be.disabled');
cy.get('[data-cy-signup-rules-notes-agree] [data-cy-switch-toggle]').click();
+ cy.get('[data-cy-modal-dialog-ok]').click();
cy.get('[data-cy-signup-rules-continue]').should('not.be.disabled');
cy.get('[data-cy-signup-rules-continue]').click();
diff --git a/gulpfile.js b/gulpfile.mjs
similarity index 88%
rename from gulpfile.js
rename to gulpfile.mjs
index 6507aad60e..9556eb795f 100644
--- a/gulpfile.js
+++ b/gulpfile.mjs
@@ -2,14 +2,14 @@
* Gulp tasks
*/
-const fs = require('fs');
-const gulp = require('gulp');
-const replace = require('gulp-replace');
-const terser = require('gulp-terser');
-const cssnano = require('gulp-cssnano');
+import * as fs from 'node:fs';
+import gulp from 'gulp';
+import replace from 'gulp-replace';
+import terser from 'gulp-terser';
+import cssnano from 'gulp-cssnano';
-const locales = require('./locales');
-const meta = require('./package.json');
+import locales from './locales/index.js';
+import meta from './package.json' assert { type: "json" };
gulp.task('copy:backend:views', () =>
gulp.src('./packages/backend/src/server/web/views/**/*').pipe(gulp.dest('./packages/backend/built/server/web/views'))
diff --git a/locales/ar-SA.yml b/locales/ar-SA.yml
index 5d0fd201b3..116973a4e6 100644
--- a/locales/ar-SA.yml
+++ b/locales/ar-SA.yml
@@ -41,17 +41,23 @@ unfavorite: "إزالة من المفضلة"
favorited: "أُضيف إلى المفضلة."
alreadyFavorited: "تمت إضافته بالفعل إلى المفضلة."
cantFavorite: "تعذرت الإضافة إلى المفضلة."
-pin: "دبّسها على الصفحة الشخصية"
-unpin: "ألغ تدبيسها من ملفك الشخصي"
+pin: "ثبتها على الصفحة الشخصية"
+unpin: "فكها من ملفك الشخصي"
copyContent: "انسخ المحتوى"
copyLink: "انسخ الرابط"
delete: "حذف"
deleteAndEdit: "إزالة وإعادة الصياغة"
deleteAndEditConfirm: "أمتأكد من حذف الملاحظة؟ ستفقد كل مشاركاتها، والتفاعلات، والردود عليها."
addToList: "أضفه إلى قائمة"
+addToAntenna: "أضف إلى هوائي"
sendMessage: "أرسل رسالة"
copyRSS: "انسخ رابط RSS"
copyUsername: "انسخ اسم المستخدم"
+copyUserId: "انسخ معرف المستخدم"
+copyNoteId: "انسخ معرف الملاحظة"
+copyFileId: "انسخ معرّف الملف"
+copyFolderId: "انسخ معرّف المجلد"
+copyProfileUrl: "انسخ رابط الملف الشخصي"
searchUser: "ابحث عن مستخدمين"
reply: "رد"
loadMore: "عرض المزيد"
@@ -106,8 +112,8 @@ cantReRenote: "لا يمكنك إعادة نشر ملاحظة معاد نشره
quote: "اقتبس"
inChannelRenote: "إعادة نشر في قناة"
inChannelQuote: "اقتباس في قناة"
-pinnedNote: "ملاحظة مدبسة"
-pinned: "دبّسها على الصفحة الشخصية"
+pinnedNote: "ملاحظة مثبتة"
+pinned: "ثبتها على الصفحة الشخصية"
you: "أنت"
clickToShow: "اضغط للعرض"
sensitive: "محتوى حساس"
@@ -134,8 +140,10 @@ unblockConfirm: "أمتأكد من إلغاء حجب هذا الحساب؟"
suspendConfirm: "أمتأكد من تعليق الحساب؟"
unsuspendConfirm: "أمتأكد من إلغاء تعليق؟"
selectList: "اختر قائمة"
+editList: "عدّل القائمة"
selectChannel: "اختر قناة"
selectAntenna: "اختر هوائيًا"
+editAntenna: "عدّل الهوائي"
selectWidget: "اختر ودجة"
editWidgets: "عدّل الودجات"
editWidgetsExit: "تم"
@@ -206,7 +214,7 @@ blockedUsers: "الحسابات المحجوبة"
noUsers: "ليس هناك مستخدمون"
editProfile: "تعديل الملف التعريفي"
noteDeleteConfirm: "هل تريد حذف هذه الملاحظة؟"
-pinLimitExceeded: "لا يمكنك تدبيس الملاحظات بعد الآن."
+pinLimitExceeded: "لا يمكنك تثبيت الملاحظات بعد الآن."
intro: "لقد انتهت عملية تنصيب Misskey. الرجاء إنشاء حساب إداري."
done: "تمّ"
processing: "المعالجة جارية"
@@ -305,7 +313,7 @@ copyUrl: "انسخ الرابط"
rename: "إعادة التسمية"
avatar: "الصورة الرمزية"
banner: "الصورة الرأسية"
-nsfw: "محتوى حساس"
+displayOfSensitiveMedia: "عرض المحتوى الحساس"
whenServerDisconnected: "عند فقدان الاتصال بالخادم"
disconnectedFromServer: "قُطِع الإتصال بالخادم"
reload: "انعش"
@@ -344,12 +352,12 @@ iconUrl: "رابط الأيقونة"
bannerUrl: "رابط صورة اللافتة"
backgroundImageUrl: "رابط صورة الخلفية"
basicInfo: "المعلومات الأساسية "
-pinnedUsers: "المستخدمون المدبسون"
-pinnedUsersDescription: "قائمة المستخدمين المدبسين في لسان \"استكشف\" ، اجعل كل اسم مستخدم في سطر لوحده."
-pinnedPages: "الصفحات المدبسة"
-pinnedPagesDescription: "أدخل مسار الصفحات التي تريد تدبيسها في أعلى هذا الموقع، اجعل كل مسار في سطر لوحده."
-pinnedClipId: "معرّف المشبك المدبس"
-pinnedNotes: "ملاحظة مدبسة"
+pinnedUsers: "المستخدمون المثبتون"
+pinnedUsersDescription: "قائمة المستخدمين المثبتين في لسان \"استكشف\" ، اجعل كل اسم مستخدم في سطر لوحده."
+pinnedPages: "الصفحات المثبتة"
+pinnedPagesDescription: "أدخل مسار الصفحات التي تريد تثبيتها في أعلى هذا الموقع، اجعل كل مسار في سطر لوحده."
+pinnedClipId: "معرّف المشبك المثبت"
+pinnedNotes: "ملاحظة مثبتة"
hcaptcha: "hCaptcha"
enableHcaptcha: "فعّل hCaptcha"
hcaptchaSiteKey: "مفتاح الموقع"
@@ -398,6 +406,7 @@ totp: "تطبيق استيثاق"
moderator: "مشرِف"
moderation: "الإشراف"
nUsersMentioned: "{n} مستخدمين أُشير إليهم"
+securityKeyAndPasskey: "الأمن ومفاتيح الأمان"
securityKey: "مفتاح الأمان"
lastUsed: "آخر استخدام"
lastUsedAt: "آخر استخدام: {t}"
@@ -452,6 +461,7 @@ language: "اللغة"
uiLanguage: "لغة واجهة المستخدم"
aboutX: "عن {x}"
emojiStyle: "نمط الوجوه التعبيرية"
+showNoteActionsOnlyHover: "أظهر الإجراءات عند التمرير فوق الملاحظة"
noHistory: "السجل فارغ"
signinHistory: "تاريخ تسجيل الدخول"
doing: "انتظر لحظة"
@@ -484,10 +494,12 @@ objectStoragePrefix: "البادئة"
objectStoragePrefixDesc: "ستُحفظ الملفات في مجلدات تحوي اسماءها هذه البادئة."
objectStorageEndpoint: "نقطة النهاية"
objectStorageRegion: "المنطقة"
+objectStorageRegionDesc: "حدد منطقة مثل \"xx-east-1\". إذا كانت خدمتك لا تميز بين المناطق استخدم \"us-east-1\" أو اتركها فارغة إذا كنت تستخدم متغيرات البيئة أو ملفات ضبط AWS."
objectStorageUseSSL: "استخدم SSL"
objectStorageUseSSLDesc: "عطل هذا الخيار إذا لم ترد استخدام API عبر HTTPS"
objectStorageUseProxy: "اتصل عبر وكيل"
objectStorageUseProxyDesc: "عطل هذا الخيار إذا لم ترد استخدام API عبر وكيل"
+objectStorageSetPublicRead: "عينها ك\"علنية\" عند الرفع"
serverLogs: "سجلات الخادم"
deleteAll: "حذف الكل"
showFixedPostForm: "أظهر نموذج الكتابة في أعلى الصفحة"
@@ -531,6 +543,7 @@ accountDeletedDescription: "حُذف هذا الحساب."
menu: "القائمة"
divider: "فاصل"
addItem: "إضافة عنصر"
+rearrange: "أعد الترتيب"
relays: "المُرَحلات"
addRelay: "إضافة مُرحّل"
inboxUrl: "رابط صندوق الوارد"
@@ -554,6 +567,7 @@ leaveConfirm: "لديك تغييرات غير محفوظة. أتريد المت
manage: "إدارة "
plugins: "الإضافات"
preferencesBackups: "النُسخ الاحتياطية للإعدادات"
+useBlurEffectForModal: "استخدم تأثير الطمس في المشروط"
useFullReactionPicker: "استخدم الحجم الكامل لمنتقي التفاعلات"
width: "العرض"
height: "الإرتفاع"
@@ -629,6 +643,7 @@ clip: "مِشبك"
createNew: "أنشِئ جديد"
optional: "اختياري"
createNewClip: "أنشئ مِشبكَا جديدًا"
+confirmToUnclipAlreadyClippedNote: "هذه الملاحظة تنتمي للمشبك {name} سلفًا، أتريد حذفها منه⸮"
public: "علني"
i18nInfo: "يترجم متطوعون ميسكي إلى عدة لغات، يمكنك المساعدة عبر {link}"
manageAccessTokens: "إدارة رموز الوصول"
@@ -650,6 +665,7 @@ driveFilesCount: "عدد الملفات في قرص التخزين"
driveUsage: "المستغل من قرص التخزين"
noCrawle: "ارفض فهرسة زاحف الويب"
noCrawleDescription: "يطلب من محركات البحث ألّا يُفهرسوا ملفك الشخصي وملاحظات وصفحاتك وما شابه."
+lockedAccountInfo: "ستكون هذه الملاحظة مرئية للجميع مالم تحدد مرئتيها إلى \"للمتابعين فقط\""
alwaysMarkSensitive: "علّم افتراضيًا جميع ملاحظاتي كذات محتوى حساس"
loadRawImages: "حمّل الصور الأصلية بدلًا من المصغرات"
disableShowingAnimatedImages: "لا تشغّل الصور المتحركة"
@@ -668,6 +684,8 @@ developer: "المطور"
makeExplorable: "أظهر الحساب في صفحة \"استكشاف\""
makeExplorableDescription: "بتعطيل هذا الخيار لن يظهر حسابك في صفحة \"استكشاف\""
showGapBetweenNotesInTimeline: "أظهر فجوات بين المشاركات في الخيط الزمني"
+left: "يسار"
+center: "وسط"
wide: "عريض"
narrow: "رفيع"
reloadToApplySetting: "سيُطبق هذا الإعداد بعد إعادة تحميل الصفحة، أتريد إعادة تحميلها الآن؟"
@@ -705,6 +723,7 @@ editCode: "حرر الشفرة"
apply: "تطبيق"
receiveAnnouncementFromInstance: "استلم إشعارات من هذا المثيل"
emailNotification: "إشعارات البريد الكتروني"
+publish: "علني"
inChannelSearch: "ابحث عن قناة"
useReactionPickerForContextMenu: "افتح منتقي التفاعلات عند النقر بالزر الأيمن"
typingUsers: "{users} يكتب(ون)..."
@@ -717,7 +736,7 @@ unlikeConfirm: "أتريد إلغاء إعجابك؟"
fullView: "ملء الشاشة"
quitFullView: "اخرج من وضع ملء للشاشة"
addDescription: "أضف وصفًا"
-userPagePinTip: "لعرض ملاحظة هنا اختر \"دبسها على الصفحة الشخصية\" من قائمة تلك الملاحظة."
+userPagePinTip: "لعرض ملاحظة هنا اختر \"ثبتها على الصفحة الشخصية\" من قائمة تلك الملاحظة."
notSpecifiedMentionWarning: "في الملاحظة ذكر لمستخدمين لن يستلموها."
info: "عن"
userInfo: "معلومات المستخدم"
@@ -744,6 +763,7 @@ noMaintainerInformationWarning: "لم تُضبط معلومات المدير"
noBotProtectionWarning: "لم تضبط الحماية من الحسابات الآلية"
configure: "اضبط"
postToGallery: "انشر في المعرض"
+postToHashtag: "انشر بهذا الوسم"
gallery: "المعرض"
recentPosts: "المشاركات الحديثة"
popularPosts: "المشاركات المتداولة"
@@ -776,6 +796,7 @@ translate: "ترجم"
translatedFrom: "تُرجم من {x}"
accountDeletionInProgress: "حذف الحساب جارٍ"
usernameInfo: "الاسم الذي يميزك عن بافي مستخدمي هذا الخادم، يمكنك استخدام الحروف اللاتينية (a~z, A~Z) والأرقام (0~9) والشرطة السفلية (_). لا يمكنك تغييره بعد تسجيله."
+devMode: "وضع المُطوّر"
keepCw: "أبقِ على تحذيرات المحتوى"
lastCommunication: "آخر تواصل"
resolved: "عولج"
@@ -784,6 +805,7 @@ breakFollow: "إلغاء الاشتراك"
breakFollowConfirm: "أمتأكد من إزالة المتابِع ؟"
itsOn: "مفعّل"
itsOff: "معطّل"
+on: "مفعل"
emailRequiredForSignup: "عنوان البريد الإلكتروني إلزامي للتسجيل"
unread: "غير مقروءة"
filter: "رشّح"
@@ -820,6 +842,9 @@ oneDay: "يوم"
oneWeek: "أسبوع"
oneMonth: "شهر"
failedToFetchAccountInformation: "تعذر جلب معلومات الحساب"
+cropImage: "اقتصاص الصورة"
+cropImageAsk: "أتريد اقتصاص هذه الصورة"
+cropYes: "اقتص"
cropNo: "استخدمها كما هي"
file: "الملفات"
recentNHours: "آخر {n} ساعة"
@@ -830,16 +855,19 @@ recommended: "مقترح"
driveCapOverrideLabel: "غيّر حجم قرص التخزين لهذا المستخدم"
driveCapOverrideCaption: "أعد الحجم إلى القيمة الافتراضية بإدخال 0 أو أقل."
requireAdminForView: "لاستعراض هذه الصفحة وجب عليك الولوج كمدير."
+isSystemAccount: "حساب أنشأه النظام ويُدار من قِبله."
typeToConfirm: "أدخل {x} للتأكيد"
deleteAccount: "احذف الحساب"
document: "التوثيق"
numberOfPageCache: "عدد الصفحات المخزنة مؤقتًا"
+numberOfPageCacheDescription: "رفع الرقم سيسحن تجربة المستخدم لكن سيرفع استهلاك الذاكرة."
logoutConfirm: "أتريد الخروج؟"
lastActiveDate: "آخر استخدام"
statusbar: "شريط الحالة"
pleaseSelect: "حدد خيارًا"
reverse: "اقلب"
colored: "ملوّن"
+refreshInterval: "مهلة التحديث"
label: "التسمية"
type: "نوع"
speed: "سرعة"
@@ -852,6 +880,9 @@ cannotUploadBecauseInappropriate: "تعذر رفع الملف لوجود محت
cannotUploadBecauseNoFreeSpace: "تعذر رفع الملف لنقص مساحة التخزين."
cannotUploadBecauseExceedsFileSizeLimit: "تعذر رفع الملف بسبب تجاوز حجمه للحد المسموح"
beta: "بيتا"
+enableAutoSensitive: "تعيين تلقائي كمحتوى حساس NSFW"
+enableAutoSensitiveDescription: "عند الاستطاعة يسمح باكتشاف المحتوى حساس NSFW تلقائيًا في الوسائط باستخدام تعلم الآلة ووسمها تبعًا لذلك. قد يكون هذا الخيار مفعلا من جهة الخادم وسيعمل حتى وان عُطل."
+activeEmailValidationDescription: "يتحقق من صحة عنوان البريد الإلكتروني بشكل أكثر حزمًا وذلك عبر تحديد ما إذا كان عنوان بريد إلكتروني مؤقت وإمكانية التواصل معه. إذا لم يحدد هذا الخيار فسيتحقق من نسق عنوان البريد الإلكتروني."
navbar: "شريط التنقل"
shuffle: "خلط"
account: "الحسابات"
@@ -863,22 +894,32 @@ pushNotificationAlreadySubscribed: "إرسال الإشعارات مفعل سل
pushNotificationNotSupported: "متصفحك لا يدعم إرسال الإشعارات أو المثيل لا يدعمها."
sendPushNotificationReadMessage: "احذف الإشعارات فور قراءتها"
sendPushNotificationReadMessageCaption: "هذا قد يزيد من معدل استهلاك الطاقة لجهازك."
+windowRestore: "استرجاع"
caption: "التعليق التوضيحي"
+loggedInAsBot: "والج كآلي"
tools: "أدوات"
cannotLoad: "تعذر التحميل"
+numberOfProfileView: "مشاهدات الملف الشخصي"
like: "أعجبني"
unlike: "ألغِ الإعجاب"
+numberOfLikes: "الإعجابات"
show: "المظهر"
neverShow: "لا تظهره مجددًا"
+remindMeLater: "ربما لاحقا"
didYouLikeMisskey: "هل أعجبك ميسكي؟"
+pleaseDonate: "يستخدم {host} البرمجية الحرة ميسكي. نتمنى أن تتبرعوا للمشروع مما سيسمح لنا متابعة تطويره!"
roles: "الأدوار"
role: "الدور"
noRole: "لم يُعثر على دور"
normalUser: "مستخدم عادي"
undefined: "غير معرّف"
+assign: "أسند"
+unassign: "ألغ الإسناد"
color: "اللون"
manageCustomEmojis: "إدارة الإيموجي المخصصة"
+youCannotCreateAnymore: "وصلت لسقف الإنشاء."
cannotPerformTemporary: "غير متاح مؤقتاً"
+invalidParamError: "معاملات غير صالحة"
permissionDeniedError: "رُفضة العملية"
preset: "إعدادات مسبقة"
selectFromPresets: "اختر من الإعدادات المسبقة"
@@ -900,6 +941,8 @@ cannotBeChangedLater: "لا يمكن تغييره لاحقًا."
reactionAcceptance: "قبول التفاعلات"
rolesAssignedToMe: "الأدوار المسندة إلي"
resetPasswordConfirm: "هل تريد إعادة تعيين كلمة السر؟"
+license: "الرخصة"
+unfavoriteConfirm: "أتريد إزالتها من المفضلة؟"
noteIdOrUrl: "معرف الملاحظة أو رابطها"
video: "فيديو"
videos: "فيديوهات"
@@ -908,6 +951,11 @@ accountMoved: "نقل هذا المستخدم حسابه:"
accountMovedShort: "رُحل هذا الحساب."
operationForbidden: "عملية ممنوعة"
forceShowAds: "أظهر الإعلانات التجارية دائما"
+leftTop: "أعلى اليسار"
+rightTop: "أعلى اليمين"
+leftBottom: "أسفل اليسار"
+rightBottom: "أسفل اليمين"
+stackAxis: "اتجاه التكديس"
vertical: "عمودي"
horizontal: "جانبي"
position: "الموضع"
@@ -917,9 +965,105 @@ pleaseAgreeAllToContinue: "للمتابعة وافق على الحقول أعل
continue: "متابعة"
preservedUsernames: "أسماء المستخدمين المحجوزة"
preservedUsernamesDescription: "قائمة بأسماء المستخدمين المحجوزة كلٌ في سطر. لن يُقبل التسجيل بهذه الأسماء وستبقى محصورة على التسجيل اليدوي بواسطة المديرين. لن يتأثر المستخدمون الذين يملكون هذه الأسماء سلفًا."
+createNoteFromTheFile: "أنشئ ملاحظة من هذا الملف"
archive: "الأرشيف"
+channelArchiveConfirmTitle: "أتريد أرشفت {name}؟"
+channelArchiveConfirmDescription: "لن يمكنك نشر ملاحظات في القناة المأرشفة ولن تظهر في قائمة القنوات ولا في نتائج البحث."
+thisChannelArchived: "أُرشفت هذه القناة."
+displayOfNote: "عرض الملاحظة"
+initialAccountSetting: "إعداد الملف الشخصي"
youFollowing: "متابَع"
options: "خيارات"
+specifyUser: "مستخدم محدد"
+failedToPreviewUrl: "تتعذر المعاينة"
+update: "حدِّث"
+rolesThatCanBeUsedThisEmojiAsReaction: "الأدوار التي يُسمح لأصحابها استخدام هذا اإيموجي في اللتفاعل"
+rolesThatCanBeUsedThisEmojiAsReactionEmptyDescription: "إذا لم تحدد دورًا يمكن للجميع استخدام هذا الإيموجي في التفاعل."
+rolesThatCanBeUsedThisEmojiAsReactionPublicRoleWarn: "يجب أن تكون الأدوار علنية."
+cancelReactionConfirm: "أتريد حذف تفاعلك؟"
+changeReactionConfirm: "أتريد تعديل تفاعلك؟"
+later: "لاحقاً"
+goToMisskey: "لميسكي"
+additionalEmojiDictionary: "قواميس إيموجي إضافية"
+installed: "مُثبت"
+_initialAccountSetting:
+ accountCreated: "نجح إنشاء حسابك!"
+ letsStartAccountSetup: "إذا كنت جديدًا لنعدّ حسابك الشخصي."
+ letsFillYourProfile: "أولًا لنعد ملفك الشخصي."
+ profileSetting: "إعدادات الملف الشخصي"
+ privacySetting: "إعدادات الخصوصية"
+ theseSettingsCanEditLater: "يمكنك تغيير هذه الإعدادات لاحقًا."
+ skipAreYouSure: "أتريد تخطي إعداد الملف الشخصي؟"
+ laterAreYouSure: "أتريد إعداد الملف الشخصي لاحقًا؟"
+_serverRules:
+ description: "مجموعة من القواعد لعرضها عند التسجيل، من المستحسن كتابة ملخصٍ للشروط الخدمة."
+_accountMigration:
+ moveFrom: "انقل حسابًا آخر لهذا الحساب"
+ moveFromLabel: "الحساب الأصلي #{n}"
+ moveTo: "انقل هذا الحساب لحساب آخر"
+ moveToLabel: "الحساب الوجهة:"
+ moveCannotBeUndone: "لا يمكن التراجع عن نقل الحساب."
+ movedTo: "الحساب الوجهة:"
+_achievements:
+ _types:
+ _notes1:
+ description: "انشر ملاحظتك الأولى"
+ flavor: "تمتع باستخدام ميسكي!"
+ _notes10:
+ title: "بعض الملاحظات"
+ description: "انشر 10 ملاحظات"
+ _notes100:
+ title: "كثير من الملاحظات"
+ description: "انشر 100 ملاحظة"
+ _notes500:
+ description: "انشر 500 ملاحظة"
+ _notes1000:
+ title: "جبل ملاحظات"
+ description: "انشر 1000 ملاحظة"
+ _notes5000:
+ description: "انشر 5000 ملاحظة"
+ _notes10000:
+ description: "انشر 10000 ملاحظة"
+ _notes20000:
+ title: "أريد...ملاحظات...أكثر"
+ description: "انشر 20000 ملاحظة"
+ _notes30000:
+ title: "ملاحظات وملاحظات وملاحظات"
+ description: "انشر 30000 ملاحظة"
+ _notes40000:
+ title: "مصنع ملاحظات"
+ description: "انشر 40000 ملاحظة"
+ _notes50000:
+ title: "كوكب ملاحظات"
+ description: "انشر 50000 ملاحظة"
+ _notes60000:
+ title: "نجم ملاحظات"
+ description: "انشر 60000 ملاحظة"
+ _notes70000:
+ title: "ثقب أسود للملاحظات"
+ description: "انشر 70000 ملاحظة"
+ _notes80000:
+ title: "مجرة ملاحظات"
+ description: "انشر 80000 ملاحظة"
+ _notes90000:
+ title: "كوْن ملاحظات"
+ description: "انشر 90000 ملاحظة"
+ _notes100000:
+ title: "كل ملاحظاتك لنا"
+ description: "انشر 100000 ملاحظة"
+ flavor: "حقًا لديك الكثير من القصص"
+ _login3:
+ title: "مبتدأ I"
+ _noteFavorited1:
+ description: "فضًِل ملاحظتك الأولى"
+ _myNoteFavorited1:
+ title: "ساعٍ للنجوم"
+ description: "أعجب شخص آخر بإحدى ملاحظاتك"
+ _profileFilled:
+ title: "مستعد"
+ description: "أعدّ حسابك"
+ _markedAsCat:
+ title: "أنا قط"
_role:
new: "دور جديد"
edit: "حرر الأدوار"
@@ -936,6 +1080,7 @@ _role:
high: "عالية"
_options:
canManageCustomEmojis: "إدارة الإيموجي المخصصة"
+ pinMax: "حد عدد الملاحظات المثبتة"
_condition:
isLocal: "مستخدم محلي"
isRemote: "مستخدم بعيد"
@@ -996,10 +1141,6 @@ _aboutMisskey:
donate: "تبرع لميسكي"
morePatrons: "نحن نقدر الدعم الذي قدمه العديد من الأشخاص الذين لم نذكرهم. شكرًا لكم 🥰"
patrons: "الداعمون"
-_nsfw:
- respect: "اخف الوسائط ذات المحتوى الحساس"
- ignore: "اعرض الوسائط ذات المحتوى الحساس"
- force: "اخف كل الوسائط"
_instanceTicker:
none: "لا تظهره بتاتًا"
remote: "أظهر للمستخدمين البِعاد"
@@ -1316,7 +1457,7 @@ _pages:
url: "رابط الصفحة"
summary: "ملخص الصفحة"
alignCenter: "توسيط العناصر"
- hideTitleWhenPinned: "اخف عنوان الصفحة عند تدبيسها في ملف الشخصي"
+ hideTitleWhenPinned: "اخف عنوان الصفحة عند تثبيتها في ملف الشخصي"
font: "الخط"
fontSerif: "Serif"
fontSansSerif: "Sans Serif"
diff --git a/locales/bn-BD.yml b/locales/bn-BD.yml
index 4b1a9cb758..78dbd77eb2 100644
--- a/locales/bn-BD.yml
+++ b/locales/bn-BD.yml
@@ -294,7 +294,6 @@ copyUrl: "URL কপি করুন"
rename: "পুনঃনামকরণ"
avatar: "প্রোফাইল ছবি"
banner: "ব্যানার"
-nsfw: "সংবেদনশীল বিষয়বস্তু"
whenServerDisconnected: "সার্ভারের সাথে সংযোগ বিচ্ছিন্ন হয়ে গেলে"
disconnectedFromServer: "সার্ভার থেকে সংযোগ বিচ্ছিন্ন হয়েছে"
reload: "আবার লোড করুন"
@@ -902,10 +901,6 @@ _aboutMisskey:
donate: "Misskey তে দান করুন"
morePatrons: "আরও অনেকে আমাদের সাহায্য করছেন। তাদের সবাইকে ধন্যবাদ 🥰"
patrons: "সমর্থনকারী"
-_nsfw:
- respect: "স্পর্শকাতর মিডিয়া লুকান"
- ignore: "স্পর্শকাতর মিডিয়া লুকাবেন না"
- force: "সকল মিডিয়া লুকান"
_instanceTicker:
none: "দেখাবেন না"
remote: "রিমোট ব্যাবহারকারীদের জন্য দেখান"
diff --git a/locales/ca-ES.yml b/locales/ca-ES.yml
index 588a07fd87..e3a6ec11b2 100644
--- a/locales/ca-ES.yml
+++ b/locales/ca-ES.yml
@@ -263,7 +263,6 @@ emptyFolder: "La carpeta està buida"
unableToDelete: "No es pot eliminar"
copyUrl: "Copia l'URL"
rename: "Canvia el nom"
-nsfw: "NSFW"
reload: "Actualitza"
doNothing: "Ignora"
accept: "Accepta"
diff --git a/locales/cs-CZ.yml b/locales/cs-CZ.yml
index d055fde38f..ceab50075a 100644
--- a/locales/cs-CZ.yml
+++ b/locales/cs-CZ.yml
@@ -276,7 +276,6 @@ copyUrl: "Kopírovat URL"
rename: "Přejmenovat"
avatar: "Avatar"
banner: "Baner"
-nsfw: "NSFW"
disconnectedFromServer: "Spojení bylo přerušeno"
reload: "Aktualizovat"
doNothing: "Ignorovat"
diff --git a/locales/de-DE.yml b/locales/de-DE.yml
index 9b52a50697..040e8836ef 100644
--- a/locales/de-DE.yml
+++ b/locales/de-DE.yml
@@ -49,11 +49,15 @@ delete: "Löschen"
deleteAndEdit: "Löschen und Bearbeiten"
deleteAndEditConfirm: "Möchtest du diese Notiz wirklich löschen und bearbeiten? Alle Reaktionen, Renotes und Antworten dieser Notiz werden verloren gehen."
addToList: "Zu Liste hinzufügen"
+addToAntenna: "Zu Antenne hinzufügen"
sendMessage: "Nachricht senden"
copyRSS: "RSS kopieren"
copyUsername: "Benutzernamen kopieren"
copyUserId: "Benutzer-ID kopieren"
copyNoteId: "Notiz-ID kopieren"
+copyFileId: "Datei-ID kopieren"
+copyFolderId: "Ordner-ID kopieren"
+copyProfileUrl: "Profil-URL kopieren"
searchUser: "Nach einem Benutzer suchen"
reply: "Antworten"
loadMore: "Mehr laden"
@@ -112,7 +116,7 @@ pinnedNote: "Angeheftete Notiz"
pinned: "Angeheftet"
you: "Du"
clickToShow: "Zum Anzeigen anklicken"
-sensitive: "NSFW"
+sensitive: "Sensibel"
add: "Hinzufügen"
reaction: "Reaktionen"
reactions: "Reaktionen"
@@ -120,8 +124,8 @@ reactionSetting: "In der Reaktionsauswahl anzuzeigende Reaktionen"
reactionSettingDescription2: "Ziehe um Anzuordnen, klicke um zu löschen, drücke „+“ um hinzuzufügen"
rememberNoteVisibility: "Notizsichtbarkeit merken"
attachCancel: "Anhang entfernen"
-markAsSensitive: "Als NSFW markieren"
-unmarkAsSensitive: "Als nicht NSFW markieren"
+markAsSensitive: "Als sensibel markieren"
+unmarkAsSensitive: "Als nicht sensibel markieren"
enterFileName: "Dateinamen eingeben"
mute: "Stummschalten"
unmute: "Stummschaltung aufheben"
@@ -136,8 +140,10 @@ unblockConfirm: "Möchtest du diese Blockierung wirklich aufheben?"
suspendConfirm: "Möchtest du diesen Benutzer wirklich sperren?"
unsuspendConfirm: "Möchtest du diesen Benutzer wirklich entsperren?"
selectList: "Liste auswählen"
+editList: "Liste bearbeiten"
selectChannel: "Kanal auswählen"
selectAntenna: "Antenne auswählen"
+editAntenna: "Antenne bearbeiten"
selectWidget: "Widget auswählen"
editWidgets: "Widgets bearbeiten"
editWidgetsExit: "Fertig"
@@ -150,6 +156,8 @@ addEmoji: "Emoji hinzufügen"
settingGuide: "Empfohlene Einstellung"
cacheRemoteFiles: "Dateien von fremden Instanzen im Cache speichern"
cacheRemoteFilesDescription: "Ist diese Einstellung deaktiviert, so werden Dateien fremder Instanzen direkt von dort geladen. Hierdurch wird Speicherplatz auf diesem Server gespart, aber durch fehlende Generierung von Vorschaubildern mehr Bandbreite verwendet."
+cacheRemoteSensitiveFiles: "Sensitive Dateien von fremden Instanzen im Cache speichern"
+cacheRemoteSensitiveFilesDescription: "Ist diese Einstellung deaktiviert, so werden sensitive Dateien fremder Instanzen direkt von dort ohne Zwischenspeicherung geladen."
flagAsBot: "Als Bot markieren"
flagAsBotDescription: "Aktiviere diese Option, falls dieses Benutzerkonto durch ein Programm gesteuert wird. Falls aktiviert, agiert es als Flag für andere Entwickler zur Verhinderung von endlosen Kettenreaktionen mit anderen Bots und lässt Misskeys interne Systeme dieses Benutzerkonto als Bot behandeln."
flagAsCat: "Als Katze markieren"
@@ -311,7 +319,7 @@ copyUrl: "URL kopieren"
rename: "Umbenennen"
avatar: "Profilbild"
banner: "Banner"
-nsfw: "NSFW"
+displayOfSensitiveMedia: "Anzeige von sensiblen Medien"
whenServerDisconnected: "Bei Verbindungsverlust zum Server"
disconnectedFromServer: "Die Verbindung zum Server wurde getrennt"
reload: "Aktualisieren"
@@ -693,7 +701,7 @@ driveUsage: "Drive-Auslastung"
noCrawle: "Crawler-Indexierung ablehnen"
noCrawleDescription: "Suchmaschinen bitten, die eigene Profilseite, Notizen, Seiten usw. nicht zu indexieren."
lockedAccountInfo: "Auch wenn du Follow-Anfragen auf manuelle Bestätigung setzt, wird jede deiner Notizen öffentlich sichtbar sein, sofern du ihre Notizsichtbarkeit nicht auf \"Nur Follower\" setzt."
-alwaysMarkSensitive: "Medien standardmäßig als NSFW markieren"
+alwaysMarkSensitive: "Medien standardmäßig als sensibel markieren"
loadRawImages: "Anstatt Vorschaubilder immer Originalbilder anzeigen"
disableShowingAnimatedImages: "Animierte Bilder nicht abspielen"
verificationEmailSent: "Eine Bestätigungsmail wurde an deine Email-Adresse versendet. Besuche den dort enthaltenen Link, um die Verifizierung abzuschließen."
@@ -912,16 +920,16 @@ type: "Art"
speed: "Geschwindigkeit"
slow: "Langsam"
fast: "Schnell"
-sensitiveMediaDetection: "Erkennung von NSFW-Medien"
+sensitiveMediaDetection: "Erkennung von sensiblen Medien"
localOnly: "Nur Lokal"
remoteOnly: "Nur für fremde Instanzen"
failedToUpload: "Hochladen fehlgeschlagen"
-cannotUploadBecauseInappropriate: "Diese Datei kann nicht hochgeladen werden, da Anteile der Datei als möglicherweise NSFW festgestellt wurden."
+cannotUploadBecauseInappropriate: "Diese Datei kann nicht hochgeladen werden, da Anteile der Datei als möglicherweise unangebracht festgestellt wurden."
cannotUploadBecauseNoFreeSpace: "Die Datei konnte nicht hochgeladen werden, da dein Drive-Speicherplatz aufgebraucht ist."
cannotUploadBecauseExceedsFileSizeLimit: "Diese Datei kann wegen Überschreitung der Maximalgröße nicht hochgeladen werden."
beta: "Beta"
-enableAutoSensitive: "NSFW-Automarkierung"
-enableAutoSensitiveDescription: "Setzt soweit möglich durch Verwendung von Machine Learning automatisch NSFW-Markierungen für Medien, die NSFW-Anteile beinhalten. Auch wenn du diese Option deaktiviert hast, ist sie möglicherweise auf Instanzebene aktiviert."
+enableAutoSensitive: "Automarkierung sensibler Medien"
+enableAutoSensitiveDescription: "Setzt soweit möglich durch Verwendung von Machine Learning automatisch Markierungen für sensible Medien. Auch wenn du diese Option deaktiviert hast, ist sie möglicherweise auf Instanzebene aktiviert."
activeEmailValidationDescription: "Aktivert strengere Überprüfung von E-Mail-Adressen, d.h. Testen auf Wegwerfadressen und darauf, ob mit der Adresse tatsächlich kommuniziert werden kann. Ist dies deaktiviert, so wird nur das Format der E-Mail überprüft."
navbar: "Navigationsleiste"
shuffle: "Mischen"
@@ -1063,6 +1071,29 @@ goToMisskey: "Zu Misskey"
additionalEmojiDictionary: "Zusätzliche Emoji-Wörterbücher"
installed: "Installiert"
branding: "Branding"
+enableServerMachineStats: "Hardwareinformationen des Servers veröffentlichen"
+enableIdenticonGeneration: "Generierung von Benutzer-Identicons aktivieren"
+turnOffToImprovePerformance: "Deaktivierung kann zu höherer Leistung führen."
+createInviteCode: "Einladung erstellen"
+createWithOptions: "Einladung mit Optionen erstellen"
+createCount: "Einladungsanzahl"
+inviteCodeCreated: "Einladung erstellt"
+inviteLimitExceeded: "Du hast das Maximum an erstellbaren Einladungen erreicht."
+createLimitRemaining: "Erstellbare Einladungen: Noch {limit}"
+inviteLimitResetCycle: "Am {time} wird dies auf {limit} zurückgesetzt."
+expirationDate: "Ablaufdatum"
+noExpirationDate: "Keins"
+inviteCodeUsedAt: "Einladung verwendet am"
+registeredUserUsingInviteCode: "Einladung verwendet von"
+waitingForMailAuth: "Bestätigungsemail ausstehend"
+inviteCodeCreator: "Einladung erstellt von"
+usedAt: "Benutzt am"
+unused: "Unbenutzt"
+used: "Benutzt"
+expired: "Abgelaufen"
+doYouAgree: "Zustimmen?"
+beSureToReadThisAsItIsImportant: "Lies bitte diese wichtige Informationen."
+iHaveReadXCarefullyAndAgree: "Ich habe den Text \"{x}\" gelesen und stimme zu."
_initialAccountSetting:
accountCreated: "Dein Konto wurde erfolgreich erstellt!"
letsStartAccountSetup: "Lass uns nun dein Konto einrichten."
@@ -1373,6 +1404,9 @@ _role:
ltlAvailable: "Kann auf die lokale Chronik zugreifen"
canPublicNote: "Kann öffentliche Notizen erstellen"
canInvite: "Erstellung von Einladungscodes für diese Instanz"
+ inviteLimit: "Maximalanzahl an Einladungen"
+ inviteLimitCycle: "Zyklus des Einladungslimits"
+ inviteExpirationTime: "Gültigkeitsdauer von Einladungen"
canManageCustomEmojis: "Benutzerdefinierte Emojis verwalten"
driveCapacity: "Drive-Kapazität"
alwaysMarkNsfw: "Dateien immer als NSFW markieren"
@@ -1403,10 +1437,10 @@ _role:
or: "ODER-Bedingung"
not: "NICHT-Bedingung"
_sensitiveMediaDetection:
- description: "Ermöglicht eine Erleichterung der Servermoderation durch die automatische Erkennungen von NSFW-Medien unter Verwendung von Machine Learning. Hierdurch wird die Serverlast etwas erhöht."
+ description: "Ermöglicht eine Erleichterung der Servermoderation durch die automatische Erkennungen von sensiblen Medien unter Verwendung von Machine Learning. Hierdurch wird die Serverlast etwas erhöht."
sensitivity: "Erkennungssensitivität"
sensitivityDescription: "Durch das Senken der Sensitivität kann die Anzahl an Fehlerkennungen (sog. false positives) reduziert werden. Durch ein Erhöhen dieser kann die Anzahl an verpassten Erkennungen (sog. false negatives) reduziert werden."
- setSensitiveFlagAutomatically: "Als NSFW markieren"
+ setSensitiveFlagAutomatically: "Als sensibel markieren"
setSensitiveFlagAutomaticallyDescription: "Die Resultate der internen Erkennung werden beibehalten, auch wenn diese Option deaktiviert ist."
analyzeVideos: "Videoanalyse aktivieren"
analyzeVideosDescription: "Analysiert zusätzlich zu Bildern auch Videos. Die Last des Servers wird hierdurch etwas erhöht."
@@ -1435,6 +1469,7 @@ _ad:
back: "Zurück"
reduceFrequencyOfThisAd: "Diese Werbung weniger anzeigen"
hide: "Ausblenden"
+ timezoneinfo: "Der Wochentag wird durch die Serverzeitzone bestimmt."
_forgotPassword:
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."
ifNoEmail: "Solltest du bei der Registrierung keine Email-Adresse angegeben haben, wende dich bitte an den Administrator."
@@ -1486,9 +1521,9 @@ _aboutMisskey:
donate: "An Misskey spenden"
morePatrons: "Wir schätzen ebenso die Unterstützung vieler anderer hier nicht gelisteter Personen sehr. Danke! 🥰"
patrons: "UnterstützerInnen"
-_nsfw:
- respect: "Als NSFW markierte Bilder verbergen"
- ignore: "Als NSFW markierte Bilder nicht verbergen"
+_displayOfSensitiveMedia:
+ respect: "Sensible Medien verbergen"
+ ignore: "Sensible Medien anzeigen"
force: "Alle Medien verbergen"
_instanceTicker:
none: "Nie anzeigen"
@@ -1964,6 +1999,7 @@ _deck:
introduction: "Erstelle eine auf dich zugeschneiderte Benutzeroberfläche durch das Aneinanderreihen von Spalten!"
introduction2: "Klicke auf das + rechts um wann immer du möchtest neue Spalten hinzuzufügen."
widgetsIntroduction: "Drücke bitte \"Widgets bearbeiten\" im Spaltenmenü und füge ein Widget hinzu."
+ useSimpleUiForNonRootPages: "Simple Benutzeroberfläche für navigierte Seiten verwenden"
_columns:
main: "Hauptspalte"
widgets: "Widgets"
diff --git a/locales/en-US.yml b/locales/en-US.yml
index 8938208574..ea82525513 100644
--- a/locales/en-US.yml
+++ b/locales/en-US.yml
@@ -49,11 +49,15 @@ delete: "Delete"
deleteAndEdit: "Delete and edit"
deleteAndEditConfirm: "Are you sure you want to delete this note and edit it? You will lose all reactions, renotes and replies to it."
addToList: "Add to list"
+addToAntenna: "Add to antenna"
sendMessage: "Send a message"
copyRSS: "Copy RSS"
copyUsername: "Copy username"
copyUserId: "Copy user ID"
copyNoteId: "Copy note ID"
+copyFileId: "Copy file ID"
+copyFolderId: "Copy folder ID"
+copyProfileUrl: "Copy profile URL"
searchUser: "Search for a user"
reply: "Reply"
loadMore: "Load more"
@@ -112,7 +116,7 @@ pinnedNote: "Pinned note"
pinned: "Pin to profile"
you: "You"
clickToShow: "Click to show"
-sensitive: "NSFW"
+sensitive: "Sensitive"
add: "Add"
reaction: "Reactions"
reactions: "Reactions"
@@ -120,8 +124,8 @@ reactionSetting: "Reactions to show in the reaction picker"
reactionSettingDescription2: "Drag to reorder, click to delete, press \"+\" to add."
rememberNoteVisibility: "Remember note visibility settings"
attachCancel: "Remove attachment"
-markAsSensitive: "Mark as NSFW"
-unmarkAsSensitive: "Unmark as NSFW"
+markAsSensitive: "Mark as sensitive"
+unmarkAsSensitive: "Unmark as sensitive"
enterFileName: "Enter filename"
mute: "Mute"
unmute: "Unmute"
@@ -136,8 +140,10 @@ unblockConfirm: "Are you sure that you want to unblock this account?"
suspendConfirm: "Are you sure that you want to suspend this account?"
unsuspendConfirm: "Are you sure that you want to unsuspend this account?"
selectList: "Select a list"
+editList: "Edit list"
selectChannel: "Select a channel"
selectAntenna: "Select an antenna"
+editAntenna: "Edit antenna"
selectWidget: "Select a widget"
editWidgets: "Edit widgets"
editWidgetsExit: "Done"
@@ -150,6 +156,8 @@ addEmoji: "Add an emoji"
settingGuide: "Recommended settings"
cacheRemoteFiles: "Cache remote files"
cacheRemoteFilesDescription: "When this setting is disabled, remote files are loaded directly from the remote instance. Disabling this will decrease storage usage, but increase traffic, as thumbnails will not be generated."
+cacheRemoteSensitiveFiles: "Cache sensitive remote files"
+cacheRemoteSensitiveFilesDescription: "When this setting is disabled, sensitive remote files are loaded directly from the remote instance without caching."
flagAsBot: "Mark this account as a bot"
flagAsBotDescription: "Enable this option if this account is controlled by a program. If enabled, it will act as a flag for other developers to prevent endless interaction chains with other bots and adjust Misskey's internal systems to treat this account as a bot."
flagAsCat: "Mark this account as a cat"
@@ -311,7 +319,7 @@ copyUrl: "Copy URL"
rename: "Rename"
avatar: "Avatar"
banner: "Banner"
-nsfw: "NSFW"
+displayOfSensitiveMedia: "Display of sensitive media"
whenServerDisconnected: "When losing connection to the server"
disconnectedFromServer: "Connection to server has been lost"
reload: "Refresh"
@@ -693,7 +701,7 @@ driveUsage: "Drive space usage"
noCrawle: "Reject crawler indexing"
noCrawleDescription: "Ask search engines to not index your profile page, notes, Pages, etc."
lockedAccountInfo: "Unless you set your note visiblity to \"Followers only\", your notes will be visible to anyone, even if you require followers to be manually approved."
-alwaysMarkSensitive: "Mark as NSFW by default"
+alwaysMarkSensitive: "Mark as sensitive by default"
loadRawImages: "Load original images instead of showing thumbnails"
disableShowingAnimatedImages: "Don't play animated images"
verificationEmailSent: "A verification email has been sent. Please follow the included link to complete verification."
@@ -912,16 +920,16 @@ type: "Type"
speed: "Speed"
slow: "Slow"
fast: "Fast"
-sensitiveMediaDetection: "Detection of NSFW media"
+sensitiveMediaDetection: "Detection of sensitive media"
localOnly: "Local only"
remoteOnly: "Remote only"
failedToUpload: "Upload failed"
-cannotUploadBecauseInappropriate: "This file could not be uploaded because parts of it have been detected as potentially NSFW."
+cannotUploadBecauseInappropriate: "This file could not be uploaded because parts of it have been detected as potentially inappropriate."
cannotUploadBecauseNoFreeSpace: "Upload failed due to lack of Drive capacity."
cannotUploadBecauseExceedsFileSizeLimit: "This file cannot be uploaded as it exceeds the file size limit."
beta: "Beta"
-enableAutoSensitive: "Automatic NSFW-Marking"
-enableAutoSensitiveDescription: "Allows automatic detection and marking of NSFW media through Machine Learning where possible. Even if this option is disabled, it may be enabled instance-wide."
+enableAutoSensitive: "Automatic marking as sensitive"
+enableAutoSensitiveDescription: "Allows automatic detection and marking of sensitive media through Machine Learning where possible. Even if this option is disabled, it may be enabled instance-wide."
activeEmailValidationDescription: "Enables stricter validation of email addresses, which includes checking for disposable addresses and by whether it can actually be communicated with. When unchecked, only the format of the email is validated."
navbar: "Navigation bar"
shuffle: "Shuffle"
@@ -1063,6 +1071,29 @@ goToMisskey: "To Misskey"
additionalEmojiDictionary: "Additional emoji dictionaries"
installed: "Installed"
branding: "Branding"
+enableServerMachineStats: "Publish server hardware stats"
+enableIdenticonGeneration: "Enable user identicon generation"
+turnOffToImprovePerformance: "Turning this off can increase performance."
+createInviteCode: "Generate invite"
+createWithOptions: "Generate with options"
+createCount: "Invite count"
+inviteCodeCreated: "Invite generated"
+inviteLimitExceeded: "You've exceeded the limit of invites you can generate."
+createLimitRemaining: "Invite limit: {limit} remaining"
+inviteLimitResetCycle: "This limit will reset to {limit} at {time}."
+expirationDate: "Expiration date"
+noExpirationDate: "No expiration"
+inviteCodeUsedAt: "Invite code used at"
+registeredUserUsingInviteCode: "Invite used by"
+waitingForMailAuth: "Email verification pending"
+inviteCodeCreator: "Invite created by"
+usedAt: "Used at"
+unused: "Unused"
+used: "Used"
+expired: "Expired"
+doYouAgree: "Agree?"
+beSureToReadThisAsItIsImportant: "Please read this important information."
+iHaveReadXCarefullyAndAgree: "I have read the text \"{x}\" and agree."
_initialAccountSetting:
accountCreated: "Your account was successfully created!"
letsStartAccountSetup: "For starters, let's set up your profile."
@@ -1373,6 +1404,9 @@ _role:
ltlAvailable: "Can view the local timeline"
canPublicNote: "Can send public notes"
canInvite: "Can create instance invite codes"
+ inviteLimit: "Invite limit"
+ inviteLimitCycle: "Invite limit cooldown"
+ inviteExpirationTime: "Invite expiration interval"
canManageCustomEmojis: "Can manage custom emojis"
driveCapacity: "Drive capacity"
alwaysMarkNsfw: "Always mark files as NSFW"
@@ -1403,10 +1437,10 @@ _role:
or: "OR-Condition"
not: "NOT-Condition"
_sensitiveMediaDetection:
- description: "Reduces the effort of server moderation through automatically recognizing NSFW media via Machine Learning. This will slightly increase the load on the server."
+ description: "Reduces the effort of server moderation through automatically recognizing sensitive media via Machine Learning. This will slightly increase the load on the server."
sensitivity: "Detection sensitivity"
sensitivityDescription: "Reducing the sensitivity will lead to fewer misdetections (false positives) whereas increasing it will lead to fewer missed detections (false negatives)."
- setSensitiveFlagAutomatically: "Mark as NSFW"
+ setSensitiveFlagAutomatically: "Mark as sensitive"
setSensitiveFlagAutomaticallyDescription: "The results of the internal detection will be retained even if this option is turned off."
analyzeVideos: "Enable analysis of videos"
analyzeVideosDescription: "Analyzes videos in addition to images. This will slightly increase the load on the server."
@@ -1435,6 +1469,7 @@ _ad:
back: "Back"
reduceFrequencyOfThisAd: "Show this ad less"
hide: "Hide"
+ timezoneinfo: "The day of the week is determined from the server's timezone."
_forgotPassword:
enterEmail: "Enter the email address you used to register. A link with which you can reset your password will then be sent to it."
ifNoEmail: "If you did not use an email during registration, please contact the instance administrator instead."
@@ -1486,9 +1521,9 @@ _aboutMisskey:
donate: "Donate to Misskey"
morePatrons: "We also appreciate the support of many other helpers not listed here. Thank you! 🥰"
patrons: "Patrons"
-_nsfw:
- respect: "Hide NSFW media"
- ignore: "Don't hide NSFW media"
+_displayOfSensitiveMedia:
+ respect: "Hide media marked as sensitive"
+ ignore: "Display media marked as sensitive"
force: "Hide all media"
_instanceTicker:
none: "Never show"
@@ -1964,6 +1999,7 @@ _deck:
introduction: "Create the perfect interface for you by arranging columns freely!"
introduction2: "Click on the + on the right of the screen to add new colums whenever you want."
widgetsIntroduction: "Please select \"Edit widgets\" in the column menu and add a widget."
+ useSimpleUiForNonRootPages: "Use simple UI for navigated pages"
_columns:
main: "Main"
widgets: "Widgets"
diff --git a/locales/es-ES.yml b/locales/es-ES.yml
index a5dd18e3fc..127dc367e6 100644
--- a/locales/es-ES.yml
+++ b/locales/es-ES.yml
@@ -49,9 +49,15 @@ delete: "Borrar"
deleteAndEdit: "Borrar y editar"
deleteAndEditConfirm: "¿Estás seguro de que quieres borrar esta nota y editarla? Perderás todas las reacciones, renotas y respuestas."
addToList: "Agregar a lista"
+addToAntenna: "Añadir a la antena"
sendMessage: "Enviar un mensaje"
copyRSS: "Copiar RSS"
copyUsername: "Copiar nombre de usuario"
+copyUserId: "Copiar ID del usuario"
+copyNoteId: "Copiar ID de la nota"
+copyFileId: "Copiar un archivo ID"
+copyFolderId: "Copiar carpeta ID"
+copyProfileUrl: "Copiar la URL del perfil"
searchUser: "Buscar un usuario"
reply: "Responder"
loadMore: "Ver más"
@@ -134,8 +140,10 @@ unblockConfirm: "¿Quiere dejar de bloquear esta cuenta?"
suspendConfirm: "¿Quiere suspender esta cuenta?"
unsuspendConfirm: "¿Quiere dejar de suspender esta cuenta?"
selectList: "Seleccione una lista"
+editList: "Editar lista"
selectChannel: "Seleccionar canal"
selectAntenna: "Seleccionar antena"
+editAntenna: "Editar antena"
selectWidget: "Seleccionar widget"
editWidgets: "Editar widgets"
editWidgetsExit: "Terminar edición"
@@ -148,6 +156,8 @@ addEmoji: "Agregar emoji"
settingGuide: "Configuración sugerida"
cacheRemoteFiles: "Mantener en cache 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 almacenamiento del servidor, pero eso aumentará el tráfico al no crear miniaturas."
+cacheRemoteSensitiveFiles: "Cachear archivos remotos sensibles"
+cacheRemoteSensitiveFilesDescription: "Cuando esta opción está desactivada, los archivos remotos sensibles son cargador directamente de la instancia origen sin ser cacheados."
flagAsBot: "Esta cuenta es un bot"
flagAsBotDescription: "En caso de que esta cuenta fuera usada por un programa, active esta opción. Al hacerlo, esta opción servirá para otros desarrolladores para evitar cadenas infinitas de reacciones, y ajustará los sistemas internos de Misskey para que trate a esta cuenta como un bot."
flagAsCat: "Esta cuenta es un gato"
@@ -229,10 +239,10 @@ instanceFollowers: "Seguidores de la instancia"
instanceUsers: "Usuarios de la instancia"
changePassword: "Cambiar contraseña"
security: "Seguridad"
-retypedNotMatch: "No hay coincidencia"
+retypedNotMatch: "La información no coincide."
currentPassword: "Contraseña actual"
newPassword: "Contraseña nueva"
-newPasswordRetype: "Contraseña nueva (repetir)"
+newPasswordRetype: "Reescribe contraseña nueva"
attachFile: "Añadir archivo"
more: "¡Más!"
featured: "Destacados"
@@ -309,7 +319,7 @@ copyUrl: "Copiar URL"
rename: "Renombrar"
avatar: "Avatar"
banner: "Banner"
-nsfw: "Marcado como sensible"
+displayOfSensitiveMedia: "Mostrar contenido sensible"
whenServerDisconnected: "Cuando se pierda la conexión con el servidor"
disconnectedFromServer: "Desconectado del servidor"
reload: "Recargar"
@@ -433,7 +443,7 @@ title: "Título"
text: "Texto"
enable: "Activar"
next: "Siguiente"
-retype: "Intentar de nuevo"
+retype: "Ingrese de nuevo"
noteOf: "Notas de {user}"
quoteAttached: "Cita añadida"
quoteQuestion: "¿Quiere añadir una cita?"
@@ -453,7 +463,7 @@ weakPassword: "Contraseña débil"
normalPassword: "Buena contraseña"
strongPassword: "Muy buena contraseña"
passwordMatched: "Correcto"
-passwordNotMatched: "Las contraseñas no son las mismas"
+passwordNotMatched: "Las contraseñas no coinciden"
signinWith: "Inicie sesión con {x}"
signinFailed: "Autenticación fallida. Asegúrate de haber usado el nombre de usuario y contraseña correctos."
or: "O"
@@ -790,8 +800,9 @@ noMaintainerInformationWarning: "No se ha establecido la información del admini
noBotProtectionWarning: "La protección contra los bots no está configurada"
configure: "Configurar"
postToGallery: "Crear una nueva publicación en la galería"
+postToHashtag: "Publicar a este hashtag"
gallery: "Galería"
-recentPosts: "Posts recientes"
+recentPosts: "Publicaciones recientes"
popularPosts: "Más vistos"
shareWithNote: "Compartir con una nota"
ads: "Anuncios"
@@ -823,6 +834,7 @@ translatedFrom: "Traducido de {x}"
accountDeletionInProgress: "La eliminación de la cuenta está en curso"
usernameInfo: "Un nombre que identifique su cuenta de otras en este servidor. Puede utilizar el alfabeto (a~z, A~Z), dígitos (0~9) o guiones bajos (_). Los nombres de usuario no se pueden cambiar posteriormente."
aiChanMode: "Modo Ai"
+devMode: "Modo de desarrollador"
keepCw: "Mantener la advertencia de contenido"
pubSub: "Cuentas Pub/Sub"
lastCommunication: "Última comunicación"
@@ -832,15 +844,17 @@ breakFollow: "Dejar de seguir"
breakFollowConfirm: "¿Quieres dejar de seguir?"
itsOn: "¡Está encendido!"
itsOff: "¡Está apagado!"
-emailRequiredForSignup: "Se requere una dirección de correo electrónico para el registro de la cuenta"
+on: "Activado"
+off: "Desactivado"
+emailRequiredForSignup: "Se requiere una dirección de correo electrónico para el registro de la cuenta"
unread: "No leído"
-filter: "Filtro"
+filter: "Filtrar"
controlPanel: "Panel de control"
manageAccounts: "Administrar cuenta"
makeReactionsPublic: "Hacer el historial de reacciones público"
makeReactionsPublicDescription: "Todas las reacciones que hayas hecho serán públicamente visibles."
classic: "Clásico"
-muteThread: "Ocultar hilo"
+muteThread: "Silenciar hilo"
unmuteThread: "Mostrar hilo"
ffVisibility: "Visibilidad de seguidores y seguidos"
ffVisibilityDescription: "Puedes configurar quien puede ver a quienes sigues y quienes te siguen"
@@ -912,6 +926,7 @@ remoteOnly: "Sólo remoto"
failedToUpload: "La subida falló"
cannotUploadBecauseInappropriate: "Este archivo no se puede subir debido a que algunas partes han sido detectadas comoNSFW."
cannotUploadBecauseNoFreeSpace: "La subida falló debido a falta de espacio libre en la unidad del usuario."
+cannotUploadBecauseExceedsFileSizeLimit: "Este archivo supera el peso máximo y no puede ser subido."
beta: "Beta"
enableAutoSensitive: "Marcar automáticamente contenido NSFW"
enableAutoSensitiveDescription: "Permite la detección y marcado automático de contenido NSFW usando 'Machine Learning' cuando sea posible. Incluso si esta opción está desactivada, puede ser activado para toda la instancia."
@@ -942,18 +957,23 @@ show: "Apariencia"
neverShow: "No mostrar de nuevo"
remindMeLater: "Recordar después"
didYouLikeMisskey: "¿Te gusta Misskey?"
-pleaseDonate: "Misskey es software libre, y es usado por {host} . Por favor, ¡considera donar al proyecto principal para que podamos continuar!"
+pleaseDonate: "{host} usa el software gratuito Misskey. Por favor ¡Considera donar al proyecto principal para que podamos continuar!"
roles: "Roles"
-role: "Roles"
+role: "Rol"
+noRole: "Rol no encontrado"
normalUser: "Usuario normal"
undefined: "Indefinido"
assign: "Asignar"
unassign: "Quitar"
color: "Color"
manageCustomEmojis: "Administrar emojis personalizados"
-youCannotCreateAnymore: "Se alcanzó el límite de creación"
-cannotPerformTemporary: "Indisponible temporalmente"
+youCannotCreateAnymore: "Has llegado al límite de creaciones."
+cannotPerformTemporary: "Temporalmente no disponible"
cannotPerformTemporaryDescription: "Esta acción no se puede realizar porque se excedió el límite de ejecución. Espera un poco y prueba de nuevo."
+invalidParamError: "Parámetros inválidos"
+invalidParamErrorDescription: "Los parámetros de la solicitud son inválidos. Normalmente se trata de un error, pero también puede haberse excedido algún límite o similares."
+permissionDeniedError: "Operación denegada"
+permissionDeniedErrorDescription: "Esta cuenta no tiene permisos para hacer esa acción."
preset: "Predefinido"
selectFromPresets: "Escoger desde predefinidos"
achievements: "Logros"
@@ -969,7 +989,7 @@ internalServerErrorDescription: "El servidor tuvo un error inesperado."
copyErrorInfo: "Copiar detalles del error"
joinThisServer: "Registrarse en esta instancia"
exploreOtherServers: "Buscar otra instancia"
-letsLookAtTimeline: "Mirar la línea de tiempo local"
+letsLookAtTimeline: "Mira la línea de tiempo"
disableFederationConfirm: "¿Estas seguro que quieres desactivar la federación?"
disableFederationConfirmWarn: "Aunque no exista federación los posts no serán marcados como privados. En la mayoría de los casos, no es necesario hacer los posts no federar."
disableFederationOk: "Desactivar."
@@ -980,10 +1000,13 @@ cannotBeChangedLater: "Esto no podrá ser cambiado después."
reactionAcceptance: "Aceptación de reacciones"
likeOnly: "Sólo 'me gusta'"
likeOnlyForRemote: "Sólo reacciones de instancias remotas"
+nonSensitiveOnly: "Solo no sensible"
+nonSensitiveOnlyForLocalLikeOnlyForRemote: "Sólo no contenido sensible (sólo me gusta en remote)"
rolesAssignedToMe: "Roles asignados a mí"
resetPasswordConfirm: "¿Realmente quieres cambiar la contraseña?"
sensitiveWords: "Palabras sensibles"
sensitiveWordsDescription: "La visibilidad de todas las notas que contienen cualquiera de las palabras configuradas serán puestas en \"Inicio\" automáticamente. Puedes enumerás varias separándolas con saltos de línea"
+sensitiveWordsDescription2: "Si se usan espacios se crearán expresiones AND y las palabras subsecuentes con barras inclinadas se convertirán en expresiones regulares."
notesSearchNotAvailable: "No se puede buscar una nota"
license: "Licencia"
unfavoriteConfirm: "¿Desea quitar de favoritos?"
@@ -997,22 +1020,108 @@ enableChartsForFederatedInstances: "Generar gráficos de servidores remotos"
showClipButtonInNoteFooter: "Añadir \"Clip\" al menú de notas"
largeNoteReactions: "Agrandar las reacciones de las notas"
noteIdOrUrl: "ID o URL de la nota"
+video: "Video"
+videos: "Video"
+dataSaver: "Ahorro de datos"
accountMigration: "Migración de cuenta"
-accountMoved: "Este usuario se ha mudado a una nueva cuenta:"
+accountMoved: "Este usuario se movió a una nueva cuenta:"
accountMovedShort: "Esta cuenta ha sido migrada."
+operationForbidden: "Operación prohibida"
+forceShowAds: "Siempre mostrar anuncios"
+addMemo: "Añadir nota"
+editMemo: "Editar nota"
+reactionsList: "Lista de reacciones"
+renotesList: "Renotas"
+notificationDisplay: "Notificaciones"
+leftTop: "Arriba a la izquierda"
+rightTop: "Arriba a la derecha"
+leftBottom: "Abajo a la izquierda"
+rightBottom: "Abajo a la derecha"
+stackAxis: "Dirección de apilado"
+vertical: "Vertical"
horizontal: "Horizontal"
+position: "Posición"
+serverRules: "Reglas del servidor"
+pleaseConfirmBelowBeforeSignup: "Por favor confirma antes de continuar el registro"
+pleaseAgreeAllToContinue: "Tienes que estar de acuerdo con los campos anteriores para contnuar."
+continue: "Continuar"
+preservedUsernames: "Nombre de usuario reservado"
+preservedUsernamesDescription: "La lista de nombres de usuario para reservar tienen que separarse con saltos de línea.\nEstos estarán indisponibles durante la creación de cuentas, pero pueden ser usados para que los administradores puedan crear esas cuentas manualmente. Las cuentas existentes con esos nombres de usuario no se verán afectadas."
+createNoteFromTheFile: "Componer una nota desde éste archivo"
+archive: "Archivo"
+channelArchiveConfirmTitle: "¿Seguro de archivar {name}?"
+channelArchiveConfirmDescription: "Un canal archivado no aparecerá en la lista de canales ni en los resultados. Las nuevas publicaciones tampoco serán añadidas."
+thisChannelArchived: "El canal ha sido archivado."
+displayOfNote: "Mostrar notas"
+initialAccountSetting: "Configración inicial de su cuenta\nか\nConfigración de inicio"
youFollowing: "Siguiendo"
+preventAiLearning: "Rechazar el uso en el Aprendizaje de Máquinas. (IA Generativa)"
+preventAiLearningDescription: "Pedirle a las arañas (crawlers) no usar los textos publicados o imágenes en el aprendizaje automático (IA Predictiva / Generativa). Ésto se logra añadiendo una marca respuesta HTML con la cadena \"noai\" al cantenido. Una prevención total no podría lograrse sólo usando ésta marca, ya que puede ser simplemente ignorada."
options: "Opción"
+specifyUser: "Especificar usuario"
+failedToPreviewUrl: "No se pudo generar la vista previa"
+update: "Actualizar"
+rolesThatCanBeUsedThisEmojiAsReaction: "Roles que pueden usar este emoji como reacción"
+rolesThatCanBeUsedThisEmojiAsReactionEmptyDescription: "Si no se especifican roles, cualquiera podrá usar éste emoji como reacción."
+rolesThatCanBeUsedThisEmojiAsReactionPublicRoleWarn: "Éstos roles deben ser públicos."
+cancelReactionConfirm: "¿Realmente quieres eliminar la reacción?"
+changeReactionConfirm: "¿Realmente quieres cambiar la reacción?"
+later: "Ahora no"
+goToMisskey: "ir a Misskey"
+additionalEmojiDictionary: "Diccionario adicional de Emoji"
+installed: "Instalado"
+branding: "Marca"
+enableServerMachineStats: "Publicar estadísticas de hardware del servidor"
+enableIdenticonGeneration: "Activar generación de identicon por usuario"
+turnOffToImprovePerformance: "Desactivar esto puede aumentar el rendimiento."
+createInviteCode: "Generar invitación"
+createWithOptions: "Generar con opciones"
+createCount: "Conteo de invitaciones"
+inviteCodeCreated: "Invitación generada"
+inviteLimitExceeded: "Has excedido el límite de invitaciones que puedes generar."
+createLimitRemaining: "Límite de invitaciones: quedan {limit}"
+inviteLimitResetCycle: "El límite ha sido reiniciado a {limit} por {time}."
+expirationDate: "Fecha de caducidad"
+noExpirationDate: "Sin caducidad"
+inviteCodeUsedAt: "Código de invitación usado el"
+registeredUserUsingInviteCode: "Invitación usada por"
+waitingForMailAuth: "Verificación de correo pendiente"
+inviteCodeCreator: "Invitación creada por"
+usedAt: "Usada el"
+unused: "Sin usar"
+used: "Usada"
+expired: "Caducada"
_initialAccountSetting:
accountCreated: "¡La cuenta ha sido creada!"
+ letsStartAccountSetup: "Para empezar, creemos tu perfil."
+ letsFillYourProfile: "Primero, creemos tu perfil."
+ profileSetting: "Configuración del perfil"
+ privacySetting: "Configuración de privacidad"
+ theseSettingsCanEditLater: "Puedes cambiar estos ajustes más tarde."
+ youCanEditMoreSettingsInSettingsPageLater: "Desde la pestaña de \"Configuración\" puedes modificar más ajustes. Asegúrate de visitarla después."
+ followUsers: "Comienza a seguir a usuarios que te interesen para construir tu línea de tiempo."
+ pushNotificationDescription: "Habilitar las notificaciones push te permitirá recibir notificaciones de {name} directamente en tu dispositivo."
+ initialAccountSettingCompleted: "¡Configuración del perfil completada!"
+ haveFun: "¡Disfruta de {name}!"
+ ifYouNeedLearnMore: "Si quieres aprender cómo usar {name} (Misskey), por favor, visita {link}."
+ skipAreYouSure: "¿Realmente quieres saltarte la configuración del perfil?"
+ laterAreYouSure: "¿Realmente quieres configurar tu perfil después?"
+_serverRules:
+ description: "Un conjunto de reglas que serán mostradas antes del registro. Configurar un sumario de términos de servicio es recomendado."
_accountMigration:
moveFrom: "Trasladar de otra cuenta a ésta"
+ moveFromSub: "Crear un alias para otra cuenta."
moveFromLabel: "Cuenta desde la que se realiza el traslado:"
moveFromDescription: "Si quieres transferir seguidores de otra cuenta a esta cuenta y trasladarlos, tendrás que crear un alias aquí. Asegúrate de crearlo antes de realizar el traslado. Introduce la cuenta desde la que estás moviendo los seguidores así: @person@instance.com"
moveTo: "Mover esta cuenta a una nueva"
moveToLabel: "Cuenta destino:"
+ moveCannotBeUndone: "La migración de la cuenta no puede ser revertida."
moveAccountDescription: "Esta operación no puede deshacerse. En primer lugar, asegúrese de haber creado un alias para esta cuenta en la cuenta a la que se va a trasladar. Después de crear el alias, introduzca la cuenta a la que se está trasladando de la siguiente manera: @person@instance.com"
+ moveAccountHowTo: "Para migrar, primero crea un alias para ésta cuenta en la cuenta a donde te moverás.\nDespués de crear el alias, ingresa la cuenta a mover de la siguiente forma:\n@usuario@servidor.ejempo.com"
+ startMigration: "Migrar"
migrationConfirm: "¿Estás seguro de que quieres mover esta cuenta a {account}? Una vez trasladada, no podrás deshacer el traslado y no podrás volver a utilizar la cuenta original.\n\nAdemás, compruebe que ha configurado un alias en el destino del traslado."
+ movedAndCannotBeUndone: "\nLa migración decuenta ha sido completada.\nNo se puede revertir éste proceso."
+ postMigrationNote: "Ésta cuenta dejará de seguir a todas las cuentas en las siguientes 24 horas después de que finalice la migración.\nEl número de seguidos y seguidores serán 0. Para evitar que Para evitar que tus seguidores dejen de ver las publicaciones, todas serán marcadas como \"sólo seguidores\"."
movedTo: "Cuenta destino:"
_achievements:
earnedAt: "Desbloqueado el"
@@ -1187,6 +1296,7 @@ _achievements:
description: "30 minutos dedicados a Misskey"
_client60min:
title: "Viendo mucho Misskey."
+ description: "Dejar abierto Misskey por al menos 60 minutos"
_noteDeletedWithin1min:
title: "Ah... Mejor no..."
description: "Borrar una nota antes que de pase 1 minuto"
@@ -1275,6 +1385,8 @@ _role:
iconUrl: "URL del ícono"
asBadge: "Mostrar como emblema"
descriptionOfAsBadge: "Este ícono de rol se mostrará a lado del nombre de usuario cuando este rol se encuentre activo."
+ isExplorable: "Hacer el rol explorable"
+ descriptionOfIsExplorable: "La línea de tiempo de éste rol y la lista de usuarios serán públicos si se activa.."
displayOrder: "Posición"
descriptionOfDisplayOrder: "Entre más alto el número, mayor es la posición en la interfaz."
canEditMembersByModerator: "Permitir a los moderadores editar los miembros"
@@ -1289,8 +1401,12 @@ _role:
ltlAvailable: "Explorar la línea de tiempo local"
canPublicNote: "Permitir la publicación"
canInvite: "Puede crear códigos de invitación"
+ inviteLimit: "Límite de invitaciones"
+ inviteLimitCycle: "Enfriamiento del límite de invitaciones"
+ inviteExpirationTime: "Intervalo de caducidad de invitaciones"
canManageCustomEmojis: "Administrar emojis personalizados"
- driveCapacity: "Capacidad de almacenamiento"
+ driveCapacity: "Capacidad del drive"
+ alwaysMarkNsfw: "Siempre marcar archivos como NSFW"
pinMax: "Máximo de notas fijadas"
antennaMax: "Máximo de antenas"
wordMuteMax: "Máximo de caracteres en palabras silenciadas"
@@ -1350,6 +1466,7 @@ _ad:
back: "Deseleccionar"
reduceFrequencyOfThisAd: "Mostrar menos este anuncio."
hide: "No mostrar"
+ timezoneinfo: "El día de la semana está determidado por la zona horaria del servidor."
_forgotPassword:
enterEmail: "Ingrese el correo usado para registrar la cuenta. Se enviará un link para resetear la contraseña."
ifNoEmail: "Si no utilizó un correo para crear la cuenta, contáctese con el administrador."
@@ -1401,10 +1518,10 @@ _aboutMisskey:
donate: "Donar a Misskey"
morePatrons: "Muchas más personas nos apoyan. Muchas gracias🥰"
patrons: "Patrocinadores"
-_nsfw:
- respect: "Ocultar medios NSFW"
- ignore: "No esconder medios NSFW "
- force: "Ocultar todos los medios"
+_displayOfSensitiveMedia:
+ respect: "Esconder medios marcados como sensibles"
+ ignore: "Mostrar medios marcados como sensibles"
+ force: "Esconder todala multimedia"
_instanceTicker:
none: "No mostrar"
remote: "Mostrar a usuarios remotos"
@@ -1423,6 +1540,8 @@ _channel:
following: "Siguiendo"
usersCount: "{n} participantes"
notesCount: "{n} notas"
+ nameAndDescription: "Nombre y descripción"
+ nameOnly: "Sólo nombre"
_menuDisplay:
sideFull: "Horizontal"
sideIcon: "Horizontal (ícono)"
@@ -1526,7 +1645,7 @@ _sfx:
channel: "Notificaciones del canal"
_ago:
future: "Futuro"
- justNow: "Recién ahora"
+ justNow: "Justo ahora"
secondsAgo: "Hace {n} segundos"
minutesAgo: "Hace {n} minutos"
hoursAgo: "Hace {n} horas"
@@ -1540,6 +1659,16 @@ _time:
minute: "Minutos"
hour: "Horas"
day: "Días"
+_timelineTutorial:
+ title: "Cómo usar Misskey"
+ step1_1: "Ésta es la \"línea de tiempo\". Todas las \"notas\" que sean publicadas en {name} serán mostradas cronológicamente aquí."
+ step1_2: "Hay varias líneas de tiempo. Por ejemplo, la línea temporal \"Inicio\" contiene las notas de otros usuarios que sigues, y la línea \"Local\" contandrá las notas de todos los usuarios de {name}."
+ step2_1: "Ahora probemos publicar una nota. Puedes hacerlo presionando el botón que tiene un ícono de lápiz."
+ step2_2: "¿Qué tal si escribimos una introducción? o sólo un \"¡Hola {name}!\" ¿No te apetece?"
+ step3_1: "¿Terminaste de publicar tu primera nota?"
+ step3_2: "Tu primera nota ahora se mostrará en tu línea de tiempo."
+ step4_1: "También puedes añadir \"Reacciones\" a notas."
+ step4_2: "Para añadir una reacción selecciona el botón \"+\" en la nota y escoge el emoji que quieras para reaccionar."
_2fa:
alreadyRegistered: "Ya has completado la configuración."
registerTOTP: "Registrar aplicación autenticadora"
@@ -1685,14 +1814,14 @@ _visibility:
homeDescription: "Visible sólo en la linea de tiempo de inicio"
followers: "Seguidores"
followersDescription: "Visible sólo para tus seguidores"
- specified: "Mensaje directo"
+ specified: "Nota directa"
specifiedDescription: "Visible sólo para los usuarios elegidos"
disableFederation: "No federado"
disableFederationDescription: "No enviar a otras instancias"
_postForm:
replyPlaceholder: "Responder a esta nota"
quotePlaceholder: "Citar esta nota"
- channelPlaceholder: "Postear en el canal"
+ channelPlaceholder: "Publicar en el canal"
_placeholders:
a: "¿Qué haces?"
b: "¿Te pasó algo?"
@@ -1867,6 +1996,7 @@ _deck:
introduction: "¡Crea la interfaz perfecta para tí organizando las columnas libremente!"
introduction2: "Presiona en la + de la derecha de la pantalla para añadir nuevas columnas donde quieras."
widgetsIntroduction: "Por favor selecciona \"Editar Widgets\" en el menú columna y agrega un widget."
+ useSimpleUiForNonRootPages: "Mostrar páginas no pertenecientes a la raíz con la interfaz simple"
_columns:
main: "Principal"
widgets: "Widgets"
@@ -1876,7 +2006,8 @@ _deck:
list: "Listas"
channel: "Canal"
mentions: "Menciones"
- direct: "Mensaje directo"
+ direct: "Notas directas"
+ roleTimeline: "Linea de tiempo del rol"
_dialog:
charactersExceeded: "¡Has excedido el límite de caracteres! Actualmente {current} de {max}."
charactersBelow: "¡Estás por debajo del límite de caracteres! Actualmente {current} de {min}."
@@ -1884,8 +2015,8 @@ _disabledTimeline:
title: "Línea de tiempo deshabilitada"
description: "No puedes usar esta línea de tiempo con tus roles actuales."
_drivecleaner:
- orderBySizeDesc: "Más grandes"
- orderByCreatedAtAsc: "Más antiguos"
+ orderBySizeDesc: "Tamaño descendiente"
+ orderByCreatedAtAsc: "Fecha ascendente"
_webhookSettings:
createWebhook: "Crear Webhook"
name: "Nombre"
diff --git a/locales/fr-FR.yml b/locales/fr-FR.yml
index 173380805c..f76a26632d 100644
--- a/locales/fr-FR.yml
+++ b/locales/fr-FR.yml
@@ -52,6 +52,11 @@ addToList: "Ajouter à une liste"
sendMessage: "Envoyer un message"
copyRSS: "Copier le RSS"
copyUsername: "Copier le nom d’utilisateur·rice"
+copyUserId: "Copier l'identifiant de l'utilisateur"
+copyNoteId: "Copier l'identifiant de la note"
+copyFileId: "Copier l'identifiant du fichier"
+copyFolderId: "Copier l'identifiant du dossier"
+copyProfileUrl: "Copier l'URL du profil"
searchUser: "Chercher un·e utilisateur·rice"
reply: "Répondre"
loadMore: "Afficher plus …"
@@ -134,6 +139,7 @@ unsuspendConfirm: "Êtes-vous sûr·e de vouloir annuler la suspension de ce com
selectList: "Sélectionner une liste"
selectChannel: "Sélectionner un canal"
selectAntenna: "Sélectionner une antenne"
+editAntenna: "Modifier l'antenne"
selectWidget: "Sélectionner un widget"
editWidgets: "Modifier les widgets"
editWidgetsExit: "Valider les modifications"
@@ -146,6 +152,8 @@ addEmoji: "Ajouter un émoji"
settingGuide: "Configuration proposée"
cacheRemoteFiles: "Mise en cache des fichiers distants"
cacheRemoteFilesDescription: "Lorsque cette option est désactivée, les fichiers distants sont chargés directement depuis l’instance distante. La désactiver diminuera certes l’utilisation de l’espace de stockage local mais augmentera le trafic réseau puisque les miniatures ne seront plus générées."
+cacheRemoteSensitiveFiles: "Mettre en cache les fichiers distants sensibles"
+cacheRemoteSensitiveFilesDescription: "Si vous désactivez ce paramètre, les fichiers sensibles distants ne seront pas mis en cache et un lien direct sera utilisé à la place"
flagAsBot: "Ce compte est un robot"
flagAsBotDescription: "Si ce compte est géré de manière automatisée, choisissez cette option. Si elle est activée, elle agira comme un marqueur pour les autres développeurs afin d'éviter des chaînes d'interaction sans fin avec d'autres robots et d'ajuster les systèmes internes de Misskey pour traiter ce compte comme un robot."
flagAsCat: "Ce compte est un chat"
@@ -154,6 +162,7 @@ flagShowTimelineReplies: "Afficher les réponses dans le fil"
flagShowTimelineRepliesDescription: "Affiche les réponses des utilisateurs aux notes des autres utilisateurs dans la timeline si cette option est activée."
autoAcceptFollowed: "Accepter automatiquement les demandes d’abonnement venant d’utilisateur·rice·s que vous suivez"
addAccount: "Ajouter un compte"
+reloadAccountsList: "Rafraichir la liste des comptes"
loginFailed: "Échec de la connexion"
showOnRemote: "Voir sur l’instance distante"
general: "Général"
@@ -260,6 +269,8 @@ noMoreHistory: "Il n’y a plus d’historique"
startMessaging: "Commencer à discuter"
nUsersRead: "Lu par {n} personnes"
agreeTo: "J’accepte {0}"
+agree: "Accepter"
+termsOfService: "Conditions d'utilisation"
start: "Commencer"
home: "Principal"
remoteUserCaution: "Les informations de ce compte risqueraient d’être incomplètes du fait que l’utilisateur·rice provient d’une instance distante."
@@ -302,7 +313,7 @@ copyUrl: "Copier l’URL"
rename: "Renommer"
avatar: "Avatar"
banner: "Bannière"
-nsfw: "Contenu sensible"
+displayOfSensitiveMedia: "Afficher les médias sensibles"
whenServerDisconnected: "Lorsque la connexion au serveur est perdue"
disconnectedFromServer: "Déconnecté·e du serveur"
reload: "Rafraîchir"
@@ -392,11 +403,15 @@ about: "Informations"
aboutMisskey: "À propos de Misskey"
administrator: "Administrateur"
token: "Jeton"
+2fa: "Authentification à deux facteurs"
+totp: "Application d'authentification"
+totpDescription: "Entrez un mot de passe à usage unique à l'aide d'une application d'authentification"
moderator: "Modérateur·rice·s"
moderation: "Modérations"
nUsersMentioned: "{n} utilisateur·rice·s mentionné·e·s"
securityKey: "Clé de sécurité"
lastUsed: "Dernier utilisé"
+lastUsedAt: "Dernière utilisation : {t}"
unregister: "Se désinscrire"
passwordLessLogin: "Se connecter sans mot de passe"
resetPassword: "Réinitialiser le mot de passe"
@@ -534,9 +549,14 @@ userSuspended: "Cet·te utilisateur·rice a été suspendu·e."
userSilenced: "Cette utilisateur·trice a été mis·e en sourdine."
yourAccountSuspendedTitle: "Ce compte est suspendu"
yourAccountSuspendedDescription: "Ce compte est suspendu car vous avez enfreint les conditions d'utilisation de l'instance, ou pour un motif similaire. Si vous souhaitez connaître en détail les raisons de cette suspension, renseignez-vous auprès de l'administrateur·rice de votre instance. Merci de ne pas créer de nouveau compte."
+tokenRevoked: "Ce jeton est invalide."
+tokenRevokedDescription: "Votre jeton de connexion a expiré. Veuillez vous reconnecter."
+accountDeleted: "Compte supprimé"
+accountDeletedDescription: "Ce compte a été supprimé."
menu: "Menu"
divider: "Séparateur"
addItem: "Ajouter un élément"
+rearrange: "Trier par"
relays: "Relais"
addRelay: "Ajouter un relais"
inboxUrl: "Inbox URL"
@@ -678,6 +698,8 @@ contact: "Contact"
useSystemFont: "Utiliser la police par défaut du système"
clips: "Clips"
experimentalFeatures: "Fonctionnalités expérimentales"
+experimental: "Expérimental"
+thisIsExperimentalFeature: "Ceci est une fonctionnalité expérimentale. Il y a une possibilité que les spécifications changent ou qu'elle ne fonctionne pas correctement."
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 pas sur la page \"Découvrir\"."
@@ -762,6 +784,7 @@ noMaintainerInformationWarning: "Informations administrateur non configurées."
noBotProtectionWarning: "La protection contre les bots n'est pas configurée."
configure: "Configurer"
postToGallery: "Publier dans la galerie"
+postToHashtag: "Publier avec ce hashtag"
gallery: "Galerie"
recentPosts: "Les plus récentes"
popularPosts: "Les plus consultées"
@@ -800,6 +823,7 @@ lastCommunication: "Dernière communication"
resolved: "Résolu"
unresolved: "En attente"
breakFollow: "Ne plus suivre"
+breakFollowConfirm: "Êtes-vous sûr de vouloir vous désabonner ?"
itsOn: "Activé"
itsOff: "Désactivé"
emailRequiredForSignup: "Une adresse e-mail est nécessaire pour créer un compte"
@@ -1085,10 +1109,6 @@ _aboutMisskey:
donate: "Soutenir Misskey"
morePatrons: "Nous apprécions vraiment le soutien de nombreuses autres personnes non mentionnées ici. Merci à toutes et à tous ! 🥰"
patrons: "Contributeurs"
-_nsfw:
- respect: "Cacher les médias marqués comme contenu sensible"
- ignore: "Afficher les médias sensibles"
- force: "Cacher tous les médias"
_instanceTicker:
none: "Cacher "
remote: "Montrer pour les utilisateur·ice·s distant·e·s"
diff --git a/locales/generateDTS.js b/locales/generateDTS.js
index 5949aee7cd..7369dfbb47 100644
--- a/locales/generateDTS.js
+++ b/locales/generateDTS.js
@@ -1,6 +1,6 @@
-const fs = require('fs');
-const yaml = require('js-yaml');
-const ts = require('typescript');
+import * as fs from 'node:fs';
+import * as yaml from 'js-yaml';
+import * as ts from 'typescript';
function createMembers(record) {
return Object.entries(record)
@@ -14,7 +14,7 @@ function createMembers(record) {
));
}
-module.exports = function generateDTS() {
+export default function generateDTS() {
const locale = yaml.load(fs.readFileSync(`${__dirname}/ja-JP.yml`, 'utf-8'));
const members = createMembers(locale);
const elements = [
@@ -51,11 +51,7 @@ module.exports = function generateDTS() {
ts.NodeFlags.Const | ts.NodeFlags.Ambient | ts.NodeFlags.ContextFlags,
),
),
- ts.factory.createExportAssignment(
- undefined,
- true,
- ts.factory.createIdentifier('locales'),
- ),
+ ts.factory.createExportDefault(ts.factory.createIdentifier('locales')),
];
const printed = ts.createPrinter({
newLine: ts.NewLineKind.LineFeed,
diff --git a/locales/id-ID.yml b/locales/id-ID.yml
index 70217caa27..34c995b05e 100644
--- a/locales/id-ID.yml
+++ b/locales/id-ID.yml
@@ -5,7 +5,7 @@ introMisskey: "Selamat datang! Misskey adalah perangkat mikroblog tercatu bersif
poweredByMisskeyDescription: "{name} adalah sebuah layanan (instance) yang menggunakan platform sumber terbuka Misskey."
monthAndDay: "{day} {month}"
search: "Penelusuran"
-notifications: "Pemberitahuan"
+notifications: "Notifikasi"
username: "Nama Pengguna"
password: "Kata sandi"
forgotPassword: "Lupa Kata Sandi"
@@ -17,7 +17,7 @@ noThankYou: "Tidak sekarang."
enterUsername: "Masukkan nama pengguna"
renotedBy: "direnote oleh {user}"
noNotes: "Tidak ada catatan"
-noNotifications: "Tidak ada pemberitahuan"
+noNotifications: "Tidak ada notifikasi"
instance: "Instansi"
settings: "Pengaturan"
notificationSettings: "Atur Notifikasi"
@@ -25,7 +25,7 @@ basicSettings: "Pengaturan umum"
otherSettings: "Pengaturan lainnya"
openInWindow: "Buka di jendela"
profile: "Profil"
-timeline: "Linimasa"
+timeline: "Lini masa"
noAccountDescription: "Pengguna ini belum menulis bio"
login: "Masuk"
loggingIn: "Sedang masuk"
@@ -52,6 +52,8 @@ addToList: "Tambahkan ke daftar"
sendMessage: "Kirim pesan"
copyRSS: "Salin RSS"
copyUsername: "Salin nama pengguna"
+copyUserId: "Salin ID pengguna"
+copyNoteId: "Salin ID catatan"
searchUser: "Cari pengguna"
reply: "Balas"
loadMore: "Selebihnya"
@@ -90,7 +92,7 @@ serverIsDead: "Tidak ada respon dari peladen. Mohon tunggu dan coba beberapa saa
youShouldUpgradeClient: "Untuk melihat halaman ini, mohon muat ulang untuk memutakhirkan klienmu."
enterListName: "Masukkan nama daftar"
privacy: "Privasi"
-makeFollowManuallyApprove: "Permintaan mengikuti membutuhkan persetujuan"
+makeFollowManuallyApprove: "Permintaan mengikuti butuh persetujuan"
defaultNoteVisibility: "Privasi bawaan catatan"
follow: "Ikuti"
followRequest: "Permintaan mengikuti"
@@ -115,7 +117,7 @@ add: "Tambahkan"
reaction: "Reaksi"
reactions: "Reaksi"
reactionSetting: "Reaksi untuk dimunculkan di bilah reaksi"
-reactionSettingDescription2: "Geser untuk memindah urutkan, klik untuk menghapus, tekan \"+\" untuk menambahkan"
+reactionSettingDescription2: "Geser untuk memindah urutan emoji, klik untuk menghapus, tekan \"+\" untuk menambahkan"
rememberNoteVisibility: "Ingat pengaturan visibilitas catatan"
attachCancel: "Hapus lampiran"
markAsSensitive: "Tandai sebagai konten sensitif"
@@ -134,8 +136,10 @@ unblockConfirm: "Apakah kamu yakin ingin membuka blokir akun ini?"
suspendConfirm: "Apakah kamu yakin ingin membekukan akun ini?"
unsuspendConfirm: "Apakah kamu yakin ingin membuka pembekuan akun ini?"
selectList: "Pilih daftar"
+editList: "Sunting daftar"
selectChannel: "Pilih kanal"
selectAntenna: "Pilih Antena"
+editAntenna: "Sunting antena"
selectWidget: "Pilih gawit"
editWidgets: "Sunting gawit"
editWidgetsExit: "Selesai"
@@ -146,16 +150,17 @@ emojiName: "Nama emoji"
emojiUrl: "URL Emoji"
addEmoji: "Tambahkan emoji"
settingGuide: "Pengaturan rekomendasi"
-cacheRemoteFiles: "Tembolokkan berkas remote"
-cacheRemoteFilesDescription: "Ketika pengaturan ini dinonaktifkan, berkas luar akan dimuat langsung dari instansi luar. Menonaktifkan ini akan mengurangi penggunaan penyimpanan, namun dapat menyebabkan meningkatkan lalu lintas bandwidth, karena thumbnail tidak dihasilkan."
+cacheRemoteFiles: "Tembolokkan berkas dari instansi luar"
+cacheRemoteFilesDescription: "Ketika pengaturan ini dinonaktifkan, berkas dari instansi luar akan dimuat langsung. Menonaktifkan ini akan mengurangi penggunaan penyimpanan peladen, namun dapat menyebabkan peningkatan lalu lintas bandwidth, karena keluku tidak dihasilkan."
flagAsBot: "Atur akun ini sebagai Bot"
flagAsBotDescription: "Jika akun ini dikendalikan oleh program, tetapkanlah opsi ini. Jika diaktifkan, ini akan berfungsi sebagai tanda bagi pengembang lain untuk mencegah interaksi berantai dengan bot lain dan menyesuaikan sistem internal Misskey untuk memperlakukan akun ini sebagai bot."
flagAsCat: "Atur akun ini sebagai kucing"
flagAsCatDescription: "Nyalakan tanda ini untuk menandai akun ini sebagai kucing."
-flagShowTimelineReplies: "Tampilkan balasan di linimasa"
-flagShowTimelineRepliesDescription: "Menampilkan balasan pengguna dari note pengguna lain di linimasa apabila dinyalakan."
+flagShowTimelineReplies: "Tampilkan balasan di lini masa"
+flagShowTimelineRepliesDescription: "Menampilkan balasan pengguna dari catatan pengguna lain di lini masa apabila dinyalakan."
autoAcceptFollowed: "Setujui otomatis permintaan mengikuti dari pengguna yang kamu ikuti"
addAccount: "Tambahkan akun"
+reloadAccountsList: "Muat ulang daftar akun"
loginFailed: "Gagal untuk masuk"
showOnRemote: "Lihat profil asli"
general: "Umum"
@@ -166,7 +171,7 @@ searchWith: "Cari: {q}"
youHaveNoLists: "Kamu tidak memiliki daftar apapun"
followConfirm: "Apakah kamu yakin ingin mengikuti {name}?"
proxyAccount: "Akun proksi"
-proxyAccountDescription: "Akun proksi merupakan sebuah akun yang bertindak sebagai pengikut luar untuk pengguna dalam kondisi tertentu. Sebagai contoh, ketika pengguna menambahkan seorang pengguna luar ke dalam daftar, aktivitas dari pengguna luar tidak akan disampaikan ke instansi apabila tidak ada pengguna lokal yang mengikuti pengguna tersebut, dengan begitu akun proksilah yang akan mengikutinya."
+proxyAccountDescription: "Akun proksi merupakan sebuah akun yang bertindak sebagai pengikut instansi luar untuk pengguna dalam kondisi tertentu. Sebagai contoh, ketika pengguna menambahkan seorang pengguna instansi luar ke dalam daftar, aktivitas dari pengguna instansi luar tidak akan disampaikan ke instansi apabila tidak ada pengguna lokal yang mengikuti pengguna tersebut, dengan begitu akun proksilah yang akan mengikutinya."
host: "Host"
selectUser: "Pilih pengguna"
recipient: "Penerima"
@@ -198,7 +203,7 @@ clearQueue: "Bersihkan antrian"
clearQueueConfirmTitle: "Apakah kamu yakin ingin membersihkan antrian?"
clearQueueConfirmText: "Seluruh sisa catatan yang tidak tersampaikan di dalam antrian tidak akan difederasi. Biasanya operasi ini TIDAK dibutuhkan."
clearCachedFiles: "Hapus tembolok"
-clearCachedFilesConfirm: "Apakah kamu yakin ingin menghapus seluruh tembolok berkas remote?"
+clearCachedFilesConfirm: "Apakah kamu yakin ingin menghapus seluruh tembolok berkas instansi luar?"
blockedInstances: "Instansi terblokir"
blockedInstancesDescription: "Daftar nama host dari instansi yang diperlukan untuk diblokir. Instansi yang didaftarkan tidak akan dapat berkomunikasi dengan instansi ini."
muteAndBlock: "Bisukan / Blokir"
@@ -223,9 +228,9 @@ all: "Semua"
subscribing: "Berlangganan"
publishing: "Sedang menyiarkan langsung"
notResponding: "Tidak ada respon"
-instanceFollowing: "Mengikuti instance"
-instanceFollowers: "Pengikut instance"
-instanceUsers: "Pengguna pada instance ini"
+instanceFollowing: "Mengikuti instansi"
+instanceFollowers: "Pengikut instansi"
+instanceUsers: "Pengguna pada instansi ini"
changePassword: "Ubah kata sandi"
security: "Keamanan"
retypedNotMatch: "Input tidak sama"
@@ -233,11 +238,11 @@ currentPassword: "Kata sandi saat ini"
newPassword: "Kata sandi baru"
newPasswordRetype: "Ulangi kata sandi baru"
attachFile: "Lampirkan berkas"
-more: "Lagi !"
+more: "Lainnya"
featured: "Sorotan"
usernameOrUserId: "Nama pengguna atau User ID"
noSuchUser: "Pengguna tidak ditemukan"
-lookup: "Mencari"
+lookup: "Cari"
announcements: "Pengumuman"
imageUrl: "URL Gambar"
remove: "Hapus"
@@ -268,7 +273,7 @@ basicNotesBeforeCreateAccount: "Catatan penting"
termsOfService: "Syarat dan ketentuan"
start: "Mulai"
home: "Beranda"
-remoteUserCaution: "Informasi ini mungkin tidak mutakhir, karena pengguna ini berasal dari instansi luar."
+remoteUserCaution: "Informasi ini mungkin tidak mutakhir, karena pengguna ini berasal dari peladen instansi luar."
activity: "Aktivitas"
images: "Gambar"
image: "Gambar"
@@ -308,19 +313,18 @@ copyUrl: "Salin tautan"
rename: "Ubah nama"
avatar: "Avatar"
banner: "Banner"
-nsfw: "Konten sensitif"
whenServerDisconnected: "Ketika kehilangan koneksi dengan peladen"
disconnectedFromServer: "Terputus koneksi dari peladen"
reload: "Muat ulang"
doNothing: "Abaikan"
-reloadConfirm: "Apakah kamu ingin memuat ulang linimasa?"
+reloadConfirm: "Apakah kamu ingin memuat ulang lini masa?"
watch: "Tonton"
unwatch: "Batal tonton"
accept: "Terima"
reject: "Tolak"
normal: "Normal"
-instanceName: "Nama instance"
-instanceDescription: "Tentang instance"
+instanceName: "Nama instansi"
+instanceDescription: "Tentang instansi"
maintainerName: "Pengelola"
maintainerEmail: "Surel pengelola"
tosUrl: "URL Syarat dan Ketentuan"
@@ -334,9 +338,9 @@ pages: "Halaman"
integration: "Integrasi"
connectService: "Sambungkan"
disconnectService: "Putuskan"
-enableLocalTimeline: "Nyalakan linimasa lokal"
-enableGlobalTimeline: "Nyalakan linimasa global"
-disablingTimelinesInfo: "Admin dan Moderator akan selalu memiliki akses ke semua linimasa meskipun linimasa tersebut tidak diaktifkan."
+enableLocalTimeline: "Nyalakan lini masa lokal"
+enableGlobalTimeline: "Nyalakan lini masa global"
+disablingTimelinesInfo: "Admin dan Moderator akan selalu memiliki akses ke semua lini masa meskipun lini masa tersebut tidak diaktifkan."
registration: "Pendaftaran"
enableRegistration: "Nyalakan pendaftaran pengguna baru"
invite: "Undang"
@@ -379,7 +383,7 @@ enableServiceworker: "Aktifkan ServiceWorker"
antennaUsersDescription: "Tuliskan satu nama pengguna per baris"
caseSensitive: "Peka huruf besar dan huruf kecil"
withReplies: "Termasuk balasan"
-connectedTo: "Akun yang mengikuti telah terhubung"
+connectedTo: "Akun berikut terhubung"
notesAndReplies: "Catatan dan balasan"
withFiles: "Media"
silence: "Bungkam"
@@ -398,6 +402,7 @@ about: "Informasi"
aboutMisskey: "Tentang Misskey"
administrator: "Admin"
token: "Token"
+2fa: "Autentikasi 2-faktor"
totp: "Aplikasi autentikator"
totpDescription: "Gunakan aplikasi autentikator untuk mendapatkan kata sandi sekali pakai"
moderator: "Moderator"
@@ -409,6 +414,7 @@ lastUsed: "Terakhir digunakan"
lastUsedAt: "Penggunaan terakhir: {t}"
unregister: "Batalkan pendaftaran"
passwordLessLogin: "Setel login tanpa kata sandi"
+passwordLessLoginDescription: "Bolehkan masuk tanpa kata sandi dengan menggunakan hanya security-key atau passkey"
resetPassword: "Atur ulang kata sandi"
newPasswordIs: "Kata sandi baru adalah \"{password}\""
reduceUiAnimation: "Kurangi animasi antarmuka"
@@ -417,7 +423,7 @@ notFound: "Tidak dapat ditemukan"
notFoundDescription: "Tidak ada halaman sesuai dengan URL yang ditentukan."
uploadFolder: "Lokasi unggah folder bawaan"
cacheClear: "Bersihkan tembolok"
-markAsReadAllNotifications: "Tandai semua pemberitahuan telah dibaca"
+markAsReadAllNotifications: "Tandai semua notifikasi telah dibaca"
markAsReadAllUnreadNotes: "Tandai semua catatan telah dibaca"
markAsReadAllTalkMessages: "Tandai semua pesan telah dibaca"
help: "Bantuan"
@@ -460,6 +466,7 @@ aboutX: "Tentang {x}"
emojiStyle: "Gaya emoji"
native: "Native"
disableDrawer: "Jangan gunakan menu bergaya laci"
+showNoteActionsOnlyHover: "Hanya tampilkan aksi catatan saat ditunjuk"
noHistory: "Tidak ada riwayat"
signinHistory: "Riwayat masuk"
enableAdvancedMfm: "Nyalakan MFM tingkat lanjut"
@@ -472,6 +479,8 @@ createAccount: "Buat akun"
existingAccount: "Akun yang ada"
regenerate: "Buat ulang"
fontSize: "Ukuran huruf"
+mediaListWithOneImageAppearance: "Tinggi daftar media dengan satu gambar saja"
+limitTo: "Batasi pada {x}"
noFollowRequests: "Kamu tidak memiliki permintaan mengikuti yang menunggu"
openImageInNewTab: "Buka gambar di tab baru"
dashboard: "Dasbor"
@@ -487,7 +496,7 @@ promotion: "Promosi"
promote: "Promosikan"
numberOfDays: "Jumlah hari"
hideThisNote: "Sembunyikan catatan ini"
-showFeaturedNotesInTimeline: "Tampilkan catatan yang diunggulkan di linimasa"
+showFeaturedNotesInTimeline: "Tampilkan catatan yang diunggulkan di lini masa"
objectStorage: "Object Storage"
useObjectStorage: "Gunakan object storage"
objectStorageBaseUrl: "Base URL"
@@ -505,9 +514,11 @@ objectStorageUseSSLDesc: "Matikan ini jika kamu tidak akan menggunakan HTTPS unt
objectStorageUseProxy: "Hubungkan melalui Proxy"
objectStorageUseProxyDesc: "Matikan ini jika kamu tidak akan menggunakan Proxy untuk koneksi ObjectStorage"
objectStorageSetPublicRead: "Setel \"public-read\" disaat mengunggah"
+s3ForcePathStyleDesc: "Jika s3ForcePathStyle dinyalakan, nama bucket harus dimasukkan dalam path URL dan bukan URL nama host tersebut. Kamu perlu menyalakan pengaturan ini jika menggunakan layanan seperti instansi Minio yang self-hosted."
serverLogs: "Log Peladen"
deleteAll: "Hapus semua"
-showFixedPostForm: "Tampilkan form posting di atas linimasa."
+showFixedPostForm: "Tampilkan form posting di atas lini masa."
+showFixedPostFormInChannel: "Tampilkan form posting di atas lini masa (Kanal)"
newNoteRecived: "Kamu mendapat catatan baru"
sounds: "Bunyi"
sound: "Bunyi"
@@ -536,23 +547,28 @@ scratchpadDescription: "Scratchpad menyediakan lingkungan eksperimen untuk AiScr
output: "Keluaran"
script: "Script"
disablePagesScript: "Nonaktifkan script pada halaman"
-updateRemoteUser: "Perbaharui informasi pengguna luar"
+updateRemoteUser: "Perbaharui informasi pengguna instansi luar"
deleteAllFiles: "Hapus semua berkas"
deleteAllFilesConfirm: "Apakah kamu yakin ingin menghapus semua berkas?"
-removeAllFollowing: "Tahan semua mengikuti"
+removeAllFollowing: "Batalkan mengikuti semua pengguna"
removeAllFollowingDescription: "Batal mengikuti semua akun dari {host}. Mohon jalankan ini ketika instansi sudah tidak ada lagi."
userSuspended: "Pengguna ini telah dibekukan."
userSilenced: "Pengguna ini telah dibungkam."
yourAccountSuspendedTitle: "Akun ini dibekukan"
yourAccountSuspendedDescription: "Akun ini dibekukan karena melanggar ketentuan penggunaan layanan peladen atau semacamnya. Hubungi admin apabila ingin tahu alasan lebih lanjut. Mohon untuk tidak membuat akun baru."
+tokenRevoked: "Token tidak valid"
+tokenRevokedDescription: "Token ini telah kedaluwarsa. Mohon masuk lagi."
+accountDeleted: "Akun telah dihapus"
+accountDeletedDescription: "Akun ini telah dihapus."
menu: "Menu"
divider: "Pembagi"
addItem: "Tambahkan item"
+rearrange: "Tata ulang"
relays: "Relay"
addRelay: "Tambahkan relay"
inboxUrl: "URL Kotak masuk"
addedRelays: "Relay yang ditambahkan"
-serviceworkerInfo: "Harus diaktifkan untuk pemberitahuan push."
+serviceworkerInfo: "Harus diaktifkan untuk notifikasi dorong."
deletedNote: "Catatan yang dihapus"
invisibleNote: "Catatan yang disembunyikan"
enableInfiniteScroll: "Aktifkan gulir tak terbatas"
@@ -580,13 +596,13 @@ height: "Tinggi"
large: "Besar"
medium: "Sedang"
small: "Kecil"
-generateAccessToken: "Buat access token"
+generateAccessToken: "Buat token akses"
permission: "Izin"
enableAll: "Aktifkan semua"
disableAll: "Nonaktifkan semua"
tokenRequested: "Berikan ijin akses ke akun"
pluginTokenRequestedDescription: "Plugin ini dapat menggunakan setelan ijin disini."
-notificationType: "Jenis pemberitahuan"
+notificationType: "Jenis notifikasi"
edit: "Sunting"
emailServer: "Peladen surel"
enableEmail: "Nyalakan distribusi surel"
@@ -617,10 +633,10 @@ delayed: "Terlambat"
database: "Basis data"
channel: "Kanal"
create: "Buat"
-notificationSetting: "Pengaturan Pemberitahuan"
-notificationSettingDesc: "Pilih tipe pemberitahuan untuk ditampilkan"
+notificationSetting: "Pengaturan Notifikasi"
+notificationSettingDesc: "Pilih tipe notifikasi untuk ditampilkan"
useGlobalSetting: "Gunakan setelan global"
-useGlobalSettingDesc: "Jika dinyalakan, setelan pemberitahuan akun kamu akan digunakan. Jika dimatikan, konfigurasi secara individu dapat dibuat."
+useGlobalSettingDesc: "Jika dinyalakan, setelan notifikasi akun kamu akan digunakan. Jika dimatikan, pengaturan secara individu dapat dibuat."
other: "Lainnya"
regenerateLoginToken: "Perbarui token login"
regenerateLoginTokenDescription: "Perbarui token yang digunakan secara internal saat login. Normalnya aksi ini tidak diperlukan. Jika diperbarui, semua perangkat akan dilogout."
@@ -657,8 +673,8 @@ createNewClip: "Buat klip baru"
unclip: "Batalkan klip"
confirmToUnclipAlreadyClippedNote: "Catatan ini sudah disertakan di klip \"{name}\". Yakin ingin membatalkan catatan dari klip ini?"
public: "Publik"
-i18nInfo: "Misskey diterjemahkan ke dalam banyak bahasa oleh sukarelawan. Kamu dapat ikut membantu di {link}."
-manageAccessTokens: "Kelola access token"
+i18nInfo: "Misskey diterjemahkan ke dalam banyak bahasa oleh sukarelawan. Kamu juga dapat ikut membantu menerjemahkannya di {link}."
+manageAccessTokens: "Kelola token akses"
accountInfo: "Informasi akun"
notesCount: "Jumlah catatan"
repliesCount: "Jumlah balasan terkirim"
@@ -675,7 +691,7 @@ yes: "Iya"
no: "Tidak"
driveFilesCount: "Jumlah berkas drive"
driveUsage: "Penggunaan ruang penyimpanan drive"
-noCrawle: "Tolak pengindeksan crawler"
+noCrawle: "Tolak pengindeksan perayap web"
noCrawleDescription: "Meminta mesin pencari untuk tidak mengindeks halaman profil kamu, catatan, Halaman, dll."
lockedAccountInfo: "Kecuali kamu menyetel visibilitas catatan milikmu ke \"Hanya pengikut\", catatan milikmu akan dapat dilihat oleh siapa saja, bahkan jika kamu memerlukan pengikut untuk disetujui secara manual."
alwaysMarkSensitive: "Tandai media dalam catatan sebagai media sensitif"
@@ -691,10 +707,12 @@ contact: "Kontak"
useSystemFont: "Gunakan font bawaan sistem operasi"
clips: "Klip"
experimentalFeatures: "Fitur eksperimental"
+experimental: "Eksperimental"
+thisIsExperimentalFeature: "Fitur ini eksperimental. Fungsionalitas dari fitur ini dapat berubah sewaktu-waktu dan mungkin tidak bekerja sesuai semestinya."
developer: "Pengembang"
makeExplorable: "Buat akun tampil di \"Jelajahi\""
-makeExplorableDescription: "Jika kamu mematikan ini, akun kamu tidak akan muncul di bagian \"Jelajahi:"
-showGapBetweenNotesInTimeline: "Tampilkan jarak diantara catatan pada linimasa"
+makeExplorableDescription: "Jika kamu mematikan ini, akun kamu tidak akan muncul di menu \"Jelajahi\""
+showGapBetweenNotesInTimeline: "Tampilkan jarak diantara catatan pada lini masa"
duplicate: "Duplikat"
left: "Kiri"
center: "Tengah"
@@ -733,14 +751,14 @@ capacity: "Kapasitas"
inUse: "Digunakan"
editCode: "Sunting kode"
apply: "Terapkan"
-receiveAnnouncementFromInstance: "Terima pemberitahuan surel dari instansi ini"
-emailNotification: "Pemberitahuan surel"
+receiveAnnouncementFromInstance: "Terima pengumuman dari instansi ini"
+emailNotification: "Notifikasi surel"
publish: "Terbitkan"
inChannelSearch: "Cari di kanal"
useReactionPickerForContextMenu: "Buka pemilih reaksi dengan klik-kanan"
typingUsers: "{users} sedang mengetik..."
jumpToSpecifiedDate: "Loncat ke tanggal spesifik"
-showingPastTimeline: "Sedang menampilkan linimasa lama"
+showingPastTimeline: "Sedang menampilkan lini masa lama"
clear: "Bersihkan"
markAllAsRead: "Tandai semua telah dibaca"
goBack: "Kembali"
@@ -755,7 +773,7 @@ userInfo: "Informasi pengguna"
unknown: "Tidak diketahui"
onlineStatus: "Status daring"
hideOnlineStatus: "Sembunyikan status daring"
-hideOnlineStatusDescription: "Menyembunyikan status daring kamu umengurangi kenyamanan untuk beberapa fungsi seperti contohnya pencarian."
+hideOnlineStatusDescription: "Menyembunyikan status daring kamu akan mengurangi kenyamanan untuk beberapa fungsi, seperti contohnya pencarian."
online: "Daring"
active: "Aktif"
offline: "Luring"
@@ -775,12 +793,14 @@ noMaintainerInformationWarning: "Informasi pengelola belum disetel."
noBotProtectionWarning: "Proteksi bot belum disetel."
configure: "Setel"
postToGallery: "Posting ke galeri"
+postToHashtag: "Catat ke tagar ini"
gallery: "Galeri"
recentPosts: "Postingan terbaru"
popularPosts: "Postingan populer"
shareWithNote: "Bagikan dengan catatan"
ads: "Iklan"
expiration: "Batas akhir"
+startingperiod: "Mulai"
memo: "Memo"
priority: "Prioritas"
high: "Tinggi"
@@ -807,14 +827,18 @@ translatedFrom: "Terjemahkan dari {x}"
accountDeletionInProgress: "Penghapusan akun sedang dalam proses"
usernameInfo: "Nama yang mengidentifikasikan akun kamu dari yang lain pada peladen ini. Kamu dapat menggunakan alfabet (a~z, A~Z), digit (0~9) atau garis bawah (_). Username tidak dapat diubah setelahnya."
aiChanMode: "Mode Ai"
-keepCw: "Biarkan Peringatan Konten"
+devMode: "Mode pengembang"
+keepCw: "Biarkan peringatan konten"
pubSub: "Akun Pub/Sub"
lastCommunication: "Komunikasi terakhir"
resolved: "Selesai"
unresolved: "Belum selesai"
-breakFollow: "Batalkan mengikuti"
+breakFollow: "Hapus pengikut"
+breakFollowConfirm: "Yakin untuk menghapus pengikut ini?"
itsOn: "Aktif"
itsOff: "Nonaktif"
+on: "Nyala"
+off: "Mati"
emailRequiredForSignup: "Membutuhkan alamat surel untuk mendaftar"
unread: "Belum dibaca"
filter: "Saring"
@@ -891,25 +915,26 @@ slow: "Lambat"
fast: "Cepat"
sensitiveMediaDetection: "Deteksi media NSFW"
localOnly: "Hanya lokal"
-remoteOnly: "Hanya remot"
+remoteOnly: "Hanya luar instansi"
failedToUpload: "Gagal mengunggah"
cannotUploadBecauseInappropriate: "Berkas ini tidak dapat diunggah karena sebagian dari berkas terdeteksi berpotensi NSFW."
cannotUploadBecauseNoFreeSpace: "Gagal mengunggah karena kekurangan kapasitas Drive."
+cannotUploadBecauseExceedsFileSizeLimit: "Berkas ini tidak dapat diunggah karena melebihi batas ukuran berkas."
beta: "Beta"
enableAutoSensitive: "Penandaan NSFW otomatis"
-enableAutoSensitiveDescription: "Mendeteksi otomatis dan menandai media NSFW menggunakan Machine Learning jika memungkinkan. Meskipun opsi ini dimatikan, ada kemungkinan dinyalakan secara menyeluruh pada instansi peladen."
+enableAutoSensitiveDescription: "Mendeteksi otomatis dan menandai media NSFW menggunakan Pembelajaran Mesin jika memungkinkan. Meskipun opsi ini dimatikan, ada kemungkinan dinyalakan secara menyeluruh pada instansi peladen."
activeEmailValidationDescription: "Membolehkan validasi alamat surel ketat dengan mengecek apakah alamat surel tersebut temporer dan bisa berkomunikasi dengan surel tersebut. Ketidak tidak dicentang, hanya format surel yang divalidasi."
navbar: "Bilah navigasi"
shuffle: "Acak"
account: "Akun"
move: "Pindah"
-pushNotification: "Pemberitahuan push"
-subscribePushNotification: "Nyalakan pemberitahuan push"
-unsubscribePushNotification: "Matikan pemberitahuan push"
-pushNotificationAlreadySubscribed: "Pemberitahuan push telah dinyalakan"
-pushNotificationNotSupported: "Browser atau instansi kamu tidak mendukung pemberitahuan push"
-sendPushNotificationReadMessage: "Hapus pemberitahuan push ketika pemberitahuan relevan atau pesan telah dibaca"
-sendPushNotificationReadMessageCaption: "Pemberitahuan berisi teks「{emptyPushNotificationMessage}」akan ditampilkan dalam waktu pendek. Ini mungkin dapat menambah pemakaian baterai pada perangkat kamu."
+pushNotification: "Notifikasi dorong"
+subscribePushNotification: "Nyalakan notifikasi dorong"
+unsubscribePushNotification: "Matikan notifikasi dorong"
+pushNotificationAlreadySubscribed: "Notifikasi dorong telah dinyalakan"
+pushNotificationNotSupported: "Browser atau instansi kamu tidak mendukung notifikasi dorong"
+sendPushNotificationReadMessage: "Hapus notifikasi dorong ketika notifikasi relevan atau pesan telah dibaca"
+sendPushNotificationReadMessageCaption: "Notifikasi berisi teks「{emptyPushNotificationMessage}」akan ditampilkan dalam waktu pendek. Ini mungkin dapat menambah pemakaian baterai pada perangkat kamu."
windowMaximize: "Maksimalkan"
windowMinimize: "Minimalkan"
windowRestore: "Kembalikan"
@@ -928,6 +953,7 @@ didYouLikeMisskey: "Apakah kamu mulai menyukai Misskey?"
pleaseDonate: "{host} menggunakan perangkat lunak bebas yaitu Misskey. Kami sangat mengapresiasi sekali donasi dari kamu agar pengembangan Misskey tetap dapat berlanjut!"
roles: "Peran"
role: "Peran"
+noRole: "Peran tidak temukan"
normalUser: "Pengguna umum"
undefined: "Tak terdefinisi"
assign: "Tetapkan\n"
@@ -937,28 +963,141 @@ manageCustomEmojis: "Kelola Emoji Kustom"
youCannotCreateAnymore: "Kamu melewati batas pembuatan."
cannotPerformTemporary: "Sementara Tidak Tersedia"
cannotPerformTemporaryDescription: "Aksi ini tidak dapat dilakukan sementara karena melewati batas eksekusi. Mohon tunggu sejenak dan coba lagi."
+invalidParamError: "Parameter tidak valid"
+invalidParamErrorDescription: "Parameter permintaan tidak valid. Hal ini biasanya disebabkan oleh bug, namun juga dapat terjadi karena input melebihi batas ukuran atau semacamnya."
+permissionDeniedError: "Operasi ditolak"
+permissionDeniedErrorDescription: "Akun ini tidak memiliki izin untuk melakukan aksi ini."
preset: "Prasetel"
selectFromPresets: "Pilih dari prasetel"
achievements: "Pencapaian"
gotInvalidResponseError: "Respon peladen tidak valid"
gotInvalidResponseErrorDescription: "Peladen tidak dapat dijangkau atau sedang dalam perawatan. Mohon coba lagi nanti."
thisPostMayBeAnnoying: "Catatan ini mungkin dapat mengganggu orang lain."
-thisPostMayBeAnnoyingHome: "Catat ke linimasa beranda"
+thisPostMayBeAnnoyingHome: "Catat ke lini masa beranda"
thisPostMayBeAnnoyingCancel: "Batalkan"
thisPostMayBeAnnoyingIgnore: "Tetap catat"
collapseRenotes: "Tutup renote yang sudah kamu lihat"
internalServerError: "Kesalahan internal peladen"
internalServerErrorDescription: "Peladen sedang mengalami galat tak terduga"
copyErrorInfo: "Salin detil galat"
-joinThisServer: "Gabung server ini"
-exploreOtherServers: "Cari server lain"
+joinThisServer: "Gabung peladen ini"
+exploreOtherServers: "Cari peladen lain"
letsLookAtTimeline: "LIhat timeline"
disableFederationConfirm: "Matikan federasi?"
disableFederationConfirmWarn: "Mematikan federasi tidak membuat kiriman menjadi privat. Umumnya, mematikan federasi tidak diperlukan."
disableFederationOk: "Matikan federasi"
+invitationRequiredToRegister: "Instansi ini dalam mode undangan-saja. Kamu harus memasukkan kode undangan yang valid untuk mendaftar."
+emailNotSupported: "Instansi ini tidak mendukung mengirim surel"
+postToTheChannel: "Catat ke kanal"
+cannotBeChangedLater: "Hal ini nantinya tidak dapat diubah lagi."
+reactionAcceptance: "Penerimaan reaksi"
+likeOnly: "Hanya suka"
+likeOnlyForRemote: "Semua (Hanya suka dari instansi luar)"
+nonSensitiveOnly: "Hanya non-sensitif"
+nonSensitiveOnlyForLocalLikeOnlyForRemote: "Hanya non-sensitif (Hanya suka dari instansi luar)"
+rolesAssignedToMe: "Peran yang ditugaskan ke saya"
+resetPasswordConfirm: "Yakin untuk mereset kata sandimu?"
+sensitiveWords: "Kata sensitif"
+sensitiveWordsDescription: "Visibilitas dari semua catatan mengandung kata yang telah diatur akan dijadikan \"Beranda\" secara otomatis. Kamu dapat mendaftarkan kata tersebut lebih dari satu dengan menuliskannya di baris baru."
+sensitiveWordsDescription2: "Menggunakan spasi akan membuat ekspresi AND dan kata kunci disekitarnya dengan garis miring akan mengubahnya menjadi ekspresi reguler."
+notesSearchNotAvailable: "Pencarian catatan tidak tersedia."
+license: "Lisensi"
+unfavoriteConfirm: "Yakin ingin menghapusnya dari favorit?"
+myClips: "Klip saya"
+drivecleaner: "Pembersih Drive"
+retryAllQueuesNow: "Coba jalankan lagi semua antrian"
+retryAllQueuesConfirmTitle: "Yakin ingin mencoba lagi semuanya?"
+retryAllQueuesConfirmText: "Hal ini akan meningkatkan beban sementara ke peladen."
+enableChartsForRemoteUser: "Buat bagan data pengguna instansi luar"
+enableChartsForFederatedInstances: "Buat bagan data peladen instansi luar"
+showClipButtonInNoteFooter: "Tambahkan \"Klip\" ke menu aksi catatan"
+largeNoteReactions: "Besarkan reaksi yang ditampilkan"
+noteIdOrUrl: "ID catatan atau URL"
+video: "Video"
+videos: "Video"
+dataSaver: "Penghemat data"
+accountMigration: "Pemindahan akun"
+accountMoved: "Pengguna ini telah berpindah ke akun baru:"
+accountMovedShort: "Akun ini telah dipindahkan."
+operationForbidden: "Operasi dilarang"
+forceShowAds: "Selalu tampilkan iklan"
+addMemo: "Tambahkan memo"
+editMemo: "Sunting memo"
+reactionsList: "Reaksi"
+renotesList: "Renote"
+notificationDisplay: "Notifikasi"
+leftTop: "Kiri atas"
+rightTop: "Kanan atas"
+leftBottom: "Kiri bawah"
+rightBottom: "Kanan bawah"
+stackAxis: "Arah tumpukan"
+vertical: "Vertikal"
horizontal: "Horisontal"
+position: "Posisi"
+serverRules: "Aturan peladen"
+pleaseConfirmBelowBeforeSignup: "Mohon konfirmasi di bawah ini sebelum mendaftar."
+pleaseAgreeAllToContinue: "Kamu harus menyetujui semua kolom di atas untuk melanjutkan."
+continue: "Lanjutkan"
+preservedUsernames: "Nama pengguna tercadangkan"
+preservedUsernamesDescription: "Daftar nama pengguna yang dicadangkan dipisah dengan baris baru. Nama pengguna berikut akan tidak dapat dipakai pada pembuatan akun normal, namun dapat digunakan oleh admin untuk membuat akun baru. Akun yang sudah ada dengan menggunakan nama pengguna ini tidak akan terpengaruh."
+createNoteFromTheFile: "Buat catatan dari berkas ini"
+archive: "Arsipkan"
+channelArchiveConfirmTitle: "Yakin untuk mengarsipkan {name}?"
+channelArchiveConfirmDescription: "Kanal yang diarsipkan tidak akan muncul pada daftar kanal atau hasil pencarian. Postingan baru juga tidak dapat ditambahkan lagi."
+thisChannelArchived: "Kanal ini telah diarsipkan."
+displayOfNote: "Tampilan catatan"
+initialAccountSetting: "Atur profil"
youFollowing: "Mengikuti"
+preventAiLearning: "Tolak penggunaan Pembelajaran Mesin (AI Generatif)"
+preventAiLearningDescription: "Minta perayap web untuk tidak menggunakan materi teks atau gambar yang telah diposting ke dalam set data Pembelajaran Mesin (Prediktif / Generatif). Hal ini dicapai dengan menambahkan flag HTML-Response \"noai\" ke masing-masing konten. Pencegahan penuh mungkin tidak dapat dicapai dengan flag ini, karena juga dapat diabaikan begitu saja."
options: "Opsi peran"
+specifyUser: "Pengguna spesifik"
+failedToPreviewUrl: "Tidak dapat dipratinjau"
+update: "Perbarui"
+rolesThatCanBeUsedThisEmojiAsReaction: "Peran yang dapat menggunakan emoji ini sebagai reaksi"
+rolesThatCanBeUsedThisEmojiAsReactionEmptyDescription: "Jika peran tidak ditentukan, semua pengguna dapat menggunakan emoji ini sebagai reaksi."
+rolesThatCanBeUsedThisEmojiAsReactionPublicRoleWarn: "Peran ini harus publik."
+cancelReactionConfirm: "Yakin untuk menghapus reaksimu?"
+changeReactionConfirm: "Yakin untuk mengganti reaksimu?"
+later: "Nanti saja"
+goToMisskey: "Ke Misskey"
+additionalEmojiDictionary: "Kamus emoji tambahan"
+installed: "Terpasang"
+branding: "Merek"
+enableServerMachineStats: "Tampilkan informasi mesin peladen menjadi publik"
+enableIdenticonGeneration: "Nyalakan pembuatan Identicon per pengguna"
+_initialAccountSetting:
+ accountCreated: "Akun kamu telah sukses dibuat!"
+ letsStartAccountSetup: "Untuk pemula, ayo atur profilmu dulu."
+ letsFillYourProfile: "Pertama, ayo atur profilmu dulu."
+ profileSetting: "Pengaturan profil"
+ privacySetting: "Pengaturan privasi"
+ theseSettingsCanEditLater: "Kamu selalu bisa mengganti pengaturan ini lain kali."
+ youCanEditMoreSettingsInSettingsPageLater: "Ada banyak pengaturan yang dapat kamu atur dari halaman \"Pengaturan\". Pastikan untuk mengunjungi halaman tersebut nanti."
+ followUsers: "Coba ikuti beberapa pengguna yang menarik bagimu untuk membangun lini masa akunmu."
+ pushNotificationDescription: "Menyalakan notifikasi dorong akan membuatmu menerima notifikasi dari {name} secara langsung ke perangkatmu."
+ initialAccountSettingCompleted: "Pengaturan profil selesai!"
+ haveFun: "Selamat menikmati, {name}!"
+ ifYouNeedLearnMore: "Kalau kamu ingin mempelajari lebih lanjut bagaimana cara menggunakan {name} (Misskey), silahkan kunjungi {link}."
+ skipAreYouSure: "Yakin melewati atur profil?"
+ laterAreYouSure: "Yakin banget untuk atur profil nanti?"
+_serverRules:
+ description: "Daftar peraturan akan ditampilkan sebelum pendaftaran. Mengatur ringkasan dari Syarat dan Ketentuan sangat direkomendasikan."
+_accountMigration:
+ moveFrom: "Pindahkan akun lain ke akun ini"
+ moveFromSub: "Buat alias ke akun lain"
+ moveFromLabel: "Akun asli #{n}"
+ moveFromDescription: "Kamu harus membuat alias untuk akun asal kamu berpindah ke akun ini\nMasukkan alias akun asal kamu berpindah ke dalam format berikut: @namapengguna@nama.server.com\nUntuk menghapus alias, kosongkan kolom ini (tidak direkomendasikan)."
+ moveTo: "Pindahkan akun ini ke akun lain"
+ moveToLabel: "Akun tujuan pindah:"
+ moveCannotBeUndone: "Pemindahan akun tidak dapat diurungkan."
+ moveAccountDescription: "Hal ini akan memindahkan akun kamu ke akun lain.\n ・Pengikut dari akun ini akan secara otomatis dipindahkan ke akun baru\n ・Akun ini akan berhenti mengikuti dari semua pengguna yang sedang kamu ikuti\n ・Kamu akan tidak dapat membuat catatan baru dan lain-lain pada akun ini\n\nMeskipun pemindahan pengikut dilakukan secara otomatis, kamu harus mempersiapkan beberapa langkah secara manual untuk memindahkan daftar pengguna yang sedang kamu ikuti. Untuk melakukan tersebut, lakukan ekspor daftar ikuti yang nantinya dapat kamu impor pada menu pengaturan di akun baru kamu. Prosedur yang sama juga dapat diterapkan pada daftar seperti pengguna yang kamu bisukan atau blokir.\n\n(Penjelasan ini hanya berlaku pada Misskey versi 13.12.0 dan setelahnya. Perangkat lunak ActivityPub lainnya seperti Mastodon berkemungkinan befungsi berbeda.)"
+ moveAccountHowTo: "Untuk pindah, pertama buat alias untuk akun ini pada akun tujuan kamu berpindah.\nSetelah kamu membuat alias, masukkan akun tujuan kamu berpindah ke dalam format berikut:\n@namapengguna@nama.server.com"
+ startMigration: "Pindahkan"
+ migrationConfirm: "Yakin untuk memindahkan akun ini ke {account}? Sekali dimulai, proses ini tidak dapat dihentikan atau ditarik kembali, dan kamu tidak dapat menggunakan akun ini lagi dalam keadaan asli semula."
+ movedAndCannotBeUndone: "\nAkun ini telah dipindahkan.\nPemindahan tidak dapat diurungkan."
+ postMigrationNote: "24 jam setelah pemindahan akun selesai, akun ini akan berhenti mengikuti semua akun yang sedang diikuti. Angka mengikut dan pengikut akan menjadi nol. Untuk menghindari pengikut kamu tidak dapat melihat postingan hanya pengikut saja dalam postingan ini, mereka akan tetap mengikuti akun ini."
+ movedTo: "Akun baru tujuan pindah:"
_achievements:
earnedAt: "Terbuka pada"
_types:
@@ -1130,6 +1269,9 @@ _achievements:
_client30min:
title: "Istirahat pendek"
description: "Habiskan waktu 30 menit di Misskey"
+ _client60min:
+ title: "Tidak ada \"Miss\" dalam Misskey"
+ description: "Biarkan Misskey tetap terbuka setidaknya selama 60 menit"
_noteDeletedWithin1min:
title: "Eh, salah coy!"
description: "Hapus catatan kurang dari semenit kamu catat"
@@ -1145,8 +1287,8 @@ _achievements:
title: "Rujukan mandiri"
description: "Kutip catatanmu sendiri"
_htl20npm:
- title: "Linimasa mengalir"
- description: "Memiliki linimasa beranda dengan kecepatan melebihi 20 cpm (catatan per menit)"
+ title: "Lini masa mengalir"
+ description: "Memiliki lini masa beranda dengan kecepatan melebihi 20 cpm (catatan per menit)"
_viewInstanceChart:
title: "Analis"
description: "Lihat bagan instansimu"
@@ -1218,6 +1360,10 @@ _role:
iconUrl: "URL ikon"
asBadge: "Tampilkan sebagai lencana"
descriptionOfAsBadge: "Ikon peran ini akan ditampilkan bersebelahan dengan username pengguna yang memiliki peran ini jika dinyalakan."
+ isExplorable: "Buat peran dapat terjelajahi"
+ descriptionOfIsExplorable: "Lini masa peran ini dan daftar pengguna dengan peran ini akan dibuat publik apabila dinyalakan."
+ displayOrder: "Urutan"
+ descriptionOfDisplayOrder: "Semakin tinggi angka, semakin tinggi posisi antarmukanya."
canEditMembersByModerator: "Perbolehkan moderator untuk menyunting daftar anggota untuk peran ini"
descriptionOfCanEditMembersByModerator: "Ketika dinyalakan, moderator beserta administrator dapat menugaskan ataupun mencabut pengguna ke peran ini. Ketika dimatikan, hanya administrator saja yang dapat menugaskan pengguna ke peran ini."
priority: "Prioritas"
@@ -1226,12 +1372,13 @@ _role:
middle: "Sedang"
high: "Tinggi"
_options:
- gtlAvailable: "Dapat melihat linimasa global"
- ltlAvailable: "Dapat melihat linimasa lokal"
+ gtlAvailable: "Dapat melihat lini masa global"
+ ltlAvailable: "Dapat melihat lini masa lokal"
canPublicNote: "Dapat mengirim catatan publik"
canInvite: "Dapat membuat kode undangan instansi"
canManageCustomEmojis: "Dapat mengelola Emoji kustom"
driveCapacity: "Kapasitas Drive"
+ alwaysMarkNsfw: "Selalu tandai berkas sebagai NSFW"
pinMax: "Jumlah maksimal catatan yang disematkan"
antennaMax: "Jumlah maksimum antena"
wordMuteMax: "Jumlah maksimum karakter yang diperbolehkan dalam membisukan kata"
@@ -1243,6 +1390,7 @@ _role:
rateLimitFactor: "Batas kecepatan"
descriptionOfRateLimitFactor: "Batas kecepatan yang rendah tidak begitu membatasi, batas kecepatan tinggi lebih membatasi. "
canHideAds: "Dapat menyembunyikan iklan"
+ canSearchNotes: "Penggunaan pencarian catatan"
_condition:
isLocal: "Pengguna lokal"
isRemote: "Pengguna remote"
@@ -1252,11 +1400,13 @@ _role:
followersMoreThanOrEq: "Memiliki pengikut X atau lebih dari tersebut"
followingLessThanOrEq: "Mengikuti X pengguna atau kurang dari itu"
followingMoreThanOrEq: "Mengikuti X pengguna atau lebih dari itu"
+ notesLessThanOrEq: "Jumlah postingan kurang dari sama dengan"
+ notesMoreThanOrEq: "Jumlah postingan lebih dari sama dengan"
and: "Kondisi-AND"
or: "Kondisi-OR"
not: "Kondisi-NOT"
_sensitiveMediaDetection:
- description: "Mengurangi usaha moderasi server dengan mengenali media NSFW srcara otomatis menggunakan Machine Learning. Fungsi ini akan sedikit menaikkan beban peladen."
+ description: "Mengurangi usaha moderasi peladen dengan mengenali media NSFW secara otomatis menggunakan Pembelajaran Mesin. Fungsi ini akan sedikit menaikkan beban peladen."
sensitivity: "Sensitivitas deteksi"
sensitivityDescription: "Mengurangi sensitivitas akan mengurangi misdeteksi (false positive) sedangkan meningkatkannya akan menambah misdeteksi (false positive)."
setSensitiveFlagAutomatically: "Tandai sebagai NSFW"
@@ -1339,21 +1489,17 @@ _aboutMisskey:
donate: "Donasi ke Misskey"
morePatrons: "Kami sangat mengapresiasi dukungan dari banyak penolong lain yang tidak tercantum disini. Terima kasih! 🥰"
patrons: "Pendukung"
-_nsfw:
- respect: "Sembunyikan media NSFW"
- ignore: "Jangan sembunyikan media NSFW"
- force: "Sembunyikan semua media"
_instanceTicker:
none: "Jangan tampilkan"
- remote: "Tampilkan untuk pengguna luar"
+ remote: "Tampilkan untuk pengguna instansi luar"
always: "Selalu tampilkan"
_serverDisconnectedBehavior:
reload: "Muat ulang otomatis"
dialog: "Tampilkan dialog peringatan"
quiet: "Tampilkan peringatan tidak mengganggu"
_channel:
- create: "Buat saluran"
- edit: "Sunting saluran"
+ create: "Buat Kanal"
+ edit: "Sunting Kanal"
setBanner: "Setel banner"
removeBanner: "Hapus banner"
featured: "Tren"
@@ -1361,6 +1507,8 @@ _channel:
following: "Mengikuti"
usersCount: "{n} Partisipan"
notesCount: "terdapat {n} catatan"
+ nameAndDescription: "Nama dan deskripsi"
+ nameOnly: "Hanya nama"
_menuDisplay:
sideFull: "Horisontal"
sideIcon: "Horisontal (Ikon)"
@@ -1369,9 +1517,9 @@ _menuDisplay:
_wordMute:
muteWords: "Kata yang dibisukan"
muteWordsDescription: "Pisahkan dengan spasi untuk kondisi AND. Pisahkan dengan baris baru untuk kondisi OR."
- muteWordsDescription2: "Kurung kata kunci dengan garis miring untuk menggunakan regular expressions."
- softDescription: "Sembunyikan catatan yang memenuhi aturan kondisi dari linimasa."
- hardDescription: "Cegah catatan memenuhi aturan kondisi dari ditambahkan ke linimasa. Dengan tambahan, catatan berikut tidak akan ditambahkan ke linimasa meskipun jika kondisi tersebut diubah."
+ muteWordsDescription2: "Kurung kata kunci dengan garis miring untuk menggunakan ekspresi reguler."
+ softDescription: "Sembunyikan catatan yang memenuhi aturan kondisi dari lini masa."
+ hardDescription: "Cegah catatan memenuhi aturan kondisi dari ditambahkan ke lini masa. Dengan tambahan, catatan berikut tidak akan ditambahkan ke lini masa meskipun jika kondisi tersebut diubah."
soft: "Lembut"
hard: "Keras"
mutedNotes: "Catatan yang dibisukan"
@@ -1441,8 +1589,8 @@ _theme:
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"
+ toastBg: "Latar belakang notifikasi"
+ toastFg: "Teks notifikasi"
buttonBg: "Latar belakang tombol"
buttonHoverBg: "Latar belakang tombol (Mengambang)"
inputBorder: "Batas bidang masukan"
@@ -1457,11 +1605,11 @@ _theme:
_sfx:
note: "Catatan"
noteMy: "Catatan (Saya)"
- notification: "Pemberitahuan"
+ notification: "Notifikasi"
chat: "Pesan"
chatBg: "Obrolan (Latar Belakang)"
antenna: "Penerimaan Antenna"
- channel: "Pemberitahuan saluran"
+ channel: "Notifikasi Kanal"
_ago:
future: "Masa depan"
justNow: "Baru saja"
@@ -1478,15 +1626,40 @@ _time:
minute: "menit"
hour: "jam"
day: "hari"
+_timelineTutorial:
+ title: "Bagaimana cara menggunakan Misskey"
+ step1_1: "Ini adalah \"lini masa\". Semua \"catatan\" yang dikirimkan oleh {name} akan dimunculkan secara kronologis di sini."
+ step1_2: "Ada beberapa lini masa yang berbeda. Seperti contoh, \"Lini masa Beranda\" berisi catatan dari pengguna yang kamu ikuti, dan \"Lini masa lokal\" berisi catatan dari semua pengguna dari {name}."
+ step2_1: "Selanjutnya, mari kita coba memposting sebuah catatan. Kamu dapat melakukanya dengan menekan tombol dengan ikon pensil."
+ step2_2: "Bagaimana dengan menuliskan sedikit perkenalan diri, atau hanya \"Hello {name}\" kalau kamu lagi ngga feeling?"
+ step3_1: "Udah selesai memposting catatan pertamamu?"
+ step3_2: "Catatan pertamamu seharusnya sekarang sudah tampil di lini masa kamu."
+ step4_1: "Kamu dapat menyisipkan \"Reaksi\" ke dalam catatan."
+ step4_2: "Untuk menyisipkan reaksi, tekan tanda \"+\" dalam catatan dan pilih emoji yang kamu suka untuk mereaksi catatan tersebut."
_2fa:
alreadyRegistered: "Kamu telah mendaftarkan perangkat otentikasi dua faktor."
+ registerTOTP: "Daftarkan aplikasi autentikator"
+ passwordToTOTP: "Masukkan kata sandimu"
step1: "Pertama, pasang aplikasi otentikasi (seperti {a} atau {b}) di perangkat kamu."
step2: "Lalu, pindai kode QR yang ada di layar."
+ step2Click: "Mengeklik kode QR ini akan membolehkanmu untuk mendaftarkan 2FA ke security-key atau aplikasi autentikator ponsel."
step2Url: "Di aplikasi desktop, masukkan URL berikut:"
+ step3Title: "Masukkan kode autentikasi"
step3: "Masukkan token yang telah disediakan oleh aplikasimu untuk menyelesaikan pemasangan."
step4: "Mulai sekarang, upaya login apapun akan meminta token login dari aplikasi otentikasi kamu."
+ securityKeyNotSupported: "Peramban kamu tidak mendukung security key."
+ registerTOTPBeforeKey: "Mohon atur aplikasi autentikator untuk mendaftarkan security key atau passkey."
securityKeyInfo: "Kamu dapat memasang otentikasi WebAuthN untuk mengamankan proses login lebih lanjut dengan tidak hanya perangkat keras kunci keamanan yang mendukung FIDO2, namun juga sidik jari atau otentikasi PIN pada perangkatmu."
+ chromePasskeyNotSupported: "Passkey Chrome saat ini tidak didukung."
+ registerSecurityKey: "Daftarkan security key atau passkey."
+ securityKeyName: "Masukkan nama key."
+ tapSecurityKey: "Mohon ikuti peramban kamu untuk mendaftarkan security key atau passkey"
+ removeKey: "Hapus security key"
removeKeyConfirm: "Hapus cadangan {name}?"
+ whyTOTPOnlyRenew: "Aplikasi autentikator tidak dapat dihapus selama security key masih terdaftar."
+ renewTOTP: "Atur ulang aplikasi autentikator"
+ renewTOTPConfirm: "Hal ini akan menyebabkan kode verifikasi dari aplikasi autentikator sebelumnya berhenti bekerja"
+ renewTOTPOk: "Atur ulang"
renewTOTPCancel: "Tidak sekarang."
_permissions:
"read:account": "Lihat informasi akun"
@@ -1504,8 +1677,8 @@ _permissions:
"read:mutes": "Lihat daftar orang yang dibisukan"
"write:mutes": "Sunting daftar orang yang dibisukan"
"write:notes": "Buat atau hapus catatan"
- "read:notifications": "Lihat pemberitahuan"
- "write:notifications": "Sunting pemberitahuan"
+ "read:notifications": "Lihat notifikasi"
+ "write:notifications": "Sunting notifikasi"
"read:reactions": "Lihat reaksi"
"write:reactions": "Sunting reaksi"
"write:votes": "Beri suara"
@@ -1515,8 +1688,8 @@ _permissions:
"write:page-likes": "Sunting suka pada Halaman"
"read:user-groups": "Lihat grup pengguna"
"write:user-groups": "Sunting atau hapus grup pengguna"
- "read:channels": "Lihat saluran"
- "write:channels": "Sunting saluran"
+ "read:channels": "Lihat Kanal"
+ "write:channels": "Sunting Kanal"
"read:gallery": "Lihat galeri"
"write:gallery": "Sunting galeri"
"read:gallery-likes": "Lihat daftar postingan galeri yang disukai"
@@ -1548,8 +1721,8 @@ _widgets:
profile: "Profil"
instanceInfo: "Informasi Instansi"
memo: "Catatan memo"
- notifications: "Pemberitahuan"
- timeline: "Linimasa"
+ notifications: "Notifikasi"
+ timeline: "Lini masa"
calendar: "Kalender"
trends: "Tren"
clock: "Jam"
@@ -1603,13 +1776,15 @@ _poll:
remainingSeconds: "Berakhir dalam {s} detik"
_visibility:
public: "Publik"
- publicDescription: "Catat ke linimasa global"
+ publicDescription: "Catat ke lini masa global"
home: "Beranda"
- homeDescription: "Catat ke linimasa beranda saja"
+ homeDescription: "Catat ke lini masa beranda saja"
followers: "Pengikut"
followersDescription: "Catat ke pengikut saja"
specified: "Langsung"
specifiedDescription: "Catat ke pengguna yang ditentukan saja"
+ disableFederation: "Matikan federasi"
+ disableFederationDescription: "Jangan kirimkan ke instansi lain"
_postForm:
replyPlaceholder: "Balas ke catatan ini..."
quotePlaceholder: "Kutip catatan ini..."
@@ -1650,7 +1825,7 @@ _charts:
activeUsers: "Pengguna aktif"
notesIncDec: "Perbedaan # dalam catatan"
localNotesIncDec: "Perbedaan # dalam catatan lokal"
- remoteNotesIncDec: "Perbedaan # dalam catatan luar"
+ remoteNotesIncDec: "Perbedaan # dalam catatan instansi luar"
notesTotal: "Total # catatan"
filesIncDec: "Perbedaan # dalam berkas"
filesTotal: "Jumlah # berkas"
@@ -1765,7 +1940,8 @@ _notification:
pollEnded: "Jajak pendapat berakhir"
receiveFollowRequest: "Permintaan mengikuti diterima"
followRequestAccepted: "Permintaan mengikuti disetujui"
- app: "Pemberitahuan dari aplikasi"
+ achievementEarned: "Pencapaian didapatkan"
+ app: "Notifikasi dari aplikasi tertaut"
_actions:
followBack: "Ikuti Kembali"
reply: "Balas"
@@ -1790,13 +1966,34 @@ _deck:
_columns:
main: "Utama"
widgets: "Widget"
- notifications: "Pemberitahuan"
- tl: "Linimasa"
+ notifications: "Notifikasi"
+ tl: "Lini masa"
antenna: "Antena"
list: "Daftar"
channel: "Kanal"
mentions: "Sebutan"
direct: "Langsung"
+ roleTimeline: "Lini masa peran"
+_dialog:
+ charactersExceeded: "Kamu telah melebihi batas karakter maksimum! Saat ini pada {current} dari {max}."
+ charactersBelow: "Kamu berada di bawah batas minimum karakter! Saat ini pada {current} dari {min}."
+_disabledTimeline:
+ title: "Lini masa dinonaktifkan"
+ description: "Saat ini kamu tidak dapat menggunakan lini masa ini karena peran kamu saat ini."
+_drivecleaner:
+ orderBySizeDesc: "Ukuran berkas (Turun)"
+ orderByCreatedAtAsc: "Tanggal (Naik)"
_webhookSettings:
+ createWebhook: "Buat Webhook"
name: "Nama"
+ secret: "Secret"
+ events: "Webhook Events"
active: "Aktif"
+ _events:
+ follow: "Ketika mengikuti pengguna"
+ followed: "Ketika diikuti pengguna"
+ note: "Ketika memposting catatan"
+ reply: "Ketika menerima balasan"
+ renote: "Ketika direnote"
+ reaction: "Ketika menerima reaksi"
+ mention: "Ketika sedang disebut"
diff --git a/locales/index.d.ts b/locales/index.d.ts
index eed29f408c..db7e3e9575 100644
--- a/locales/index.d.ts
+++ b/locales/index.d.ts
@@ -52,11 +52,15 @@ export interface Locale {
"deleteAndEdit": string;
"deleteAndEditConfirm": string;
"addToList": string;
+ "addToAntenna": string;
"sendMessage": string;
"copyRSS": string;
"copyUsername": string;
"copyUserId": string;
"copyNoteId": string;
+ "copyFileId": string;
+ "copyFolderId": string;
+ "copyProfileUrl": string;
"searchUser": string;
"reply": string;
"loadMore": string;
@@ -139,8 +143,10 @@ export interface Locale {
"suspendConfirm": string;
"unsuspendConfirm": string;
"selectList": string;
+ "editList": string;
"selectChannel": string;
"selectAntenna": string;
+ "editAntenna": string;
"selectWidget": string;
"editWidgets": string;
"editWidgetsExit": string;
@@ -153,6 +159,8 @@ export interface Locale {
"settingGuide": string;
"cacheRemoteFiles": string;
"cacheRemoteFilesDescription": string;
+ "cacheRemoteSensitiveFiles": string;
+ "cacheRemoteSensitiveFilesDescription": string;
"flagAsBot": string;
"flagAsBotDescription": string;
"flagAsCat": string;
@@ -314,7 +322,7 @@ export interface Locale {
"rename": string;
"avatar": string;
"banner": string;
- "nsfw": string;
+ "displayOfSensitiveMedia": string;
"whenServerDisconnected": string;
"disconnectedFromServer": string;
"reload": string;
@@ -1066,6 +1074,29 @@ export interface Locale {
"additionalEmojiDictionary": string;
"installed": string;
"branding": string;
+ "enableServerMachineStats": string;
+ "enableIdenticonGeneration": string;
+ "turnOffToImprovePerformance": string;
+ "createInviteCode": string;
+ "createWithOptions": string;
+ "createCount": string;
+ "inviteCodeCreated": string;
+ "inviteLimitExceeded": string;
+ "createLimitRemaining": string;
+ "inviteLimitResetCycle": string;
+ "expirationDate": string;
+ "noExpirationDate": string;
+ "inviteCodeUsedAt": string;
+ "registeredUserUsingInviteCode": string;
+ "waitingForMailAuth": string;
+ "inviteCodeCreator": string;
+ "usedAt": string;
+ "unused": string;
+ "used": string;
+ "expired": string;
+ "doYouAgree": string;
+ "beSureToReadThisAsItIsImportant": string;
+ "iHaveReadXCarefullyAndAgree": string;
"_initialAccountSetting": {
"accountCreated": string;
"letsStartAccountSetup": string;
@@ -1456,6 +1487,9 @@ export interface Locale {
"ltlAvailable": string;
"canPublicNote": string;
"canInvite": string;
+ "inviteLimit": string;
+ "inviteLimitCycle": string;
+ "inviteExpirationTime": string;
"canManageCustomEmojis": string;
"driveCapacity": string;
"alwaysMarkNsfw": string;
@@ -1526,6 +1560,7 @@ export interface Locale {
"back": string;
"reduceFrequencyOfThisAd": string;
"hide": string;
+ "timezoneinfo": string;
};
"_forgotPassword": {
"enterEmail": string;
@@ -1587,7 +1622,7 @@ export interface Locale {
"morePatrons": string;
"patrons": string;
};
- "_nsfw": {
+ "_displayOfSensitiveMedia": {
"respect": string;
"ignore": string;
"force": string;
@@ -2103,6 +2138,7 @@ export interface Locale {
"introduction": string;
"introduction2": string;
"widgetsIntroduction": string;
+ "useSimpleUiForNonRootPages": string;
"_columns": {
"main": string;
"widgets": string;
@@ -2148,4 +2184,4 @@ export interface Locale {
declare const locales: {
[lang: string]: Locale;
};
-export = locales;
+export default locales;
diff --git a/locales/index.js b/locales/index.js
index 2248bb6ac9..7801f1275b 100644
--- a/locales/index.js
+++ b/locales/index.js
@@ -2,8 +2,8 @@
* Languages Loader
*/
-const fs = require('fs');
-const yaml = require('js-yaml');
+import * as fs from 'node:fs';
+import * as yaml from 'js-yaml';
const merge = (...args) => args.reduce((a, c) => ({
...a,
@@ -51,9 +51,9 @@ const primaries = {
// 何故か文字列にバックスペース文字が混入することがあり、YAMLが壊れるので取り除く
const clean = (text) => text.replace(new RegExp(String.fromCodePoint(0x08), 'g'), '');
-const locales = languages.reduce((a, c) => (a[c] = yaml.load(clean(fs.readFileSync(`${__dirname}/${c}.yml`, 'utf-8'))) || {}, a), {});
+const locales = languages.reduce((a, c) => (a[c] = yaml.load(clean(fs.readFileSync(new URL(`${c}.yml`, import.meta.url), 'utf-8'))) || {}, a), {});
-module.exports = Object.entries(locales)
+export default Object.entries(locales)
.reduce((a, [k ,v]) => (a[k] = (() => {
const [lang] = k.split('-');
switch (k) {
diff --git a/locales/it-IT.yml b/locales/it-IT.yml
index 3c1a26e85c..0df1fd64bf 100644
--- a/locales/it-IT.yml
+++ b/locales/it-IT.yml
@@ -26,15 +26,15 @@ otherSettings: "Altre impostazioni"
openInWindow: "Apri in una finestra"
profile: "Profilo"
timeline: "Timeline"
-noAccountDescription: "L'utente non ha ancora scritto niente nella biografia di profilo."
+noAccountDescription: "La persona non ha ancora scritto alcuna autobiografia."
login: "Accedi"
loggingIn: "Accesso in corso..."
logout: "Uscita"
signup: "Iscriviti"
uploading: "Caricamento..."
save: "Salva"
-users: "Utente"
-addUser: "Aggiungi utente"
+users: "Profili"
+addUser: "Aggiungi profilo"
favorite: "Preferiti"
favorites: "Preferiti"
unfavorite: "Rimuovi nota dai preferiti"
@@ -49,10 +49,16 @@ delete: "Elimina"
deleteAndEdit: "Elimina e modifica"
deleteAndEditConfirm: "Vuoi davvero cancellare questa nota e scriverla di nuovo? Verranno eliminate anche tutte le reazioni, rinote e risposte collegate."
addToList: "Aggiungi alla lista"
+addToAntenna: "Aggiungi all'antenna"
sendMessage: "Invia messaggio"
copyRSS: "Copia RSS"
copyUsername: "Copia nome utente"
-searchUser: "Cerca utente"
+copyUserId: "Copia ID del profilo"
+copyNoteId: "Copia ID della Nota"
+copyFileId: "Copia ID del file"
+copyFolderId: "Copia ID della cartella"
+copyProfileUrl: "Copia URL del profilo"
+searchUser: "Cerca profilo"
reply: "Rispondi"
loadMore: "Mostra di più"
showMore: "Espandi"
@@ -134,8 +140,10 @@ unblockConfirm: "Vuoi davvero sbloccare il profilo?"
suspendConfirm: "Vuoi sospendere questo profilo?"
unsuspendConfirm: "Vuoi revocare la sospensione si questo profilo?"
selectList: "Seleziona una lista"
+editList: "Modifica Lista"
selectChannel: "Seleziona canale"
selectAntenna: "Scegli un'antenna"
+editAntenna: "Modifica Antenna"
selectWidget: "Seleziona il riquadro"
editWidgets: "Modifica i riquadri"
editWidgetsExit: "Conferma le modifiche"
@@ -148,12 +156,14 @@ addEmoji: "Aggiungi un emoji"
settingGuide: "Configurazione suggerita"
cacheRemoteFiles: "Memorizza i file remoti nella cache"
cacheRemoteFilesDescription: "Disabilitando questa opzione, i file remoti verranno linkati direttamente senza essere memorizzati nella cache. Sarà possibile risparmiare spazio di archiviazione sul server, ma il traffico aumenterà in quanto non verranno generate anteprime."
+cacheRemoteSensitiveFiles: "Memorizza nella cache i file sensibili remoti"
+cacheRemoteSensitiveFilesDescription: "Disattivando questa opzione, i file sensibili verranno caricati direttamente dall'istanza remota senza essere salvati dal server."
flagAsBot: "Io sono un robot"
flagAsBotDescription: "Attiva questo campo se il profilo esegue principalmente operazioni automatiche. L'attivazione segnala agli altri sviluppatori come comportarsi per evitare catene d’interazione infinite con altri bot. I sistemi interni di Misskey si adegueranno al fine di trattare questo profilo come bot."
flagAsCat: "Sono un gatto"
flagAsCatDescription: "La modalità \"sono un gatto\" aggiunge le orecchie al tuo profilo"
flagShowTimelineReplies: "Mostra le risposte alle note sulla timeline."
-flagShowTimelineRepliesDescription: "Se è attiva, la timeline mostra le risposte alle altre note dell'utente oltre a quelle dell'utente stesso."
+flagShowTimelineRepliesDescription: "Attivando, la timeline mostra le Note del profilo ed anche le risposte ad altre Note"
autoAcceptFollowed: "Accetta automaticamente le richieste di follow da utenti che già segui"
addAccount: "Aggiungi profilo"
reloadAccountsList: "Ricarica l'elenco dei profili"
@@ -205,7 +215,7 @@ blockedInstancesDescription: "Elenca le istanze che vuoi bloccare, una per riga.
muteAndBlock: "Silenziati / Bloccati"
mutedUsers: "Profili silenziati"
blockedUsers: "Profili bloccati"
-noUsers: "Nessun utente trovato"
+noUsers: "Non ci sono profili"
editProfile: "Modifica profilo"
noteDeleteConfirm: "Vuoi davvero eliminare questa Nota?"
pinLimitExceeded: "Non puoi fissare altre note "
@@ -236,8 +246,8 @@ newPasswordRetype: "Conferma password"
attachFile: "Allega file"
more: "Di più!"
featured: "Tendenze"
-usernameOrUserId: "Nome utente o ID utente"
-noSuchUser: "Nessun utente trovato"
+usernameOrUserId: "Nome utente o ID"
+noSuchUser: "Profilo non trovato"
lookup: "Ricerca remota"
announcements: "Annunci"
imageUrl: "URL dell'immagine"
@@ -269,7 +279,7 @@ basicNotesBeforeCreateAccount: "Note importanti"
termsOfService: "Informativa Privacy"
start: "Inizia!"
home: "Home"
-remoteUserCaution: "Può darsi che le informazioni siano incomplete perché questo è un utente remoto."
+remoteUserCaution: "Le informazioni potrebbero essere incomplete poiché questo profilo remoto potrebbe non essere completamente federato."
activity: "Attività"
images: "Immagini"
image: "Immagini"
@@ -309,7 +319,7 @@ copyUrl: "Copia URL"
rename: "Modifica nome"
avatar: "Foto del profilo"
banner: "Intestazione"
-nsfw: "Contenuti sensibili"
+displayOfSensitiveMedia: "Visibilità dei media sensibili"
whenServerDisconnected: "Quando la connessione col server è persa"
disconnectedFromServer: "Il server si è disconnesso"
reload: "Ricarica"
@@ -444,7 +454,7 @@ signinRequired: "Occorre avere un profilo registrato su questa istanza"
invitations: "Invita"
invitationCode: "Codice di invito"
checking: "Confermando"
-available: "Consigliati"
+available: "Disponibile"
unavailable: "Il nome utente è già in uso"
usernameInvalidFormat: "Il nome utente può contenere solo lettere, numeri e '_'"
tooShort: "Troppo breve"
@@ -560,6 +570,7 @@ accountDeletedDescription: "Questo profilo è stato eliminato."
menu: "Menù"
divider: "Linea di separazione"
addItem: "Aggiungi elemento"
+rearrange: "Riordina"
relays: "Ripetitori"
addRelay: "Aggiungi ripetitore"
inboxUrl: "Inbox URL"
@@ -660,7 +671,7 @@ instanceTicker: "Informazioni sull'istanza da cui vengono le note"
waitingFor: "Aspettando {x}"
random: "Casuale"
system: "Sistema"
-switchUi: "Cambiare interfaccia"
+switchUi: "Cambia interfaccia grafica"
desktop: "Desktop"
clip: "Clip"
createNew: "Crea"
@@ -703,6 +714,8 @@ contact: "Contatti"
useSystemFont: "Usa il carattere predefinito del sistema"
clips: "Clip"
experimentalFeatures: "Funzioni sperimentali"
+experimental: "Sperimentale"
+thisIsExperimentalFeature: "Questa è una funzionalità sperimentale. Potrebbe essere malfunzionante o cambiare in futuro."
developer: "Sviluppatore"
makeExplorable: "Profilo visibile pubblicamente nella pagina \"Esplora\""
makeExplorableDescription: "Disabilitando questa opzione, il tuo profilo non verrà elencato nella pagina \"Esplora\"."
@@ -766,10 +779,10 @@ info: "Informazioni"
userInfo: "Informazioni utente"
unknown: "Sconosciuto"
onlineStatus: "Stato di connessione"
-hideOnlineStatus: "Stato invisibile"
-hideOnlineStatusDescription: "Abilitare l'opzione di stato invisibile può guastare la praticità di singole funzioni, come la ricerca."
+hideOnlineStatus: "Modalità invisibile"
+hideOnlineStatusDescription: "Attivando questa opzione potresti ridurre l'usabilità di alcune funzioni, come la ricerca."
online: "Online"
-active: "Attiv@"
+active: "Attività"
offline: "Offline"
notRecommended: "Sconsigliato"
botProtection: "Protezione contro i bot"
@@ -779,7 +792,7 @@ switchAccount: "Cambia profilo"
enabled: "Attivo"
disabled: "Inattivo"
quickAction: "Azioni rapide"
-user: "Utente"
+user: "Profilo"
administration: "Gestione"
accounts: "Profilo"
switch: "Cambia"
@@ -787,6 +800,7 @@ noMaintainerInformationWarning: "Le informazioni amministratore non sono imposta
noBotProtectionWarning: "Nessuna protezione impostata contro i bot."
configure: "Imposta"
postToGallery: "Pubblicare nella galleria"
+postToHashtag: "Pubblica a questo hashtag"
gallery: "Galleria"
recentPosts: "Le più recenti"
popularPosts: "Le più visualizzate"
@@ -811,7 +825,7 @@ received: "Ricevuto"
searchResult: "Risultati della Ricerca"
hashtags: "Hashtag"
troubleshooting: "Risoluzione problemi"
-useBlurEffect: "Utilizza effetto sfocatura nell'interfaccia"
+useBlurEffect: "Utilizza effetto sfocatura"
learnMore: "Più dettagli"
misskeyUpdated: "Misskey è stato aggiornato!"
whatIsNew: "Visualizza le informazioni sull'aggiornamento"
@@ -820,6 +834,7 @@ translatedFrom: "Tradotto da {x}"
accountDeletionInProgress: "È in corso l'eliminazione del profilo"
usernameInfo: "Un nome per identificare univocamente il tuo profilo sull'istanza. Puoi utilizzare caratteri alfanumerici maiuscoli, minuscoli e il trattino basso (_). Non potrai cambiare nome utente in seguito."
aiChanMode: "Modalità Ai"
+devMode: "Modalità sviluppatori"
keepCw: "Mantieni il Content Warning"
pubSub: "Publish/Subscribe del profilo"
lastCommunication: "La comunicazione più recente"
@@ -829,6 +844,8 @@ breakFollow: "Non seguire"
breakFollowConfirm: "Vuoi davvero togliere follower?"
itsOn: "Abilitato"
itsOff: "Disabilitato"
+on: "Acceso"
+off: "Spento"
emailRequiredForSignup: "L'ndirizzo e-mail è obbligatorio per registrarsi"
unread: "Non lette"
filter: "Filtri"
@@ -839,8 +856,8 @@ makeReactionsPublicDescription: "La lista delle reazioni che avete fatto è a di
classic: "Classico"
muteThread: "Silenzia la conversazione"
unmuteThread: "Riattiva la conversazione"
-ffVisibility: "Ambito pubblico del collegamento"
-ffVisibilityDescription: "È possibile impostare la portata pubblica delle informazioni sui propri follower/seguaci."
+ffVisibility: "Visibilità delle connessioni"
+ffVisibilityDescription: "Puoi scegliere a chi mostrare le tue relazioni con altri profili nel fediverso."
continueThread: "Altri thread."
deleteAccountConfirm: "Così verrà eliminato il profilo. Vuoi procedere?"
incorrectPassword: "La password è errata."
@@ -848,7 +865,7 @@ voteConfirm: "Votare per「{choice}」?"
hide: "Nascondere"
useDrawerReactionPickerForMobile: "Mostra sul drawer da dispositivo mobile"
welcomeBackWithName: "Ciao, {name}! Eccoti di nuovo!"
-clickToFinishEmailVerification: "Fai click su [{ok}] per completare la verifica dell'indirizzo email."
+clickToFinishEmailVerification: "Premi il bottone \"{ok}\" per completare la verifica dell'indirizzo email."
overridedDeviceKind: "Tipo di dispositivo"
smartphone: "Smartphone"
tablet: "Tablet"
@@ -909,6 +926,7 @@ remoteOnly: "Solo remoto"
failedToUpload: "errore di caricamento"
cannotUploadBecauseInappropriate: "Non è possibile caricarlo perché è stato stabilito che potrebbe contenere contenuti inappropriati."
cannotUploadBecauseNoFreeSpace: "Impossibile caricare a causa della mancanza di spazio libero sul drive."
+cannotUploadBecauseExceedsFileSizeLimit: "Il file non può essere caricato perché eccede le dimensioni consentite."
beta: "Versione beta"
enableAutoSensitive: "Determinazione automatica del NSFW"
enableAutoSensitiveDescription: "Se disponibile, il flag NSFW viene impostato automaticamente sui media utilizzando l'apprendimento automatico. Anche se questa funzione è disattivata, in alcuni casi può essere impostata automaticamente."
@@ -942,6 +960,7 @@ didYouLikeMisskey: "Ti piace Misskey?"
pleaseDonate: "Misskey è il software libero utilizzato su {host}. Offrendo una donazione è più facile continuare a svilupparlo!"
roles: "Ruoli"
role: "Ruolo"
+noRole: "Ruolo non trovato"
normalUser: "Profilo standard"
undefined: "Indefinito"
assign: "Assegna"
@@ -981,10 +1000,13 @@ cannotBeChangedLater: "Non sarà più modificabile"
reactionAcceptance: "Reazioni consentite"
likeOnly: "Solo i Like"
likeOnlyForRemote: "Solo Like remoti"
+nonSensitiveOnly: "Solamente non sensibili"
+nonSensitiveOnlyForLocalLikeOnlyForRemote: "Solamente non sensibili (solo Mi piace remoti)"
rolesAssignedToMe: "I miei ruoli"
resetPasswordConfirm: "Vuoi davvero ripristinare la password?"
sensitiveWords: "Parole sensibili"
sensitiveWordsDescription: "Imposta automaticamente \"Home\" alla visibilità delle Note che contengono una qualsiasi parola tra queste configurate. Puoi separarle per riga."
+sensitiveWordsDescription2: "Gli spazi creano la relazione \"E\" tra parole (questo E quello). Racchiudere una parola nelle slash \"/\" la trasforma in Espressione Regolare."
notesSearchNotAvailable: "Non è possibile cercare tra le Note."
license: "Licenza"
unfavoriteConfirm: "Vuoi davvero rimuovere la preferenza?"
@@ -1003,9 +1025,13 @@ videos: "Video"
dataSaver: "Risparmia dati"
accountMigration: "Migrazione del profilo"
accountMoved: "Questo profilo ha migrato altrove:"
+accountMovedShort: "Questo profilo è stato migrato"
+operationForbidden: "Operazione non consentita"
forceShowAds: "Mostra sempre i banner"
addMemo: "Aggiungi Memo"
editMemo: "Modifica Memo"
+reactionsList: "Elenco delle reazioni"
+renotesList: "Elenco di Rinota"
notificationDisplay: "Stile delle notifiche"
leftTop: "In alto a sinistra"
rightTop: "In alto a destra"
@@ -1019,18 +1045,83 @@ serverRules: "Regolamento"
pleaseConfirmBelowBeforeSignup: "Ai sensi del regolamento EU 679/2016 GDPR, autorizzo il trattamento dati personali come descritto nella informativa Privacy."
pleaseAgreeAllToContinue: "Per continuare, occorre selezionare ed essere d'accordo su tutto."
continue: "Continua"
+preservedUsernames: "Nomi utente riservati"
+preservedUsernamesDescription: "Elenca, uno per linea, i nomi utente che non possono essere registrati durante la creazione del profilo. La restrizione non si applica agli amministratori. Inoltre, i profili già registrati sono esenti."
+createNoteFromTheFile: "Crea Nota da questo file"
+archive: "Archivio"
+channelArchiveConfirmTitle: "Vuoi davvero archiviare {name}?"
+channelArchiveConfirmDescription: "Un canale archiviato non compare nell'elenco canali, nemmeno nei risultati di ricerca. Non può ricevere nemmeno nuove Note."
+thisChannelArchived: "Questo canale è stato archiviato."
+displayOfNote: "Visualizzazione delle Note"
+initialAccountSetting: "Impostazioni iniziali del profilo"
youFollowing: "Seguiti"
+preventAiLearning: "Impedisci l'apprendimento della IA"
+preventAiLearningDescription: "Aggiungendo il campo \"noai\" alla risposta HTML, si indica ai Robot esterni di non usare testi e allegati per addestrare sistemi di Machine Learning (IA predittiva/generativa). Anche se è impossibile sapere se la richiesta venga onorata o semplicemente ignorata."
options: "Opzioni del ruolo"
+specifyUser: "Profilo specifico"
+failedToPreviewUrl: "Anteprima non disponibile"
+update: "Aggiorna"
+rolesThatCanBeUsedThisEmojiAsReaction: "Ruoli che possono usare questa emoji come reazione"
+rolesThatCanBeUsedThisEmojiAsReactionEmptyDescription: "Se non viene specificato alcun ruolo, chiunque può reagire con questa emoji."
+rolesThatCanBeUsedThisEmojiAsReactionPublicRoleWarn: "Questi ruoli devono essere pubblici"
+cancelReactionConfirm: "Vuoi annullare la tua reazione?"
+changeReactionConfirm: "Vuoi cambiare la tua reazione?"
+later: "Non ora"
+goToMisskey: "Vai a Misskey"
+additionalEmojiDictionary: "Dizionario aggiuntivo emoji"
+installed: "Installazione avvenuta"
+branding: "Branding"
+enableServerMachineStats: "Pubblicare le informazioni sul server"
+enableIdenticonGeneration: "Generazione automatica delle Identicon"
+turnOffToImprovePerformance: "Disattiva, per migliorare le prestazioni"
+createInviteCode: "Genera codice di invito"
+createWithOptions: "Genera con opzioni"
+createCount: "Conteggio inviti"
+inviteCodeCreated: "Inviti generati"
+inviteLimitExceeded: "Hai raggiunto il numero massimo di codici invito generabili."
+createLimitRemaining: "Inviti generabili: {limit} rimanenti"
+inviteLimitResetCycle: "Alle {time}, il limite verrà ripristinato a {limit}"
+expirationDate: "Scadenza"
+noExpirationDate: "Perpetuo"
+inviteCodeUsedAt: "Codice di invito usato alle"
+registeredUserUsingInviteCode: "Codice di invito usato da"
+waitingForMailAuth: "In attesa della verifica email"
+inviteCodeCreator: "Codice di invito creato da"
+usedAt: "Usato alle"
+unused: "Inutilizzato"
+used: "Utilizzato"
+expired: "Scaduto"
+_initialAccountSetting:
+ accountCreated: "Il tuo profilo è stato creato!"
+ letsStartAccountSetup: "Per iniziare, impostiamo il tuo profilo."
+ letsFillYourProfile: "Innanzitutto, compila il tuo profilo."
+ profileSetting: "Impostazioni del profilo"
+ privacySetting: "Impostazioni sulla privacy"
+ theseSettingsCanEditLater: "In seguito, potrai cambiare la tua scelta."
+ youCanEditMoreSettingsInSettingsPageLater: "Nella pagina \"Impostazioni\", è possibile personalizzare di più il tuo profilo. Dacci un'occhiata dopo!"
+ followUsers: "Per comporre la tua Timeline Home (personale) segui i profili delle persone che ti interessano."
+ pushNotificationDescription: "Attivare le notifiche push ti permettera di ricevere informazioni sulla attività di {name} direttamente sul tuo dispositivo."
+ initialAccountSettingCompleted: "Hai completato la configurazione iniziale!"
+ haveFun: "Divertiti con {name}!"
+ ifYouNeedLearnMore: "Per saperne di più su come usare {name} (Misskey), visita la pagina {link}"
+ skipAreYouSure: "Vuoi davvero saltare la configurazione iniziale?"
+ laterAreYouSure: "Vuoi davvero rimandare la configurazione iniziale?"
_serverRules:
description: "In Europa è necessario mostrare l'informativa sul trattamento dei dati personali, prima della registrazione al servizio."
_accountMigration:
moveFrom: "Migra un altro profilo dentro a questo"
+ moveFromSub: "Crea un alias verso un altro profilo remoto"
moveFromLabel: "Profilo da cui migrare:"
moveFromDescription: "Se desideri spostare i profili follower da un altro profilo a questo, devi prima creare un alias qui. Assicurati averlo creato PRIMA di eseguire l'attività! Inserisci l'indirizzo del profilo mittente in questo modo: @persona@istanza.it"
moveTo: "Migrare questo profilo verso un un altro"
moveToLabel: "Profilo verso cui migrare"
+ moveCannotBeUndone: "La migrazione è irreversibile, non può essere interrotta o annullata."
moveAccountDescription: "Questa attività è irreversibile! Innanzitutto, assicurati di aver creato, nella istanza di destinazione, un alias con l'indirizzo di questo profilo. Successivamente, indica qui il profilo di destinazione in questo modo: @persona@istanza.it"
+ moveAccountHowTo: "Per migrare su un profilo remoto, crea prima un alias di questo profilo, sulla istanza di destinazione.\nDopo aver creato l'alias, inserisci l'indirizzo di destinazione, indicando ad esempio: @profilo@altra.istanza"
+ startMigration: "Avvia la migrazione"
migrationConfirm: "Vuoi davvero migrare questo profilo su {account}? L'azione è irreversibile e non potrai più utilizzare questo profilo nel suo stato originale.\nInoltre, assicurati di aver già creato un alias sull'account a cui ti stai trasferendo."
+ movedAndCannotBeUndone: "Il tuo profilo è stato migrato.\nLa migrazione non può essere annullata."
+ postMigrationNote: "Questo profilo smetterà di seguire gli altri profili remoti a 24 ore dal termine della migrazione.\nSia i Follow che i Follower scenderanno a zero. I tuoi follower saranno comunque in grado di vedere le Note per soli follower, poiché non smetteranno di seguirti."
movedTo: "Profilo verso cui migrare"
_achievements:
earnedAt: "Data di conseguimento"
@@ -1310,8 +1401,12 @@ _role:
ltlAvailable: "Disponibilità della Timeline Locale"
canPublicNote: "Può scrivere Note con Visibilità Pubblica"
canInvite: "Genera codici di invito all'istanza"
+ inviteLimit: "Limite di codici invito"
+ inviteLimitCycle: "Intervallo di emissione del codice di invito"
+ inviteExpirationTime: "Scadenza del codice di invito"
canManageCustomEmojis: "Gestire le emoji personalizzate"
driveCapacity: "Capienza del Drive"
+ alwaysMarkNsfw: "Imposta sempre come NSFW"
pinMax: "Quantità massima di Note in primo piano"
antennaMax: "Quantità massima di Antenne"
wordMuteMax: "Lunghezza massima del filtro parole"
@@ -1371,6 +1466,7 @@ _ad:
back: "Indietro"
reduceFrequencyOfThisAd: "Visualizza questa pubblicità meno spesso"
hide: "Nascondi"
+ timezoneinfo: "Il giorno della settimana è determinato in base al fuso orario del server."
_forgotPassword:
enterEmail: "Inserisci l'indirizzo di posta elettronica che hai registrato nel tuo profilo. Il collegamento necessario per ripristinare la password verrà inviato a questo indirizzo."
ifNoEmail: "Se il tuo indirizzo email non risulta registrato, contatta l'amministrazione dell'istanza."
@@ -1422,10 +1518,10 @@ _aboutMisskey:
donate: "Sostieni Misskey"
morePatrons: "Apprezziamo sinceramente il supporto di tante altre persone. Grazie mille! 🥰"
patrons: "Sostenitori"
-_nsfw:
- respect: "Nascondere i media segnati come sensibli"
- ignore: "Visualizzare i media segnati come sensibili"
- force: "Nascondere tutti i media"
+_displayOfSensitiveMedia:
+ respect: "Nascondere i media sensibili"
+ ignore: "Non nascondere i media sensibili"
+ force: "Nascondi tutti i media"
_instanceTicker:
none: "Nascondi"
remote: "Mostra solo per i profili remoti"
@@ -1563,6 +1659,16 @@ _time:
minute: "min"
hour: "ore"
day: "giorni"
+_timelineTutorial:
+ title: "Come usare Misskey"
+ step1_1: "Questa è la \"Timeline\". tutte le \"Note\" pubblicate su {name} vengono elencate in ordine cronologico."
+ step1_2: "Le Timeline sono diverse, ad esempio, la \"Home\" elenca le Note dei profili che segui. Quella \"Locale\" elenca quelle di tutti i profili attivi su {name}."
+ step2_1: "Prova a pubblicare una Nota. Semplicemente premendo il bottone con l'icona di una matita."
+ step2_2: "Potresti scrivere la tua presentazione, oppure semplicemente \"Ciao da {name}!\""
+ step3_1: "Hai pubblicato qualcosa?"
+ step3_2: "In tal caso, dovrebbe comparire subito nella tua \"Home\""
+ step4_1: "Puoi reagire con un emoji alle Note."
+ step4_2: "To attach a reaction, press the \"+\" mark on a note and choose an emoji you'd like to react with.\nPer reagire con una emoji, premi il bottone \"+\" (più) visibile vicino ad ogni Nota e scegli dall'elenco la emoji che rappresenta la tua reazione."
_2fa:
alreadyRegistered: "La configurazione è stata già completata."
registerTOTP: "Registra un'app di autenticazione"
@@ -1710,7 +1816,7 @@ _visibility:
followersDescription: "Visibile solo ai tuoi follower"
specified: "Nota diretta"
specifiedDescription: "Visibile solo ai profili menzionati"
- disableFederation: "Federazione disabilitata"
+ disableFederation: "Non federare"
disableFederationDescription: "Non spedire attività alle altre istanze remote"
_postForm:
replyPlaceholder: "Rispondi a questa nota..."
@@ -1890,6 +1996,7 @@ _deck:
introduction: "Combinate le colonne per creare la vostra interfaccia!"
introduction2: "È possibile aggiungere colonne in qualsiasi momento premendo + sulla destra dello schermo."
widgetsIntroduction: "Dal menu della colonna, selezionare \"Modifica i riquadri\" per aggiungere un un riquadro con funzionalità"
+ useSimpleUiForNonRootPages: "Visualizza sotto pagine con interfaccia web semplice"
_columns:
main: "Principale"
widgets: "Riquadri"
diff --git a/locales/ja-JP.yml b/locales/ja-JP.yml
index 8004e53575..b2fa9c337e 100644
--- a/locales/ja-JP.yml
+++ b/locales/ja-JP.yml
@@ -49,11 +49,15 @@ delete: "削除"
deleteAndEdit: "削除して編集"
deleteAndEditConfirm: "このノートを削除してもう一度編集しますか?このノートへのリアクション、Renote、返信も全て削除されます。"
addToList: "リストに追加"
+addToAntenna: "アンテナに追加"
sendMessage: "メッセージを送信"
copyRSS: "RSSをコピー"
copyUsername: "ユーザー名をコピー"
copyUserId: "ユーザーIDをコピー"
copyNoteId: "ノートIDをコピー"
+copyFileId: "ファイルIDをコピー"
+copyFolderId: "フォルダーIDをコピー"
+copyProfileUrl: "プロフィールURLをコピー"
searchUser: "ユーザーを検索"
reply: "返信"
loadMore: "もっと見る"
@@ -112,7 +116,7 @@ pinnedNote: "ピン留めされたノート"
pinned: "ピン留め"
you: "あなた"
clickToShow: "クリックして表示"
-sensitive: "閲覧注意"
+sensitive: "センシティブ"
add: "追加"
reaction: "リアクション"
reactions: "リアクション"
@@ -120,8 +124,8 @@ reactionSetting: "ピッカーに表示するリアクション"
reactionSettingDescription2: "ドラッグして並び替え、クリックして削除、+を押して追加します。"
rememberNoteVisibility: "公開範囲を記憶する"
attachCancel: "添付取り消し"
-markAsSensitive: "閲覧注意にする"
-unmarkAsSensitive: "閲覧注意を解除する"
+markAsSensitive: "センシティブとして設定"
+unmarkAsSensitive: "センシティブを解除する"
enterFileName: "ファイル名を入力"
mute: "ミュート"
unmute: "ミュート解除"
@@ -136,8 +140,10 @@ unblockConfirm: "ブロック解除しますか?"
suspendConfirm: "凍結しますか?"
unsuspendConfirm: "解凍しますか?"
selectList: "リストを選択"
+editList: "リストを編集"
selectChannel: "チャンネルを選択"
selectAntenna: "アンテナを選択"
+editAntenna: "アンテナを編集"
selectWidget: "ウィジェットを選択"
editWidgets: "ウィジェットを編集"
editWidgetsExit: "編集を終了"
@@ -150,6 +156,8 @@ addEmoji: "絵文字を追加"
settingGuide: "おすすめ設定"
cacheRemoteFiles: "リモートのファイルをキャッシュする"
cacheRemoteFilesDescription: "この設定を無効にすると、リモートファイルをキャッシュせず直リンクするようになります。サーバーのストレージを節約できますが、サムネイルが生成されないので通信量が増加します。"
+cacheRemoteSensitiveFiles: "リモートのセンシティブなファイルをキャッシュする"
+cacheRemoteSensitiveFilesDescription: "この設定を無効にすると、リモートのセンシティブなファイルはキャッシュせず直リンクするようになります。"
flagAsBot: "Botとして設定"
flagAsBotDescription: "このアカウントがプログラムによって運用される場合は、このフラグをオンにします。オンにすると、反応の連鎖を防ぐためのフラグとして他の開発者に役立ったり、Misskeyのシステム上での扱いがBotに合ったものになります。"
flagAsCat: "にゃああああああああああああああ!!!!!!!!!!!!"
@@ -311,7 +319,7 @@ copyUrl: "URLをコピー"
rename: "名前を変更"
avatar: "アイコン"
banner: "バナー"
-nsfw: "閲覧注意"
+displayOfSensitiveMedia: "センシティブなメディアの表示"
whenServerDisconnected: "サーバーとの接続が失われたとき"
disconnectedFromServer: "サーバーから切断されました"
reload: "リロード"
@@ -693,7 +701,7 @@ driveUsage: "ドライブ使用量"
noCrawle: "クローラーによるインデックスを拒否"
noCrawleDescription: "外部の検索エンジンにあなたのユーザーページ、ノート、Pagesなどのコンテンツを登録(インデックス)しないよう要求します。"
lockedAccountInfo: "フォローを承認制にしても、ノートの公開範囲を「フォロワー」にしない限り、誰でもあなたのノートを見ることができます。"
-alwaysMarkSensitive: "デフォルトでメディアを閲覧注意にする"
+alwaysMarkSensitive: "デフォルトでメディアをセンシティブ設定にする"
loadRawImages: "添付画像のサムネイルをオリジナル画質にする"
disableShowingAnimatedImages: "アニメーション画像を再生しない"
verificationEmailSent: "確認のメールを送信しました。メールに記載されたリンクにアクセスして、設定を完了してください。"
@@ -920,8 +928,8 @@ cannotUploadBecauseInappropriate: "不適切な内容を含む可能性がある
cannotUploadBecauseNoFreeSpace: "ドライブの空き容量が無いためアップロードできません。"
cannotUploadBecauseExceedsFileSizeLimit: "ファイルサイズの制限を超えているためアップロードできません。"
beta: "ベータ"
-enableAutoSensitive: "自動NSFW判定"
-enableAutoSensitiveDescription: "利用可能な場合は、機械学習を利用して自動でメディアにNSFWフラグを設定します。この機能をオフにしても、サーバーによっては自動で設定されることがあります。"
+enableAutoSensitive: "自動センシティブ判定"
+enableAutoSensitiveDescription: "利用可能な場合は、機械学習を利用して自動でメディアにセンシティブフラグを設定します。この機能をオフにしても、サーバーによっては自動で設定されることがあります。"
activeEmailValidationDescription: "ユーザーのメールアドレスのバリデーションを、捨てアドかどうかや実際に通信可能かどうかなどを判定しより積極的に行います。オフにすると単に文字列として正しいかどうかのみチェックされます。"
navbar: "ナビゲーションバー"
shuffle: "シャッフル"
@@ -1034,7 +1042,7 @@ vertical: "縦"
horizontal: "横"
position: "位置"
serverRules: "サーバールール"
-pleaseConfirmBelowBeforeSignup: "このサーバーに登録する前に、以下を確認してください。"
+pleaseConfirmBelowBeforeSignup: "このサーバーに登録するには、以下の内容を確認し同意する必要があります。"
pleaseAgreeAllToContinue: "続けるには、全ての「同意する」にチェックが入っている必要があります。"
continue: "続ける"
preservedUsernames: "予約ユーザー名"
@@ -1063,6 +1071,29 @@ goToMisskey: "Misskeyへ"
additionalEmojiDictionary: "絵文字の追加辞書"
installed: "インストール済み"
branding: "ブランディング"
+enableServerMachineStats: "サーバーのマシン情報を公開する"
+enableIdenticonGeneration: "ユーザーごとのIdenticon生成を有効にする"
+turnOffToImprovePerformance: "オフにするとパフォーマンスが向上します。"
+createInviteCode: "招待コードを作成"
+createWithOptions: "オプションを指定して作成"
+createCount: "作成数"
+inviteCodeCreated: "招待コードを作成しました"
+inviteLimitExceeded: "作成できる招待コードの数が上限に達しています。"
+createLimitRemaining: "作成できる招待コード: 残り {limit} 個"
+inviteLimitResetCycle: "{time}で最大 {limit} 個の招待コードを作成できます。"
+expirationDate: "有効期限"
+noExpirationDate: "有効期限を設けない"
+inviteCodeUsedAt: "招待コードが使用された日時"
+registeredUserUsingInviteCode: "招待コードを使用したユーザー"
+waitingForMailAuth: "メール認証待ち"
+inviteCodeCreator: "招待コードを作成したユーザー"
+usedAt: "使用日時"
+unused: "未使用"
+used: "使用済み"
+expired: "期限切れ"
+doYouAgree: "同意しますか?"
+beSureToReadThisAsItIsImportant: "重要ですので必ずお読みください。"
+iHaveReadXCarefullyAndAgree: "「{x}」の内容をよく読み、同意します。"
_initialAccountSetting:
accountCreated: "アカウントの作成が完了しました!"
@@ -1378,6 +1409,9 @@ _role:
ltlAvailable: "ローカルタイムラインの閲覧"
canPublicNote: "パブリック投稿の許可"
canInvite: "サーバー招待コードの発行"
+ inviteLimit: "招待コードの作成可能数"
+ inviteLimitCycle: "招待コードの発行間隔"
+ inviteExpirationTime: "招待コードの有効期限"
canManageCustomEmojis: "カスタム絵文字の管理"
driveCapacity: "ドライブ容量"
alwaysMarkNsfw: "ファイルにNSFWを常に付与"
@@ -1412,7 +1446,7 @@ _sensitiveMediaDetection:
description: "機械学習を使って自動でセンシティブなメディアを検出し、モデレーションに役立てることができます。サーバーの負荷が少し増えます。"
sensitivity: "検出感度"
sensitivityDescription: "感度を低くすると、誤検知(偽陽性)が減ります。感度を高くすると、検知漏れ(偽陰性)が減ります。"
- setSensitiveFlagAutomatically: "NSFWフラグを設定する"
+ setSensitiveFlagAutomatically: "センシティブフラグを設定する"
setSensitiveFlagAutomaticallyDescription: "この設定をオフにしても内部的に判定結果は保持されます。"
analyzeVideos: "動画の解析を有効化"
analyzeVideosDescription: "静止画に加えて動画も解析するようにします。サーバーの負荷が少し増えます。"
@@ -1446,6 +1480,7 @@ _ad:
back: "戻る"
reduceFrequencyOfThisAd: "この広告の表示頻度を下げる"
hide: "表示しない"
+ timezoneinfo: "曜日はサーバーのタイムゾーンを元に指定されます。"
_forgotPassword:
enterEmail: "アカウントに登録したメールアドレスを入力してください。そのアドレス宛てに、パスワードリセット用のリンクが送信されます。"
@@ -1505,9 +1540,9 @@ _aboutMisskey:
morePatrons: "他にも多くの方が支援してくれています。ありがとうございます🥰"
patrons: "支援者"
-_nsfw:
- respect: "閲覧注意のメディアは隠す"
- ignore: "閲覧注意のメディアを隠さない"
+_displayOfSensitiveMedia:
+ respect: "センシティブ設定されたメディアを隠す"
+ ignore: "センシティブ設定されたメディアを隠さない"
force: "常にメディアを隠す"
_instanceTicker:
@@ -2018,6 +2053,7 @@ _deck:
introduction: "カラムを組み合わせて自分だけのインターフェイスを作りましょう!"
introduction2: "画面の右にある + を押して、いつでもカラムを追加できます。"
widgetsIntroduction: "カラムのメニューから、「ウィジェットの編集」を選択してウィジェットを追加してください"
+ useSimpleUiForNonRootPages: "非ルートページは簡易UIで表示"
_columns:
main: "メイン"
diff --git a/locales/ja-KS.yml b/locales/ja-KS.yml
index aa0f31fcd2..e8b02f8d5e 100644
--- a/locales/ja-KS.yml
+++ b/locales/ja-KS.yml
@@ -1,7 +1,7 @@
---
_lang_: "日本語 (関西弁)"
headlineMisskey: "ノートでつながるネットワーク"
-introMisskey: "ようお越し!Misskeyは、オープンソースの分散型マイクロブログサービスやねん。\n「ノート」を作って、いま起こっとることを共有したり、あんたについて皆に発信しよう📡\n「ツッコミ」機能で、皆のノートに素早く反応を追加したりもできるで✌\nほな新しい世界を探検しよか🚀"
+introMisskey: "ようお越し!Misskeyは、オープンソースの分散型マイクロブログサービスやねん。\n「ノート」を作って、いま起こっとることを共有したり、あんたについて皆に発信しよう📡\n「ツッコミ」機能で、皆のノートに素早く反応を追加したりもできるで✌\nほな、新しい世界を探検しよか🚀"
poweredByMisskeyDescription: "{name}は、オープンソースのプラットフォームMisskeyのサーバーのひとつなんやで。"
monthAndDay: "{month}月 {day}日"
search: "探す"
@@ -136,8 +136,10 @@ unblockConfirm: "ブロックやめたるってほんまか?"
suspendConfirm: "凍結してしもうてええか?"
unsuspendConfirm: "解凍するけどええか?"
selectList: "リストを選ぶ"
+editList: "リスト直すで"
selectChannel: "チャンネルを選ぶ"
selectAntenna: "アンテナを選ぶ"
+editAntenna: "アンテナを編集"
selectWidget: "ウィジェットを選ぶ"
editWidgets: "ウィジェットをいじる"
editWidgetsExit: "編集終ったで"
@@ -311,7 +313,6 @@ copyUrl: "URLをコピー"
rename: "名前を変えるで"
avatar: "アイコン"
banner: "バナー"
-nsfw: "見るんは気いつけてな"
whenServerDisconnected: "サーバーとの接続が失くなってしもうたとき"
disconnectedFromServer: "サーバーが機嫌悪いねん"
reload: "リロード"
@@ -1062,6 +1063,15 @@ later: "あとで"
goToMisskey: "Misskeyへ"
additionalEmojiDictionary: "絵文字の追加辞書"
installed: "インストール済み"
+branding: "あ"
+enableServerMachineStats: "サーバーのマシン情報見せびらかすで"
+enableIdenticonGeneration: "ユーザーごとのIdenticon生成を有効にする"
+turnOffToImprovePerformance: "オフにしたらえらい軽うなるで。"
+inviteCodeCreated: "招待コード作ったで"
+inviteLimitExceeded: "招待コード作りすぎやで。"
+createLimitRemaining: "作成できる招待コード: 残り {limit} 個やで"
+unused: "つこてへん"
+used: "もうつこてる"
_initialAccountSetting:
accountCreated: "アカウント作り終わったで。"
letsStartAccountSetup: "アカウントの初期設定をしよか。"
@@ -1485,9 +1495,9 @@ _aboutMisskey:
donate: "Misskeyに寄付"
morePatrons: "他にもぎょうさんの人からサポートしてもろてんねん。ほんまおおきに🥰"
patrons: "支援者"
-_nsfw:
- respect: "閲覧注意のメディアは隠すで"
- ignore: "閲覧注意のメディアは隠さへんで"
+_displayOfSensitiveMedia:
+ respect: "きわどいのは見とうない"
+ ignore: "きわどいのも見たい"
force: "常にメディアを隠すで"
_instanceTicker:
none: "表示せん"
@@ -1635,7 +1645,7 @@ _timelineTutorial:
step3_1: "投稿できた?"
step3_2: "あんたのノートがタイムラインに出てきたら成功や。"
step4_1: "ノートには、「ツッコミ」を付けれるで。"
- step4_2: "ツッコむんやったら、ノートの「+」マークを押して、好きな絵文字を選ぶで。"
+ step4_2: "ツッコむんやったら、ノートの「+」マークを押して、好きな絵文字を選ぶんやで。"
_2fa:
alreadyRegistered: "もう設定終わっとるわ。"
registerTOTP: "認証アプリの設定はじめる"
diff --git a/locales/ko-KR.yml b/locales/ko-KR.yml
index fd46eef1ff..42a829c125 100644
--- a/locales/ko-KR.yml
+++ b/locales/ko-KR.yml
@@ -40,7 +40,7 @@ favorites: "즐겨찾기"
unfavorite: "즐겨찾기에서 제거"
favorited: "즐겨찾기에 등록했습니다"
alreadyFavorited: "이미 즐겨찾기에 등록되어 있습니다"
-cantFavorite: "즐겨찾기에 등록하지 못했습니다."
+cantFavorite: "즐겨찾기에 등록하지 못했습니다"
pin: "프로필에 고정"
unpin: "프로필에서 고정 해제"
copyContent: "내용 복사"
@@ -49,11 +49,15 @@ delete: "삭제"
deleteAndEdit: "삭제 후 편집"
deleteAndEditConfirm: "이 노트를 삭제한 뒤 다시 편집하시겠습니까? 이 노트에 대한 리액션, 리노트, 답글 또한 모두 삭제됩니다."
addToList: "리스트에 추가"
+addToAntenna: "안테나에 추가"
sendMessage: "메시지 보내기"
copyRSS: "RSS 복사"
copyUsername: "유저명 복사"
copyUserId: "유저 ID 복사"
copyNoteId: "노트 ID 복사"
+copyFileId: "파일 ID 복사"
+copyFolderId: "폴더 ID 복사"
+copyProfileUrl: "프로필 URL 복사"
searchUser: "사용자 검색"
reply: "답글"
loadMore: "더 보기"
@@ -104,7 +108,7 @@ renote: "리노트"
unrenote: "리노트 취소"
renoted: "리노트했습니다"
cantRenote: "이 게시물은 리노트 할 수 없습니다."
-cantReRenote: "리노트를 리노트 할 수 없습니다."
+cantReRenote: "리노트를 리노트할 수 없습니다."
quote: "인용"
inChannelRenote: "채널 내 리노트"
inChannelQuote: "채널 내 인용"
@@ -112,7 +116,7 @@ pinnedNote: "고정해놓은 노트"
pinned: "프로필에 고정"
you: "당신"
clickToShow: "클릭하여 보기"
-sensitive: "열람주의"
+sensitive: "열람 주의"
add: "추가"
reaction: "리액션"
reactions: "리액션"
@@ -136,8 +140,10 @@ unblockConfirm: "이 계정의 차단을 해제하시겠습니까?"
suspendConfirm: "이 계정을 정지하시겠습니까?"
unsuspendConfirm: "이 계정의 정지를 해제하시겠습니까?"
selectList: "리스트 선택"
+editList: "리스트 편집"
selectChannel: "채널 선택"
selectAntenna: "안테나 선택"
+editAntenna: "안테나 편집"
selectWidget: "위젯 선택"
editWidgets: "위젯 편집"
editWidgetsExit: "편집 종료"
@@ -150,10 +156,12 @@ addEmoji: "이모지 추가"
settingGuide: "추천 설정"
cacheRemoteFiles: "리모트 파일을 캐시"
cacheRemoteFilesDescription: "이 설정을 해지하면 리모트 파일을 캐시하지 않고 해당 파일을 직접 링크하게 됩니다. 그에 따라 서버의 저장 공간을 절약할 수 있지만, 썸네일이 생성되지 않기 때문에 통신량이 증가합니다."
+cacheRemoteSensitiveFiles: "리모트의 민감한 파일을 캐시"
+cacheRemoteSensitiveFilesDescription: "이 설정을 비활성화하면 리모트의 민감한 파일은 캐시하지 않고 리모트에서 직접 가져오도록 합니다."
flagAsBot: "나는 봇입니다"
flagAsBotDescription: "이 계정을 자동화된 수단으로 운용할 경우에 활성화해 주세요. 이 플래그를 활성화하면, 다른 봇이 이를 참고하여 봇 끼리의 무한 연쇄 반응을 회피하거나, 이 계정의 시스템 상에서의 취급이 Bot 운영에 최적화되는 등의 변화가 생깁니다."
flagAsCat: "나는 고양이다냥"
-flagAsCatDescription: "이 계정이 고양이라면 활성화 해주세요."
+flagAsCatDescription: "이 계정이 고양이라면 활성화해 주세요."
flagShowTimelineReplies: "타임라인에 노트의 답글을 표시하기"
flagShowTimelineRepliesDescription: "이 설정을 활성화하면 타임라인에 다른 유저 간의 답글을 표시합니다."
autoAcceptFollowed: "팔로우 중인 유저로부터의 팔로우 요청을 자동 수락"
@@ -199,7 +207,7 @@ instanceInfo: "서버 정보"
statistics: "통계"
clearQueue: "대기열 비우기"
clearQueueConfirmTitle: "대기열을 비우시겠습니까?"
-clearQueueConfirmText: "대기열에 남아 있는 노트는 더이상 연합되지 않습니다. 보통의 경우 이 작업은 필요하지 않습니다."
+clearQueueConfirmText: "대기열에 남아 있는 노트는 더 이상 연합되지 않습니다. 보통의 경우 이 작업은 필요하지 않습니다."
clearCachedFiles: "캐시 비우기"
clearCachedFilesConfirm: "캐시된 리모트 파일을 모두 삭제하시겠습니까?"
blockedInstances: "차단된 서버"
@@ -311,7 +319,7 @@ copyUrl: "URL 복사"
rename: "이름 변경"
avatar: "아바타"
banner: "배너"
-nsfw: "열람주의"
+displayOfSensitiveMedia: "민감한 미디어 표시"
whenServerDisconnected: "서버와의 접속이 끊겼을 때"
disconnectedFromServer: "서버와의 연결이 끊어졌습니다"
reload: "새로고침"
@@ -992,8 +1000,8 @@ cannotBeChangedLater: "나중에 변경할 수 없습니다."
reactionAcceptance: "리액션 수신"
likeOnly: "좋아요만 받기"
likeOnlyForRemote: "리모트에서는 좋아요만 받기"
-nonSensitiveOnly: "열람 주의로 설정되지 않았을 때만 받기"
-nonSensitiveOnlyForLocalLikeOnlyForRemote: "열람 주의로 설정되지 않았을 때만 받기 (리모트에서는 좋아요만 받기)"
+nonSensitiveOnly: "민감한 이모지를 제외하고 받기"
+nonSensitiveOnlyForLocalLikeOnlyForRemote: "민감한 이모지를 제외하고 받기 (리모트에서는 좋아요만 받기)"
rolesAssignedToMe: "나에게 할당된 역할"
resetPasswordConfirm: "비밀번호를 재설정하시겠습니까?"
sensitiveWords: "민감한 단어"
@@ -1062,6 +1070,27 @@ later: "나중에"
goToMisskey: "Misskey로"
additionalEmojiDictionary: "이모지 추가 사전"
installed: "설치됨"
+branding: "브랜딩"
+enableServerMachineStats: "서버의 머신 사양을 공개하기"
+enableIdenticonGeneration: "유저마다의 Identicon 생성 유효화"
+turnOffToImprovePerformance: "이 기능을 끄면 성능이 향상될 수 있습니다."
+createInviteCode: "초대 코드 생성"
+createWithOptions: "옵션을 지정하여 생성"
+createCount: "초대 수"
+inviteCodeCreated: "초대 코드 생성됨"
+inviteLimitExceeded: "초대 코드 생성 한도를 초과했습니다."
+createLimitRemaining: "초대 한도: {limit}회 남음"
+inviteLimitResetCycle: " {time}시간 이내에 최대 {limit}개의 초대 코드를 생성할 수 있습니다."
+expirationDate: "만료 날짜"
+noExpirationDate: "만료기간 없음"
+inviteCodeUsedAt: "다음에 사용된 초대 코드"
+registeredUserUsingInviteCode: "초대 코드 사용 대상"
+waitingForMailAuth: "이메일 인증 보류 중"
+inviteCodeCreator: "초대 코드 생성자"
+usedAt: "사용 시각"
+unused: "사용되지 않음"
+used: "사용됨"
+expired: "만료됨"
_initialAccountSetting:
accountCreated: "계정 생성이 완료되었습니다!"
letsStartAccountSetup: "계정의 초기 설정을 진행합니다."
@@ -1372,6 +1401,9 @@ _role:
ltlAvailable: "로컬 타임라인 보이기"
canPublicNote: "공개 노트 허용"
canInvite: "서버 초대 코드 발행"
+ inviteLimit: "초대 한도"
+ inviteLimitCycle: "초대 발급 간격"
+ inviteExpirationTime: "초대 만료 기간"
canManageCustomEmojis: "커스텀 이모지 관리"
driveCapacity: "드라이브 용량"
alwaysMarkNsfw: "파일을 항상 NSFW로 지정"
@@ -1434,6 +1466,7 @@ _ad:
back: "뒤로"
reduceFrequencyOfThisAd: "이 광고의 표시 빈도 낮추기"
hide: "보이지 않음"
+ timezoneinfo: "요일은 서버의 표준 시간대에 따라 결정됩니다."
_forgotPassword:
enterEmail: "여기에 계정에 등록한 메일 주소를 입력해 주세요. 입력한 메일 주소로 비밀번호 재설정 링크를 발송합니다."
ifNoEmail: "메일 주소를 등록하지 않은 경우, 관리자에 문의해 주십시오."
@@ -1485,9 +1518,9 @@ _aboutMisskey:
donate: "Misskey에 기부하기"
morePatrons: "이 외에도 다른 많은 분들이 도움을 주시고 계십니다. 감사합니다🥰"
patrons: "후원자"
-_nsfw:
- respect: "열람주의로 설정된 미디어 숨기기"
- ignore: "열람 주의 미디어 항상 표시"
+_displayOfSensitiveMedia:
+ respect: "민감한 콘텐츠로 표시된 미디어 숨기기"
+ ignore: "민감한 콘텐츠로 표시된 미디어 보이기"
force: "미디어 항상 숨기기"
_instanceTicker:
none: "보이지 않음"
@@ -1963,6 +1996,7 @@ _deck:
introduction: "칼럼을 조합해서 나만의 인터페이스를 구성해 보아요!"
introduction2: "나중에라도 화면 우측의 + 버튼을 눌러 새 칼럼을 추가할 수 있습니다."
widgetsIntroduction: "칼럼 메뉴의 \"위젯 편집\"에서 위젯을 추가해 주세요"
+ useSimpleUiForNonRootPages: "루트 이외의 페이지로 접속한 경우 UI 간략화하기"
_columns:
main: "메인"
widgets: "위젯"
diff --git a/locales/lo-LA.yml b/locales/lo-LA.yml
index f686b04257..4f73b70550 100644
--- a/locales/lo-LA.yml
+++ b/locales/lo-LA.yml
@@ -20,6 +20,7 @@ noNotes: "ບໍ່ມີຫມາຍເຫດ"
noNotifications: "ບໍ່ມີການແຈ້ງເຕືອນ"
instance: "ອີນສະແຕນ"
settings: "ກຳນົດຄ່າ"
+notificationSettings: "ຕັ້ງຄ່າການແຈ້ງເຕືອນ"
basicSettings: "ການຕັ້ງຄ່າພື້ນຖານ"
otherSettings: "ການຕັ້ງຄ່າອື່ນໆ"
openInWindow: "ເປີດຢູ່ໃນປ່ອງຢ້ຽມ"
@@ -48,9 +49,15 @@ delete: "ລຶບ"
deleteAndEdit: "ລົບແລະແກ້ໄຂ"
deleteAndEditConfirm: "ເຈົ້າແນ່ໃຈບໍ່? ທີ່ທ່ານຕ້ອງການທີ່ຈະລຶບບັນທຶກນີ້ແລະແກ້ໄຂມັນ ທ່ານອາດຈະສູນເສຍການໂຕ້ຕອບ, ບັນທຶກ, ແລະການຕອບກັບທັງໝົດ"
addToList: "ເພີ່ມໃສ່ລາຍຊື່"
+addToAntenna: "ເພີ່ມໃສ່ເສົາອາກາດ"
sendMessage: "ສົ່ງຂໍ້ຄວາມ"
copyRSS: "ສຳເນົາ RSS"
copyUsername: "ສຳເນົາຊື່ຜູ້ໃຊ້"
+copyUserId: "ສຳເນົາ ID ຜູ້ໃຊ້"
+copyNoteId: "ສຳເນົາ ID ບັນທຶກ"
+copyFileId: "ສຳເນົາ ID ໄຟລ໌"
+copyFolderId: "ສຳເນົາ ID ໂຟນເດີ"
+copyProfileUrl: "ສຳເນົາ URL ໂປຣໄຟລ໌"
searchUser: "ຄົ້ນຫາຜູ້ໃຊ້"
reply: "ຕອບໄປທີ"
loadMore: "ໂຫຼດເພີ່ມເຕີມ"
@@ -109,6 +116,7 @@ sensitive: "NSFW"
add: "ເພີ່ມ"
reaction: "ປະຕິກິລິຍາ"
reactions: "ປະຕິກິລິຍາ"
+attachCancel: "ເອົາໄຟລ໌ແນບ"
mute: "ປີດສຽງ"
unmute: "ເປີດສຽງ"
block: "ບ໋ອກ"
@@ -116,6 +124,10 @@ unblock: "ຍົກເລີກກາຮົບລັອກ"
suspend: "ລະງັບ"
unsuspend: "ເຊົາລະງັບ"
selectList: "ເລືອກບັນຊີລາຍການ"
+editList: "ແກ້ໄຂລາຍຊື່"
+selectChannel: "ເລືອກຊ່ອງ"
+selectAntenna: "ເລືອກເສົາອາກາດ"
+editAntenna: "ແກ້ໄຂເສົາອາກາດ"
selectWidget: "ເລືອກວິກເຈັດ"
editWidgets: "ແກ້ໄຂ Widget"
editWidgetsExit: "ສຳເລັດແລ້ວ"
@@ -125,6 +137,7 @@ emojis: "ອີໂມຈິ"
emojiName: "ຊື່ Emoji"
emojiUrl: "URL ອີໂມຈິ"
addEmoji: "ຕື່ມອີໂມຈິ"
+settingGuide: "ການຕັ້ງຄ່າທີ່ແນະນໍາ"
flagAsBot: "ໝາຍບັນຊີນີ້ເປັນບັອດ"
flagAsCat: "ໝາຍບັນຊີນີ້ເປັນແມວ"
flagAsCatDescription: "ເປີດໃຊ້ຕົວເລືອກນີ້ເພື່ອໝາຍບັນຊີນີ້ເປັນແມວ"
@@ -133,10 +146,13 @@ flagShowTimelineRepliesDescription: "ສະແດງການຕອບກັບ
autoAcceptFollowed: "ອະນຸມັດອັດຕະໂນມັດຕາມຄຳຮ້ອງຂໍຈາກຜູ້ໃຊ້ທີ່ທ່ານກຳລັງຕິດຕາມຢູ່"
addAccount: "ເພີ່ມບັນຊີ"
loginFailed: "ການເຂົ້າສູ່ລະບົບບໍ່ສຳເລັດ"
+showOnRemote: "ເບິ່ງຢູ່ໃນຕົວຢ່າງໄລຍະໄກ"
general: "ທົ່ວໄປ"
wallpaper: "ພາບພື້ນຫລັງ"
setWallpaper: "ຕັ້ງເປັນພາບພື້ນຫຼັງ"
+removeWallpaper: "ລຶບຮູບວໍເປເປີອອກ"
searchWith: "ຊອກຫາ: {q}"
+youHaveNoLists: "ທ່ານບໍ່ມີລາຍການໃດໆ"
proxyAccount: "ບັນຊີພຣັອກຊີ"
host: "ໂຮດສ"
selectUser: "ເລືອກຜູ້ໃຊ້"
@@ -155,7 +171,9 @@ operations: "ການດຳເນີນງານ"
software: "ຊອບແວ"
version: "ສະບັບ"
metadata: "Metadata"
+withNFiles: "{n} ໄຟລ໌(s)"
monitor: "ຈໍພາບ"
+jobQueue: "ຄິວວຽກ"
cpuAndMemory: "CPU ແລະ ຫນ່ວຍຄວາມຈໍາ"
network: "ເຄືອຂ່າຍ"
disk: "ດິສກ໌"
@@ -248,7 +266,6 @@ inputNewDescription: "ໃສ່ຄຳບັນຍາຍໃໝ່"
inputNewFolderName: "ໃສ່ຊື່ໂຟນເດີໃໝ່"
circularReferenceFolder: "ໂຟນເດີປາຍທາງແມ່ນໂຟນເດີຍ່ອຍຂອງໂຟນເດີທີ່ທ່ານຕ້ອງການຍ້າຍ"
rename: "ປ່ຽນຊື່"
-nsfw: "NSFW"
watch: "ເບິ່ງ"
unwatch: "ຢຸດເບິ່ງ"
accept: "ອະນຸຍາດ"
@@ -344,6 +361,7 @@ _widgets:
timeline: "ເສັ້ນກຳນົດເວລາ"
activity: "ກິດຈະກຳ"
federation: "ສະຫະພັນ"
+ jobQueue: "ຄິວວຽກ"
_userList:
chooseList: "ເລືອກບັນຊີລາຍການ"
_cw:
diff --git a/locales/nl-NL.yml b/locales/nl-NL.yml
index 6bca484f14..ae2881a7d4 100644
--- a/locales/nl-NL.yml
+++ b/locales/nl-NL.yml
@@ -20,6 +20,7 @@ noNotes: "Geen notities"
noNotifications: "Geen meldingen"
instance: "Server"
settings: "Instellingen"
+notificationSettings: "Notificatie instellingen"
basicSettings: "Basisinstellingen"
otherSettings: "Overige instellingen"
openInWindow: "In een venster openen"
@@ -48,8 +49,15 @@ delete: "Verwijderen"
deleteAndEdit: "Verwijderen en bewerken"
deleteAndEditConfirm: "Weet je zeker dat je deze notitie wilt verwijderen en dan bewerken? Je verliest alle reacties, herdelingen en antwoorden erop."
addToList: "Aan lijst toevoegen"
+addToAntenna: "Voeg toe aan antenne"
sendMessage: "Verstuur bericht"
+copyRSS: "Kopieer RSS"
copyUsername: "Kopiëren gebruikersnaam "
+copyUserId: "Kopieer gebruiker ID"
+copyNoteId: "Kopieer notitie ID"
+copyFileId: "Kopieer veld ID"
+copyFolderId: "Kopieer folder ID"
+copyProfileUrl: "Kopieer profiel URL"
searchUser: "Zoeken een gebruiker"
reply: "Antwoord"
loadMore: "Laad meer"
@@ -296,7 +304,6 @@ copyUrl: "URL kopiëren"
rename: "Hernoemen"
avatar: "Avatar"
banner: "Banner"
-nsfw: "NSFW"
whenServerDisconnected: "Wanneer de verbinding met de server wordt onderbroken"
disconnectedFromServer: "Verbinding met de server onderbroken."
reload: "Verversen"
diff --git a/locales/package.json b/locales/package.json
new file mode 100644
index 0000000000..bedb411a91
--- /dev/null
+++ b/locales/package.json
@@ -0,0 +1,3 @@
+{
+ "type": "module"
+}
diff --git a/locales/pl-PL.yml b/locales/pl-PL.yml
index 24eee60bae..8b6b4be7d0 100644
--- a/locales/pl-PL.yml
+++ b/locales/pl-PL.yml
@@ -299,7 +299,6 @@ copyUrl: "Skopiuj adres URL"
rename: "Zmień nazwę"
avatar: "Awatar"
banner: "Baner"
-nsfw: "NSFW"
whenServerDisconnected: "Po utracie połączenia z serwerem"
disconnectedFromServer: "Utracono połączenie z serwerem."
reload: "Odśwież"
@@ -955,10 +954,6 @@ _aboutMisskey:
donate: "Przekaż darowiznę na Misskey"
morePatrons: "Naprawdę doceniam wsparcie ze strony wielu niewymienionych tu osób. Dziękuję! 🥰"
patrons: "Wspierający"
-_nsfw:
- respect: "Ukrywaj media NSFW"
- ignore: "Nie ukrywaj mediów NSFW"
- force: "Ukrywaj wszystkie media"
_instanceTicker:
none: "Nigdy nie pokazuj"
remote: "Pokaż dla zdalnych użytkowników"
diff --git a/locales/pt-PT.yml b/locales/pt-PT.yml
index e7b43f6380..29d7de19c2 100644
--- a/locales/pt-PT.yml
+++ b/locales/pt-PT.yml
@@ -294,7 +294,6 @@ copyUrl: "Copiar URL"
rename: "Renomear"
avatar: "Avatar"
banner: "Capa"
-nsfw: "Conteúdo sensível"
whenServerDisconnected: "Quando a conexão com o servidor é perdida"
disconnectedFromServer: "Desconectado do servidor"
reload: "Recarregar"
diff --git a/locales/ro-RO.yml b/locales/ro-RO.yml
index 6ad45d0636..2d3099858d 100644
--- a/locales/ro-RO.yml
+++ b/locales/ro-RO.yml
@@ -294,7 +294,6 @@ copyUrl: "Copiază URL"
rename: "Redenumește"
avatar: "Avatar"
banner: "Banner"
-nsfw: "NSFW"
whenServerDisconnected: "Când pierzi conexiunea cu serverul"
disconnectedFromServer: "Conecțiunea cu serverul a fost pierdută"
reload: "Reîncarcă"
diff --git a/locales/ru-RU.yml b/locales/ru-RU.yml
index e92449fdb9..080ebf1667 100644
--- a/locales/ru-RU.yml
+++ b/locales/ru-RU.yml
@@ -52,6 +52,11 @@ addToList: "Добавить в список"
sendMessage: "Отправить сообщение"
copyRSS: "Скопировать RSS"
copyUsername: "Скопировать имя пользователя"
+copyUserId: "Скопировать ID пользователя"
+copyNoteId: "Скопировать ID заметки"
+copyFileId: "Скопировать ID файла"
+copyFolderId: "Скопировать ID папки"
+copyProfileUrl: "Скопировать URL профиля "
searchUser: "Поиск людей"
reply: "Ответить"
loadMore: "Показать еще"
@@ -134,8 +139,10 @@ unblockConfirm: "Разблокировать этот аккаунт?"
suspendConfirm: "Заморозить этот аккаунт?"
unsuspendConfirm: "Разморозить этот аккаунт?"
selectList: "Выберите список"
+editList: "Редактировать список"
selectChannel: "Выберите канал"
selectAntenna: "Выберите антенну"
+editAntenna: "Редактировать антенну"
selectWidget: "Выберите виджет"
editWidgets: "Редактировать виджеты"
editWidgetsExit: "Готово"
@@ -309,7 +316,6 @@ copyUrl: "Копировать ссылку"
rename: "Переименовать"
avatar: "Аватар"
banner: "Шапка"
-nsfw: "Содержимое не для всех"
whenServerDisconnected: "Когда соединение с сервером потеряно"
disconnectedFromServer: "Разорвано соединение с сервером"
reload: "Перезагрузить"
@@ -790,6 +796,7 @@ noMaintainerInformationWarning: "Не заполнены сведения об
noBotProtectionWarning: "Ботозащита не настроена"
configure: "Настроить"
postToGallery: "Опубликовать в галерею"
+postToHashtag: "Опубликовать пост с этим хештегом"
gallery: "Галерея"
recentPosts: "Недавние публикации"
popularPosts: "Популярные публикации"
@@ -1395,10 +1402,6 @@ _aboutMisskey:
donate: "Пожертвование на Misskey"
morePatrons: "Большое спасибо и многим другим, кто принял участие в этом проекте! 🥰"
patrons: "Материальная поддержка"
-_nsfw:
- respect: "Скрывать содержимое не для всех"
- ignore: "Показывать содержимое не для всех"
- force: "Скрывать вообще все файлы"
_instanceTicker:
none: "Не показывать"
remote: "Только для других сайтов"
diff --git a/locales/sk-SK.yml b/locales/sk-SK.yml
index 3e96119389..f4c598ac83 100644
--- a/locales/sk-SK.yml
+++ b/locales/sk-SK.yml
@@ -303,7 +303,6 @@ copyUrl: "Kopírovať URL"
rename: "Premenovať"
avatar: "Avatar"
banner: "BAnner"
-nsfw: "NSFW"
whenServerDisconnected: "Keď sa stratí spojenie so serverom"
disconnectedFromServer: "Spojenie so serverom bolo prerušené"
reload: "Obnoviť"
@@ -1009,10 +1008,6 @@ _aboutMisskey:
donate: "Podporiť Misskey"
morePatrons: "Takisto oceňujeme podporu mnoých ďalších, ktorí tu nie sú uvedení. Ďakujeme! 🥰"
patrons: "Prispievatelia"
-_nsfw:
- respect: "Skryť NSFW médiá"
- ignore: "Neskrývať NSFW médiá"
- force: "Skryť všetky médiá"
_instanceTicker:
none: "Nikdy nezobrazovať"
remote: "Zobraziť pre vzdialených používateľov"
diff --git a/locales/sv-SE.yml b/locales/sv-SE.yml
index 7a00e3fcea..07f43afe2e 100644
--- a/locales/sv-SE.yml
+++ b/locales/sv-SE.yml
@@ -20,6 +20,7 @@ noNotes: "Inga noteringar"
noNotifications: "Inga notifikationer"
instance: "Instanser"
settings: "Inställningar"
+notificationSettings: "Notifieringsinställningar"
basicSettings: "Basinställningar"
otherSettings: "Andra inställningar"
openInWindow: "Öppna i ett fönster"
@@ -51,6 +52,10 @@ addToList: "Lägg till i lista"
sendMessage: "Skicka ett meddelande"
copyRSS: "Kopiera RSS"
copyUsername: "Kopiera användarnamn"
+copyUserId: "Kopiera användar-ID"
+copyNoteId: "Kopiera noter-ID"
+copyFileId: "Kopiera Fil-ID"
+copyFolderId: "Kopiera mapp-ID"
searchUser: "Sök användare"
reply: "Svara"
loadMore: "Ladda mer"
@@ -103,6 +108,8 @@ renoted: "Omnoterad."
cantRenote: "Inlägget kunde inte bli omnoterat."
cantReRenote: "En omnotering kan inte bli omnoterad."
quote: "Citat"
+inChannelRenote: "Omnotera inom kanalen"
+inChannelQuote: "I kanal citat"
pinnedNote: "Fästad not"
pinned: "Fäst till profil"
you: "Du"
@@ -129,7 +136,10 @@ unblockConfirm: "Är du säkert att du vill avblockera kontot?"
suspendConfirm: "Är du säker att du vill suspendera detta konto?"
unsuspendConfirm: "Är du säker att du vill avsuspendera detta konto?"
selectList: "Välj lista"
+editList: "Redigera lista"
+selectChannel: "Välj en kanal"
selectAntenna: "Välj en antenn"
+editAntenna: "Redigera en antenn"
selectWidget: "Välj en widget"
editWidgets: "Redigera widgets"
editWidgetsExit: "Avsluta redigering"
@@ -256,6 +266,9 @@ noMoreHistory: "Det finns ingen mer historik"
startMessaging: "Starta en chatt"
nUsersRead: "läst av {n}"
agreeTo: "Jag accepterar {0}"
+agree: "Överens"
+termsOfService: "Användarvillkor"
+start: "Kom igång"
home: "Hem"
remoteUserCaution: "Då denna användaren kommer från en fjärrinstans, kan informationen visad vara ofullständig."
activity: "Aktivitet"
@@ -297,10 +310,10 @@ copyUrl: "Kopiera URL"
rename: "Byt namn"
avatar: "Profilbild"
banner: "Banner"
-nsfw: "Känsligt innehåll"
reload: "Ladda om"
doNothing: "Ignorera"
reloadConfirm: "Vill du ladda om tidslinjen?"
+watch: "Titta"
accept: "Tillåt"
reject: "Neka"
normal: "Normal"
@@ -320,16 +333,31 @@ connectService: "Anslut"
disconnectService: "Koppla från"
enableLocalTimeline: "Aktivera lokal tidslinje"
enableGlobalTimeline: "Aktivera global tidslinje"
+registration: "Registrera"
enableRegistration: "Aktivera registrering av nya användare"
+invite: "Inbjudan"
inMb: "I megabyte"
iconUrl: "URL till profilbilden"
bannerUrl: "URL till banner-bilden"
+basicInfo: "Grundläggande info"
+pinnedUsers: "Fästa användare"
+pinnedPages: "Fästa sidor"
pinnedNotes: "Fästad not"
+hcaptcha: "hCaptcha"
enableHcaptcha: "Aktivera hCaptcha"
+hcaptchaSiteKey: "Webbplatsnyckel"
+hcaptchaSecretKey: "Hemlig nyckel"
+recaptcha: "reCAPTCHA"
enableRecaptcha: "Aktivera reCAPTCHA"
+recaptchaSiteKey: "Webbplatsnyckel"
+recaptchaSecretKey: "Hemlig nyckel"
+turnstile: "Turnstile"
enableTurnstile: "Aktivera Turnstile"
+turnstileSiteKey: "Webbplatsnyckel"
+turnstileSecretKey: "Hemlig nyckel"
antennas: "Antenner"
manageAntennas: "Hantera Antenner"
+name: "Namn"
antennaSource: "Antennkälla"
antennaKeywords: "Nyckelord att lyssna efter"
antennaExcludeKeywords: "Nyckelord att exkludera"
@@ -338,39 +366,112 @@ notifyAntenna: "Notifiera om nya noter"
withFileAntenna: "Endast noter med filer"
enableServiceworker: "Aktivera pushnotiser i denna webbläsaren"
antennaUsersDescription: "Ange ett användarnamn per linje"
+withReplies: "Med svar"
+notesAndReplies: "Inlägg och svar"
+silence: "Tystnad"
recentlyUpdatedUsers: "Nyligen aktiva användare"
recentlyRegisteredUsers: "Nyligen registrerade användare"
+exploreFediverse: "Utforska Fediverse"
+popularTags: "Populära taggar"
userList: "Listor"
+about: "Om"
aboutMisskey: "Om Misskey"
administrator: "Administratör"
+2fa: "Tvåfaktorsautentisering"
+totp: "Autentiseringsapp"
+moderator: "Moderator"
passwordLessLogin: "Lösenordsfri inloggning"
passwordLessLoginDescription: "Tillåter lösenordsfri inloggning med endast en säkerhetsnyckel eller en passkey."
resetPassword: "Återställ Lösenord"
newPasswordIs: "Det nya lösenordet är \"{password}\""
share: "Dela"
+help: "Hjälp"
+close: "Stäng"
+invites: "Inbjudan"
+members: "Medlemmar"
+transfer: "Överför"
+text: "Text"
enable: "Aktivera"
+next: "Nästa"
+invitations: "Inbjudan"
+invitationCode: "Inbjudningskod"
+available: "Tillgängligt"
weakPassword: "Svagt Lösenord"
normalPassword: "Medel Lösenord"
strongPassword: "Starkt Lösenord"
signinFailed: "Kan inte logga in. Det angivna användarnamnet eller lösenordet är felaktigt."
+or: "eller"
+language: "Språk"
+aboutX: "Om {x}"
+category: "Kategori"
+tags: "Taggar"
+createAccount: "Skapa ett konto"
+existingAccount: "Existerande konto"
+regenerate: "Regenerera"
+fontSize: "Textstorlek"
+openImageInNewTab: "Öppna bild i ny flik"
+clientSettings: "Klientinställningar"
+accountSettings: "Kontoinställningar"
+numberOfDays: "Antal dagar"
+deleteAll: "Radera alla"
+sounds: "Ljud"
+sound: "Ljud"
+listen: "Lyssna"
+none: "Ingen"
+volume: "Volym"
+chooseEmoji: "Välj en emoji"
+recentUsed: "Senast använd"
+install: "Installera"
+uninstall: "Avinstallera"
+menu: "Meny"
serviceworkerInfo: "Måste vara aktiverad för pushnotiser."
enableInfiniteScroll: "Ladda mer automatiskt"
enablePlayer: "Öppna videospelare"
+permission: "Behörigheter"
enableAll: "Aktivera alla"
+edit: "Ändra"
enableEmail: "Aktivera epost-utskick"
+email: "E-post"
smtpHost: "Värd"
smtpUser: "Användarnamn"
smtpPass: "Lösenord"
emptyToDisableSmtpAuth: "Lämna användarnamn och lösenord tomt för att avaktivera SMTP verifiering"
+logs: "Logg"
+channel: "kanal"
+create: "Skapa"
+other: "Mer"
+send: "Skicka"
+openInNewTab: "Öppna i ny flik"
+createNew: "Skapa ny"
+i18nInfo: "Misskey översätts till många olika språk av volontärer. Du kan hjälpa till med översättningen på {link}."
+accountInfo: "Kontoinformation"
+clips: "Klipp"
+duplicate: "Duplicera"
+reloadToApplySetting: "Inställningen tillämpas efter sidan laddas om. Vill du göra det nu?"
clearCache: "Rensa cache"
onlineUsersCount: "{n} användare är online"
+nNotes: "{n} Noter"
+backgroundColor: "Bakgrundsbild"
+textColor: "Text"
+youAreRunningUpToDateClient: "Klienten du använder är uppdaterat."
+newVersionOfClientAvailable: "Ny version av klienten är tillgänglig."
+publish: "Publicera"
+typingUsers: "{users} skriver"
+info: "Om"
enabled: "Aktiverad"
user: "Användare"
+customCssWarn: "Den här inställningen borde bara ändrats av en som har rätta kunskaper. Om du ställer in det här fel så kan klienten sluta fungera rätt."
global: "Global"
squareAvatars: "Visa fyrkantiga profilbilder"
+sent: "Skicka"
+misskeyUpdated: "Misskey har uppdaterats!"
incorrectPassword: "Fel lösenord."
+welcomeBackWithName: "Välkommen tillbaka, {name}"
+clickToFinishEmailVerification: "Tryck på [{ok}] för att slutföra bekräftelsen på e-postadressen."
searchByGoogle: "Sök"
file: "Filer"
+cannotUploadBecauseNoFreeSpace: "Kan inte ladda upp filen för att det finns inget lagringsutrymme kvar."
+cannotUploadBecauseExceedsFileSizeLimit: "Kan inte ladda upp filen för att den är större än filstorleksgränsen."
enableAutoSensitive: "Automatisk NSFW markering"
enableAutoSensitiveDescription: "Tillåter automatiskt detektering och marketing av NSFW media genom Maskininlärning när möjligt. Även om denna inställningen är avaktiverad, kan det vara aktiverat på hela instansen."
pushNotification: "Pushnotiser"
@@ -381,12 +482,16 @@ pushNotificationNotSupported: "Din webbläsare eller instans har inte stöd för
windowMaximize: "Maximera"
windowMinimize: "Minimera"
windowRestore: "Återställ"
+pleaseDonate: "Misskey är en gratis programvara som används på {host}. Donera gärna för att göra utvecklingen ständigt, tack!"
resetPasswordConfirm: "Återställ verkligen ditt lösenord?"
+dataSaver: "Databesparing"
_achievements:
_types:
_open3windows:
title: "Flera Fönster"
description: "Ha minst 3 fönster öppna samtidigt"
+_ffVisibility:
+ public: "Publicera"
_email:
_follow:
title: "följde dig"
@@ -426,6 +531,7 @@ _visibility:
home: "Hem"
followers: "Följare"
_profile:
+ name: "Namn"
username: "Användarnamn"
changeAvatar: "Ändra profilbild"
changeBanner: "Ändra banner"
@@ -461,6 +567,8 @@ _deck:
tl: "Tidslinje"
antenna: "Antenner"
list: "Listor"
+ channel: "kanal"
mentions: "Omnämningar"
_webhookSettings:
+ name: "Namn"
active: "Aktiverad"
diff --git a/locales/th-TH.yml b/locales/th-TH.yml
index d8e68202d7..82032b06c2 100644
--- a/locales/th-TH.yml
+++ b/locales/th-TH.yml
@@ -1,9 +1,9 @@
---
_lang_: "ภาษาไทย"
-headlineMisskey: "เชื่อมต่อเครือข่ายโดยโน้ต"
-introMisskey: "ยินดีต้อนรับจ้าาา! Misskey เป็นบริการไมโครบล็อกโอเพ่นซอร์ส แบบการกระจายอำนาจ\nสร้าง \"โน้ต\" เพื่อแบ่งปันความคิดของคุณกับทุกคนรอบตัวคุณกันเถอะ 📡\nด้วยการ \"รีแอคชั่นผู้คน\" คุณยังสามารถแสดงความรู้สึกของคุณเกี่ยวกับบันทึกของทุกคนได้อย่างรวดเร็ว 👍\n\nแล้วมาท่องสำรวจโลกใบใหม่กันเถอะ! 🚀"
+headlineMisskey: "เชื่อมต่อระบบ Network ด้วย Note"
+introMisskey: "ยินดีต้อนรับทุกคนจ้า! Misskey คือ บริการไมโครบล็อกกิ้ง (MicroBlogging) แบบกระจายศูนย์อำนาจ (Decentralized) \n\nเขียน \"โน้ต (Note)\" เพื่อส่งต่อเรื่องราวของคุณให้ทั้งโลกได้รับรู้📡\nและอย่าลืมที่จะ \"React\" กับเรื่องราวของคนอื่น ๆ ด้วย! 👍\n\nมุ่งสู่โลกใบใหม่กันเถอะ🚀"
poweredByMisskeyDescription: "{name} เป็นส่วนหนึ่งในบริการที่ถูกขับเคลื่อนโดยแพลตฟอร์มโอเพ่นซอร์ส Misskey (เรียกว่า \"อินสแตนซ์ Misskey\")"
-monthAndDay: "{เดือน}/{วัน}"
+monthAndDay: "{month}/{day}"
search: "ค้นหา"
notifications: "การเเจ้งเตือน"
username: "ชื่อผู้ใช้"
@@ -15,7 +15,7 @@ gotIt: "เข้าใจแล้ว !"
cancel: "ยกเลิก"
noThankYou: "ไม่เป็นไร"
enterUsername: "ใส่ชื่อผู้ใช้"
-renotedBy: "รีโน้ตโดย {ผู้ใช้}"
+renotedBy: "รีโน้ตโดย {user}"
noNotes: "ไม่มีโน้ต"
noNotifications: "ไม่มีการแจ้งเตือน"
instance: "อินสแตนซ์"
@@ -49,9 +49,15 @@ delete: "ลบ"
deleteAndEdit: "ลบและแก้ไข"
deleteAndEditConfirm: "นายแน่ใจแล้วเหรอ? ว่าต้องการลบโน้ตนี้และแก้ไข คุณอาจจะสูญเสียการโต้ตอบ, โน้ต, และการตอบกลับทั้งหมดได้นะ"
addToList: "เพิ่มในลิสต์"
+addToAntenna: "เพิ่มไปยังเสาอากาศ"
sendMessage: "ส่งข้อความ"
copyRSS: "คัดลอก RSS"
copyUsername: "คัดลอกชื่อผู้ใช้"
+copyUserId: "คัดลอก ID ผู้ใช้"
+copyNoteId: "คัดลอก ID โน้ต "
+copyFileId: "คัดลอกไฟล์ ID"
+copyFolderId: "คัดลอกโฟลเดอร์ ID"
+copyProfileUrl: "คัดลอกโปรไฟล์ URL"
searchUser: "ค้นหาผู้ใช้งาน"
reply: "ตอบกลับ"
loadMore: "โหลดเพิ่มเติม"
@@ -73,8 +79,8 @@ unfollowConfirm: "นายแน่ใจแล้วหรอว่าต้
exportRequested: "เมื่อคุณได้ร้องขอการส่งออก อาจจะต้องใช้เวลาสักครู่ และจะถูกเพิ่มในไดรฟ์ของคุณเมื่อเสร็จสิ้นแล้ว"
importRequested: "เมื่อคุณได้ร้องขอการนำเข้า อาจจะต้องใช้เวลาสักครู่นะ"
lists: "รายการ"
-noLists: "คุณไม่มีลิสต์ใดๆนะ"
-note: "ตัวโน้ต"
+noLists: "คุณไม่มีลิสต์ใด ๆ"
+note: " โน้ต"
notes: "ตัวโน้ต"
following: "กำลังติดตาม"
followers: "ผู้ติดตาม"
@@ -100,7 +106,7 @@ followRequestPending: "กำลังรอดำเนินการร้อ
enterEmoji: "ใส่อีโมจิ"
renote: "รีโน้ต"
unrenote: "เลิกรีโน้ต"
-renoted: "รีโน้ตแล้วนะ"
+renoted: "รีโน้ตแล้ว"
cantRenote: "โพสต์นี้ไม่สามารถรีโน้ตไว้ใหม่ได้นะ"
cantReRenote: "ไม่สามารถรีโน้ตเอาไว้ใหม่ได้นะ"
quote: "อ้างคำพูด"
@@ -108,7 +114,7 @@ inChannelRenote: "รีโน้ตช่องแชลแนลเท่า
inChannelQuote: "อ้างช่องเท่านั้น"
pinnedNote: "โน้ตที่ปักหมุดเอาไว้"
pinned: "ปักหมุดไปยังโปรไฟล์"
-you: "ตัวเอง"
+you: "คุณ"
clickToShow: "คลิกเพื่อแสดง"
sensitive: "เนื้อหาที่ละเอียดอ่อน NSFW"
add: "เพิ่ม"
@@ -134,8 +140,10 @@ unblockConfirm: "คุณแน่ใจแล้วเหรอ? ว่าต
suspendConfirm: "นายแน่ใจแล้วเหรอว่าต้องการระงับบัญชีนี้อ่ะ?"
unsuspendConfirm: "นายแน่ใจแล้วหรอ? ว่าต้องการยกเลิกการระงับบัญชีนี้"
selectList: "เลือกรายการ"
+editList: "แก้ไขรายการ"
selectChannel: "เลือกแชนแนล"
selectAntenna: "เลือกเสาอากาศ"
+editAntenna: "แก้ไขเสาอากาศ"
selectWidget: "เลือกวิดเจ็ต"
editWidgets: "แก้ไขวิดเจ็ต"
editWidgetsExit: "เรียบร้อย"
@@ -148,6 +156,8 @@ addEmoji: "แทรกอีโมจิ"
settingGuide: "การตั้งค่าที่แนะนำ"
cacheRemoteFiles: "แคชไฟล์ระยะไกล"
cacheRemoteFilesDescription: "เมื่อปิดใช้งานการตั้งค่านี้ ไฟล์ระยะไกลนั้นจะถูกโหลดโดยตรงจากอินสแตนซ์ระยะไกล แต่กรณีการปิดใช้งานนี้จะช่วยลดปริมาณการใช้พื้นที่จัดเก็บข้อมูล แต่เพิ่มปริมาณการใช้งาน เพราะเนื่องจากจะไม่มีการสร้างภาพขนาดย่อ"
+cacheRemoteSensitiveFiles: "ไฟล์ระยะไกลที่มีความละเอียดอ่อนแคช"
+cacheRemoteSensitiveFilesDescription: "เมื่อปิดการใช้งานแล้วการตั้งค่านี้ ไฟล์รีโมตที่มีความละเอียดอ่อนนั้นจะถูกโหลดโดยตรงจากอินสแตนซ์ระยะไกลโดยที่ไม่มีการแคช"
flagAsBot: "ทำเครื่องหมายบอกว่าบัญชีนี้เป็นบอท"
flagAsBotDescription: "การเปิดใช้งานตัวเลือกนี้หากบัญชีนี้ถูกควบคุมโดยนักเขียนโปรแกรม หรือ ถ้าหากเปิดใช้งาน มันจะทำหน้าที่เป็นแฟล็กสำหรับนักพัฒนารายอื่นๆ และเพื่อป้องกันการโต้ตอบแบบไม่มีที่สิ้นสุดกับบอทตัวอื่นๆ และยังสามารถปรับเปลี่ยนระบบภายในของ Misskey เพื่อปฏิบัติต่อบัญชีนี้เป็นบอท"
flagAsCat: "ทำเครื่องหมายบอกว่าบัญชีนี้เป็นแมว"
@@ -164,7 +174,7 @@ wallpaper: "วอลล์เปเปอร์"
setWallpaper: "ตั้งวอลเปเปอร์"
removeWallpaper: "นำวอลเปเปอร์ออก"
searchWith: "ค้นหา: {q}"
-youHaveNoLists: "รายการนี้ว่างเปล่า"
+youHaveNoLists: "คุณไม่มีลิสต์ใด ๆ "
followConfirm: "คุณแน่ใจแล้วหรอว่าต้องการที่จะติดตาม {name}?"
proxyAccount: "บัญชี พร็อกซี่"
proxyAccountDescription: "บัญชีพร็อกซี่ คือ บัญชีที่จะทำหน้าที่เป็นผู้ติดตามระยะไกลสำหรับผู้ใช้งานที่อยู่ภายใต้ด้วยเงื่อนไขบางอย่าง ยกตัวอย่าง เช่น เมื่อมีผู้ใช้งานนั้นได้เพิ่มผู้ใช้งานจากระยะไกลลงในรายการ แต่กิจกรรมของผู้ใช้ในระยะไกลนั้นจะไม่ถูกส่งไปยังอินสแตนซ์หากไม่มีผู้ใช้งานในพื้นที่ติดตามผู้ใช้รายนั้น ดังนั้นบัญชีพร็อกซีนี้จะติดตามแทน"
@@ -186,7 +196,7 @@ blockThisInstance: "บล็อกอินสแตนซ์นี้"
operations: "ดำเนินการ"
software: "ซอฟต์แวร์"
version: "เวอร์ชั่น"
-metadata: "ข้อมูลเมตา"
+metadata: "Metadata"
withNFiles: "{n} ไฟล์(s)"
monitor: "มอนิเตอร์"
jobQueue: "คิวงาน"
@@ -213,7 +223,7 @@ intro: "การติดตั้ง Misskey เสร็จสิ้นแล
done: "เสร็จสิ้น"
processing: "กำลังประมวลผล..."
preview: "แสดงตัวอย่าง"
-default: "ค่าตั้งต้น"
+default: "ค่าเริ่มต้น"
defaultValueIs: "ค่าเริ่มต้น: {value}"
noCustomEmojis: "ไม่มีอีโมจิ"
noJobs: "ไม่มีชิ้นงาน"
@@ -234,10 +244,10 @@ currentPassword: "รหัสผ่านปัจจุบัน"
newPassword: "รหัสผ่านใหม่"
newPasswordRetype: "ใส่รหัสผ่านใหม่อีกครั้ง"
attachFile: "แนบไฟล์"
-more: "เพิ่มเติม!"
+more: "เพิ่มเติม"
featured: "ไฮไลท์"
usernameOrUserId: "ชื่อผู้ใช้หรือรหัสผู้ใช้งาน"
-noSuchUser: "ไม่มีผู้ใช้นี้อยู่ในระบบ"
+noSuchUser: "ไม่พบผู้ใช้"
lookup: "การค้นหา"
announcements: "ประกาศ"
imageUrl: "url รูปภาพ"
@@ -282,7 +292,7 @@ themeForLightMode: "ธีมที่จะใช้ในโหมดแสง
themeForDarkMode: "ธีมที่จะใช้ในโหมดมืด"
light: "สว่าง"
dark: "มืด"
-lightThemes: "ธีมสีสว่าง"
+lightThemes: "ธีมสว่าง"
darkThemes: "ธีมมืด"
syncDeviceDarkMode: "ซิงค์โหมดมืดด้วยการตั้งค่ากับอุปกรณ์"
drive: "ไดรฟ์"
@@ -309,7 +319,7 @@ copyUrl: "คัดลอก URL"
rename: "เปลี่ยนชื่อ"
avatar: "ไอคอน"
banner: "แบนเนอร์"
-nsfw: "เนื้อหาที่ละเอียดอ่อน NSFW"
+displayOfSensitiveMedia: "แสดงผลสื่อละเอียดอ่อน"
whenServerDisconnected: "สูญเสียการเชื่อมต่อกับเซิร์ฟเวอร์"
disconnectedFromServer: "ถูกตัดการเชื่อมต่อออกจากเซิร์ฟเวอร์"
reload: "รีโหลด"
@@ -319,7 +329,7 @@ watch: "ดู"
unwatch: "หยุดดู"
accept: "ยอมรับ"
reject: "ปฏิเสธ"
-normal: "โหมดปกติ"
+normal: "ปกติ"
instanceName: "ชื่อ อินสแตนซ์"
instanceDescription: "คำอธิบายอินสแตนซ์"
maintainerName: "ผู้ดูแล"
@@ -328,9 +338,9 @@ tosUrl: "เงื่อนไขการให้บริการ URL"
thisYear: "ปีนี้"
thisMonth: "เดือนนี้"
today: "วันนี้"
-dayX: "{วัน}"
-monthX: "{เดือน}"
-yearX: "{ปี}"
+dayX: "{day}"
+monthX: "เดือน {month}"
+yearX: "{year}"
pages: "หน้า"
integration: "รวบรวม"
connectService: "เชื่อมต่อ"
@@ -790,6 +800,7 @@ noMaintainerInformationWarning: "ข้อมูลผู้ดูแลไม
noBotProtectionWarning: "ไม่ได้กำหนดค่าการป้องกันบอทนะ"
configure: "กำหนดค่า"
postToGallery: "สร้างโพสต์แกลเลอรี่ใหม่"
+postToHashtag: "โพสต์ไปที่แฮชแท็กนี้"
gallery: "แกลเลอรี่"
recentPosts: "โพสต์ล่าสุด"
popularPosts: "โพสต์ติดอันดับ"
@@ -823,6 +834,7 @@ translatedFrom: "แปลมาจาก {x}"
accountDeletionInProgress: "กำลังดำเนินการลบบัญชีอยู่"
usernameInfo: "ชื่อที่ระบุบัญชีของคุณจากผู้อื่นในเซิร์ฟเวอร์นี้ คุณสามารถใช้ตัวอักษร (a~z, A~Z), ตัวเลข (0~9) หรือขีดล่าง (_) ชื่อผู้ใช้ไม่สามารถเปลี่ยนแปลงได้ในภายหลัง"
aiChanMode: "โหมด Ai "
+devMode: "โหมดนักพัฒนา"
keepCw: "เก็บคำเตือนเนื้อหา"
pubSub: "บัญชีผับ/ย่อย"
lastCommunication: "การสื่อสารครั้งสุดท้ายล่าสุด"
@@ -832,6 +844,8 @@ breakFollow: "ลบผู้ติดตาม"
breakFollowConfirm: "ลบผู้ติดตามนี้ออกจริงหรอ?"
itsOn: "เปิดใช้งาน"
itsOff: "ปิดใช้งาน"
+on: "เปิด"
+off: "ปิด"
emailRequiredForSignup: "จำเป็นต้องการใช้ที่อยู่อีเมลสำหรับการสมัคร"
unread: "ไม่ได้อ่าน"
filter: "กรอง"
@@ -850,7 +864,7 @@ incorrectPassword: "รหัสผ่านไม่ถูกต้อง"
voteConfirm: "ยืนยันการโหวต \"{choice}\" มั้ย?"
hide: "ซ่อน"
useDrawerReactionPickerForMobile: "แสดงผล ตัวเลือกปฏิกิริยาเป็นลิ้นชักบนมือถือ"
-welcomeBackWithName: "ยินดีต้อนรับการกลับมานะค่ะ, {name}"
+welcomeBackWithName: "ยินดีต้อนรับการกลับมานะคะ, {name}"
clickToFinishEmailVerification: "กรุณาคลิก [{ok}] เพื่อดำเนินการยืนยันอีเมลให้เสร็จสมบูรณ์นะ"
overridedDeviceKind: "ประเภทอุปกรณ์"
smartphone: "สมาร์ทโฟน"
@@ -955,7 +969,7 @@ color: "สี"
manageCustomEmojis: "จัดการอีโมจิแบบกำหนดเอง"
youCannotCreateAnymore: "คุณถึงขีดจํากัดการสร้างแล้วนะ"
cannotPerformTemporary: "ไม่สามารถใช้การได้ชั่วคราว"
-cannotPerformTemporaryDescription: "การดําเนินการนี้ไม่สามารถดําเนินการได้ชั่วคราว เนื่องจากเกินขีดจํากัดการดําเนินการ กรุณารอสักครู่แล้วลองใหม่อีกครั้งนะค่ะ"
+cannotPerformTemporaryDescription: "ไม่สามารถดําเนินการได้ชั่วคราว เนื่องจากเกินขีดจํากัดการดําเนินการ กรุณารอสักครู่แล้วลองใหม่อีกครั้ง"
invalidParamError: "ข้อผิดพลาดพารามิเตอร์"
invalidParamErrorDescription: "คำขอพารามิเตอร์ไม่ถูกต้อง สิ่งนี้มักจะเกิดจากข้อผิดพลาด แต่อาจเกิดจากอินพุตเกินขีดจำกัดของขนาดหรือที่คล้ายกัน"
permissionDeniedError: "การดำเนินถูกปฏิเสธ"
@@ -977,20 +991,23 @@ joinThisServer: "ลงชื่อสมัครใช้ในอินสแ
exploreOtherServers: "มองหาอินสแตนซ์อื่น"
letsLookAtTimeline: "ลองดูที่ไทม์ไลน์"
disableFederationConfirm: "ปิดใช้งานสหพันธ์จริงๆหรอแน่ใจแล้วนะ?"
-disableFederationConfirmWarn: "แม้ว่าจะถูกยกเลิกเอาไว้โพสต์ดังกล่าวนั้นจะยังคงเป็นสาธารณะต่อไป เว้นแต่ว่า...จะตั้งค่าเป็นอย่างอื่น โดยปกติคุณไม่จำเป็นต้องทำตรงนี้หรอกนะค่ะ"
+disableFederationConfirmWarn: "โพสต์จะยังคงเป็นสาธารณะต่อไป เว้นแต่จะตั้งค่าเป็นอย่างอื่น"
disableFederationOk: "ปิดการใช้งาน"
-invitationRequiredToRegister: "อินสแตนซ์นี้เป็นแบบรับเชิญเท่านั้น คุณต้องป้อนรหัสเชิญที่ถูกต้องถึงจะลงทะเบียนได้นะค่ะ"
-emailNotSupported: "อินสแตนซ์นี้ไม่รองรับการส่งอีเมลนะค่ะ"
+invitationRequiredToRegister: "อินสแตนซ์นี้เป็นแบบรับเชิญเท่านั้น คุณต้องป้อนรหัสเชิญ เพื่องลงทะเบียนเข้าใช้งาน"
+emailNotSupported: "อินสแตนซ์นี้ไม่รองรับการส่งอีเมล"
postToTheChannel: "โพสต์ลงช่อง"
cannotBeChangedLater: "สิ่งนี้ไม่สามารถเปลี่ยนแปลงได้ในภายหลังนะ"
reactionAcceptance: "การยอมรับรีแอคชั่น"
likeOnly: "ที่ชอบเท่านั้น"
likeOnlyForRemote: "ไลค์สำหรับอินสแตนซ์ระยะไกลเท่านั้น"
+nonSensitiveOnly: "ไม่มีความอ่อนไหวเท่านั้น"
+nonSensitiveOnlyForLocalLikeOnlyForRemote: "ไม่มีความอ่อนไหวเท่านั้น (เฉพาะไลค์จากระยะไกลเท่านั้น)"
rolesAssignedToMe: "บทบาทที่ได้รับมอบหมายให้ฉัน"
resetPasswordConfirm: "รีเซ็ตรหัสผ่านของคุณจริงๆหรอ?"
sensitiveWords: "คำที่ละเอียดอ่อน"
sensitiveWordsDescription: "การเปิดเผยโน้ตทั้งหมดที่มีคำที่กำหนดค่าไว้จะถูกตั้งค่าเป็น \"หน้าแรก\" โดยอัตโนมัติ คุณยังสามารถแสดงหลายรายการได้โดยแยกรายการโดยใช้ตัวแบ่งบรรทัดได้นะ"
-notesSearchNotAvailable: "การค้นหาโน้ตไม่พร้อมใช้งานนะค่ะ"
+sensitiveWordsDescription2: "การใช้ช่องว่างนั้นอาจจะสร้างนิพจน์ AND และคำหลักที่มีเครื่องหมายทับล้อมรอบจะเปลี่ยนเป็นนิพจน์ทั่วไปนะ"
+notesSearchNotAvailable: "การค้นหาโน้ตไม่พร้อมใช้งาน"
license: "ใบอนุญาต"
unfavoriteConfirm: "ลบออกจากรายการโปรดแน่ใจหรอ?"
myClips: "คลิปของฉัน"
@@ -1025,29 +1042,84 @@ vertical: "แนวตั้ง"
horizontal: "ด้านข้าง"
position: "ตำแหน่ง"
serverRules: "กฎของเซิฟเวอร์"
-pleaseConfirmBelowBeforeSignup: "โปรดยืนยันด้านล่างก่อนกำลังลงชื่อสมัครนะค่ะ"
+pleaseConfirmBelowBeforeSignup: "โปรดยืนยันที่ด้านล่างก่อนสมัครใช้งาน"
pleaseAgreeAllToContinue: "คุณต้องยอมรับทุกช่องตรงด้านบนเพื่อดำเนินการต่อค่ะ"
continue: "ดำเนินการต่อ"
preservedUsernames: "ชื่อผู้ใช้ที่สงวนไว้"
preservedUsernamesDescription: "ลิสต์ชื่อผู้ใช้ที่จะสำรองโดยคั่นด้วยการแบ่งบรรทัดนั้น เพราะสิ่งเหล่านี้จะไม่สามารถทำได้ในระหว่างการสร้างบัญชีตามปกติ บัญชีที่มีอยู่แล้วนั้นโดยใช้ชื่อผู้ใช้เหล่านี้จะไม่ได้รับผลกระทบอะไร"
createNoteFromTheFile: "เรียบเรียงโน้ตจากไฟล์นี้"
archive: "เก็บถาวร"
+channelArchiveConfirmTitle: "เก็บถาวรจริงๆ {name} มั้ย?"
+channelArchiveConfirmDescription: "ช่องที่ถูกเก็บถาวรแล้วนั้นจะไม่ปรากฏในรายการช่องหรือผลการค้นหานั้นอีกต่อไปไม่สามารถเพิ่มโพสต์ใหม่ได้อีกต่อไปนะ"
+thisChannelArchived: "ช่องนี้ถูกเก็บถาวรแล้วนะ"
+displayOfNote: "การแสดงโน้ต"
+initialAccountSetting: "ตั้งค่าโปรไฟล์"
youFollowing: "ติดตามแล้ว"
+preventAiLearning: "ปฏิเสธการใช้งาน ในการเรียนรู้ของเครื่อง (Generative AI)"
+preventAiLearningDescription: "การส่งคำร้องขอโปรแกรมรวบรวมข้อมูลไม่ให้ใช้ข้อความที่โพสต์หรือรูปภาพ ฯลฯ ในชุดข้อมูลแมชชีนเลิร์นนิง (Predictive / Generative AI) สิ่งนี้นั้นทำได้โดยการเพิ่มแฟล็กการตอบสนอง \"noai\" HTML ให้กับเนื้อหาที่เกี่ยวข้อง แต่อย่างไรก็ตามแล้ว การป้องกันโดยสมบูรณ์นั้นไม่สามารถทำได้ผ่านแฟล็กนี้เนื่องจากอาจจะทำให้ถูกเพิกเฉยได้"
options: "ตัวเลือกบทบาท"
+specifyUser: "ผู้ใช้เฉพาะ"
+failedToPreviewUrl: "ไม่สามารถดูตัวอย่างได้"
+update: "อัปเดต"
+rolesThatCanBeUsedThisEmojiAsReaction: "บทบาทที่สามารถใช้อิโมจินี้เป็นรีแอคชั่นได้"
+rolesThatCanBeUsedThisEmojiAsReactionEmptyDescription: "ถ้าหากไม่ได้ระบุบทบาท ทุกคนนั้นก็สามารถใช้อิโมจินี้เป็นการแสดงความรู้สึกได้นะ"
+rolesThatCanBeUsedThisEmojiAsReactionPublicRoleWarn: "บทบาทเหล่านี้ต้องเป็นสาธารณะ"
+cancelReactionConfirm: "ต้องการลบรีแอคชั่นของคุณจริงๆหรอ?"
+changeReactionConfirm: "ต้องการเปลี่ยนรีแอคชั่นของคุณจริงๆหรอ?"
+later: "ไว้ทีหลัง"
+goToMisskey: "ถึง Misskey"
+additionalEmojiDictionary: "พจนานุกรมอีโมจิเพิ่มเติม"
+installed: "ติดตั้งแล้ว"
+branding: "แบรนดิ้ง"
+enableServerMachineStats: "เผยแพร่สถานะฮาร์ดแวร์ของเซิร์ฟเวอร์"
+enableIdenticonGeneration: "เปิดใช้งานผู้ใช้สร้างตัวระบุ"
+turnOffToImprovePerformance: "การปิดส่วนนี้สามารถเพิ่มประสิทธิภาพได้"
+createInviteCode: "สร้างคำเชิญ"
+createWithOptions: "สร้างด้วยตัวเลือก"
+createCount: "จำนวนการเชิญ"
+inviteCodeCreated: "สร้างคำเชิญแล้ว"
+inviteLimitExceeded: "คุณสร้างคำเชิญเกินถึงขีดจำกัดแล้วนะ"
+createLimitRemaining: "ขีดจำกัดการเชิญ: {limit} ที่เหลืออยู่"
+inviteLimitResetCycle: "ขีดจำกัดนี้จะถูกรีเซ็ตเป็น {limit} ที่ {time}."
+expirationDate: "วันที่หมดอายุ"
+noExpirationDate: "ไม่มีหมดอายุ"
+inviteCodeUsedAt: "รหัสคำเชิญใช้แล้วที่"
+registeredUserUsingInviteCode: "ใช้คำเชิญแล้วโดย"
+waitingForMailAuth: "กำลังรอการยืนยันอีเมล"
+inviteCodeCreator: "สร้างการเชิญแล้วโดย"
+usedAt: "ใช้แล้วที่"
+unused: "ไม่ใช้แล้ว"
+used: "ใช้แล้ว"
+expired: "หมดอายุแล้ว"
+_initialAccountSetting:
+ accountCreated: "คุณได้สร้างบัญชีของคุณสำเร็จเรียบร้อยแล้ว!"
+ letsStartAccountSetup: "สำหรับผู้เริ่มต้นมาตั้งค่าโปรไฟล์ของคุณกันเถอะ"
+ letsFillYourProfile: "ก่อนอื่นมาตั้งค่าโปรไฟล์ของคุณ"
+ profileSetting: "ตั้งค่าโปรไฟล์"
+ privacySetting: "ตั้งค่าความเป็นส่วนตัว"
+ theseSettingsCanEditLater: "คุณสามารถเปลี่ยนการตั้งค่าเหล่านี้ได้ในภายหลังได้ตลอดเวลานะ"
+ youCanEditMoreSettingsInSettingsPageLater: "ยังมีการตั้งค่าอื่นๆ อีกมากมายที่คุณนั้นสามารถกำหนดค่าได้จาก \"การตั้งค่า\" เพื่อให้แน่ใจว่าได้เยี่ยมชมมันได้ภายหลังนะ"
+ followUsers: "ลองติดตามผู้ใช้บางคนที่คุณอาจจะสนใจเพื่อสร้างไทม์ไลน์ของคุณสิ !"
+ pushNotificationDescription: "กำลังเปิดใช้งานการแจ้งเตือนแบบพุชจะช่วยให้คุณได้รับการแจ้งเตือนจาก {name} โดยตรงบนอุปกรณ์ของคุณนะ"
+ initialAccountSettingCompleted: "ตั้งค่าโปรไฟล์เสร็จสมบูรณ์แล้ว!"
+ haveFun: "สนุกกับ {name}!"
+ ifYouNeedLearnMore: "ถ้าหากคุณต้องการเรียนรู้เพิ่มเติมเกี่ยวกับวิธีใช้ {ชื่อ} (Misskey) กรุณาไปที่ {link}"
+ skipAreYouSure: "ต้องการข้ามการตั้งค่าโปรไฟล์จริงๆแบบนั้นหรอ?"
+ laterAreYouSure: "ต้องการตั้งค่าโปรไฟล์ในภายหลังจริงๆอย่างงั้นหรอ?"
_serverRules:
description: "ชุดของกฎที่จะแสดงก่อนการลงทะเบียนเราขอแนะนำให้ตั้งค่าสรุปข้อกำหนดในการให้บริการ"
_accountMigration:
moveFrom: "ย้ายข้อมูลบัญชีอื่นไปยังอีกบัญชีนี้หนึ่ง"
moveFromSub: "สร้างนามแฝงไปยังบัญชีอื่น"
moveFromLabel: "บัญชีที่จะย้ายจาก:"
- moveFromDescription: "สร้างนามแฝงสำหรับบัญชีที่จะย้ายจากบัญชีนี้ ถ้าหากคุณต้องการโอนผู้ติดตาม สิ่งนี้ต้องทำก่อนโอนก่อนนะค่ะ! หลังจากนั้น ป้อนบัญชีที่จะย้ายไปในรูปแบบต่อไปนี้: @person@instance.com"
+ moveFromDescription: "ถ้าหากคุณต้องการโอนข้อมูล คุณจำเป็นต้องสร้างบัญชีสำรองสำหรับการย้ายบัญชี หลังจากนั้นป้อนบัญชีที่จะย้ายไปในรูปแบบต่อไปนี้: @person@instance.com"
moveTo: "ย้ายข้อมูลบัญชีนี้ไปยังบัญชีอีกหนึ่ง"
moveToLabel: "บัญชีที่จะย้ายไปที่:"
moveCannotBeUndone: "ไม่สามารถยกเลิกการโอนย้ายบัญชีได้"
moveAccountDescription: "การกระทำนี้ไม่สามารถย้อนกลับได้นะ ขั้นตอนแรก ต้องสร้างนามแฝงสำหรับบัญชีนี้ในบัญชีที่คุณต้องการย้ายไป หลังจากนั้นแล้ว ป้อนบัญชีที่จะย้ายไปในรูปแบบดังต่อไปนี้: @person@instance.com"
moveAccountHowTo: "หากต้องการย้ายข้อมูลก่อนอื่นให้สร้างชื่อแทนสำหรับบัญชีนี้ ในบัญชีที่จะต้องการย้ายไป\nหลังจากที่คุณสร้างนามแฝงนั้นแล้ว ให้ป้อนบัญชีที่ต้องการจะย้ายไปในรูปแบบดังต่อไปนี้: @username@server.example.com"
startMigration: "โอนย้าย"
- migrationConfirm: "ย้ายข้อมูลบัญชีนี้ไปที่ {account} จริงๆนะ เมื่อมีการเริ่มต้นแล้ว กระบวนการนี้จะไม่สามารถหยุดหรือนำกลับคืนมาได้ และคุณจะไม่สามารถใช้บัญชีนี้ในสถานะดั้งเดิมได้อีกต่อไป\n\nนอกจากนี้ เพื่อให้แน่ใจยืนยันว่าคุณได้สร้างนามแฝงในบัญชีที่จะย้ายข้อมูลนะค่ะ"
+ migrationConfirm: "ยืนยันการย้ายข้อมูลบัญชีนี้ไปที่ {account} เมื่อเริ่มแล้วจะไม่สามารถหยุดหรือนำกลับคืนมาได้ และคุณจะไม่สามารถใช้บัญชีนี้ในสถานะดั้งเดิมได้อีกต่อไป\n\nนอกจากนี้ คุณจำเป็นต้องสร้างบัญชีสำรองสำหรับการย้ายบัญชี"
movedAndCannotBeUndone: "\nบัญชีนี้ถูกโอนย้ายไปแล้ว\nไม่สามารถย้อนกลับโอนย้ายข้อมูลได้"
postMigrationNote: "บัญชีนี้จะถูกเลิกติดตามบัญชีทั้งหมดที่กำลังติดตามภายใน 24 ชั่วโมงหลังจากการย้ายข้อมูลนั้นเสร็จสิ้น ทั้งจำนวนผู้ติดตามและผู้ติดตามนั้นจะกลายเป็นศูนย์ เพื่อหลีกเลี่ยงป้องกันไม่ให้ผู้ติดตามของคุณนั้นไม่สามารถเห็นโพสต์เฉพาะผู้ติดตามของบัญชีนี้ได้ แต่อย่างไรก็ตามแล้วพวกเขาจะยังคงติดตามบัญชีนี้ต่อไป"
movedTo: "บัญชีที่จะย้ายไปที่:"
@@ -1223,7 +1295,7 @@ _achievements:
title: "พักผ่อนสักหน่อย"
description: "ใช้เวลา 30 นาทีบน Misskey"
_client60min:
- title: "ไม่มี \"Miss\" ใน Misskey นะค่ะ !"
+ title: "ไม่พบ \"Miss\" ใน Misskey "
description: "เปิด Misskey ค้างไว้แล้วอย่างน้อย 60 นาที"
_noteDeletedWithin1min:
title: "ไม่เป็นไร"
@@ -1329,6 +1401,9 @@ _role:
ltlAvailable: "การดูไทม์ไลน์ในท้องถิ่น"
canPublicNote: "สามารถส่งโน้ตสาธารณะ"
canInvite: "สร้างรหัสเชิญอินสแตนซ์"
+ inviteLimit: "จำกัดการเชิญ"
+ inviteLimitCycle: "จำกัดการเชิญไว้คูลดาวน์"
+ inviteExpirationTime: "วันหมดอายุของรหัสการเชิญ"
canManageCustomEmojis: "จัดการอีโมจิแบบกำหนดเอง"
driveCapacity: "ความจุของไดรฟ์"
alwaysMarkNsfw: "ทำเครื่องหมายไฟล์ว่าเป็น NSFW เสมอ"
@@ -1391,6 +1466,7 @@ _ad:
back: "ย้อนกลับ"
reduceFrequencyOfThisAd: "แสดงโฆษณานี้ให้น้อยลง"
hide: "ไม่ต้องแสดง"
+ timezoneinfo: "วันในสัปดาห์นี้จะถูกกำหนดจากโซนเวลาของเซิร์ฟเวอร์"
_forgotPassword:
enterEmail: "ป้อนที่อยู่อีเมลที่คุณเคยใช้ในการลงทะเบียนไว้ ลิงก์ที่คุณสามารถรีเซ็ตรหัสผ่านได้นั้นจะถูกส่งไปนะ"
ifNoEmail: "ถ้าหากคุณไม่ได้ใช้อีเมลระหว่างการลงทะเบียน กรุณาติดต่อผู้ดูแลระบบอินสแตนซ์แทนนะ"
@@ -1442,9 +1518,9 @@ _aboutMisskey:
donate: "บริจาคให้กับ Misskey"
morePatrons: "เราขอขอบคุณสำหรับความช่วยเหลือจากผู้ช่วยอื่นๆ ที่ไม่ได้ระบุไว้ที่นี่นะ ขอขอบคุณ! 🥰"
patrons: "สมาชิกพันธมิตร"
-_nsfw:
- respect: "ซ่อนสื่อ NSFW"
- ignore: "อย่าซ่อนสื่อ NSFW"
+_displayOfSensitiveMedia:
+ respect: "ซ่อนสื่อทำเครื่องหมายบอกว่าละเอียดอ่อน"
+ ignore: "แสดงผลสื่อทำเครื่องหมายบอกว่าละเอียดอ่อน"
force: "ซ่อนสื่อทั้งหมด"
_instanceTicker:
none: "ไม่ต้องแสดง"
@@ -1585,9 +1661,13 @@ _time:
day: "วัน"
_timelineTutorial:
title: "วิธีใช้งาน Misskey"
+ step1_1: "นี่คือ \"ไทม์ไลน์\" \"โน้ต\" ทั้งหมดที่ส่งใน {name} จะแสดงรายการตามลำดับเวลาที่นี่นะ"
+ step1_2: "อาจจะมีไทม์ไลน์ที่แตกต่างกันเล็กน้อยยกตัวอย่างเช่น \"ไทม์ไลน์หน้าแรก\" จะมีโน้ตของผู้ใช้ที่คุณติดตามและ \"ไทม์ไลน์ท้องถิ่น\" จะมีโน้ตจากผู้ใช้ทั้งหมดของ {name}"
+ step2_1: "มาลองโพสต์โน้ตต่อไปกัน คุณสามารถทำได้โดยการกดปุ่มที่มีไอคอนดินสอ"
+ step2_2: "ยังไงไหนลองเขียนแนะนำตัวเองหรือแค่ \"สวัสดี {name}!\" ถ้าคุณไม่รู้สึกเหมือนมัน?"
step3_1: "เสร็จสิ้นการโพสต์โน้ตย่อแรกของคุณแล้วอย่างงั้นหรอ?"
step3_2: "ไชโย! ตอนนี้โน้ตย่อแรกของคุณได้ปรากฏบนไทม์ไลน์ของคุณแล้วนะ"
- step4_1: "คุณยังสามารถแนบ \"ปฏิกิริยา\" ไปกับโน้ตได้อีกด้วยนะค่ะ"
+ step4_1: "คุณสามารถเพิ่ม \"การตอบสนอง\" ในโน้ตได้"
step4_2: "หากต้องการแนบการแสดงความรู้สึก ให้กดเครื่องหมาย \"+\" บนโน้ตแล้วเลือกอิโมจิที่คุณต้องการแสดงความรู้สึกที่ตนเองชอบได้เลย"
_2fa:
alreadyRegistered: "คุณได้ลงทะเบียนอุปกรณ์ยืนยันตัวตนแบบ 2 ชั้นแล้ว"
@@ -1916,6 +1996,7 @@ _deck:
introduction: "สร้างอินเทอร์เฟซที่สมบูรณ์แบบสำหรับคุณโดยจัดเรียงคอลัมน์ได้อย่างอิสระ!"
introduction2: "คลิกที่เครื่องหมาย + ทางขวาของหน้าจอเพื่อเพิ่มคอลัมน์ใหม่ทุกครั้งที่คุณต้องการ"
widgetsIntroduction: "กรุณาเลือก \"แก้ไขวิดเจ็ต\" ในเมนูคอลัมน์และเพิ่มวิดเจ็ต"
+ useSimpleUiForNonRootPages: "แสดง UI ของ Root Page อย่างง่าย "
_columns:
main: "หลัก"
widgets: "วิดเจ็ต"
diff --git a/locales/tr-TR.yml b/locales/tr-TR.yml
index cc402eec48..42cc7da3f8 100644
--- a/locales/tr-TR.yml
+++ b/locales/tr-TR.yml
@@ -1,5 +1,6 @@
---
_lang_: "Türkçe"
+headlineMisskey: "Notlarla bağlanmış bir ağ"
introMisskey: "Açık kaynaklı bir dağıtılmış mikroblog hizmeti olan Misskey'e hoş geldiniz.\nMisskey, neler olup bittiğini paylaşmak ve herkese sizden bahsetmek için \"notlar\" oluşturmanıza olanak tanıyan, açık kaynaklı, dağıtılmış bir mikroblog hizmetidir.\nHerkesin notlarına kendi tepkilerinizi hızlıca eklemek için \"Tepkiler\" özelliğini de kullanabilirsiniz👍.\nYeni bir dünyayı keşfedin🚀."
poweredByMisskeyDescription: "name}Açık kaynak bir platform\nMisskeyDünya'nın en sunucularında biri。"
monthAndDay: "{month}Ay {day}Gün"
@@ -11,7 +12,9 @@ forgotPassword: "şifremi unuttum"
ok: "TAMAM"
gotIt: "Anladım"
cancel: "İptal"
+noThankYou: "Hayır, teşekkürler"
enterUsername: "Kullanıcı adınızı giriniz"
+renotedBy: "{user} tarafından Renotelandı"
noNotes: "Notlar mevcut değil."
noNotifications: "Bildirim bulunmuyor"
instance: "Sunucu"
@@ -45,15 +48,35 @@ delete: "Sil"
deleteAndEdit: "Sil ve yeniden düzenle"
deleteAndEditConfirm: "Bu notu silip yeniden düzenlemek istiyor musunuz? Bu nota ilişkin tüm Tepkiler, Yeniden Notlar ve Yanıtlar da silinecektir."
addToList: "Listeye ekle"
+addToAntenna: "Antene ekle"
sendMessage: "Mesaj Gönder"
copyRSS: "RSSKopyala"
copyUsername: "Kullanıcı Adını Kopyala"
copyUserId: "KullanıcıyıKopyala"
copyNoteId: "Kimlik notunu kopyala"
+copyFileId: "Dosya ID'sini kopyala"
+copyFolderId: "Klasör ID'sini kopyala"
+copyProfileUrl: "Profil URL'sini kopyala"
searchUser: "Kullanıcıları ara"
reply: "yanıt"
loadMore: "Devamını yükle"
showMore: "Devamını yükle"
+showLess: "Kapat"
+youGotNewFollower: "seni takip etti"
+receiveFollowRequest: "Takip isteği alındı"
+followRequestAccepted: "Takip isteği kabul edildi"
+mention: "Bahset"
+mentions: "Bahsetmeler"
+directNotes: "Kişisel mesajlar"
+importAndExport: "İçeri/Dışarı aktar"
+import: "İçeri aktar"
+export: "Dışa aktar"
+files: "Dosyalar"
+download: "İndir"
+driveFileDeleteConfirm: "\"{name}\" dosyası silinsin mi? Dosya kullanıldığı tüm notlardan kaybolacaktır."
+unfollowConfirm: "{name} takipten çıkarılsın mı?"
+exportRequested: "Dışa aktarım talep ettiniz. Bu biraz zaman alabilir. İşlem bitince Sürücünüze eklenecektir."
+importRequested: "Dışa aktarım talep ettiniz. Bu işlem biraz zaman alabilir."
lists: "Listeler"
noLists: "Liste yok"
note: "not"
@@ -64,6 +87,16 @@ followsYou: "seni takip ediyor"
createList: "Liste oluştur"
manageLists: "Yönetici Listeleri"
error: "hata"
+somethingHappened: "Bir hata oluştu"
+retry: "Tekrar dene"
+pageLoadError: "Sayfa yüklenemedi."
+pageLoadErrorDescription: "Bu genelde ağ veya tarayıcı ön belleği hatalarından olur. Lütfen ön belleği temizlemeyi veya birkaç dakika beklemeyi ve sayfayı yenilemeyi deneyin."
+serverIsDead: "Sunucu yanıt vermiyor. Birkaç dakika sonra tekrar deneyin."
+youShouldUpgradeClient: "Sayfayı görüntülemek için yenileyin."
+enterListName: "Liste ismi"
+privacy: "Gizlilik"
+makeFollowManuallyApprove: "Takip istekleri elle onaylansın"
+defaultNoteVisibility: "Varsayılan görünürlük"
follow: "takipçi"
followRequest: "Takip isteği"
followRequests: "Takip istekleri"
@@ -76,9 +109,24 @@ renoted: "yeniden adlandırılmış"
cantRenote: "Ayrılamama"
cantReRenote: "not alabilirmiyim"
quote: "alıntı"
+inChannelRenote: "Kanal içi Renote"
+inChannelQuote: "Kanal içi Alıntı"
pinnedNote: "Sabitlenen"
pinned: "Sabitlenmiş"
you: "sen"
+clickToShow: "Görüntülemek için tıkla"
+sensitive: "Hassas içerik"
+add: "Ekle"
+reaction: "Tepkiler"
+reactions: "Tepkiler"
+reactionSetting: "Palette görünecek tepkiler"
+reactionSettingDescription2: "Sıralamak için sürükleyin, silmek için tıklayın, eklemek için \"+\" tuşuna tıklayın."
+rememberNoteVisibility: "Görünürlük ayarlarını hatırla"
+attachCancel: "Eki sil"
+markAsSensitive: "Hassas içerik olarak işaretle"
+unmarkAsSensitive: "Hassas içerik işaretini kaldır"
+enterFileName: "Dosya ismini gir"
+mute: "Gizle"
unmute: "sesi aç"
renoteMute: "sesi kapat"
renoteUnmute: "sesi açmayı iptal et"
@@ -88,46 +136,280 @@ suspend: "askıya al"
unsuspend: "askıya alma"
blockConfirm: "Onayı engelle"
unblockConfirm: "engellemeyi kaldır onayla"
+suspendConfirm: "Hesap askıya alınsın mı?"
+unsuspendConfirm: "Hesap askıdan kaldırılsın mı"
+selectList: "Bir liste seç"
+editList: "Listeyi düzenle"
selectChannel: "Kanal seç"
+selectAntenna: "Bir anten seç"
+editAntenna: "Anteni düzenle"
+selectWidget: "Araç seç"
+editWidgets: "Araçları düzenle"
+editWidgetsExit: "Tamam"
+customEmojis: "Özel Emoji"
+emoji: "Emoji"
+emojis: "Emoji"
+emojiName: "Emoji adı"
+emojiUrl: "Emoji URL'si"
+addEmoji: "Emoji ekle"
+settingGuide: "Önerilen ayarlar"
+cacheRemoteFiles: "Uzak dosyalar ön belleğe alınsın"
+cacheRemoteFilesDescription: "Bu ayar açık olduğunda diğer sitelerin dosyaları doğrudan uzak sunucudan yüklenecektir. Bu ayarı kapatmak depolama kullanımını azaltacak ama küçük resimler oluşturulmadığından trafiği arttıracaktır."
+cacheRemoteSensitiveFiles: "Hassas uzak dosyalar ön belleğe alınsın"
+cacheRemoteSensitiveFilesDescription: "Bu ayar kapalı olduğunda hassas uzak dosyalar ön belleğe alınmadan doğrudan uzak sunucudan yüklenecektir."
flagAsBot: "Bot olarak işaretle"
+flagAsBotDescription: "Bu seçeneği hesap bir program tarafından kontrol ediliyorsa işaretleyin. Bu, diğer geliştiricilerin sonsuz etkileşim zincirleri oluşturmasını engellemeye yardımcı olur ve Misskey'in iç sisteminin hesaba bir bot gibi davranmasını sağlar."
+flagAsCat: "Kedi hesabı"
+flagAsCatDescription: "Kedi hesabı"
+flagShowTimelineReplies: "Zaman akışında notlara gelen cevapları göster"
+flagShowTimelineRepliesDescription: "Açık olduğu durumda, zaman akışında kullanıcıların başkalarına verdiği cevaplar gözükür."
+autoAcceptFollowed: "Takip edilen hesapların takip isteklerini kabul et"
+addAccount: "Hesap ekle"
+reloadAccountsList: "Hesap listesini güncelle"
+loginFailed: "Giriş başarısız oldu"
+showOnRemote: "Uzak sunucuda görüntüle"
+general: "Genel"
+wallpaper: "Duvar kağıdı"
+setWallpaper: "Duvar kağıdını ayarla"
+removeWallpaper: "Duvar kağıdını sil"
+searchWith: "Arama: {q}"
+youHaveNoLists: "Hiç listeniz yok"
+followConfirm: "{name} takip edilsin mi?"
+proxyAccount: "Vekil hesabı"
+proxyAccountDescription: "Proxy hesabı, belirli koşullar altında kullanıcılar için uzaktan takipçi işlevi gören bir hesaptır. Örneğin, bir kullanıcı listeye bir uzak kullanıcı eklediğinde, o kullanıcıyı takip eden yerel bir kullanıcı yoksa uzak kullanıcının etkinliği örneğe teslim edilmeyecektir, dolayısıyla bunun yerine proxy hesabı takip edilecektir."
+host: "Sağlayıcı"
+selectUser: "Kullanıcı seç"
+recipient: "Kime"
+annotation: "Açıklamalar"
+federation: "Federasyon"
instances: "Sunucu"
+registeredAt: "Katılma tarihi"
+latestRequestReceivedAt: "Alınan son talep"
+latestStatus: "En son durum"
+storageUsage: "Depolama kullanımı"
+charts: "Çizelgeler"
+perHour: "Saatlik"
+perDay: "Günlük"
+stopActivityDelivery: "Durum güncellemelerini gönderme"
+blockThisInstance: "Bu sunucuyu engelle"
+operations: "İşlemler"
+software: "Yazılımlar"
+version: "Sürüm"
+metadata: "Meta Verileri"
+withNFiles: "{n} tane dosya"
+monitor: "Monitör"
+jobQueue: "İşlem sırası"
+cpuAndMemory: "İşlemci ve Hafıza"
+network: "Ağ"
+disk: "Disk"
+instanceInfo: "Sunucu Bilgisi"
+statistics: "İstatistikler"
+clearQueue: "Sırayı temizle"
+clearQueueConfirmTitle: "Sıra silinsin mi?"
+clearQueueConfirmText: "Sırada kalan hiçbir şey iletilmeyecek. Genelde bu işlem gerekli değildir."
+clearCachedFiles: "Ön belleği temizle"
+clearCachedFilesConfirm: "Ön belleğe alınmış tüm uzak sunucu dosyaları silinsin mi?"
+blockedInstances: "Engellenen sunucular"
+blockedInstancesDescription: "Engellemek istediğiniz sunucuların alan adlarını satır sonlarıyla ayırarak yazın. Yazılan sunucular bu sunucuyla iletişime geçemeyecek."
+muteAndBlock: "Susturma ve Engelleme"
+mutedUsers: "Susturulan kullanıcılar"
+blockedUsers: "Engellenen kullanıcılar"
+noUsers: "Kullanıcı yok"
+editProfile: "Profili düzenle"
+noteDeleteConfirm: "Bu notu silmek istediğinizden emin misiniz?"
+pinLimitExceeded: "Daha fazla not sabitlenemez"
+intro: "Misskey yüklemesi tamamlandı! Lütfen yönetici hesabını oluşturun."
+done: "Tamamlandı"
+preview: "Önizleme"
+default: "Varsayılan"
+defaultValueIs: "Varsayılan: {value}"
+noCustomEmojis: "Emoji bulunamadı"
+noJobs: "Hiç işlem yok"
+federating: "Federe ediliyor"
+blocked: "Engellenmiş"
+suspended: "Askıya alınmış"
+all: "Tümü"
+subscribing: "Abonelik"
+publishing: "Paylaşım"
+notResponding: "Cevap yok"
+instanceFollowing: "Sunucuda takip edenler"
+instanceFollowers: "Sunucu takipçileri"
+instanceUsers: "Sunucu kullanıcıları"
+changePassword: "Şifreyi değiştir"
+security: "Güvenlik"
+retypedNotMatch: "Girişler uyuşmuyor."
+currentPassword: "Geçerli şifre"
+newPassword: "Yeni şifre"
+newPasswordRetype: "Yeni şifre (tekrar)"
+attachFile: "Dosya ekle"
+more: "Daha!"
+featured: "Öne Çıkan"
+usernameOrUserId: "Kullanıcı adı veya ID'si"
+noSuchUser: "Kullanıcı bulunamadı"
+lookup: "Sorgu"
+announcements: "Duyurular"
+imageUrl: "Görsel URL'si"
remove: "Sil"
+removed: "Silindi"
+removeAreYouSure: "\"{x}\" silmek istediğinizden emin misiniz?"
+deleteAreYouSure: "\"{x}\" silmek istediğinizden emin misiniz?"
+resetAreYouSure: "Sıfırlansın mı?"
+saved: "Kaydedildi"
+messaging: "Mesajlar"
+upload: "Yükle"
+keepOriginalUploading: "Orijinal görseli koru"
+keepOriginalUploadingDescription: "Orijinal olarak yüklenen görüntüyü olduğu gibi kaydeder. Kapatılırsa, yükleme sırasında web'de görüntülenecek bir sürüm oluşturulur."
+fromUrl: "Bağlantıdan"
+uploadFromUrl: "Bağlantıdan yükle"
+uploadFromUrlDescription: "Yüklemek istediğiniz dosyanın bağlantısı"
+uploadFromUrlRequested: "Yükleme talep edildi"
+uploadFromUrlMayTakeTime: "Yüklemenin tamamlanması biraz süre alabilir."
+explore: "Keşfet"
+messageRead: "Okundu"
+noMoreHistory: "Bundan öncesi yok"
+startMessaging: "Yeni bir sohbet başlat"
+nUsersRead: "{n} kişi okudu"
+agreeTo: "Kabul Ediyorum: {0}"
+agree: "Kabul Et"
+agreeBelow: "Aşağıdakileri kabul ederim"
+basicNotesBeforeCreateAccount: "Önemli notlar"
+termsOfService: "Şartlar ve Koşullar"
+start: "Başla"
+home: "Ana sayfa"
+remoteUserCaution: "Bu kullanıcı bir uzak sunucudan olduğu için alınan bilgiler tam olmayabilir."
+activity: "Etkinlik"
+images: "Görseller"
+image: "Görseller"
+birthday: "Doğum günü"
+yearsOld: "{age} yaşında"
+registeredDate: "Kayıt tarihi"
+location: "Konum"
+theme: "Temalar"
+themeForLightMode: "Aydınlık Tema"
+themeForDarkMode: "Karanlık Tema"
+light: "Aydınlık"
+dark: "Karanlık"
+lightThemes: "Aydınlık Temalar"
+darkThemes: "Karanlık Temalar"
+syncDeviceDarkMode: "Sistem Koyu Modu ile senkronize et"
+drive: "Sürücü"
+fileName: "Dosya adı"
+selectFile: "Dosya seç"
+selectFiles: "Dosya seç"
+selectFolder: "Klasör seç"
+selectFolders: "Klasör seç"
+renameFile: "Dosyayı yeniden adlandır"
+folderName: "Klasör adı"
+createFolder: "Klasör oluştur"
+renameFolder: "Klasörü Yeniden Adlandır"
+deleteFolder: "Klasörü sil"
+addFile: "Dosya ekle"
+emptyDrive: "Sürücü boş"
+hasChildFilesOrFolders: "Klasör boş olmadığından silinemiyor"
+doNothing: "Bir şey yapma"
+reloadConfirm: "Zaman akışı yenilensin mi?"
+maintainerName: "Yönetici ismi"
+monthX: "{month} ay"
+enableRegistration: "Kayıtlara izin ver"
pinnedNotes: "Sabitlenen"
+manageAntennas: "Anten ayarları"
userList: "Listeler"
+resetPassword: "Şifre sıfırlama"
+noMessagesYet: "Şimdilik mesaj yok"
+details: "Detaylar"
+deck: "Güverte"
+smtpHost: "Sağlayıcı"
smtpUser: "Kullanıcı Adı"
smtpPass: "Şifre"
+notificationSetting: "Bildirim ayarları"
+noCrawleDescription: "Arama motorlarından profilinde, notlarında, sayfalarında vb. dolaşılmamasını ve dizine eklememesini talep et."
+clearCache: "Ön belleği temizle"
+onlineUsersCount: "{n} kullanıcı çevrim içi"
user: "Kullanıcı"
+global: "Küresel"
+squareAvatars: "Kare avatarlar"
searchByGoogle: "Arama"
+file: "Dosyalar"
+pushNotification: "Push bildirimleri"
+subscribePushNotification: "Push bildirimlerini etkinleştir"
+unsubscribePushNotification: "Push bildirimlerini kapat"
+pushNotificationAlreadySubscribed: "Push bildirimleri zaten açık"
+pushNotificationNotSupported: "Push bildirimleri sunucu veya tarayıcı tarafından desteklenmiyor"
+noRole: "Rol bulunamadı"
+color: "Renk"
+addMemo: "Kısa not ekle"
+_accountDelete:
+ started: "Silme işlemi başlatıldı"
+_email:
+ _follow:
+ title: "seni takip etti"
_theme:
+ color: "Renk"
keys:
+ mention: "Bahset"
renote: "vazgeçme"
_sfx:
note: "notlar"
notification: "Bildirim"
+ chat: "Mesajlar"
+_2fa:
+ renewTOTPCancel: "Hayır, teşekkürler"
+_permissions:
+ "read:blocks": "Engellenen hesapları gör"
+ "write:blocks": "Engellenen hesap listesini düzenle"
_widgets:
profile: "Profil"
+ instanceInfo: "Sunucu Bilgisi"
notifications: "Bildirim"
timeline: "Zaman çizelgesi"
+ calendar: "Takvim"
+ clock: "Saat"
+ activity: "Etkinlik"
+ federation: "Federasyon"
+ jobQueue: "İşlem sırası"
+ _userList:
+ chooseList: "Bir liste seç"
_cw:
show: "Devamını yükle"
+_poll:
+ vote: "Oy kullan"
_visibility:
+ publicDescription: "Herkese açık"
+ home: "Ana sayfa"
followers: "takipçi"
_profile:
username: "Kullanıcı Adı"
_exportOrImport:
followingList: "takipçi"
+ muteList: "Gizle"
blockingList: "engelle"
userLists: "Listeler"
+_charts:
+ federation: "Federasyon"
+_timelines:
+ home: "Ana sayfa"
+ global: "Küresel"
+_pages:
+ blocks:
+ image: "Görseller"
_notification:
+ youWereFollowed: "seni takip etti"
+ unreadAntennaNote: "{name} anteni"
_types:
follow: "takipçi"
+ mention: "Bahset"
renote: "vazgeçme"
quote: "alıntı"
+ reaction: "Tepkiler"
+ receiveFollowRequest: "Takip isteği alındı"
+ followRequestAccepted: "Takip isteği kabul edildi"
_actions:
reply: "yanıt"
renote: "vazgeçme"
_deck:
+ configureColumn: "Sütun seçenekleri"
_columns:
notifications: "Bildirim"
tl: "Zaman çizelgesi"
list: "Listeler"
+ mentions: "Bahsetmeler"
diff --git a/locales/uk-UA.yml b/locales/uk-UA.yml
index 4f215bc980..1ac07ff9b2 100644
--- a/locales/uk-UA.yml
+++ b/locales/uk-UA.yml
@@ -300,7 +300,6 @@ copyUrl: "Копіювати URL"
rename: "Перейменувати"
avatar: "Аватар"
banner: "Банер"
-nsfw: "NSFW"
whenServerDisconnected: "Коли зв’язок із сервером втрачено"
disconnectedFromServer: "Зв’язок із сервером було перервано"
reload: "Оновити"
@@ -1200,10 +1199,6 @@ _aboutMisskey:
donate: "Пожертвувати Misskey"
morePatrons: "Ми дуже цінуємо підтримку багатьох інших помічників, не перелічених тут. Дякуємо! 🥰"
patrons: "Підтримали"
-_nsfw:
- respect: "Приховувати NSFW медіа"
- ignore: "Не приховувати NSFW медіа"
- force: "Приховувати всі медіа файли"
_instanceTicker:
none: "Не відображати"
remote: "Відображати для віддалених користувачів"
diff --git a/locales/vi-VN.yml b/locales/vi-VN.yml
index d620d99d80..898c478bf5 100644
--- a/locales/vi-VN.yml
+++ b/locales/vi-VN.yml
@@ -303,7 +303,6 @@ copyUrl: "Sao chép URL"
rename: "Đổi tên"
avatar: "Ảnh đại diện"
banner: "Ảnh bìa"
-nsfw: "Nhạy cảm"
whenServerDisconnected: "Khi mất kết nối tới máy chủ"
disconnectedFromServer: "Mất kết nối tới máy chủ"
reload: "Tải lại"
@@ -1212,10 +1211,6 @@ _aboutMisskey:
donate: "Ủng hộ Misskey"
morePatrons: "Chúng tôi cũng trân trọng sự hỗ trợ của nhiều người đóng góp khác không được liệt kê ở đây. Cảm ơn! 🥰"
patrons: "Người ủng hộ"
-_nsfw:
- respect: "Ẩn nội dung NSFW"
- ignore: "Hiện nội dung NSFW"
- force: "Ẩn mọi media"
_instanceTicker:
none: "Không hiển thị"
remote: "Hiện cho người dùng từ máy chủ khác"
diff --git a/locales/zh-CN.yml b/locales/zh-CN.yml
index 313c254c79..d1b11a3540 100644
--- a/locales/zh-CN.yml
+++ b/locales/zh-CN.yml
@@ -49,11 +49,15 @@ delete: "删除"
deleteAndEdit: "删除并编辑"
deleteAndEditConfirm: "要删除此帖并再次编辑吗?对此帖的所有回应、转发和回复也将被删除。"
addToList: "添加至列表"
+addToAntenna: "添加到天线"
sendMessage: "发送"
copyRSS: "复制RSS"
copyUsername: "复制用户名"
-copyUserId: "复制用户ID"
-copyNoteId: "复制帖子ID"
+copyUserId: "复制用户 ID"
+copyNoteId: "复制帖子 ID"
+copyFileId: "复制文件ID"
+copyFolderId: "复制文件夹ID"
+copyProfileUrl: "复制配置文件URL"
searchUser: "搜索用户"
reply: "回复"
loadMore: "查看更多"
@@ -71,7 +75,7 @@ export: "导出"
files: "文件"
download: "下载"
driveFileDeleteConfirm: "要删除「{name}」文件吗?附加此文件的帖子也会被删除。"
-unfollowConfirm: "要取消对{name}的关注吗?"
+unfollowConfirm: "要取消对 {name} 的关注吗?"
exportRequested: "导出请求已提交,这可能需要花一些时间,导出的文件将保存到网盘中。"
importRequested: "导入请求已提交,这可能需要花一点时间。"
lists: "列表"
@@ -136,8 +140,10 @@ unblockConfirm: "确定要解除拉黑吗?"
suspendConfirm: "要冻结吗?"
unsuspendConfirm: "要解除冻结吗?"
selectList: "选择列表"
+editList: "编辑列表"
selectChannel: "选择频道"
selectAntenna: "选择天线"
+editAntenna: "编辑天线"
selectWidget: "选择小工具"
editWidgets: "编辑部件"
editWidgetsExit: "完成编辑"
@@ -150,8 +156,10 @@ addEmoji: "添加表情符号"
settingGuide: "推荐配置"
cacheRemoteFiles: "缓存远程文件"
cacheRemoteFilesDescription: "当禁用此设定时远程文件将直接从远程服务器载入。禁用后会减小储存空间需求,但是会增加流量,因为缩略图不会被生成。"
+cacheRemoteSensitiveFiles: "缓存远程敏感媒体文件"
+cacheRemoteSensitiveFilesDescription: "如果禁用这项设定,远程服务器的敏感媒体将不会被缓存,而是直接链接。"
flagAsBot: "这是一个机器人账号"
-flagAsBotDescription: "如果此账户由程序控制,请启用此项。启用后,此标志可以帮助其他开发人员防止机器人之间产生无限互动的行为,并让Misskey的内部系统将此账户识别为机器人。"
+flagAsBotDescription: "如果此账户由程序控制,请启用此项。启用后,此标志可以帮助其他开发人员防止机器人之间产生无限互动的行为,并让 Misskey 的内部系统将此账户识别为机器人。"
flagAsCat: "将这个账户设定为一只猫"
flagAsCatDescription: "如果您想表明此帐户是一只猫,请打开此标志。\n开启后,会在您的头像上出现猫耳朵,并将你的帖子中的「na」替换为「nya」,日文同理。"
flagShowTimelineReplies: "在时间线上显示帖子的回复"
@@ -167,7 +175,7 @@ setWallpaper: "设置壁纸"
removeWallpaper: "移除壁纸"
searchWith: "搜索:{q}"
youHaveNoLists: "列表为空"
-followConfirm: "你确定要关注{name}吗?"
+followConfirm: "你确定要关注 {name} 吗?"
proxyAccount: "代理账户"
proxyAccountDescription: "代理账户是在某些情况下充当用户的远程关注者的账户。 例如,当一个用户列出一个远程用户时,如果没有人跟随该列出的用户,则该活动将不会传递到该服务器,因此将代之以代理账户。"
host: "主机名"
@@ -189,7 +197,7 @@ operations: "操作"
software: "软件"
version: "版本"
metadata: "元数据"
-withNFiles: "{n}个文件"
+withNFiles: "{n} 个文件"
monitor: "服务器状态"
jobQueue: "作业队列"
cpuAndMemory: "CPU和内存"
@@ -199,11 +207,11 @@ instanceInfo: "服务器信息"
statistics: "统计"
clearQueue: "清除队列"
clearQueueConfirmTitle: "确定清除队列?"
-clearQueueConfirmText: "未送达的帖子将不会送达。 通常,您不需要这样做。"
+clearQueueConfirmText: "未送达的帖子将不会投递。 通常,您不需要这样做。"
clearCachedFiles: "清除缓存"
clearCachedFilesConfirm: "确定要清除缓存文件?"
-blockedInstances: "被阻拦的服务器"
-blockedInstancesDescription: "设定要阻拦的服务器,以换行来进行分割。被阻拦的服务器将无法与本服务器进行交换通讯。"
+blockedInstances: "被封锁的服务器"
+blockedInstancesDescription: "设定要封锁的服务器,以换行来进行分割。被封锁的服务器将无法与本服务器进行交换通讯。"
muteAndBlock: "屏蔽/拉黑"
mutedUsers: "已屏蔽用户"
blockedUsers: "已拉黑的用户"
@@ -211,7 +219,7 @@ noUsers: "无用户"
editProfile: "编辑资料"
noteDeleteConfirm: "要删除该帖子吗?"
pinLimitExceeded: "无法置顶更多了"
-intro: "Misskey的部署结束啦!填写管理员账号吧!"
+intro: "Misskey 的部署结束啦!创建管理员账号吧!"
done: "完成"
processing: "正在处理"
preview: "预览"
@@ -238,11 +246,11 @@ newPasswordRetype: "重新输入密码:"
attachFile: "插入附件"
more: "更多!"
featured: "热门"
-usernameOrUserId: "用户名或用户ID"
+usernameOrUserId: "用户名或用户 ID"
noSuchUser: "用户不存在"
lookup: "查询"
announcements: "公告"
-imageUrl: "图片URL"
+imageUrl: "图片 URL"
remove: "删除"
removed: "已删除"
removeAreYouSure: "要删掉「{x}」吗?"
@@ -256,15 +264,15 @@ keepOriginalUploadingDescription: "上传图片时保留原始图片。关闭时
fromDrive: "从网盘中"
fromUrl: "从 URL"
uploadFromUrl: "从网址上传"
-uploadFromUrlDescription: "输入文件的URL"
+uploadFromUrlDescription: "输入文件的 URL"
uploadFromUrlRequested: "请求上传"
uploadFromUrlMayTakeTime: "上传可能需要一些时间完成。"
explore: "发现"
messageRead: "已读"
noMoreHistory: "没有更多的历史记录"
startMessaging: "添加聊天"
-nUsersRead: "{n}人已读"
-agreeTo: "勾选则表示已阅读并同意{0}"
+nUsersRead: "{n} 人已读"
+agreeTo: "勾选则表示已阅读并同意 {0}"
agree: "同意"
agreeBelow: "同意以下内容"
basicNotesBeforeCreateAccount: "基本注意事项"
@@ -305,13 +313,13 @@ unableToDelete: "无法删除"
inputNewFileName: "请输入新文件名"
inputNewDescription: "请输入新标题"
inputNewFolderName: "请输入新文件夹名"
-circularReferenceFolder: "目标文件夹是您要移动的文件夹的子文件夹。"
+circularReferenceFolder: "目标文件夹是要移动的文件夹的子文件夹。"
hasChildFilesOrFolders: "此文件夹中有文件,无法删除。"
copyUrl: "复制链接"
rename: "重命名"
avatar: "头像"
banner: "横幅"
-nsfw: "敏感内容"
+displayOfSensitiveMedia: "显示敏感媒体"
whenServerDisconnected: "与服务器连接中断时"
disconnectedFromServer: "已和服务器断开连接"
reload: "重新加载"
@@ -326,7 +334,7 @@ instanceName: "服务器名称"
instanceDescription: "服务器简介"
maintainerName: "管理员名称"
maintainerEmail: "管理员电子邮箱"
-tosUrl: "服务条款URL"
+tosUrl: "服务条款 URL"
thisYear: "今年"
thisMonth: "本月"
today: "今天"
@@ -337,49 +345,49 @@ pages: "页面"
integration: "关联"
connectService: "连接"
disconnectService: "断开连接"
-enableLocalTimeline: "启用本地时间线功能"
+enableLocalTimeline: "启用本地时间线"
enableGlobalTimeline: "启用全局时间线"
-disablingTimelinesInfo: "即使时间线功能被禁用,出于方便,管理员和数据图表也可以继续使用。"
+disablingTimelinesInfo: "即使时间线功能被禁用,出于方便,管理员和协作者也可以继续使用。"
registration: "注册"
enableRegistration: "允许任何人注册"
invite: "邀请"
-driveCapacityPerLocalAccount: "每个用户的网盘空间"
+driveCapacityPerLocalAccount: "每个用户的网盘容量"
driveCapacityPerRemoteAccount: "每个远程用户的网盘容量"
inMb: "以兆字节(MegaByte)为单位"
-iconUrl: "图标URL"
-bannerUrl: "横幅URL"
-backgroundImageUrl: "背景图URL"
+iconUrl: "图标 URL"
+bannerUrl: "横幅 URL"
+backgroundImageUrl: "背景图 URL"
basicInfo: "基本信息"
pinnedUsers: "置顶用户"
-pinnedUsersDescription: "在「发现」页面中使用换行标记想要置顶的用户。"
+pinnedUsersDescription: "输入您想要固定到“发现”页面的用户,一行一个。"
pinnedPages: "固定页面"
-pinnedPagesDescription: "输入您要固定到服务器首页的页面路径,以换行符分隔。"
-pinnedClipId: "置顶的便签ID"
+pinnedPagesDescription: "输入您要固定到服务器首页的页面路径,一行一个。"
+pinnedClipId: "置顶的便签 ID"
pinnedNotes: "已置顶的帖子"
hcaptcha: "hCaptcha"
enableHcaptcha: "启用 hCaptcha"
hcaptchaSiteKey: "网站密钥"
-hcaptchaSecretKey: "密钥"
+hcaptchaSecretKey: "hCaptcha 密钥(SecretKey)"
recaptcha: "reCAPTCHA"
enableRecaptcha: "启用 reCAPTCHA\n(请注意, 此功能在中国大陆不可用. 如果启用, 可能导致无法正常使用登录或注册等功能)"
recaptchaSiteKey: "网站密钥"
recaptchaSecretKey: "reCAPTCHA 密钥(SecretKey)"
turnstile: "Turnstile"
-enableTurnstile: "启用Turnstile"
+enableTurnstile: "启用 Turnstile"
turnstileSiteKey: "网站密钥"
turnstileSecretKey: "Turnstile 密钥(SecretKey)"
-avoidMultiCaptchaConfirm: "使用多种验证方式可能会造成干扰,您要禁用其他验证方式吗?您可以按“取消”按钮,仍然保持启用多种验证方式。"
+avoidMultiCaptchaConfirm: "使用多种验证方式可能会造成干扰,您要禁用其他验证方式吗?您可以按“取消”按钮,继续保持启用多种验证方式。"
antennas: "天线"
manageAntennas: "天线管理"
name: "名称"
antennaSource: "接收来源"
antennaKeywords: "包含关键字"
antennaExcludeKeywords: "排除关键字"
-antennaKeywordsDescription: "使用空格分隔会产生AND规范,并且使用换行符分隔会产生OR规范"
+antennaKeywordsDescription: "AND 条件用空格分隔,OR 条件用换行符分隔。"
notifyAntenna: "开启通知"
withFileAntenna: "仅带有附件的帖子"
-enableServiceworker: "启用ServiceWorker"
-antennaUsersDescription: "指定用户名,用换行符分隔"
+enableServiceworker: "启用 ServiceWorker"
+antennaUsersDescription: "指定用户名,一行一个"
caseSensitive: "区分大小写"
withReplies: "包括回复"
connectedTo: "您的账号已连到接以下第三方账号"
@@ -393,7 +401,7 @@ popularUsers: "热门用户"
recentlyUpdatedUsers: "最近投稿的用户"
recentlyRegisteredUsers: "最近登录的用户"
recentlyDiscoveredUsers: "最近发现的用户"
-exploreUsersCount: "有{count}个用户"
+exploreUsersCount: "有 {count} 个用户"
exploreFediverse: "探索联邦宇宙"
popularTags: "热门标签"
userList: "列表"
@@ -413,13 +421,13 @@ lastUsed: "最后使用:"
lastUsedAt: "最后使用: {t}"
unregister: "删除账户"
passwordLessLogin: "无密码登录"
-passwordLessLoginDescription: "不使用密码,仅使用安全密钥或Passkey登录"
+passwordLessLoginDescription: "不使用密码,仅使用安全密钥或 Passkey 登录"
resetPassword: "重置密码"
newPasswordIs: "新的密码是「{password}」"
reduceUiAnimation: "减少UI动画"
share: "分享"
notFound: "未找到"
-notFoundDescription: "没有与指定URL对应的页面。"
+notFoundDescription: "没有与指定 URL 对应的页面。"
uploadFolder: "默认上传文件夹"
cacheClear: "清空缓存"
markAsReadAllNotifications: "将所有通知标为已读"
@@ -436,7 +444,7 @@ text: "文本"
enable: "启用"
next: "下一个"
retype: "重新输入"
-noteOf: "{user}的帖子"
+noteOf: "{user} 的帖子"
quoteAttached: "已引用"
quoteQuestion: "是否引用此链接内容?"
noMessagesYet: "现在没有新的聊天"
@@ -468,8 +476,8 @@ disableDrawer: "不显示抽屉菜单"
showNoteActionsOnlyHover: "仅在悬停时显示帖子操作"
noHistory: "没有历史记录"
signinHistory: "登录历史"
-enableAdvancedMfm: "启用扩展MFM"
-enableAnimatedMfm: "启用MFM动画"
+enableAdvancedMfm: "启用扩展 MFM"
+enableAnimatedMfm: "启用 MFM 动画"
doing: "正在进行"
category: "类别"
tags: "标签"
@@ -479,7 +487,7 @@ existingAccount: "现有的账户"
regenerate: "重新生成"
fontSize: "字体大小"
mediaListWithOneImageAppearance: "仅一张图片的媒体列表高度"
-limitTo: "上限为{x}"
+limitTo: "上限为 {x}"
noFollowRequests: "没有关注申请"
openImageInNewTab: "在新标签页中打开图片"
dashboard: "管理面板"
@@ -499,20 +507,20 @@ showFeaturedNotesInTimeline: "在时间线上显示热门推荐"
objectStorage: "对象存储"
useObjectStorage: "使用对象存储"
objectStorageBaseUrl: "Base URL"
-objectStorageBaseUrlDesc: "这里是用于参考的URL,如果您正在使用CDN或反向代理,请指定其URL,例如S3:“https://.s3.amazonaws.com”,GCS:“https://storage.googleapis.com/”"
+objectStorageBaseUrlDesc: "这里是用于引用的 URL,如果您正在使用 CDN 或反向代理,请指定其 URL,例如S3:“https://.s3.amazonaws.com”,GCS:“https://storage.googleapis.com/”"
objectStorageBucket: "存储桶"
objectStorageBucketDesc: "请指定使用的对象存储服务的存储桶名称。"
objectStoragePrefix: "前缀"
objectStoragePrefixDesc: "文件将存储在此前缀的目录下。"
-objectStorageEndpoint: "端点"
-objectStorageEndpointDesc: "如果你使用AWS S3请留空。否则请根据你使用的服务商的说明来进行设置,指定端点形式为“”或“:”。"
+objectStorageEndpoint: "Endpoint"
+objectStorageEndpointDesc: "如果你使用 AWS S3 请留空。否则请根据你使用的服务商的说明来进行设置,指定 Endpoint 形式为“”或“:”。"
objectStorageRegion: "可用区"
-objectStorageRegionDesc: "指定一个可用区,例如“xx-east-1”。 如果您的对象存储服务没有可用区概念,请将其留空或填写“us-east-1”。"
-objectStorageUseSSL: "使用SSL"
-objectStorageUseSSLDesc: "如果不使用https进行API连接,请关闭。"
+objectStorageRegionDesc: "指定一个可用区,例如“xx-east-1”。 如果您的对象存储服务没有可用区概念,请将其留空或填写“us-east-1”。如果引用 AWS 的配置文件或环境变量,则留空。"
+objectStorageUseSSL: "使用 SSL"
+objectStorageUseSSLDesc: "如果不使用 https 进行 API 连接,请关闭。"
objectStorageUseProxy: "使用代理"
-objectStorageUseProxyDesc: "如果您不使用代理进行API连接,请将其关闭。"
-objectStorageSetPublicRead: "上传时设置为public-read"
+objectStorageUseProxyDesc: "如果您不使用代理进行 API 连接,请将其关闭。"
+objectStorageSetPublicRead: "上传时设置为 public-read"
s3ForcePathStyleDesc: "启用 s3ForcePathStyle 会强制将存储桶名称指定为 URL 中路径的一部分,而不是主机名。使用自托管 Minio 等时可能需要启用。"
serverLogs: "服务器日志"
deleteAll: "全部删除"
@@ -541,8 +549,8 @@ state: "状态"
sort: "排序"
ascendingOrder: "升序"
descendingOrder: "降序"
-scratchpad: "AiScript控制台"
-scratchpadDescription: "AiScript控制台为AiScript提供了实验环境。您可以编写代码以与Misskey交互,运行它并查看结果。"
+scratchpad: "AiScript 控制台"
+scratchpadDescription: "AiScript 控制台为 AiScript 提供了实验环境。您可以编写代码与 Misskey 交互,运行并查看结果。"
output: "输出"
script: "脚本"
disablePagesScript: "禁用页面脚本"
@@ -550,7 +558,7 @@ updateRemoteUser: "更新远程用户信息"
deleteAllFiles: "删除所有文件"
deleteAllFilesConfirm: "要删除所有文件吗?"
removeAllFollowing: "取消所有关注"
-removeAllFollowingDescription: "取消{host}的所有关注者。当服务器不再存在时执行。"
+removeAllFollowingDescription: "取消 {host} 的所有关注者。当服务器不再存在时执行。"
userSuspended: "该用户已被冻结。"
userSilenced: "该用户已被禁言。"
yourAccountSuspendedTitle: "账户已被冻结"
@@ -587,7 +595,7 @@ manage: "管理"
plugins: "插件"
preferencesBackups: "备份设置"
deck: "Deck"
-undeck: "取消Deck"
+undeck: "取消 Deck"
useBlurEffectForModal: "对话框使用模糊效果"
useFullReactionPicker: "使用全功能的回应工具栏"
width: "宽度"
@@ -600,7 +608,7 @@ permission: "权限"
enableAll: "启用全部"
disableAll: "禁用全部"
tokenRequested: "允许访问账户"
-pluginTokenRequestedDescription: "此插件将能够拥有此处设置的权限"
+pluginTokenRequestedDescription: "此插件将能够拥有这里设置的权限"
notificationType: "通知类型"
edit: "编辑"
emailServer: "邮件服务器"
@@ -608,20 +616,20 @@ enableEmail: "启用发送邮件功能"
emailConfigInfo: "用于确认电子邮件和密码重置"
email: "邮箱"
emailAddress: "电子邮件地址"
-smtpConfig: "SMTP服务器设置"
+smtpConfig: "SMTP 服务器设置"
smtpHost: "主机名"
smtpPort: "端口"
smtpUser: "用户名"
smtpPass: "密码"
-emptyToDisableSmtpAuth: "用户名和密码留空可以禁用SMTP验证"
+emptyToDisableSmtpAuth: "用户名和密码留空可以禁用 SMTP 验证"
smtpSecure: "在 SMTP 连接中使用隐式 SSL / TLS"
-smtpSecureInfo: "使用STARTTLS时关闭。"
+smtpSecureInfo: "使用 STARTTLS 时关闭。"
testEmail: "邮件发送测试"
wordMute: "文字屏蔽"
regexpError: "正则表达式错误"
regexpErrorDescription: "{tab} 屏蔽文字的第 {line} 行的正则表达式有错误:"
instanceMute: "被屏蔽的服务器"
-userSaysSomething: "{name}说了什么,但是被屏蔽词过滤了"
+userSaysSomething: "{name} 说了什么,但是被屏蔽词过滤了"
makeActive: "启用"
display: "显示"
copy: "复制"
@@ -640,19 +648,19 @@ other: "其他"
regenerateLoginToken: "重新生成登录令牌"
regenerateLoginTokenDescription: "重新生成用于登录的内部令牌。通常您不需要这样做。重新生成后,您将在所有设备上登出。"
setMultipleBySeparatingWithSpace: "您可以使用空格分隔多个项目。"
-fileIdOrUrl: "文件ID或者URL"
+fileIdOrUrl: "文件 ID 或者 URL"
behavior: "行为"
sample: "示例"
abuseReports: "举报"
reportAbuse: "举报"
-reportAbuseOf: "举报{name}"
-fillAbuseReportDescription: "请填写举报的详细原因。如果有对方发的帖子,请同时填写URL地址。"
+reportAbuseOf: "举报 {name}"
+fillAbuseReportDescription: "请填写举报的详细原因。如果有对方发的帖子,请同时填写 URL 地址。"
abuseReported: "内容已发送。感谢您提交信息。"
reporter: "举报者"
reporteeOrigin: "举报来源"
reporterOrigin: "举报者来源"
forwardReport: "将该举报信息转发给远程服务器"
-forwardReportIsAnonymous: "勾选则在远程服务器上显示的举报者是匿名的系统账号,而不是您的账号。"
+forwardReportIsAnonymous: "在远程实例上显示的报告者是匿名的系统账号,而不是您的账号。"
send: "发送"
abuseMarkAsResolved: "处理完毕"
openInNewTab: "在新标签页中打开"
@@ -660,7 +668,7 @@ openInSideView: "在侧边栏中打开"
defaultNavigationBehaviour: "默认导航"
editTheseSettingsMayBreakAccount: "编辑这些设置可以会损坏您的账号"
instanceTicker: "帖子的服务器来源"
-waitingFor: "等待{x}"
+waitingFor: "等待 {x}"
random: "随机"
system: "系统"
switchUi: "切换界面"
@@ -670,9 +678,9 @@ createNew: "新建"
optional: "可选"
createNewClip: "新建便签"
unclip: "移除便签"
-confirmToUnclipAlreadyClippedNote: "本帖已包含在便签\"{name}\"里。您想要将本帖从该便签中移除吗?"
+confirmToUnclipAlreadyClippedNote: "本帖已包含在便签 \"{name}\" 里。您想要将本帖从该便签中移除吗?"
public: "公开"
-i18nInfo: "Misskey已经被志愿者们翻译成了各种语言。如果你也有兴趣,可以通过{link}帮助翻译。"
+i18nInfo: "Misskey 已经被志愿者们翻译成了各种语言。如果你也有兴趣,可以通过 {link} 帮助翻译。"
manageAccessTokens: "管理 Access Tokens"
accountInfo: "账户信息"
notesCount: "帖子数量"
@@ -718,14 +726,14 @@ center: "中央"
wide: "宽"
narrow: "窄"
reloadToApplySetting: "页面刷新后设置才会生效。是否现在刷新页面?"
-needReloadToApply: "重启后应用才会生效。"
+needReloadToApply: "重新载入后应用才会生效。"
showTitlebar: "显示标题栏"
clearCache: "清除缓存"
-onlineUsersCount: "{n}人在线"
-nUsers: "{n}用户"
-nNotes: "{n}帖子"
+onlineUsersCount: "{n} 人在线"
+nUsers: "{n} 用户"
+nNotes: "{n} 帖子"
sendErrorReports: "发送错误报告"
-sendErrorReportsDescription: "启用后,如果出现问题,可以与Misskey共享详细的错误信息,从而帮助提高软件的质量。"
+sendErrorReportsDescription: "启用后,如果出现问题,可以与 Misskey 共享详细的错误信息,从而帮助提高软件的质量。错误信息包括操作系统版本、浏览器类型、行为历史记录等。"
myTheme: "我的主题"
backgroundColor: "背景"
accentColor: "强调色"
@@ -755,7 +763,7 @@ emailNotification: "邮件通知"
publish: "发布"
inChannelSearch: "频道内搜索"
useReactionPickerForContextMenu: "单击右键打开回应工具栏"
-typingUsers: "{users}正在输入"
+typingUsers: "{users} 正在输入"
jumpToSpecifiedDate: "跳转到特定日期"
showingPastTimeline: "显示过去的时间线"
clear: "清除"
@@ -789,7 +797,7 @@ administration: "管理"
accounts: "账户"
switch: "切换"
noMaintainerInformationWarning: "管理人员信息未设置。"
-noBotProtectionWarning: "Bot保护未设置。"
+noBotProtectionWarning: "Bot 防御未设置。"
configure: "设置"
postToGallery: "发送到图库"
postToHashtag: "投稿到这个标签"
@@ -817,9 +825,9 @@ received: "收取"
searchResult: "搜索结果"
hashtags: "话题标签"
troubleshooting: "故障排除"
-useBlurEffect: "在UI上使用模糊效果"
+useBlurEffect: "在 UI 上使用模糊效果"
learnMore: "更多信息"
-misskeyUpdated: "Misskey更新完成!"
+misskeyUpdated: "Misskey 更新完成!"
whatIsNew: "显示更新信息"
translate: "翻译"
translatedFrom: "从 {x} 翻译"
@@ -828,7 +836,7 @@ usernameInfo: "在服务器上唯一标识您的帐户的名称。您可以使
aiChanMode: "小蓝模式"
devMode: "开发者模式"
keepCw: "回复时维持隐藏内容"
-pubSub: "Pub/Sub账户"
+pubSub: "Pub/Sub 账户"
lastCommunication: "最近通信"
resolved: "已解决"
unresolved: "未解决"
@@ -853,7 +861,7 @@ ffVisibilityDescription: "您可以设置您的关注/关注者信息的公开
continueThread: "查看更多帖子"
deleteAccountConfirm: "将要删除账户。是否确认?"
incorrectPassword: "密码错误"
-voteConfirm: "确定投给“{choice}” ?"
+voteConfirm: "确定投给 “{choice}” ?"
hide: "隐藏"
useDrawerReactionPickerForMobile: "在移动设备上使用抽屉显示"
welcomeBackWithName: "欢迎回来,{name}"
@@ -868,30 +876,30 @@ numberOfColumn: "列数"
searchByGoogle: "Google"
instanceDefaultLightTheme: "服务器默认浅色主题"
instanceDefaultDarkTheme: "服务器默认深色主题"
-instanceDefaultThemeDescription: "以对象格式键入主题代码"
+instanceDefaultThemeDescription: "以对象格式输入主题代码"
mutePeriod: "屏蔽期限"
period: "截止时间"
indefinitely: "永久"
-tenMinutes: "10分钟"
-oneHour: "1小时"
-oneDay: "1天"
-oneWeek: "1周"
+tenMinutes: "10 分钟"
+oneHour: "1 小时"
+oneDay: "1 天"
+oneWeek: "1 周"
oneMonth: "1 个月"
reflectMayTakeTime: "可能需要一些时间才能体现出效果。"
failedToFetchAccountInformation: "获取账户信息失败"
-rateLimitExceeded: "已超過速率限制"
-cropImage: "剪裁图像"
+rateLimitExceeded: "已超过速率限制"
+cropImage: "裁剪图像"
cropImageAsk: "是否要裁剪图像?"
cropYes: "去裁剪"
cropNo: "就这样吧!"
file: "文件"
-recentNHours: "最近{n}小时"
-recentNDays: "最近{n}天"
+recentNHours: "最近 {n} 小时"
+recentNDays: "最近 {n} 天"
noEmailServerWarning: "电子邮件服务器未设置。"
thereIsUnresolvedAbuseReportWarning: "有未解决的报告"
recommended: "推荐"
check: "检查"
-driveCapOverrideLabel: "變更此用戶的雲端硬碟容量上限"
+driveCapOverrideLabel: "更改此用户的网盘容量上限"
driveCapOverrideCaption: "设定为 0 以下则会解除此限制。"
requireAdminForView: "需要使用管理员账户登录才能查看。"
isSystemAccount: "该账号由系统自动创建和管理。"
@@ -899,7 +907,7 @@ typeToConfirm: "输入 {x} 以确认操作。"
deleteAccount: "删除账户"
document: "文档"
numberOfPageCache: "缓存页数"
-numberOfPageCacheDescription: "设置较高的值会更方便用户,但服务器负载和内存使用量会增加。"
+numberOfPageCacheDescription: "设置较高的值会更方便用户,但设备的负载和内存使用量会增加。"
logoutConfirm: "是否确认登出?"
lastActiveDate: "最后活跃时间"
statusbar: "状态栏"
@@ -921,7 +929,7 @@ cannotUploadBecauseNoFreeSpace: "因为已无可用空间,无法上传。"
cannotUploadBecauseExceedsFileSizeLimit: "无法上传文件,超过文件大小限制。"
beta: "测试"
enableAutoSensitive: "自动 NSFW 识别"
-enableAutoSensitiveDescription: "如果可用,请使用机器学习在媒体上自动设置 NSFW 标志。即使关闭此功能,也可能会根据服务器自动设置。"
+enableAutoSensitiveDescription: "使用机器学习在可用时自动使用 NSFW 标记来标记媒体。即使您关闭此功能,根据服务器的不同,它仍然可能会自动设置。"
activeEmailValidationDescription: "开启用户的电子邮件地址验证,判断它是一次性的电子邮件地址,还是可以实际通信的地址。关闭时,则只检查字符串是否正确。"
navbar: "导航栏"
shuffle: "随机"
@@ -938,7 +946,7 @@ windowMaximize: "最大化"
windowMinimize: "最小化"
windowRestore: "还原"
caption: "标题"
-loggedInAsBot: "以Bot账户登录"
+loggedInAsBot: "以 Bot 账户登录"
tools: "工具"
cannotLoad: "无法加载"
numberOfProfileView: "个人资料展示次数"
@@ -948,8 +956,8 @@ numberOfLikes: "点赞数"
show: "显示"
neverShow: "不再显示"
remindMeLater: "稍后提醒我"
-didYouLikeMisskey: "您喜欢Misskey吗?"
-pleaseDonate: "Misskey是{host}所使用的免费软件。为了今后也能够维持Misskey的开发,请在有余力的情况下进行捐助!"
+didYouLikeMisskey: "您喜欢 Misskey 吗?"
+pleaseDonate: "Misskey 是 {host} 所使用的免费软件。为了今后也能够维持 Misskey 的开发,请在有余力的情况下进行捐助!"
roles: "角色"
role: "角色"
noRole: "角色不存在"
@@ -963,11 +971,11 @@ youCannotCreateAnymore: "抱歉,您无法再创建更多了。"
cannotPerformTemporary: "暂时不可用"
cannotPerformTemporaryDescription: "因操作过于频繁,暂时不可用,请稍后再试。"
invalidParamError: "参数错误"
-invalidParamErrorDescription: "请求参数出现问题。通常是因为bug造成的,但也可能是输入文字数量过多之类的原因。"
+invalidParamErrorDescription: "请求参数出现问题。通常是因为 bug 造成的,但也可能是输入文字数量过多之类的原因。"
permissionDeniedError: "操作被拒绝"
permissionDeniedErrorDescription: "本账户没有执行该操作的权限。"
-preset: "預設值"
-selectFromPresets: "從預設值中選擇"
+preset: "预设值"
+selectFromPresets: "从预设值中选择"
achievements: "成就"
gotInvalidResponseError: "服务器无应答"
gotInvalidResponseErrorDescription: "您的网络连接可能出现了问题, 或是远程服务器暂时不可用. 请稍后重试。"
@@ -998,7 +1006,7 @@ rolesAssignedToMe: "指派给自己的角色"
resetPasswordConfirm: "确定重置密码?"
sensitiveWords: "敏感词"
sensitiveWordsDescription: "将包含设置词的帖子的可见范围设置为首页。可以通过用换行符分隔来设置多个。"
-sensitiveWordsDescription2: "用空格分割关键词作为AND格式,用斜线包裹关键字来构成正则表达式。"
+sensitiveWordsDescription2: "AND 条件用空格分隔,正则表达式用斜线包裹。"
notesSearchNotAvailable: "帖子检索不可用"
license: "许可信息"
unfavoriteConfirm: "确定要取消收藏吗?"
@@ -1011,7 +1019,7 @@ enableChartsForRemoteUser: "生成远程用户的图表"
enableChartsForFederatedInstances: "生成远程服务器的图表"
showClipButtonInNoteFooter: "在贴文下方显示便签按钮"
largeNoteReactions: "使用大图标来显示回应"
-noteIdOrUrl: "帖子ID或URL"
+noteIdOrUrl: "帖子 ID 或 URL"
video: "视频"
videos: "视频"
dataSaver: "省流量模式"
@@ -1041,14 +1049,14 @@ preservedUsernames: "保留的用户名"
preservedUsernamesDescription: "列出需要保留的用户名,使用换行来作为分割。被指定的用户名在建立账户时无法使用,但由管理员所创建的账户不受该限制。此外,现有的账户也不会受到影响。"
createNoteFromTheFile: "从文件创建帖子"
archive: "归档"
-channelArchiveConfirmTitle: "要将{name}归档吗?"
+channelArchiveConfirmTitle: "要将 {name} 归档吗?"
channelArchiveConfirmDescription: "归档后,在频道列表与搜索结果中不会显示,也无法发布新的贴文。"
thisChannelArchived: "该频道已被归档。"
displayOfNote: "显示帖子"
initialAccountSetting: "初始设置"
youFollowing: "正在关注"
-preventAiLearning: "拒绝接受生成式AI的学习"
-preventAiLearningDescription: "要求文章生成AI或图像生成AI不能够以发布的帖子和图像等内容作为学习对象。这是通过在HTML响应中包含noai标志来实现的,这不能完全阻止AI学习你的发布内容,并不是所有AI都会遵守这类请求。"
+preventAiLearning: "拒绝接受生成式 AI 的学习"
+preventAiLearningDescription: "要求文章生成 AI 或图像生成 AI 不能够以发布的帖子和图像等内容作为学习对象。这是通过在 HTML 响应中包含 noai 标志来实现的,这不能完全阻止 AI 学习你的发布内容,并不是所有 AI 都会遵守这类请求。"
options: "选项"
specifyUser: "用户指定"
failedToPreviewUrl: "无法预览"
@@ -1059,9 +1067,30 @@ rolesThatCanBeUsedThisEmojiAsReactionPublicRoleWarn: "角色必须是公开的
cancelReactionConfirm: "要取消回应吗?"
changeReactionConfirm: "要更改回应吗?"
later: "一会再说"
-goToMisskey: "去往Misskey"
+goToMisskey: "去往 Misskey"
additionalEmojiDictionary: "表情符号追加字典"
installed: "已安装"
+branding: "品牌"
+enableServerMachineStats: "公开服务器硬件统计信息"
+enableIdenticonGeneration: "启用生成用户 Identicon"
+turnOffToImprovePerformance: "关闭该选项可以提高性能。"
+createInviteCode: "发行邀请码"
+createWithOptions: "使用选项来创建"
+createCount: "发行数"
+inviteCodeCreated: "已创建邀请码"
+inviteLimitExceeded: "可供发行的邀请码已达上限。"
+createLimitRemaining: "可供发行的邀请码:剩余{limit}个"
+inviteLimitResetCycle: "可以在{time}内发行最多{limit}个邀请码。"
+expirationDate: "有效日期"
+noExpirationDate: "不设置有效日期"
+inviteCodeUsedAt: "邀请码被使用的日期和时间"
+registeredUserUsingInviteCode: "使用了邀请码的用户"
+waitingForMailAuth: "等待验证电子邮件"
+inviteCodeCreator: "发行邀请码的用户"
+usedAt: "使用时间"
+unused: "未使用"
+used: "已使用"
+expired: "已过期"
_initialAccountSetting:
accountCreated: "账户创建完成了!"
letsStartAccountSetup: "来进行帐户的初始设置吧。"
@@ -1071,10 +1100,10 @@ _initialAccountSetting:
theseSettingsCanEditLater: "也可以在稍后修改这里的设置。"
youCanEditMoreSettingsInSettingsPageLater: "还可以在「设置」页面进行其它各种设置,稍后就来确认一下看看吧。"
followUsers: "为了建立属于你自己的时间线,试着去关注你感兴趣的用户吧。"
- pushNotificationDescription: "启用推送通知的话,就可以在设备上受到来自{name}的通知了。"
+ pushNotificationDescription: "启用推送通知的话,就可以在设备上接收来自 {name} 的通知了。"
initialAccountSettingCompleted: "初始设定已经完成了!"
- haveFun: "希望{name}在这里玩得开心!"
- ifYouNeedLearnMore: "关于{name}(Misskey)的使用方法,详见{link}。"
+ haveFun: "希望 {name} 在这里玩得开心!"
+ ifYouNeedLearnMore: "关于 {name}(Misskey) 的使用方法,详见 {link}。"
skipAreYouSure: "要跳过初始设置吗?"
laterAreYouSure: "要稍后再进行初始设定吗?"
_serverRules:
@@ -1083,16 +1112,16 @@ _accountMigration:
moveFrom: "从别的账号迁移到此账户"
moveFromSub: "为另一个账户建立别名"
moveFromLabel: "迁移前的账户"
- moveFromDescription: "如果迁移时需要继承其他账户的关注者,请在此创造别名。此操作需要在实行迁移之前完成!请如已下输入需要迁移的账户:@person@instance.com"
+ moveFromDescription: "如果迁移时需要继承其他账户的关注者,你需要创建一个别名。此操作需要在迁移前完成!\n请像这样输入要迁移的账户:@username@server.example.com\n如果要删除,请将输入字段留空,并保存(不推荐)。"
moveTo: "把这个账户迁移到新的账户"
moveToLabel: "迁移后的账户"
moveCannotBeUndone: "一旦迁移账户,就无法撤销。"
- moveAccountDescription: "此操作无法取消。请先确认您已在迁移后的账户上,为此账户创造了别名。创造别名后,请如以下输入您的迁移后的账户:@person@instance.com"
+ moveAccountDescription: "\n迁移到新帐户。\n ・现有的关注者自动关注新帐户\n ・此帐户的所有关注者都将被删除\n ・您将无法再使用此帐户发帖。\n关注者迁移是自动的,但关注中迁移必须手动完成。请在迁移前在此帐户上导出关注列表,并在迁移后立即在目标帐户上执行导入。\n屏蔽列表也是如此,因此您必须手动迁移它。\n(此描述适用于该服务器(Misskey v13.12.0 或更高版本)。其他 ActivityPub 软件(例如 Mastodon)的行为可能有所不同。)"
moveAccountHowTo: "要进行账户迁移,请现在目标账户中为此账户建立一个别名。\n建立别名后,请像这样输入目标账户:@username@server.example.com"
startMigration: "迁移"
- migrationConfirm: "确定要把此账户迁移到{account}吗?一旦确定后,此操作无法取消,此账户也无法以原来的状态使用。\n同时,请确认迁移后的账户,已创造别名。"
+ migrationConfirm: "确定要把此账户迁移到 {account} 吗?一旦确定后,此操作无法取消,此账户也无法以原来的状态使用。\n同时,请确认迁移后的账户,已创造别名。"
movedAndCannotBeUndone: "该账户已被迁移。\n迁移操作无法撤销。"
- postMigrationNote: "这个账户的关注会在迁移操作后的24小时后解除。该账户的「关注中」和「关注者」皆会变为0。由于不会解除关注关系,你的关注者仍然可以继续查看该账户发补给关注者的帖子。"
+ postMigrationNote: "这个账户的关注会在迁移操作后的 24 小时后解除。该账户的「关注中」和「关注者」皆会变为 0。由于不会解除关注关系,你的关注者仍然可以继续查看该账户发补给关注者的帖子。"
movedTo: "迁移后的账户"
_achievements:
earnedAt: "达成时间"
@@ -1100,103 +1129,103 @@ _achievements:
_notes1:
title: "初来乍到"
description: "第一次发帖"
- flavor: "祝您在Misskey玩的愉快~"
+ flavor: "祝您在 Misskey 玩的愉快~"
_notes10:
title: "一些帖子"
- description: "发布了10篇帖子"
+ description: "发布了 10 篇帖子"
_notes100:
title: "很多帖子"
- description: "发布了100篇帖子"
+ description: "发布了 100 篇帖子"
_notes500:
title: "满是帖子"
- description: "发布了500篇帖子"
+ description: "发布了 500 篇帖子"
_notes1000:
title: "积帖成山"
- description: "发布了1,000篇帖子"
+ description: "发布了 1,000 篇帖子"
_notes5000:
title: "帖如泉涌"
- description: "发布了5,000篇帖子"
+ description: "发布了 5,000 篇帖子"
_notes10000:
title: "超级帖"
- description: "发布了10,000篇帖子"
+ description: "发布了 10,000 篇帖子"
_notes20000:
title: "还想要更多帖子"
- description: "发布了20,000篇帖子"
+ description: "发布了 20,000 篇帖子"
_notes30000:
title: "帖子帖子帖子"
- description: "发布了30,000篇帖子"
+ description: "发布了 30,000 篇帖子"
_notes40000:
title: "帖子工厂"
- description: "发布了40,000篇帖子"
+ description: "发布了 40,000 篇帖子"
_notes50000:
title: "帖子星球"
- description: "发布了50,000篇帖子"
+ description: "发布了 50,000 篇帖子"
_notes60000:
title: "帖子类星体"
- description: "发布了60,000篇帖子"
+ description: "发布了 60,000 篇帖子"
_notes70000:
title: "帖子黑洞"
- description: "发布了70,000篇帖子"
+ description: "发布了 70,000 篇帖子"
_notes80000:
title: "帖子星系"
- description: "发布了80,000篇帖子"
+ description: "发布了 80,000 篇帖子"
_notes90000:
title: "帖子起源"
- description: "发布了90,000篇帖子"
+ description: "发布了 90,000 篇帖子"
_notes100000:
title: "ALL YOUR NOTE ARE BELONG TO US"
- description: "发布了100,000篇帖子"
+ description: "发布了 100,000 篇帖子"
flavor: "真的有那么多可以写的东西吗?"
_login3:
title: "初学者 I"
- description: "连续登录3天"
- flavor: "今天开始我就是Misskist!"
+ description: "累计登录 3 天"
+ flavor: "今天开始我就是 Misskist!"
_login7:
title: "初学者 II"
- description: "连续登录7天"
+ description: "累计登录 7 天"
flavor: "您开始习惯了吗?"
_login15:
title: "初学者 III"
- description: "连续登录15天"
+ description: "累计登录 15 天"
_login30:
title: "Misskist Ⅰ"
- description: "连续登录30天"
+ description: "累计登录 30 天"
_login60:
title: "Misskist Ⅱ"
- description: "连续登录60天"
+ description: "累计登录 60 天"
_login100:
title: "Misskist Ⅲ"
- description: "总登入100天"
- flavor: "那个用户,是Misskist喔"
+ description: "累计登入 100 天"
+ flavor: "那个用户,是 Misskist 喔"
_login200:
title: "定期联系Ⅰ"
- description: "总登录天数200天"
+ description: "累计登录 200 天"
_login300:
title: "定期联系Ⅱ"
- description: "总登录天数300天"
+ description: "累计登录 300 天"
_login400:
title: "定期联系Ⅲ"
- description: "总登录天数400天"
+ description: "累计登录 400 天"
_login500:
title: "老熟人Ⅰ"
- description: "总登录天数500天"
+ description: "累计登录 500 天"
flavor: "诸君,我喜欢贴文"
_login600:
title: "老熟人Ⅱ"
- description: "总登录天数600天"
+ description: "累计登录 600 天"
_login700:
title: "老熟人Ⅲ"
- description: "总登录天数700天"
+ description: "累计登录 700 天"
_login800:
- title: "帖子大师Ⅰ"
- description: "总登录天数800天"
+ title: "帖子大师 Ⅰ"
+ description: "累计登录 800 天"
_login900:
- title: "帖子大师Ⅱ"
- description: "总登录天数900天"
+ title: "帖子大师 Ⅱ"
+ description: "累计登录 900 天"
_login1000:
- title: "帖子大师Ⅲ"
- description: "总登录天数1000天"
- flavor: "感谢您使用Misskey!"
+ title: "帖子大师 Ⅲ"
+ description: "累计登录 1000 天"
+ flavor: "感谢您使用 Misskey!"
_noteClipped1:
title: "忍不住要收藏到便签"
description: "第一次将贴文贴进便签"
@@ -1218,56 +1247,56 @@ _achievements:
description: "第一次关注别人"
_following10:
title: "关注,跟随"
- description: "关注超过10人"
+ description: "关注超过 10 人"
_following50:
title: "我的朋友很多"
- description: "关注超过50人"
+ description: "关注超过 50 人"
_following100:
- title: "我的朋友很多"
- description: "关注超过100人"
+ title: "胜友如云"
+ description: "关注超过 100 人"
_following300:
title: "朋友成群"
- description: "关注数超过300"
+ description: "关注数超过 300"
_followers1:
title: "最初的关注者"
description: "第一次被关注"
_followers10:
title: "关注我吧!"
- description: "拥有超过10名关注者"
+ description: "拥有超过 10 名关注者"
_followers50:
title: "三五成群"
- description: "拥有超过50名关注者"
+ description: "拥有超过 50 名关注者"
_followers100:
title: "胜友如云"
- description: "拥有超过100名关注者"
+ description: "拥有超过 100 名关注者"
_followers300:
title: "排列成行"
- description: "拥有超过300名关注者"
+ description: "拥有超过 300 名关注者"
_followers500:
title: "信号塔"
- description: "拥有超过500名关注者"
+ description: "拥有超过 500 名关注者"
_followers1000:
title: "大影响家"
- description: "拥有超过1000名关注者"
+ description: "拥有超过 1000 名关注者"
_collectAchievements30:
title: "成就收藏家"
- description: "获得超过30个成就"
+ description: "获得超过 30 个成就"
_viewAchievements3min:
title: "成就爱好者"
description: "盯着成就看三分钟"
_iLoveMisskey:
title: "I Love Misskey"
- description: "发布\"I ❤ #Misskey\"帖子"
+ description: "发布 \"I ❤ #Misskey\" 帖子"
flavor: "感谢您使用 Misskey ! by 开发团队"
_foundTreasure:
title: "寻宝"
description: "发现了隐藏的宝藏"
_client30min:
title: "休息一下!"
- description: "启动客户端超过30分钟"
+ description: "启动客户端超过 30 分钟"
_client60min:
- title: "Misskey重度依赖"
- description: "启动客户端超过60分钟"
+ title: "Misskey 重度依赖"
+ description: "启动客户端超过 60 分钟"
_noteDeletedWithin1min:
title: "欲言又止"
description: "发帖后一分钟内就将其删除"
@@ -1277,20 +1306,20 @@ _achievements:
flavor: "差不多该去睡了喔。"
_postedAt0min0sec:
title: "报时"
- description: "在0点发布一篇帖子"
+ description: "在 0 点发布一篇帖子"
flavor: "嘣 嘣 嘣 Biu——!"
_selfQuote:
title: "自我引用"
description: "引用了自己的帖子"
_htl20npm:
title: "流动的时间线"
- description: "在首页时间线的流速超过20npm"
+ description: "在首页时间线的流速超过 20npm"
_viewInstanceChart:
title: "分析师"
description: "查看了服务器信息中的图表"
_outputHelloWorldOnScratchpad:
title: "Hello, world!"
- description: "在AiScript控制台中输出 hello world"
+ description: "在 AiScript 控制台中输出 hello world"
_open3windows:
title: "多窗口"
description: "打开了三个或更多的窗口"
@@ -1299,25 +1328,25 @@ _achievements:
description: "试图对网盘中的文件夹进行循环嵌套"
_reactWithoutRead:
title: "有好好读过吗?"
- description: "在含有100字以上的帖子被发出三秒内做出回应"
+ description: "在含有 100 字以上的帖子被发出三秒内做出回应"
_clickedClickHere:
title: "点这里"
description: "点了这里"
_justPlainLucky:
title: "超高校级的幸运"
- description: "每10秒有0.01的概率自动获得"
+ description: "每 10 秒有 0.01 的概率自动获得"
_setNameToSyuilo:
title: "像神一样呐"
- description: "将名称设定为syuilo"
+ description: "将名称设定为 syuilo"
_passedSinceAccountCreated1:
title: "一周年"
- description: "账户创建时间超过1年"
+ description: "账户创建时间超过 1 年"
_passedSinceAccountCreated2:
title: "二周年"
- description: "账户创建时间超过2年"
+ description: "账户创建时间超过 2 年"
_passedSinceAccountCreated3:
title: "三周年"
- description: "账户创建时间超过3年"
+ description: "账户创建时间超过 3 年"
_loggedInOnBirthday:
title: "生日快乐"
description: "在生日当天登录"
@@ -1331,7 +1360,7 @@ _achievements:
flavor: "是不是软件有问题?"
_brainDiver:
title: "Brain Diver"
- description: "发布了包含Brain Diver链接的帖子"
+ description: "发布了包含 Brain Diver 链接的帖子"
flavor: "Misskey-Misskey La-Tu-Ma"
_role:
new: "创建角色"
@@ -1353,7 +1382,7 @@ _role:
baseRole: "基本角色"
useBaseValue: "使用基本角色的值"
chooseRoleToAssign: "选择要分配的角色"
- iconUrl: "图标URL"
+ iconUrl: "图标 URL"
asBadge: "作为徽章显示"
descriptionOfAsBadge: "开启后,用户名旁边将会出现角色图标。"
isExplorable: "公开角色时间线"
@@ -1372,9 +1401,12 @@ _role:
ltlAvailable: "查看本地时间线"
canPublicNote: "允许公开发帖"
canInvite: "发放服务器邀请码"
+ inviteLimit: "可发行邀请码的数量"
+ inviteLimitCycle: "邀请码的发行间隔"
+ inviteExpirationTime: "邀请码的有效日期"
canManageCustomEmojis: "管理自定义表情符号"
driveCapacity: "网盘容量"
- alwaysMarkNsfw: "总是将文件标记为NSFW"
+ alwaysMarkNsfw: "总是将文件标记为 NSFW"
pinMax: "帖子置顶数量限制"
antennaMax: "可创建的最大天线数量"
wordMuteMax: "屏蔽词的字数限制"
@@ -1402,7 +1434,7 @@ _role:
or: "符合以下任一条件"
not: "不符合以下任何条件"
_sensitiveMediaDetection:
- description: "可以使用机器学习技术自动检测敏感媒体,以便进行审核。服务器负载将略微增加。"
+ description: "使用机器学习技术自动检测敏感媒体,以便进行审核。服务器负载将略微增加。"
sensitivity: "检测敏感度"
sensitivityDescription: "敏感度较低,则误检(假阳性)会减少;敏感度较高,则漏检(假阴性)会减少。"
setSensitiveFlagAutomatically: "自动设置 NSFW 标签"
@@ -1434,9 +1466,10 @@ _ad:
back: "返回"
reduceFrequencyOfThisAd: "减少此广告的频率"
hide: "不显示"
+ timezoneinfo: "星期几是由服务器的时区所指定的。"
_forgotPassword:
- enterEmail: "请输入您验证账号时用的电子邮箱地址,密码重置链接将发送至该邮箱上。"
- ifNoEmail: "如果您没有使用电子邮件地址进行验证,请联系管理员。"
+ enterEmail: "请输入您设置的电子邮箱地址,密码重置链接将发送至该邮箱上。"
+ ifNoEmail: "如果您没有设置电子邮件地址,请联系管理员。"
contactAdmin: "该服务器不支持发送电子邮件。如果您想重设密码,请联系管理员。"
_gallery:
my: "我的图库"
@@ -1460,8 +1493,8 @@ _preferencesBackups:
save: "覆盖存档"
inputName: "请输入备份的名称"
cannotSave: "无法保存"
- nameAlreadyExists: "备份名称\"{name}\"已经存在,请指定其他名称。"
- applyConfirm: "您是否要将备份\"{name}\"应用到当前设备上?当前设备现有配置将被丢弃。"
+ nameAlreadyExists: "备份名称 \"{name}\" 已经存在,请指定其他名称。"
+ applyConfirm: "您是否要将备份 \"{name}\" 应用到当前设备上?当前设备现有配置将被丢弃。"
saveConfirm: "您确定要覆盖保存 {name} 吗?"
deleteConfirm: "您确定要删除 {name} 吗?"
renameConfirm: "您确定要把“{old}”改为“{new}”吗?"
@@ -1477,18 +1510,18 @@ _registry:
domain: "域"
createKey: "创建键"
_aboutMisskey:
- about: "Misskey是由syuilo于2014年开发的开源软件。"
+ about: "Misskey 是由 syuilo 于 2014 年开发的开源软件。"
contributors: "主要贡献者"
allContributors: "全体贡献者"
source: "源代码"
- translation: "翻译Misskey"
- donate: "赞助Misskey"
- morePatrons: "还有很多其他的人也在支持我们,非常感谢🥰"
+ translation: "翻译 Misskey"
+ donate: "赞助 Misskey"
+ morePatrons: "还有很多其它的人也在支持我们,非常感谢🥰"
patrons: "支持者"
-_nsfw:
- respect: "隐藏敏感内容"
- ignore: "不隐藏敏感内容"
- force: "总是隐藏内容"
+_displayOfSensitiveMedia:
+ respect: "隐藏敏感媒体"
+ ignore: "显示敏感媒体"
+ force: "隐藏所有内容"
_instanceTicker:
none: "不显示"
remote: "仅远程用户"
@@ -1505,8 +1538,8 @@ _channel:
featured: "热点"
owned: "管理中"
following: "正在关注"
- usersCount: "有{n}人参与"
- notesCount: "有{n}个帖子"
+ usersCount: "有 {n} 人参与"
+ notesCount: "有 {n} 个帖子"
nameAndDescription: "名称与描述"
nameOnly: "仅名称"
_menuDisplay:
@@ -1516,16 +1549,16 @@ _menuDisplay:
hide: "隐藏"
_wordMute:
muteWords: "禁用词"
- muteWordsDescription: "使用空格分隔表示AND逻辑,使用换行符分隔表示OR逻辑。"
- muteWordsDescription2: "将关键字用斜线括起来表示正则表达式。"
+ muteWordsDescription: "AND 条件用空格分隔,OR 条件用换行符分隔。"
+ muteWordsDescription2: "正则表达式用斜线包裹"
softDescription: "隐藏时间线中指定条件的帖子。"
hardDescription: "防止将具有指定条件的帖子添加到时间线。 即使您更改条件,未添加的帖文也会被排除在外。"
soft: "软屏蔽"
hard: "硬屏蔽"
mutedNotes: "被屏蔽的帖子"
_instanceMute:
- instanceMuteDescription: "屏蔽配置服务器中的所有帖子和转帖,包括这些服务器上的用户回复。"
- instanceMuteDescription2: "设置时用换行符来分隔"
+ instanceMuteDescription: "屏蔽服务器中的所有帖子和转帖,包括这些服务器上的用户回复。"
+ instanceMuteDescription2: "一行一个"
title: "隐藏服务器已设置的帖子。"
heading: "屏蔽服务器"
_theme:
@@ -1557,7 +1590,7 @@ _theme:
lighten: "浅色"
inputConstantName: "请输入常量名称"
importInfo: "您可以在此处粘贴主题代码,将其导入到编辑器中"
- deleteConstantConfirm: "确定要删除常量{const}吗?"
+ deleteConstantConfirm: "确定要删除常量 {const} 吗?"
keys:
accent: "强调色"
bg: "背景"
@@ -1589,8 +1622,8 @@ _theme:
cwBg: "隐藏内容按钮背景"
cwFg: "隐藏内容按钮文本"
cwHoverBg: "隐藏内容按钮背景(悬停)"
- toastBg: "Toast通知背景"
- toastFg: "Toast通知文本"
+ toastBg: "Toast 通知背景"
+ toastFg: "Toast 通知文本"
buttonBg: "按钮背景"
buttonHoverBg: "按钮背景(悬停)"
inputBorder: "输入框边框"
@@ -1613,13 +1646,13 @@ _sfx:
_ago:
future: "未来"
justNow: "最近"
- secondsAgo: "{n}秒前"
- minutesAgo: "{n}分前"
- hoursAgo: "{n}小时前"
- daysAgo: "{n}日前"
- weeksAgo: "{n}周前"
- monthsAgo: "{n}月前"
- yearsAgo: "{n}年前"
+ secondsAgo: "{n} 秒前"
+ minutesAgo: "{n} 分前"
+ hoursAgo: "{n} 小时前"
+ daysAgo: "{n} 日前"
+ weeksAgo: "{n} 周前"
+ monthsAgo: "{n} 月前"
+ yearsAgo: "{n} 年前"
invalid: "没有"
_time:
second: "秒"
@@ -1627,7 +1660,7 @@ _time:
hour: "小时"
day: "日"
_timelineTutorial:
- title: "Misskey的使用方法"
+ title: "Misskey 的使用方法"
step1_1: "这个画面是「时间线」。{name}的投稿会按照帖子的发布时间顺序来显示。"
step1_2: "时间线有许多种类,比如在「首页时间线」中展现的是你关注的人的贴文;而在「本地时间线」中展现的是{name}里全部用户的贴文。"
step2_1: "那么接下来,试着写一些什么东西来发布吧!你可以通过点击屏幕上的铅笔图标来打开投稿页面。"
@@ -1640,20 +1673,20 @@ _2fa:
alreadyRegistered: "此设备已被注册"
registerTOTP: "开始设置认证应用"
passwordToTOTP: "请输入您的密码"
- step1: "首先,在您的设备上安装验证应用,例如{a}或{b}。"
+ step1: "首先,在您的设备上安装验证应用,例如 {a} 或 {b}。"
step2: "然后,扫描屏幕上显示的二维码。"
- step2Click: "通过点击QR码,您可以使用设备上安装的身份验证器应用程序或密钥环进行注册"
- step2Url: "在桌面应用程序中输入以下URL:"
+ step2Click: "通过点击二维码,您可以使用设备上安装的身份验证器应用程序或密钥环进行注册"
+ step2Url: "在桌面应用程序中输入以下 URL:"
step3Title: "输入验证码"
step3: "输入您的应用提供的动态口令以完成设置。"
step4: "从现在开始,任何登录操作都将要求您提供动态口令。"
securityKeyNotSupported: "您的浏览器不支持安全密钥。"
- registerTOTPBeforeKey: "要注册安全密钥或Passkey,请先设置验证器应用程序。"
+ registerTOTPBeforeKey: "要注册安全密钥或 Passkey,请先设置验证器应用程序。"
securityKeyInfo: "注册兼容 WebAuthn 的密钥,例如支持 FIDO2 的硬件安全密钥、设备上的生物识别功能、PIN 码以及 Passkey 等。"
- chromePasskeyNotSupported: "目前不支持 Chrome 的Passkey。"
- registerSecurityKey: "注册安全密钥或Passkey"
+ chromePasskeyNotSupported: "目前不支持 Chrome 的 Passkey。"
+ registerSecurityKey: "注册安全密钥或 Passkey"
securityKeyName: "输入密钥名称"
- tapSecurityKey: "请按照浏览器说明操作来注册安全密钥或Passkey。"
+ tapSecurityKey: "请按照浏览器说明操作来注册安全密钥或 Passkey。"
removeKey: "删除安全密钥"
removeKeyConfirm: "您确定要删除 {name} 吗?"
whyTOTPOnlyRenew: "如果注册了安全密钥,则无法取消验证器应用程序上的设置。"
@@ -1696,9 +1729,9 @@ _permissions:
"write:gallery-likes": "操作喜欢的图片"
_auth:
shareAccessTitle: "应用程序授权许可"
- shareAccess: "您要授权允许“{name}”访问您的帐户吗?"
+ shareAccess: "您要授权允许 “{name}” 访问您的帐户吗?"
shareAccessAsk: "您确定要授权此应用程序访问您的帐户吗?"
- permission: "{name}需要以下权限"
+ permission: "{name} 需要以下权限"
permissionAsk: "这个应用程序需要以下权限"
pleaseGoBack: "请返回到应用程序"
callback: "回到应用程序"
@@ -1726,12 +1759,12 @@ _widgets:
calendar: "日历"
trends: "趋势"
clock: "时钟"
- rss: "RSS阅读器"
+ rss: "RSS 阅读器"
rssTicker: "RSS Ticker"
activity: "活动"
photos: "照片"
digitalClock: "数字时钟"
- unixClock: "UNIX时钟"
+ unixClock: "UNIX 时钟"
federation: "联合"
instanceCloud: "服务器云"
postForm: "投稿窗口"
@@ -1740,7 +1773,7 @@ _widgets:
onlineUsers: "在线用户"
jobQueue: "作业队列"
serverMetric: "服务器指标"
- aiscript: "AiScript控制台"
+ aiscript: "AiScript 控制台"
aiscriptApp: "AiScript App"
aichan: "小蓝"
userList: "用户列表"
@@ -1750,11 +1783,11 @@ _widgets:
_cw:
hide: "隐藏"
show: "查看更多"
- chars: "{count}个字符"
+ chars: "{count} 个字符"
files: "{count} 个文件"
_poll:
noOnlyOneChoice: "需要至少两个选项"
- choiceN: "选择{n}"
+ choiceN: "选择 {n}"
noMore: "无法再添加更多了"
canMultipleVote: "允许多个投票"
expiration: "截止时间"
@@ -1764,16 +1797,16 @@ _poll:
deadlineDate: "截止日期"
deadlineTime: "小时"
duration: "时长"
- votesCount: "{n}票"
- totalVotes: "总票数{n}"
+ votesCount: "{n} 票"
+ totalVotes: "总票数 {n}"
vote: "投票"
showResult: "显示结果"
voted: "已投票"
closed: "已截止"
- remainingDays: "{d}天{h}小时后截止"
- remainingHours: "{h}小时{m}分后截止"
- remainingMinutes: "{m}分{s}秒后截止"
- remainingSeconds: "{s}秒后截止"
+ remainingDays: "{d} 天 {h} 小时后截止"
+ remainingHours: "{h} 小时 {m} 分后截止"
+ remainingMinutes: "{m} 分 {s} 秒后截止"
+ remainingSeconds: "{s} 秒后截止"
_visibility:
public: "公开"
publicDescription: "您的帖子将出现在全局时间线上"
@@ -1849,16 +1882,16 @@ _timelines:
social: "社交"
global: "全局"
_play:
- new: "创建Play"
- edit: "编辑Play"
- created: "创建了一个Play"
- updated: "更新了Play"
- deleted: "删除了Play"
- pageSetting: "Play设置"
- editThisPage: "编辑此Play"
+ new: "创建 Play"
+ edit: "编辑 Play"
+ created: "创建了一个 Play"
+ updated: "更新了 Play"
+ deleted: "删除了 Play"
+ pageSetting: "Play 设置"
+ editThisPage: "编辑此 Play"
viewSource: "查看源代码"
- my: "我的Play"
- liked: "点赞的Play"
+ my: "我的 Play"
+ liked: "点赞的 Play"
featured: "热门"
title: "标题"
script: "脚本"
@@ -1871,8 +1904,8 @@ _pages:
updated: "页面已更新"
deleted: "该页面已被删除"
pageSetting: "页面设置"
- nameAlreadyExists: "该页面URL已存在"
- invalidNameTitle: "无效的页面URL"
+ nameAlreadyExists: "该页面 URL 已存在"
+ invalidNameTitle: "无效的页面 URL"
invalidNameText: "请确认该项不为空"
editThisPage: "编辑此页面"
viewSource: "查看源代码"
@@ -1887,7 +1920,7 @@ _pages:
content: "页面内容"
variables: "变量"
title: "标题"
- url: "页面URL"
+ url: "页面 URL"
summary: "页面摘要"
alignCenter: "居中"
hideTitleWhenPinned: "置顶时隐藏标题"
@@ -1909,7 +1942,7 @@ _pages:
button: "按钮"
note: "嵌入的帖子"
_note:
- id: "帖子ID"
+ id: "帖子 ID"
idDescription: "您也可以通过粘贴帖子的URL来进行设置。"
detailed: "显示详细信息"
_relayStatus:
@@ -1963,6 +1996,7 @@ _deck:
introduction: "将各列进行组合以创建您自己的界面!"
introduction2: "您可以随时通过屏幕右侧的 + 来添加列"
widgetsIntroduction: "从列菜单中,选择“小工具编辑”来添加小工具"
+ useSimpleUiForNonRootPages: "用简易UI表示非根页面"
_columns:
main: "主列"
widgets: "小工具"
@@ -1987,7 +2021,7 @@ _webhookSettings:
createWebhook: "创建 Webhook"
name: "名称"
secret: "密钥"
- events: "何时运行Webhook"
+ events: "何时运行 Webhook"
active: "已启用"
_events:
follow: "关注时"
diff --git a/locales/zh-TW.yml b/locales/zh-TW.yml
index 8017018507..df4122ef3d 100644
--- a/locales/zh-TW.yml
+++ b/locales/zh-TW.yml
@@ -1,7 +1,7 @@
---
_lang_: "繁體中文"
-headlineMisskey: "貼文連繫網路"
-introMisskey: "歡迎! Misskey是一個開放原始碼且去中心化的社群網路。\n透過「貼文」分享周邊新鮮事,並告訴其他人您的想法!📡\n透過「反應」功能,對大家的貼文表達情感!👍\n一起來探索這個新的世界吧!🚀"
+headlineMisskey: "貼文連繫網絡"
+introMisskey: "歡迎!Misskey 是一個開源且去中心化的社群網路服務。\n發佈「貼文」向身邊的人分享您的想法!📡\n利用「反應」表達您對貼文的感覺!👍\n讓我們一起探索新的世界吧!🚀"
poweredByMisskeyDescription: "{name}是使用開放原始碼平台Misskey的服務之一(稱為 Misskey 伺服器)。\n"
monthAndDay: "{month}月 {day}日"
search: "搜尋"
@@ -49,11 +49,15 @@ delete: "刪除"
deleteAndEdit: "刪除並編輯"
deleteAndEditConfirm: "要刪除並再次編輯嗎?此貼文的所有反應、轉發和回覆也將會消失。"
addToList: "加入至清單"
+addToAntenna: "新增至天線"
sendMessage: "發送訊息"
copyRSS: "複製RSS"
copyUsername: "複製使用者名稱"
-copyUserId: "複製使用者ID"
-copyNoteId: "複製貼文ID"
+copyUserId: "複製使用者 ID"
+copyNoteId: "複製貼文 ID"
+copyFileId: "複製檔案ID"
+copyFolderId: "複製資料夾ID"
+copyProfileUrl: "複製個人資料網址"
searchUser: "搜尋使用者"
reply: "回覆"
loadMore: "載入更多"
@@ -72,8 +76,8 @@ files: "檔案"
download: "下載"
driveFileDeleteConfirm: "確定要刪除檔案「{name}」嗎?使用此附件的貼文也會跟著消失。\n"
unfollowConfirm: "確定要取消追隨{name}嗎?"
-exportRequested: "已請求匯出。這可能會花一點時間。結束後檔案將會被放到雲端裡。"
-importRequested: "已請求匯入。這可能會花一點時間"
+exportRequested: "已請求匯出。這可能會花一點時間。匯出的檔案將會被放到雲端裡。"
+importRequested: "已請求匯入。這可能會花一點時間。"
lists: "清單"
noLists: "你沒有任何清單"
note: "貼文"
@@ -87,9 +91,9 @@ error: "錯誤"
somethingHappened: "發生錯誤"
retry: "重試"
pageLoadError: "載入頁面失敗"
-pageLoadErrorDescription: "這通常是因為網路錯誤或是瀏覽器快取殘留的原因。請先清除瀏覽器快取,稍後再重試"
+pageLoadErrorDescription: "這通常是網路錯誤或瀏覽器快取殘留而引起的。請先清除瀏覽器快取,稍後再重試。"
serverIsDead: "伺服器沒有回應。請稍等片刻再試。"
-youShouldUpgradeClient: "請重新載入以使用新版本的客戶端顯示此頁面"
+youShouldUpgradeClient: "請重新載入以使用新版客戶端顯示此頁面。"
enterListName: "輸入清單名稱"
privacy: "隱私"
makeFollowManuallyApprove: "手動審核追隨請求"
@@ -111,13 +115,13 @@ inChannelQuote: "在頻道內引用"
pinnedNote: "已置頂的貼文"
pinned: "置頂"
you: "您"
-clickToShow: "按一下以顯示"
+clickToShow: "點擊查看"
sensitive: "敏感內容"
add: "新增"
reaction: "反應"
reactions: "反應"
reactionSetting: "在選擇器中顯示反應"
-reactionSettingDescription2: "拖動以重新列序,點擊以刪除,按下 + 添加。"
+reactionSettingDescription2: "拖動以交換,點擊以刪除,按下「+」以新增。"
rememberNoteVisibility: "記住貼文可見性"
attachCancel: "移除附件"
markAsSensitive: "標記為敏感內容"
@@ -136,8 +140,10 @@ unblockConfirm: "確定解除封鎖此用戶?"
suspendConfirm: "確定凍結此帳戶?"
unsuspendConfirm: "確定解凍此帳戶?"
selectList: "選擇清單"
+editList: "編輯清單"
selectChannel: "選擇頻道"
selectAntenna: "選擇天線"
+editAntenna: "編輯天線"
selectWidget: "選擇小工具"
editWidgets: "編輯小工具"
editWidgetsExit: "完成"
@@ -146,18 +152,20 @@ emoji: "表情符號"
emojis: "表情符號"
emojiName: "表情符號名稱"
emojiUrl: "表情符號URL"
-addEmoji: "加入表情符號"
+addEmoji: "新增表情符號"
settingGuide: "推薦設定"
cacheRemoteFiles: "快取遠端檔案"
cacheRemoteFilesDescription: "禁用此設定會停止遠端檔案的緩存,從而節省儲存空間,但資料會因直接連線從而產生額外連接數據。"
+cacheRemoteSensitiveFiles: "快取遠端的敏感檔案"
+cacheRemoteSensitiveFilesDescription: "若停用這個設定,則不會快取遠端的敏感檔案,而是直接連結。"
flagAsBot: "此使用者是機器人"
-flagAsBotDescription: "如果本帳戶是由程式控制,請啟用此選項。啟用後,會作為標示幫助其他開發者防止機器人之間產生無限互動的行為,並會調整Misskey內部系統將本帳戶識別為機器人"
-flagAsCat: "喵~~~~~~~~~~~~~~!!!!!!!!!!!!"
+flagAsBotDescription: "如果本帳戶是由程式控制,請啟用此選項。啟用後,會作為標示幫助其他開發者防止機器人之間產生無限互動的行為,並會調整Misskey內部系統將本帳戶識別為機器人。"
+flagAsCat: "此帳戶是一隻貓,喵~~~!!!"
flagAsCatDescription: "如果想將本帳戶標示為一隻貓,請開啟此標示"
flagShowTimelineReplies: "在時間軸上顯示貼文的回覆"
flagShowTimelineRepliesDescription: "啟用時,時間線除了顯示用戶的貼文以外,還會顯示用戶對其他貼文的回覆。"
autoAcceptFollowed: "自動允許來自追隨中使用者的追隨請求"
-addAccount: "添加帳戶"
+addAccount: "新增帳戶"
reloadAccountsList: "更新帳戶清單的資訊"
loginFailed: "登入失敗"
showOnRemote: "轉到所在實例顯示"
@@ -252,7 +260,7 @@ saved: "已儲存"
messaging: "聊天"
upload: "上傳"
keepOriginalUploading: "保留原圖"
-keepOriginalUploadingDescription: "上傳圖片時保留原始圖片。關閉時,瀏覽器會在上傳時生成一張用於web發布的圖片。"
+keepOriginalUploadingDescription: "上傳圖片時保留原始圖片。關閉時,瀏覽器會在上傳時生成適用於網路傳送的版本。"
fromDrive: "從雲端空間"
fromUrl: "從URL"
uploadFromUrl: "從網址上傳"
@@ -271,7 +279,7 @@ basicNotesBeforeCreateAccount: "基本注意事項"
termsOfService: "服務條款"
start: "開始"
home: "首頁"
-remoteUserCaution: "由於該使用者來自遠端實例,因此資訊可能非即時的。"
+remoteUserCaution: "由於該使用者來自其他實例,因此其資訊可能不完整。"
activity: "動態"
images: "圖片"
image: "圖片"
@@ -281,12 +289,12 @@ registeredDate: "註冊日期"
location: "位置"
theme: "外觀主題"
themeForLightMode: "在淺色模式下使用的主題"
-themeForDarkMode: "在黑暗模式下使用的主題"
+themeForDarkMode: "在深色模式下使用的主題"
light: "淺色"
-dark: "黑暗"
+dark: "深色"
lightThemes: "明亮主題"
darkThemes: "黑暗主題"
-syncDeviceDarkMode: "將黑暗模式與設備設置同步"
+syncDeviceDarkMode: "同步至此裝置的深色模式設定"
drive: "雲端硬碟"
fileName: "檔案名稱"
selectFile: "選擇檔案"
@@ -311,7 +319,7 @@ copyUrl: "複製URL"
rename: "重新命名"
avatar: "大頭貼"
banner: "橫幅"
-nsfw: "敏感內容"
+displayOfSensitiveMedia: "顯示敏感媒體"
whenServerDisconnected: "與伺服器的連接中斷時"
disconnectedFromServer: "與伺服器中斷連線"
reload: "重新整理"
@@ -335,18 +343,18 @@ monthX: "{month}月"
yearX: "{year}年"
pages: "頁面"
integration: "整合"
-connectService: "己連結"
-disconnectService: "己斷開 "
-enableLocalTimeline: "開啟本地時間軸"
+connectService: "已連結"
+disconnectService: "已斷開 "
+enableLocalTimeline: "啟用本地時間軸"
enableGlobalTimeline: "啟用全域時間軸"
disablingTimelinesInfo: "為了方便,即使您關閉了時間線功能,管理員和審查員仍可以繼續使用。"
registration: "註冊"
-enableRegistration: "開啟新使用者註冊"
+enableRegistration: "開放新使用者註冊"
invite: "邀請"
driveCapacityPerLocalAccount: "每個本地用戶的雲端空間大小"
driveCapacityPerRemoteAccount: "每個非本地用戶的雲端空間大小"
inMb: "以Mbps為單位"
-iconUrl: "圖標URL"
+iconUrl: "圖標 URL(例如 favicon)"
bannerUrl: "橫幅圖片URL"
backgroundImageUrl: "背景圖片的來源網址 "
basicInfo: "基本資訊"
@@ -368,26 +376,26 @@ turnstile: "Turnstile"
enableTurnstile: "啟用 Turnstile"
turnstileSiteKey: "網站金鑰"
turnstileSecretKey: "金鑰"
-avoidMultiCaptchaConfirm: "使用多種驗證方式可能會造成干擾,您要關閉其他驗證方式嗎?您可以按“取消”保留多種驗證方式。"
+avoidMultiCaptchaConfirm: "使用多種驗證方式可能會造成干擾,您要關閉其他驗證方式嗎?您可以按「取消」保留多種驗證方式。"
antennas: "天線"
manageAntennas: "管理天線"
name: "名稱"
antennaSource: "接收來源"
antennaKeywords: "包含關鍵字"
antennaExcludeKeywords: "排除關鍵字"
-antennaKeywordsDescription: "用空格分隔指定AND、用換行符分隔指定OR"
+antennaKeywordsDescription: "空格代表「以及」(AND),換行代表「或者」(OR)"
notifyAntenna: "通知有新貼文"
withFileAntenna: "僅帶有附件的貼文"
-enableServiceworker: "開啟 ServiceWorker"
-antennaUsersDescription: "指定用換行符分隔的用戶名"
+enableServiceworker: "啟用 ServiceWorker"
+antennaUsersDescription: "填寫使用者名稱,以換行分隔"
caseSensitive: "區分大小寫"
withReplies: "包含回覆"
connectedTo: "您的帳戶已連接到以下社交帳戶"
notesAndReplies: "貼文與回覆"
withFiles: "附件"
silence: "禁言"
-silenceConfirm: "確定要靜音此使用者嗎?"
-unsilence: "解除靜音"
+silenceConfirm: "確定要禁言此帳戶嗎?"
+unsilence: "解除禁言"
unsilenceConfirm: "確定要解除禁言嗎?"
popularUsers: "熱門使用者"
recentlyUpdatedUsers: "最近發文的使用者"
@@ -401,25 +409,25 @@ about: "關於"
aboutMisskey: "關於 Misskey"
administrator: "管理員"
token: "權杖"
-2fa: "雙因素驗證"
+2fa: "雙重驗證"
totp: "驗證應用程式"
totpDescription: "以驗證應用程式輸入一次性密碼"
moderator: "審查員"
moderation: "審查"
-nUsersMentioned: "提到了{n}"
-securityKeyAndPasskey: "安全金鑰・Passkey"
+nUsersMentioned: "被提及到 {n} 次"
+securityKeyAndPasskey: "安全金鑰、Passkey"
securityKey: "安全金鑰"
lastUsed: "上次使用"
-lastUsedAt: "最後使用:{t}"
+lastUsedAt: "上次使用:{t}"
unregister: "註銷帳戶"
passwordLessLogin: "設置無密碼登入"
passwordLessLoginDescription: "不使用密碼,以安全金鑰或 Passkey 登入"
-resetPassword: "重置密碼"
+resetPassword: "重設密碼"
newPasswordIs: "新密碼為「{password}」"
reduceUiAnimation: "減少介面的動態視覺"
share: "分享"
notFound: "找不到"
-notFoundDescription: "找不到與指定URL回應的頁面"
+notFoundDescription: "找不到該 URL 的頁面"
uploadFolder: "預設上傳資料夾"
cacheClear: "清除快取"
markAsReadAllNotifications: "標記所有通知為已讀"
@@ -468,17 +476,17 @@ disableDrawer: "不顯示下拉式選單"
showNoteActionsOnlyHover: "僅在游標停留時顯示貼文的操作選項"
noHistory: "沒有歷史紀錄"
signinHistory: "登入歷史"
-enableAdvancedMfm: "啟用高級MFM"
-enableAnimatedMfm: "啟用MFM動畫"
+enableAdvancedMfm: "啟用高級 MFM"
+enableAnimatedMfm: "啟用 MFM 動畫"
doing: "正在進行"
category: "類別"
tags: "標籤"
docSource: "文件來源"
createAccount: "建立帳戶"
existingAccount: "現有帳戶"
-regenerate: "再生"
+regenerate: "再次生成"
fontSize: "字體大小"
-mediaListWithOneImageAppearance: "僅1枚圖片的媒體列表高度"
+mediaListWithOneImageAppearance: "只有一張圖片時的媒體列表高度"
limitTo: "上限為{x}"
noFollowRequests: "沒有追隨您的請求"
openImageInNewTab: "於新分頁中開啟圖片"
@@ -487,7 +495,7 @@ local: "本地"
remote: "遠端"
total: "合計"
weekOverWeekChanges: "與上週相比"
-dayOverDayChanges: "與前一日相比"
+dayOverDayChanges: "與昨日相比"
appearance: "外觀"
clientSettings: "客戶端設定"
accountSettings: "帳戶設定"
@@ -499,26 +507,26 @@ showFeaturedNotesInTimeline: "在時間軸上顯示熱門推薦"
objectStorage: "Object Storage (物件儲存)"
useObjectStorage: "使用Object Storage"
objectStorageBaseUrl: "Base URL"
-objectStorageBaseUrlDesc: "引用時的URL。如果您使用的是CDN或反向代理,请指定其URL,例如S3:“https://.s3.amazonaws.com”,GCS:“https://storage.googleapis.com/”"
+objectStorageBaseUrlDesc: "引用時的 URL。如果您使用的是 CDN 或反向代理,請指定其 URL,例如 S3(https://.s3.amazonaws.com)、GCS(https://storage.googleapis.com/)。"
objectStorageBucket: "儲存空間(Bucket)"
-objectStorageBucketDesc: "請指定您正在使用的服務的存儲桶名稱。 "
+objectStorageBucketDesc: "請填寫所用服務的儲存空間(Bucket)名稱。 "
objectStoragePrefix: "前綴"
-objectStoragePrefixDesc: "它存儲在此前綴目錄下。"
+objectStoragePrefixDesc: "它儲存在此前綴目錄下。"
objectStorageEndpoint: "端點(Endpoint)"
-objectStorageEndpointDesc: "如要使用AWS S3,請留空。否則請依照你使用的服務商的說明書進行設定,以''或 ':'的形式設定端點(Endpoint)。"
+objectStorageEndpointDesc: "如使用 AWS S3,請留空。如使用其他服務,請按照其說明文件以「」或「:」的形式設定端點(Endpoint)。"
objectStorageRegion: "地域(Region)"
-objectStorageRegionDesc: "指定一個分區,例如“xx-east-1”。 如果您使用的服務沒有分區的概念,請留空或填寫“us-east-1”。"
-objectStorageUseSSL: "使用SSL"
-objectStorageUseSSLDesc: "如果不使用https進行API連接,請關閉"
+objectStorageRegionDesc: "請填寫一個分區,例如「xx-east-1」。 如果您使用的服務不設分區,請留空或填寫「us-east-1」。"
+objectStorageUseSSL: "使用 SSL"
+objectStorageUseSSLDesc: "請在不使用 https 連接 API 時關閉"
objectStorageUseProxy: "使用網路代理"
-objectStorageUseProxyDesc: "如果不使用代理進行API連接,請關閉"
-objectStorageSetPublicRead: "上傳時設定為\"public-read\""
-s3ForcePathStyleDesc: "啟用 s3ForcePathStyle 會強制將儲存槽名稱指定為 URL 中路徑的一部分,而不是主機名。 使用自託管 Minio 之類的可能需要啟用。"
+objectStorageUseProxyDesc: "請在不使用網路代理連接 API 時關閉"
+objectStorageSetPublicRead: "上傳時設定為「public-read」"
+s3ForcePathStyleDesc: "啟用 s3ForcePathStyle 將強制填寫儲存空間(Bucket)名稱至 URL 路徑內,而非寫入主機名。 使用如 Minio 等自行託管服務時可能需要啟用。"
serverLogs: "伺服器日誌"
deleteAll: "刪除所有記錄"
showFixedPostForm: "於時間軸頁頂顯示「發送貼文」方框"
showFixedPostFormInChannel: "於時間軸頁頂顯示「發送貼文」方框(頻道)"
-newNoteRecived: "發現新的貼文"
+newNoteRecived: "發現新貼文"
sounds: "音效"
sound: "音效"
listen: "聆聽"
@@ -542,19 +550,19 @@ sort: "排序"
ascendingOrder: "昇冪"
descendingOrder: "降冪"
scratchpad: "暫存記憶體"
-scratchpadDescription: "AiScript控制台為AiScript提供了實驗環境。您可以在此編寫、執行和確認代碼與Misskey互動的结果。"
+scratchpadDescription: "AiScript 控制台為 AiScript 的實驗環境。您可以在此編寫、執行和確認程式碼與 Misskey 互動的结果。"
output: "輸出"
script: "腳本"
-disablePagesScript: "停用頁面的AiScript腳本"
+disablePagesScript: "停用頁面的 AiScript 腳本"
updateRemoteUser: "更新遠端使用者資訊"
deleteAllFiles: "刪除所有檔案"
-deleteAllFilesConfirm: "要删除所有檔案嗎?"
+deleteAllFilesConfirm: "要刪除所有檔案嗎?"
removeAllFollowing: "解除所有追隨"
removeAllFollowingDescription: "解除{host}所有的追隨。在伺服器不再存在時執行。"
userSuspended: "該使用者已被停用"
userSilenced: "該用戶已被禁言。"
yourAccountSuspendedTitle: "帳戶已被凍結"
-yourAccountSuspendedDescription: "由於違反了伺服器的服務條款或其他原因,該帳戶已被凍結。 您可以與管理員連繫以了解更多訊息。 請不要創建一個新的帳戶。"
+yourAccountSuspendedDescription: "該帳戶已因違反伺服器服務條款或其他原因而被凍結。您可以向管理員查詢更多資訊。請不要建立新帳戶。"
tokenRevoked: "權杖無效"
tokenRevokedDescription: "登入權杖失效,請重新登入。"
accountDeleted: "帳戶已被刪除"
@@ -567,28 +575,28 @@ relays: "中繼"
addRelay: "新增中繼"
inboxUrl: "收件夾URL"
addedRelays: "已加入的中繼"
-serviceworkerInfo: "您需要啟用推送通知"
-deletedNote: "已删除的貼文"
-invisibleNote: "私密的貼文"
+serviceworkerInfo: "您需要啟用推送通知。"
+deletedNote: "已刪除的貼文"
+invisibleNote: "隱藏的貼文"
enableInfiniteScroll: "啟用自動滾動頁面模式"
visibility: "可見性"
poll: "投票"
useCw: "隱藏內容"
-enablePlayer: "打開播放器"
+enablePlayer: "開啟播放器"
disablePlayer: "關閉播放器"
expandTweet: "展開推文"
themeEditor: "主題編輯器"
description: "描述"
-describeFile: "添加標題 "
-enterFileDescription: "輸入標題 "
+describeFile: "新增標題"
+enterFileDescription: "輸入標題"
author: "作者"
-leaveConfirm: "有未保存的更改。要放棄嗎?"
+leaveConfirm: "尚未儲存修改。要放棄嗎?"
manage: "管理"
plugins: "外掛"
preferencesBackups: "備份設定檔"
deck: "多欄模式"
undeck: "取消多欄模式"
-useBlurEffectForModal: "在模態框使用模糊效果"
+useBlurEffectForModal: "在對話框使用模糊效果"
useFullReactionPicker: "使用全尺寸的反應選擇器"
width: "寬度"
height: "高度"
@@ -608,14 +616,14 @@ enableEmail: "啟用發送電郵功能"
emailConfigInfo: "用於確認電郵地址及密碼重置"
email: "電子郵件"
emailAddress: "電郵地址"
-smtpConfig: "SMTP伺服器設定"
+smtpConfig: "SMTP 伺服器設定"
smtpHost: "主機"
smtpPort: "埠"
smtpUser: "使用者名稱"
smtpPass: "密碼"
emptyToDisableSmtpAuth: "留空使用者名稱和密碼以關閉SMTP驗證。"
smtpSecure: "在 SMTP 連接中使用隱式 SSL/TLS"
-smtpSecureInfo: "使用STARTTLS時關閉。"
+smtpSecureInfo: "使用 STARTTLS 時關閉。"
testEmail: "測試郵件發送"
wordMute: "被靜音的文字"
regexpError: "正規表達式錯誤"
@@ -638,16 +646,16 @@ useGlobalSetting: "使用全域設定"
useGlobalSettingDesc: "啟用時,將使用帳戶通知設定。停用時,則可以單獨設定。"
other: "其他"
regenerateLoginToken: "重新產生登入權杖"
-regenerateLoginTokenDescription: "重新產生用於登入的內部權杖。一般情況下是不需要這樣做的。一旦重產,所有裝置將會被登出。"
+regenerateLoginTokenDescription: "重新產生用於登入的內部權杖。一般情況下是不需要這樣做的。重新產生後,所有裝置將會被登出。"
setMultipleBySeparatingWithSpace: "您可以使用空格分隔多個項目。"
-fileIdOrUrl: "檔案ID或URL"
+fileIdOrUrl: "檔案 ID 或 URL"
behavior: "行為"
sample: "範例"
abuseReports: "檢舉"
reportAbuse: "檢舉"
reportAbuseOf: "檢舉{name}"
-fillAbuseReportDescription: "請填寫檢舉的詳細理由。可以的話,請附上針對的URL網址。"
-abuseReported: "回報已送出。感謝您的報告。"
+fillAbuseReportDescription: "請填寫檢舉的詳細理由。如有需要,請附上相關 URL。"
+abuseReported: "檢舉完成。感謝您的報告。"
reporter: "檢舉者"
reporteeOrigin: "檢舉來源"
reporterOrigin: "檢舉者來源"
@@ -657,13 +665,13 @@ send: "發送"
abuseMarkAsResolved: "處理完畢"
openInNewTab: "在新分頁中開啟"
openInSideView: "在側欄中開啟"
-defaultNavigationBehaviour: "默認導航"
+defaultNavigationBehaviour: "預設導航"
editTheseSettingsMayBreakAccount: "修改這些設定可能會毀損您的帳戶"
instanceTicker: "貼文的實例來源"
waitingFor: "等待{x}"
random: "隨機"
system: "系統"
-switchUi: "切換界面"
+switchUi: "切換介面"
desktop: "桌面"
clip: "摘錄"
createNew: "新建"
@@ -672,7 +680,7 @@ createNewClip: "建立新摘錄"
unclip: "解除摘錄"
confirmToUnclipAlreadyClippedNote: "此貼文已包含在摘錄「{name}」中。 你想將貼文從這個摘錄中排除嗎?"
public: "公開"
-i18nInfo: "Misskey已經被志願者們翻譯成各種語言版本,如果想要幫忙的話,可以進入{link}幫助翻譯。"
+i18nInfo: "Misskey 已被志願者們翻譯成各種語言版本。您可以瀏覽{link}幫助翻譯。"
manageAccessTokens: "管理存取權杖"
accountInfo: "帳戶資訊"
notesCount: "貼文數量"
@@ -693,7 +701,7 @@ driveUsage: "雲端硬碟使用量"
noCrawle: "拒絕搜尋引擎索引"
noCrawleDescription: "要求網路搜尋引擎不要索引你的個人資料頁、貼文及頁面等。"
lockedAccountInfo: "即使你通過了追隨者請求,除非你將貼文的可見性設定為 「追隨者」,否則任何人都能看見你的貼文。"
-alwaysMarkSensitive: "默認將圖像/影像標記為敏感內容"
+alwaysMarkSensitive: "預設將多媒體標記為敏感內容"
loadRawImages: "以原始圖檔顯示附件圖檔的縮圖"
disableShowingAnimatedImages: "不播放動態圖檔"
verificationEmailSent: "已發送驗證電子郵件。請點擊進入電子郵件中的鏈接完成驗證。"
@@ -730,7 +738,7 @@ myTheme: "我的佈景主題"
backgroundColor: "背景"
accentColor: "重點色彩"
textColor: "文字"
-saveAs: "另存為..."
+saveAs: "另存新檔"
advanced: "進階"
advancedSettings: "進階設定"
value: "數值"
@@ -752,10 +760,10 @@ editCode: "編輯代碼"
apply: "套用"
receiveAnnouncementFromInstance: "接收由本實例發出的電郵通知"
emailNotification: "郵件通知"
-publish: "發佈"
+publish: "發布"
inChannelSearch: "頻道内搜尋"
useReactionPickerForContextMenu: "點擊右鍵開啟反應工具欄"
-typingUsers: "{users}輸入中..."
+typingUsers: "{users}輸入中"
jumpToSpecifiedDate: "跳轉到特定日期"
showingPastTimeline: "顯示過往的時間線"
clear: "清除"
@@ -763,21 +771,21 @@ markAllAsRead: "全部標示為已讀"
goBack: "返回"
unlikeConfirm: "要取消按讚嗎?"
fullView: "全熒幕顯示"
-quitFullView: "退出全熒幕顯示"
-addDescription: "添加描述"
+quitFullView: "退出全螢幕顯示"
+addDescription: "新增描述"
userPagePinTip: "在貼文的選單中選擇\"置頂\",即可置頂該貼文至您的個人檔案頁面。"
notSpecifiedMentionWarning: "此貼文有未指定的提及"
info: "資訊"
userInfo: "用戶資料"
unknown: "未知"
-onlineStatus: "在線狀態"
-hideOnlineStatus: "隱藏在線狀態"
-hideOnlineStatusDescription: "隱藏在線狀態後,可能會降低檢索等功能的便利性。"
+onlineStatus: "上線狀態"
+hideOnlineStatus: "隱藏上線狀態"
+hideOnlineStatusDescription: "隱藏上線狀態後,可能會降低搜尋等功能的便利性。"
online: "線上"
active: "最近活躍"
offline: "離線"
notRecommended: "不推薦"
-botProtection: "Bot防護"
+botProtection: "Bot 防護"
instanceBlocking: "已封鎖的實例"
selectAccount: "選擇帳戶"
switchAccount: "切換帳戶"
@@ -788,11 +796,11 @@ user: "使用者"
administration: "管理"
accounts: "帳戶"
switch: "切換"
-noMaintainerInformationWarning: "尚未設定管理員信息。"
-noBotProtectionWarning: "尚未設定Bot防護。"
+noMaintainerInformationWarning: "尚未設定管理員訊息。"
+noBotProtectionWarning: "尚未設定 Bot 防護。"
configure: "設定"
postToGallery: "發佈到相簿"
-postToHashtag: "以此主題標籤發布"
+postToHashtag: "以此主題標籤發佈"
gallery: "相簿"
recentPosts: "最新貼文"
popularPosts: "熱門的貼文"
@@ -809,8 +817,8 @@ emailNotConfiguredWarning: "沒有設定電子郵件地址"
ratio: "%"
previewNoteText: "預覽文本"
customCss: "自定義 CSS"
-customCssWarn: "這個設定必須由具備相關知識的人員操作,不當的設定可能导致客戶端無法正常使用。"
-global: "公開"
+customCssWarn: "這個設定必須由具備相關知識的人員操作,不當的設定可能導致客戶端無法正常使用。"
+global: "全域"
squareAvatars: "頭像以方形顯示"
sent: "發送"
received: "收取"
@@ -827,7 +835,7 @@ accountDeletionInProgress: "正在刪除帳戶"
usernameInfo: "在伺服器上您的帳戶是唯一的識別名稱。您可以使用字母 (a ~ z, A ~ Z)、數字 (0 ~ 9) 和下底線 (_)。之後帳戶名是不能更改的。"
aiChanMode: "小藍模式"
devMode: "開發者模式"
-keepCw: "保持CW"
+keepCw: "保持 CW"
pubSub: "Pub/Sub 帳戶"
lastCommunication: "最近的通信"
resolved: "已解決"
@@ -848,8 +856,8 @@ makeReactionsPublicDescription: "將您做過的反應設為公開可見。"
classic: "經典"
muteThread: "將貼文串設為靜音"
unmuteThread: "將貼文串的靜音解除"
-ffVisibility: "連接的公開範圍"
-ffVisibilityDescription: "您可以設定您的關注/關注者資訊的公開範圍"
+ffVisibility: "連繫的可見性"
+ffVisibilityDescription: "您可以設定追隨或追隨者資訊的公開範圍"
continueThread: "查看更多貼文"
deleteAccountConfirm: "將要刪除帳戶。是否確定?"
incorrectPassword: "密碼錯誤。"
@@ -868,15 +876,15 @@ numberOfColumn: "列數"
searchByGoogle: "搜尋"
instanceDefaultLightTheme: "實例預設的淺色主題"
instanceDefaultDarkTheme: "實例預設的深色主題"
-instanceDefaultThemeDescription: "輸入物件形式的主题代碼"
+instanceDefaultThemeDescription: "輸入物件形式的主題代碼"
mutePeriod: "靜音的期限"
period: "期限"
indefinitely: "無期限"
-tenMinutes: "10分鐘"
-oneHour: "1小時"
-oneDay: "1天"
-oneWeek: "1週"
-oneMonth: "1個月"
+tenMinutes: "十分鐘"
+oneHour: "一小時"
+oneDay: "一天"
+oneWeek: "一週"
+oneMonth: "一個月"
reflectMayTakeTime: "可能需要一些時間才會出現效果。"
failedToFetchAccountInformation: "取得帳戶資訊失敗"
rateLimitExceeded: "已超過速率限制"
@@ -892,7 +900,7 @@ thereIsUnresolvedAbuseReportWarning: "有尚未處理的檢舉。"
recommended: "推薦"
check: "檢查"
driveCapOverrideLabel: "更改這個使用者的雲端硬碟容量上限"
-driveCapOverrideCaption: "如果指定0以下的值,就會被取消。"
+driveCapOverrideCaption: "如果指定 0 以下的值,就會被取消。"
requireAdminForView: "必須以管理員帳戶登入才可以檢視。"
isSystemAccount: "由系統自動建立與管理的帳戶。"
typeToConfirm: "要執行這項操作,請輸入 {x} "
@@ -919,21 +927,21 @@ failedToUpload: "上傳失敗"
cannotUploadBecauseInappropriate: "由於判定可能包含不適當的內容,因此無法上傳。"
cannotUploadBecauseNoFreeSpace: "由於雲端硬碟沒有可用空間,因此無法上傳。"
cannotUploadBecauseExceedsFileSizeLimit: "由於超過了檔案大小的限制,無法上傳。"
-beta: "Beta"
-enableAutoSensitive: "自動NSFW判定"
-enableAutoSensitiveDescription: "如果可用,請利用機器學習在媒體上自動設置 NSFW 旗標。 即使關閉此功能,依實例而定也可能會自動設置。"
-activeEmailValidationDescription: "積極地驗證用戶的電子郵件地址,判斷它是否為免洗地址,或者它是否可以通信。 若關閉,則只會檢查字元是否正確。"
+beta: "測試版"
+enableAutoSensitive: "自動 NSFW 判定"
+enableAutoSensitiveDescription: "如果可用,它將使用機器學習技術判斷多媒體內容是否需要標記 NSFW。即使關閉此功能,也可能會依實例規則而自動啟用。"
+activeEmailValidationDescription: "積極驗證帳戶的電郵地址,以判斷它是否可以通訊。關閉此選項代表只會檢查地址是否符合格式。"
navbar: "導覽列"
shuffle: "隨機"
account: "帳戶"
move: "移動 "
pushNotification: "推播通知"
subscribePushNotification: "啟用推播通知"
-unsubscribePushNotification: "停止推播通知"
+unsubscribePushNotification: "停用推播通知"
pushNotificationAlreadySubscribed: "推播通知啟用中"
pushNotificationNotSupported: "瀏覽器或實例不支援推播通知"
-sendPushNotificationReadMessage: "通知與訊息如果已讀的話,就將推播通知刪除"
-sendPushNotificationReadMessageCaption: "「{emptyPushNotificationMessage}」通知將立刻顯示。可能會增加設備的電池消耗。"
+sendPushNotificationReadMessage: "如果已閱讀通知與訊息,就刪除推播通知"
+sendPushNotificationReadMessageCaption: "「{emptyPushNotificationMessage}」通知將立刻顯示。可能會更消耗裝置電池。"
windowMaximize: "最大化"
windowMinimize: "最小化"
windowRestore: "復原"
@@ -948,8 +956,8 @@ numberOfLikes: "讚數"
show: "檢視"
neverShow: "不再顯示"
remindMeLater: "以後再說"
-didYouLikeMisskey: "您是否喜愛Misskey呢?"
-pleaseDonate: "Misskey是由{host}使用的免費軟體。請贊助我們,讓開發能夠持續!"
+didYouLikeMisskey: "您喜歡 Misskey 嗎?"
+pleaseDonate: "Misskey 是由 {host} 使用的免費軟體。請贊助我們,讓開發得以持續!"
roles: "角色"
role: "角色"
noRole: "沒有角色"
@@ -961,23 +969,23 @@ color: "顏色"
manageCustomEmojis: "管理自訂表情符號"
youCannotCreateAnymore: "您無法再建立更多了。"
cannotPerformTemporary: "暫時無法進行"
-cannotPerformTemporaryDescription: "由於超過操作次數限制,暫時無法進行。請過一段時間之後再嘗試。"
+cannotPerformTemporaryDescription: "由於超過操作次數限制,因此暫時無法進行。請稍後再嘗試。"
invalidParamError: "參數錯誤"
-invalidParamErrorDescription: "請求參數有問題。通常是bug造成的,但也有輸入的字元數過多之類的可能性。"
+invalidParamErrorDescription: "請求參數有問題。這可能是漏洞或輸入過多字元所致。"
permissionDeniedError: "操作被拒絕"
-permissionDeniedErrorDescription: "本帳號沒有執行這個操作的權限。"
+permissionDeniedErrorDescription: "此帳戶沒有執行這個操作的權限。"
preset: "預設值"
selectFromPresets: "從預設值中選擇"
achievements: "成就"
gotInvalidResponseError: "伺服器的回應無效"
gotInvalidResponseErrorDescription: "伺服器可能已關閉或者在維護中,請稍後再試。"
thisPostMayBeAnnoying: "這篇貼文可能會造成別人的困擾。"
-thisPostMayBeAnnoyingHome: "發布到首頁"
+thisPostMayBeAnnoyingHome: "發佈到首頁"
thisPostMayBeAnnoyingCancel: "退出"
-thisPostMayBeAnnoyingIgnore: "直接發布貼文"
+thisPostMayBeAnnoyingIgnore: "直接發佈貼文"
collapseRenotes: "省略顯示已看過的轉發貼文"
internalServerError: "內部伺服器錯誤"
-internalServerErrorDescription: "內部伺服器發生了非預期的錯誤。"
+internalServerErrorDescription: "內部伺服器出現意外錯誤。"
copyErrorInfo: "複製錯誤資訊"
joinThisServer: "在此伺服器上註冊"
exploreOtherServers: "探索其他伺服器"
@@ -987,7 +995,7 @@ disableFederationConfirmWarn: "即使停止了聯邦功能,貼文也不會變
disableFederationOk: "停止聯邦功能"
invitationRequiredToRegister: "目前這個伺服器為邀請制,必須擁有邀請碼才能註冊。"
emailNotSupported: "這個伺服器不支援寄送郵件"
-postToTheChannel: "發布到頻道"
+postToTheChannel: "發佈到頻道"
cannotBeChangedLater: "之後不能變更。"
reactionAcceptance: "接受表情反應"
likeOnly: "僅限讚"
@@ -998,7 +1006,7 @@ rolesAssignedToMe: "指派給自己的角色"
resetPasswordConfirm: "重設密碼?"
sensitiveWords: "敏感詞"
sensitiveWordsDescription: "將含有設定詞彙的貼文可見性設為發送至首頁。可以用換行來進行複數的設定。"
-sensitiveWordsDescription2: "用空格分隔關鍵詞構成AND格式,用斜線包圍關鍵字構成正規表達式。"
+sensitiveWordsDescription2: "空格代表「以及」(AND),斜線包圍關鍵字代表使用正規表達式。"
notesSearchNotAvailable: "無法使用搜尋貼文功能。"
license: "授權"
unfavoriteConfirm: "要取消收錄我的最愛嗎?"
@@ -1009,8 +1017,8 @@ retryAllQueuesConfirmTitle: "要現在重試嗎?"
retryAllQueuesConfirmText: "伺服器的負荷可能會暫時增加。"
enableChartsForRemoteUser: "生成遠端用戶的圖表"
enableChartsForFederatedInstances: "生成遠端伺服器的圖表"
-showClipButtonInNoteFooter: "將摘錄添加至貼文"
-largeNoteReactions: "將貼文的反應放大顯示"
+showClipButtonInNoteFooter: "新增摘錄至貼文"
+largeNoteReactions: "放大顯示貼文反應"
noteIdOrUrl: "貼文ID或URL"
video: "影片"
videos: "影片"
@@ -1030,39 +1038,62 @@ rightTop: "右上"
leftBottom: "左下"
rightBottom: "右下"
stackAxis: "堆疊方向"
-vertical: "縱向"
-horizontal: "側向"
+vertical: "直向"
+horizontal: "橫向"
position: "位置"
serverRules: "伺服器規則"
pleaseConfirmBelowBeforeSignup: "在本伺服器註冊之前,請確認下列事項。"
pleaseAgreeAllToContinue: "必須全部勾選「同意」才能繼續。"
continue: "繼續"
preservedUsernames: "保留的使用者名稱"
-preservedUsernamesDescription: "換行列舉要保留的使用者名稱。此處指定的使用者名稱,在建立帳戶時無法使用,但由管理者所建立的帳戶不受此限。此外,既有的帳戶也不受影響。"
+preservedUsernamesDescription: "換行列舉要保留的使用者名稱。此處出現的名稱將在註冊時禁用,但由管理者建立帳戶則不受此限。此外,既有的帳戶也不受影響。"
createNoteFromTheFile: "由此檔案建立貼文"
archive: "封存"
channelArchiveConfirmTitle: "要封存{name}嗎?"
-channelArchiveConfirmDescription: "封存以後,在頻道列表與搜索結果中不會顯示,也無法發布新的貼文。"
+channelArchiveConfirmDescription: "封存後,將不會在頻道列表與搜尋結果中顯示,也無法發佈新貼文。"
thisChannelArchived: "這個頻道已被封存。"
displayOfNote: "顯示貼文"
initialAccountSetting: "初始設定"
youFollowing: "追隨中"
preventAiLearning: "拒絕接受生成式AI的訓練"
-preventAiLearningDescription: "要求外部的文章生成式AI或圖像生成式AI不以發布的貼文和圖像等內容為學習對象。這是透過在HTML響應中包含noai旗標來實現的,但不能完全防止AI的學習,因為這要看該AI是否遵守這個要求。"
+preventAiLearningDescription: "要求站外生成式 AI 不使用您發佈的內容訓練模型。此功能會使伺服器於 HTML 回應新增「noai」標籤,而因為要視乎 AI 會否遵守該標籤,所以此功能無法完全阻止所有 AI 使用您的內容。"
options: "選項"
specifyUser: "指定使用者"
failedToPreviewUrl: "無法預覽"
update: "更新"
-rolesThatCanBeUsedThisEmojiAsReaction: "可以當成反應使用的角色"
-rolesThatCanBeUsedThisEmojiAsReactionEmptyDescription: "如果是未指定角色的情況,則任何人都可以被當成反應來使用。"
-rolesThatCanBeUsedThisEmojiAsReactionPublicRoleWarn: "角色必須是公開的角色。"
-cancelReactionConfirm: "要取消做出的反應嗎?"
-changeReactionConfirm: "要變更做出的反應嗎?"
+rolesThatCanBeUsedThisEmojiAsReaction: "可以使用此表情符號為反應的角色"
+rolesThatCanBeUsedThisEmojiAsReactionEmptyDescription: "如沒有指定角色,任何人都可使用此表情回應。"
+rolesThatCanBeUsedThisEmojiAsReactionPublicRoleWarn: "必須為公開角色。"
+cancelReactionConfirm: "要取消此反應嗎?"
+changeReactionConfirm: "要更改反應嗎?"
later: "稍後再說"
-goToMisskey: "往Misskey"
+goToMisskey: "往 Misskey"
additionalEmojiDictionary: "表情符號的附加辭典"
installed: "已安裝"
branding: "品牌宣傳"
+enableServerMachineStats: "公佈伺服器的機器資訊"
+enableIdenticonGeneration: "啟用生成使用者的 Identicon "
+turnOffToImprovePerformance: "關閉時會提高性能。"
+createInviteCode: "建立邀請碼"
+createWithOptions: "使用選項建立"
+createCount: "建立數"
+inviteCodeCreated: "已建立邀請碼"
+inviteLimitExceeded: "可建立的邀請碼已達上限。"
+createLimitRemaining: "可建立的邀請碼:剩餘 {limit} 個"
+inviteLimitResetCycle: "可以在 {time} 內建立最多 {limit} 個邀請碼。"
+expirationDate: "有效日期"
+noExpirationDate: "不設有效日期"
+inviteCodeUsedAt: "使用邀請碼的日期和時間"
+registeredUserUsingInviteCode: "用了邀請碼的使用者"
+waitingForMailAuth: "等待電子郵件認證"
+inviteCodeCreator: "建立了邀請碼的使用者"
+usedAt: "使用的日期和時間"
+unused: "未使用"
+used: "已使用"
+expired: "過期"
+doYouAgree: "你同意嗎?"
+beSureToReadThisAsItIsImportant: "重要,請務必閱讀。"
+iHaveReadXCarefullyAndAgree: "我已仔細閱讀並同意「{x}」的内容。"
_initialAccountSetting:
accountCreated: "帳戶已建立完成!"
letsStartAccountSetup: "來進行帳戶的初始設定吧。"
@@ -1079,7 +1110,7 @@ _initialAccountSetting:
skipAreYouSure: "要略過初始設定嗎?"
laterAreYouSure: "稍後再重新進行初始設定嗎?"
_serverRules:
- description: "設定伺服器的簡要規則,在新的註冊之前顯示。建議的內容是使用條款的摘要。"
+ description: "設定在註冊頁面顯示的伺服器簡要規則。建議是服務條款的摘要。"
_accountMigration:
moveFrom: "從其他帳戶遷移到這個帳戶"
moveFromSub: "為另一個帳戶建立別名"
@@ -1093,111 +1124,111 @@ _accountMigration:
startMigration: "遷移"
migrationConfirm: "確定要將這個帳戶遷移至 {account} 嗎?一旦遷移就無法撤銷,也就無法以原來的狀態使用這個帳戶。\n另外,請確認在要遷移到的帳戶已經建立了一個別名。"
movedAndCannotBeUndone: "帳戶已遷移。\n遷移無法撤消。"
- postMigrationNote: "在遷移操作後的24小時之後解除此帳戶的追隨。此帳戶的追隨中、追隨者數量變為0。由於不會解除追隨者,你的追隨者仍然可以繼續檢視這個帳戶發布給追隨者的貼文。"
+ postMigrationNote: "在完成遷移的 24 小時後解除此帳戶的追隨。此帳戶的追隨中、追隨者數量變為 0。由於不會解除追隨者,你的追隨者仍然可以繼續檢視這個帳戶發布給追隨者的貼文。"
movedTo: "要遷移到的帳戶:"
_achievements:
earnedAt: "獲得日期"
_types:
_notes1:
- title: "just setting up my msky"
+ title: "歡迎!"
description: "發出了第一則貼文"
- flavor: "祝您的Misskey生活愉快!"
+ flavor: "祝您的 Misskey 生活愉快!"
_notes10:
title: "若干貼文"
- description: "發表了10則貼文"
+ description: "發佈了十篇貼文"
_notes100:
title: "許多貼文"
- description: "發表了100則貼文"
+ description: "發佈了一百篇貼文"
_notes500:
title: "滿滿的貼文"
- description: "發表了500則貼文"
+ description: "發佈了五百篇貼文"
_notes1000:
title: "堆積如山的貼文"
- description: "發表了1000則貼文"
+ description: "發佈了一千篇貼文"
_notes5000:
title: "滔滔不絕的貼文"
- description: "發表了5000則貼文"
+ description: "發佈了五千篇貼文"
_notes10000:
title: "超級貼文"
- description: "發表了10000則貼文"
+ description: "發佈了一萬篇貼文"
_notes20000:
- title: "需要更多的貼文"
- description: "發表了20000則貼文"
+ title: "需要更多貼文"
+ description: "發佈了兩萬篇貼文"
_notes30000:
title: "貼文貼文貼文"
- description: "發表了30000則貼文"
+ description: "發佈了三萬篇貼文"
_notes40000:
title: "貼文工廠"
- description: "發表了40000則貼文"
+ description: "發佈了四萬篇貼文"
_notes50000:
title: "貼文星球"
- description: "發表了50000則貼文"
+ description: "發佈了五萬篇貼文"
_notes60000:
title: "貼文類星體"
- description: "發表了60000則貼文"
+ description: "發佈了六萬篇貼文"
_notes70000:
title: "貼文黑洞"
- description: "發表了70000則貼文"
+ description: "發佈了七萬篇貼文"
_notes80000:
title: "貼文銀河"
- description: "發表了80000則貼文"
+ description: "發佈了八萬篇貼文"
_notes90000:
title: "貼文宇宙"
- description: "發表了90000則貼文"
+ description: "發佈了九萬篇貼文"
_notes100000:
title: "ALL YOUR NOTE ARE BELONG TO US"
- description: "發表了100,000則貼文"
+ description: "發佈了十萬篇貼文"
flavor: "有這麼多東西要寫嗎?"
_login3:
title: "初學者Ⅰ"
- description: "總登入天數為3天"
- flavor: "從今天開始,我就是Misskist"
+ description: "總登入天數為三天"
+ flavor: "從今天開始,我就是 Misskist"
_login7:
title: "初學者ⅠⅠ"
- description: "總登入天數為7天"
+ description: "總登入天數為七天"
flavor: "您開始習慣了嗎?"
_login15:
title: "初學者ⅠⅠⅠ"
- description: "總登入天數為15天"
+ description: "總登入天數為十五天"
_login30:
title: "Misskist Ⅰ"
- description: "總登入天數為30天"
+ description: "總登入天數為三十天"
_login60:
title: "Misskist ⅠⅠ"
- description: "總登入天數為60天"
+ description: "總登入天數為六十天"
_login100:
title: "Misskist ⅠⅠⅠ"
- description: "總登入天數為100天"
- flavor: "辣個 Misskist 用戶"
+ description: "總登入天數為一百天"
+ flavor: "凶暴的 Misskist"
_login200:
title: "普通Ⅰ"
- description: "總登入天數為200天"
+ description: "總登入天數為兩百天"
_login300:
- title: "普通IⅠ"
- description: "總登入天數為300天"
+ title: "普通ⅠⅠ"
+ description: "總登入天數為三百天"
_login400:
- title: "普通IIⅠ"
- description: "總登入天數為400天"
+ title: "普通ⅠⅠⅠ"
+ description: "總登入天數為四百天"
_login500:
title: "老兵Ⅰ"
- description: "總登入天數為500天"
+ description: "總登入天數為五百天"
flavor: "諸君,我喜歡貼文"
_login600:
title: "老兵ⅠⅠ"
- description: "總登入天數為600天"
+ description: "總登入天數為六百天"
_login700:
title: "老兵ⅠⅠⅠ"
- description: "總登入天數為700天"
+ description: "總登入天數為七百天"
_login800:
title: "貼文大師Ⅰ"
- description: "總登入天數為800天"
+ description: "總登入天數為八百天"
_login900:
title: "貼文大師ⅠⅠ"
- description: "總登入天數為900天"
+ description: "總登入天數為九百天"
_login1000:
title: "貼文大師ⅠⅠⅠ"
- description: "總登入天數為1,000天"
- flavor: "感謝您使用Misskey!"
+ description: "總登入天數為一千天"
+ flavor: "感謝您使用 Misskey!"
_noteClipped1:
title: "忍不住要收進摘錄裡"
description: "第一次將貼文收進摘錄"
@@ -1224,7 +1255,7 @@ _achievements:
title: "朋友很多"
description: "追隨超過50人了"
_following100:
- title: "100位朋友"
+ title: "一百位朋友"
description: "追隨超過100人了"
_following300:
title: "朋友過多"
@@ -1246,20 +1277,20 @@ _achievements:
description: "追隨者超過300人了"
_followers500:
title: "基地台"
- description: "超過500名追隨者了"
+ description: "超過五百名追隨者了"
_followers1000:
title: "影響者"
- description: "超過1000名追隨者了"
+ description: "超過一千名追隨者了"
_collectAchievements30:
title: "成就收藏家"
- description: "獲得30個以上的成就"
+ description: "獲得三十個以上的成就"
_viewAchievements3min:
title: "喜愛成就"
- description: "看成就列表要花3分鐘以上"
+ description: "看成就列表要花三分鐘以上"
_iLoveMisskey:
title: "I Love Misskey"
- description: "發布「I ❤ #Misskey」"
- flavor: "感謝您使用Misskey! by 開發團隊"
+ description: "發佈「I ❤ #Misskey」"
+ flavor: "感謝您使用 Misskey!by 開發團隊"
_foundTreasure:
title: "尋寶"
description: "發現了隱藏的寶藏"
@@ -1357,7 +1388,7 @@ _role:
iconUrl: "圖示的URL"
asBadge: "顯示為徽章"
descriptionOfAsBadge: "開啟的話,角色圖示會顯示在用戶名旁邊。"
- isExplorable: "公開角色時間軸"
+ isExplorable: "讓使用者更容易找到您"
descriptionOfIsExplorable: "若開啟則公開角色時間軸。若角色不是公開的,則無法公開時間軸。"
displayOrder: "顯示順序"
descriptionOfDisplayOrder: "數字越大,顯示在UI上的越上面。"
@@ -1373,13 +1404,16 @@ _role:
ltlAvailable: "瀏覽本地時間軸"
canPublicNote: "允許公開貼文"
canInvite: "發行實例邀請碼"
+ inviteLimit: "可建立邀請碼的數量"
+ inviteLimitCycle: "邀請碼的發放間隔"
+ inviteExpirationTime: "邀請碼的有效日期"
canManageCustomEmojis: "管理自訂表情符號"
driveCapacity: "雲端硬碟容量"
alwaysMarkNsfw: "總是將檔案標記為NSFW"
pinMax: "置頂貼文的最大數量"
antennaMax: "可建立的天線數量"
wordMuteMax: "靜音文字的最大字數"
- webhookMax: "可建立的Webhook數量"
+ webhookMax: "可建立的 Webhook 數量"
clipMax: "可建立的摘錄數量"
noteEachClipsMax: "摘錄內貼文的最大數量"
userListMax: "可建立的使用者清單數量"
@@ -1397,37 +1431,37 @@ _role:
followersMoreThanOrEq: "追隨者人數在~以上"
followingLessThanOrEq: "追隨人數在~以下"
followingMoreThanOrEq: "追隨人數在~以上"
- notesLessThanOrEq: "發布數在~以下"
- notesMoreThanOrEq: "發布數在~以上"
- and: "~和~"
+ notesLessThanOrEq: "貼文數在~以下"
+ notesMoreThanOrEq: "貼文數在~以上"
+ and: "~及~"
or: "~或~"
not: "~否"
_sensitiveMediaDetection:
description: "您可以使用機器學習自動檢測敏感媒體並將其用於審查。 伺服器的負荷會稍微增加。"
sensitivity: "檢測敏感度"
sensitivityDescription: "敏感度低時,誤檢測(偽陽性)會減少。敏感度高時,漏檢(偽陰性)會減少。"
- setSensitiveFlagAutomatically: "設定 NSFW 旗標"
+ setSensitiveFlagAutomatically: "設定 NSFW 標籤"
setSensitiveFlagAutomaticallyDescription: "即使將此設定關閉,判定結果也會保留在內部。"
analyzeVideos: "啟用影片分析"
analyzeVideosDescription: "除了靜止影像以外,也分析影片。伺服器的負荷會稍微增加。"
_emailUnavailable:
- used: "已經在使用中"
+ used: "已被使用"
format: "格式無效"
disposable: "不是永久可用的地址"
mx: "郵件伺服器不正確"
smtp: "郵件伺服器沒有應答"
_ffVisibility:
- public: "發佈"
+ public: "公開"
followers: "只有關注你的用戶能看到"
private: "私密"
_signup:
almostThere: "即將完成"
emailAddressInfo: "請輸入您所使用的電子郵件地址。電子郵件地址不會被公開。"
- emailSent: "已將確認郵件發送至您輸入的電子郵件地址 ({email})。請開啟電子郵件中的連結以完成帳戶創建。"
+ emailSent: "已發送確認郵件至您輸入的電子郵件地址({email})。請開啟電子郵件中的連結完成註冊。"
_accountDelete:
accountDelete: "刪除帳戶"
- mayTakeTime: "刪除帳戶的處理負荷較大,如果帳戶產生的內容數量上傳的檔案數量較多的話,就需要花费一段時間才能完成。"
- sendEmail: "帳戶删除完成後,將向註冊地電子郵件地址發送通知。"
+ mayTakeTime: "刪除帳戶的處理負荷較大,如果帳戶發佈的內容以及上傳的檔案數量較多,則需要一段時間才能完成。"
+ sendEmail: "帳戶刪除完成後,將向其電子郵件地址發送通知。"
requestAccountDelete: "刪除帳戶請求"
started: "已開始刪除作業。"
inProgress: "正在刪除"
@@ -1435,6 +1469,7 @@ _ad:
back: "返回"
reduceFrequencyOfThisAd: "降低此廣告的頻率 "
hide: "隱藏"
+ timezoneinfo: "星期幾是由伺服器的時區指定的。"
_forgotPassword:
enterEmail: "請輸入您的帳戶註冊的電子郵件地址。 密碼重置連結將被發送到該電子郵件地址。"
ifNoEmail: "如果您還沒有註冊您的電子郵件地址,請聯繫管理員。 "
@@ -1442,8 +1477,8 @@ _forgotPassword:
_gallery:
my: "我的貼文"
liked: "喜歡的貼文"
- like: "讚"
- unlike: "收回喜歡"
+ like: "讚好"
+ unlike: "收回讚好"
_email:
_follow:
title: "您有新的追隨者"
@@ -1451,7 +1486,7 @@ _email:
title: "收到追隨請求"
_plugin:
install: "安裝外掛組件"
- installWarn: "請不要安裝來源不明的外掛組件。"
+ installWarn: "請不要安裝來源不明的外掛。"
manage: "管理外掛"
_preferencesBackups:
list: "已備份的設定檔"
@@ -1461,7 +1496,7 @@ _preferencesBackups:
save: "覆蓋存檔"
inputName: "輸入備份檔名稱"
cannotSave: "無法儲存"
- nameAlreadyExists: "備份檔名稱「{name}」已經存在。請指定不同的名稱。"
+ nameAlreadyExists: "備份檔名稱「{name}」已經存在。請填寫其他名稱。"
applyConfirm: "將備份檔「{name}」套用在現在的裝置嗎?現在的裝置設定將會消失。"
saveConfirm: "要覆蓋存檔{name}嗎?"
deleteConfirm: "要刪除{name}嗎?"
@@ -1482,14 +1517,14 @@ _aboutMisskey:
contributors: "主要貢獻者"
allContributors: "全體貢獻人員"
source: "原始碼"
- translation: "翻譯Misskey"
- donate: "贊助Misskey"
+ translation: "翻譯 Misskey"
+ donate: "贊助 Misskey"
morePatrons: "還有許許多多幫助我們的其他人,非常感謝你們。 🥰"
patrons: "贊助者"
-_nsfw:
- respect: "隱藏敏感內容"
- ignore: "不隱藏敏感內容"
- force: "隱藏所有內容"
+_displayOfSensitiveMedia:
+ respect: "隱藏被標記為敏感的多媒體內容"
+ ignore: "不隱藏被標記為敏感的多媒體內容"
+ force: "隱藏所有多媒體內容"
_instanceTicker:
none: "隱藏"
remote: "向遠端使用者顯示"
@@ -1511,23 +1546,23 @@ _channel:
nameAndDescription: "名稱與說明"
nameOnly: "僅名稱"
_menuDisplay:
- sideFull: "側向"
- sideIcon: "側向(圖示)"
+ sideFull: "橫向"
+ sideIcon: "橫向(圖示)"
top: "頂部"
hide: "隱藏"
_wordMute:
muteWords: "加入靜音文字"
- muteWordsDescription: "用空格分隔指定AND,用換行分隔指定OR。"
- muteWordsDescription2: "將關鍵字用斜線括起來表示正規表達式。"
- softDescription: "隱藏時間軸中指定條件的貼文。"
- hardDescription: "具有指定條件的貼文將不添加到時間軸。 即使您更改條件,未被添加的貼文也會被排除在外。"
+ muteWordsDescription: "空格代表「以及」(AND),換行代表「或者」(OR)。"
+ muteWordsDescription2: "用斜線包圍關鍵字代表正規表達式。"
+ softDescription: "隱藏時間軸中符合特定條件的貼文。"
+ hardDescription: "符合特定條件的貼文將不會新增至時間軸。 即使您更改條件,未被新增的貼文也會被排除在外。"
soft: "軟性靜音"
hard: "硬性靜音"
mutedNotes: "已靜音的貼文"
_instanceMute:
instanceMuteDescription: "包括對被靜音實例上的用戶的回覆,被設定的實例上所有貼文及轉發都會被靜音。"
- instanceMuteDescription2: "設定時以換行進行分隔"
- title: "被設定的實例,貼文將被隱藏。"
+ instanceMuteDescription2: "換行以分隔"
+ title: "將隱藏被設定的實例貼文。"
heading: "將實例靜音"
_theme:
explore: "取得佈景主題"
@@ -1552,13 +1587,13 @@ _theme:
func: "函数"
funcKind: "功能類型"
argument: "參數"
- basedProp: "要基於的屬性的名稱 "
+ basedProp: "基於的屬性名稱 "
alpha: "透明度"
darken: "暗度"
lighten: "亮度"
- inputConstantName: "請輸入常數的名稱"
+ inputConstantName: "請輸入常數名稱"
importInfo: "您可以在此貼上主題代碼,將其匯入編輯器中"
- deleteConstantConfirm: "確定要删除常數{const}嗎?"
+ deleteConstantConfirm: "確定要刪除常數{const}嗎?"
keys:
accent: "重點色彩"
bg: "背景"
@@ -1566,14 +1601,14 @@ _theme:
focus: "聚焦"
indicator: "指標"
panel: "面板"
- shadow: "陰影"
+ shadow: "影子"
header: "標題"
navBg: "側邊欄的背景 "
navFg: "側邊欄的文字"
- navHoverFg: "側邊欄文字(懸停) "
- navActive: "側邊欄文本 (活動)"
+ navHoverFg: "側邊欄文字(懸浮) "
+ navActive: "側邊欄文字(活動)"
navIndicator: "側邊欄指示符"
- link: "鏈接"
+ link: "連結"
hashtag: "標籤"
mention: "提到"
mentionMe: "提到了我"
@@ -1581,15 +1616,15 @@ _theme:
modalBg: "對話框背景"
divider: "分割線"
scrollbarHandle: "捲動條"
- scrollbarHandleHover: "捲動條 (漂浮)"
+ scrollbarHandleHover: "捲動條(懸浮)"
dateLabelFg: "日期標籤文字"
infoBg: "資訊背景"
infoFg: "資訊內容"
infoWarnBg: "警告背景"
- infoWarnFg: "警告字元"
+ infoWarnFg: "警告文字"
cwBg: "CW 按鈕背景"
- cwFg: "CW 按鈕文本"
- cwHoverBg: "CW 按鈕背景 (漂浮)"
+ cwFg: "CW 按鈕文字"
+ cwHoverBg: "CW 按鈕背景(懸浮)"
toastBg: "通知背景"
toastFg: "通知文本"
buttonBg: "按鈕背景"
@@ -1598,11 +1633,11 @@ _theme:
listItemHoverBg: "列表物品背景 (漂浮)"
driveFolderBg: "雲端硬碟文件夾背景"
wallpaperOverlay: "壁紙覆蓋層"
- badge: "獎章"
+ badge: "徽章"
messageBg: "私訊背景"
- accentDarken: "強調色(偏暗)"
- accentLighten: "強調色(明亮)"
- fgHighlighted: "高亮顯示文本"
+ accentDarken: "強調色(黑暗)"
+ accentLighten: "強調色(明亮)"
+ fgHighlighted: "突顯文字"
_sfx:
note: "貼文"
noteMy: "我的貼文"
@@ -1618,7 +1653,7 @@ _ago:
minutesAgo: "{n}分鐘前"
hoursAgo: "{n}小時前"
daysAgo: "{n}天前"
- weeksAgo: "{n}周前"
+ weeksAgo: "{n}週前"
monthsAgo: "{n}個月前"
yearsAgo: "{n}年前"
invalid: "未發現"
@@ -1628,33 +1663,33 @@ _time:
hour: "小時"
day: "日"
_timelineTutorial:
- title: "Misskey的使用方法"
- step1_1: "這個畫面是「時間軸」。發布到{name}的「貼文」按照時間順序顯示。"
- step1_2: "時間軸有多種類型,例如在「首頁時間軸」中流動的是您追蹤的人的貼文;而在「本地時間軸」流動的是{name}全體的貼文。"
- step2_1: "試試看,發布個貼文吧!按畫面上鉛筆圖示的按鈕開啟表格。"
- step2_2: "初次貼文的內容,建議包括自我介紹以及「開始使用{name}」。"
+ title: "Misskey 的使用方法"
+ step1_1: "這個畫面是「時間軸」。發佈到{name}的「貼文」會按照時間順序顯示。"
+ step1_2: "時間軸有多種類型,例如「首頁時間軸」是您追蹤帳戶的貼文、「本地時間軸」是{name}內所有帳戶的貼文。"
+ step2_1: "不如現在就嘗試發文吧!按鉛筆圖示的按鈕開啟發文頁面。"
+ step2_2: "您可以在第一篇貼文裡寫自我介紹,或是「我來到 {name} 了」之類的話。"
step3_1: "貼文發出去了嗎?"
- step3_2: "如果你的貼文出現在時間軸上,就代表發文成功。"
+ step3_2: "如果您的貼文出現在時間軸上,就代表發文成功。"
step4_1: "可以對貼文標記「反應」。"
- step4_2: "點擊貼文的「+」圖示,即可選擇喜好的表情符號來標記反應。"
+ step4_2: "點擊貼文的「+」圖示,即可選擇表情符號來反應。"
_2fa:
- alreadyRegistered: "此設備已經被註冊過了"
+ alreadyRegistered: "此裝置已被註冊過了"
registerTOTP: "開始設定驗證應用程式"
passwordToTOTP: "請輸入密碼"
- step1: "首先,在您的設備上安裝二步驗證程式,例如{a}或{b}。"
- step2: "然後,掃描螢幕上的QR code。"
- step2Click: "點擊QR code,可以使用設備上安裝的驗證應用程式或金鑰環進行註冊。"
- step2Url: "在桌面版應用中,請輸入以下的URL:"
+ step1: "首先,在您的裝置上安裝驗證程式,例如 {a} 或 {b}。"
+ step2: "然後,掃描螢幕上的 QR 碼。"
+ step2Click: "您可以點擊 QR 碼,以使用裝置上的驗證應用程式或金鑰環註冊。"
+ step2Url: "請在桌面版應用程式中輸入以下的 URL:"
step3Title: "輸入驗證碼"
- step3: "輸入您的App提供的權杖以完成設定。"
+ step3: "輸入應用程式所提供的權杖以完成設定。"
step4: "從現在開始,任何登入操作都將要求您提供權杖。"
securityKeyNotSupported: "您的瀏覽器不支援安全金鑰。"
- registerTOTPBeforeKey: "要註冊安全金鑰・Passkey,請先設定驗證應用程式。"
- securityKeyInfo: "您可以設定使用支援FIDO2的硬體安全鎖、終端設備的指纹認證或者PIN碼來登入。"
- chromePasskeyNotSupported: "目前不支援Chrome的Passkey。"
- registerSecurityKey: "註冊安全金鑰・Passkey"
+ registerTOTPBeforeKey: "如要註冊安全金鑰或 Passkey,請先設定驗證應用程式。"
+ securityKeyInfo: "您可以設定使用支援 FIDO2 的硬體安全鎖、終端設備的指紋認證,或者 PIN 碼來登入。"
+ chromePasskeyNotSupported: "目前不支援 Chrome 的 Passkey。"
+ registerSecurityKey: "註冊安全金鑰或 Passkey"
securityKeyName: "輸入金鑰名稱"
- tapSecurityKey: "按照瀏覽器的說明操作,註冊安全金鑰和Passkey。"
+ tapSecurityKey: "按照瀏覽器的說明註冊安全金鑰或 Passkey。"
removeKey: "刪除安全金鑰"
removeKeyConfirm: "要刪除{name}嗎?"
whyTOTPOnlyRenew: "如果註冊了安全金鑰,則無法解除驗證應用程式的設定。"
@@ -1672,9 +1707,9 @@ _permissions:
"read:favorites": "瀏覽我的最愛"
"write:favorites": "編輯我的最愛列表"
"read:following": "查看追隨中的用戶資訊"
- "write:following": "追隨/解除追隨"
+ "write:following": "追隨/解除追隨"
"read:messaging": "顯示訊息"
- "write:messaging": "撰寫或刪除私人訊息"
+ "write:messaging": "撰寫或刪除訊息"
"read:mutes": "顯示已靜音列表"
"write:mutes": "編輯已靜音列表"
"write:notes": "撰寫或刪除貼文"
@@ -1727,12 +1762,12 @@ _widgets:
calendar: "行事曆"
trends: "發燒貼文"
clock: "時鐘"
- rss: "RSS閱讀器"
- rssTicker: "RSS跑馬燈"
+ rss: "RSS 閱讀器"
+ rssTicker: "RSS 跑馬燈"
activity: "動態"
photos: "照片"
digitalClock: "電子時鐘"
- unixClock: "UNIX時間"
+ unixClock: "UNIX 時間"
federation: "站台聯邦"
instanceCloud: "實例雲"
postForm: "發佈窗口"
@@ -1740,8 +1775,8 @@ _widgets:
button: "按鈕"
onlineUsers: "線上的用戶"
jobQueue: "佇列"
- serverMetric: "服務器指標 "
- aiscript: "AiScript控制台"
+ serverMetric: "伺服器指標 "
+ aiscript: "AiScript 控制台"
aiscriptApp: "AiScript App"
aichan: "小藍"
userList: "使用者列表"
@@ -1751,39 +1786,39 @@ _widgets:
_cw:
hide: "隱藏"
show: "瀏覽更多"
- chars: "{count}字元"
+ chars: "{count} 個字元"
files: "{count} 個檔案"
_poll:
noOnlyOneChoice: "至少需要兩個選項。"
- choiceN: "選擇{n}"
+ choiceN: "選擇 {n}"
noMore: "沒辦法再添加選項了"
canMultipleVote: "可以多次投票"
expiration: "期限"
infinite: "無期限"
at: "結束時間"
- after: "進度指定 "
+ after: "指定時效"
deadlineDate: "截止日期"
deadlineTime: "小時"
duration: "時長"
- votesCount: "{n}票"
- totalVotes: "一共{n}票"
+ votesCount: "{n} 票"
+ totalVotes: "合共 {n} 票"
vote: "投票"
showResult: "顯示結果"
voted: "已投票"
closed: "已結束"
- remainingDays: "{d}天{h}小時後結束"
- remainingHours: "{h}小時{m}分後結束"
- remainingMinutes: "{m}分{s}秒後結束"
- remainingSeconds: "{s}秒後截止"
+ remainingDays: "{d} 天 {h} 小時後結束"
+ remainingHours: "{h} 小時 {m} 分後結束"
+ remainingMinutes: "{m} 分 {s} 秒後結束"
+ remainingSeconds: "{s} 秒後截止"
_visibility:
public: "公開"
- publicDescription: "發布給所有用戶 "
+ publicDescription: "發佈給所有帳戶"
home: "首頁"
- homeDescription: "僅發送至首頁的時間軸"
+ homeDescription: "僅發布至首頁的時間軸"
followers: "追隨者"
- followersDescription: "僅發送至關注者"
+ followersDescription: "僅發布至關注者"
specified: "指定使用者"
- specifiedDescription: "僅發送至指定使用者"
+ specifiedDescription: "僅發布至指定使用者"
disableFederation: "停用聯邦"
disableFederationDescription: "不要傳遞給其他實例"
_postForm:
@@ -1791,12 +1826,12 @@ _postForm:
quotePlaceholder: "引用此貼文..."
channelPlaceholder: "發佈到頻道"
_placeholders:
- a: "今天過得如何?"
- b: "有什麼新鮮事嗎?"
+ a: "今天過得如何?"
+ b: "有什麼新鮮事嗎?"
c: "有什麼新鮮想法嗎?"
- d: "想要發布些什麼嗎?"
- e: "寫些什麼吧..."
- f: "期待你發佈的內容..."
+ d: "想要發佈些什麼嗎?"
+ e: "寫些什麼吧……"
+ f: "靜待發文……"
_profile:
name: "名稱"
username: "使用者名稱"
@@ -1821,45 +1856,45 @@ _exportOrImport:
_charts:
federation: "站台聯邦"
apRequest: "請求"
- usersIncDec: "使用者増減"
+ usersIncDec: "使用者增減"
usersTotal: "使用者合共"
activeUsers: "活躍使用者"
notesIncDec: "貼文増減"
localNotesIncDec: "本地貼文増減"
remoteNotesIncDec: "遠端貼文數目增减"
notesTotal: "貼文合共"
- filesIncDec: "檔案増減"
- filesTotal: "累計檔案"
- storageUsageIncDec: "儲存空間的増減"
- storageUsageTotal: "已使用的儲存空間合共"
+ filesIncDec: "檔案增減"
+ filesTotal: "檔案總數"
+ storageUsageIncDec: "儲存空間增減"
+ storageUsageTotal: "儲存空間用量"
_instanceCharts:
requests: "請求"
- users: "使用者増減"
- usersTotal: "總計使用者"
- notes: "貼文増減"
+ users: "使用者增減"
+ usersTotal: "使用者總數"
+ notes: "貼文增減"
notesTotal: "累計貼文"
- ff: "追隨/追隨者的増減"
- ffTotal: "追隨/追隨者累計"
- cacheSize: "增加或減少快取用量"
- cacheSizeTotal: "快取大小總計"
- files: "檔案數量的増減"
- filesTotal: "檔案數量總計"
+ ff: "追隨/追隨者增減"
+ ffTotal: "追隨/追隨者總數"
+ cacheSize: "快取用量增減"
+ cacheSizeTotal: "快取用量總數"
+ files: "檔案總數增減"
+ filesTotal: "檔案總數累計"
_timelines:
home: "首頁"
local: "本地"
social: "社交"
global: "公開"
_play:
- new: "新增Play"
- edit: "編輯Play"
- created: "已新增Play"
- updated: "已更新Play"
- deleted: "已刪除Play"
+ new: "新增 Play"
+ edit: "編輯 Play"
+ created: "已新增Play "
+ updated: "已更新Play "
+ deleted: "已刪除 Play"
pageSetting: "Play設定"
- editThisPage: "編輯這個Play"
+ editThisPage: "編輯此 Play"
viewSource: "檢視原始碼"
- my: "自己的Play"
- liked: "按了讚的Play"
+ my: "自己的 Play"
+ liked: "按讚的 Play"
featured: "人氣"
title: "標題"
script: "腳本"
@@ -1872,16 +1907,16 @@ _pages:
updated: "頁面已更新"
deleted: "頁面已被刪除"
pageSetting: "頁面設定"
- nameAlreadyExists: "指定的頁面URL已經存在"
- invalidNameTitle: "指定的頁面URL無效"
+ nameAlreadyExists: "該頁面 URL 已存在"
+ invalidNameTitle: "無效的頁面 URL"
invalidNameText: "請確定是否為非空白"
editThisPage: "編輯此頁面"
viewSource: "檢視原始碼"
viewPage: "顯示頁面"
- like: "喜歡"
- unlike: "收回喜歡"
+ like: "讚好"
+ unlike: "收回讚好"
my: "我的頁面"
- liked: "已喜歡的頁面"
+ liked: "已讚好的頁面"
featured: "人氣"
inspector: "面板檢查"
contents: "內容"
@@ -1903,7 +1938,7 @@ _pages:
inputBlocks: "輸入"
specialBlocks: "特殊"
blocks:
- text: "字串"
+ text: "文字"
textarea: "字串區域"
section: "區段"
image: "圖片"
@@ -1944,7 +1979,7 @@ _notification:
achievementEarned: "獲得成就"
app: "應用程式通知"
_actions:
- followBack: "回關"
+ followBack: "追隨回去"
reply: "回覆"
renote: "轉發"
_deck:
@@ -1961,9 +1996,10 @@ _deck:
profile: "個人檔案"
newProfile: "新建個人檔案"
deleteProfile: "刪除個人檔案"
- introduction: "組合欄位來製作屬於自己的介面吧!"
- introduction2: "您可以隨時透過按畫面右方的 + 來添加欄位。"
- widgetsIntroduction: "請從欄位的選單中,選擇「編輯小工具」來添加小工具"
+ introduction: "組合多個欄位,製作屬於自己的介面吧!"
+ introduction2: "您可以隨時按畫面右方的「+」新增欄位。"
+ widgetsIntroduction: "請從欄位選單中選擇「編輯小工具」新增小工具。"
+ useSimpleUiForNonRootPages: "用簡易 UI 顯示非根頁面"
_columns:
main: "主列"
widgets: "小工具"
@@ -1976,24 +2012,24 @@ _deck:
direct: "指定使用者"
roleTimeline: "角色時間軸"
_dialog:
- charactersExceeded: "已超過最大字數!現在 {current} / 限制 {max}"
- charactersBelow: "低於最少字數!現在 {current} / 限制 {max}"
+ charactersExceeded: "您的貼文太長了!現時字數 {current}/限制字數 {max}"
+ charactersBelow: "您的貼文太短了!現時字數 {current}/限制字數 {min}"
_disabledTimeline:
- title: "停用的時間軸"
- description: "目前的角色無法使用這個時間軸。"
+ title: "時間軸已停用"
+ description: "目前角色無法使用這個時間軸。"
_drivecleaner:
- orderBySizeDesc: "檔案由大到小"
- orderByCreatedAtAsc: "依照加入的日期順序"
+ orderBySizeDesc: "按大小降序排列"
+ orderByCreatedAtAsc: "按新增日期降序排列"
_webhookSettings:
createWebhook: "建立 Webhook"
name: "名稱"
- secret: "秘密"
- events: "什麼時候運行Webhook"
+ secret: "密鑰"
+ events: "何時運行 Webhook"
active: "已啟用"
_events:
follow: "當你追隨時"
followed: "當被追隨時"
- note: "當發布貼文時"
+ note: "當發佈貼文時"
reply: "當收到回覆時"
renote: "當被轉發時"
reaction: "當獲得反應時"
diff --git a/package.json b/package.json
index dd0c1d57e7..58d153a4f6 100644
--- a/package.json
+++ b/package.json
@@ -1,12 +1,12 @@
{
"name": "misskey",
- "version": "13.13.2",
+ "version": "13.14.0-beta.7",
"codename": "nasubi",
"repository": {
"type": "git",
"url": "https://github.com/misskey-dev/misskey.git"
},
- "packageManager": "pnpm@8.6.0",
+ "packageManager": "pnpm@8.6.9",
"workspaces": [
"packages/frontend",
"packages/backend",
@@ -25,7 +25,7 @@
"migrateandstart": "pnpm migrate && pnpm start",
"gulp": "pnpm exec gulp build",
"watch": "pnpm dev",
- "dev": "node ./scripts/dev.js",
+ "dev": "node ./scripts/dev.mjs",
"lint": "pnpm -r lint",
"cy:open": "pnpm cypress open --browser --e2e --config-file=cypress.config.ts",
"cy:run": "pnpm cypress run",
@@ -44,23 +44,23 @@
"lodash": "4.17.21"
},
"dependencies": {
- "execa": "5.1.1",
+ "execa": "7.1.1",
"gulp": "4.0.2",
"gulp-cssnano": "2.1.3",
"gulp-rename": "2.0.0",
"gulp-replace": "1.1.4",
"gulp-terser": "2.1.0",
"js-yaml": "4.1.0",
- "typescript": "5.1.3"
+ "typescript": "5.1.6"
},
"devDependencies": {
"@types/gulp": "4.0.10",
"@types/gulp-rename": "2.0.1",
- "@typescript-eslint/eslint-plugin": "5.59.8",
- "@typescript-eslint/parser": "5.59.8",
+ "@typescript-eslint/eslint-plugin": "5.61.0",
+ "@typescript-eslint/parser": "5.61.0",
"cross-env": "7.0.3",
- "cypress": "12.13.0",
- "eslint": "8.41.0",
+ "cypress": "12.17.1",
+ "eslint": "8.45.0",
"start-server-and-test": "2.0.0"
},
"optionalDependencies": {
diff --git a/packages/backend/.swcrc b/packages/backend/.swcrc
index 08d4222d01..0504a2d389 100644
--- a/packages/backend/.swcrc
+++ b/packages/backend/.swcrc
@@ -17,7 +17,7 @@
"paths": {
"@/*": ["*"]
},
- "target": "es2021"
+ "target": "es2022"
},
"minify": false
}
diff --git a/packages/backend/assets/avatar.png b/packages/backend/assets/avatar.png
new file mode 100644
index 0000000000..1b95a0c560
Binary files /dev/null and b/packages/backend/assets/avatar.png differ
diff --git a/packages/backend/check_connect.js b/packages/backend/check_connect.js
index ef0a350fbf..da78c8ec7c 100644
--- a/packages/backend/check_connect.js
+++ b/packages/backend/check_connect.js
@@ -2,14 +2,7 @@ import Redis from 'ioredis';
import { loadConfig } from './built/config.js';
const config = loadConfig();
-const redis = new Redis({
- port: config.redis.port,
- host: config.redis.host,
- family: config.redis.family == null ? 0 : config.redis.family,
- password: config.redis.pass,
- keyPrefix: `${config.redis.prefix}:`,
- db: config.redis.db ?? 0,
-});
+const redis = new Redis(config.redis);
redis.on('connect', () => redis.disconnect());
redis.on('error', (e) => {
diff --git a/packages/backend/migration/1677054292210-ad4.js b/packages/backend/migration/1677054292210-ad4.js
new file mode 100644
index 0000000000..48499319b4
--- /dev/null
+++ b/packages/backend/migration/1677054292210-ad4.js
@@ -0,0 +1,9 @@
+export class ad1677054292210 {
+ name = 'ad1677054292210';
+ async up(queryRunner) {
+ await queryRunner.query(`ALTER TABLE "ad" ADD "dayOfWeek" integer NOT NULL Default 0`);
+ }
+ async down(queryRunner) {
+ await queryRunner.query(`ALTER TABLE "ad" DROP COLUMN "dayOfWeek"`);
+ }
+}
diff --git a/packages/backend/migration/1688280713783-add-meta-options.js b/packages/backend/migration/1688280713783-add-meta-options.js
new file mode 100644
index 0000000000..12406fe085
--- /dev/null
+++ b/packages/backend/migration/1688280713783-add-meta-options.js
@@ -0,0 +1,13 @@
+export class AddMetaOptions1688280713783 {
+ name = 'AddMetaOptions1688280713783'
+
+ async up(queryRunner) {
+ await queryRunner.query(`ALTER TABLE "meta" ADD "enableServerMachineStats" boolean NOT NULL DEFAULT false`);
+ await queryRunner.query(`ALTER TABLE "meta" ADD "enableIdenticonGeneration" boolean NOT NULL DEFAULT true`);
+ }
+
+ async down(queryRunner) {
+ await queryRunner.query(`ALTER TABLE "meta" DROP COLUMN "enableIdenticonGeneration"`);
+ await queryRunner.query(`ALTER TABLE "meta" DROP COLUMN "enableServerMachineStats"`);
+ }
+}
diff --git a/packages/backend/migration/1688720440658-refactor-invite-system.js b/packages/backend/migration/1688720440658-refactor-invite-system.js
new file mode 100644
index 0000000000..0dd49f7027
--- /dev/null
+++ b/packages/backend/migration/1688720440658-refactor-invite-system.js
@@ -0,0 +1,25 @@
+export class RefactorInviteSystem1688720440658 {
+ name = 'RefactorInviteSystem1688720440658'
+
+ async up(queryRunner) {
+ await queryRunner.query(`ALTER TABLE "registration_ticket" ADD "expiresAt" TIMESTAMP WITH TIME ZONE`);
+ await queryRunner.query(`ALTER TABLE "registration_ticket" ADD "usedAt" TIMESTAMP WITH TIME ZONE`);
+ await queryRunner.query(`ALTER TABLE "registration_ticket" ADD "pendingUserId" character varying(32)`);
+ await queryRunner.query(`ALTER TABLE "registration_ticket" ADD "createdById" character varying(32)`);
+ await queryRunner.query(`ALTER TABLE "registration_ticket" ADD "usedById" character varying(32)`);
+ await queryRunner.query(`ALTER TABLE "registration_ticket" ADD CONSTRAINT "UQ_b6f93f2f30bdbb9a5ebdc7c7189" UNIQUE ("usedById")`);
+ await queryRunner.query(`ALTER TABLE "registration_ticket" ADD CONSTRAINT "FK_beba993576db0261a15364ea96e" FOREIGN KEY ("createdById") REFERENCES "user"("id") ON DELETE CASCADE ON UPDATE NO ACTION`);
+ await queryRunner.query(`ALTER TABLE "registration_ticket" ADD CONSTRAINT "FK_b6f93f2f30bdbb9a5ebdc7c7189" FOREIGN KEY ("usedById") REFERENCES "user"("id") ON DELETE CASCADE ON UPDATE NO ACTION`);
+ }
+
+ async down(queryRunner) {
+ await queryRunner.query(`ALTER TABLE "registration_ticket" DROP CONSTRAINT "FK_b6f93f2f30bdbb9a5ebdc7c7189"`);
+ await queryRunner.query(`ALTER TABLE "registration_ticket" DROP CONSTRAINT "FK_beba993576db0261a15364ea96e"`);
+ await queryRunner.query(`ALTER TABLE "registration_ticket" DROP CONSTRAINT "UQ_b6f93f2f30bdbb9a5ebdc7c7189"`);
+ await queryRunner.query(`ALTER TABLE "registration_ticket" DROP COLUMN "usedById"`);
+ await queryRunner.query(`ALTER TABLE "registration_ticket" DROP COLUMN "createdById"`);
+ await queryRunner.query(`ALTER TABLE "registration_ticket" DROP COLUMN "pendingUserId"`);
+ await queryRunner.query(`ALTER TABLE "registration_ticket" DROP COLUMN "usedAt"`);
+ await queryRunner.query(`ALTER TABLE "registration_ticket" DROP COLUMN "expiresAt"`);
+ }
+}
diff --git a/packages/backend/migration/1688880985544-add-index-to-relations.js b/packages/backend/migration/1688880985544-add-index-to-relations.js
new file mode 100644
index 0000000000..d6b5c57f55
--- /dev/null
+++ b/packages/backend/migration/1688880985544-add-index-to-relations.js
@@ -0,0 +1,13 @@
+export class AddIndexToRelations1688880985544 {
+ name = 'AddIndexToRelations1688880985544'
+
+ async up(queryRunner) {
+ await queryRunner.query(`CREATE INDEX "IDX_beba993576db0261a15364ea96" ON "registration_ticket" ("createdById") `);
+ await queryRunner.query(`CREATE INDEX "IDX_b6f93f2f30bdbb9a5ebdc7c718" ON "registration_ticket" ("usedById") `);
+ }
+
+ async down(queryRunner) {
+ await queryRunner.query(`DROP INDEX "public"."IDX_b6f93f2f30bdbb9a5ebdc7c718"`);
+ await queryRunner.query(`DROP INDEX "public"."IDX_beba993576db0261a15364ea96"`);
+ }
+}
diff --git a/packages/backend/migration/1689102832143-nsfw-cache.js b/packages/backend/migration/1689102832143-nsfw-cache.js
new file mode 100644
index 0000000000..cdce0dae09
--- /dev/null
+++ b/packages/backend/migration/1689102832143-nsfw-cache.js
@@ -0,0 +1,11 @@
+export class NsfwCache1689102832143 {
+ name = 'NsfwCache1689102832143'
+
+ async up(queryRunner) {
+ await queryRunner.query(`ALTER TABLE "meta" ADD "cacheRemoteSensitiveFiles" boolean NOT NULL DEFAULT true`);
+ }
+
+ async down(queryRunner) {
+ await queryRunner.query(`ALTER TABLE "meta" DROP COLUMN "cacheRemoteSensitiveFiles"`);
+ }
+}
diff --git a/packages/backend/package.json b/packages/backend/package.json
index 56ecbc2eaf..7f64c2a9ac 100644
--- a/packages/backend/package.json
+++ b/packages/backend/package.json
@@ -3,6 +3,9 @@
"main": "./index.js",
"private": true,
"type": "module",
+ "engines": {
+ "node": ">=18.16.0"
+ },
"scripts": {
"start": "node ./built/index.js",
"start:test": "NODE_ENV=test node ./built/index.js",
@@ -51,62 +54,62 @@
"utf-8-validate": "^6.0.3"
},
"dependencies": {
- "@aws-sdk/client-s3": "3.321.1",
- "@aws-sdk/lib-storage": "3.321.1",
- "@aws-sdk/node-http-handler": "3.321.1",
- "@bull-board/api": "5.2.0",
- "@bull-board/fastify": "5.2.0",
- "@bull-board/ui": "5.2.0",
+ "@aws-sdk/client-s3": "3.367.0",
+ "@aws-sdk/lib-storage": "3.367.0",
+ "@aws-sdk/node-http-handler": "3.360.0",
+ "@bull-board/api": "5.6.1",
+ "@bull-board/fastify": "5.6.1",
+ "@bull-board/ui": "5.6.1",
"@discordapp/twemoji": "14.1.2",
- "@fastify/accepts": "4.1.0",
+ "@fastify/accepts": "4.2.0",
"@fastify/cookie": "8.3.0",
"@fastify/cors": "8.3.0",
- "@fastify/http-proxy": "9.1.0",
- "@fastify/multipart": "7.6.0",
+ "@fastify/http-proxy": "9.2.1",
+ "@fastify/multipart": "7.7.1",
"@fastify/static": "6.10.2",
- "@fastify/view": "7.4.1",
- "@nestjs/common": "9.4.2",
- "@nestjs/core": "9.4.2",
- "@nestjs/testing": "9.4.2",
+ "@fastify/view": "8.0.0",
+ "@nestjs/common": "10.1.0",
+ "@nestjs/core": "10.1.0",
+ "@nestjs/testing": "10.1.0",
"@peertube/http-signature": "1.7.0",
- "@sinonjs/fake-timers": "10.2.0",
+ "@sinonjs/fake-timers": "10.3.0",
"@swc/cli": "0.1.62",
- "@swc/core": "1.3.61",
+ "@swc/core": "1.3.70",
"accepts": "1.3.8",
"ajv": "8.12.0",
"archiver": "5.3.1",
- "autwh": "0.1.0",
+ "async-mutex": "^0.4.0",
"bcryptjs": "2.4.3",
"blurhash": "2.0.5",
- "bullmq": "3.15.0",
- "cacheable-lookup": "6.1.0",
+ "bullmq": "4.4.0",
+ "cacheable-lookup": "7.0.0",
"cbor": "9.0.0",
- "chalk": "5.2.0",
- "chalk-template": "0.4.0",
+ "chalk": "5.3.0",
+ "chalk-template": "1.1.0",
"chokidar": "3.5.3",
"cli-highlight": "2.1.11",
"color-convert": "2.0.1",
"content-disposition": "0.5.4",
"date-fns": "2.30.0",
"deep-email-validator": "0.1.21",
- "escape-regexp": "0.0.1",
- "fastify": "4.17.0",
+ "fastify": "4.20.0",
"feed": "4.2.2",
- "file-type": "18.4.0",
+ "file-type": "18.5.0",
"fluent-ffmpeg": "2.1.2",
"form-data": "4.0.0",
- "got": "12.6.0",
- "happy-dom": "9.20.3",
+ "got": "13.0.0",
+ "happy-dom": "10.0.3",
"hpagent": "1.2.0",
"ioredis": "5.3.2",
"ip-cidr": "3.1.0",
- "is-svg": "4.3.2",
+ "ipaddr.js": "2.1.0",
+ "is-svg": "5.0.0",
"js-yaml": "4.1.0",
"jsdom": "22.1.0",
"json5": "2.2.3",
"jsonld": "8.2.0",
"jsrsasign": "10.8.6",
- "meilisearch": "0.32.5",
+ "meilisearch": "0.33.0",
"mfm-js": "0.23.3",
"mime-types": "2.1.35",
"misskey-js": "workspace:*",
@@ -117,10 +120,9 @@
"nsfwjs": "2.4.2",
"oauth": "0.10.0",
"os-utils": "0.0.14",
- "otpauth": "9.1.2",
+ "otpauth": "9.1.3",
"parse5": "7.1.2",
- "pg": "8.11.0",
- "private-ip": "3.0.0",
+ "pg": "8.11.1",
"probe-image-size": "7.2.3",
"promise-limit": "2.7.0",
"pug": "3.0.2",
@@ -129,41 +131,36 @@
"qrcode": "1.5.3",
"random-seed": "0.3.0",
"ratelimiter": "3.4.1",
- "re2": "1.19.0",
+ "re2": "1.19.1",
"redis-lock": "0.1.4",
"reflect-metadata": "0.1.13",
"rename": "1.0.4",
- "rndstr": "1.0.0",
"rss-parser": "3.13.0",
"rxjs": "7.8.1",
- "s-age": "1.1.2",
- "sanitize-html": "2.10.0",
- "seedrandom": "3.0.5",
- "semver": "7.5.1",
- "sharp": "0.32.1",
+ "sanitize-html": "2.11.0",
+ "semver": "7.5.4",
+ "sharp": "0.32.3",
"sharp-read-bmp": "github:misskey-dev/sharp-read-bmp",
"slacc": "0.0.9",
"strict-event-emitter-types": "2.0.0",
"stringz": "2.1.0",
"summaly": "github:misskey-dev/summaly",
- "systeminformation": "5.17.16",
+ "systeminformation": "5.18.7",
"tinycolor2": "1.6.0",
"tmp": "0.2.1",
- "tsc-alias": "1.8.6",
+ "tsc-alias": "1.8.7",
"tsconfig-paths": "4.2.0",
"twemoji-parser": "14.0.0",
- "typeorm": "0.3.16",
- "typescript": "5.1.3",
+ "typeorm": "0.3.17",
+ "typescript": "5.1.6",
"ulid": "2.3.0",
- "unzipper": "0.10.14",
- "uuid": "9.0.0",
"vary": "1.1.2",
- "web-push": "3.6.1",
+ "web-push": "3.6.3",
"ws": "8.13.0",
"xev": "3.0.2"
},
"devDependencies": {
- "@jest/globals": "29.5.0",
+ "@jest/globals": "29.6.1",
"@swc/jest": "0.2.26",
"@types/accepts": "1.3.5",
"@types/archiver": "5.3.2",
@@ -171,25 +168,24 @@
"@types/cbor": "6.0.0",
"@types/color-convert": "2.0.0",
"@types/content-disposition": "0.5.5",
- "@types/escape-regexp": "0.0.1",
"@types/fluent-ffmpeg": "2.1.21",
- "@types/jest": "29.5.2",
+ "@types/jest": "29.5.3",
"@types/js-yaml": "4.0.5",
"@types/jsdom": "21.1.1",
- "@types/jsonld": "1.5.8",
+ "@types/jsonld": "1.5.9",
"@types/jsrsasign": "10.5.8",
"@types/mime-types": "2.1.1",
- "@types/node": "20.2.5",
+ "@types/ms": "^0.7.31",
+ "@types/node": "20.4.2",
"@types/node-fetch": "3.0.3",
"@types/nodemailer": "6.4.8",
"@types/oauth": "0.9.1",
- "@types/pg": "8.10.1",
+ "@types/pg": "8.10.2",
"@types/pug": "2.0.6",
"@types/punycode": "2.1.0",
- "@types/qrcode": "1.5.0",
+ "@types/qrcode": "1.5.1",
"@types/random-seed": "0.3.3",
"@types/ratelimiter": "3.4.4",
- "@types/redis": "4.0.11",
"@types/rename": "1.0.4",
"@types/sanitize-html": "2.9.0",
"@types/semver": "7.5.0",
@@ -197,20 +193,17 @@
"@types/sinonjs__fake-timers": "8.1.2",
"@types/tinycolor2": "1.4.3",
"@types/tmp": "0.2.3",
- "@types/unzipper": "0.10.6",
- "@types/uuid": "9.0.1",
"@types/vary": "1.1.0",
"@types/web-push": "3.3.2",
- "@types/websocket": "1.0.5",
- "@types/ws": "8.5.4",
- "@typescript-eslint/eslint-plugin": "5.59.8",
- "@typescript-eslint/parser": "5.59.8",
- "aws-sdk-client-mock": "2.1.1",
+ "@types/ws": "8.5.5",
+ "@typescript-eslint/eslint-plugin": "5.61.0",
+ "@typescript-eslint/parser": "5.61.0",
+ "aws-sdk-client-mock": "3.0.0",
"cross-env": "7.0.3",
- "eslint": "8.41.0",
+ "eslint": "8.45.0",
"eslint-plugin-import": "2.27.5",
- "execa": "6.1.0",
- "jest": "29.5.0",
- "jest-mock": "29.5.0"
+ "execa": "7.1.1",
+ "jest": "29.6.1",
+ "jest-mock": "29.6.1"
}
}
diff --git a/packages/backend/src/GlobalModule.ts b/packages/backend/src/GlobalModule.ts
index 406e3192bb..4caf4c3e96 100644
--- a/packages/backend/src/GlobalModule.ts
+++ b/packages/backend/src/GlobalModule.ts
@@ -41,14 +41,7 @@ const $meilisearch: Provider = {
const $redis: Provider = {
provide: DI.redis,
useFactory: (config: Config) => {
- return new Redis.Redis({
- port: config.redis.port,
- host: config.redis.host,
- family: config.redis.family == null ? 0 : config.redis.family,
- password: config.redis.pass,
- keyPrefix: `${config.redis.prefix}:`,
- db: config.redis.db ?? 0,
- });
+ return new Redis.Redis(config.redis);
},
inject: [DI.config],
};
@@ -56,14 +49,7 @@ const $redis: Provider = {
const $redisForPub: Provider = {
provide: DI.redisForPub,
useFactory: (config: Config) => {
- const redis = new Redis.Redis({
- port: config.redisForPubsub.port,
- host: config.redisForPubsub.host,
- family: config.redisForPubsub.family == null ? 0 : config.redisForPubsub.family,
- password: config.redisForPubsub.pass,
- keyPrefix: `${config.redisForPubsub.prefix}:`,
- db: config.redisForPubsub.db ?? 0,
- });
+ const redis = new Redis.Redis(config.redisForPubsub);
return redis;
},
inject: [DI.config],
@@ -72,14 +58,7 @@ const $redisForPub: Provider = {
const $redisForSub: Provider = {
provide: DI.redisForSub,
useFactory: (config: Config) => {
- const redis = new Redis.Redis({
- port: config.redisForPubsub.port,
- host: config.redisForPubsub.host,
- family: config.redisForPubsub.family == null ? 0 : config.redisForPubsub.family,
- password: config.redisForPubsub.pass,
- keyPrefix: `${config.redisForPubsub.prefix}:`,
- db: config.redisForPubsub.db ?? 0,
- });
+ const redis = new Redis.Redis(config.redisForPubsub);
redis.subscribe(config.host);
return redis;
},
diff --git a/packages/backend/src/boot/master.ts b/packages/backend/src/boot/master.ts
index f5d936fadf..c253f697f7 100644
--- a/packages/backend/src/boot/master.ts
+++ b/packages/backend/src/boot/master.ts
@@ -31,7 +31,7 @@ function greet() {
console.log(themeColor(' | |_|___ ___| |_ ___ _ _ '));
console.log(themeColor(' | | | | |_ -|_ -| \'_| -_| | |'));
console.log(themeColor(' |_|_|_|_|___|___|_,_|___|_ |'));
- console.log(' ' + chalk.gray(v) + themeColor(' |___|\n'.substr(v.length)));
+ console.log(' ' + chalk.gray(v) + themeColor(' |___|\n'.substring(v.length)));
//#endregion
console.log(' Misskey is an open-source decentralized microblogging platform.');
@@ -78,7 +78,7 @@ export async function masterMain() {
await spawnWorkers(config.clusterLimit);
}
- bootLogger.succ(`Now listening on port ${config.port} on ${config.url}`, null, true);
+ bootLogger.succ(config.socket ? `Now listening on socket ${config.socket} on ${config.url}` : `Now listening on port ${config.port} on ${config.url}`, null, true);
}
function showEnvironment(): void {
@@ -96,12 +96,6 @@ function showNodejsVersion(): void {
const nodejsLogger = bootLogger.createSubLogger('nodejs');
nodejsLogger.info(`Version ${process.version} detected.`);
-
- const minVersion = fs.readFileSync(`${_dirname}/../../../../.node-version`, 'utf-8').trim();
- if (semver.lt(process.version, minVersion)) {
- nodejsLogger.error(`At least Node.js ${minVersion} required!`);
- process.exit(1);
- }
}
function loadConfigBoot(): Config {
diff --git a/packages/backend/src/config.ts b/packages/backend/src/config.ts
index 9d1945e4d4..253975096e 100644
--- a/packages/backend/src/config.ts
+++ b/packages/backend/src/config.ts
@@ -6,6 +6,16 @@ import * as fs from 'node:fs';
import { fileURLToPath } from 'node:url';
import { dirname, resolve } from 'node:path';
import * as yaml from 'js-yaml';
+import type { RedisOptions } from 'ioredis';
+
+type RedisOptionsSource = Partial & {
+ host: string;
+ port: number;
+ family?: number;
+ pass: string;
+ db?: number;
+ prefix?: string;
+};
/**
* ユーザーが設定する必要のある情報
@@ -14,7 +24,9 @@ export type Source = {
repository_url?: string;
feedback_url?: string;
url: string;
- port: number;
+ port?: number;
+ socket?: string;
+ chmodSocket?: string;
disableHsts?: boolean;
db: {
host: string;
@@ -33,36 +45,16 @@ export type Source = {
user: string;
pass: string;
}[];
- redis: {
- host: string;
- port: number;
- family?: number;
- pass: string;
- db?: number;
- prefix?: string;
- };
- redisForPubsub?: {
- host: string;
- port: number;
- family?: number;
- pass: string;
- db?: number;
- prefix?: string;
- };
- redisForJobQueue?: {
- host: string;
- port: number;
- family?: number;
- pass: string;
- db?: number;
- prefix?: string;
- };
+ redis: RedisOptionsSource;
+ redisForPubsub?: RedisOptionsSource;
+ redisForJobQueue?: RedisOptionsSource;
meilisearch?: {
host: string;
port: string;
apiKey: string;
ssl?: boolean;
index: string;
+ scope?: 'local' | 'global' | string[];
};
proxy?: string;
@@ -116,8 +108,9 @@ export type Mixin = {
mediaProxy: string;
externalMediaProxyEnabled: boolean;
videoThumbnailGenerator: string | null;
- redisForPubsub: NonNullable