forked from mirrors/misskey
fix(frontend): アクセストークン発行時のダイアログの文言を修正 (#17495)
* fix(frontend): アクセストークン発行時のダイアログの文言を修正 * Update Changelog
This commit is contained in:
parent
6836fc15c7
commit
c86434955d
4 changed files with 7 additions and 1 deletions
|
|
@ -5,6 +5,7 @@
|
|||
|
||||
### Client
|
||||
- Fix: 一部の実績が正しく表示されない問題を修正
|
||||
- Fix: アクセストークン発行時のダイアログのタイトルが「確認コード」となっているのを修正
|
||||
|
||||
### Server
|
||||
- Enhance: リモートノートクリーニングジョブのスキップ処理のパフォーマンス改善
|
||||
|
|
|
|||
|
|
@ -1412,6 +1412,7 @@ nothingToConfigure: "設定項目はありません"
|
|||
viewRenotedChannel: "リノート先のチャンネルを見る"
|
||||
previewingTheme: "テーマのプレビュー中"
|
||||
previewingThemeRestore: "元に戻す"
|
||||
accessToken: "アクセストークン"
|
||||
|
||||
_imageEditing:
|
||||
_vars:
|
||||
|
|
|
|||
|
|
@ -93,7 +93,7 @@ async function generateToken() {
|
|||
|
||||
os.alert({
|
||||
type: 'success',
|
||||
title: i18n.ts.token,
|
||||
title: i18n.ts.accessToken,
|
||||
text: token,
|
||||
});
|
||||
},
|
||||
|
|
|
|||
|
|
@ -5663,6 +5663,10 @@ export interface Locale extends ILocale {
|
|||
* 元に戻す
|
||||
*/
|
||||
"previewingThemeRestore": string;
|
||||
/**
|
||||
* アクセストークン
|
||||
*/
|
||||
"accessToken": string;
|
||||
"_imageEditing": {
|
||||
"_vars": {
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue