From 9878a2be21d67965b3271a891381f17f5e9e2125 Mon Sep 17 00:00:00 2001 From: chenjg <17688741996@163.com> Date: Tue, 19 Dec 2023 16:56:42 +0800 Subject: [PATCH] =?UTF-8?q?[=E5=8A=9F=E8=83=BD]=20=E9=99=84=E5=8A=A0?= =?UTF-8?q?=E8=8F=9C=E5=8D=95=E7=AE=A1=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- localconfig/i18n/language_en.json | 67 +++++++++++++++++++++++++++++++ localconfig/i18n/language_zh.json | 67 +++++++++++++++++++++++++++++++ 2 files changed, 134 insertions(+) diff --git a/localconfig/i18n/language_en.json b/localconfig/i18n/language_en.json index 8b7cfa4..c831214 100644 --- a/localconfig/i18n/language_en.json +++ b/localconfig/i18n/language_en.json @@ -434,6 +434,10 @@ } }, "nfal": { + "extra_menu_modify": { + "getauthdisplayname": "Extra menu management permissions", + "getauthintroduction": "Configure extra menus" + }, "matrix_modify": { "getauthdisplayname": "Matrix Management Permissions", "getauthintroduction": "Adding, modifying, and deleting matrices" @@ -887,6 +891,29 @@ } } }, + "nfee": { + "extramenuexistchildrenexception": { + "extramenuexistchildrenexception": "Current directory: {0} has child nodes, cannot be deleted" + }, + "extramenunamerepeatexception": { + "extramenunamerepeatexception": "Name: {0} duplicate" + }, + "extramenunotallowedaddexception": { + "extramenunotallowedaddexception": "Menu nodes do not allow adding child nodes" + }, + "extramenunotfoundexception": { + "extramenunotfoundexception": "Menu configuration: {0} does not exist" + }, + "extramenuparamexception": { + "extramenuparamexception": "Parameter: {0} cannot be empty" + }, + "extramenurootexception": { + "extramenurootexception": "Only one root node is allowed to exist" + }, + "extramenurootnotallowedexception": { + "extramenurootnotallowedexception": "Root node not allowed to be deleted" + } + }, "nfeec": { "eventsolutionnotfoundedittargetexception": { "eventsolutionnotfoundedittargetexception": "Solution: {0} does not exist" @@ -3238,6 +3265,46 @@ } } }, + "nmtae": { + "extramenuapi": { + "getname": "Obtain the interface for adding menu lists with permissions" + }, + "extramenudeleteapi": { + "getname": "Delete specified extra menu/directory interface" + }, + "extramenugetapi": { + "getname": "Interface for obtaining specified ID extra menu/directory information" + }, + "extramenumoveapi": { + "getname": "Extra menu move position interface", + "input": { + "param": { + "id": { + "desc": "The ID of the service channel being moved" + }, + "movetype": { + "desc": "Mobile type" + }, + "targetid": { + "desc": "Target node ID" + } + } + } + }, + "extramenusaveapi": { + "getname": "Save extra menu/directory information interface", + "input": { + "param": { + "type": { + "desc": "0: Directory, 1: Menu" + } + } + } + }, + "extramenutreeapi": { + "getname": "Get Extra Menu Tree Interface" + } + }, "nmtaf": { "downloadimageapi": { "getname": "Image download interface" diff --git a/localconfig/i18n/language_zh.json b/localconfig/i18n/language_zh.json index 33522bc..d07efd1 100644 --- a/localconfig/i18n/language_zh.json +++ b/localconfig/i18n/language_zh.json @@ -434,6 +434,10 @@ } }, "nfal": { + "extra_menu_modify": { + "getauthdisplayname": "附加菜单管理权限", + "getauthintroduction": "对附加菜单进行配置" + }, "matrix_modify": { "getauthdisplayname": "矩阵管理权限", "getauthintroduction": "对矩阵进行添加、修改和删除" @@ -916,6 +920,29 @@ } } }, + "nfee": { + "extramenuexistchildrenexception": { + "extramenuexistchildrenexception": "当前目录:{0}存在子节点,无法删除" + }, + "extramenunamerepeatexception": { + "extramenunamerepeatexception": "名称:{0}重复" + }, + "extramenunotallowedaddexception": { + "extramenunotallowedaddexception": "菜单节点不允许新增子节点" + }, + "extramenunotfoundexception": { + "extramenunotfoundexception": "菜单配置:{0}不存在" + }, + "extramenuparamexception": { + "extramenuparamexception": "参数:{0}不能为空" + }, + "extramenurootexception": { + "extramenurootexception": "只允许存在一个根节点" + }, + "extramenurootnotallowedexception": { + "extramenurootnotallowedexception": "根节点不允许删除" + } + }, "nfeec": { "eventsolutionnotfoundedittargetexception": { "eventsolutionnotfoundedittargetexception": "解决方案:{0}不存在" @@ -3296,6 +3323,46 @@ } } }, + "nmtae": { + "extramenuapi": { + "getname": "获取拥有权限的附加菜单列表接口" + }, + "extramenudeleteapi": { + "getname": "删除指定附加菜单/目录接口" + }, + "extramenugetapi": { + "getname": "获取指定ID附加菜单/目录信息接口" + }, + "extramenumoveapi": { + "getname": "附加菜单移动位置接口", + "input": { + "param": { + "id": { + "desc": "被移动的服务通道id" + }, + "movetype": { + "desc": "移动类型" + }, + "targetid": { + "desc": "目标节点id" + } + } + } + }, + "extramenusaveapi": { + "getname": "保存附加菜单/目录信息接口", + "input": { + "param": { + "type": { + "desc": "0:目录,1:菜单" + } + } + } + }, + "extramenutreeapi": { + "getname": "获取附加菜单目录树接口" + } + }, "nmtaf": { "downloadimageapi": { "getname": "图片下载接口" -- Gitee