Commit 5537e8b7 authored by Alex Catarineu's avatar Alex Catarineu Committed by Richard Pospesel
Browse files

Add TorStrings module for localization

parent f325ab9b
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
<!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd" >
%brandDTD;
<!ENTITY % torbuttonDTD SYSTEM "chrome://torbutton/locale/torbutton.dtd">
%torbuttonDTD;
<!ENTITY % aboutDialogDTD SYSTEM "chrome://torbutton/locale/aboutDialog.dtd">
%aboutDialogDTD;
+4 −0
Original line number Diff line number Diff line
@@ -37,6 +37,10 @@
<?xml-stylesheet href="chrome://browser/skin/places/tree-icons.css" type="text/css"?>
<?xml-stylesheet href="chrome://browser/skin/places/editBookmark.css" type="text/css"?>

<!DOCTYPE window [
#include browser-doctype.inc
]>

<html id="main-window"
        xmlns:html="http://www.w3.org/1999/xhtml"
        xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
+4 −0
Original line number Diff line number Diff line
@@ -8,6 +8,10 @@

<?xml-stylesheet href="chrome://browser/skin/webRTC-menubar-indicator.css" type="text/css"?>

<!DOCTYPE window [
#include browser-doctype.inc
]>

<window id="main-window"
        xmlns:html="http://www.w3.org/1999/xhtml"
        xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
+6 −0
Original line number Diff line number Diff line
@@ -6,6 +6,12 @@
<?xml-stylesheet href="chrome://browser/content/pageinfo/pageInfo.css" type="text/css"?>
<?xml-stylesheet href="chrome://browser/skin/pageInfo.css" type="text/css"?>

<!DOCTYPE window [
#ifdef XP_MACOSX
#include ../browser-doctype.inc
#endif
]>

<window id="main-window"
  xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  xmlns:html="http://www.w3.org/1999/xhtml"
+5 −1
Original line number Diff line number Diff line
@@ -16,7 +16,11 @@
<?xml-stylesheet href="chrome://browser/content/downloads/downloads.css"?>
<?xml-stylesheet href="chrome://browser/skin/downloads/allDownloadsView.css"?>

<!DOCTYPE window>
<!DOCTYPE window [
#ifdef XP_MACOSX
#include ../../../base/content/browser-doctype.inc
#endif
]>

<window id="places"
        data-l10n-id="places-library3"
Loading