Move entities into dtd files (bug #10341).

This commit is contained in:
slamm%netscape.com 1999-08-06 17:34:34 +00:00
Родитель dce7f0eafa
Коммит ea143281b6
5 изменённых файлов: 23 добавлений и 61 удалений

Просмотреть файл

@ -21,30 +21,7 @@
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<?xml-stylesheet href="history.css" type="text/css"?>
<!DOCTYPE window
[
<!ENTITY fileMenu.label "File">
<!ENTITY newWinCmd.label "New Window">
<!ENTITY closeCmd.label ".Close">
<!ENTITY editMenu.label "Edit">
<!ENTITY undoCmd.label "Undo">
<!ENTITY redoCmd.label "Redo">
<!ENTITY cutCmd.label "Cut">
<!ENTITY copyCmd.label "Copy">
<!ENTITY pasteCmd.label "Paste">
<!ENTITY deleteCmd.label "Delete">
<!ENTITY selAllCmd.label "Select All">
<!ENTITY findHisCmd.label "Find in History...">
<!ENTITY findAgainCmd.label "Find Again...">
<!ENTITY historyBySite.label "History By Site">
<!ENTITY historyByDate.label "History By Date">
<!ENTITY historyWindowTitle.label "History">
<!ENTITY name.column.label "Title">
<!ENTITY url.column.label "URL">
<!ENTITY lastvisited.column.label "Last Visited">
]>
<!DOCTYPE window SYSTEM "chrome://l10n/locale/history.dtd" >
<window title="&historyWindowTitle.label;"
xmlns:html="http://www.w3.org/TR/REC-html40"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"

Просмотреть файл

@ -1,5 +1,4 @@
history.xul
history.css
history.js
history-test.xul
history-test.js

Просмотреть файл

@ -0,0 +1 @@
history.css

Просмотреть файл

@ -20,20 +20,28 @@ topsrcdir = @top_srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
include $(topsrcdir)/config/rules.mk
FILES = \
history.xul \
history.css \
history.js \
history-test.xul \
history-test.js \
$(NULL)
FILES := $(addprefix $(srcdir)/, $(FILES))
CHROME_DIR = history
CHROME_CONTENT_DIR = content/default
CHROME_SKIN_DIR = skin/default
install::
$(INSTALL) $(FILES) $(DIST)/bin/res/samples
CHROME_CONTENT = \
history.xul \
history.js \
history-test.xul \
history-test.js \
$(NULL)
CHROME_SKIN = \
history.css \
$(NULL)
CHROME_L10N = \
./locale/en-US/history.dtd \
$(NULL)
include $(DEPTH)/config/autoconf.mk
include $(topsrcdir)/config/config.mk
include $(topsrcdir)/config/rules.mk

Просмотреть файл

@ -21,30 +21,7 @@
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<?xml-stylesheet href="history.css" type="text/css"?>
<!DOCTYPE window
[
<!ENTITY fileMenu.label "File">
<!ENTITY newWinCmd.label "New Window">
<!ENTITY closeCmd.label ".Close">
<!ENTITY editMenu.label "Edit">
<!ENTITY undoCmd.label "Undo">
<!ENTITY redoCmd.label "Redo">
<!ENTITY cutCmd.label "Cut">
<!ENTITY copyCmd.label "Copy">
<!ENTITY pasteCmd.label "Paste">
<!ENTITY deleteCmd.label "Delete">
<!ENTITY selAllCmd.label "Select All">
<!ENTITY findHisCmd.label "Find in History...">
<!ENTITY findAgainCmd.label "Find Again...">
<!ENTITY historyBySite.label "History By Site">
<!ENTITY historyByDate.label "History By Date">
<!ENTITY historyWindowTitle.label "History">
<!ENTITY name.column.label "Title">
<!ENTITY url.column.label "URL">
<!ENTITY lastvisited.column.label "Last Visited">
]>
<!DOCTYPE window SYSTEM "chrome://l10n/locale/history.dtd" >
<window title="&historyWindowTitle.label;"
xmlns:html="http://www.w3.org/TR/REC-html40"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"