sync
[Pman.Admin] / Pman.Tab.AdminTranslations.bjs
1 {
2  "name" : "Pman.Tab.AdminTranslations",
3  "parent" : "Pman.Tab.AdminTranslationsInt",
4  "title" : "Admin - Translations",
5  "path" : "/home/alan/gitlive/Pman.Admin/Pman.Tab.AdminTranslations.bjs",
6  "permname" : "Admin.Translations",
7  "modOrder" : "950",
8  "strings" : {
9   "0a52da7a03a6de3beefe54f8c03ad80d" : "Original",
10   "69fd71b6f79260924a32a45850a13ab7" : "Translations (rescan this to update strings)",
11   "9d1ead73e678fa2f51a70a933b0bf017" : "Not Found",
12   "801ab24683a4a8c433c6eb40c48bcd9d" : "Download",
13   "6dd08874f83507e9c7b23f1a46b7fa7c" : "Translation",
14   "07a1d316d1065473f290c3c2b72a80f3" : "Application Words",
15   "e3d388b2c43e5ba0905702620ae2abc1" : "Search for",
16   "e2f9d206562d8f5ea421ad51100f7151" : "Displaying petition_entry{0} - {1} of {2}",
17   "cd6ae20e52d83f601c5fa12b66f0f6d0" : "Rescan",
18   "91412465ea9169dfd901dd5e7c96dd99" : "Upload",
19   "4d1c8263ba1036754f8db14a98f9f006" : "Reload",
20   "f2a6c498fb90ee345d997f888fce3b18" : "Delete",
21   "03c2e7e41ffc181a4e84080b4710e81e" : "New",
22   "193cfc9be3b995831c6af2fea6650e60" : "Page",
23   "1bc29b36f623ba82aaf6724fd3b16718" : "md5"
24  },
25  "items" : [
26   {
27    "region" : "center",
28    "title" : "Application Words",
29    "xtype" : "NestedLayoutPanel",
30    "$ xns" : "Roo",
31    "items" : [
32     {
33      "xtype" : "BorderLayout",
34      "$ xns" : "Roo",
35      "* prop" : "layout",
36      "items" : [
37       {
38        "xtype" : "LayoutRegion",
39        "$ xns" : "Roo",
40        "width" : 450,
41        "split" : true,
42        "* prop" : "west"
43       },
44       {
45        "xtype" : "LayoutRegion",
46        "$ xns" : "Roo",
47        "* prop" : "center"
48       },
49       {
50        "listeners" : {
51         "render" : "function (_self)\n{\n    _this.treepanel = _self;\n}"
52        },
53        "region" : "west",
54        "xtype" : "TreePanel",
55        "$ xns" : "Roo",
56        "items" : [
57         {
58          "xtype" : "Toolbar",
59          "$ xns" : "Roo",
60          "* prop" : "toolbar",
61          "items" : [
62           {
63            "listeners" : {
64             "click" : "function (_self, e)\n{\n    Pman.Dialog.AdminLanguagePick.show( {  }, function(lang) {\n        \n        new Pman.Request({\n            url : baseURL + '/Roo/core_templatestr',\n            method : 'POST',\n            params : {\n                _rescan : lang\n            }, \n            success : function()\n            {\n                _this.treepanel.tree.getRootNode().reload();\n            }\n        });\n    \n    });\n    \n}"
65            },
66            "text" : "New",
67            "xtype" : "Button",
68            "$ xns" : "Roo.Toolbar"
69           },
70           {
71            "xtype" : "Separator",
72            "$ xns" : "Roo.Toolbar"
73           },
74           {
75            "listeners" : {
76             "click" : "function (_self, e)\n{\n    var tree = _this.treepanel.tree;\n    var sn  = tree.getSelectionModel().getSelectedNode();\n\n    if (!sn || typeof(sn.attributes.language) == 'undefined' || !sn.attributes.language) {\n        Roo.MessageBox.alert(\"Error\", \"Select a language\");\n        return;\n    }\n\n     Roo.MessageBox.confirm(\"Confirm\", \"Are sure you want to delete the language\", function (v){\n            if (v != 'yes') {\n                return;\n            }\n            Roo.MessageBox.alert(\"Not yet\", \"not done yet\");\n            return;\n            \n            \n            \n            \n        });\n}"
77            },
78            "text" : "Delete",
79            "xtype" : "Button",
80            "$ xns" : "Roo.Toolbar"
81           },
82           {
83            "xtype" : "Separator",
84            "$ xns" : "Roo.Toolbar"
85           },
86           {
87            "listeners" : {
88             "click" : "function (_self, e)\n{\n    var tree = _this.treepanel.tree;\n    Roo.log(tree);\n    var sn  = tree.getSelectionModel().getSelectedNode();\n\n    if (!sn) {\n        Roo.MessageBox.alert(\"Error\", \"Select a node\");\n        return;\n    }\n    \n    var syncTemplate = function(){\n        new Pman.Request({\n            url : baseURL + '/Admin/UpdateBjsTemplates',\n            method : 'GET',\n            mask : 'Processing...',\n            timeout : 9000000,\n            success : function()\n            {\n                _this.treepanel.tree.getRootNode().reload();\n            }\n        });\n    \n    };\n    \n    \n    var syncLanguage = function(){\n        new Pman.Request({\n            url : baseURL + '/Roo/Core_templatestr',\n            method : 'POST',\n            mask : 'Processing...',\n            params : {\n                _rescan : sn.attributes.id.split(':')[1]\n            }, \n            success : function()\n            {\n                _this.treepanel.tree.getRootNode().reload();\n            }\n        });\n    };\n    \n    if(typeof(sn.isRoot) != 'undefined' && sn.isRoot){\n        syncTemplate();\n        return;\n    }\n    \n    if(typeof(sn.attributes.language) != 'undefined' && sn.attributes.language){\n        syncLanguage();\n        return;\n    }\n    \n    \n    \n    \n    \n}"
89            },
90            "text" : "Rescan",
91            "xtype" : "Button",
92            "$ xns" : "Roo.Toolbar"
93           },
94           {
95            "xtype" : "Fill",
96            "$ xns" : "Roo.Toolbar"
97           },
98           {
99            "listeners" : {
100             "click" : "function (_self, e)\n{\n    \n    \n    Pman.Dialog.Image.show({\n       _url : baseURL + '/Admin/Import/Core_templatestr' \n     \n    }, function() {\n         _this.treepanel.tree.getRootNode().reload();\n    });\n    \n    \n    \n}"
101            },
102            "text" : "Upload",
103            "xtype" : "Button",
104            "$ xns" : "Roo.Toolbar"
105           },
106           {
107            "xtype" : "Fill",
108            "$ xns" : "Roo.Toolbar"
109           },
110           {
111            "listeners" : {
112             "click" : "function (_self, e)\n{\n    var tree = _this.treepanel.tree;\n\n    var sn  = tree.getSelectionModel().getSelectedNode();\n    \n    p = {\n        csvCols : 'src_id_mdsum,template_id_view_name,template_id_template,src_id_txt,lang,txt',\n        csvTitles : 'Code,Module,Template,Original,Language,Translation',\n        limit : 9999,\n        sort: 'template_id_view_name,template_id_template,src_id_txt',\n        dir: 'ASC'\n    };\n    if (!sn ||  sn.id == 'transtree') {\n        Roo.MessageBox.alert(\"Error\", \"Select language, module or page\");\n        return;\n    }\n    if (typeof(sn.id) == 'number') {\n        p.template_id = sn.id;\n\n    }\n    \n    \n    if (sn.id.match(/^table:/)) {\n        var sns = sn.id.split(':');\n        p.lang = sns[1];\n        p.on_table = sns[2];\n        p.csvCols = 'src_id_mdsum,on_table,on_id,on_col,src_id_txt,lang,txt';\n        p.csvTitles = 'Code,Table,Table id,Column,Language,Translation';\n    }\n    \n    if (sn.id.match(/^view:/)) {\n        var sns = sn.id.split(':');\n        p.lang = sns[1];\n        p.template_id_view_name = sns[2];\n        \n    }\n    if (sn.id.match(/^lang:/)) {\n        var sns = sn.id.split(':');\n        p.lang = sns[1];\n\n   }\n    // transtree\n    // view: {lang} : {view_name}\n    // lang:\n     \n    new Pman.Download({\n        url : baseURL + '/Roo/Core_templatestr',\n        params : p,\n        method : 'GET' \n    });\n    \n    \n    \n    \n    \n}"
113            },
114            "text" : "Download",
115            "xtype" : "Button",
116            "$ xns" : "Roo.Toolbar"
117           },
118           {
119            "xtype" : "Separator",
120            "$ xns" : "Roo.Toolbar"
121           },
122           {
123            "listeners" : {
124             "click" : "function (_self, e)\n{\n    _this.treepanel.tree.getRootNode().reload();\n    \n}"
125            },
126            "text" : "Reload",
127            "xtype" : "Button",
128            "$ xns" : "Roo.Toolbar"
129           }
130          ]
131         },
132         {
133          "xtype" : "TreePanel",
134          "rootVisible" : true,
135          "$ xns" : "Roo.tree",
136          "containerScroll" : false,
137          "* prop" : "tree",
138          "items" : [
139           {
140            "listeners" : {
141             "loadexception" : "function (This, node, response)\n{\n    Roo.MessageBox.alert(\"Error\", \"Problem loading tree\");\n}",
142             "beforeload" : "function (This, node, callback)\n{\n    // set some params.\n    Roo.log(node);\n    this.baseParams._tree = 1;\n    \n    //this.baseParams.category = node.attributes.category;\n}"
143            },
144            "$ baseParams" : "{ _tree : 1 }",
145            "xtype" : "TreeLoader",
146            "requestMethod" : "GET",
147            "$ xns" : "Roo.tree",
148            "* prop" : "loader",
149            "$ dataUrl" : "baseURL + '/Roo/Core_templatestr'"
150           },
151           {
152            "id" : "transtree",
153            "text" : "Translations (rescan this to update strings)",
154            "xtype" : "AsyncTreeNode",
155            "$ xns" : "Roo.tree",
156            "* prop" : "root"
157           },
158           {
159            "listeners" : {
160             "selectionchange" : "function (_self, node)\n{\n    Roo.log(node);\n    \n    //if (node.id.split('/').length < 2) {\n    //    return;\n   // }\n    (function() {\n        _this.grid.footer.onClick('first');\n    }).defer(100);\n    \n}"
161            },
162            "xtype" : "DefaultSelectionModel",
163            "$ xns" : "Roo.tree",
164            "* prop" : "selModel"
165           }
166          ]
167         }
168        ]
169       },
170       {
171        "listeners" : {
172         "|activate" : "function() {\n    _this.panel = this;\n    if (_this.grid) {\n        _this.grid.footer.onClick('first');\n    }\n}"
173        },
174        "background" : false,
175        "region" : "center",
176        "fitToframe" : true,
177        "title" : "Page",
178        "xtype" : "GridPanel",
179        "fitContainer" : true,
180        "$ xns" : "Roo",
181        "tableName" : "Page",
182        "items" : [
183         {
184          "listeners" : {
185           "beforeedit" : "function (e)\n{   \n    /*if (e.record.data.src_id_txt.indexOf('<') > -1) {\n       // console.log(\"HTML EDITOR!!\");\n        Pman.Dialog.CmsTranslateEditor.show(e.record);\n        return false;\n    }*/\n    \n    var str=e.record.data.src_id_txt;\n    var patt=/{(.*?)}/g;\n    \n    Roo.log(str.length);\n    \n    \n    if(patt.test(str)){\n        e.cancel = true;\n        Pman.Dialog.AdminTranslateTemplates.show(e.record.data, function(v){\n            Roo.log(v);\n            e.value = v.txt;\n            e.record.set('txt', v.txt);\n            e.record.commit();\n        });\n        /*\n        Roo.MessageBox.prompt('WARNING', 'This text is with {TEMPLATE VARIABLE}, PLEASE BE CAREFUL EDITING. What\\'s change? '+str, function(btn, text){\n            if (btn == 'ok'){\n                e.value = text;\n                e.record.set('txt', text);\n                e.record.commit();\n            }\n        });*/\n        return;\n    }\n    \n    if(str.length > 150){\n        e.cancel = true;\n        Pman.Dialog.AdminTranslateTemplates.show(e.record.data, function(v){\n            e.value = v.txt;\n            e.record.set('txt', v.txt);\n            e.record.commit();\n        });\n        /*\n        Roo.MessageBox.prompt('WARNING', 'This text is with {TEMPLATE VARIABLE}, PLEASE BE CAREFUL EDITING. What\\'s change? '+str, function(btn, text){\n            if (btn == 'ok'){\n                e.value = text;\n                e.record.set('txt', text);\n                e.record.commit();\n            }\n        });*/\n        return;\n    }\n    \n\n    if (e.record.data.txt.replace(/\\s+/, '').length) {\n        return true;\n    }\n    \n    var tl = _this.treepanel.tree.getSelectionModel().getSelectedNode().parentNode.attributes.id;\n    // mapping?\n    \n    tl = (tl == 'zh_HK') ? 'zh-TW' : tl;\n    \n    if (tl == 'en' && !e.value.length) {\n\n        e.value = e.record.data.src_id_txt;\n        e.record.set('txt', e.record.data.src_id_txt);\n        return true;\n    }\n    \n    Pman.GoogleTranslate(e.record.data.src_id_txt, \"en\", tl, function(result) {\n       // Roo.log(result);\n        _this.grid.activeEditor.setValue(result);\n        //console.log(result.translation);\n    });\n    \n\n    \n    return true;\n}",
186           "|rowdblclick" : "function (_self, rowIndex, e)\n{\n    if (!_this.dialog) {\n        return;\n    }\n    _this.dialog.show( this.getDataSource().getAt(rowIndex).data, function() {\n        _this.grid.footer.onClick('first');\n    }); \n}\n",
187           "|render" : "function() \n{\n    _this.grid = this; \n    //_this.dialog = Pman.Dialog.FILL_IN\n    if (_this.panel.active) {\n        this.footer.onClick('first');\n      // this.ds.onc.onClick('first');\n    }\n}",
188           "afteredit" : "function (e)\n{\n    e.record.commit();\n}"
189          },
190          "autoExpandColumn" : "txt",
191          "xtype" : "EditorGrid",
192          "loadMask" : true,
193          "clicksToEdit" : 1,
194          "$ xns" : "Roo.grid",
195          "* prop" : "grid",
196          "items" : [
197           {
198            "xtype" : "Toolbar",
199            "$ xns" : "Roo",
200            "* prop" : "toolbar",
201            "items" : [
202             {
203              "listeners" : {
204               "specialkey" : "function (_self, e)\n{\n_this.grid.footer.onClick('first');\n}",
205               "render" : "function (_self)\n{\n    _this.searchBox = this;\n}"
206              },
207              "xtype" : "TextField",
208              "String emptyText" : "Search for",
209              "$ xns" : "Roo.form"
210             },
211             {
212              "listeners" : {
213               "|click" : "function (_self, e)\n{\n_this.grid.footer.onClick('first');\n}"
214              },
215              "xtype" : "Button",
216              "cls" : "x-btn-icon",
217              "$ icon" : "rootURL + '/Pman/templates/images/search.gif'",
218              "$ xns" : "Roo.Toolbar"
219             },
220             {
221              "listeners" : {
222               "|click" : "function (_self, e)\n{\n    _this.searchBox.setValue('');\n    \n    _this.grid.footer.onClick('first');\n}"
223              },
224              "xtype" : "Button",
225              "cls" : "x-btn-icon",
226              "$ icon" : "rootURL + '/Pman/templates/images/edit-clear.gif'",
227              "$ xns" : "Roo.Toolbar"
228             }
229            ]
230           },
231           {
232            "pageSize" : 100,
233            "xtype" : "PagingToolbar",
234            "emptyMsg" : "Not Found",
235            "$ xns" : "Roo",
236            "displayMsg" : "Displaying petition_entry{0} - {1} of {2}",
237            "displayInfo" : true,
238            "* prop" : "footer"
239           },
240           {
241            "listeners" : {
242             "update" : "function (_self, rec, operation)\n{\n    Roo.log(operation);\n    \n    if (operation != 'commit') {\n        return;\n    }\n    \n\n    _this.grid.getView().el.mask(\"Saving\");\n    new Pman.Request({\n        url : baseURL + '/Roo/Core_templatestr',\n        method: 'POST',\n        params : {\n            id : rec.get('id'),\n            txt : rec.get('txt')\n        },\n        success : function()\n        {\n            _this.grid.getView().el.unmask();\n                //g.getDataSource().reload();\n        },\n        failure : function()\n        {\n            _this.grid.getView().el.unmask();\n            Roo.MessageBox.alert(\"Error\", \"There was a problem saving the data - try reloading\");\n         }\n            \n    });\n    \n}",
243             "beforeload" : "function (_self, o)\n{\n   \n    var sn = _this.treepanel.tree.getSelectionModel().getSelectedNode();\n\n    if (!sn || typeof(sn.attributes) == 'undefined' || typeof(sn.attributes.leaf) == 'undefined' || !sn.attributes.leaf) { \n        _this.grid.ds.removeAll();\n        return false;\n    }\n\n    o.params = o.params || {};\n    o.params.lang =  sn.parentNode.attributes.id.split(':')[1];\n   \n    o.params.active = 1;\n    o.params['!src_id'] = 0;\n    \n    if (_this.searchBox && _this.searchBox.getValue().length) { \n        o.params['_search_txt'] = _this.searchBox.getValue();\n    }\n    \n    \n    if(sn.attributes.on_table){\n        o.params.on_table = sn.attributes.on_table;\n    } else {\n         o.params.template_id = sn.attributes.id * 1;\n     }\n    \n}\n\n\n"
244            },
245            "xtype" : "Store",
246            "remoteSort" : true,
247            "$ sortInfo" : "{ field : 'src_id_txt', direction: 'ASC' }",
248            "$ xns" : "Roo.data",
249            "* prop" : "dataSource",
250            "items" : [
251             {
252              "$ url" : "baseURL + '/Roo/Core_templatestr.php'",
253              "method" : "GET",
254              "xtype" : "HttpProxy",
255              "$ xns" : "Roo.data",
256              "* prop" : "proxy"
257             },
258             {
259              "id" : "id",
260              "root" : "data",
261              "xtype" : "JsonReader",
262              "$ fields" : "[\n    {\n        'name': 'id',\n        'type': 'int'\n    },\n    {\n        'name': 'shortname',\n        'type': 'string'\n    }\n   \n]",
263              "$ xns" : "Roo.data",
264              "* prop" : "reader",
265              "totalProperty" : "total"
266             }
267            ]
268           },
269           {
270            "xtype" : "ColumnModel",
271            "header" : "Original",
272            "width" : 300,
273            "$ renderer" : "function(v,x,r) \n{\n    var c = '#666';\n    if (r.data.updated  < r.data.src_id_updated) {\n        c = 'red';\n    }\n    \n    return String.format('<div style=\"color:'+c+'\";>{0}</div>', v)\n\n}",
274            "$ xns" : "Roo.grid",
275            "* prop" : "cm[]",
276            "dataIndex" : "src_id_txt"
277           },
278           {
279            "xtype" : "ColumnModel",
280            "header" : "Translation",
281            "width" : 200,
282            "$ renderer" : "function(v,x,r) \n{ \n\n    var c = '#666';\n    if (r.data.updated  < r.data.src_id_updated) {\n        c = 'red';\n    }\n    \n    return String.format('<div style=\"color:'+c+'\";>{0}</div>', v)\n\n}",
283            "$ xns" : "Roo.grid",
284            "* prop" : "cm[]",
285            "dataIndex" : "txt",
286            "items" : [
287             {
288              "xtype" : "GridEditor",
289              "$ xns" : "Roo.grid",
290              "* prop" : "editor",
291              "items" : [
292               {
293                "xtype" : "TextField",
294                "allowBlank" : false,
295                "$ xns" : "Roo.form",
296                "* prop" : "field"
297               }
298              ]
299             }
300            ]
301           },
302           {
303            "xtype" : "ColumnModel",
304            "header" : "md5",
305            "width" : 250,
306            "$ renderer" : "function(v,x,r) \n{\n    return v ? v : '';\n\n}",
307            "$ xns" : "Roo.grid",
308            "* prop" : "cm[]",
309            "Boolean hidden" : true,
310            "dataIndex" : "src_id_mdsum"
311           }
312          ]
313         }
314        ]
315       }
316      ]
317     }
318    ]
319   }
320  ]
321 }