make more stuff translatable
This commit is contained in:
parent
a23357abe2
commit
ac0397490a
1 changed files with 13 additions and 20 deletions
|
@ -23,9 +23,9 @@
|
||||||
</header>
|
</header>
|
||||||
<main class="map" data-state="{{ state }}">
|
<main class="map" data-state="{{ state }}">
|
||||||
<section id="popup-buttons">
|
<section id="popup-buttons">
|
||||||
<button class="button-clear as-location">Show only this location</button>
|
<button class="button-clear as-location">{% trans 'Show only this location' %}</button>
|
||||||
<button class="button-clear as-destination">Route to here</button>
|
<button class="button-clear as-destination">{% trans 'Route to here' %}</button>
|
||||||
<button class="button-clear as-origin">Route from here</button>
|
<button class="button-clear as-origin">{% trans 'Route from here' %}</button>
|
||||||
</section>
|
</section>
|
||||||
<section id="map" data-bounds="{{ bounds }}" data-levels="{{ levels }}"{% if tile_cache_server %} data-tile-server="{{ tile_cache_server }}"{% endif %}></section>
|
<section id="map" data-bounds="{{ bounds }}" data-levels="{{ levels }}"{% if tile_cache_server %} data-tile-server="{{ tile_cache_server }}"{% endif %}></section>
|
||||||
<section id="sidebar">
|
<section id="sidebar">
|
||||||
|
@ -48,15 +48,15 @@
|
||||||
<div class="buttons" id="location-buttons">
|
<div class="buttons" id="location-buttons">
|
||||||
<button class="button-clear details">
|
<button class="button-clear details">
|
||||||
<i class="material-icons">expand_more</i>
|
<i class="material-icons">expand_more</i>
|
||||||
Details
|
{% trans 'Details' %}
|
||||||
</button>
|
</button>
|
||||||
<button class="button-clear share">
|
<button class="button-clear share">
|
||||||
<i class="material-icons">share</i>
|
<i class="material-icons">share</i>
|
||||||
Share
|
{% trans 'Share' %}
|
||||||
</button>
|
</button>
|
||||||
<button class="button-clear route">
|
<button class="button-clear route">
|
||||||
<i class="material-icons">directions</i>
|
<i class="material-icons">directions</i>
|
||||||
Route
|
{% trans 'Route' %}
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div id="route-summary">
|
<div id="route-summary">
|
||||||
|
@ -67,21 +67,21 @@
|
||||||
<div class="buttons" id="route-search-buttons">
|
<div class="buttons" id="route-search-buttons">
|
||||||
<button class="button-clear swap">
|
<button class="button-clear swap">
|
||||||
<i class="material-icons">swap_vert</i>
|
<i class="material-icons">swap_vert</i>
|
||||||
Swap
|
{% trans 'Swap' %}
|
||||||
</button>
|
</button>
|
||||||
<button class="button-clear close">
|
<button class="button-clear close">
|
||||||
<i class="material-icons">close</i>
|
<i class="material-icons">close</i>
|
||||||
Close
|
{% trans 'Close' %}
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div class="buttons" id="route-result-buttons">
|
<div class="buttons" id="route-result-buttons">
|
||||||
<button class="button-clear swap">
|
<button class="button-clear swap">
|
||||||
<i class="material-icons">swap_vert</i>
|
<i class="material-icons">swap_vert</i>
|
||||||
Swap
|
{% trans 'Swap' %}
|
||||||
</button>
|
</button>
|
||||||
<button class="button-clear details">
|
<button class="button-clear details">
|
||||||
<i class="material-icons">arrow_downward</i>
|
<i class="material-icons">arrow_downward</i>
|
||||||
Details
|
{% trans 'Details' %}
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
@ -91,18 +91,11 @@
|
||||||
<div class="details-head">
|
<div class="details-head">
|
||||||
<a class="button button-clear editor float-right" target="_blank">
|
<a class="button button-clear editor float-right" target="_blank">
|
||||||
<i class="material-icons">edit</i>
|
<i class="material-icons">edit</i>
|
||||||
Open in Editor
|
{% trans 'Open in Editor' %}
|
||||||
</a>
|
</a>
|
||||||
<h2>Details</h2>
|
<h2>{% trans 'Details' %}</h2>
|
||||||
</div>
|
|
||||||
<div class="details-body">
|
|
||||||
<dl>
|
|
||||||
<dt>Name</dt>
|
|
||||||
<dd>CCL Atrium Ebene 1</dd>
|
|
||||||
<dt>Name</dt>
|
|
||||||
<dd>CCL Atrium Ebene 1</dd>
|
|
||||||
</dl>
|
|
||||||
</div>
|
</div>
|
||||||
|
<div class="details-body"></div>
|
||||||
</section>
|
</section>
|
||||||
<section id="route-details" class="details"></section>
|
<section id="route-details" class="details"></section>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue