aboutDialog.xul 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <?xml version="1.0"?> <!-- -*- Mode: HTML -*- -->
  2. # This Source Code Form is subject to the terms of the Mozilla Public
  3. # License, v. 2.0. If a copy of the MPL was not distributed with this
  4. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
  5. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  6. <?xml-stylesheet href="chrome://browser/content/aboutDialog.css" type="text/css"?>
  7. <?xml-stylesheet href="chrome://branding/content/aboutDialog.css" type="text/css"?>
  8. <!DOCTYPE window [
  9. <!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd" >
  10. %brandDTD;
  11. <!ENTITY % aboutDialogDTD SYSTEM "chrome://browser/locale/aboutDialog.dtd" >
  12. %aboutDialogDTD;
  13. ]>
  14. <window xmlns:html="http://www.w3.org/1999/xhtml"
  15. xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  16. id="PMaboutDialog"
  17. windowtype="Browser:About"
  18. onload="init(event);"
  19. title="&aboutDialog.title;"
  20. role="dialog"
  21. aria-describedby="version distribution distributionId communityDesc contributeDesc trademark"
  22. >
  23. <script type="application/javascript" src="chrome://browser/content/aboutDialog.js"/>
  24. <vbox id="aboutPMDialogContainer" flex="1">
  25. <vbox id="aboutHeaderBox" />
  26. <vbox id="aboutVersionBox" flex="3">
  27. #ifdef HAVE_64BIT_BUILD
  28. #expand <label id="aboutVersion">Version: __MOZ_APP_VERSION__ (64-bit)</label>
  29. #else
  30. #expand <label id="aboutVersion">Version: __MOZ_APP_VERSION__ (32-bit)</label>
  31. #endif
  32. <label id="distribution" class="text-blurb"/>
  33. <label id="distributionId" class="text-blurb"/>
  34. </vbox>
  35. <vbox id="aboutTextBox" flex="1">
  36. <description class="text-credits text-center">
  37. #if defined(MOZ_OFFICIAL_BRANDING) || defined(MC_OFFICIAL)
  38. #ifdef MC_PRIVATE_BUILD
  39. This is a private build of Pale Moon. If you did not manually build this copy from source yourself, then please download an official version from the <label class="text-link" href="http://www.palemoon.org/">Pale Moon website</label>.
  40. #else
  41. <label class="text-link" href="http://www.palemoon.org">Pale Moon</label> is released by <label class="text-link" href="http://www.moonchildproductions.info">Moonchild Productions</label>.
  42. </description>
  43. <description class="text-credits text-center">
  44. Special thanks to all our supporters and donors for making this browser possible!
  45. </description>
  46. <description class="text-credits">
  47. If you wish to contribute, please consider helping out by providing support to other users on the <label class="text-link" href="https://forum.palemoon.org/">Pale Moon forum</label>.
  48. #endif
  49. #else
  50. &brandFullName; is released by &vendorShortName;.
  51. </description>
  52. <description class="text-credits">
  53. This is an unofficial build of Pale Moon. For official builds, please go to <label class="text-link" href="http://www.palemoon.org/">the Pale Moon website</label>.
  54. #endif
  55. </description>
  56. </vbox>
  57. <vbox id="aboutLinkBox">
  58. <hbox pack="center">
  59. <label class="text-link bottom-link" href="about:rights">End-user rights</label>
  60. <label class="text-link bottom-link" href="about:license">Licensing information</label>
  61. <label class="text-link bottom-link" id="releaseNotesURL">Release notes</label>
  62. </hbox>
  63. <description id="aboutPMtrademark">&trademarkInfo.part1;</description>
  64. </vbox>
  65. </vbox>
  66. <keyset>
  67. <key keycode="VK_ESCAPE" oncommand="window.close();"/>
  68. </keyset>
  69. </window>