mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
add english locale to page
This commit is contained in:
parent
4d99dc035e
commit
ee8825408b
2 changed files with 15 additions and 7 deletions
|
@ -1,31 +1,31 @@
|
|||
<% local_domain = "#{request.protocol}#{request.host_with_port}" %>
|
||||
|
||||
<p>The page you requested doesn't exist on this discussion forum. Perhaps we can help find it, or another topic like it:</p>
|
||||
<p><%= t 'page_not_found.title' %></p>
|
||||
<table>
|
||||
<tr>
|
||||
<td style="vertical-align:top; padding:0 20px 20px 0;">
|
||||
<h2>Popular topics</h2>
|
||||
<h2><%= t 'page_not_found.popular_topics' %></h2>
|
||||
<% @popular.each do |t| %>
|
||||
<%= link_to t.title, t.relative_url %><br/>
|
||||
<% end %>
|
||||
<br/>
|
||||
<a href="/popular" class="btn">See More…</a>
|
||||
<a href="/popular" class="btn"><%= t 'page_not_found.see_more' %>…</a>
|
||||
</td>
|
||||
<td style="vertical-align:top; padding:0 0 20px 0;">
|
||||
<h2>Recent topics</h2>
|
||||
<h2><%= t 'page_not_found.recent_topics' %></h2>
|
||||
<% @recent.each do |t| %>
|
||||
<%= link_to t.title, t.relative_url %><br/>
|
||||
<% end %>
|
||||
<br/>
|
||||
<a href="/popular" class="btn">See More…</a>
|
||||
<a href="/popular" class="btn"><%= t 'page_not_found.see_more' %>…</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Search for this topic</h2>
|
||||
<h2><%= t 'page_not_found.search_title' %></h2>
|
||||
<p>
|
||||
<form action='http://google.com'>
|
||||
<input type="text" name='q' value="site:<%= local_domain %> <%= @slug %>">
|
||||
<!--<input type="button" class="btn" value="Search Here" onclick="alert('single page search results not implemented yet');" />-->
|
||||
<input type="submit" class="btn btn-primary" value="Search Google" />
|
||||
<input type="submit" class="btn btn-primary" value="<%= t 'page_not_found.search_google' %>" />
|
||||
</form>
|
||||
</p>
|
||||
|
|
|
@ -704,3 +704,11 @@ en:
|
|||
|
||||
discourse_hub:
|
||||
access_token_problem: "Tell an admin: Please update the site settings to include the correct discourse_org_access_key."
|
||||
|
||||
page_not_found:
|
||||
title: "The page you requested doesn't exist on this discussion forum. Perhaps we can help find it, or another topic like it:"
|
||||
popular_topics: "Popular topics"
|
||||
recent_topics: "Recent topics"
|
||||
see_more: "See More"
|
||||
search_title: "Search for this topic"
|
||||
search_google: "Search Google"
|
||||
|
|
Loading…
Reference in a new issue