国际化规范
简述
词条是一个key-value组合,key就是词条key,格式如下:common.button.ok.label = OK.实际应用中,开发只需要在显示端引用i18n key,系统则会根据语种环境自动显示对应语言。 由于多种原因,i18n词条需要在PC和移动端分别开发。
Key Value 命名
1、使用小写字母的单词,各单词间用 . 进行分隔,做到层次分明,例如 工程或插件名称.模块名称.功能名称.相关名 =xxxxxxx
2、插件国际化key 约定 以插件名称开头作为标识 : 例如 HR插件 hr.sign.mobile.lable = Mobile Sign Query
3、英文Value 值 各单词间用空格分隔,不允许出现两个单词拼接在一起的现象 例如: hr.sign.mobile.lable = MobileSignQuery , 必须使用空格分隔 Mobile Sign Query
国际化反模式
如果是通用的名称,请勿做国际化,比如CAP3、CAP4、iPad,在各语种值都是一样的,没有必要提取词条。
PC端国际化
插件国际化配置文件位于“cfgHome/plugin/插件id/i18n”目录下,按照JDK国际化文件的配置规则命名,可采用多组文件。注意:词条key必须以插件id开始。 默认插件国际化资源配置只能在Java端使用,前端javascript无法使用,如果要开放给前端,可以在插件的i18n文件夹根下创建名为“export_to_js.xml”注册js可以使用的词条key。
PC端标准国际化文件定义目录

PC端国际化文件编写规范 properties中的资源必须经过编码,不允许出现中文、日文、法文等Unicode字符,而必须是ASCII字符。 注意:词条key必须以插件id开始。
《taskmanage_zh_CN.properties》
taskmanage.create.label = \u521B\u5EFA
taskmanage.create.label1 = \u521B\u5EFA{0}
taskmanage.create.label2 = {0}\u521B\u5EFA{1}
《taskmanage_zh_TW.properties》
taskmanage.create.label = \u5275\u5EFA
taskmanage.create.label1 = \u5275\u5EFA{0}
taskmanage.create.label2 = {0}\u5275\u5EFA{1}
《taskmanage_en.properties》
taskmanage.create.label = Create
taskmanage.create.label1 = Create {0}
taskmanage.create.label2 = {0} Create {1}
Java后端调用方式:
String key = ResourceUtil.getString("taskmanage.create.label");
//一个占位符
String key1 = ResourceUtil.getString("taskmanage.create.label1", "admin");
//两个占位符
String key2 = ResourceUtil.getString("taskmanage.create.label2", "上帝", "人");
JSP前端调用方式:
<%-- 注意务必引入common_header --%>
<%@ include file="/WEB-INF/jsp/common/common_header.jsp"%>
<tr>
<td>ctp:i18n函数</td>
<td>${ctp:i18n('common.button.add.label')}</td>
</tr>
<tr>
<td>ctp:i18n_1函数,一个参数,变量参数</td>
<td>${ctp:i18n_1('common.charactor.limit.label',path)}</td>
</tr>
<tr>
<td>ctp:i18n_1函数,一个参数,数值参数</td>
<td>${ctp:i18n_1('common.charactor.limit.label',10)}</td>
</tr>
<tr>
<td>ctp:i18n_1函数,一个参数,字符串参数</td>
<td>${ctp:i18n_1('common.charactor.limit.label','测试')}</td>
</tr>
<tr>
<td>ctp:i18n_2函数,两个参数</td>
<td>${ctp:i18n_2('common.charactor.limit.label','测试',3)}</td>
</tr>
<tr>
<td>ctp:i18n_3函数,三个参数</td>
<td>${ctp:i18n_3('common.charactor.limit.label','测试',3,3)}</td>
</tr>
<tr>
<td>ctp:i18n_4函数,四个参数</td>
<td>${ctp:i18n_4('common.charactor.limit.label','测试',3,3,3)}</td>
</tr>
<tr>
<td>ctp:i18n_5函数,五个参数</td>
<td>${ctp:i18n_5('common.charactor.limit.label','测试',3,3,3,3)}</td>
</tr>
Javascript中调用国际化: 如果在*.js文件中,默认情况下无法获取国际化词条。 如果要获取国际化词条则需要在/cfgHome/plugin/插件ID/i18n目录下新增export_to_js.xml文件,然后在文件里注册需要被js引用的国际化key。
编写《export_to_js.xml》文件:
<?xml version="1.0" encoding="utf-8"?>
<export>
<resKey>taskmanage.create.label</resKey>
<resKey>taskmanage.create.label1</resKey>
<resKey>taskmanage.create.label2</resKey>
</export>
前端javascript中:
<%-- 注意在JSP中引入common_footer --%>
<%@ include file="/WEB-INF/jsp/common/common_footer.jsp"%>
<script type="text/javascript">
alert($.i18n('taskmanage.create.label'));
alert($.i18n('taskmanage.create.label1','参数1'));
alert($.i18n('taskmanage.create.label2','参数1','参数2'));
</script>
移动端(微协同、M3)国际化
移动端与PC端的国际化词条是分别开发维护的,主要原因是PC国际化词条太过庞大,移动端词条按需使用,需要本地化存储。
移动端国际化代码结构示例:

移动端国际化文件编写示例:
/**此段固定写法,必须加上start*/
if(typeof fI18nData == "undefined"){
fI18nData = {}
}
/**此段固定写法,必须加上end*/
//常规的国际化定义,key以模块名称开头
fI18nData["Attendance.label.attendance"] = "考勤";
//带占位符的国际化定义
fI18nData["Attendance.label.authAttendTimes"] = "可容纳{0}人";
前端*.html引用国际化标准方式:
<!-- 默认引入zh_CN的国际化,以加速页面响应效率 -->
<script src="${data:dependencies.attendance}/i18n/attendance_zh_CN.js${data:buildversion}"></script>
<script src="${data:dependencies.commons}/i18n/Commons_zh_CN.js${data:buildversion}"></script>
<script src="${data:dependencies.cmp}/js/cmp-i18n.js${data:buildversion}"></script>
<script>
<!-- 异步调用i18n组件,地址指向本模块的i18n文件夹,这一步组件会自动判断国际化环境加载对应文件 -->
cmp.i18n.init("${data:dependencies.attendance}/i18n/","attendance",function(){
//初始化本页面titile国际化标准写法
document.title = cmp.i18n("Attendance.label.atWork");
});
</script>
>>>前端html标签调用国际化方法,使用<i18n>自定义标签来实现:
<div ><span><i18n key="Attendance.label.records"></i18n></span></div>
>>>前端javascript调用国际化方法:
<script type="text/javascript">
//普通写法
var i18n = cmp.i18n("Attendance.label.attendance");
//带占位符的写法
var i18n1 = cmp.i18n("Attendance.label.authAttendTimes","123");
</script>
国际化时区
时区在跨国应用中非常常见。
标准场景是:服务器在北京,张三于2018-9-7 15:00在北京发起一个协同给peter,发起时间保存到北京服务器数据库里是2018-9-7 15:00,peter在纽约连上北京服务器打开协同,看到的协同发起时间应该是2018-9-7 03:00,因为纽约比北京晚12小时。
未做时区支持的技术实现场景是从数据库取出协同发起时间2018-9-7 15:00,然后将日期直接返回给前端页面,如果这样做,则在美国的peter看到的时间就是北京时间的,没有做时区转换。
从服务器向前端传递日期时间,或者从前端提交日期时间保存到服务器时,两种场景都需要在Java后台调用对应的时区转换工具类。

前端提交日期到后端保存:
前端:
<form>
<input type=”text” name=”startTime” value=”2018-7-8”>
</form>
后端:
String startTimeStr = request.getParameter("startTime");
//字符串转日期对象同步实现了时区的转换
Date startTime = Datetimes.parse(startTimeStr, Datetimes.dateStyle);
XXXManager.save(startTime,xxx,xxx);
不需要时区转换,请调用:Datetimes.parseNoTimeZone(dateStr, pattern)
服务器获取日期到前端:
后端:
Date dateTime = xxxDAO.getData();
//日期对象转换为日期字符串,同步实现了时区转换
String timeStr = Datetimes.formatDate(dateTime , Datetimes.datetimeAllStyle);
不需要时区转换,请调用:Datetimes.formatNoTimeZone(date, pattern)
英文前端显示规范
在前端开发过程中,尽量注意一个原则:让文字显示完整,不要出省略号!外国人普遍不认同省略号,他们需要把单词显示完整,一眼能看明白功能意义!所以在看到UE设计的时候要尽量提出质疑---英文下显示怎么办!

多语言扩展工具
我们的标准产品支持将现有的国际化词条导出修改再导入覆盖更新,也支持手动新增一套多语言。这些功能的前提都是要各模块开发的国际化词条足够完善,尽量做到每个点都要国际化!

附录:PC端公共国际化资源表
以下是通用词条,要求能复用尽量复用!
| 序号 | 国际化资源key | 英文 | 简体中文 | 繁体中文 |
|---|---|---|---|---|
| 1 | common.toolbar.execute.label | Execute | 执行 | 執行 |
| 2 | common.my.sent.label | Sent Event ({0} items) | 已发事项 ( {0}项 ) | 已發事項 ( {0}項 ) |
| 3 | common.remind.time.no | None | 无 | 無 |
| 4 | common.pwd.expirationime.label | Password changes regularly remind | 密码修改定期提醒 | 密碼修改定期提醒 |
| 5 | common.query.result | Search Results | 查询结果 | 查詢結果 |
| 6 | common.toolbar.dayView.label | Day View | 日视图 | 日視圖 |
| 7 | common.toolbar.new.label | New | 新建 | 新建 |
| 8 | common.read.label | Read | 已读 | 已讀 |
| 9 | common.time.hour | Hour | 小时 | 小時 |
| 10 | common.remind.time.five.minutes | 5 minutes | 5分钟 | 5分鐘 |
| 11 | common.week.Tue.label | Tue | 星期二 | 星期二 |
| 12 | common.attachment3.list | Association coordination | 关联公文 | 關聯公文 |
| 13 | common.toolbar.unlock.label | Unlock | 解除锁定 | 解除鎖定 |
| 14 | common.attribute.label | Attribute | 属性 | 屬性 |
| 15 | common.isdeletesomeone.label | Are you sure you want to delete "{0}" ? | 确认要删除“{0}”吗? | 確認要刪除“{0}”嗎? |
| 16 | common.button.modify.label | Modify | 修改 | 修改 |
| 17 | common.toolbar.presign.label | To Be Signed-in | 待签收 | 待簽收 |
| 18 | common.remind.time.two.day | 2 Days | 2天 | 2天 |
| 19 | common.toolbar.disable.label | Disabled | 停用 | 停用 |
| 20 | common.touchtouch.viewOrginal | source | 查看原图 | 查看原圖 |
| 21 | common.date.donedate.label | Processing time | 处理时间 | 處理時間 |
| 22 | common.toolbar.transmit.col.label | Collaboration | 转发协同 | 轉發協同 |
| 23 | common.toolbar.cancelmt.label | Cancel | 取消 | 取消 |
| 24 | common.resource.type.data | Data | 资料 | 資料 |
| 25 | common.pwd.modifyForce.label | Password expires or does not meet the requirements of the strength of the strength to change the password | 密码到期或者不符合强度要求时,强制修改密码 | 密碼到期或者不符合強度要求時,強制修改密碼 |
| 26 | common.workflow.deadline.date | Process Expiry Time | 处理期限 | 處理期限 |
| 27 | common.attachment.label | Attachment | 附件 | 附件 |
| 28 | common.toolbar.repeal.label | Withdraw | 撤销流程 | 撤銷流程 |
| 29 | common.pwd.pwdStrength.mediumrule | two kinds of numbers,letters,characters,6~8 bits. | 由数字,字母,字符中的两种组成,且长度不小于8位。 | 由數字,字母,字符中的兩種組成,且長度不小於8位。 |
| 30 | common.calendar.nov.label | November | 十一月 | 十一月 |
| 31 | common.toolbar.send.label | Send | 发送 | 發送 |
| 32 | common.my.overtime.title | overTime event | 超期待办 | 超期待辦 |
| 33 | common.toolbar.leave.transfer.label | The transfer left | 离职工作移交 | 離職工作移交 |
| 34 | common.toolbar.insert.label | Insert | 插入 | 插入 |
| 35 | common.toolbar.copyto.label | Copy To | 抄送 | 抄送 |
| 36 | common.node.select.people.nomatchlabel | No node. | 无。 | 無。 |
| 37 | common.toolbar.bandpost.label | Post Mapping | 绑定基准岗 | 綁定基準崗 |
| 38 | common.export.label | export | 导出 | 導出 |
| 39 | common.time.limit.label | Time limit: | 期限: | 期限: |
| 40 | common.toolbar.mounthView.label | Month View | 月视图 | 月視圖 |
| 41 | common.workflow.manager | Workflow Manager | 流程管理 | 流程管理 |
| 42 | common.view.workflow.label | View Flow Diagram | 查看流程 | 查看流程 |
| 43 | common.unallow.label | Prohibit | 不允许 | 不允許 |
| 44 | common.date.sendtime.label | Time Created | 发起时间 | 發起時間 |
| 45 | common.toolbar.state.sended.label | Sent | 已发 | 已發 |
| 46 | common.choose.atleastone.message | Please select at least one! | 请至少选择一项! | 請至少選擇一項! |
| 47 | common.state.invalidation.label | Disabling | 停用 | 停用 |
| 48 | common.name.label | Name | 名称 | 名稱 |
| 49 | common.toolbar.transmit.mail.label | Forward As Mail | 转发邮件 | 轉發郵件 |
| 50 | common.toolbar.insert.mydocument.label | Related Files | 关联文档 | 關聯文檔 |
| 51 | common.issueScope.label | Distribution | 发布范围 | 發布范圍 |
| 52 | common.time.day | Day | 天 | 天 |
| 53 | common.inquiry.approval | inquiry | 调查 | 调查 |
| 54 | common.button.condition.search.label | Search | 查询 | 查詢 |
| 55 | common.notnull.label | is necessary option | 为必填项 | 為必填項 |
| 56 | common.calendar.aug.label | August | 八月 | 八月 |
| 57 | common_body_type_pdf_label | Pdf Content | Pdf 正文 | Pdf 正文 |
| 58 | common.toolbar.all.label | All | 全部 | 全部 |
| 59 | common.toolbar.edit.label | Edit | 编辑 | 編輯 |
| 60 | common.toolbar.eventDept.label | Department affair | 部门事件 | 部門事件 |
| 61 | common.remind.time.one.day | 1day | 1天 | 1天 |
| 62 | common.is.timeout | Passed Time Limit? | 是否超期 | 是否超期 |
| 63 | common.allow.label | Allow | 允许 | 允許 |
| 64 | common.toolbar.presend.label | To Be Sent | 待发送 | 待發送 |
| 65 | common.caption.UnselectedNodeTransactor | 您未选择节点处理人,请返回重新选择! | 您未选择节点处理人,请返回重新选择! | 您未選擇節點處理人,請返回重新選擇! |
| 66 | common.button.down.label | Move up | 下移 | 下移 |
| 67 | common.pwd.pwdStrength.strongrule | by numbers,letters,characters, 8~14 bits. | 由数字,字母,字符三种组成,且长度大于等于8位,小于14位。 | 由數字,字母,字符三種組成,且長度大於等於8位,小於14位。 |
| 68 | common.account.applog.label | Unit logs | 单位应用日志 | 單位應用日誌 |
| 69 | common.month.label | Month | 月份 | 月份 |
| 70 | common.nothing | Nothing | 无 | 无 |
| 71 | common.detail.label.pending | pending | 待处理 | 待處理 |
| 72 | common.workflow.finish.date | Deal data | 处理时间 | 處理時間 |
| 73 | common.comprehensive.analysis.label | Comprehensive analysis | 综合分析 | 綜合分析 |
| 74 | common.option.selectCondition.text | --Search-- | --查询条件-- | --查詢條件-- |
| 75 | common.date.enddate.label | End date | 结束日期 | 結束日期 |
| 76 | common.track.setting | Track Setting | 跟踪设置 | 跟踪設置 |
| 77 | common.true | Yes | 是 | 是 |
| 78 | common.org.prefix | Group | 集团 | 集團 |
| 79 | common.attachment2.list | Association coordination | 关联协同 | 關聯協同 |
| 80 | common.my.overtime.label | overTime event ({0} items) | 超期待办 ( {0}项 ) | 超期待辦 ( {0}項 ) |
| 81 | common.resource.type.car | Vehicles | 车辆 | 車輛 |
| 82 | common.body.type.wpsexcel.label | Wps Sheet | Wps表格 | Wps表格 |
| 83 | common.my.meeting | My Metting | 我的会议 | 我的會議 |
| 84 | common.workflow.first.view.date | First View Date | 首次查看时间 | 首次查看時間 |
| 85 | common.touchtouch.loadingtips | Image Loading, please wait for a moment! | 图片加载中,请不要重复点击! | 圖片加載中,請不要重復點擊! |
| 86 | common.date.lastupdate.label | Update time | 修改时间 | 修改時間 |
| 87 | common.caption.unSupportInformAndConditions | The next nodes is unsure,it does not support wap client,please use pc client to process it. | 下一处理节点未确定,移动端暂不支持未确定下节点的协同处理,请到PC端处理! | 下一處理點未確定,移動端暫不支持未確定下節點的協同處理,請到PC端處理! |
| 88 | common.page.all | Show All | 全文 | 全文 |
| 89 | common.pleaseSelect.label | Please Select | 请选择 | 請選擇 |
| 90 | common.my.signal | Staff Address Book | 员工通讯录 | 員工通訊錄 |
| 91 | common.button.submit.label | Submit | 提交 | 提交 |
| 92 | common.default.name.value | <点击此处填写名称> | <點擊此處填寫名稱> | |
| 93 | common.template.label | Template Name | 模板名称 | 模板名稱 |
| 94 | common.dbform.label | Subform | 查看子表单 | 查看子表單 |
| 95 | common.button.empty.label | empty | 清空 | 清空 |
| 96 | common.barcode.length.more | Barcode content more than the maximum length of support, please reduce the input data! | 二维码内容超过支持的最大长度,请减少录入的数据! | 二維碼內容超過支持的最大長度,請减少錄入的數據! |
| 97 | common.subject.label | Subject | 标题 | 標題 |
| 98 | common.isignaturehtml.notInstall | Handwriting signature not install, install it from loginpage please. | 没有安装office控件,请在登陆页面进行安装。 | 沒有安裝office控件,請在登陸頁進行安裝。 |
| 99 | common.pwd.pwdStrength.require | System password Strength require | 当前系统密码强度要求为 | 當前系統密碼強度要求為 |
| 100 | common.toolbar.showAffair.label | Transaction Status | 办理情况 | 辦理情況 |
| 101 | common.pending.designated.plate | Specify plate | 指定板块 | 指定板塊 |
| 102 | common.caption | Information of prompt | 提示信息 | 提示信息 |
| 103 | common.toolbar.transacted.done.label | Completion | 已办结 | 已辦結 |
| 104 | common.intervalTime | {0}day{1}hour{2}minute{3}second | {0}天{1}小时{2}分{3}秒 | {0}天{1}小時{2}分{3}秒 |
| 105 | common.date.sample.pattern | yy-M-d HH:mm | yy-M-d HH:mm | yy-M-d HH:mm |
| 106 | common.pwd.modifysame.label | Password CanSame | 修改密码时,允许新密码与原密码一致 | 修改密碼時,允許新密碼與原密碼一致 |
| 107 | common.toolbar.saveAndContinue.label | Save and New | 保存并新建 | 保存並新建 |
| 108 | common.caption.unSupportInvalidPeople | The next nodes's poeple is not valid,please contact the administrator.Invalid peoples as follows: | 后续节点有人员不可用,请联系管理员,不可用人员有: | 後續節點有人員不可用,請聯繫管理員,不可用人員有: |
| 109 | common.opinion.been.hidden.label | Opinion has been hidden | 隐藏 | 隱藏 |
| 110 | common.isdelete.label | Are you sure you want to delete? | 确认要删除吗? | 確認要刪除嗎? |
| 111 | common.caption.unSupportFengfa | Mobile terminal does not support the sealing treatment, please go to PC-side processing! | 手机端不支持封发处理,请到PC端处理! | 手機端不支持封發處理,請到PC端處理! |
| 112 | common.deal.state | Request Approval Status | 处理状态 | 處理狀態 |
| 113 | common.calendar.jan.label | January | 一月 | 一月 |
| 114 | common.calendar.oct.label | October | 十月 | 十月 |
| 115 | common.no | No | 否 | 否 |
| 116 | common.none | None | 无 | 無 |
| 117 | common.detail.label.done | Done | 已处理 | 已處理 |
| 118 | common.workflow.modifyContent | Modifications | 修改内容 | 修改內容 |
| 119 | common.my.peoplerelate.add | Set related person | 添加为关联人员 | 添加為關聯人員 |
| 120 | common.page.title | Seeyon A8-m Collaborative Management Software | 致远A8-m协同管理软件 | 致遠A8-m協同管理軟件 |
| 121 | common.toolbar.savesend.label | Pending To Send | 保存待发 | 保存待發 |
| 122 | common.workflow.create.date | Create Date | 发起/收到时间 | 發起/收到時間 |
| 123 | common.false | No | 否 | 否 |
| 124 | common.toolbar.save.label | Save | 保存 | 保存 |
| 125 | common.resource.body.description.label | Description | 描述 | 描述 |
| 126 | common.toolbar.elite.label | Elite | 精华 | 精華 |
| 127 | common.pending.designated.personnel | Designated Personnel | 指定人员 | 指定人員 |
| 128 | common.member.name | Name | 姓名 | 姓名 |
| 129 | common.endflag | To Continue Or Finish | 是否结束 | 是否結束 |
| 130 | common.remind.time.one.hour | 1 Hour | 1小时 | 1小時 |
| 131 | common.category.label | Category | 类别 | 類別 |
| 132 | common.pending.col | Flow Template | 模板流程 | 範本流程 |
| 133 | common.toolbar.download.label | Template Download | 模板下载 | 模板下載 |
| 134 | common.calendar.jun.label | June | 六月 | 六月 |
| 135 | common.transmit.pdf | Transfer text PDF | 正文转PDF | 正文轉PDF |
| 136 | common.toolbar.updateAttachment.label | Update Attachments | 修改附件 | 修改附件 |
| 137 | common.default.subject.value2 | 请输入标题 | 請輸入標題 | |
| 138 | common.time.minute | Minute | 分 | 分 |
| 139 | common.default | None | 无 | 無 |
| 140 | common.remind.time.half.day | Half-Day | 0.5天 | 半天 |
| 141 | common.toolbar.insert.localfile.label | Local File | 本地文件 | 本地文件 |
| 142 | common.toolbar.board.switch.label | Switch Type | 板块切换 | 板塊切換 |
| 143 | common.week.Sat.label | Sat | 星期六 | 星期六 |
| 144 | common.toolbar.takeBack.label | Retrieve | 取回 | 取回 |
| 145 | common.opinion.hidden.label | Hidden opinion | 意见隐藏 | 意見隱藏 |
| 146 | common.barcode.search.saoyisao | sweep | 扫一扫 | 掃一掃 |
| 147 | common.attribute.isSystem.false | User-defined | 用户自定义 | 用戶自定義 |
| 148 | common.my.information | My Information | 我的提醒 | 我的提醒 |
| 149 | common.pending.designated.type | Specify the type | 指定类型 | 指定類型 |
| 150 | common.my.track.title | Tracking Event | 跟踪事项 | 跟蹤事項 |
| 151 | common.toolbar.post.label | Post | 岗位 | 崗位 |
| 152 | common.detail.label.noteviewed | don't viewed | 待办未读 | 待辦未讀 |
| 153 | common.back | Return | 返 回 | 返 回 |
| 154 | common.date.createdate.label | Time Created | 创建日期 | 創建日期 |
| 155 | common.toolbar.order.label | order | 排序 | 排序 |
| 156 | common.stop.workflow.label | Stop Workflow | 终止流程 | 終止流程 |
| 157 | common.my.document | My Doc | 我的文档 | 我的文檔 |
| 158 | common.select.member | Please select Member | 请选择人员 | 請選擇人員 |
| 159 | common.resource.type.office | Official Place | 办公场所 | 辦公場所 |
| 160 | common.system.login.label | login log | 登录日志 | 登录日志 |
| 161 | common.not.read.label | Unread | 未读 | 未讀 |
| 162 | common.toolbar.saveDraftOpinion.label | Save | 存为草稿 | 存為草稿 |
| 163 | common.transmit.label | Transmit | 转发人 | 轉發人 |
| 164 | common.toolbar.department.label | Department | 部门 | 部門 |
| 165 | common.personnel.label | Personnel | 人员 | 人員 |
| 166 | common.member.code | Code | 编号 | 編號 |
| 167 | common.toolbar.help.label | Help | 帮助 | 幫助 |
| 168 | common.datetime.pattern | yyyy-MM-dd HH:mm | yyyy-MM-dd HH:mm | yyyy-MM-dd HH:mm |
| 169 | common.timeout.analysis.label | Timeout analysis | 超时分析 | 超時分析 |
| 170 | common.my.message | My Message | 我的消息 | 我的消息 |
| 171 | common.company.label | Company | 单位 | 單位 |
| 172 | common.calendar.apr.label | April | 四月 | 四月 |
| 173 | common.all.label | All | 全部 | 全部 |
| 174 | common.toolbar.eventOther.label | Other affair | 他人事件 | 他人事件 |
| 175 | common.attachment.cannot | Associated with the document exists, please go to pc-side view | 存在关联文档,请到PC端查看 | 存在關聯文檔,請到PC端查看 |
| 176 | common.button.ok | Ok | 确定 | 確定 |
| 177 | common.date.endtime.label | End time | 结束时间 | 結束時間 |
| 178 | common.workflow.dealTime.date | Deal Time | 处理时长 | 處理時長 |
| 179 | common.search.condition.label | Search condition | 查询条件 | 查詢條件 |
| 180 | common.toolbar.leave.label | Leave Management | 离职办理 | 離職辦理 |
| 181 | common.pending.designated.image | Specify image | 指定图片 | 指定圖片 |
| 182 | commom.next.stop.prompt | Next time don't remind | 下次登录不再提醒 | 下次登錄不再提醒 |
| 183 | common.toolbar.cancel.agent | Cancel Agent | 取消代理 | 取消代理 |
| 184 | common.resource.type.equipment | Equipment | 设备 | 設備 |
| 185 | common.isignaturehtml.isignature | Signature | 加盖签章 | 加盖签章 |
| 186 | common.caption.nonsupportNodeSelector | The next nodes is unsure,it does not support wap client. | 下一处理节点未确定,移动端暂不支持未确定下节点的协同处理。 | 下一處理點未確定,移動端暫不支持未確定下節點的協同處理。 |
| 187 | common.toolbar.showcalendar.label | showcalendar | 显示日历 | 顯示日曆 |
| 188 | common.button.movedown.label | Move down | 下移 | 下移 |
| 189 | common.my.peoplerelate | Related Contacts | 关联人员 | 關聯人員 |
| 190 | common.my.edocPending.title | Todo list | 待办公文 | 待辦公文 |
| 191 | common.quarter.label | Quarter | 季度 | 季度 |
| 192 | common.calendar.q3.label | Q3 | 三季度 | 三季度 |
| 193 | common.toolbar.stepBack.label | Step Back | 回退 | 回退 |
| 194 | common.edoc.doc.exchange | Document exchange | 公文交换 | 公文交換 |
| 195 | common.sender.label | Sender | 发起人 | 發起人 |
| 196 | common.display.show.label | Display | 显示 | 顯示 |
| 197 | common.resource.body.name.label | Name | 名称 | 名稱 |
| 198 | common.barcode.error.license | Invalid two dimensional code license file! | 无效的二维码授权文件! | 無效的二維碼授權文件! |
| 199 | common.page.prev | Prev Page | 上页 | 上頁 |
| 200 | common.week.Fri.label | Fri | 星期五 | 星期五 |
| 201 | common.my.track.label | tracking event ({0} items) | 跟踪事项 ( {0}项 ) | 跟蹤事項 ( {0}項 ) |
| 202 | common.my.search | My Search | 我的查询 | 我的查詢 |
| 203 | common.button.delete.label | Delete | 删除 | 刪除 |
| 204 | common.design.workflow.label | Modify Flow | 编辑流程 | 編輯流程 |
| 205 | common.detail.label.viewed | do viewed | 待办已读 | 待辦已讀 |
| 206 | common.node.select.people.nomatchtiplabel | Tip: The flow has matched successfully, please click [Ok] button to sumbit. | 提示:流程匹配完成,可以单击[确定]按钮进行提交操作。 | 提示:流程匹配完成,可以單擊[確定]按鈕進行提交操作。 |
| 207 | common.detail.label.all | All | 全部 | 全部 |
| 208 | common.page.first | First Page | 首页 | 首頁 |
| 209 | common.see.template.label | See template | 查看模板 | 查看模板 |
| 210 | common.toolbar.state.pending.label | Pending | 待办 | 待辦 |
| 211 | common.authorized.personnel.label | Authorised Staff | 授权人员 | 授權人員 |
| 212 | common.basic.attribute.label | Basic Properties | 基本属性 | 基本屬性 |
| 213 | common.i18n.key.name | I18n Key Name | 国际化资源Key名 | 国际化资源Key名 |
| 214 | common.toolbar.hidecalendar.label | hidecalendar | 隐藏日历 | 隐藏日曆 |
| 215 | common.resource.detail | Detailed Info | 详细信息 | 詳細信息 |
| 216 | common.default.group | The default is all Accounts | 默认为全集团 | 默認為全集團 |
| 217 | common.i18n.value | I18n value | 国际化资源值 | 国际化资源值 |
| 218 | common.member.info | The Info of member | 人员信息 | 人員信息 |
| 219 | common.week.Mon.label | Mon | 星期一 | 星期一 |
| 220 | common.remind.time.three.day | 3 Days | 3天 | 3天 |
| 221 | common.button.continue.label | Continue | 继续处理 | 繼續處理 |
| 222 | common.importance.putong | Normal | 普通 | 普通 |
| 223 | common.barcode.open.error | Open port failed,please check this port has opened in other window! | 打开端口失败,请检查是否其他窗口已经打开该端口! | 打開端口失敗,請檢查是否其他窗口已經打開該端口! |
| 224 | common.specific.template.label | The specific template | 指定模板 | 指定模板 |
| 225 | common.propertytype.label | system/user-defined property | 类型 | 類型 |
| 226 | common.wokflow.control | Flow Control | 流程控制 | 流程控制 |
| 227 | common.touchtouch.image.viewdetail | view detail | 点击进入查看对应秀 | 點擊進入查看對應秀 |
| 228 | common.workflow.dep | Department | 所属部门 | 所屬部門 |
| 229 | common.pwd.expirationime.value4 | 360 days | 360天 | 360天 |
| 230 | common.pwd.expirationime.value3 | 180 days | 180天 | 180天 |
| 231 | common.pwd.expirationime.value2 | 90 days | 90天 | 90天 |
| 232 | common.pwd.expirationime.value1 | 30 days | 30天 | 30天 |
| 233 | common.pwd.expirationime.value0 | No limit | 不限制 | 不限制 |
| 234 | common.button.reset.label | Reset | 重置 | 重置 |
| 235 | common.content.goon | continue | 继续 | 繼續 |
| 236 | common.remind.time.label | Remind On | 提醒 | 提醒 |
| 237 | common.purview.option.label | Right setting | 权限设置 | 權限設置 |
| 238 | common.calendar.mar.label | March | 三月 | 三月 |
| 239 | common.date.startstopdate.label | Dates | 起止日期 | 起止日期 |
| 240 | common.node.analysis.label | Node analysis | 节点分析 | 節點分析 |
| 241 | common.touchtouch.image.loadfailure | image load failure | 图片加载失败 | 圖片加載失敗 |
| 242 | common.button.ok.label | Ok | 确定 | 確定 |
| 243 | common.pwd.pwdStrength.bestrule | by numbers,letters,characters,more than 14 bits. | 由数字,字母,字符三种组成,且长度大于等于14位。 | 由數字,字母,字符三種組成,且長度大於登月14位。 |
| 244 | common.my.information.label | my Infomation | 我的提醒 | 我的提醒 |
| 245 | common.toolbar.view.label | Show | 使用查看 | 使用查看 |
| 246 | common.calendar.dec.label | December | 十二月 | 十二月 |
| 247 | common.calendar.q2.label | Q2 | 二季度 | 二季度 |
| 248 | common.org.prefix.GOV | Org | 组织 | 組織 |
| 249 | common.agent | (Proxy) | (代理) | (代理) |
| 250 | common.remind.time.thirty.minutes | 30 Minutes | 30分钟 | 30分鐘 |
| 251 | common.page.last | Last Page | 尾页 | 尾頁 |
| 252 | common.flow.state.label | Flow Status | 流程状态 | 流程狀態 |
| 253 | common.choose.signature.style | Select the signature way | 选择签章方式 | 選擇簽章方式 |
| 254 | common.date.begindate.label | Begin date | 开始日期 | 開始日期 |
| 255 | common.date.createtime.label | Time Created | 创建时间 | 創建時間 |
| 256 | common.toolbar.templete.label | Template | 调用模板 | 調用模板 |
| 257 | common.operation.type | Business Types | 业务类型 | 業務類型 |
| 258 | common.display.hidden.label | Hidden | 隐藏 | 隱藏 |
| 259 | common.default.subject.value | <点击此处填写标题> | <點擊此處填寫標題> | |
| 260 | common.button.cancel.label | Cancel | 取消 | 取消 |
| 261 | common.readonly | Readonly | 只读 | 只讀 |
| 262 | common.week.Thu.label | Thu | 星期四 | 星期四 |
| 263 | common.wokflow.deal.detail | Look up Deal Detail | 查看处理明细 | 查看處理明細 |
| 264 | common.department.applog.label | Departments logs | 部门应用日志 | 部門應用日誌 |
| 265 | common.page.title.NC | UFIDA NC Collaboration-OA Suite | UFIDA NC协同-OA | UFIDA NC協同-OA |
| 266 | common.toolbar.print.label | 打印 | 打印 | |
| 267 | common.calendar.may.label | May | 五月 | 五月 |
| 268 | common.dateselected.pattern | yyyy-MM-dd | yyyy-MM-dd | yyyy-MM-dd |
| 269 | common.default.selectPeople.generic.value | <点击此处选择> | <點擊此處選擇> | |
| 270 | common.toolbar.paramset.label | Set PARAM | 设置参数 | 設置參數 |
| 271 | common.barcode.activeX.miss | Loading the two-dimensional code control failed, please confirm that the two-dimensional code control has been installed! | 加载二维码控件失败,请确认已经安装二维码控件! | 加載二維碼控制項失敗,請確認已經安裝二維碼控制項! |
| 272 | common.toolbar.preview.label | Preview | 预览 | 預覽 |
| 273 | common.pending.noreppending | Pending / pending receipt | 待定/待回执 | 待定/待回執 |
| 274 | common.unit.a.label | A | 个 | 個 |
| 275 | common.toolbar.supervise.label | Supervision Setting | 督办设置 | 督辦設置 |
| 276 | common.importanceOrEmergency.label | Importance Or Emergency | 重要、紧急程度 | 重要、緊急程度 |
| 277 | common.system.applog.label | System logs | 系统应用日志 | 系統應用日誌 |
| 278 | common.toolbar.state.register.label | To Be Registered | 待登记 | 待登記 |
| 279 | common.print.ratio.number.label | value must be a number | 必须是数字 | 必須是數字 |
| 280 | common.barcode.error | Barcode image generation anomalies! | 二维码图片生成异常! | 二維碼圖片生成异常! |
| 281 | common.app.property | user-defined property | 自定义属性 | 自定義屬性 |
| 282 | common.yes | Yes | 是 | 是 |
| 283 | common.toolbar.issuanceform.label | Issue Form | 发布表单 | 發布表單 |
| 284 | common.default.selectDepartment.value | <点击此处选择单位> | <點擊此處選擇單位> | |
| 285 | common.workflow.policy | Node Policy | 节点权限 | 節點權限 |
| 286 | common.toolbar.saveAs.label.rep | Save as | 存为模板 | 存為模板 |
| 287 | common.type.label | Type | 类型 | 類型 |
| 288 | common.refresh | Refresh | 刷新 | 刷新 |
| 289 | common.emergency.exigence | Emergency | 紧急 | 緊急 |
| 290 | common.my.auditpending.label | The Audit things | 审批事项 | 審批事項 |
| 291 | common.toolbar.rename.label | Rename | 更名 | 更名 |
| 292 | common.remind.time.ten.minutes | 10 minutes | 10分钟 | 10分鐘 |
| 293 | common.resource.type.acc | Official Supplies | 办公用品 | 辦公用品 |
| 294 | common.barcode.delete.label | Confirm that you want to delete? | 确认要删除? | 確認要刪除? |
| 295 | common.resource.body.type.label | Type | 分类 | 分類 |
| 296 | common.my.template | My Template | 我的模板 | 我的模板 |
| 297 | common.page.next | Next Page | 下页 | 下頁 |
| 298 | common.pwd.pwdStrength.label | Password Strength | 密码强度 | 密碼強度 |
| 299 | common.body.type.officeNotSupported | Office content is not supported by your current browser, use IE and install office plugin please | 当前浏览器不支持Office正文,请您使用IE浏览器并安装Office控件 | 當前瀏覽器不支持Office正文,請您使用IE瀏覽器并安裝Office控件 |
| 300 | common.improvement.analysis.label | Analysis and improvement of | 改进分析 | 改進分析 |
| 301 | common.toolbar.refresh.label | Refresh | 刷新 | 刷新 |
| 302 | common.pwd.pwdStrength.value4 | Best | 最好 | 最好 |
| 303 | common.pwd.pwdStrength.value3 | S | 强 | 強 |
| 304 | common.pwd.pwdStrength.value2 | M | 中 | 中 |
| 305 | common.my.email | My Mail | 我的邮件 | 我的郵件 |
| 306 | common.pwd.pwdStrength.value1 | W | 弱 | 弱 |
| 307 | common.pwd.pwdStrength.value0 | Nought | 无 | 無 |
| 308 | common.attachment.list | Attachment list | 附件列表 | 附件列表 |
| 309 | common.barcode.value.empty | The contents of the barcode can not be empty, please re-enter the value! | 二维码内容不能为空,请重新录入值! | 二維碼內容不能為空,請重新錄入值! |
| 310 | common.toolbar.state.done.label | Completed Items | 已办 | 已辦 |
| 311 | common.importance.label | Importance | 重要程度 | 重要程度 |
| 312 | common.toolbar.state.darft.label | Draft | 待发 | 待發 |
| 313 | common.mydocument.label | Related Files | 关联文档 | 關聯文檔 |
| 314 | common.toolbar.type.rec.label | Register | 登记 | 登記 |
| 315 | common.toolbar.auth.label | Authorise | 授权 | 授權 |
| 316 | common.date.deadlineName.label | Flow Expiry Time | 流程期限 | 流程期限 |
| 317 | common.selectPeople.label | Select people | 选人 | 選人 |
| 318 | common.emergency.commonexigence | Common | 一般 | 一般 |
| 319 | common.attribute.isSystem.true | System Preferences | 系统预置 | 系統預置 |
| 320 | common.toolbar.enable.label | Enabled | 启用 | 啟用 |
| 321 | common.toolbar.move.label | Move To | 移动至 | 移動至 |
| 322 | common.default.issueScope.value | <点击此处选择发布范围> | <點擊此處選擇發布范圍> | |
| 323 | common.action.sign.label | Signature | 签章 | 簽章 |
| 324 | common.workflow.deadlineTime.date | Tiem Out | 超期时长 | 超期時長 |
| 325 | common.updatem3i18n.label | Update M3 | 更新M3 | 更新M3 |
| 326 | common.toolbar.banchnew.label | Banch new | 批量新建 | 批量新建 |
| 327 | common.m1.comment.from.Message | From the mobile client | 发自移动客户端 | 發自移動客戶端 |
| 328 | common.sort.label | Sequence | 排序号 | 排序號 |
| 329 | common.toolbar.delete.label | Delete | 删除 | 刪除 |
| 330 | common.opinion.label | Comments | 意见 | 意見 |
| 331 | common.pending.designated.role | Specify the role | 指定角色 | 指定角色 |
| 332 | common.button.add.label | Add | 添加 | 添加 |
| 333 | common.toolbar.oper.top.label | Set-Top | 置顶 | 置頂 |
| 334 | common.workflow.analysis.label | Process analysis | 流程分析 | 流程分析 |
| 335 | common.toolbar.sent.label | Sent | 已发送 | 已發送 |
| 336 | common.body.type.html.label | Content | 标准正文 | 標準正文 |
| 337 | common.pending.important | Important | 重要流程 | 重要流程 |
| 338 | common.pending.attend | Pending Attend | 待参加 | 待參加 |
| 339 | common.pending.overtime | Over Time | 超期未办 | 超期未辦 |
| 340 | common.toolbar.transmit.label | Forward | 转发 | 轉發 |
| 341 | common.my.agent.label | Proxy item | 代理事项 | 代理事項 |
| 342 | common.toolbar.pigeonhole.label | Archive | 归档 | 歸檔 |
| 343 | common.detail.label.sborstop | Rollback/termination | 回退/终止 | 回退/終止 |
| 344 | common.agent.pending.label | Pending Affairs | 未办理事项 | 未辦理事項 |
| 345 | common.importance.zhongyao | Important | 重要 | 重要 |
| 346 | common.toolbar.toleader.label | To Leader | 主送 | 主送 |
| 347 | common.toolbar.application.label | Application | 申请 | 申請 |
| 348 | common.isignaturehtml.handwrite | Handwritten Signature | 手写签名 | 手写签名 |
| 349 | common.toolbar.update.label | Modify | 修改 | 修改 |
| 350 | common.toolbar.repeat.label | Repeat | 重复 | 重複 |
| 351 | common.time.second | Second | 秒 | 秒 |
| 352 | common.workflow.handler | Approver | 处理人 | 處理人 |
| 353 | common.toolbar.back.label | Back | 返回 | 返回 |
| 354 | common.exit | Exit | 退出 | 退出 |
| 355 | common.my.pending.title | Todo list | 待办工作 | 待辦工作 |
| 356 | common.node.select.people.submittiplabel | Are you sure to submit it? | 流程匹配完成,确认提交? | 流程匹配完成,確認提交? |
| 357 | common.repeal.workflow.label | Repeal | 撤销流程 | 撤銷流程 |
| 358 | common.body.type.label | Content type | 正文类型 | 正文類型 |
| 359 | common.successfully.saved.label | Successfully saved | 保存成功 | 保存成功 |
| 360 | common.workflow.update.date | Update Date | 更新时间 | 更新時間 |
| 361 | common.toolbar.content.label | Text | 正文 | 正文 |
| 362 | common.calendar.feb.label | February | 二月 | 二月 |
| 363 | common.importance.feichangzhongyao | Very Important | 非常重要 | 非常重要 |
| 364 | common.message.push.label | Message push | 消息推送 | 消息推送 |
| 365 | common.efficiency.analysis.label | Efficiency analysis | 效率分析 | 效率分析 |
| 366 | common.button.daoxu.label | In reverse order | 倒序 | 倒序 |
| 367 | common.toolbar.consign.label | Delegate | 委托 | 委托 |
| 368 | common.toolbar.edocArchiveModifyHistory.label | Archived Modifing log of doc | 归档公文修改日志 | 歸檔公文修改日誌 |
| 369 | common.caption.noTelNumber | The user has not set num of mobile phone. | 该用户未设置手机号码! | 該用戶未設置手機號碼! |
| 370 | common.choose.one.record.label | Please choose a record! | 请一次选择一条记录! | 請一次選擇一條記錄! |
| 371 | common.pwd.pwdStrength.weakrule | by single digits, letters, characters. | 由单一数字,字母,字符组成。 | 由單一數字,字母,字符組成。 |
| 372 | common.emergency.label | Emergency level | 紧急程度 | 緊急程度 |
| 373 | common.my.done.title | Completed Items | 已办事项 | 已辦事項 |
| 374 | common.toolbar.lockAndRemove.label | Lock/unLock | 锁定/解锁 | 鎖定/解鎖 |
| 375 | common.member.post | Post | 岗位 | 崗位 |
| 376 | common.calendar.jul.label | July | 七月 | 七月 |
| 377 | common.week.Wed.label | Wed | 星期三 | 星期三 |
| 378 | common.all.templete.label | All template | 全部模板 | 全部模板 |
| 379 | common.toolbar.leave.for.label | Leave for | 离职办理 | 離職辦理 |
| 380 | common.coll.state.label | Status | 状态 | 狀態 |
| 381 | common.toolbar.cancel.label | Withdraw | 撤销 | 撤銷 |
| 382 | common.body.type.wpsword.label | Wps Word | Wps文字 | Wps文字 |
| 383 | common.prompt.exception | Sorry, the page that you visit is not available. Please Back. | 对不起,您所访问的页面不可用,请返回。 | 對不起,您所訪問的頁面不可用,請返回。 |
| 384 | common.barcode.ready.label | Scanner is ready! | 扫描枪已就绪! | 掃描槍已就緒! |
| 385 | common.default.selectPeople.value | <点击此处选择人员> | <點擊此處選擇人員> | |
| 386 | common.state.normal.label | Enabled | 启用 | 啟用 |
| 387 | common.instructions.label | Explaination | 说明 | 說明 |
| 388 | common.toolbar.statistics.label | Statistics | 统计 | 統計 |
| 389 | common.other.label | Other | 其他 | 其他 |
| 390 | common.toolbar.eventProject.label | Project affair | 项目事件 | 項目事件 |
| 391 | common.life.log.label | Life Log | 催办日志 | 催辦日志 |
| 392 | common.app.type | App Type | 应用类型 | 應用類型 |
| 393 | common.toolbar.transacted.without.label | Uncompleted | 未办结 | 未辦結 |
| 394 | common.send.time.label | Started time | 发起时间 | 發起時間 |
| 395 | common.toolbar.issue.auth.label | Issue Auth | 发布授权 | 發布授權 |
| 396 | common.body.type.officeexcel.label | Excel Content | Excel正文 | Excel正文 |
| 397 | common.workflow.modifyBy | Modified by | 修改人 | 修改人 |
| 398 | common.toolbar.viewswitch.label | Switch List | 列表切换 | 列表切換 |
| 399 | common.charactor.limit.label | Maximum {0} characters | {0}个字以内 | {0}個字以内 |
| 400 | common.toolbar.weekView.label | Week View | 周视图 | 周視圖 |
| 401 | common.my.pending.label | Events to be processed ({0} items) | 待办工作 ( {0} 项 ) | 待辦工作 ( {0} 項 ) |
| 402 | common.datatype.label | data type | 数据类型 | 數據類型 |
| 403 | common.remind.time.fifteen.minutes | 15 Minutes | 15分钟 | 15分鐘 |
| 404 | common.body.type.officeword.label | Word Content | Word正文 | Word正文 |
| 405 | common.detail.label.editWf | Modify process | 修改流程 | 修改流程 |
| 406 | common.remind.time.one.week | 1 Week | 1周 | 1周 |
| 407 | common.more.label | More | 更多 | 更多 |
| 408 | common.issueDate.label | Issuing Date | 发布时间 | 發布時間 |
| 409 | common.toolbar.saveAs.label | Save As | 另存为 | 另存為 |
| 410 | common.state.label | Status | 状态 | 狀態 |
| 411 | common.pwd.bytes.notinclude | In the initial password Not included | 初始密码中不能包含: | 初始密碼中不能包含: |
| 412 | common.m1.comment.from.Message1 | From the wechat client | 发自微协同 | 發自微協同 |
| 413 | common.toolbar.apprize.label | Apprize | 告知 | 告知 |
| 414 | common.week.Sun.label | Sun | 星期日 | 星期日 |
| 415 | common.m1.comment.from.wxMessage | From the wechat client | 发自微协同 | 發自微協同 |
| 416 | common.toolbar.external2Internal.label | Transfer To Internal | 转内部人员 | 轉內部人員 |
| 417 | common.creater.label | Creator | 创建人 | 創建人 |
| 418 | common.toolbar.saveAndLock.label | locked after save | 保存并锁定 | 保存并锁定 |
| 419 | common.i18n.product.label | product | 产品 | 产品 |
| 420 | common.toolbar.shareAll.label | All Share | 全部共享 | 全部共享 |
| 421 | common.toolbar.oper.publish.label | Issue | 发布 | 發布 |
| 422 | common.process.analysis.settings | Process analysis settings | 流程分析设置 | 流程分析設置 |
| 423 | common.toolbar.exportExcel.label | Export excel | 导出Excel | 導出Excel |
| 424 | common.toolbar.insertAttachment.label | Attachment | 插入附件 | 插入附件 |
| 425 | common.remind.time.four.hour | 4 Hours | 4小时 | 4小時 |
| 426 | common.homepage | Homepage | 主 页 | 主 頁 |
| 427 | common.date.senddate.label | Initiate date | 发起日期 | 發起日期 |
| 428 | common.button.close.label | Close | 关闭 | 關閉 |
| 429 | common.create.org.label | creator | 创建单位 | 創建單位 |
| 430 | common.state.normal | Enabled | 已启用 | 已啓用 |
| 431 | common.hasten.fillinnote.label | Please fill in note! | 请填写附言! | 請填寫附言! |
| 432 | common.my.done.label | Completed Items ({0} items) | 已办事项 ( {0}项 ) | 已辦事項 ( {0}項 ) |
| 433 | common.remind.time.three.hour | 3 Hours | 3小时 | 3小時 |
| 434 | common.date.times | {0} Hours {1} Mins | {0}小时 {1}分 | {0}小時 {1}分 |
| 435 | common.caption.unSupportRegister | Not support the exchange of phone side processing documents, please go to PC side deal! | 暂不支持手机端处理公文交换,请到PC端处理! | 暫不支持手機端處理公文交換,請到PC端處理! |
| 436 | common.my.calendar | My Calendar | 我的日程 | 我的日程 |
| 437 | common.toolbar.resend.label | Repeate | 重复发起 | 重復發起 |
| 438 | common.workflow.stat | workflow stat. | 流程统计 | 流程統計 |
| 439 | common.pending.all | All | 全部 | 全部 |
| 440 | common.my.sent.title | Sent Items | 已发事项 | 已發事項 |
| 441 | common.node.select.people.label | Select Approver For The Node | 选择节点执行人 | 選擇節點執行人 |
| 442 | common.detail.label.editContent | Modify Content | 修改正文 | 修改正文 |
| 443 | common.reference.time.label | Standard Flow Duration | 基准时长 | 基准時長 |
| 444 | common.advance.label | Advanced | 高级 | 高級 |
| 445 | common.prompt | Prompt | 提示 | 提示 |
| 446 | common.calendar.q1.label | Q1 | 一季度 | 一季度 |
| 447 | common.default.group.GOV | The default is all Government | 默认为全组织 | 默認為全組織 |
| 448 | common.barcode.port.opened | COM1 port has been opened! | COM1端口已经被打开! | COM1端口已經被打開! |
| 449 | common.button.moveup.label | Move up | 上移 | 上移 |
| 450 | common.emergency.veryexigence | High emergency | 非常紧急 | 非常緊急 |
| 451 | common.toolbar.people.label | people | 人员 | 人員 |
| 452 | common.toolbar.relationAuthority.label | Authorise | 表单授权 | 表單授權 |
| 453 | common.remind.time.two.hour | 2 Hours | 2小时 | 2小時 |
| 454 | common.office.audit | Approval Requests (Operations) | 综合办公审批 | 综合办公审批 |
| 455 | common.more | More | 更多 | 更多 |
| 456 | common.my.shortcut | My Shortcut | 我的快捷 | 我的快捷 |
| 457 | common.state.invalidation | Disabled | 已停用 | 已停用 |
| 458 | common.button.up.label | Move up | 上移 | 上移 |
| 459 | common.items.count.label | ({0} items) | ({0}项) | ({0}項) |
| 460 | common.flow.statistics.label | Flow statistics | 流程统计 | 流程統計 |
| 461 | common.wokflow.deal.detail.alt | Details | 处理明细 | 處理明細 |
| 462 | common.nav.switch | Navigation Switch | 导航切换 | 導航切換 |
| 463 | common.toolbar.boardmanage.label | Management board | 板块管理 | 板塊管理 |
| 464 | common.barcode.port.used | COM1 port has been monitored by other programs! | COM1端口已经被其他程序监听! | COM1端口已經被其他程序監聽! |
| 465 | common.date.pattern | yyyy-M-d | yyyy年M月d日 | yyyy年M月d日 |
| 466 | common.selectPeople.excludechilddepartment | Exclude sub-sector | 不包含子部门 | 不包含子部門 |
| 467 | common.isignaturehtml.notSupported | Handwriting signature not supported in current browser, use IE instead please. | 当前浏览器不支持手写签章,请使用IE浏览器。 | 當前瀏覽器不支持手寫簽章,請使用IE瀏覽器。 |
| 468 | common.timeselected.pattern | HH:mm | HH:mm | HH:mm |
| 469 | common.data.pattern | hh : mm, M d, yyyy a | yyyy年M月d日 hh:mm a | yyyy年M月d日 hh:mm a |
| 470 | common.toolbar.sign.label | Signed in | 已签收 | 已簽收 |
| 471 | common.export.excel | Export Excel | 导出Excel | 導出Excel |
| 472 | common.view.range.lable | The view range | 查看范围 | 查看範圍 |
| 473 | common.description.label | Description | 描述 | 描述 |
| 474 | common.issuer.label | Sender | 发布者 | 發布者 |
| 475 | common.calendar.sep.label | September | 九月 | 九月 |
| 476 | common.toolbar.cancelIssue.label | Cancel Issue | 取消发布 | 取消發布 |
| 477 | common.remind.time.eight.hour | 8 Hours | 8小时 | 8小時 |
| 478 | common.page.title.GOV | Seeyon G6 Collaborative Management Software | 致远G6政务协同管理软件 | 致遠G6政務協同管理軟件 |
| 479 | common.public.info.approval | Approval Requests (Culture) | 文化建设审批 | 文化建設審批 |
| 480 | common.touchtouch.lasttips | It's the last one! | 已经是最后一张了! | 已經是最後壹張了! |
| 481 | common.my.plan | My Plan | 我的计划 | 我的計劃 |
| 482 | common.button.clear.label | Clear | 清空 | 清空 |
| 483 | common.toolbar.print.current.page.label | Print Current Page | 打印当前页 | 打印當前頁 |
| 484 | common.date.create.label | Time Created | 创建时间 | 創建時間 |
| 485 | common.system.property | system property | 系统属性 | 系統屬性 |
| 486 | common.calendar.q4.label | Q4 | 四季度 | 四季度 |
| 487 | common.separator.label | , | 、 | 、 |