Subversion Repositories LCARS

Rev

Rev 71 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
63 PointedEar 1
<?php
2
 
3
$encoding = 'UTF-8';
4
header("Content-Type: text/html" . ($encoding ? "; charset=$encoding" : ""));
5
 
6
$modi = max(array(
7
  @filemtime(__FILE__),
8
  @filemtime('index.phtml'),
9
));
10
 
11
header('Last-Modified: ' . gmdate('D, d M Y H:i:s', $modi) . ' GMT');
12
 
13
/* Cached resource expires in HTTP/1.1 caches 24h after last retrieval */
14
header('Cache-Control: max-age=0, s-maxage=0, must-revalidate, proxy-revalidate');
15
 
16
/* Cached resource expires in HTTP/1.0 caches 24h after last retrieval */
17
header('Expires: ' . gmdate('D, d M Y H:i:s', time() /*+ 86400*/) . ' GMT');
18
 
19
$languages = array(
20
  'en' => 'English',
21
  'de' => 'Deutsch'
22
);
23
 
24
/* Specify location of translation tables */
25
bindtextdomain("de.pointedears", "./LocaleData");
26
 
27
/* Choose domain */
28
textdomain("de.pointedears");
29
 
30
/* Translation is looking for in ./LocaleData/de_DE/LC_MESSAGES/de.pointedears.mo now */
31
 
32
$menu = array(
33
  'scripts' => array('path' => 'scripts/', 'text' => 'Scripting'),
34
  'devel'   => array('path' => 'devel/',   'text' => _('Other software')),
35
  'series'  => array('path' => "media/video/series/", 'text' => 'Seri-o-meter'),
36
  'ufpdb'   => array(
37
    'path'  => "ufpdb/index.$language",
38
    'text'  => 'UFPDB',
39
    'title' => _('United Federation of Planets DataBase')
40
  )
41
);