Internationalize Views::Search templates

This commit is contained in:
benjamin wil
2021-12-30 17:13:30 -08:00
parent 489f6d7c0f
commit 3f4162e2cc
3 changed files with 24 additions and 7 deletions
+14 -1
View File
@@ -29,4 +29,17 @@ en:
no_pages_in: There are no pages in
on: "on"
title: "Overview of %{ref}"
precious/views/search:
aria:
show_all: "Show all %{count} hits in this page"
back_to_top: Back to Top
no_results: There are no results for your search
pagination:
aria:
label: Pagination
next_page: Next page
previous_page: Previous page
next: Next
previous: Previous
search_results_for: Search results for
title: "Search results for %{query}"
+9 -5
View File
@@ -4,7 +4,7 @@
<h1 class="header-title text-center text-md-left py-4">
<span class="f1-light text-gray-light">
Search results for
{{t.search_results_for}}
</span>
{{name}}
</h1>
@@ -21,7 +21,12 @@
<li class="Box-row Box-row--gray">
<span class="Counter Counter--gray tooltipped tooltipped-w" aria-label="{{filename_count}} hits in filename - {{count}} hits in content">{{filename_count}} - {{count}}</span>&nbsp;
<span class="text-bold"><a href="{{href}}">{{name}}</a></span>
<button class="btn-link tooltipped tooltipped-w float-right toggle-context" aria-label="Show all {{count}} hits in this page">{{#octicon}}search{{/octicon}}</button>
<button
class="btn-link tooltipped tooltipped-w float-right toggle-context"
aria-label="{{t.aria.show_all}}"
>
{{#octicon}}search{{/octicon}}
</button>
</li>
<div class="search-context">
@@ -29,7 +34,6 @@
<li class="Box-row border-0"><span class="text-italic">{{.}}</span></li>
{{/context}}
</div>
{{/results}}
</ul>
</div>
@@ -37,12 +41,12 @@
{{#no_results}}
<p id="no-results">
There are no results for your search <strong>{{query}}</strong>.
{{t.no_results}} <strong>{{query}}</strong>.
</p>
{{/no_results}}
<div id="footer" class="mt-4">
<a class="btn" href="#">Back to Top</a>
<a class="btn" href="#">{{t.back_to_top}}</a>
</div>
</div>
+1 -1
View File
@@ -23,7 +23,7 @@ module Precious
end
def title
"Search results for " + @query
t[:title]
end
def search