diff --git a/extensions/ohif-i18n/package.json b/extensions/ohif-i18n/package.json index ebfe2ba0f..05775be27 100644 --- a/extensions/ohif-i18n/package.json +++ b/extensions/ohif-i18n/package.json @@ -1,6 +1,6 @@ { "name": "@ohif/i18n", - "version": "0.2.4", + "version": "0.2.5", "description": "OHIF extension for internationalization", "author": "OHIF", "license": "MIT", diff --git a/extensions/ohif-i18n/src/locales/zh/Common.json b/extensions/ohif-i18n/src/locales/zh/Common.json index 6119ed2d9..896cf558e 100644 --- a/extensions/ohif-i18n/src/locales/zh/Common.json +++ b/extensions/ohif-i18n/src/locales/zh/Common.json @@ -1,10 +1,15 @@ { "Image": "图像", "Layout": "显示窗口", + "Measurements": "测量值", "More": "更多", "Next": "下一个", "Play": "播放", "Previous": "上一个", "Reset": "复原", - "Stop": "停止" + "RowsPerPage": "每页条数", + "Series": "序列", + "Show": "显示", + "Stop": "停止", + "StudyDate": "时间" } \ No newline at end of file diff --git a/extensions/ohif-i18n/src/locales/zh/MeasurementTable.json b/extensions/ohif-i18n/src/locales/zh/MeasurementTable.json new file mode 100644 index 000000000..3ff705195 --- /dev/null +++ b/extensions/ohif-i18n/src/locales/zh/MeasurementTable.json @@ -0,0 +1,9 @@ +{ + "Criteria nonconformities": "不合标准", + "Delete": "删除", + "Description": "描述", + "MAX": "最大", + "NonTargets": "非靶向", + "Relabel": "重新标记", + "Targets": "靶向" +} \ No newline at end of file diff --git a/extensions/ohif-i18n/src/locales/zh/StudyList.json b/extensions/ohif-i18n/src/locales/zh/StudyList.json new file mode 100644 index 000000000..1c5888c7f --- /dev/null +++ b/extensions/ohif-i18n/src/locales/zh/StudyList.json @@ -0,0 +1,8 @@ +{ + "Empty": "无", + "Modality": "成像设备", + "PatientName": "患者姓名", + "StudyDate": "检查日期", + "StudyDescription": "描述", + "StudyList": "检查列表" +} \ No newline at end of file diff --git a/extensions/ohif-i18n/src/locales/zh/index.js b/extensions/ohif-i18n/src/locales/zh/index.js index a008e5a7a..83f9f21b8 100644 --- a/extensions/ohif-i18n/src/locales/zh/index.js +++ b/extensions/ohif-i18n/src/locales/zh/index.js @@ -2,6 +2,8 @@ import Buttons from "./Buttons.json"; import CineDialog from "./CineDialog.json"; import Common from "./Common.json"; import Header from "./Header.json"; +import MeasurementTable from "./MeasurementTable.json"; +import StudyList from "./StudyList.json"; import UserPreferencesModal from "./UserPreferencesModal.json"; export default { @@ -10,6 +12,8 @@ export default { CineDialog, Common, Header, + MeasurementTable, + StudyList, UserPreferencesModal, } }; \ No newline at end of file