From adaa1f628f04a6af247e142edbea679578b90fef Mon Sep 17 00:00:00 2001
From: Jacek Kowalski <Jacek@jacekk.info>
Date: Sat, 15 Apr 2017 11:43:18 +0000
Subject: [PATCH] Add layers with stops and stop points

---
 index.html |   83 +++++++++++++++++++++++------------------
 1 files changed, 46 insertions(+), 37 deletions(-)

diff --git a/index.html b/index.html
index 52958c1..ef142e6 100644
--- a/index.html
+++ b/index.html
@@ -1,7 +1,7 @@
 <!DOCTYPE html>
 <html lang="en">
 	<head>
-		<title>TTSS Cracow</title>
+		<title>TTSS Kraków - Real-time tram departures</title>
 		<meta charset="utf-8">
 		<meta http-equiv="X-UA-Compatible" content="IE=edge">
 		<meta name="viewport" content="width=device-width, initial-scale=1">
@@ -12,39 +12,38 @@
 		<nav class="navbar navbar-default">
 			<div class="container-fluid">
 				<div class="navbar-header">
-					<a class="navbar-brand" href="#">TTSS KRK</a>
+					<a class="navbar-brand" style="display:inline-block" href="#" data-translate="page_name">TTSS Kraków</a>
 				</div>
+				
+				<form class="navbar-form navbar-left">
+					<select class="form-control" id="lang-select">
+						<option value="en">EN</option>
+						<option value="pl">PL</option>
+					</select>
+				</form>
+				
 				<form class="navbar-form navbar-left">
 					<div class="input-group">
 						<span class="input-group-btn">
-							<input type="text" class="form-control form-round-left" id="stop-name" placeholder="Stop name" />
+							<input type="text" class="form-control form-round-left" id="stop-name" placeholder="Stop name" autofocus="autofocus" />
 						</span>
 						<select class="form-control" id="stop-name-autocomplete">
 						</select>
 						<span class="input-group-btn">
-							<button type="submit" class="btn btn-default">Go</button>
+							<button type="submit" class="btn btn-default" data-translate="go_button">Go</button>
 						</span>
 					</div>
 				</form>
 				
-				<button type="button" class="btn btn-default navbar-btn pull-right" id="refresh" disabled="disabled">
-					<span class="glyphicon glyphicon-refresh" aria-hidden="true"></span>
-					Refresh
-				</button>
-				
+				<button type="button" class="btn btn-default navbar-btn pull-right" id="refresh" disabled="disabled" data-translate="refresh_button">&#x27f3; Refresh</button>
 				<p class="navbar-text pull-right" id="refresh-text">Initializing...</p>
 			</div>
 		</nav>
+		
 		<div class="container-fluid">
-			<div id="progress" class="progress" style="display: none;">
-				<div id="progress-bar" class="progress-bar progress-bar-striped active" style="width: 100%">
-					<span id="progress-text" class="sr-only">Refreshing data...</span>
-				</div>
-			</div>
-			
 			<div id="alert" class="alert alert-danger alert-dismissible" style="display:none">
 				<a href="#" class="close" id="alert-close" aria-label="close">&times;</a>
-				<strong>Error occured!</strong> <span id="alert-text"></span>
+				<strong data-translate="error_title">Error occured!</strong> <span id="alert-text"></span>
 			</div>
 			
 			<div class="row">
@@ -56,10 +55,10 @@
 					<table class="table table-striped table-condensed">
 						<thead>
 							<tr>
-								<th>Line</th>
-								<th>Direction</th>
-								<th>Time</th>
-								<th>Delay</th>
+								<th data-translate="header_line">Line</th>
+								<th data-translate="header_direction">Direction</th>
+								<th data-translate="header_time">Time</th>
+								<th data-translate="header_delay">Delay</th>
 							</tr>
 						</thead>
 						<tbody id="times-table">
@@ -67,52 +66,62 @@
 					</table>
 				</div>
 				<div class="col-md-6">
-					<h3>Lines</h3>
+					<!--
+					<h3 data-translate="header_lines">Lines</h3>
 					
 					<table class="table table-condensed">
 						<thead>
 							<tr>
-								<th>Line</th>
-								<th>Route</th>
-								<th>Carrier</th>
+								<th data-translate="header_line">Line</th>
+								<th data-translate="header_route">Route</th>
+								<th data-translate="header_carrier">Carrier</th>
 							</tr>
 						</thead>
 						<tbody id="times-lines">
-							
 						</tbody>
 					</table>
+					-->
 					
-					<!--
+					<p data-translate="help_click_for_schedule">Click on an entry in the departures timetable to see the tram's schedule.</p>
+					
 					<h3 id="route-line"></h3>
 					
 					<table class="table table-condensed">
 						<thead>
 							<tr>
-								<th>Stop</th>
+								<th data-translate="header_time">Time</th>
+								<th data-translate="header_stop">Stop</th>
 							</tr>
 						</thead>
 						<tbody id="route-table">
-							
 						</tbody>
 					</table>
-					-->
 					
 					<p class="small">
-						Legend:
-						<span class="label bg-active">Departed</span>
-						<span class="label bg-success">At stop</span>
-						<span class="label bg-default">En route</span>
-						<span class="label bg-warning">Delayed 4′+</span>
-						<span class="label bg-danger">Delayed 10′+</span>
+						<span data-translate="help_legend">Legend:</span>
+						<span class="label bg-active" data-translate="status_departed">Departed</span>
+						<span class="label bg-success" data-translate="status_stopped">At stop</span>
+						<span class="label bg-default" data-translate="status_default">En route</span>
+						<span class="label bg-warning" data-translate="status_delayed_4">Delayed 4′+</span>
+						<span class="label bg-danger" data-translate="status_delayed_10">Delayed 10′+</span>
 					</p>
 					
-					<p class="small">Relative times (eg. 3 min) are real-time arrivals based on tram location data. Absolute times (eg. 8:01) are scheduled departures, shown when the tram cannot be located. "?" means unknown delay.</p>
+					<p class="small">
+						<span class="bigger" title="Bombardier NGT6, Bombardier NGT8, PESA 2014N Krakowiak, Newag Nevelo 126N" data-translate="low_floor_sign">&#x267F;</span> - <span data-translate="low_floor_description">low-floor tram</span>.
+						<span class="bigger" title="Düwag/Man/MPK N8C-NF, Düwag/MPK GT8C, Bombardier-Rotax/MPK EU8N, Protram 405N-Kr" data-translate="partially_low_floor_sign">*&#x267F;</span> - <span data-translate="partially_low_floor_description">partially low-floor tram</span>.
+						<span class="bigger" title="other tram types" data-translate="high_floor_sign">&#x2010;</span> - <span data-translate="high_floor_description">high-floor tram</span>.
+						<span data-translate="help_hover_for_more">Hover the icon for more details.</span>
+					</p>
 					
-					<p class="small">&copy; 2016 Jacek Kowalski - <a href="https://github.com/jacekkow/mpk-ttss">Source</a> - <a href="https://raw.githubusercontent.com/jacekkow/mpk-ttss/master/LICENSE">License</a></p>
+					<p class="small" data-translate="help_text">Relative times (eg. 3 min) are real-time arrivals based on tram location data. Absolute times (eg. 8:01) are scheduled departures, shown when the tram cannot be located. "?" means unknown delay.</p>
+					
+					<p class="small">&copy; 2016-2017 Jacek Kowalski - <a href="https://github.com/jacekkow/mpk-ttss" data-translate="help_source">Source</a> - <a href="https://raw.githubusercontent.com/jacekkow/mpk-ttss/master/LICENSE" data-translate="help_license">License</a></p>
 				</div>
 			</div>
 		</div>
 		<script src="https://code.jquery.com/jquery-3.1.1.min.js" integrity="sha384-3ceskX3iaEnIogmQchP8opvBy3Mi7Ce34nWjpBIwVTHfGYWQS9jwHDVRnpKKHJg7"  crossorigin="anonymous"></script>
+		<script tyle="text/javascript" src="lang_en.js" id="lang_script"></script>
+		<script tyle="text/javascript" src="common.js"></script>
 		<script type="text/javascript" src="index.js"></script>
 	</body>
 </html>

--
Gitblit v1.9.1