diff --git a/CHANGELOG.md b/CHANGELOG.md
index d65cc8ebd..09b5a2ac8 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -15,6 +15,8 @@
- 投稿のNSFW画像を表示したあとにリアクションが更新されると画像が非表示になる問題を修正
- 「クリップ」ページが開かない問題を修正
- トレンドウィジェットが動作しないのを修正
+- リアクション設定で絵文字ピッカーが開かないのを修正
+- DMページでメンションが含まれる問題を修正
## 12.102.1 (2022/01/27)
### Bugfixes
diff --git a/packages/client/src/account.ts b/packages/client/src/account.ts
index 5a935e1dc..4aeceecca 100644
--- a/packages/client/src/account.ts
+++ b/packages/client/src/account.ts
@@ -192,31 +192,31 @@ export async function openAccountMenu(opts: {
if (opts.withExtraOperation) {
popupMenu([...[{
type: 'link',
- text: i18n.locale.profile,
+ text: i18n.ts.profile,
to: `/@${ $i.username }`,
avatar: $i,
}, null, ...(opts.includeCurrentAccount ? [createItem($i)] : []), ...accountItemPromises, {
icon: 'fas fa-plus',
- text: i18n.locale.addAccount,
+ text: i18n.ts.addAccount,
action: () => {
popupMenu([{
- text: i18n.locale.existingAccount,
+ text: i18n.ts.existingAccount,
action: () => { showSigninDialog(); },
}, {
- text: i18n.locale.createAccount,
+ text: i18n.ts.createAccount,
action: () => { createAccount(); },
- }], ev.currentTarget || ev.target);
+ }], ev.currentTarget ?? ev.target);
},
}, {
type: 'link',
icon: 'fas fa-users',
- text: i18n.locale.manageAccounts,
+ text: i18n.ts.manageAccounts,
to: `/settings/accounts`,
- }]], ev.currentTarget || ev.target, {
+ }]], ev.currentTarget ?? ev.target, {
align: 'left'
});
} else {
- popupMenu([...(opts.includeCurrentAccount ? [createItem($i)] : []), ...accountItemPromises], ev.currentTarget || ev.target, {
+ popupMenu([...(opts.includeCurrentAccount ? [createItem($i)] : []), ...accountItemPromises], ev.currentTarget ?? ev.target, {
align: 'left'
});
}
diff --git a/packages/client/src/components/abuse-report-window.vue b/packages/client/src/components/abuse-report-window.vue
index cd04f62bc..f2cb36980 100644
--- a/packages/client/src/components/abuse-report-window.vue
+++ b/packages/client/src/components/abuse-report-window.vue
@@ -2,7 +2,7 @@
{{ i18n.locale.avatar }}
+{{ i18n.ts.avatar }}
{{ i18n.locale.banner }}
+{{ i18n.ts.banner }}
{{ i18n.locale.nsfw }}
+{{ i18n.ts.nsfw }}
- {{ i18n.locale.uploadFolder }} + {{ i18n.ts.uploadFolder }}
{{ i18n.t('empty-draghover') }}
-{{ i18n.locale.emptyDrive }}
{{ i18n.t('empty-drive-description') }}
{{ i18n.locale.emptyFolder }}
+{{ i18n.ts.emptyDrive }}
{{ i18n.t('empty-drive-description') }}
{{ i18n.ts.emptyFolder }}