mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-05-21 09:55:28 +02:00
enhance(frontend): チャットの日本語名称をダイレクトメッセージに & ベータを外す
This commit is contained in:
@@ -48,7 +48,7 @@ const headerTabs = computed(() => [{
|
||||
}]);
|
||||
|
||||
definePage(() => ({
|
||||
title: i18n.ts.chat + ' (beta)',
|
||||
title: i18n.ts.directMessage,
|
||||
icon: 'ti ti-messages',
|
||||
}));
|
||||
</script>
|
||||
|
||||
@@ -46,6 +46,6 @@ onMounted(() => {
|
||||
});
|
||||
|
||||
definePage({
|
||||
title: i18n.ts.chat,
|
||||
title: i18n.ts.directMessage,
|
||||
});
|
||||
</script>
|
||||
|
||||
@@ -421,7 +421,7 @@ const tab = ref('chat');
|
||||
|
||||
const headerTabs = computed(() => room.value ? [{
|
||||
key: 'chat',
|
||||
title: i18n.ts.chat,
|
||||
title: i18n.ts._chat.messages,
|
||||
icon: 'ti ti-messages',
|
||||
}, {
|
||||
key: 'members',
|
||||
@@ -437,7 +437,7 @@ const headerTabs = computed(() => room.value ? [{
|
||||
icon: 'ti ti-info-circle',
|
||||
}] : [{
|
||||
key: 'chat',
|
||||
title: i18n.ts.chat,
|
||||
title: i18n.ts._chat.messages,
|
||||
icon: 'ti ti-messages',
|
||||
}, {
|
||||
key: 'search',
|
||||
@@ -466,12 +466,12 @@ definePage(computed(() => {
|
||||
};
|
||||
} else {
|
||||
return {
|
||||
title: i18n.ts.chat,
|
||||
title: i18n.ts.directMessage,
|
||||
};
|
||||
}
|
||||
} else {
|
||||
return {
|
||||
title: i18n.ts.chat,
|
||||
title: i18n.ts.directMessage,
|
||||
};
|
||||
}
|
||||
}));
|
||||
|
||||
Reference in New Issue
Block a user