fix #8131 - chinese translations
[Pman.Core] / Pman.Dialog.VerifyAccess.bjs
index 710bb80..a9fe97d 100644 (file)
@@ -7,7 +7,7 @@
  "modOrder" : "001",
  "strings" : {
   "e2c9d024b79dfb48b42a7807206c6aed" : "Verify New IP Access",
-  "d41d8cd98f00b204e9800998ecf8427e" : "",
+  "a12a3079e14ced46e69ba52b8a90b21a" : "IP",
   "f6039d44b29456b20f8f373155ae4973" : "Username",
   "004bf6c9a40003140292e97330236c53" : "Action",
   "5a787141d53b573ec9b86e900bfe0d79" : "Expire Date",
@@ -17,7 +17,7 @@
  "items" : [
   {
    "listeners" : {
-    "show" : "function (_self)\n{\n    var path = window.location.pathname.split('/');\n    \n    var authorized_key = path.pop();\n    \n    var id = path.pop();\n    \n    new Pman.Request({\n        url: baseURL + '/Core/VerifyAccess',\n        method : 'POST',\n        mask : 'Loading...',\n        params : {\n            id : id,\n            authorized_key : authorized_key,\n            _to_data : 1\n        }, \n        success : function(res) {\n        \n            _this.data = res.data;\n            \n            _this.form.setValues(_this.data);\n            \n            if(_this.data.status * 1 == 0){\n                _this.form.findField('status').reset();\n            }\n            \n            _this.form.clearInvalid();\n            \n            return;\n        },\n        failure: function(res) {\n            \n            _this.dialog.hide();\n            \n            Roo.bootstrap.MessageBox.alert('Error', res.errorMsg);\n            \n            return;\n       }\n    });\n}"
+    "show" : "function (_self)\n{\n    var path = window.location.pathname.split('/');\n    \n    var authorized_key = path.pop();\n    \n    var id = path.pop();\n    \n    new Pman.Request({\n        url: baseURL + '/Core/VerifyAccess',\n        method : 'POST',\n        mask : 'Loading...',\n        params : {\n            id : id,\n            authorized_key : authorized_key,\n            _to_data : 1\n        }, \n        success : function(res) {\n        \n            _this.data = res.data;\n            \n            if(_this.data.status != 0){\n                _this.dialog.hide();\n                Roo.bootstrap.MessageBox.alert('Notice', 'This IP has been verified [' + _this.data.ip + ']');\n                return;\n            }\n            \n            _this.form.setValues(_this.data);\n            \n            if(_this.data.status * 1 == 0){\n                _this.form.findField('status').reset();\n            }\n            \n            _this.form.findField('expire_dt').reset();\n            \n            _this.form.clearInvalid();\n            \n            return;\n        },\n        failure: function(res) {\n            \n            _this.dialog.hide();\n            \n            Roo.bootstrap.MessageBox.alert('Error', res.errorMsg);\n            \n            return;\n       }\n    });\n}"
    },
    "String cls" : "enable-overflow",
    "Boolean allow_close" : false,
@@ -28,7 +28,7 @@
     {
      "listeners" : {
       "actionfailed" : "function (_self, action)\n{\n    _this.dialog.el.unmask();\n    Roo.log(\"action failed\");\n    Roo.log(action);\n  \n    if(!action.result.errorMsg){\n        Roo.bootstrap.MessageBox.alert(\"Error\", \"Please contact system adminisrator\");\n    }\n   \n    var msg = action.result.errorMsg;\n   \n    if(msg.length >= 200){\n        msg = msg.substring(0,199) + '...'\n    }\n    \n    Roo.bootstrap.MessageBox.alert(\"Error\", msg);\n}",
-      "actioncomplete" : "function (_self, action)\n{\n    if (action.type == 'setdata') {\n        \n        return;\n    }\n    if (action.type == 'load') {\n        \n        return;\n    }\n    if (action.type =='submit') {\n        \n        _this.dialog.hide();\n        \n        return;\n    }\n    \n}",
+      "actioncomplete" : "function (_self, action)\n{\n    if (action.type == 'setdata') {\n        \n        return;\n    }\n    if (action.type == 'load') {\n        \n        return;\n    }\n    if (action.type =='submit') {\n        \n        _this.dialog.hide();\n        \n        Roo.bootstrap.MessageBox.alert('Notice', 'You have verified the IP [' + _this.data.ip + ']');\n        \n        return;\n    }\n    \n}",
       "render" : "function (_self,e)\n{\n    _this.form = _self;\n    \n}"
      },
      "$ string url" : "baseURL + '/Core/VerifyAccess'",
           }
          ]
         },
+        {
+         "xtype" : "Column",
+         "Number xs" : 12,
+         "$ xns" : "Roo.bootstrap",
+         "items" : [
+          {
+           "String name" : "ip",
+           "Boolean readOnly" : true,
+           "xtype" : "Input",
+           "string fieldLabel" : "IP",
+           "$ xns" : "Roo.bootstrap"
+          }
+         ]
+        },
         {
          "xtype" : "Column",
          "Number xs" : 12,
@@ -79,7 +93,7 @@
          "items" : [
           {
            "listeners" : {
-            "select" : "function (combo, record, index)\n{\n    \n}"
+            "select" : "function (combo, record, index)\n{\n    _this.expire_dt.allowBlank = true;\n    _this.expire_dt.el.hide();\n    \n    if(record.data.code == '-2'){\n        _this.expire_dt.allowBlank = false;\n        _this.expire_dt.el.show();\n    }\n}"
            },
            "Boolean allowBlank" : false,
            "Boolean selectOnFocus" : true,
          "items" : [
           {
            "listeners" : {
-            "render" : "function (_self)\n{\n    _this.expire_dt = this;\n    \n    this.setStartDate(new Date());\n    \n    this.el.setVisibilityMode(Roo.Element.DISPLAY);\n    \n    //this.el.hide();\n}"
+            "render" : "function (_self)\n{\n    _this.expire_dt = this;\n    \n    var d = new Date();\n    \n    d.setDate(d.getDate() - 1);\n\n    this.setStartDate(d);\n    \n    this.el.setVisibilityMode(Roo.Element.DISPLAY);\n    \n    this.el.hide();\n}"
            },
            "Boolean allowBlank" : false,
            "String name" : "expire_dt",
+           "String format" : "Y-m-d",
            "xtype" : "DateField",
            "string fieldLabel" : "Expire Date",
            "$ xns" : "Roo.bootstrap",
     },
     {
      "listeners" : {
-      "render" : "function (_self)\n{\n    _this.error_row = this;\n    \n    this.el.setVisibilityMode(Roo.Element.DISPLAY);\n    \n    this.el.hide();\n}"
-     },
-     "xtype" : "Row",
-     "$ xns" : "Roo.bootstrap",
-     "items" : [
-      {
-       "xtype" : "Column",
-       "Number xs" : 12,
-       "$ xns" : "Roo.bootstrap",
-       "items" : [
-        {
-         "listeners" : {
-          "render" : "function (_self)\n{\n    _this.text_el = _self;\n}"
-         },
-         "xtype" : "Element",
-         "$ xns" : "Roo.bootstrap",
-         "String html" : ""
-        }
-       ]
-      }
-     ]
-    },
-    {
-     "listeners" : {
-      "click" : "function (_self, e)\n{\n    if(!_this.form.isValid()){\n        return;\n    }\n    \n    _this.dialog.el.mask('Sending...');\n    _this.form.doAction('submit');\n    \n}"
+      "click" : "function (_self, e)\n{\n    if(!_this.form.isValid()){\n        return;\n    }\n\n    _this.dialog.el.mask('Sending...');\n    _this.form.doAction('submit');\n    \n}"
      },
      "String weight" : "primary",
      "xtype" : "Button",