Fix #6494 - translations code for reports
[Pman.Admin] / Pman.Tab.AdminTranslations.bjs
1 {
2  "name" : "Pman.Tab.AdminTranslations",
3  "parent" : "Pman.Tab.Admin",
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   "0b8d92bc19b720bb1065649535463409" : "Translations",
11   "69fd71b6f79260924a32a45850a13ab7" : "Translations (rescan this to update strings)",
12   "9d1ead73e678fa2f51a70a933b0bf017" : "Not Found",
13   "801ab24683a4a8c433c6eb40c48bcd9d" : "Download",
14   "6dd08874f83507e9c7b23f1a46b7fa7c" : "Translation",
15   "e3d388b2c43e5ba0905702620ae2abc1" : "Search for",
16   "e2f9d206562d8f5ea421ad51100f7151" : "Displaying petition_entry{0} - {1} of {2}",
17   "cd6ae20e52d83f601c5fa12b66f0f6d0" : "Rescan",
18   "4d1c8263ba1036754f8db14a98f9f006" : "Reload",
19   "f2a6c498fb90ee345d997f888fce3b18" : "Delete",
20   "03c2e7e41ffc181a4e84080b4710e81e" : "New",
21   "193cfc9be3b995831c6af2fea6650e60" : "Page",
22   "1bc29b36f623ba82aaf6724fd3b16718" : "md5"
23  },
24  "items" : [
25   {
26    "region" : "center",
27    "xtype" : "NestedLayoutPanel",
28    "title" : "Translations",
29    "$ xns" : "Roo",
30    "items" : [
31     {
32      "xtype" : "BorderLayout",
33      "$ xns" : "Roo",
34      "* prop" : "layout",
35      "items" : [
36       {
37        "xtype" : "LayoutRegion",
38        "width" : 450,
39        "$ xns" : "Roo",
40        "split" : true,
41        "* prop" : "west"
42       },
43       {
44        "xtype" : "LayoutRegion",
45        "$ xns" : "Roo",
46        "* prop" : "center"
47       },
48       {
49        "listeners" : {
50         "render" : "function (_self)\n{\n    _this.treepanel = _self;\n}"
51        },
52        "region" : "west",
53        "xtype" : "TreePanel",
54        "$ xns" : "Roo",
55        "items" : [
56         {
57          "xtype" : "Toolbar",
58          "$ xns" : "Roo",
59          "* prop" : "toolbar",
60          "items" : [
61           {
62            "listeners" : {
63             "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}"
64            },
65            "text" : "New",
66            "xtype" : "Button",
67            "$ xns" : "Roo.Toolbar"
68           },
69           {
70            "xtype" : "Separator",
71            "$ xns" : "Roo.Toolbar"
72           },
73           {
74            "listeners" : {
75             "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}"
76            },
77            "text" : "Delete",
78            "xtype" : "Button",
79            "$ xns" : "Roo.Toolbar"
80           },
81           {
82            "xtype" : "Separator",
83            "$ xns" : "Roo.Toolbar"
84           },
85           {
86            "listeners" : {
87             "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}"
88            },
89            "text" : "Rescan",
90            "xtype" : "Button",
91            "$ xns" : "Roo.Toolbar"
92           },
93           {
94            "xtype" : "Fill",
95            "$ xns" : "Roo.Toolbar"
96           },
97           {
98            "listeners" : {
99             "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    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    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}"
100            },
101            "text" : "Download",
102            "xtype" : "Button",
103            "$ xns" : "Roo.Toolbar"
104           },
105           {
106            "xtype" : "Separator",
107            "$ xns" : "Roo.Toolbar"
108           },
109           {
110            "listeners" : {
111             "click" : "function (_self, e)\n{\n    _this.treepanel.tree.getRootNode().reload();\n    \n}"
112            },
113            "text" : "Reload",
114            "xtype" : "Button",
115            "$ xns" : "Roo.Toolbar"
116           }
117          ]
118         },
119         {
120          "xtype" : "TreePanel",
121          "rootVisible" : true,
122          "$ xns" : "Roo.tree",
123          "containerScroll" : false,
124          "* prop" : "tree",
125          "items" : [
126           {
127            "listeners" : {
128             "loadexception" : "function (This, node, response)\n{\n    Roo.MessageBox.alert(\"Error\", \"Problem loading tree\");\n}",
129             "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}"
130            },
131            "$ baseParams" : "{ _tree : 1 }",
132            "xtype" : "TreeLoader",
133            "requestMethod" : "GET",
134            "$ xns" : "Roo.tree",
135            "* prop" : "loader",
136            "$ dataUrl" : "baseURL + '/Roo/Core_templatestr'"
137           },
138           {
139            "id" : "transtree",
140            "text" : "Translations (rescan this to update strings)",
141            "xtype" : "AsyncTreeNode",
142            "$ xns" : "Roo.tree",
143            "* prop" : "root"
144           },
145           {
146            "listeners" : {
147             "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}"
148            },
149            "xtype" : "DefaultSelectionModel",
150            "$ xns" : "Roo.tree",
151            "* prop" : "selModel"
152           }
153          ]
154         }
155        ]
156       },
157       {
158        "listeners" : {
159         "|activate" : "function() {\n    _this.panel = this;\n    if (_this.grid) {\n        _this.grid.footer.onClick('first');\n    }\n}"
160        },
161        "background" : false,
162        "region" : "center",
163        "fitToframe" : true,
164        "title" : "Page",
165        "xtype" : "GridPanel",
166        "fitContainer" : true,
167        "$ xns" : "Roo",
168        "tableName" : "Page",
169        "items" : [
170         {
171          "listeners" : {
172           "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}",
173           "|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",
174           "|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}",
175           "afteredit" : "function (e)\n{\n    e.record.commit();\n}"
176          },
177          "autoExpandColumn" : "txt",
178          "xtype" : "EditorGrid",
179          "loadMask" : true,
180          "clicksToEdit" : 1,
181          "$ xns" : "Roo.grid",
182          "* prop" : "grid",
183          "items" : [
184           {
185            "xtype" : "Toolbar",
186            "$ xns" : "Roo",
187            "* prop" : "toolbar",
188            "items" : [
189             {
190              "listeners" : {
191               "specialkey" : "function (_self, e)\n{\n_this.grid.footer.onClick('first');\n}",
192               "render" : "function (_self)\n{\n    _this.searchBox = this;\n}"
193              },
194              "xtype" : "TextField",
195              "String emptyText" : "Search for",
196              "$ xns" : "Roo.form"
197             },
198             {
199              "listeners" : {
200               "|click" : "function (_self, e)\n{\n_this.grid.footer.onClick('first');\n}"
201              },
202              "xtype" : "Button",
203              "cls" : "x-btn-icon",
204              "$ icon" : "rootURL + '/Pman/templates/images/search.gif'",
205              "$ xns" : "Roo.Toolbar"
206             },
207             {
208              "listeners" : {
209               "|click" : "function (_self, e)\n{\n    _this.searchBox.setValue('');\n    \n    _this.grid.footer.onClick('first');\n}"
210              },
211              "xtype" : "Button",
212              "cls" : "x-btn-icon",
213              "$ icon" : "rootURL + '/Pman/templates/images/edit-clear.gif'",
214              "$ xns" : "Roo.Toolbar"
215             }
216            ]
217           },
218           {
219            "pageSize" : 100,
220            "xtype" : "PagingToolbar",
221            "emptyMsg" : "Not Found",
222            "$ xns" : "Roo",
223            "displayMsg" : "Displaying petition_entry{0} - {1} of {2}",
224            "displayInfo" : true,
225            "* prop" : "footer"
226           },
227           {
228            "listeners" : {
229             "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}",
230             "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    o.params.template_id = sn.attributes.id * 1;\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    }\n    \n}\n\n\n"
231            },
232            "xtype" : "Store",
233            "remoteSort" : true,
234            "$ sortInfo" : "{ field : 'src_id_txt', direction: 'ASC' }",
235            "$ xns" : "Roo.data",
236            "* prop" : "dataSource",
237            "items" : [
238             {
239              "$ url" : "baseURL + '/Roo/Core_templatestr.php'",
240              "xtype" : "HttpProxy",
241              "method" : "GET",
242              "$ xns" : "Roo.data",
243              "* prop" : "proxy"
244             },
245             {
246              "id" : "id",
247              "root" : "data",
248              "xtype" : "JsonReader",
249              "$ fields" : "[\n    {\n        'name': 'id',\n        'type': 'int'\n    },\n    {\n        'name': 'shortname',\n        'type': 'string'\n    }\n   \n]",
250              "$ xns" : "Roo.data",
251              "* prop" : "reader",
252              "totalProperty" : "total"
253             }
254            ]
255           },
256           {
257            "xtype" : "ColumnModel",
258            "width" : 300,
259            "header" : "Original",
260            "$ 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}",
261            "$ xns" : "Roo.grid",
262            "* prop" : "cm[]",
263            "dataIndex" : "src_id_txt"
264           },
265           {
266            "xtype" : "ColumnModel",
267            "width" : 200,
268            "header" : "Translation",
269            "$ 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}",
270            "$ xns" : "Roo.grid",
271            "* prop" : "cm[]",
272            "dataIndex" : "txt",
273            "items" : [
274             {
275              "xtype" : "GridEditor",
276              "$ xns" : "Roo.grid",
277              "* prop" : "editor",
278              "items" : [
279               {
280                "xtype" : "TextField",
281                "allowBlank" : false,
282                "$ xns" : "Roo.form",
283                "* prop" : "field"
284               }
285              ]
286             }
287            ]
288           },
289           {
290            "xtype" : "ColumnModel",
291            "width" : 250,
292            "header" : "md5",
293            "$ renderer" : "function(v,x,r) \n{\n    return v ? v : '';\n\n}",
294            "$ xns" : "Roo.grid",
295            "* prop" : "cm[]",
296            "Boolean hidden" : true,
297            "dataIndex" : "src_id_mdsum"
298           }
299          ]
300         }
301        ]
302       }
303      ]
304     }
305    ]
306   }
307  ]
308 }