2006/unicorn/WebContent/WEB-INF/resources/templates language.form.vm,1.12,1.13

Update of /sources/public/2006/unicorn/WebContent/WEB-INF/resources/templates
In directory hutz:/tmp/cvs-serv30442/WebContent/WEB-INF/resources/templates

Modified Files:
	language.form.vm 
Log Message:
added dir attribute to inputs

Index: language.form.vm
===================================================================
RCS file: /sources/public/2006/unicorn/WebContent/WEB-INF/resources/templates/language.form.vm,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- language.form.vm	20 Mar 2010 17:14:36 -0000	1.12
+++ language.form.vm	22 Mar 2010 18:03:08 -0000	1.13
@@ -37,7 +37,7 @@
 						#if (!$prop.get($key))
 						<tr>
 							<th class="property_name" scope="row">$key <p>$!esc.html($defaultProps.get($key))</p></th>
-							<td class="missing"><input type="text" name="$transLocale.getName()_$key" value="$!esc.html($!prop.get($key))" /></td>
+							<td class="missing"><input type="text" name="$transLocale.getName()_$key" value="$!esc.html($!prop.get($key))" dir="$transLocaleDir" /></td>
 						</tr>
 						#end
 					#end
@@ -45,7 +45,7 @@
 						#if (!$metadatas.get($key))
 						<tr>
 							<th class="property_name" scope="row">$key <p>$!esc.html($defaultMetadata.get($key))</p></th>
-							<td class="missing"><input type="text" name="metadata_$transLocale.getName()_$key" value="$!esc.html($!metadatas.get($key))" /></td>
+							<td class="missing"><input type="text" name="metadata_$transLocale.getName()_$key" value="$!esc.html($!metadatas.get($key))" dir="$transLocaleDir" /></td>
 						</tr>
 						#end
 					#end
@@ -54,7 +54,7 @@
 						#if ($prop.get($key))
 						<tr>
 							<th class="property_name" scope="row">$key <p>$!esc.html($defaultProps.get($key))</p></th>
-							<td #if(!$prop.get($key))class="missing"#end><input type="text" name="$transLocale.getName()_$key" value="$!esc.html($!prop.get($key))" /></td>
+							<td #if(!$prop.get($key))class="missing"#end><input type="text" name="$transLocale.getName()_$key" value="$!esc.html($!prop.get($key))" dir="$transLocaleDir" /></td>
 						</tr>
 						#end
 					#end
@@ -62,7 +62,7 @@
 						#if ($metadatas.get($key))
 						<tr>
 							<th class="property_name" scope="row">$key <p>$!esc.html($defaultMetadata.get($key))</p></th>
-							<td #if(!$metadatas.get($key))class="missing"#end><input type="text" name="metadata_$transLocale.getName()_$key" value="$!esc.html($!metadatas.get($key))" /></td>
+							<td #if(!$metadatas.get($key))class="missing"#end><input type="text" name="metadata_$transLocale.getName()_$key" value="$!esc.html($!metadatas.get($key))" dir="$transLocaleDir" /></td>
 						</tr>
 						#end
 					#end

Received on Monday, 22 March 2010 18:03:12 UTC