blob: eb1c606a7c218670bd389a5bb1299c85debd5b61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?php
// Settings for german version:
$status = new Status("LIVE Plugin Status",
"Aktuelle stabile Version",
"0.2.0",
"d.m.Y");
$menu = new Menu(array("index.php" => "Über Live",
"news.php" => "Neuerungen",
"download.php" => "Download",
"screenshots.php" => "Screenshots",
"index.php#links" => "Links und Kontakt"
));
$screenshots = new Screenshots(array("whatson",
"schedule",
"timers",
"searchepg",
"edit_searchtimer",
"recordings",
"remote",
"setup"));
?>
|