mirror of
https://github.com/Mibew/tray.git
synced 2025-01-22 18:10:34 +03:00
normalize titles
git-svn-id: https://webim.svn.sourceforge.net/svnroot/webim/trunk@634 c66351dc-e62f-0410-b875-e3a5c0b9693f
This commit is contained in:
parent
509a1bde39
commit
d1b95496ad
@ -3,6 +3,7 @@ $page = 'home';
|
||||
$subpage = 'contacts';
|
||||
require_once('libs/common.php');
|
||||
start_html_output();
|
||||
$title = getlocal("contacts.title");
|
||||
require_once('inc/header.i');
|
||||
require_once('inc/menu.i');
|
||||
?>
|
||||
|
@ -3,6 +3,7 @@ $page = 'home';
|
||||
$subpage = 'credits';
|
||||
require_once('libs/common.php');
|
||||
start_html_output();
|
||||
$title = getlocal("credits.title");
|
||||
require_once('inc/header.i');
|
||||
require_once('inc/menu.i');
|
||||
?>
|
||||
|
@ -3,6 +3,7 @@ $page = 'demo';
|
||||
$subpage = "demo";
|
||||
require_once('libs/common.php');
|
||||
start_html_output();
|
||||
$title = getlocal("demo.title");
|
||||
require_once('inc/header.i');
|
||||
require_once('inc/menu.i');
|
||||
?>
|
||||
|
@ -2,6 +2,7 @@
|
||||
$page = 'downl';
|
||||
require_once('libs/common.php');
|
||||
start_html_output();
|
||||
$title = getlocal("downl.title");
|
||||
require_once('inc/header.i');
|
||||
require_once('inc/menu.i');
|
||||
?>
|
||||
|
@ -3,6 +3,7 @@ $page = 'demo';
|
||||
$subpage = "features";
|
||||
require_once('libs/common.php');
|
||||
start_html_output();
|
||||
$title = getlocal("features.title");
|
||||
require_once('inc/header.i');
|
||||
require_once('inc/menu.i');
|
||||
?>
|
||||
|
@ -2,7 +2,7 @@
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
||||
<title><?php echo getlocal("title") ?></title>
|
||||
<title><?php echo $title ?> - <?php echo getlocal("title") ?></title>
|
||||
<link href="default.css" rel="stylesheet" type="text/css" />
|
||||
<link rel="shortcut icon" href="/images/favicon.ico" type="image/x-icon"/>
|
||||
</head>
|
||||
|
@ -3,6 +3,7 @@ $page = 'home';
|
||||
$subpage = 'news';
|
||||
require_once('libs/common.php');
|
||||
start_html_output();
|
||||
$title = getlocal("home.title");
|
||||
require_once('inc/header.i');
|
||||
require_once('inc/menu.i');
|
||||
?>
|
||||
@ -17,7 +18,6 @@ require_once('inc/menu.i');
|
||||
<h2 class="title"><?php echo getlocal("index.how.title") ?></h2>
|
||||
<div class="entry">
|
||||
<p><?php echo getlocal("index.how.text") ?></p>
|
||||
<p><?php echo getlocal("index.license") ?></p>
|
||||
|
||||
</div>
|
||||
<div class="nometa"></div>
|
||||
|
@ -3,6 +3,7 @@ $page = 'home';
|
||||
$subpage = 'terms';
|
||||
require_once('libs/common.php');
|
||||
start_html_output();
|
||||
$title = getlocal("license.title");
|
||||
require_once('inc/header.i');
|
||||
require_once('inc/menu.i');
|
||||
?>
|
||||
|
@ -17,6 +17,7 @@ menu.download=Download
|
||||
menu.support=Forum
|
||||
menu.ticket=Support
|
||||
|
||||
home.title=Home
|
||||
submenu.title=<b>More</b>
|
||||
partners.title=<b>partners</b>
|
||||
languages.title=<b>languages</b>
|
||||
@ -78,7 +79,7 @@ features.browsers=<ul>\n<li>Microsoft Internet Explorer 5.0+</li>\n<li>Mozilla F
|
||||
|
||||
features.content.head=Content:
|
||||
|
||||
demo.title=DEMO
|
||||
demo.title=Demo
|
||||
demo.login=1. Log into operator panel and navigate to "Awaiting visitors" page.
|
||||
demo.click=2. Start a chat
|
||||
demo.tryalpha=3. (optional) Try out a new alpha (next version is coming soon)
|
||||
|
@ -1,27 +0,0 @@
|
||||
<?php
|
||||
$page = 'supp';
|
||||
require_once('libs/common.php');
|
||||
start_html_output();
|
||||
require_once('inc/header.i');
|
||||
require_once('inc/menu.i');
|
||||
?>
|
||||
|
||||
<div id="container">
|
||||
<div id="content">
|
||||
<h3><?php echo getlocal("support.title") ?></h3>
|
||||
<p>
|
||||
<div id="downl">
|
||||
<a href="http://openwebim.org/tutorials.php">
|
||||
<?php echo getlocal("support.tutorials") ?>
|
||||
</a>
|
||||
<p></p>
|
||||
<a href="http://openwebim.org/screenshots.php">
|
||||
<?php echo getlocal("support.ScreenShots") ?>
|
||||
</a>
|
||||
<p></p>
|
||||
<a href="http://openwebim.org/faq.php">
|
||||
<?php echo ("FAQ") ?>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<?php require_once('inc/footer.i'); ?>
|
Loading…
Reference in New Issue
Block a user