+<%= t 'user.view.mapper since' %><%= l @this_user.creation_time %> <%= t 'user.view.ago', :time_in_words_ago => time_ago_in_words(@this_user.creation_time) %>
+
+<% end %>
+
+
<%= t 'user.view.user image heading' %>
<% if @this_user.image %>
- <%= image_tag url_for_file_column(@this_user, "image") %>
+ <%= image_tag url_for_file_column(@this_user, "image") %>
+ <% if @user and @this_user.id == @user.id %>
+ <%= button_to t('user.view.delete image'), :action => 'delete_image' %>
+ <% end %>
<% end %>
<% if @user and @this_user.id == @user.id %>
- Upload an image
+ <%= t 'user.view.upload an image' %>
<%= form_tag({:action=>'upload_image'}, :multipart => true)%>
<%= file_column_field 'user', 'image' %>
-
+ <%= submit_tag t('user.view.add image') %>
<% end %>
-
Description
<%= simple_format(@this_user.description) %>
+
<%= t 'user.view.description' %>
+
<%= htmlize(@this_user.description) %>
<% if @this_user.home_lat.nil? or @this_user.home_lon.nil? %>
-
User location
+
<%= t 'user.view.user location' %>
- No home location has been set.
+ <%= t 'user.view.no home location' %>
<% if @user and @this_user.id == @user.id %>
- You can set your home location on your <%= link_to 'settings', :controller => 'user', :action => 'account', :display_name => @user.display_name %> page.
+ <%= t 'user.view.if set location', :settings_link => (link_to t('user.view.settings_link_text'), :controller => 'user', :action => 'account', :display_name => @user.display_name) %>
<% end %>
<% else %>
<% if @user and @this_user.id == @user.id %>
-
Your friends
+
<%= t 'user.view.your friends' %>
<% if @this_user.friends.empty? %>
- You have not added any friends yet.
+ <%= t 'user.view.no friends' %>
<% else %>
<% @this_user.friends.each do |friend| %>
@@ -58,9 +70,9 @@
<%= image_tag url_for_file_column(@friend, "image") %>
<% end %>
-
@@ -70,9 +82,9 @@
<% if @user and @this_user.id == @user.id %>
-
Nearby users:
+
<%= t 'user.view.nearby users' %>
<% if @this_user.nearby.empty? %>
- There are no users who admit to mapping nearby yet.
+ <%= t 'user.view.no nearby users' %>
<% else %>
@@ -80,12 +92,18 @@