diff options
-rw-r--r-- | web/i18n/de.yml | 4 | ||||
-rw-r--r-- | web/i18n/en.yml | 6 | ||||
-rw-r--r-- | web/views/project.erb | 8 | ||||
-rw-r--r-- | web/views/projects.erb | 2 |
4 files changed, 15 insertions, 5 deletions
diff --git a/web/i18n/de.yml b/web/i18n/de.yml index 45e4596..b166454 100644 --- a/web/i18n/de.yml +++ b/web/i18n/de.yml @@ -229,7 +229,7 @@ pages: empty_role: Role ist leer projects: intro: | - Diese Tabelle zeigt alle Projekte, die taginfo kennt, und die OSM-Tags in irgendeiner Weise nutzen. + Diese Tabelle zeigt alle Projekte, die taginfo kennt, und die OSM-Tags in irgendeiner Weise nutzen.<br/>Mehr über diese Funktion im <a href="//wiki.openstreetmap.org/wiki/Taginfo/Projects" class="extlink">Wiki</a>. key: description_from_wiki: Beschreibung dieses Keys aus dem Wiki (falls vorhanden in der gewählten Sprache, sonst auf Englisch). no_description_in_wiki: Keine deutschsprachige Beschreibung dieses Keys im Wiki. (Siehe auch im "Wiki"-Tab.) @@ -343,6 +343,8 @@ pages: description: Beschreibung documentation_url: Dokumentation last_update: Letzte Aktualisierung + json_url: JSON Projekt-Datei + info: Diese Daten sind taginfo vom Projekt in einer 'JSON Projekt-Datei' zur Verfügung gestellt worden, die oben verlinkt ist. Im <a href="//wiki.openstreetmap.org/wiki/Taginfo/Projects" class="extlink">Wiki</a> gibt es eine Formatbeschreibung. tags: title: Tags, die von diesem Projekt verwenden werden intro: Die folgenden Daten wurden von dem Projekt zur Verfügung gestellt. Sie sind nicht notwendigerweise komplett. Für Details schau bitte in die Projekt-Dokumentation. diff --git a/web/i18n/en.yml b/web/i18n/en.yml index 8b6963c..e94ea67 100644 --- a/web/i18n/en.yml +++ b/web/i18n/en.yml @@ -299,7 +299,7 @@ pages: empty_role: empty role projects: intro: | - This table shows all projects known to taginfo that use OSM tags in some way. + This table shows all projects known to taginfo that use OSM tags in some way.<br/>For more about this functionality see the <a href="//wiki.openstreetmap.org/wiki/Taginfo/Projects" class="extlink">wiki</a>. key: description_from_wiki: Description of this key from the wiki (if available in your chosen language, otherwise in English). no_description_in_wiki: No English language description for this key in the wiki. (See also the "Wiki" tab.) @@ -413,9 +413,11 @@ pages: description: Description documentation_url: Documentation last_update: Last update + json_url: JSON project file + info: This data is provided by the project for taginfo though the 'JSON project file' linked from above. See the <a href="//wiki.openstreetmap.org/wiki/Taginfo/Projects" class="extlink">wiki</a> for a format description. tags: title: Tags used by this project - intro: This data is supplied by the project and not necessarily complete. Please see the project documentation for details. + intro: This data is provided by the project and not necessarily complete. Please see the project documentation for details. flexigrid: pagetext: Page diff --git a/web/views/project.erb b/web/views/project.erb index 0b7dea4..16637c1 100644 --- a/web/views/project.erb +++ b/web/views/project.erb @@ -16,11 +16,13 @@ <tr><th><%= h(t.pages.project.overview.documentation_url) %>:</th><td id="doc_url"></td></tr> <% end %> <tr><th><%= h(t.pages.project.overview.last_update) %>:</th><td><%= h(@project.data_updated) %></td></tr> + <tr><th><%= h(t.pages.project.overview.json_url) %>:</th><td id="json_url"></td></tr> </table> + <p><i><%= t.pages.project.overview.info %></i></p> </div> <div id="tags"> <h2><%= h(t.pages.project.tags.title) %></h2> - <p><%= h(t.pages.project.tags.intro) %></p> + <p><i><%= h(t.pages.project.tags.intro) %></i></p> <table id="grid-tags"> </table> </div> @@ -30,11 +32,15 @@ function page_init2() { var project = #{ @project_id.to_json }, project_url = #{ @project.project_url.to_json }, + json_url = #{ @project.json_url.to_json }, doc_url = #{ @project.doc_url.to_json }; if (project_url) { jQuery('#project_url').html(link_to_url(project_url)); } + if (json_url) { + jQuery('#json_url').html(link_to_url(json_url)); + } if (doc_url) { jQuery('#doc_url').html(link_to_url(doc_url)); } diff --git a/web/views/projects.erb b/web/views/projects.erb index ec95947..ce04fa2 100644 --- a/web/views/projects.erb +++ b/web/views/projects.erb @@ -1,6 +1,6 @@ <div class="pre"> <h1 class="section"><%= h(t.taginfo.projects) %></h1> - <p><%= h(t.pages.projects.intro) %></p> + <p><%= t.pages.projects.intro %></p> </div> <div class="box resize"> <table id="grid-projects"> |