Merge pull request #16195 from misskey-dev/develop

Release: 2025.6.2
This commit is contained in:
misskey-release-bot[bot] 2025-06-16 08:58:35 +00:00 committed by GitHub
commit 3c973e21f2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
10 changed files with 28 additions and 4 deletions

View File

@ -1,3 +1,9 @@
## 2025.6.2
### Client
- Fix: キャッシュを削除しないとクライアントが使用できないことがある問題を修正
- 翻訳の更新
## 2025.6.1 ## 2025.6.1
### Note ### Note

View File

@ -3169,3 +3169,5 @@ _imageEffector:
stripe: "Bandes" stripe: "Bandes"
polkadot: "Lunars" polkadot: "Lunars"
checker: "Escacs" checker: "Escacs"
blockNoise: "Bloqueig de soroll"
tearing: "Trencament d'imatge "

View File

@ -2465,6 +2465,8 @@ _visibility:
disableFederation: "Defederate" disableFederation: "Defederate"
disableFederationDescription: "Don't transmit to other instances" disableFederationDescription: "Don't transmit to other instances"
_postForm: _postForm:
quitInspiteOfThereAreUnuploadedFilesConfirm: "There are files that have not been uploaded, do you want to discard them and close the form?"
uploaderTip: "The file has not yet been uploaded. From the file menu, you can rename, crop images, watermark and compress or uncompress the file. Files are automatically uploaded when you publish a note."
replyPlaceholder: "Reply to this note..." replyPlaceholder: "Reply to this note..."
quotePlaceholder: "Quote this note..." quotePlaceholder: "Quote this note..."
channelPlaceholder: "Post to a channel..." channelPlaceholder: "Post to a channel..."
@ -3167,3 +3169,5 @@ _imageEffector:
stripe: "Stripes" stripe: "Stripes"
polkadot: "Polkadot" polkadot: "Polkadot"
checker: "Checker" checker: "Checker"
blockNoise: "Block Noise"
tearing: "Tearing"

View File

@ -3169,3 +3169,5 @@ _imageEffector:
stripe: "Rayas" stripe: "Rayas"
polkadot: "Lunares" polkadot: "Lunares"
checker: "Corrector" checker: "Corrector"
blockNoise: "Bloquear Ruido"
tearing: "Rasgado de Imagen (Tearing)"

View File

@ -3107,7 +3107,7 @@ _uploader:
savedXPercent: "{x}% 절약" savedXPercent: "{x}% 절약"
abortConfirm: "업로드되지 않은 파일이 있습니다만, 그만 두시겠습니까?" abortConfirm: "업로드되지 않은 파일이 있습니다만, 그만 두시겠습니까?"
doneConfirm: "업로드되지 않은 파일이 있습니다만, 완료하시겠습니까?" doneConfirm: "업로드되지 않은 파일이 있습니다만, 완료하시겠습니까?"
maxFileSizeIsX: "업드 가능한 최대 파일 크기는 {x}입니다." maxFileSizeIsX: "업드 가능한 최대 파일 크기는 {x}입니다."
allowedTypes: "업로드 가능한 파일 유형" allowedTypes: "업로드 가능한 파일 유형"
tip: "파일은 아직 업로드되지 않았습니다. 이 다이얼로그에서 업로드 전의 확인, 이름 바꾸기, 압축, 자르기 등을 하실 수 있습니다. 준비가 되셨다면 '업로드' 버튼을 클릭해 업로드를 시작하실 수 있습니다." tip: "파일은 아직 업로드되지 않았습니다. 이 다이얼로그에서 업로드 전의 확인, 이름 바꾸기, 압축, 자르기 등을 하실 수 있습니다. 준비가 되셨다면 '업로드' 버튼을 클릭해 업로드를 시작하실 수 있습니다."
_clientPerformanceIssueTip: _clientPerformanceIssueTip:
@ -3169,3 +3169,5 @@ _imageEffector:
stripe: "줄무늬" stripe: "줄무늬"
polkadot: "물방울 무늬" polkadot: "물방울 무늬"
checker: "체크 무늬" checker: "체크 무늬"
blockNoise: "노이즈 방지"
tearing: "티어링"

View File

@ -3169,3 +3169,5 @@ _imageEffector:
stripe: "条纹" stripe: "条纹"
polkadot: "波点" polkadot: "波点"
checker: "检查" checker: "检查"
blockNoise: "块状噪点"
tearing: "撕裂"

View File

@ -3169,3 +3169,5 @@ _imageEffector:
stripe: "條紋" stripe: "條紋"
polkadot: "波卡圓點" polkadot: "波卡圓點"
checker: "棋盤格" checker: "棋盤格"
blockNoise: "阻擋雜訊"
tearing: "撕裂"

View File

@ -1,6 +1,6 @@
{ {
"name": "misskey", "name": "misskey",
"version": "2025.6.1", "version": "2025.6.2",
"codename": "nasubi", "codename": "nasubi",
"repository": { "repository": {
"type": "git", "type": "git",

View File

@ -39,7 +39,11 @@ export class I18n<T extends ILocale> {
private devMode: boolean; private devMode: boolean;
constructor(public locale: T, devMode = false) { constructor(public locale: T, devMode = false) {
this.devMode = devMode; // 場合によってはバージョンアップ前の翻訳データを参照した結果存在しないプロパティにアクセスしてクライアントが起動できなくなることがある問題の応急処置として非devモードでもプロキシする
// TODO: https://github.com/misskey-dev/misskey/issues/14453 が実装されたらそのようなことは発生し得なくなるため消す
const oukyuusyoti = true;
this.devMode = devMode || oukyuusyoti;
//#region BIND //#region BIND
this.t = this.t.bind(this); this.t = this.t.bind(this);

View File

@ -1,7 +1,7 @@
{ {
"type": "module", "type": "module",
"name": "misskey-js", "name": "misskey-js",
"version": "2025.6.1", "version": "2025.6.2",
"description": "Misskey SDK for JavaScript", "description": "Misskey SDK for JavaScript",
"license": "MIT", "license": "MIT",
"main": "./built/index.js", "main": "./built/index.js",