Files
weewx/skins/Smartphone/wind.html.tmpl
roe-dl 4bc5306abc german localization for Mobile and Smartphone skins (#675)
* german localization for Mobile and Smartphone skins

* changes for better german translation
2021-05-29 14:49:44 -07:00

45 lines
1.6 KiB
Cheetah

#encoding UTF-8
<!DOCTYPE html>
<html lang="$gettext.lang">
<head>
<meta charset="UTF-8">
<title>$obs.label.wind $gettext["in"] $station.location</title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.css" />
<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div data-role="page" data-add-back-btn="true" data-theme="a">
<div data-role="header">
<h1>$obs.label.wind</h1>
</div>
<div data-role="content">
<h4>$gettext["24h wind"]</h4>
<img src="daywind.png"/>
<img src="daywinddir.png"/>
<p>
$gettext["max"]: $day.windSpeed.max $gettext["at"] $day.windSpeed.maxtime
$gettext["max gust"]: $day.windGust.max $gettext["at"] $day.windGust.maxtime
</p>
<h4>$gettext["Last 7 days"] $obs.label.wind</h4>
<img src="weekwind.png" />
<img src="weekwinddir.png" />
<p>
$gettext["max"]: $week.windSpeed.max $gettext["at"] $week.windSpeed.maxtime
$gettext["max gust"]: $week.windGust.max $gettext["at"] $week.windGust.maxtime
</p>
<h4>$gettext["Last 30 days"] $obs.label.wind</h4>
<img src="monthwind.png" />
<img src="monthwinddir.png" />
<p>
$gettext["max"]: $month.windSpeed.max $gettext["at"] $month.windSpeed.maxtime
$gettext["max gust"]: $month.windGust.max $gettext["at"] $month.windGust.maxtime
</p>
</div>
<div data-role="footer">
<h4>WeeWX v$station.version</h4>
</div>
</div>
</body>