[IMP]add placeholder attribute for translation in qweb.

bzr revid: vme@tinyerp.com-20120615071106-hagp49jwh9ntz5z4
This commit is contained in:
Vidhin Mehta (OpenERP) 2012-06-15 12:41:06 +05:30
parent 2472f1919e
commit 7fc06fc81f
2 changed files with 3 additions and 3 deletions

View File

@ -497,7 +497,7 @@ instance.web.qweb.preprocess_node = function() {
break;
case 1:
// Element
var attr, attrs = ['label', 'title', 'alt'];
var attr, attrs = ['label', 'title', 'alt', 'placeholder'];
while (attr = attrs.pop()) {
if (this.attributes[attr]) {
this.attributes[attr] = instance.web._t(this.attributes[attr]);

View File

@ -1391,7 +1391,7 @@
<div class="oe_searchview_custom">
<h4>Save current filter</h4>
<form>
<p><input id="oe_searchview_custom_input" t-att-placeholder="_t('Filter name')"/></p>
<p><input id="oe_searchview_custom_input" t-att-placeholder="Filter name"/></p>
<p><input id="oe_searchview_custom_public" type="checkbox"/>
<label for="oe_searchview_custom_public">Share with all users</label></p>
<button>Save</button>
@ -1711,7 +1711,7 @@
</tr>
<tr>
<td t-foreach="records[0]" t-as="column">
<input class="sel_fields" t-att-placeholder="_t('--- Don't Import ---')"/><span class="oe-m2o-drop-down-button">
<input class="sel_fields" t-att-placeholder="--- Don't Import ---"/><span class="oe-m2o-drop-down-button">
<img t-att-src='_s + "/web/static/src/img/down-arrow.png"' /></span>
</td>
</tr>