Bläddra i källkod

特性自动标记修改警示语修改,注释修改

张少一 1 vecka sedan
förälder
incheckning
a4c5188a23

+ 1 - 1
src/locales/lang/en-US/globalMessage.js

@@ -89,7 +89,7 @@ export default {
   'global-message.warn.sure-delete': 'Are you sure you want to delete?',
   'global-message.warn.change-current-default-option': 'Are you sure you want to change the current default option?',
   'global-message.warn.clean-all-references': 'This operation will clear all reference relationships for the original default option. Are you sure you want to continue?',
-  'global-message.warn.clean-all-configuration': 'This operation will clear all configurations. Are you sure you want to continue?',
+  'global-message.warn.modify-configuration': 'This operation will modify the original configuration, do you want to continue?',
   'global-message.warn.can-not-all-choose-myself': 'Cannot select yourself!',
   'global-message.remind': 'Reminder',
   'global-message.remind.append.measure': 'Are you sure you want to add a {0}?',

+ 1 - 1
src/locales/lang/zh-CN/globalMessage.js

@@ -89,7 +89,7 @@ export default {
   'global-message.warn.sure-delete': '你确定删除吗?',
   'global-message.warn.change-current-default-option': '确定要更改当前默认选项吗?',
   'global-message.warn.clean-all-references': '此操作将导致原默认选项的引用关系全部清除,要继续吗?',
-  'global-message.warn.clean-all-configuration': '此操作将导致原先的配置全部清除,要继续吗?',
+  'global-message.warn.modify-configuration': '此操作将修改原先的配置,要继续吗?',
   'global-message.warn.can-not-all-choose-myself': '不能选中自己!',
   'global-message.remind': '提醒',
   'global-message.remind.append.measure': '确定要追加一个{0}吗?',

+ 1 - 1
src/locales/lang/zh-TW/globalMessage.js

@@ -89,7 +89,7 @@ export default {
   'global-message.warn.sure-delete': '你確定刪除嗎?',
   'global-message.warn.change-current-default-option': '確定要更改當前默認選項嗎?',
   'global-message.warn.clean-all-references': '此操作將導致原默認選項的引用關系全部清除,要继续嗎?',
-  'global-message.warn.clean-all-configuration': '此操作將導致原先的配置全部清除,要继续嗎?',
+  'global-message.warn.modify-configuration': '此操作將修改原先的配置,要繼續嗎?',
   'global-message.warn.can-not-all-choose-myself': '不能選中自己!',
   'global-message.remind': '提醒',
   'global-message.remind.append.measure': '確定要追加一個{0}嗎?',

+ 2 - 2
src/views/fmeaTree/components/TopBtnModal/configuration/PropertyTagged.vue

@@ -213,7 +213,7 @@ export default {
       // 初始化右侧树
       this.initRightTree();
     },
-    //改为手动配置删除数据
+    // 是否开启自动标记修改删除数据
     deleteRdfm() {
       let _that = this;
       var data = {
@@ -222,7 +222,7 @@ export default {
       };
       _that.$confirm({
         title: this.$t('global-message.warn'),
-        content: this.$t('global-message.warn.clean-all-configuration'),
+        content: this.$t('global-message.warn.modify-configuration'),
         icon: "aaoopqa", //图标,不想用就随便写一个
         okText: this.$t('global-btn.ok'),
         cancelText: this.$t('global-btn.cancel'),