Replace own string export in pmd with generic one.

This commit is contained in:
Michal Čihař
2010-04-19 14:11:14 +02:00
parent 81d20f15b3
commit d5da2590b5
3 changed files with 22 additions and 15 deletions

View File

@@ -104,17 +104,17 @@ function PrintXML()
//xmldoc.getElementsByTagName('root')[0].getAttribute("act")
if (root.getAttribute('act') == 'save_pos') {
layer_alert(strLang[root.getAttribute('return')]);
layer_alert(PMA_messages[root.getAttribute('return')]);
}
if (root.getAttribute('act') == 'relation_upd') {
layer_alert(strLang[root.getAttribute('return')]);
layer_alert(PMA_messages[root.getAttribute('return')]);
if (root.getAttribute('b') == '1') {
contr.splice(root.getAttribute('K'), 1);
Re_load();
}
}
if (root.getAttribute('act') == 'relation_new') {
layer_alert(strLang[root.getAttribute('return')]);
layer_alert(PMA_messages[root.getAttribute('return')]);
if (root.getAttribute('b') == '1') {
var i = contr.length;
var t1 = root.getAttribute('DB1') + '.' + root.getAttribute('T1');