feat: 新カスタム絵文字管理画面(β)の追加 (#13473)
* wip * wip * wip * wip * wip * wip * wip * wip * fix * fix * fix * fix size * fix register logs * fix img autosize * fix row selection * support delete * fix border rendering * fix display:none * tweak comments * support choose pc file and drive file * support directory drag-drop * fix * fix comment * support context menu on data area * fix autogen * wip イベント整理 * イベントの整理 * refactor grid * fix cell re-render bugs * fix row remove * fix comment * fix validation * fix utils * list maximum * add mimetype check * fix * fix number cell focus * fix over 100 file drop * remove log * fix patchData * fix performance * fix * support update and delete * support remote import * fix layout * heightやめる * fix performance * add list v2 endpoint * support pagination * fix api call * fix no clickable input text * fix limit * fix paging * fix * fix * support search * tweak logs * tweak cell selection * fix range select * block delete * add comment * fix * support import log * fix dialog * refactor * add confirm dialog * fix name * fix autogen * wip * support image change and highlight row * add columns * wip * support sort * add role name * add index to emoji * refine context menu setting * support role select * remove unused buttons * fix url * fix MkRoleSelectDialog.vue * add route * refine remote page * enter key search * fix paste bugs * fix copy/paste * fix keyEvent * fix copy/paste and delete * fix comment * fix MkRoleSelectDialog.vue and storybook scenario * fix MkRoleSelectDialog.vue and storybook scenario * add MkGrid.stories.impl.ts * fix * [wip] add custom-emojis-manager2.stories.impl.ts * [wip] add custom-emojis-manager2.stories.impl.ts * wip * 課題はまだ残っているが、ひとまず完了 * fix validation and register roles * fix upload * optimize import * patch from dev * i18n * revert excess fixes * separate sort order component * add SPDX * revert excess fixes * fix pre test * fix bugs * add type column * fix types * fix CHANGELOG.md * fix lit * lint * tweak style * refactor * fix ci * autogen * Update types.ts * CSS Module化 * fix log * 縦スクロールを無効化 * MkStickyContainer化 * regenerate locales index.d.ts * fix * fix * テスト * ランダム値によるUI変更の抑制 * テスト * tableタグやめる * fix last-child css * fix overflow css * fix endpoint.ts * tweak css * 最新への追従とレイアウト微調整 * ソートキーの指定方法を他と合わせた * fix focus * fix layout * v2エンドポイントのルールに対応 * 表示条件などを微調整 * fix MkDataCell.vue * fix error code * fix error * add comment to MkModal.vue * Update index.d.ts * fix CHANGELOG.md * fix color theme * fix CHANGELOG.md * fix CHANGELOG.md * fix center * fix: テーブルにフォーカスがあり、通常状態であるときはキーイベントの伝搬を止める * fix: ロール選択用のダイアログにてコンディショナルロールを×ボタンで除外できなかったのを修正 * fix remote list folder * sticky footers * chore: fix ci error(just single line-break diff) * fix loading * fix like * comma to space * fix ci * fix ci * removed align-center --------- Co-authored-by: osamu <46447427+sam-osamu@users.noreply.github.com> Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com> Co-authored-by: Sayamame-beans <61457993+Sayamame-beans@users.noreply.github.com>
This commit is contained in:
Vendored
+224
@@ -36,6 +36,10 @@ export interface Locale extends ILocale {
|
||||
* 検索
|
||||
*/
|
||||
"search": string;
|
||||
/**
|
||||
* リセット
|
||||
*/
|
||||
"reset": string;
|
||||
/**
|
||||
* 通知
|
||||
*/
|
||||
@@ -10543,6 +10547,226 @@ export interface Locale extends ILocale {
|
||||
*/
|
||||
"native": string;
|
||||
};
|
||||
"_gridComponent": {
|
||||
"_error": {
|
||||
/**
|
||||
* この値は必須項目です
|
||||
*/
|
||||
"requiredValue": string;
|
||||
/**
|
||||
* 正規表現によるバリデーションはtype:textのカラムのみサポートします。
|
||||
*/
|
||||
"columnTypeNotSupport": string;
|
||||
/**
|
||||
* この値は{pattern}のパターンに一致しません
|
||||
*/
|
||||
"patternNotMatch": ParameterizedString<"pattern">;
|
||||
/**
|
||||
* この値は一意である必要があります
|
||||
*/
|
||||
"notUnique": string;
|
||||
};
|
||||
};
|
||||
"_roleSelectDialog": {
|
||||
/**
|
||||
* 選択されていません
|
||||
*/
|
||||
"notSelected": string;
|
||||
};
|
||||
"_customEmojisManager": {
|
||||
"_gridCommon": {
|
||||
/**
|
||||
* 選択行をコピー
|
||||
*/
|
||||
"copySelectionRows": string;
|
||||
/**
|
||||
* 選択範囲をコピー
|
||||
*/
|
||||
"copySelectionRanges": string;
|
||||
/**
|
||||
* 選択行を削除
|
||||
*/
|
||||
"deleteSelectionRows": string;
|
||||
/**
|
||||
* 選択範囲の行を削除
|
||||
*/
|
||||
"deleteSelectionRanges": string;
|
||||
/**
|
||||
* 検索設定
|
||||
*/
|
||||
"searchSettings": string;
|
||||
/**
|
||||
* 検索条件を詳細に設定します。
|
||||
*/
|
||||
"searchSettingCaption": string;
|
||||
/**
|
||||
* 並び順
|
||||
*/
|
||||
"sortOrder": string;
|
||||
/**
|
||||
* 登録ログ
|
||||
*/
|
||||
"registrationLogs": string;
|
||||
/**
|
||||
* 絵文字更新・削除時のログが表示されます。更新・削除操作を行ったり、ページを遷移・リロードすると消えます。
|
||||
*/
|
||||
"registrationLogsCaption": string;
|
||||
/**
|
||||
* エラー
|
||||
*/
|
||||
"alertEmojisRegisterFailedTitle": string;
|
||||
/**
|
||||
* 絵文字の更新・削除に失敗しました。詳細は登録ログをご確認ください。
|
||||
*/
|
||||
"alertEmojisRegisterFailedDescription": string;
|
||||
};
|
||||
"_logs": {
|
||||
/**
|
||||
* 成功ログを表示
|
||||
*/
|
||||
"showSuccessLogSwitch": string;
|
||||
/**
|
||||
* 失敗ログはありません。
|
||||
*/
|
||||
"failureLogNothing": string;
|
||||
/**
|
||||
* ログはありません。
|
||||
*/
|
||||
"logNothing": string;
|
||||
};
|
||||
"_remote": {
|
||||
/**
|
||||
* 選択行をインポート
|
||||
*/
|
||||
"importSelectionRows": string;
|
||||
/**
|
||||
* 選択範囲の行をインポート
|
||||
*/
|
||||
"importSelectionRangesRows": string;
|
||||
/**
|
||||
* チェックされた絵文字をインポート
|
||||
*/
|
||||
"importEmojisButton": string;
|
||||
/**
|
||||
* 絵文字のインポート
|
||||
*/
|
||||
"confirmImportEmojisTitle": string;
|
||||
/**
|
||||
* リモートから受信した{count}個の絵文字のインポートを行います。絵文字のライセンスに十分な注意を払ってください。実行しますか?
|
||||
*/
|
||||
"confirmImportEmojisDescription": ParameterizedString<"count">;
|
||||
};
|
||||
"_local": {
|
||||
/**
|
||||
* 登録済み絵文字一覧
|
||||
*/
|
||||
"tabTitleList": string;
|
||||
/**
|
||||
* 絵文字の登録
|
||||
*/
|
||||
"tabTitleRegister": string;
|
||||
"_list": {
|
||||
/**
|
||||
* 登録された絵文字はありません。
|
||||
*/
|
||||
"emojisNothing": string;
|
||||
/**
|
||||
* 選択行を削除対象にする
|
||||
*/
|
||||
"markAsDeleteTargetRows": string;
|
||||
/**
|
||||
* 選択範囲の行を削除対象にする
|
||||
*/
|
||||
"markAsDeleteTargetRanges": string;
|
||||
/**
|
||||
* 変更された絵文字はありません。
|
||||
*/
|
||||
"alertUpdateEmojisNothingDescription": string;
|
||||
/**
|
||||
* 削除対象の絵文字はありません。
|
||||
*/
|
||||
"alertDeleteEmojisNothingDescription": string;
|
||||
/**
|
||||
* 確認
|
||||
*/
|
||||
"confirmUpdateEmojisTitle": string;
|
||||
/**
|
||||
* {count}個の絵文字を更新します。実行しますか?
|
||||
*/
|
||||
"confirmUpdateEmojisDescription": ParameterizedString<"count">;
|
||||
/**
|
||||
* 確認
|
||||
*/
|
||||
"confirmDeleteEmojisTitle": string;
|
||||
/**
|
||||
* チェックがつけられた{count}個の絵文字を削除します。実行しますか?
|
||||
*/
|
||||
"confirmDeleteEmojisDescription": ParameterizedString<"count">;
|
||||
/**
|
||||
* 絵文字に設定されたロールで検索
|
||||
*/
|
||||
"dialogSelectRoleTitle": string;
|
||||
};
|
||||
"_register": {
|
||||
/**
|
||||
* アップロード設定
|
||||
*/
|
||||
"uploadSettingTitle": string;
|
||||
/**
|
||||
* この画面で絵文字アップロードを行う際の動作を設定できます。
|
||||
*/
|
||||
"uploadSettingDescription": string;
|
||||
/**
|
||||
* ディレクトリ名を"category"に入力する
|
||||
*/
|
||||
"directoryToCategoryLabel": string;
|
||||
/**
|
||||
* ディレクトリをドラッグ・ドロップした時に、ディレクトリ名を"category"に入力します。
|
||||
*/
|
||||
"directoryToCategoryCaption": string;
|
||||
/**
|
||||
* いずれかの方法で登録する絵文字を選択してください。
|
||||
*/
|
||||
"emojiInputAreaCaption": string;
|
||||
/**
|
||||
* この枠に画像ファイルまたはディレクトリをドラッグ&ドロップ
|
||||
*/
|
||||
"emojiInputAreaList1": string;
|
||||
/**
|
||||
* このリンクをクリックしてPCから選択する
|
||||
*/
|
||||
"emojiInputAreaList2": string;
|
||||
/**
|
||||
* このリンクをクリックしてドライブから選択する
|
||||
*/
|
||||
"emojiInputAreaList3": string;
|
||||
/**
|
||||
* 確認
|
||||
*/
|
||||
"confirmRegisterEmojisTitle": string;
|
||||
/**
|
||||
* リストに表示されている絵文字を新たなカスタム絵文字として登録します。よろしいですか?(負荷を避けるため、一度の操作で登録可能な絵文字は{count}件までです)
|
||||
*/
|
||||
"confirmRegisterEmojisDescription": ParameterizedString<"count">;
|
||||
/**
|
||||
* 確認
|
||||
*/
|
||||
"confirmClearEmojisTitle": string;
|
||||
/**
|
||||
* 編集内容を破棄し、リストに表示されている絵文字をクリアします。よろしいですか?
|
||||
*/
|
||||
"confirmClearEmojisDescription": string;
|
||||
/**
|
||||
* 確認
|
||||
*/
|
||||
"confirmUploadEmojisTitle": string;
|
||||
/**
|
||||
* ドラッグ&ドロップされた{count}個のファイルをドライブにアップロードします。実行しますか?
|
||||
*/
|
||||
"confirmUploadEmojisDescription": ParameterizedString<"count">;
|
||||
};
|
||||
};
|
||||
};
|
||||
"_embedCodeGen": {
|
||||
/**
|
||||
* 埋め込みコードをカスタマイズ
|
||||
|
||||
Reference in New Issue
Block a user