diff options
-rw-r--r-- | web/i18n/de.yml | 2 | ||||
-rw-r--r-- | web/i18n/en.yml | 2 | ||||
-rw-r--r-- | web/views/compare.erb | 4 |
3 files changed, 8 insertions, 0 deletions
diff --git a/web/i18n/de.yml b/web/i18n/de.yml index 574715b..29e38b6 100644 --- a/web/i18n/de.yml +++ b/web/i18n/de.yml @@ -190,6 +190,8 @@ pages: no_values: Keine Values gefunden. no_tags: Keine Tags gefunden. no_match: Nichts gefunden. + compare: + nothing_to_compare: Keine Keys/Tags zum Vergleichen vorhanden. Sie können auf den Key/Tag-Seiten in die Vergleichliste aufgenommen werden. keys: intro: | Diese Tabelle zeigt alle Keys, die in der Datenbank oder einer anderen Quelle vorkommen. diff --git a/web/i18n/en.yml b/web/i18n/en.yml index eba5c97..f7720a8 100644 --- a/web/i18n/en.yml +++ b/web/i18n/en.yml @@ -186,6 +186,8 @@ pages: no_values: No values found. no_tags: No tags found. no_match: No matches. + compare: + nothing_to_compare: There are no keys/tags to compare. Go to any key or tag page and add them. keys: intro: | This table shows all tag keys that exist in the database or in any of the other sources. diff --git a/web/views/compare.erb b/web/views/compare.erb index aa81986..e972b3d 100644 --- a/web/views/compare.erb +++ b/web/views/compare.erb @@ -1,6 +1,9 @@ <div class="pre"> <h1 class="section"><%= h(t.taginfo.comparison) %></h1> </div> +<% if @data.size == 0 %> +<p class="empty"><%= h(t.pages.compare.nothing_to_compare) %></p> +<% else %> <table class="comparison"> <tr> <% @data.each_with_index do |data, num| %> @@ -78,6 +81,7 @@ <% end %> </tr> </table> +<% end %> <% javascript do JS.raw(<<"JAVASCRIPT") function page_init2() { |