Move image size hint to avoid issues with LTR languages. Closes #2755.

This commit is contained in:
Tom Hughes 2010-03-01 12:12:02 +00:00
parent 5e9ae68fb2
commit 77a3d8d24e

View file

@ -55,7 +55,7 @@
<td valign="top"> <td valign="top">
<% if @user.image.nil? %> <% if @user.image.nil? %>
<%= hidden_field_tag "image_action", "new" %> <%= hidden_field_tag "image_action", "new" %>
<%= t 'user.account.new image' %> <span class="minorNote"><%= t 'user.account.image size hint' %></span><br /><%= file_column_field "user", "image" %> <%= t 'user.account.new image' %><br /><%= file_column_field "user", "image" %><br /><span class="minorNote"><%= t 'user.account.image size hint' %></span>
<% else %> <% else %>
<table id="accountImage"> <table id="accountImage">
<tr> <tr>
@ -69,7 +69,7 @@
</tr> </tr>
<tr> <tr>
<td><%= radio_button_tag "image_action", "new" %></td> <td><%= radio_button_tag "image_action", "new" %></td>
<td><%= t 'user.account.replace image' %> <span class="minorNote"><%= t 'user.account.image size hint' %></span><br /><%= file_column_field "user", "image", :onchange => "$('image_action_new').checked = true" %></td> <td><%= t 'user.account.replace image' %><br /><%= file_column_field "user", "image", :onchange => "$('image_action_new').checked = true" %><br /><span class="minorNote"><%= t 'user.account.image size hint' %></span></td>
</tr> </tr>
</table> </table>
<% end %> <% end %>