enhance(frontend): Enterでチャットのメッセージを送信できるように
This commit is contained in:
parent
8c1fc85d00
commit
2272eceffa
6 changed files with 78 additions and 13 deletions
20
locales/index.d.ts
vendored
20
locales/index.d.ts
vendored
|
|
@ -5448,6 +5448,14 @@ export interface Locale extends ILocale {
|
|||
* ホーム
|
||||
*/
|
||||
"home": string;
|
||||
/**
|
||||
* 送信
|
||||
*/
|
||||
"send": string;
|
||||
/**
|
||||
* 改行
|
||||
*/
|
||||
"newline": string;
|
||||
/**
|
||||
* このルームをミュート
|
||||
*/
|
||||
|
|
@ -5614,11 +5622,23 @@ export interface Locale extends ILocale {
|
|||
* ナビゲーションバーに副ボタンを表示
|
||||
*/
|
||||
"showNavbarSubButtons": string;
|
||||
/**
|
||||
* オンのとき
|
||||
*/
|
||||
"ifOn": string;
|
||||
/**
|
||||
* オフのとき
|
||||
*/
|
||||
"ifOff": string;
|
||||
"_chat": {
|
||||
/**
|
||||
* 送信者の名前を表示
|
||||
*/
|
||||
"showSenderName": string;
|
||||
/**
|
||||
* Enterで送信
|
||||
*/
|
||||
"sendOnEnter": string;
|
||||
};
|
||||
};
|
||||
"_preferencesProfile": {
|
||||
|
|
|
|||
|
|
@ -1359,6 +1359,8 @@ _chat:
|
|||
members: "メンバー"
|
||||
searchMessages: "メッセージを検索"
|
||||
home: "ホーム"
|
||||
send: "送信"
|
||||
newline: "改行"
|
||||
muteThisRoom: "このルームをミュート"
|
||||
deleteRoom: "ルームを削除"
|
||||
cannotChatWithTheUser: "このユーザーとのチャットを開始できません"
|
||||
|
|
@ -1404,9 +1406,12 @@ _settings:
|
|||
makeEveryTextElementsSelectable: "全てのテキスト要素を選択可能にする"
|
||||
makeEveryTextElementsSelectable_description: "有効にすると、一部のシチュエーションでのユーザビリティが低下する場合があります。"
|
||||
showNavbarSubButtons: "ナビゲーションバーに副ボタンを表示"
|
||||
ifOn: "オンのとき"
|
||||
ifOff: "オフのとき"
|
||||
|
||||
_chat:
|
||||
showSenderName: "送信者の名前を表示"
|
||||
sendOnEnter: "Enterで送信"
|
||||
|
||||
_preferencesProfile:
|
||||
profileName: "プロファイル名"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue