X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/b15a8c73d9c555243952d300e19d6d4127843f19..c49e400aa36d116ded8188240961d1e88b172ccd:/app/views/site/edit.html.erb?ds=sidebyside diff --git a/app/views/site/edit.html.erb b/app/views/site/edit.html.erb index e84adf2d4..d991adf39 100644 --- a/app/views/site/edit.html.erb +++ b/app/views/site/edit.html.erb @@ -1,12 +1,12 @@ <% content_for :content do %> - <% if STATUS == :database_offline or STATUS == :api_offline %> -
<%= t 'layouts.osm_offline' %>
- <% elsif STATUS == :database_readonly or STATUS == :api_readonly %> -<%= t 'layouts.osm_read_only' %>
+ <% if Settings.status == "database_offline" or Settings.status == "api_offline" %> +<%= t "layouts.osm_offline" %>
+ <% elsif Settings.status == "database_readonly" or Settings.status == "api_readonly" %> +<%= t "layouts.osm_read_only" %>
<% elsif !current_user.data_public? %> -<%= t '.not_public' %>
-<%= raw t '.not_public_description', :user_page => (link_to t('.user_page_link'), {:controller => 'user', :action => 'account', :display_name => current_user.display_name, :anchor => 'public'}) %>
-<%= raw t 'site.edit.anon_edits', :link => link_to(t('.anon_edits_link_text'), t('.anon_edits_link')) %>
+<%= t ".not_public" %>
+<%= t ".not_public_description_html", :user_page => (link_to t(".user_page_link"), :controller => "users", :action => "account", :display_name => current_user.display_name, :anchor => "public") %>
+<%= t ".anon_edits_html", :link => link_to(t(".anon_edits_link_text"), t(".anon_edits_link")) %>
<% else %> <%= render :partial => preferred_editor %> <% end %>