Remove Chinese comments 25/56425/1
authorHuabingZhao <zhao.huabing@zte.com.cn>
Sat, 14 Jul 2018 02:33:24 +0000 (10:33 +0800)
committerHuabingZhao <zhao.huabing@zte.com.cn>
Sat, 14 Jul 2018 02:33:30 +0000 (10:33 +0800)
Issue-ID: MSB-212
Change-Id: Ida8c388ca29fb73aa08d0e6d1e6140b0dbb5c315
Signed-off-by: HuabingZhao <zhao.huabing@zte.com.cn>
apiroute/apiroute-service/src/main/resources/iui-route/i18n/loadi18nApp_iui-route_view.js

index f1b0277..a85a09a 100644 (file)
@@ -17,16 +17,16 @@ function loadPropertiesSideMenu(lang, propertiesFileNamePrefix, propertiesFilePa
     jQuery.i18n.properties({
         // language:lang,
         name:propertiesFileNamePrefix,
-        path:propertiesFilePath, // 资源文件路径
-        mode:'map', // 用 Map 的方式使用资源文件中的值
-        callback: function() {// 加载成功后设置显示内容
+        path:propertiesFilePath, 
+        mode:'map', 
+        callback: function() {
         
             var i18nItems = $('[name_i18n=org_onap_msb_route_ui_i18n]');
             for(var i=0;i<i18nItems.length;i++){
                 var $item = $(i18nItems.eq(i));
                 var itemId = $item.attr('id');
                 var itemTitle = $item.attr('title');
-                /** id存在时元素内容需要国际化,title存在时元素title需要国际化 */
+                
                 if(typeof($item.attr("title")) == "string"){
                     $item.attr("title", ($.i18n.prop(itemTitle)));
                 }