Rev 117 |
    Rev 140 |
    Go to most recent revision |
    Blame |
    Compare with Previous |
    Last modification |
    View Log
    | RSS feed
  
  
    1
  
  
<?php
$encoding = 'UTF-8';
header("Content-Type: text/html" . ($encoding ? 
"; charset=$encoding" : ""));
$modi = max(array(
  @filemtime(__FILE__),
  @filemtime('LocaleData'),
  @filemtime('index.phtml'),
  @filemtime('styles/lcars-basic.css'),
  @filemtime('styles/lcars22.css'),
  @filemtime('styles/lcars-ani.css'),
  @filemtime('scripts/object.js'),
));
header('Last-Modified: ' . gmdate('D, d M Y H:i:s', $modi) . ' GMT');
/* Cached resource expires in HTTP/1.1 caches 24h after last retrieval */
header('Cache-Control: max-age=86400, s-maxage=86400, must-revalidate, proxy-revalidate');
/* Cached resource expires in HTTP/1.0 caches 24h after last retrieval */
header('Expires: ' . gmdate('D, d M Y H:i:s', time() + 86400) . ' GMT');
$languages = array(
  'en' => 'English',
  'de' => 'Deutsch'
);
/* Specify location of translation tables */
$textDomain = 'de.pointedears';
$baseDir = './LocaleData';
// bindtextdomain($textdomain, $baseDir);
/* Choose domain */
// textdomain("de.pointedears");
/* Translation is looking for in ./LocaleData/de/LC_MESSAGES/de.pointedears.mo now */
/* TODO: Use Autoloader */
require_once 'Zend\Stdlib\ErrorHandler.php';
require_once 'Zend\I18n\Translator\TextDomain.php';
require_once 'Zend\I18n\Translator\Loader\FileLoaderInterface.php';
require_once 'Zend\I18n\Translator\Loader\Gettext.php';
require_once 'Zend\ServiceManager\ServiceLocatorAwareInterface.php';
require_once 'Zend\ServiceManager\ServiceLocatorInterface.php';
require_once 'Zend\ServiceManager\ServiceManager.php';
require_once 'Zend\ServiceManager\AbstractPluginManager.php';
require_once 'Zend\I18n\Translator\LoaderPluginManager.php';
require_once 'Zend\I18n\Translator\Translator.php';
use Zend\I18n\Translator\Translator
;
$translator = new Translator
();
$type = 'gettext';
$pattern = '%s/LC_MESSAGES/%1$s.pointedears.mo';
$translator->addTranslationFilePattern($type, $baseDir, $pattern, $textDomain);
function _
($s)
{
  global $translator;
  global $textDomain;
  global $language;
  
  return $translator->translate($s, $textDomain, $language);
}
$menu = array(
  'scripts'   => array('path' => 'scripts/', 'text' => 'Scripting'),
  'es-matrix' => array(
    'path'  => 'es-matrix',
    'text'  => 'ES Matrix',
    'title' => 'ECMAScript Support Matrix: ' . _
("A comparison of features of ECMAScript implementations")
  ),
  'devel'     => array('path' => 'devel/',   'text' => _
('Other software')),
  'series'    => array('path' => "media/video/series/", 'text' => 'Seri-o-meter'),
  'ufpdb'     => array(
    'path'  => "ufpdb/index.$language",
    'text'  => 'UFPDB',
    'title' => _
('United Federation of Planets DataBase')
  )
);