зеркало из https://github.com/mozilla/pjs.git
Bug #298460 --> Use xhtml files in content instead of html files in locale for the mail start page
and the credits page. Patch by Pavel Franc <p.franc@gmail.com>
This commit is contained in:
Родитель
5f26635e55
Коммит
6d90141465
|
@ -88,7 +88,7 @@
|
|||
|
||||
var iframe = document.getElementById("creditsIframe");
|
||||
if (gSelectedPage == 0) {
|
||||
iframe.setAttribute("src", "chrome://messenger/locale/credits.html");
|
||||
iframe.setAttribute("src", "chrome://messenger/content/credits.xhtml");
|
||||
button.setAttribute("label", document.documentElement.getAttribute("aboutlabel"));
|
||||
gSelectedPage = 1;
|
||||
}
|
||||
|
@ -114,7 +114,7 @@
|
|||
</vbox>
|
||||
|
||||
<vbox flex="1" id="creditsBox">
|
||||
<html:iframe style="border: 0px;" id="creditsIframe" src="chrome://messenger/locale/credits.html" flex="1"/>
|
||||
<html:iframe style="border: 0px;" id="creditsIframe" src="chrome://messenger/content/credits.xhtml" flex="1"/>
|
||||
</vbox>
|
||||
</deck>
|
||||
|
||||
|
|
|
@ -0,0 +1,373 @@
|
|||
<!-- -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
||||
# ***** BEGIN LICENSE BLOCK *****
|
||||
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
#
|
||||
# The contents of this file are subject to the Mozilla Public License Version
|
||||
# 1.1 (the "License"); you may not use this file except in compliance with
|
||||
# the License. You may obtain a copy of the License at
|
||||
# http://www.mozilla.org/MPL/
|
||||
#
|
||||
# Software distributed under the License is distributed on an "AS IS" basis,
|
||||
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
# for the specific language governing rights and limitations under the
|
||||
# License.
|
||||
#
|
||||
# The Original Code is Thunderbird Credits.
|
||||
#
|
||||
# The Initial Developer of the Original Code is Ben Goodger.
|
||||
# Portions created by the Initial Developer are Copyright (C) 2004
|
||||
# the Initial Developer. All Rights Reserved.
|
||||
#
|
||||
# Contributor(s):
|
||||
# Ben Goodger <ben@mozilla.org>
|
||||
# David Baron <dbaron@mozilla.org>
|
||||
#
|
||||
# Alternatively, the contents of this file may be used under the terms of
|
||||
# either the GNU General Public License Version 2 or later (the "GPL"), or
|
||||
# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||
# in which case the provisions of the GPL or the LGPL are applicable instead
|
||||
# of those above. If you wish to allow use of your version of this file only
|
||||
# under the terms of either the GPL or the LGPL, and not to allow others to
|
||||
# use your version of this file under the terms of the MPL, indicate your
|
||||
# decision by deleting the provisions above and replace them with the notice
|
||||
# and other provisions required by the GPL or the LGPL. If you do not delete
|
||||
# the provisions above, a recipient may use your version of this file under
|
||||
# the terms of any one of the MPL, the GPL or the LGPL.
|
||||
#
|
||||
# ***** END LICENSE BLOCK *****
|
||||
-->
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
|
||||
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"
|
||||
[
|
||||
<!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd">
|
||||
%brandDTD;
|
||||
<!ENTITY % creditsDTD SYSTEM "chrome://messenger/locale/credits.dtd">
|
||||
%creditsDTD;
|
||||
<!ENTITY % licenseDTD SYSTEM "chrome://global/locale/license.dtd">
|
||||
%licenseDTD;
|
||||
]
|
||||
>
|
||||
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>&credit.title;</title>
|
||||
|
||||
<style>
|
||||
html {
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
* {
|
||||
cursor: default;
|
||||
-moz-user-select: none;
|
||||
}
|
||||
|
||||
#titleBox {
|
||||
position: fixed;
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
right: 0px;
|
||||
bottom: auto;
|
||||
z-index: 999;
|
||||
}
|
||||
|
||||
#footerBox {
|
||||
position: fixed;
|
||||
left: 0px;
|
||||
top: auto;
|
||||
right: 0px;
|
||||
bottom: 0px;
|
||||
z-index: 999;
|
||||
}
|
||||
|
||||
#creditsBox {
|
||||
position: absolute;
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
overflow: hidden;
|
||||
z-index: 1;
|
||||
height: 275px;
|
||||
width: 280px;
|
||||
margin-left: 10px;
|
||||
margin-right: 10px;
|
||||
font-family: Arial, sans-serif;
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-weight: bold;
|
||||
font-size: small;
|
||||
text-align: center;
|
||||
margin: 15px 0px 5px 0px;
|
||||
}
|
||||
|
||||
.creditsGroup {
|
||||
margin-bottom: 1px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.footnote {
|
||||
font-size: x-small;
|
||||
text-align: justify;
|
||||
}
|
||||
|
||||
h2.title {
|
||||
margin-top: 200px;
|
||||
margin-bottom: 100px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.motto {
|
||||
margin-top: 2px;
|
||||
font-style: italic;
|
||||
font-size: small;
|
||||
font-weight: normal;
|
||||
padding-left: 2em;
|
||||
}
|
||||
|
||||
#gecko {
|
||||
margin-top: 100px;
|
||||
margin-bottom: 100px;
|
||||
font-size: medium;
|
||||
}
|
||||
|
||||
a {
|
||||
color: blue;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
ul {
|
||||
margin-top: 0px;
|
||||
margin-left: 0px;
|
||||
padding-left: 0px;
|
||||
}
|
||||
|
||||
li {
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
.center {
|
||||
text-align: center;
|
||||
}
|
||||
</style>
|
||||
|
||||
<script type="application/x-javascript" src="chrome://global/content/globalOverlay.js"></script>
|
||||
<script type="application/x-javascript">
|
||||
<![CDATA[
|
||||
|
||||
var gCreditsInterval = -1;
|
||||
|
||||
function uninit()
|
||||
{
|
||||
if (gCreditsInterval > -1)
|
||||
clearInterval(gCreditsInterval);
|
||||
}
|
||||
|
||||
function init()
|
||||
{
|
||||
var cb = document.getElementById("creditsBox");
|
||||
cb.scrollTop = 0;
|
||||
setTimeout(runCredits, 3000);
|
||||
}
|
||||
|
||||
function runCredits()
|
||||
{
|
||||
gCreditsInterval = setInterval("creditsCallback()", 25);
|
||||
}
|
||||
|
||||
function creditsCallback()
|
||||
{
|
||||
var cb = document.getElementById("creditsBox");
|
||||
var newtop = cb.scrollTop + 1;
|
||||
cb.scrollTop = newtop;
|
||||
if (cb.scrollTop != newtop) {
|
||||
// we're at the bottom
|
||||
clearInterval(gCreditsInterval);
|
||||
setTimeout(function() { cb.scrollTop = 0 }, 3000);
|
||||
}
|
||||
}
|
||||
|
||||
]]>
|
||||
</script>
|
||||
</head>
|
||||
<body onload="init();" onunload="uninit();">
|
||||
<div id="titleBox">
|
||||
<img src="chrome://branding/content/about-credits.png" />
|
||||
</div>
|
||||
|
||||
<div id="creditsBox">
|
||||
<h2 class="title">&brandFullName;™
|
||||
<div class="motto">&brandMotto;</div>
|
||||
</h2>
|
||||
|
||||
<div class="creditsGroup">
|
||||
<h3>&credit.leads;</h3>
|
||||
<div class="credit">David Bienvenu</div>
|
||||
<div class="credit">Scott MacGregor</div>
|
||||
|
||||
<h3>&credit.thanks;</h3>
|
||||
<div class="credit">
|
||||
<ul>
|
||||
<li>Brendan Eich</li>
|
||||
<li>Darin Fisher</li>
|
||||
<li>Ben Goodger</li>
|
||||
<li>Jason Kersey</li>
|
||||
<li>Myk Melez</li>
|
||||
<li>Brian Ryner</li>
|
||||
<li>Jungshik Shin</li>
|
||||
<li>Seth Spitzer</li>
|
||||
<li>Stephen Walker</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
&credit.translation;
|
||||
</div>
|
||||
|
||||
<div class="creditsGroup">
|
||||
<h3>&credit.visuals;</h3>
|
||||
<div class="credit">Steven Garrity</div>
|
||||
|
||||
<h3>&credit.theme;</h3>
|
||||
<div class="credit">
|
||||
<ul>
|
||||
<li>Arvid Axelsson</li>
|
||||
<li>Kevin Gerich</li>
|
||||
<li>Stephen Horlander</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<h3>&credit.brand;</h3>
|
||||
<div class="credit">
|
||||
<ul>
|
||||
<li>Daniel Burka</li>
|
||||
<li>Stephen Desroches</li>
|
||||
<li>Jasper Hauser</li>
|
||||
<li>Jon Hicks</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<h3>&credit.web;</h3>
|
||||
<div class="credit">Dave Shea</div>
|
||||
</div>
|
||||
|
||||
<div class="creditsGroup">
|
||||
<h3>&credit.qa;</h3>
|
||||
<div class="credit">
|
||||
<ul>
|
||||
<li>Mike Cowperthwaite</li>
|
||||
<li>Asa Dotzler</li>
|
||||
<li>Marcia Knous</li>
|
||||
<li>Sarah Liberman</li>
|
||||
<li>MozillaZine Community</li>
|
||||
<li>Jay Patel</li>
|
||||
<li>Trix Supremo</li>
|
||||
<li>Tracy Walker</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<h3>&credit.thanks;</h3>
|
||||
<div class="credit">
|
||||
<ul>
|
||||
<li>David Baron</li>
|
||||
<li>Jon Baumgartner</li>
|
||||
<li>Zbigniew Braniecki</li>
|
||||
<li>Christopher Beard</li>
|
||||
<li>Stefan Borggraefe</li>
|
||||
<li>Don Crandall</li>
|
||||
<li>André Dahlqvist</li>
|
||||
<li>Christian Eyrich</li>
|
||||
<li>silverorange</li>
|
||||
<li>Neil Rashbrook</li>
|
||||
<li>Robert Sayre</li>
|
||||
<li>Benjamin Smedberg</li>
|
||||
<li>Johnny Stenback</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<h3>&credit.build;</h3>
|
||||
<div class="credit">
|
||||
<ul>
|
||||
<li>Chase Phillips</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<h3>&credit.infra;</h3>
|
||||
<div class="credit">Myk Melez</div>
|
||||
|
||||
<h3>&credit.support;</h3>
|
||||
<div class="credit">
|
||||
<ul>
|
||||
<li>Jason Kersey</li>
|
||||
<li>David Tenser</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<h3>&credit.thanks;</h3>
|
||||
<div class="credit">
|
||||
<ul>
|
||||
<li>MozillaZine Community</li>
|
||||
<li>MozillaZine</li>
|
||||
<li>MozDev</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="creditsGroup">
|
||||
<h3>&credit.manage;</h3>
|
||||
<div class="credit">
|
||||
<ul>
|
||||
<li>David Bienvenu</li>
|
||||
<li>Chris Hofmann</li>
|
||||
<li>Scott MacGregor</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<h3>&credit.market;</h3>
|
||||
<div class="credit">
|
||||
<ul>
|
||||
<li>Bart Decrem</li>
|
||||
<li>Rafael Ebron</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<p id="gecko" class="center">&credit.poweredByGecko;</p>
|
||||
|
||||
<p class="footnote">
|
||||
&brandFullName;™ &license.part0; copyright ©1998-2005 &license.part1;
|
||||
<a href="" link="about:credits" onclick="visitLink(event);">&license.contrib;</a>,
|
||||
&license.part2;
|
||||
<a href="" link="chrome://global/content/MPL-1.1.html" onclick="visitLink(event);">Mozilla Public License</a>
|
||||
&license.and;
|
||||
<a href="" link="chrome://global/content/NPL-1.1.html" onclick="visitLink(event);">Netscape Public License</a>&license.part3;</p>
|
||||
|
||||
<p class="footnote">
|
||||
Portions of this software are Copyright ©1994 The Regents of the
|
||||
University of California. All Rights Reserved.</p>
|
||||
|
||||
<p class="footnote">
|
||||
This software may contain portions that are Copyright ©1998-2005
|
||||
SupportSoft, Inc. All Rights Reserved.</p>
|
||||
|
||||
<p class="footnote">
|
||||
Mozilla Thunderbird™ and the Thunderbird logo are trademarks of the Mozilla
|
||||
Foundation. You are not granted rights or licenses to the trademarks
|
||||
of the Mozilla Foundation or any party, including without limitation the
|
||||
Thunderbird name or logo.</p>
|
||||
|
||||
<p class="footnote">
|
||||
U.S. GOVERNMENT END USERS. The Software is a “commercial item,”
|
||||
as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of
|
||||
“commercial computer software” and “commercial computer software
|
||||
documentation,” as such terms are used in 48 C.F.R. 12.212 (Sept. 1995).
|
||||
Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through
|
||||
227.7202-4 (June 1995), all U.S. Government End Users acquire the
|
||||
Software with only those rights set forth herein.</p>
|
||||
</div>
|
||||
|
||||
<div id="footerBox">
|
||||
<img src="chrome://messenger/content/about-footer.png"/>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,159 @@
|
|||
<!-- -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
||||
# ***** BEGIN LICENSE BLOCK *****
|
||||
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
#
|
||||
# The contents of this file are subject to the Mozilla Public License Version
|
||||
# 1.1 (the "License"); you may not use this file except in compliance with
|
||||
# the License. You may obtain a copy of the License at
|
||||
# http://www.mozilla.org/MPL/
|
||||
#
|
||||
# Software distributed under the License is distributed on an "AS IS" basis,
|
||||
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
# for the specific language governing rights and limitations under the
|
||||
# License.
|
||||
#
|
||||
# The Original Code is Thunderbird Credits.
|
||||
#
|
||||
# The Initial Developer of the Original Code is Ben Goodger.
|
||||
# Portions created by the Initial Developer are Copyright (C) 2004
|
||||
# the Initial Developer. All Rights Reserved.
|
||||
#
|
||||
# Contributor(s):
|
||||
# David Tenser <tenser@gmail.com>
|
||||
#
|
||||
# Alternatively, the contents of this file may be used under the terms of
|
||||
# either the GNU General Public License Version 2 or later (the "GPL"), or
|
||||
# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||
# in which case the provisions of the GPL or the LGPL are applicable instead
|
||||
# of those above. If you wish to allow use of your version of this file only
|
||||
# under the terms of either the GPL or the LGPL, and not to allow others to
|
||||
# use your version of this file under the terms of the MPL, indicate your
|
||||
# decision by deleting the provisions above and replace them with the notice
|
||||
# and other provisions required by the GPL or the LGPL. If you do not delete
|
||||
# the provisions above, a recipient may use your version of this file under
|
||||
# the terms of any one of the MPL, the GPL or the LGPL.
|
||||
#
|
||||
# ***** END LICENSE BLOCK *****
|
||||
-->
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
|
||||
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"
|
||||
[
|
||||
<!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd">
|
||||
%brandDTD;
|
||||
<!ENTITY % startDTD SYSTEM "chrome://messenger/locale/start.dtd">
|
||||
%startDTD;
|
||||
]
|
||||
>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>&startpage.welcome;</title>
|
||||
<style type="text/css" media="screen,projection">
|
||||
body {
|
||||
font-family: Tahoma, Verdana, sans, sans-serif;
|
||||
margin: 0px;
|
||||
background: url(startpage-back.png) repeat-y top right white;
|
||||
}
|
||||
|
||||
h1 {
|
||||
color: white;
|
||||
background: url(startpage-h1.png) no-repeat transparent;
|
||||
font-weight: normal;
|
||||
height: 50px;
|
||||
padding: 0.3ex 0.3ex 0.3ex 25px;
|
||||
margin: 0px;
|
||||
font-size: 160%;
|
||||
}
|
||||
|
||||
h2 {
|
||||
color: #445;
|
||||
background: transparent url(startpage-h2.png) no-repeat bottom left;
|
||||
width: 400px;
|
||||
height: 20px;
|
||||
font-weight: normal;
|
||||
font-size: 100%;
|
||||
letter-spacing: 2px;
|
||||
margin-left: -25px;
|
||||
padding: 0px 0px 0px 25px;
|
||||
}
|
||||
|
||||
#indent {
|
||||
margin-left: 25px;
|
||||
margin-right: 25px;
|
||||
background: url(chrome://branding/content/thunderbird-watermark.png) no-repeat top right;
|
||||
min-height: 280px;
|
||||
}
|
||||
|
||||
p, li {
|
||||
font-size: 85%;
|
||||
letter-spacing: 1px;
|
||||
}
|
||||
|
||||
ul {
|
||||
margin-left: 30px;
|
||||
padding-left: 0px;
|
||||
line-height: 1.2em;
|
||||
}
|
||||
|
||||
li {
|
||||
list-style-image: url(startpage-li.png)
|
||||
}
|
||||
|
||||
a:link, a:visited {
|
||||
background: transparent;
|
||||
text-decoration: none;
|
||||
color: #006;
|
||||
}
|
||||
|
||||
a:active, a:hover {
|
||||
background: #f2f2f8;
|
||||
color: #009;
|
||||
-moz-border-radius: 10px;
|
||||
}
|
||||
|
||||
#gecko {
|
||||
font-size: 80%;
|
||||
position: fixed;
|
||||
bottom: 0px;
|
||||
left: 0px;
|
||||
text-align: right;
|
||||
color: #fff;
|
||||
background: url(startpage-gecko.png) no-repeat top right;
|
||||
width: 100%;
|
||||
height: 19px;
|
||||
padding-top: 1px;
|
||||
}
|
||||
|
||||
#gecko a:link, #gecko a:visited {
|
||||
color: #fff;
|
||||
background: transparent;
|
||||
padding-right: 5px;
|
||||
}
|
||||
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>&startpage.welcome;</h1>
|
||||
|
||||
<div id="indent">
|
||||
<p>&startpage.intro;</p>
|
||||
<h2>&startpage.features;</h2>
|
||||
<ul>
|
||||
<li><a href="&startpage.junkControlURL;">&startpage.junkControl;</a></li>
|
||||
<li><a href="&startpage.rssReaderURL;">&startpage.rssReader;</a></li>
|
||||
<li><a href="&startpage.globalInboxURL;">&startpage.globalInbox;</a></li>
|
||||
<li><a href="&startpage.searchFoldersURL;">&startpage.searchFolders;</a></li>
|
||||
<li><a href="&startpage.messageGroupsURL;">&startpage.messageGroups;</a></li>
|
||||
<li><a href="&startpage.privacyProtectURL;">&startpage.privacyProtect;</a></li>
|
||||
</ul>
|
||||
|
||||
<h2>&startpage.moreInfo;</h2>
|
||||
<p>&startpage.helpInfo; <a href="&startpage.helpURL;">&startpage.help;</a>.</p>
|
||||
<p>&startpage.pageInfo; <a href="&startpage.pageURL;">&startpage.page;</a>.</p>
|
||||
</div>
|
||||
|
||||
<div id="gecko"><a href="http://www.mozilla.org/">&startpage.poweredByGecko;</a></div>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
Двоичный файл не отображается.
После Ширина: | Высота: | Размер: 12 KiB |
Двоичный файл не отображается.
После Ширина: | Высота: | Размер: 3.2 KiB |
Двоичный файл не отображается.
После Ширина: | Высота: | Размер: 2.8 KiB |
|
@ -36,6 +36,13 @@ messenger.jar:
|
|||
* content/messenger/phishingDetector.js (content/phishingDetector.js)
|
||||
content/messenger/about-footer.png (content/about-footer.png)
|
||||
content/messenger/aboutDialog.css (content/aboutDialog.css)
|
||||
* content/messenger/credits.xhtml (content/credits.xhtml)
|
||||
content/messenger/start.xhtml (content/start.xhtml)
|
||||
content/messenger/startpage-h1.png (content/startpage-h1.png)
|
||||
content/messenger/startpage-h2.png (content/startpage-h2.png)
|
||||
content/messenger/startpage-back.png (content/startpage-back.png)
|
||||
content/messenger/startpage-li.png (content/startpage-li.png)
|
||||
content/messenger/startpage-gecko.png (content/startpage-gecko.png)
|
||||
content/messenger/messenger.css (content/messenger.css)
|
||||
* content/messenger/search.xml (content/search.xml)
|
||||
#ifndef MOZ_USE_OFFICIAL_BRANDING
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#
|
||||
# messenger.properties
|
||||
# mailnews.js
|
||||
mailnews.start_page.url=chrome://messenger/locale/start.html
|
||||
mailnews.start_page.url=chrome://messenger/content/start.xhtml
|
||||
mailnews.release_notes.url=http://www.mozilla.org/products/thunderbird/releases/
|
||||
mailnews.hints_and_tips.url=http://www.mozilla.org/support/thunderbird/
|
||||
messenger.throbber.url=http://www.mozilla.org/products/thunderbird/
|
||||
|
|
|
@ -0,0 +1,30 @@
|
|||
<!ENTITY credit.title "&brandFullName; Credits">
|
||||
<!ENTITY brandMotto "Thunderbirds Are Go!">
|
||||
<!ENTITY credit.leads "Engineering Leads">
|
||||
<!ENTITY credit.core "Core Development Posse">
|
||||
<!ENTITY credit.gecko "Gecko Layout Engine">
|
||||
<!ENTITY credit.thanks "Special Thanks To">
|
||||
|
||||
<!-- localization credits look like this: -->
|
||||
<!--
|
||||
<!ENTITY credit.translation
|
||||
"<h3>Translators</h3><ul><li>Name Here</li></ul>">
|
||||
-->
|
||||
<!ENTITY credit.translation "">
|
||||
|
||||
<!ENTITY credit.visuals "Visual Design Coordinator">
|
||||
<!ENTITY credit.theme "Theme Design">
|
||||
<!ENTITY credit.brand "Brand Identity">
|
||||
<!ENTITY credit.web "Web Design">
|
||||
<!ENTITY credit.update "Mozilla Update">
|
||||
<!ENTITY credit.qalead "Quality Assurance Lead">
|
||||
<!ENTITY credit.qa "Quality Assurance">
|
||||
<!ENTITY credit.build "Build and Release">
|
||||
<!ENTITY credit.infra "Infrastructure Support">
|
||||
<!ENTITY credit.support "Support Resources">
|
||||
<!ENTITY credit.manage "Project Management">
|
||||
<!ENTITY credit.marketleads "Marketing Leads">
|
||||
<!ENTITY credit.market "Marketing">
|
||||
<!ENTITY credit.creators "Created By">
|
||||
<!ENTITY credit.memory "In Fond Memory Of">
|
||||
<!ENTITY credit.poweredByGecko "Powered by Gecko™">
|
|
@ -0,0 +1,30 @@
|
|||
<!ENTITY startpage.welcome "Welcome to &brandFullName;!">
|
||||
<!ENTITY startpage.intro "&brandFullName; is a powerful, open-source mail and news client.">
|
||||
|
||||
<!ENTITY startpage.features "Features">
|
||||
|
||||
<!ENTITY startpage.junkControl "Adaptive Junk Mail Controls">
|
||||
<!ENTITY startpage.rssReader "RSS Reader">
|
||||
<!ENTITY startpage.globalInbox "Global Inbox Support">
|
||||
<!ENTITY startpage.searchFolders "Saved Search Folders">
|
||||
<!ENTITY startpage.messageGroups "Message Grouping">
|
||||
<!ENTITY startpage.privacyProtect "Privacy Protection">
|
||||
|
||||
<!ENTITY startpage.junkControlURL "http://www.mozilla.org/products/thunderbird/junkmail.html">
|
||||
<!ENTITY startpage.rssReaderURL "http://www.mozilla.org/products/thunderbird/rss.html">
|
||||
<!ENTITY startpage.globalInboxURL "http://www.mozilla.org/products/thunderbird/global-inbox.html">
|
||||
<!ENTITY startpage.searchFoldersURL "http://www.mozilla.org/products/thunderbird/search-folders.html">
|
||||
<!ENTITY startpage.messageGroupsURL "http://www.mozilla.org/products/thunderbird/message-grouping.html">
|
||||
<!ENTITY startpage.privacyProtectURL "http://www.mozilla.org/products/thunderbird/privacy-protection.html">
|
||||
|
||||
<!ENTITY startpage.moreInfo "More Information">
|
||||
|
||||
<!ENTITY startpage.help "Thunderbird Help">
|
||||
<!ENTITY startpage.helpInfo "For frequently asked questions, tips and general help, visit">
|
||||
<!ENTITY startpage.helpURL "http://www.mozilla.org/support/thunderbird/">
|
||||
|
||||
<!ENTITY startpage.page "Thunderbird Product Page">
|
||||
<!ENTITY startpage.pageInfo "For product information, visit the">
|
||||
<!ENTITY startpage.pageURL "http://www.mozilla.org/products/thunderbird/">
|
||||
|
||||
<!ENTITY startpage.poweredByGecko "Powered by Gecko.">
|
|
@ -1,128 +0,0 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
|
||||
<head>
|
||||
|
||||
<!--
|
||||
** Mozilla Thunderbird Start Page
|
||||
**
|
||||
** Contributor:
|
||||
** David Tenser <tenser@gmail.com>
|
||||
-->
|
||||
|
||||
<title>Welcome to Mozilla Thunderbird!</title>
|
||||
|
||||
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
|
||||
<meta http-equiv="content-style-type" content="text/css" />
|
||||
<meta content="David Tenser" name="author" />
|
||||
|
||||
<style type="text/css" media="screen,projection">
|
||||
body {
|
||||
font-family: Tahoma, Verdana, sans, sans-serif;
|
||||
margin: 0px;
|
||||
background: url(startpage-back.png) repeat-y top right white;
|
||||
}
|
||||
|
||||
h1 {
|
||||
color: white;
|
||||
background: url(startpage-h1.png) no-repeat transparent;
|
||||
font-weight: normal;
|
||||
height: 50px;
|
||||
padding: 0.3ex 0.3ex 0.3ex 25px;
|
||||
margin: 0px;
|
||||
font-size: 160%;
|
||||
}
|
||||
|
||||
h2 {
|
||||
color: #445;
|
||||
background: transparent url(startpage-h2.png) no-repeat bottom left;
|
||||
width: 400px;
|
||||
height: 20px;
|
||||
font-weight: normal;
|
||||
font-size: 100%;
|
||||
letter-spacing: 2px;
|
||||
margin-left: -25px;
|
||||
padding: 0px 0px 0px 25px;
|
||||
}
|
||||
|
||||
#indent {
|
||||
margin-left: 25px;
|
||||
margin-right: 25px;
|
||||
background: url(chrome://branding/content/thunderbird-watermark.png) no-repeat top right;
|
||||
min-height: 280px;
|
||||
}
|
||||
|
||||
p, li {
|
||||
font-size: 85%;
|
||||
letter-spacing: 1px;
|
||||
}
|
||||
|
||||
ul {
|
||||
margin-left: 30px;
|
||||
padding-left: 0px;
|
||||
line-height: 1.2em;
|
||||
}
|
||||
|
||||
li {
|
||||
list-style-image: url(startpage-li.png)
|
||||
}
|
||||
|
||||
a:link, a:visited {
|
||||
background: transparent;
|
||||
text-decoration: none;
|
||||
color: #006;
|
||||
}
|
||||
|
||||
a:active, a:hover {
|
||||
background: #f2f2f8;
|
||||
color: #009;
|
||||
-moz-border-radius: 10px;
|
||||
}
|
||||
|
||||
#gecko {
|
||||
font-size: 80%;
|
||||
position: fixed;
|
||||
bottom: 0px;
|
||||
left: 0px;
|
||||
text-align: right;
|
||||
color: #fff;
|
||||
background: url(startpage-gecko.png) no-repeat top right;
|
||||
width: 100%;
|
||||
height: 19px;
|
||||
padding-top: 1px;
|
||||
}
|
||||
|
||||
#gecko a:link, #gecko a:visited {
|
||||
color: #fff;
|
||||
background: transparent;
|
||||
padding-right: 5px;
|
||||
}
|
||||
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>Welcome to Mozilla Thunderbird</h1>
|
||||
|
||||
<div id="indent">
|
||||
<p>Mozilla Thunderbird is a powerful, open-source mail and news client.</p>
|
||||
<h2>Features</h2>
|
||||
<ul>
|
||||
<li><a href="http://www.mozilla.org/products/thunderbird/junkmail.html">Adaptive Junk Mail Controls</a></li>
|
||||
<li><a href="http://www.mozilla.org/products/thunderbird/rss.html">RSS Reader</a></li>
|
||||
<li><a href="http://www.mozilla.org/products/thunderbird/global-inbox.html">Global Inbox Support</a></li>
|
||||
<li><a href="http://www.mozilla.org/products/thunderbird/search-folders.html">Saved Search Folders</a></li>
|
||||
<li><a href="http://www.mozilla.org/products/thunderbird/message-grouping.html">Message Grouping</a></li>
|
||||
<li><a href="http://www.mozilla.org/products/thunderbird/privacy-protection.html">Privacy Protection</a></li>
|
||||
</ul>
|
||||
|
||||
<h2>More Information</h2>
|
||||
<p>For frequently asked questions, tips and general help, visit <a href="http://www.mozilla.org/support/thunderbird/">Thunderbird Help</a>.</p>
|
||||
<p>For product information, visit the <a href="http://www.mozilla.org/products/thunderbird/">Thunderbird Product Page</a>.</p>
|
||||
</div>
|
||||
|
||||
<div id="gecko"><a href="http://www.mozilla.org/">Powered by Gecko.</a></div>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -2,13 +2,8 @@
|
|||
|
||||
@AB_CD@.jar:
|
||||
% locale messenger @AB_CD@ %locale/@AB_CD@/messenger/
|
||||
locale/@AB_CD@/messenger/start.html (%chrome/messenger/start.html)
|
||||
* locale/@AB_CD@/messenger/credits.html (%chrome/messenger/credits.html)
|
||||
locale/@AB_CD@/messenger/startpage-h1.png (%chrome/messenger/startpage-h1.png)
|
||||
locale/@AB_CD@/messenger/startpage-h2.png (%chrome/messenger/startpage-h2.png)
|
||||
locale/@AB_CD@/messenger/startpage-back.png (%chrome/messenger/startpage-back.png)
|
||||
locale/@AB_CD@/messenger/startpage-li.png (%chrome/messenger/startpage-li.png)
|
||||
locale/@AB_CD@/messenger/startpage-gecko.png (%chrome/messenger/startpage-gecko.png)
|
||||
locale/@AB_CD@/messenger/start.dtd (%chrome/messenger/start.dtd)
|
||||
locale/@AB_CD@/messenger/credits.dtd (%chrome/messenger/credits.dtd)
|
||||
locale/@AB_CD@/messenger/aboutDialog.dtd (%chrome/messenger/aboutDialog.dtd)
|
||||
locale/@AB_CD@/messenger/virtualFolderProperties.dtd (%chrome/messenger/virtualFolderProperties.dtd)
|
||||
locale/@AB_CD@/messenger/virtualFolderListDialog.dtd (%chrome/messenger/virtualFolderListDialog.dtd)
|
||||
|
|
Загрузка…
Ссылка в новой задаче