// Fix incorrect translation strings in tpl

This commit is contained in:
tDidierjean
2011-11-23 21:33:13 +00:00
parent cb1d4ba6b8
commit 91f238a2cd
10 changed files with 23 additions and 21 deletions
@@ -26,8 +26,9 @@
<script>
function confirmProductAttached(productList)
{
var confirm_text = {l s='This attachment is used by the following products:'}
if (confirm('{$confirm}'))
return confirm('{l s="This attachment is used by the following products:"}' + {$product_list[$id]});
return confirm(confirm_text + {$product_list[$id]});
return false;
}
</script>