Merge remote-tracking branch 'upstream/pull/2901'
This commit is contained in:
commit
e9ad6d852c
14 changed files with 35 additions and 44 deletions
10
app/views/application/_sidebar_header.html.erb
Normal file
10
app/views/application/_sidebar_header.html.erb
Normal file
|
@ -0,0 +1,10 @@
|
|||
<div class="d-flex w-100">
|
||||
<div class="flex-grow-1 text-break">
|
||||
<h2><%= title %></h2>
|
||||
</div>
|
||||
<div class="px-3 py-3">
|
||||
<a class="geolink" href="<%= root_path %>">
|
||||
<span class="icon close"></span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
|
@ -1,9 +1,6 @@
|
|||
<% set_title(t(".title", :id => @changeset.id)) %>
|
||||
|
||||
<h2>
|
||||
<a class="geolink" href="<%= root_path %>"><span class="icon close"></span></a>
|
||||
<%= t(".title", :id => @changeset.id) %>
|
||||
</h2>
|
||||
<%= render "sidebar_header", :title => t(".title", :id => @changeset.id) %>
|
||||
|
||||
<div class="browse-section">
|
||||
<p class="font-italic">
|
||||
|
|
|
@ -1,9 +1,6 @@
|
|||
<% set_title(t("browse.#{@type}.title_html", :name => printable_name(@feature))) %>
|
||||
|
||||
<h2>
|
||||
<a class="geolink" href="<%= root_path %>"><span class="icon close"></span></a>
|
||||
<%= t("browse.#{@type}.title_html", :name => printable_name(@feature)) %>
|
||||
</h2>
|
||||
<%= render "sidebar_header", :title => t("browse.#{@type}.title_html", :name => printable_name(@feature)) %>
|
||||
|
||||
<%= render :partial => @type, :object => @feature %>
|
||||
|
||||
|
|
|
@ -1,9 +1,6 @@
|
|||
<% set_title(t("browse.#{@type}.history_title_html", :name => printable_name(@feature))) %>
|
||||
|
||||
<h2>
|
||||
<a class="geolink" href="<%= root_path %>"><span class="icon close"></span></a>
|
||||
<%= t("browse.#{@type}.history_title_html", :name => printable_name(@feature)) %>
|
||||
</h2>
|
||||
<%= render "sidebar_header", :title => t("browse.#{@type}.history_title_html", :name => printable_name(@feature)) %>
|
||||
|
||||
<%= render :partial => @type, :collection => @feature.send("old_#{@type}s").reverse %>
|
||||
|
||||
|
|
|
@ -1,9 +1,6 @@
|
|||
<% set_title(t("browse.note.new_note")) %>
|
||||
|
||||
<h2>
|
||||
<a class="geolink" href="<%= root_path %>"><span class="icon close"></span></a>
|
||||
<%= t "browse.note.new_note" %>
|
||||
</h2>
|
||||
<%= render "sidebar_header", :title => t("browse.note.new_note") %>
|
||||
|
||||
<div class="note browse-section">
|
||||
<p class="alert alert-info"><%= t("javascripts.notes.new.intro") %></p>
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
<h2>
|
||||
<a class="geolink" href="<%= root_path %>"><span class="icon close"></span></a>
|
||||
<%= t ".sorry", :type => t(".type.#{@type}"), :id => params[:id] %>
|
||||
</h2>
|
||||
<% set_title(t(".title")) %>
|
||||
|
||||
<%= render "sidebar_header", :title => t(".title") %>
|
||||
|
||||
<div class="browse-section">
|
||||
<p><%= t ".sorry", :type => t(".type.#{@type}"), :id => params[:id] %>
|
||||
</div>
|
||||
|
|
|
@ -1,9 +1,6 @@
|
|||
<% set_title(t(".title", :id => @note.id)) %>
|
||||
|
||||
<h2>
|
||||
<a class="geolink" href="<%= root_path %>"><span class="icon close"></span></a>
|
||||
<%= t ".#{@note.status}_title", :note_name => @note.id %>
|
||||
</h2>
|
||||
<%= render "sidebar_header", :title => t(".#{@note.status}_title", :note_name => @note.id) %>
|
||||
|
||||
<div class="browse-section">
|
||||
<h4><%= t(".description") %></h4>
|
||||
|
|
|
@ -1,9 +1,6 @@
|
|||
<% set_title(t(".title")) %>
|
||||
|
||||
<h2>
|
||||
<a class="geolink" href="<%= root_path %>"><span class="icon close"></span></a>
|
||||
<%= t ".title" %>
|
||||
</h2>
|
||||
<%= render "sidebar_header", :title => t(".title") %>
|
||||
|
||||
<div class="query-intro">
|
||||
<p><%= t(".introduction") %></p>
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
<% set_title(t(".title")) %>
|
||||
|
||||
<%= render "sidebar_header", :title => t(".title") %>
|
||||
|
||||
<div class="browse-section">
|
||||
<a class="geolink" href="<%= root_path %>"><span class="icon close"></span></a>
|
||||
<%= t ".sorry", :type => t(".type.#{@type}"), :id => params[:id] %>
|
||||
<p><%= t ".sorry", :type => t(".type.#{@type}"), :id => params[:id] %>
|
||||
</div>
|
||||
|
|
|
@ -11,10 +11,7 @@
|
|||
@title
|
||||
end %>
|
||||
|
||||
<h2>
|
||||
<a class="geolink" href="<%= root_path %>"><span class="icon close"></span></a>
|
||||
<%= @heading %>
|
||||
</h2>
|
||||
<%= render "sidebar_header", :title => @heading %>
|
||||
|
||||
<div class="changesets">
|
||||
<%= image_tag "searching.gif", :class => "loader" %>
|
||||
|
|
|
@ -1,9 +1,7 @@
|
|||
<% set_title(@params[:query]) %>
|
||||
|
||||
<h2>
|
||||
<a class="geolink" href="<%= root_path %>"><span class="icon close"></span></a>
|
||||
<%= t("site.sidebar.search_results") %>
|
||||
</h2>
|
||||
<%= render "sidebar_header", :title => t("site.sidebar.search_results") %>
|
||||
|
||||
<% @sources.each do |source| %>
|
||||
<h4 class="inner12"><%= t(".title.#{source}_html") %></h4>
|
||||
<div class="search_results_entry" data-href="<%= url_for @params.merge(:action => "search_#{source}") %>">
|
||||
|
|
|
@ -40,8 +40,7 @@
|
|||
|
||||
<% unless current_user %>
|
||||
<div class="welcome">
|
||||
<h2><%= t "layouts.intro_header" %></h2>
|
||||
<div class="close-wrap"><span class="icon close"></span></div>
|
||||
<%= render "sidebar_header", :title => t("layouts.intro_header") %>
|
||||
<p><%= t "layouts.intro_text" %></p>
|
||||
<p><%= t "layouts.hosting_partners_html",
|
||||
:ucl => link_to(t("layouts.partners_ucl"), "https://www.ucl.ac.uk"),
|
||||
|
|
|
@ -1,9 +1,6 @@
|
|||
<% set_title(t(".title")) %>
|
||||
|
||||
<h2>
|
||||
<a class="geolink" href="<%= root_path %>"><span class="icon close"></span></a>
|
||||
<%= t ".title" %>
|
||||
</h2>
|
||||
<%= render "sidebar_header", :title => t(".title") %>
|
||||
|
||||
<%= form_tag({ :controller => "export", :action => "finish" }, { :class => "export_form standard-form" }) do %>
|
||||
<%= hidden_field_tag "format", "osm" %>
|
||||
|
|
|
@ -294,6 +294,7 @@ en:
|
|||
entry_html: "Relation %{relation_name}"
|
||||
entry_role_html: "Relation %{relation_name} (as %{relation_role})"
|
||||
not_found:
|
||||
title: Not Found
|
||||
sorry: "Sorry, %{type} #%{id} could not be found."
|
||||
type:
|
||||
node: node
|
||||
|
@ -302,6 +303,7 @@ en:
|
|||
changeset: changeset
|
||||
note: note
|
||||
timeout:
|
||||
title: Timeout Error
|
||||
sorry: "Sorry, the data for the %{type} with the id %{id}, took too long to retrieve."
|
||||
type:
|
||||
node: node
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue