summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWu Xiaotian <[email protected]>2019-11-09 15:33:24 +0800
committerraveit65 <[email protected]>2019-12-01 11:39:44 +0100
commit93881642e533133ef9f455612611002531e4475e (patch)
treeb25e92a1cd42271762116dd226ddabf7e78ad99d
parent6dd6ad739acc075119cb03f62b0cceacef006345 (diff)
downloadpluma-93881642e533133ef9f455612611002531e4475e.tar.bz2
pluma-93881642e533133ef9f455612611002531e4475e.tar.xz
migrate from intltool to gettext
-rw-r--r--Makefile.am17
-rw-r--r--configure.ac6
-rw-r--r--data/Makefile.am6
-rw-r--r--data/pluma.appdata.xml.in6
-rw-r--r--data/pluma.desktop.in.in10
-rw-r--r--its/pluma-taglist.its7
-rw-r--r--its/pluma-taglist.loc7
-rw-r--r--plugins/changecase/Makefile.am6
-rw-r--r--plugins/changecase/changecase.plugin.desktop.in4
-rw-r--r--plugins/docinfo/Makefile.am7
-rw-r--r--plugins/docinfo/docinfo.plugin.desktop.in4
-rw-r--r--plugins/externaltools/Makefile.am5
-rw-r--r--plugins/externaltools/data/Makefile.am3
-rw-r--r--plugins/externaltools/data/build.desktop.in4
-rw-r--r--plugins/externaltools/data/open-terminal-here.desktop.in4
-rw-r--r--plugins/externaltools/data/remove-trailing-spaces.desktop.in4
-rw-r--r--plugins/externaltools/data/run-command.desktop.in4
-rw-r--r--plugins/externaltools/data/search-recursive.desktop.in2
-rw-r--r--plugins/externaltools/data/switch-c.desktop.in2
-rw-r--r--plugins/externaltools/externaltools.plugin.desktop.in4
-rw-r--r--plugins/filebrowser/Makefile.am7
-rw-r--r--plugins/filebrowser/filebrowser.plugin.desktop.in4
-rw-r--r--plugins/modelines/Makefile.am6
-rw-r--r--plugins/modelines/modelines.plugin.desktop.in4
-rw-r--r--plugins/pythonconsole/Makefile.am5
-rw-r--r--plugins/pythonconsole/pythonconsole.plugin.desktop.in4
-rw-r--r--plugins/quickopen/Makefile.am5
-rw-r--r--plugins/quickopen/quickopen.plugin.desktop.in4
-rw-r--r--plugins/snippets/Makefile.am5
-rw-r--r--plugins/snippets/snippets.plugin.desktop.in4
-rw-r--r--plugins/sort/Makefile.am6
-rw-r--r--plugins/sort/sort.plugin.desktop.in4
-rw-r--r--plugins/spell/Makefile.am7
-rw-r--r--plugins/spell/spell.plugin.desktop.in4
-rw-r--r--plugins/taglist/HTML.tags.xml.in964
-rw-r--r--plugins/taglist/Latex.tags.xml.in148
-rw-r--r--plugins/taglist/Makefile.am11
-rw-r--r--plugins/taglist/XSLT.tags.xml.in32
-rw-r--r--plugins/taglist/XUL.tags.xml.in2
-rw-r--r--plugins/taglist/taglist.plugin.desktop.in4
-rw-r--r--plugins/time/Makefile.am7
-rw-r--r--plugins/time/time.plugin.desktop.in4
-rw-r--r--plugins/trailsave/Makefile.am6
-rw-r--r--plugins/trailsave/trailsave.plugin.desktop.in4
-rw-r--r--po/Makevars79
-rw-r--r--po/POTFILES.in37
-rw-r--r--tools/plugin_template/Makefile.am6
47 files changed, 787 insertions, 698 deletions
diff --git a/Makefile.am b/Makefile.am
index 4c5d0263..c4d648fe 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,7 +1,7 @@
## Process this file with automake to produce Makefile.in
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
-SUBDIRS = pluma pixmaps po data plugins docs help
+SUBDIRS = po pluma pixmaps data plugins docs help
if ENABLE_TESTS
SUBDIRS += tests
@@ -11,19 +11,14 @@ distuninstallcheck_listfiles = find . -type f -print
EXTRA_DIST = \
autogen.sh \
+ its \
ChangeLog \
NEWS \
README \
xmldocs.make \
- omf.make \
- intltool-extract.in \
- intltool-merge.in \
- intltool-update.in
+ omf.make
-DISTCLEANFILES = \
- intltool-extract \
- intltool-merge \
- intltool-update
+DISTCLEANFILES =
MAINTAINERCLEANFILES = \
aclocal.m4 \
@@ -31,9 +26,6 @@ MAINTAINERCLEANFILES = \
config.h.in \
config.sub \
depcomp \
- intltool-extract.in \
- intltool-merge.in \
- intltool-update.in \
configure \
INSTALL \
gtk-doc.make \
@@ -45,7 +37,6 @@ MAINTAINERCLEANFILES = \
py-compile \
xmldocs.make \
m4/gtk-doc.m4 \
- m4/intltool.m4 \
m4/libtool.m4 \
m4/ltoptions.m4 \
m4/ltsugar.m4 \
diff --git a/configure.ac b/configure.ac
index d8fce206..373825ab 100644
--- a/configure.ac
+++ b/configure.ac
@@ -73,11 +73,13 @@ AC_SUBST(FULL_LIBEXECDIR)
dnl ================================================================
dnl Gettext stuff.
dnl ================================================================
+AM_GNU_GETTEXT_VERSION([0.19.8])
+AM_GNU_GETTEXT_REQUIRE_VERSION([0.19.8])
+AM_GNU_GETTEXT([external])
+
-IT_PROG_INTLTOOL([0.50.1])
GETTEXT_PACKAGE=pluma
AC_SUBST([GETTEXT_PACKAGE])
-AM_GLIB_GNU_GETTEXT
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", [Define to the Gettext package name])
dnl ================================================================
diff --git a/data/Makefile.am b/data/Makefile.am
index 12d8a058..21c26baa 100644
--- a/data/Makefile.am
+++ b/data/Makefile.am
@@ -1,12 +1,14 @@
desktopdir = $(datadir)/applications
desktop_in_files = pluma.desktop.in
desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
-@INTLTOOL_DESKTOP_RULE@
+$(desktop_DATA): $(desktop_in_files)
+ $(AM_V_GEN) $(MSGFMT) --desktop --template $< -d $(top_srcdir)/po -o $@
-@INTLTOOL_XML_RULE@
appdatadir = $(datadir)/metainfo
appdata_in_files = pluma.appdata.xml.in
appdata_DATA = $(appdata_in_files:.xml.in=.xml)
+$(appdata_DATA): $(appdata_in_files)
+ $(AM_V_GEN) GETTEXTDATADIRS=$(top_srcdir) $(MSGFMT) --xml --template $< -d $(top_srcdir)/po -o $@
gsettings_SCHEMAS = org.mate.pluma.gschema.xml
@GSETTINGS_RULES@
diff --git a/data/pluma.appdata.xml.in b/data/pluma.appdata.xml.in
index 9799fc0b..5ef27402 100644
--- a/data/pluma.appdata.xml.in
+++ b/data/pluma.appdata.xml.in
@@ -5,8 +5,8 @@
<metadata_license>CC0-1.0</metadata_license>
<project_license>GPL-2.0+</project_license>
<name>Pluma</name>
- <_summary>A Text Editor for the MATE desktop environment</_summary>
- <_description>
+ <summary>A Text Editor for the MATE desktop environment</summary>
+ <description>
<p>
Pluma is a small, but powerful text editor designed specifically for
the MATE desktop. It has most standard text editor functions and fully
@@ -19,7 +19,7 @@
support for spell checking, comparing files, viewing CVS ChangeLogs, and
adjusting indentation levels.
</p>
- </_description>
+ </description>
<screenshots>
<screenshot type="default">
<image width="960" height="540">
diff --git a/data/pluma.desktop.in.in b/data/pluma.desktop.in.in
index 6e83ae9c..24124400 100644
--- a/data/pluma.desktop.in.in
+++ b/data/pluma.desktop.in.in
@@ -1,17 +1,19 @@
[Desktop Entry]
-_Name=Pluma
-_GenericName=Text Editor
-_Comment=Edit text files
+Name=Pluma
+GenericName=Text Editor
+Comment=Edit text files
Exec=pluma %U
Terminal=false
Type=Application
StartupNotify=true
MimeType=text/plain;
+# Translators: Do NOT translate or transliterate this text (this is an icon file name)!
Icon=accessories-text-editor
Categories=GTK;Utility;TextEditor;
+# Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon!
Keywords=text;editor;MATE;tabs;highlighting;code;multiple;files;pluggable;
X-MATE-DocPath=pluma/pluma.xml
-_X-MATE-FullName=Pluma Text Editor
+X-MATE-FullName=Pluma Text Editor
X-MATE-Bugzilla-Bugzilla=MATE
X-MATE-Bugzilla-Product=Pluma
X-MATE-Bugzilla-Component=general
diff --git a/its/pluma-taglist.its b/its/pluma-taglist.its
new file mode 100644
index 00000000..d7f5f59e
--- /dev/null
+++ b/its/pluma-taglist.its
@@ -0,0 +1,7 @@
+<?xml version="1.0"?>
+<its:rules xmlns:its="http://www.w3.org/2005/11/its"
+ xmlns:gt="https://www.gnu.org/s/gettext/ns/its/extensions/1.0"
+ version="2.0">
+<its:translateRule selector="//*" translate="no"/>
+<its:translateRule selector="//@name" translate="yes"/>
+</its:rules>
diff --git a/its/pluma-taglist.loc b/its/pluma-taglist.loc
new file mode 100644
index 00000000..2290ce81
--- /dev/null
+++ b/its/pluma-taglist.loc
@@ -0,0 +1,7 @@
+<?xml version="1.0"?>
+<locatingRules>
+ <locatingRule name="PlumaTaglist" pattern="*.xml">
+ <documentRule localName="TagList" target="pluma-taglist.its"/>
+ </locatingRule>
+</locatingRules>
+
diff --git a/plugins/changecase/Makefile.am b/plugins/changecase/Makefile.am
index e1404b1c..e30cfa37 100644
--- a/plugins/changecase/Makefile.am
+++ b/plugins/changecase/Makefile.am
@@ -19,11 +19,11 @@ uidir = $(PLUMA_PLUGINS_DATA_DIR)/changecase
ui_DATA =
plugin_in_files = changecase.plugin.desktop.in
-
-%.plugin: %.plugin.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*po) ; $(INTLTOOL_MERGE) $(top_srcdir)/po $< $@ -d -u -c $(top_builddir)/po/.intltool-merge-cache
-
plugin_DATA = $(plugin_in_files:.plugin.desktop.in=.plugin)
+$(plugin_DATA): $(plugin_in_files)
+ $(AM_V_GEN) $(MSGFMT) --keyword=Name --keyword=Description --desktop --template $< -d $(top_srcdir)/po -o $@
+
EXTRA_DIST = $(ui_DATA) $(plugin_in_files)
CLEANFILES = $(plugin_DATA)
diff --git a/plugins/changecase/changecase.plugin.desktop.in b/plugins/changecase/changecase.plugin.desktop.in
index de4cb375..bff2f4f6 100644
--- a/plugins/changecase/changecase.plugin.desktop.in
+++ b/plugins/changecase/changecase.plugin.desktop.in
@@ -1,8 +1,8 @@
[Plugin]
Module=changecase
IAge=2
-_Name=Change Case
-_Description=Changes the case of selected text.
+Name=Change Case
+Description=Changes the case of selected text.
Authors=Paolo Borelli <[email protected]>
Copyright=Copyright © 2004-2005 Paolo Borelli
Website=https://mate-desktop.org
diff --git a/plugins/docinfo/Makefile.am b/plugins/docinfo/Makefile.am
index 611dc17e..076bae60 100644
--- a/plugins/docinfo/Makefile.am
+++ b/plugins/docinfo/Makefile.am
@@ -21,15 +21,14 @@ include $(top_srcdir)/gla11y.mk
ui_DATA = $(ui_files)
plugin_in_files = docinfo.plugin.desktop.in
-
-%.plugin: %.plugin.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*po) ; $(INTLTOOL_MERGE) $(top_srcdir)/po $< $@ -d -u -c $(top_builddir)/po/.intltool-merge-cache
-
plugin_DATA = $(plugin_in_files:.plugin.desktop.in=.plugin)
+$(plugin_DATA): $(plugin_in_files)
+ $(AM_V_GEN) $(MSGFMT) --keyword=Name --keyword=Description --desktop --template $< -d $(top_srcdir)/po -o $@
+
EXTRA_DIST = $(ui_DATA) $(plugin_in_files) ui-a11y.suppr
CLEANFILES = $(plugin_DATA)
DISTCLEANFILES = $(plugin_DATA)
-
-include $(top_srcdir)/git.mk
diff --git a/plugins/docinfo/docinfo.plugin.desktop.in b/plugins/docinfo/docinfo.plugin.desktop.in
index b4da32b0..3f6b32e3 100644
--- a/plugins/docinfo/docinfo.plugin.desktop.in
+++ b/plugins/docinfo/docinfo.plugin.desktop.in
@@ -1,7 +1,7 @@
[Plugin]
Module=docinfo
IAge=2
-_Name=Document Statistics
-_Description=Analyzes the current document and reports the number of words, lines, characters and non-space characters in it.
+Name=Document Statistics
+Description=Analyzes the current document and reports the number of words, lines, characters and non-space characters in it.
Authors=Paolo Maggi <[email protected]>;Jorge Alberto Torres <[email protected]>
Copyright=Copyright © 2002-2005 Paolo Maggi
diff --git a/plugins/externaltools/Makefile.am b/plugins/externaltools/Makefile.am
index cd6f9720..9cff7fa7 100644
--- a/plugins/externaltools/Makefile.am
+++ b/plugins/externaltools/Makefile.am
@@ -3,10 +3,11 @@ SUBDIRS = tools data scripts
plugindir = $(PLUMA_PLUGINS_LIBS_DIR)
plugin_in_files = externaltools.plugin.desktop.in
-%.plugin: %.plugin.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*po) ; $(INTLTOOL_MERGE) $(top_srcdir)/po $< $@ -d -u -c $(top_builddir)/po/.intltool-merge-cache
-
plugin_DATA = $(plugin_in_files:.plugin.desktop.in=.plugin)
+$(plugin_DATA): $(plugin_in_files)
+ $(AM_V_GEN) $(MSGFMT) --keyword=Name --keyword=Description --desktop --template $< -d $(top_srcdir)/po -o $@
+
EXTRA_DIST = $(plugin_in_files)
CLEANFILES = $(plugin_DATA)
diff --git a/plugins/externaltools/data/Makefile.am b/plugins/externaltools/data/Makefile.am
index c9abcce0..4a303ce1 100644
--- a/plugins/externaltools/data/Makefile.am
+++ b/plugins/externaltools/data/Makefile.am
@@ -23,7 +23,8 @@ all_desktop_in_files = $(all_tools_in_files:.tool.in=.desktop.in)
all_desktop_files = $(all_tools_in_files:.tool.in=.desktop)
all_tools_files = $(all_tools_in_files:.tool.in=)
-@INTLTOOL_DESKTOP_RULE@
+%.desktop: %.desktop.in
+ $(AM_V_GEN) $(MSGFMT) --desktop --template $< -d $(top_srcdir)/po -o $@
# Tools are generated by merging a script file (.tool.in) with a data file
# (.desktop), which happens to be translated using intltool.
diff --git a/plugins/externaltools/data/build.desktop.in b/plugins/externaltools/data/build.desktop.in
index c2a49871..7666abe1 100644
--- a/plugins/externaltools/data/build.desktop.in
+++ b/plugins/externaltools/data/build.desktop.in
@@ -1,6 +1,6 @@
[Pluma Tool]
-_Name=Build
-_Comment=Run "make" in the document directory
+Name=Build
+Comment=Run "make" in the document directory
Input=nothing
Output=output-panel
Shortcut=<Control>F8
diff --git a/plugins/externaltools/data/open-terminal-here.desktop.in b/plugins/externaltools/data/open-terminal-here.desktop.in
index 45587ef6..fcd281e5 100644
--- a/plugins/externaltools/data/open-terminal-here.desktop.in
+++ b/plugins/externaltools/data/open-terminal-here.desktop.in
@@ -1,6 +1,6 @@
[Pluma Tool]
-_Name=Open terminal here
-_Comment=Open a terminal in the document location
+Name=Open terminal here
+Comment=Open a terminal in the document location
Input=nothing
Output=output-panel
Applicability=local
diff --git a/plugins/externaltools/data/remove-trailing-spaces.desktop.in b/plugins/externaltools/data/remove-trailing-spaces.desktop.in
index 70bd8fd1..3beb99ab 100644
--- a/plugins/externaltools/data/remove-trailing-spaces.desktop.in
+++ b/plugins/externaltools/data/remove-trailing-spaces.desktop.in
@@ -1,6 +1,6 @@
[Pluma Tool]
-_Name=Remove trailing spaces
-_Comment=Remove useless trailing spaces in your file
+Name=Remove trailing spaces
+Comment=Remove useless trailing spaces in your file
Input=document
Output=replace-document
Shortcut=<Alt>F12
diff --git a/plugins/externaltools/data/run-command.desktop.in b/plugins/externaltools/data/run-command.desktop.in
index 4e15e678..7b1a821a 100644
--- a/plugins/externaltools/data/run-command.desktop.in
+++ b/plugins/externaltools/data/run-command.desktop.in
@@ -1,6 +1,6 @@
[Pluma Tool]
-_Name=Run command
-_Comment=Execute a custom command and put its output in a new document
+Name=Run command
+Comment=Execute a custom command and put its output in a new document
Input=nothing
Output=new-document
Applicability=all
diff --git a/plugins/externaltools/data/search-recursive.desktop.in b/plugins/externaltools/data/search-recursive.desktop.in
index 41baf649..3574f456 100644
--- a/plugins/externaltools/data/search-recursive.desktop.in
+++ b/plugins/externaltools/data/search-recursive.desktop.in
@@ -1,5 +1,5 @@
[Pluma Tool]
-_Name=Search
+Name=Search
Shortcut=<Primary><Shift>f
Languages=
Applicability=local
diff --git a/plugins/externaltools/data/switch-c.desktop.in b/plugins/externaltools/data/switch-c.desktop.in
index 43d4f70b..fa5cb9bf 100644
--- a/plugins/externaltools/data/switch-c.desktop.in
+++ b/plugins/externaltools/data/switch-c.desktop.in
@@ -1,5 +1,5 @@
[Pluma Tool]
-_Name=Switch onto a file .c and .h
+Name=Switch onto a file .c and .h
Shortcut=<Shift><Alt>s
Applicability=all
Output=nothing
diff --git a/plugins/externaltools/externaltools.plugin.desktop.in b/plugins/externaltools/externaltools.plugin.desktop.in
index 409547f8..8fe1bd53 100644
--- a/plugins/externaltools/externaltools.plugin.desktop.in
+++ b/plugins/externaltools/externaltools.plugin.desktop.in
@@ -2,8 +2,8 @@
Loader=python3
Module=externaltools
IAge=2
-_Name=External Tools
-_Description=Execute external commands and shell scripts.
+Name=External Tools
+Description=Execute external commands and shell scripts.
Authors=Steve Frécinaux <[email protected]>
Copyright=Copyright © 2005 Steve Frécinaux
Website=https://mate-desktop.org
diff --git a/plugins/filebrowser/Makefile.am b/plugins/filebrowser/Makefile.am
index 903e5bc7..095cdc1d 100644
--- a/plugins/filebrowser/Makefile.am
+++ b/plugins/filebrowser/Makefile.am
@@ -44,8 +44,10 @@ uidir = $(PLUMA_PLUGINS_DATA_DIR)/filebrowser
ui_DATA = pluma-file-browser-widget-ui.xml
plugin_in_files = filebrowser.plugin.desktop.in
+plugin_DATA = $(plugin_in_files:.plugin.desktop.in=.plugin)
-%.plugin: %.plugin.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*po) ; $(INTLTOOL_MERGE) $(top_srcdir)/po $< $@ -d -u -c $(top_builddir)/po/.intltool-merge-cache
+$(plugin_DATA): $(plugin_in_files)
+ $(AM_V_GEN) $(MSGFMT) --keyword=Name --keyword=Description --desktop --template $< -d $(top_srcdir)/po -o $@
pluma-file-browser-enum-types.h: pluma-file-browser-enum-types.h.template $(NOINST_H_FILES) $(GLIB_MKENUMS)
(cd $(srcdir) && $(GLIB_MKENUMS) --template pluma-file-browser-enum-types.h.template $(NOINST_H_FILES)) > $@
@@ -62,9 +64,6 @@ pluma-file-browser-marshal.c: pluma-file-browser-marshal.list $(GLIB_GENMARSHAL)
$(AM_V_GEN) echo "#include \"pluma-file-browser-marshal.h\"" > $@ && \
$(GLIB_GENMARSHAL) $< --body --prefix=pluma_file_browser_marshal >> $@
-plugin_DATA = $(plugin_in_files:.plugin.desktop.in=.plugin)
-
-@INTLTOOL_XML_NOMERGE_RULE@
filebrowser_gschema_in = org.mate.pluma.plugins.filebrowser.gschema.xml.in
gsettings_SCHEMAS = $(filebrowser_gschema_in:.xml.in=.xml)
@GSETTINGS_RULES@
diff --git a/plugins/filebrowser/filebrowser.plugin.desktop.in b/plugins/filebrowser/filebrowser.plugin.desktop.in
index d9ea9ad3..b76497d5 100644
--- a/plugins/filebrowser/filebrowser.plugin.desktop.in
+++ b/plugins/filebrowser/filebrowser.plugin.desktop.in
@@ -2,8 +2,8 @@
Loader=C
Module=filebrowser
IAge=2
-_Name=File Browser Pane
-_Description=Easy file access from the side pane
+Name=File Browser Pane
+Description=Easy file access from the side pane
Icon=system-file-manager
Authors=Jesse van den Kieboom <[email protected]>
Copyright=Copyright © 2006 Jesse van den Kieboom
diff --git a/plugins/modelines/Makefile.am b/plugins/modelines/Makefile.am
index 5284cf93..abcb58db 100644
--- a/plugins/modelines/Makefile.am
+++ b/plugins/modelines/Makefile.am
@@ -22,10 +22,11 @@ libmodelines_la_LDFLAGS = $(PLUGIN_LIBTOOL_FLAGS)
libmodelines_la_LIBADD = $(PLUMA_LIBS)
plugin_in_files = modelines.plugin.desktop.in
-%.plugin: %.plugin.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*po) ; $(INTLTOOL_MERGE) $(top_srcdir)/po $< $@ -d -u -c $(top_builddir)/po/.intltool-merge-cache
-
plugin_DATA = $(plugin_in_files:.plugin.desktop.in=.plugin)
+$(plugin_DATA): $(plugin_in_files)
+ $(AM_V_GEN) $(MSGFMT) --keyword=Name --keyword=Description --desktop --template $< -d $(top_srcdir)/po -o $@
+
EXTRA_DIST = \
$(plugin_in_files) \
$(modelines_DATA)
@@ -33,5 +34,4 @@ EXTRA_DIST = \
CLEANFILES = $(plugin_DATA)
DISTCLEANFILES = $(plugin_DATA)
-
-include $(top_srcdir)/git.mk
diff --git a/plugins/modelines/modelines.plugin.desktop.in b/plugins/modelines/modelines.plugin.desktop.in
index bba8b48d..2d30c34e 100644
--- a/plugins/modelines/modelines.plugin.desktop.in
+++ b/plugins/modelines/modelines.plugin.desktop.in
@@ -1,8 +1,8 @@
[Plugin]
Module=modelines
IAge=2
-_Name=Modelines
-_Description=Emacs, Kate and Vim-style modelines support for pluma.
+Name=Modelines
+Description=Emacs, Kate and Vim-style modelines support for pluma.
Authors=Steve Frécinaux <[email protected]>
Copyright=Copyright © 2005 Steve Frécinaux
Website=https://mate-desktop.org
diff --git a/plugins/pythonconsole/Makefile.am b/plugins/pythonconsole/Makefile.am
index 51a2e4a4..7c6a02e4 100644
--- a/plugins/pythonconsole/Makefile.am
+++ b/plugins/pythonconsole/Makefile.am
@@ -3,10 +3,11 @@ SUBDIRS = pythonconsole
plugindir = $(PLUMA_PLUGINS_LIBS_DIR)
plugin_in_files = pythonconsole.plugin.desktop.in
-%.plugin: %.plugin.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*po) ; $(INTLTOOL_MERGE) $(top_srcdir)/po $< $@ -d -u -c $(top_builddir)/po/.intltool-merge-cache
-
plugin_DATA = $(plugin_in_files:.plugin.desktop.in=.plugin)
+$(plugin_DATA): $(plugin_in_files)
+ $(AM_V_GEN) $(MSGFMT) --keyword=Name --keyword=Description --desktop --template $< -d $(top_srcdir)/po -o $@
+
pythonconsole_gschema_in = org.mate.pluma.plugins.pythonconsole.gschema.xml.in
gsettings_SCHEMAS = $(pythonconsole_gschema_in:.xml.in=.xml)
@GSETTINGS_RULES@
diff --git a/plugins/pythonconsole/pythonconsole.plugin.desktop.in b/plugins/pythonconsole/pythonconsole.plugin.desktop.in
index e8f9c083..4281403d 100644
--- a/plugins/pythonconsole/pythonconsole.plugin.desktop.in
+++ b/plugins/pythonconsole/pythonconsole.plugin.desktop.in
@@ -2,8 +2,8 @@
Loader=python3
Module=pythonconsole
IAge=2
-_Name=Python Console
-_Description=Interactive Python console standing in the bottom panel
+Name=Python Console
+Description=Interactive Python console standing in the bottom panel
Icon=text-x-python
Authors=Steve Frécinaux <[email protected]>
Copyright=Copyright © 2006 Steve Frécinaux
diff --git a/plugins/quickopen/Makefile.am b/plugins/quickopen/Makefile.am
index 4e5f8d85..e03a7147 100644
--- a/plugins/quickopen/Makefile.am
+++ b/plugins/quickopen/Makefile.am
@@ -3,10 +3,11 @@ SUBDIRS = quickopen
plugindir = $(PLUMA_PLUGINS_LIBS_DIR)
plugin_in_files = quickopen.plugin.desktop.in
-%.plugin: %.plugin.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*po) ; $(INTLTOOL_MERGE) $(top_srcdir)/po $< $@ -d -u -c $(top_builddir)/po/.intltool-merge-cache
-
plugin_DATA = $(plugin_in_files:.plugin.desktop.in=.plugin)
+$(plugin_DATA): $(plugin_in_files)
+ $(AM_V_GEN) $(MSGFMT) --keyword=Name --keyword=Description --desktop --template $< -d $(top_srcdir)/po -o $@
+
EXTRA_DIST = $(plugin_in_files)
CLEANFILES = $(plugin_DATA)
diff --git a/plugins/quickopen/quickopen.plugin.desktop.in b/plugins/quickopen/quickopen.plugin.desktop.in
index 5ad16d7e..471e0ec9 100644
--- a/plugins/quickopen/quickopen.plugin.desktop.in
+++ b/plugins/quickopen/quickopen.plugin.desktop.in
@@ -2,8 +2,8 @@
Loader=python3
Module=quickopen
IAge=2
-_Name=Quick Open
-_Description=Quickly open files
+Name=Quick Open
+Description=Quickly open files
Icon=document-open
Authors=Jesse van den Kieboom <[email protected]>
Copyright=Copyright © 2009 Jesse van den Kieboom
diff --git a/plugins/snippets/Makefile.am b/plugins/snippets/Makefile.am
index 40aeeb90..24f5a5b4 100644
--- a/plugins/snippets/Makefile.am
+++ b/plugins/snippets/Makefile.am
@@ -3,10 +3,11 @@ SUBDIRS = snippets data
plugindir = $(PLUMA_PLUGINS_LIBS_DIR)
plugin_in_files = snippets.plugin.desktop.in
-%.plugin: %.plugin.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*po) ; $(INTLTOOL_MERGE) $(top_srcdir)/po $< $@ -d -u -c $(top_builddir)/po/.intltool-merge-cache
-
plugin_DATA = $(plugin_in_files:.plugin.desktop.in=.plugin)
+$(plugin_DATA): $(plugin_in_files)
+ $(AM_V_GEN) $(MSGFMT) --keyword=Name --keyword=Description --desktop --template $< -d $(top_srcdir)/po -o $@
+
EXTRA_DIST = $(plugin_in_files)
CLEANFILES = $(plugin_DATA)
diff --git a/plugins/snippets/snippets.plugin.desktop.in b/plugins/snippets/snippets.plugin.desktop.in
index 826fd134..84de9c76 100644
--- a/plugins/snippets/snippets.plugin.desktop.in
+++ b/plugins/snippets/snippets.plugin.desktop.in
@@ -2,8 +2,8 @@
Loader=python3
Module=snippets
IAge=2
-_Name=Snippets
-_Description=Insert often-used pieces of text in a fast way
+Name=Snippets
+Description=Insert often-used pieces of text in a fast way
Authors=Jesse van den Kieboom <[email protected]>
Copyright=Copyright © 2005 Jesse van den Kieboom
Website=https://mate-desktop.org
diff --git a/plugins/sort/Makefile.am b/plugins/sort/Makefile.am
index a442c645..2f211352 100644
--- a/plugins/sort/Makefile.am
+++ b/plugins/sort/Makefile.am
@@ -21,11 +21,11 @@ include $(top_srcdir)/gla11y.mk
ui_DATA = $(ui_files)
plugin_in_files = sort.plugin.desktop.in
-
-%.plugin: %.plugin.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*po) ; $(INTLTOOL_MERGE) $(top_srcdir)/po $< $@ -d -u -c $(top_builddir)/po/.intltool-merge-cache
-
plugin_DATA = $(plugin_in_files:.plugin.desktop.in=.plugin)
+$(plugin_DATA): $(plugin_in_files)
+ $(AM_V_GEN) $(MSGFMT) --keyword=Name --keyword=Description --desktop --template $< -d $(top_srcdir)/po -o $@
+
EXTRA_DIST = $(ui_DATA) $(plugin_in_files) ui-a11y.suppr
CLEANFILES = $(plugin_DATA)
diff --git a/plugins/sort/sort.plugin.desktop.in b/plugins/sort/sort.plugin.desktop.in
index 4a9332bc..7e02b3a5 100644
--- a/plugins/sort/sort.plugin.desktop.in
+++ b/plugins/sort/sort.plugin.desktop.in
@@ -1,8 +1,8 @@
[Plugin]
Module=sort
IAge=2
-_Name=Sort
-_Description=Sorts a document or selected text.
+Name=Sort
+Description=Sorts a document or selected text.
Icon=view-sort-ascending
Authors=Carlo Borreo <[email protected]>;Lee Mallabone <[email protected]>;Paolo Maggi <[email protected]>;Jorge Alberto Torres H. <[email protected]>
Copyright=Copyright © 2001 Carlo Borreo\nCopyright © 2002-2003 Lee Mallabone, Paolo Maggi\nCopyright © 2004-2005 Paolo Maggi
diff --git a/plugins/spell/Makefile.am b/plugins/spell/Makefile.am
index 1ea7462e..79f67c1b 100644
--- a/plugins/spell/Makefile.am
+++ b/plugins/spell/Makefile.am
@@ -46,12 +46,11 @@ pluma-spell-marshal.c: pluma-spell-marshal.list $(GLIB_GENMARSHAL)
$(GLIB_GENMARSHAL) $< --body --prefix=pluma_marshal >> $@
plugin_in_files = spell.plugin.desktop.in
-
-%.plugin: %.plugin.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*po) ; $(INTLTOOL_MERGE) $(top_srcdir)/po $< $@ -d -u -c $(top_builddir)/po/.intltool-merge-cache
-
plugin_DATA = $(plugin_in_files:.plugin.desktop.in=.plugin)
-@INTLTOOL_XML_NOMERGE_RULE@
+$(plugin_DATA): $(plugin_in_files)
+ $(AM_V_GEN) $(MSGFMT) --keyword=Name --keyword=Description --desktop --template $< -d $(top_srcdir)/po -o $@
+
spell_gschema_in = org.mate.pluma.plugins.spell.gschema.xml.in
gsettings_SCHEMAS = $(spell_gschema_in:.xml.in=.xml)
@GSETTINGS_RULES@
diff --git a/plugins/spell/spell.plugin.desktop.in b/plugins/spell/spell.plugin.desktop.in
index 0ed87ae5..8174141f 100644
--- a/plugins/spell/spell.plugin.desktop.in
+++ b/plugins/spell/spell.plugin.desktop.in
@@ -1,8 +1,8 @@
[Plugin]
Module=spell
IAge=2
-_Name=Spell Checker
-_Description=Checks the spelling of the current document.
+Name=Spell Checker
+Description=Checks the spelling of the current document.
Icon=tools-check-spelling
Authors=Paolo Maggi <[email protected]>
Copyright=Copyright © 2002-2005 Paolo Maggi
diff --git a/plugins/taglist/HTML.tags.xml.in b/plugins/taglist/HTML.tags.xml.in
index 5eedb254..5d130014 100644
--- a/plugins/taglist/HTML.tags.xml.in
+++ b/plugins/taglist/HTML.tags.xml.in
@@ -1,2270 +1,2270 @@
<?xml version="1.0" encoding="UTF-8"?>
<TagList xmlns="http://pluma.sourceforge.net/some-location">
-<TagGroup _name="XHTML 1.0 - Tags" sort="true">
+<TagGroup name="XHTML 1.0 - Tags" sort="true">
- <Tag _name="Abbreviated form">
+ <Tag name="Abbreviated form">
<Begin>&lt;abbr title="</Begin>
<End>"&gt;&lt;/abbr&gt;</End>
</Tag>
- <Tag _name="Abbreviation">
+ <Tag name="Abbreviation">
<Begin>abbr="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Accessibility key character">
+ <Tag name="Accessibility key character">
<Begin>accesskey="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Acronym">
+ <Tag name="Acronym">
<Begin>&lt;acronym title="</Begin>
<End>"&gt;&lt;/acronym&gt;</End>
</Tag>
- <Tag _name="Align">
+ <Tag name="Align">
<Begin>align="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Alignment character">
+ <Tag name="Alignment character">
<Begin>char="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Alternative">
+ <Tag name="Alternative">
<Begin>alt="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Anchor URI">
+ <Tag name="Anchor URI">
<Begin>&lt;a href="</Begin>
<End>"&gt;&lt;/a&gt;</End>
</Tag>
- <Tag _name="Anchor">
+ <Tag name="Anchor">
<Begin>&lt;a id="</Begin>
<End>"&gt;&lt;/a&gt;</End>
</Tag>
<!-- Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD. -->
- <Tag _name="Applet class file code (deprecated)">
+ <Tag name="Applet class file code (deprecated)">
<Begin>code="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Associated information">
+ <Tag name="Associated information">
<Begin>content="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Author info">
+ <Tag name="Author info">
<Begin>&lt;address&gt;</Begin>
<End>&lt;/address&gt;</End>
</Tag>
- <Tag _name="Axis related headers">
+ <Tag name="Axis related headers">
<Begin>axis="</Begin>
<End>"</End>
</Tag>
<!-- Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD. -->
- <Tag _name="Background color (deprecated)">
+ <Tag name="Background color (deprecated)">
<Begin>bgcolor="</Begin>
<End>"</End>
</Tag>
<!-- Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD. -->
- <Tag _name="Background texture tile (deprecated)">
+ <Tag name="Background texture tile (deprecated)">
<Begin>background="</Begin>
<End>"</End>
</Tag>
<!-- Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD. -->
- <Tag _name="Base font (deprecated)">
+ <Tag name="Base font (deprecated)">
<Begin>&lt;basefont&gt;</Begin>
</Tag>
- <Tag _name="Base URI">
+ <Tag name="Base URI">
<Begin>codebase="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Bold">
+ <Tag name="Bold">
<Begin>&lt;b&gt;</Begin>
<End>&lt;/b&gt;</End>
</Tag>
<!-- Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD. -->
- <Tag _name="Border (deprecated)">
+ <Tag name="Border (deprecated)">
<Begin>border="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Cell rowspan">
+ <Tag name="Cell rowspan">
<Begin>rowspan="</Begin>
<End>"</End>
</Tag>
<!-- Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD. -->
- <Tag _name="Center (deprecated)">
+ <Tag name="Center (deprecated)">
<Begin>&lt;center&gt;</Begin>
<End>&lt;/center&gt;</End>
</Tag>
- <Tag _name="Character encoding of linked resource">
+ <Tag name="Character encoding of linked resource">
<Begin>charset="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Checked state">
+ <Tag name="Checked state">
<Begin>checked="checked"</Begin>
</Tag>
- <Tag _name="Citation">
+ <Tag name="Citation">
<Begin>&lt;cite&gt;</Begin>
<End>&lt;/cite&gt;</End>
</Tag>
- <Tag _name="Cite reason for change">
+ <Tag name="Cite reason for change">
<Begin>cite="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Class implementation ID">
+ <Tag name="Class implementation ID">
<Begin>classid="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Class list">
+ <Tag name="Class list">
<Begin>class="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Clear text flow control">
+ <Tag name="Clear text flow control">
<Begin>clear="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Code content type">
+ <Tag name="Code content type">
<Begin>codetype="</Begin>
<End>"</End>
</Tag>
<!-- Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD. -->
- <Tag _name="Color of selected links (deprecated)">
+ <Tag name="Color of selected links (deprecated)">
<Begin>alink="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Column span">
+ <Tag name="Column span">
<Begin>colspan="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Columns">
+ <Tag name="Columns">
<Begin>cols="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Comment">
+ <Tag name="Comment">
<Begin>&lt;!-- </Begin>
<End> --&gt;</End>
</Tag>
- <Tag _name="Computer code fragment">
+ <Tag name="Computer code fragment">
<Begin>&lt;code&gt;</Begin>
<End>&lt;/code&gt;</End>
</Tag>
<!-- The "type" attribute is deprecated for the "ol" tag only,
since HTML 4.01, not supported in XHTML 1.0 Strict DTD. -->
- <Tag _name="Content type (deprecated)">
+ <Tag name="Content type (deprecated)">
<Begin>type="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Coordinates">
+ <Tag name="Coordinates">
<Begin>coords="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Date and time of change">
+ <Tag name="Date and time of change">
<Begin>datetime="YYYYMMDD"</Begin>
</Tag>
<!-- NOTE: used in "object" tag -->
- <Tag _name="Declare flag">
+ <Tag name="Declare flag">
<Begin>declare="declare"</Begin>
</Tag>
<!-- Translators: DEFER is an optional attribute of the <script> tag.
It indicates that the script is not going to generate any document
content. The browser can continue parsing and drawing the page. -->
- <Tag _name="Defer attribute">
+ <Tag name="Defer attribute">
<Begin>defer="defer"</Begin>
</Tag>
- <Tag _name="Definition description">
+ <Tag name="Definition description">
<Begin>&lt;dd&gt;</Begin>
<End>&lt;/dd&gt;</End>
</Tag>
- <Tag _name="Definition list">
+ <Tag name="Definition list">
<Begin>&lt;dl&gt;</Begin>
<End>&lt;/dl&gt;</End>
</Tag>
- <Tag _name="Definition term">
+ <Tag name="Definition term">
<Begin>&lt;dt&gt;</Begin>
<End>&lt;/dt&gt;</End>
</Tag>
- <Tag _name="Deleted text">
+ <Tag name="Deleted text">
<Begin>&lt;del&gt;</Begin>
<End>&lt;/del&gt;</End>
</Tag>
- <Tag _name="Directionality">
+ <Tag name="Directionality">
<Begin>dir="</Begin>
<End>"</End>
</Tag>
<!-- Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD. -->
- <Tag _name="Directionality (deprecated)">
+ <Tag name="Directionality (deprecated)">
<Begin>&lt;dir&gt;</Begin>
<End>&lt;/dir&gt;</End>
</Tag>
- <Tag _name="Disabled">
+ <Tag name="Disabled">
<Begin>disabled="disabled"</Begin>
</Tag>
- <Tag _name="DIV container">
+ <Tag name="DIV container">
<Begin>&lt;div&gt;</Begin>
<End>&lt;/div&gt;</End>
</Tag>
- <Tag _name="DIV Style container">
+ <Tag name="DIV Style container">
<Begin>&lt;div style=&gt;</Begin>
<End>&lt;/div&gt;</End>
</Tag>
- <Tag _name="Document base">
+ <Tag name="Document base">
<Begin>&lt;base href="</Begin>
<End>" /&gt;</End>
</Tag>
- <Tag _name="Document body">
+ <Tag name="Document body">
<Begin>&lt;body&gt;</Begin>
<End>&lt;/body&gt;</End>
</Tag>
- <Tag _name="Document head">
+ <Tag name="Document head">
<Begin>&lt;head&gt;</Begin>
<End>&lt;/head&gt;</End>
</Tag>
- <Tag _name="Element ID">
+ <Tag name="Element ID">
<Begin>id="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Document title">
+ <Tag name="Document title">
<Begin>&lt;title&gt;</Begin>
<End>&lt;/title&gt;</End>
</Tag>
- <Tag _name="Document type">
+ <Tag name="Document type">
<Begin>&lt;!DOCTYPE&gt;</Begin>
</Tag>
- <Tag _name="Emphasis">
+ <Tag name="Emphasis">
<Begin>&lt;em&gt;</Begin>
<End>&lt;/em&gt;</End>
</Tag>
- <Tag _name="Encode type">
+ <Tag name="Encode type">
<Begin>enctype="</Begin>
<End>"</End>
</Tag>
<!-- Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD. -->
- <Tag _name="Font face (deprecated)">
+ <Tag name="Font face (deprecated)">
<Begin>face="</Begin>
<End>"</End>
</Tag>
- <Tag _name="For label">
+ <Tag name="For label">
<Begin>for="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Forced line break">
+ <Tag name="Forced line break">
<Begin>&lt;br /&gt;</Begin>
</Tag>
- <Tag _name="Form action handler">
+ <Tag name="Form action handler">
<Begin>action="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Form control group">
+ <Tag name="Form control group">
<Begin>&lt;fieldset&gt;</Begin>
<End>&lt;/fieldset&gt;</End>
</Tag>
- <Tag _name="Form field label text">
+ <Tag name="Form field label text">
<Begin>&lt;label&gt;</Begin>
<End>&lt;/label&gt;</End>
</Tag>
- <Tag _name="Form input type">
+ <Tag name="Form input type">
<Begin>&lt;input type="</Begin>
<End>" /&gt;</End>
</Tag>
- <Tag _name="Form input">
+ <Tag name="Form input">
<Begin>&lt;input /&gt;</Begin>
</Tag>
- <Tag _name="Form method">
+ <Tag name="Form method">
<Begin>&lt;form method="</Begin>
<End>"&gt;&lt;/form&gt;</End>
</Tag>
- <Tag _name="Form method">
+ <Tag name="Form method">
<Begin>method="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Form">
+ <Tag name="Form">
<Begin>&lt;form&gt;</Begin>
<End>&lt;/form&gt;</End>
</Tag>
- <Tag _name="Forward link">
+ <Tag name="Forward link">
<Begin>rel="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Frame render parts">
+ <Tag name="Frame render parts">
<Begin>frame="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Frame source">
+ <Tag name="Frame source">
<Begin>&lt;frame src="</Begin>
<End>"&gt;&lt;/frame&gt;</End>
</Tag>
- <Tag _name="Frame target">
+ <Tag name="Frame target">
<Begin>target="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Frame">
+ <Tag name="Frame">
<Begin>&lt;frame&gt;</Begin>
<End>&lt;/frame&gt;</End>
</Tag>
- <Tag _name="Frame border">
+ <Tag name="Frame border">
<Begin>frameborder="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Frameset columns">
+ <Tag name="Frameset columns">
<Begin>&lt;frameset cols="</Begin>
<End>"&gt;&lt;/frameset&gt;</End>
</Tag>
- <Tag _name="Frameset rows">
+ <Tag name="Frameset rows">
<Begin>&lt;frameset rows="</Begin>
<End>"&gt;&lt;/frameset&gt;</End>
</Tag>
- <Tag _name="Frameset">
+ <Tag name="Frameset">
<Begin>&lt;frameset&gt;</Begin>
<End>&lt;/frameset&gt;</End>
</Tag>
- <Tag _name="Frame spacing">
+ <Tag name="Frame spacing">
<Begin>framespacing="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Generic embedded object">
+ <Tag name="Generic embedded object">
<Begin>&lt;object&gt;</Begin>
<End>&lt;/object&gt;</End>
</Tag>
- <Tag _name="Generic metainformation">
+ <Tag name="Generic metainformation">
<Begin>&lt;meta content="</Begin>
<End>"&gt;&lt;/meta&gt;</End>
</Tag>
- <Tag _name="Generic span">
+ <Tag name="Generic span">
<Begin>&lt;span&gt;</Begin>
<End>&lt;/span&gt;</End>
</Tag>
- <Tag _name="Header cell IDs">
+ <Tag name="Header cell IDs">
<Begin>headers="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Heading 1">
+ <Tag name="Heading 1">
<Begin>&lt;h1&gt;</Begin>
<End>&lt;/h1&gt;</End>
</Tag>
- <Tag _name="Heading 2">
+ <Tag name="Heading 2">
<Begin>&lt;h2&gt;</Begin>
<End>&lt;/h2&gt;</End>
</Tag>
- <Tag _name="Heading 3">
+ <Tag name="Heading 3">
<Begin>&lt;h3&gt;</Begin>
<End>&lt;/h3&gt;</End>
</Tag>
- <Tag _name="Heading 4">
+ <Tag name="Heading 4">
<Begin>&lt;h4&gt;</Begin>
<End>&lt;/h4&gt;</End>
</Tag>
- <Tag _name="Heading 5">
+ <Tag name="Heading 5">
<Begin>&lt;h5&gt;</Begin>
<End>&lt;/h5&gt;</End>
</Tag>
- <Tag _name="Heading 6">
+ <Tag name="Heading 6">
<Begin>&lt;h6&gt;</Begin>
<End>&lt;/h6&gt;</End>
</Tag>
- <Tag _name="Height">
+ <Tag name="Height">
<Begin>height="</Begin>
</Tag>
- <Tag _name="Horizontal rule">
+ <Tag name="Horizontal rule">
<Begin>&lt;hr /&gt;</Begin>
</Tag>
<!-- Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD. -->
- <Tag _name="Horizontal space (deprecated)">
+ <Tag name="Horizontal space (deprecated)">
<Begin>hspace="</Begin>
<End>"</End>
</Tag>
- <Tag _name="HREF URI">
+ <Tag name="HREF URI">
<Begin>href="</Begin>
<End>"</End>
</Tag>
- <Tag _name="HTML root element">
+ <Tag name="HTML root element">
<Begin>&lt;html&gt;</Begin>
<End>&lt;/html&gt;</End>
</Tag>
- <Tag _name="HTTP header name">
+ <Tag name="HTTP header name">
<Begin>http-equiv="</Begin>
<End>"</End>
</Tag>
- <Tag _name="I18N BiDi override">
+ <Tag name="I18N BiDi override">
<Begin>&lt;bdo&gt;</Begin>
<End>&lt;/bdo&gt;</End>
</Tag>
- <Tag _name="Image map area">
+ <Tag name="Image map area">
<Begin>&lt;area alt="</Begin>
<End>"&gt;&lt;/area&gt;</End>
</Tag>
- <Tag _name="Image map name">
+ <Tag name="Image map name">
<Begin>&lt;map name="</Begin>
<End>"&gt;&lt;/map&gt;</End>
</Tag>
- <Tag _name="Image map">
+ <Tag name="Image map">
<Begin>&lt;map id="</Begin>
<End>"&gt;&lt;/map&gt;</End>
</Tag>
- <Tag _name="Image">
+ <Tag name="Image">
<Begin>&lt;img id="</Begin>
<End>" src="" alt="" /&gt;</End>
</Tag>
- <Tag _name="Inline frame">
+ <Tag name="Inline frame">
<Begin>&lt;iframe&gt;</Begin>
<End>&lt;/iframe&gt;</End>
</Tag>
- <Tag _name="Inserted text">
+ <Tag name="Inserted text">
<Begin>&lt;ins&gt;</Begin>
<End>&lt;/ins&gt;</End>
</Tag>
- <Tag _name="Instance definition">
+ <Tag name="Instance definition">
<Begin>&lt;dfn&gt;</Begin>
<End>&lt;/dfn&gt;</End>
</Tag>
- <Tag _name="Italic text">
+ <Tag name="Italic text">
<Begin>&lt;i&gt;</Begin>
<End>&lt;/i&gt;</End>
</Tag>
<!-- Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD. -->
- <Tag _name="Java applet (deprecated)">
+ <Tag name="Java applet (deprecated)">
<Begin>&lt;applet height="</Begin>
<End>" width=""&gt;&lt;/applet&gt;</End>
</Tag>
- <Tag _name="Label">
+ <Tag name="Label">
<Begin>label="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Language code">
+ <Tag name="Language code">
<Begin>hreflang="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Language code">
+ <Tag name="Language code">
<Begin>lang="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Large text style">
+ <Tag name="Large text style">
<Begin>&lt;big&gt;</Begin>
<End>&lt;/big&gt;</End>
</Tag>
<!-- Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD. -->
- <Tag _name="Link color (deprecated)">
+ <Tag name="Link color (deprecated)">
<Begin>link="</Begin>
<End>"</End>
</Tag>
- <Tag _name="List item">
+ <Tag name="List item">
<Begin>&lt;li&gt;</Begin>
<End>&lt;/li&gt;</End>
</Tag>
- <Tag _name="List of MIME types for file upload">
+ <Tag name="List of MIME types for file upload">
<Begin>accept="</Begin>
<End>"</End>
</Tag>
- <Tag _name="List of supported character sets">
+ <Tag name="List of supported character sets">
<Begin>accept-charset="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Local change to font">
+ <Tag name="Local change to font">
<Begin>&lt;font&gt;</Begin>
<End>&lt;/font&gt;</End>
</Tag>
- <Tag _name="Long description link">
+ <Tag name="Long description link">
<Begin>longdesc="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Long quotation">
+ <Tag name="Long quotation">
<Begin>&lt;blockquote&gt;</Begin>
<End>&lt;/blockquote&gt;</End>
</Tag>
<!-- Supported in XHTML 1.0 Frameset DTD only. -->
- <Tag _name="Margin pixel height">
+ <Tag name="Margin pixel height">
<Begin>marginheight="</Begin>
<End>"</End>
</Tag>
<!-- Supported in XHTML 1.0 Frameset DTD only. -->
- <Tag _name="Margin pixel width">
+ <Tag name="Margin pixel width">
<Begin>marginwidth="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Maximum length of text field">
+ <Tag name="Maximum length of text field">
<Begin>maxlength="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Output media">
+ <Tag name="Output media">
<Begin>media="</Begin>
<End>"</End>
</Tag>
<!-- Here I take some liberties: There's no mandatory attributes,
but those are most common, and will likely be used. -->
- <Tag _name="Media-independent link">
+ <Tag name="Media-independent link">
<Begin>&lt;link rel="</Begin>
<End>" type="" href="" /&gt;</End>
</Tag>
<!-- Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD. -->
- <Tag _name="Menu list (deprecated)">
+ <Tag name="Menu list (deprecated)">
<Begin>&lt;menu&gt;</Begin>
<End>&lt;/menu&gt;</End>
</Tag>
- <Tag _name="Multi-line text field">
+ <Tag name="Multi-line text field">
<Begin>&lt;textarea cols="</Begin>
<End>" rows=""&gt;&lt;/textarea&gt;</End>
</Tag>
- <Tag _name="Multiple">
+ <Tag name="Multiple">
<Begin>multiple="multiple"</Begin>
</Tag>
- <Tag _name="Name">
+ <Tag name="Name">
<Begin>name="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Named property value">
+ <Tag name="Named property value">
<Begin>&lt;param name="</Begin>
<End>"&gt;&lt;/param&gt;</End>
</Tag>
- <Tag _name="No frames">
+ <Tag name="No frames">
<Begin>&lt;noframes&gt;</Begin>
<End>&lt;/noframes&gt;</End>
</Tag>
- <Tag _name="No resize">
+ <Tag name="No resize">
<Begin>noresize="noresize"</Begin>
</Tag>
- <Tag _name="No script">
+ <Tag name="No script">
<Begin>&lt;noscript&gt;</Begin>
<End>&lt;/noscript&gt;</End>
</Tag>
<!-- Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD. -->
- <Tag _name="No shade (deprecated)">
+ <Tag name="No shade (deprecated)">
<Begin>noshade="noshade"</Begin>
</Tag>
- <Tag _name="No URI">
+ <Tag name="No URI">
<Begin>nohref="</Begin>
<End>"</End>
</Tag>
<!-- Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD. -->
- <Tag _name="No word wrap (deprecated)">
+ <Tag name="No word wrap (deprecated)">
<Begin>nowrap="nowrap"</Begin>
</Tag>
<!-- Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD. -->
- <Tag _name="Object applet file (deprecated)">
+ <Tag name="Object applet file (deprecated)">
<Begin>object="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Object data reference">
+ <Tag name="Object data reference">
<Begin>data="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Offset for alignment character">
+ <Tag name="Offset for alignment character">
<Begin>charoff="</Begin>
<End>"</End>
</Tag>
- <Tag _name="OnBlur event">
+ <Tag name="OnBlur event">
<Begin>onblur="</Begin>
<End>"</End>
</Tag>
- <Tag _name="OnChange event">
+ <Tag name="OnChange event">
<Begin>onchange="</Begin>
<End>"</End>
</Tag>
- <Tag _name="OnClick event">
+ <Tag name="OnClick event">
<Begin>onclick="</Begin>
<End>"</End>
</Tag>
- <Tag _name="OnDblClick event">
+ <Tag name="OnDblClick event">
<Begin>ondbclick="</Begin>
<End>"</End>
</Tag>
- <Tag _name="OnFocus event">
+ <Tag name="OnFocus event">
<Begin>onfocus="</Begin>
<End>"</End>
</Tag>
- <Tag _name="OnKeyDown event">
+ <Tag name="OnKeyDown event">
<Begin>onkeydown="</Begin>
<End>"</End>
</Tag>
- <Tag _name="OnKeyPress event">
+ <Tag name="OnKeyPress event">
<Begin>onkeypress="</Begin>
<End>"</End>
</Tag>
- <Tag _name="OnKeyUp event">
+ <Tag name="OnKeyUp event">
<Begin>onkeyup="</Begin>
<End>"</End>
</Tag>
- <Tag _name="OnLoad event">
+ <Tag name="OnLoad event">
<Begin>onload="</Begin>
<End>"</End>
</Tag>
- <Tag _name="OnMouseDown event">
+ <Tag name="OnMouseDown event">
<Begin>onmousedown="</Begin>
<End>"</End>
</Tag>
- <Tag _name="OnMouseMove event">
+ <Tag name="OnMouseMove event">
<Begin>onmousemove="</Begin>
<End>"</End>
</Tag>
- <Tag _name="OnMouseOut event">
+ <Tag name="OnMouseOut event">
<Begin>onmouseout="</Begin>
<End>"</End>
</Tag>
- <Tag _name="OnMouseOver event">
+ <Tag name="OnMouseOver event">
<Begin>onmouseover="</Begin>
<End>"</End>
</Tag>
- <Tag _name="OnMouseUp event">
+ <Tag name="OnMouseUp event">
<Begin>onmouseup="</Begin>
<End>"</End>
</Tag>
- <Tag _name="OnReset event">
+ <Tag name="OnReset event">
<Begin>onreset="</Begin>
<End>"</End>
</Tag>
- <Tag _name="OnSelect event">
+ <Tag name="OnSelect event">
<Begin>onselect="</Begin>
<End>"</End>
</Tag>
- <Tag _name="OnSubmit event">
+ <Tag name="OnSubmit event">
<Begin>onsubmit="</Begin>
<End>"</End>
</Tag>
- <Tag _name="OnUnload event">
+ <Tag name="OnUnload event">
<Begin>onunload="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Option group">
+ <Tag name="Option group">
<Begin>&lt;optgroup label="</Begin>
<End>"&gt;&lt;/optgroup&gt;</End>
</Tag>
- <Tag _name="Option selector">
+ <Tag name="Option selector">
<Begin>&lt;select&gt;</Begin>
<End>&lt;/select&gt;</End>
</Tag>
- <Tag _name="Ordered list">
+ <Tag name="Ordered list">
<Begin>&lt;ol&gt;</Begin>
<End>&lt;/ol&gt;</End>
</Tag>
- <Tag _name="Paragraph class">
+ <Tag name="Paragraph class">
<Begin>&lt;p class="</Begin>
<End>"&gt;&lt;/p&gt;</End>
</Tag>
- <Tag _name="Paragraph style">
+ <Tag name="Paragraph style">
<Begin>&lt;p style="</Begin>
<End>"&gt;&lt;/p&gt;</End>
</Tag>
- <Tag _name="Paragraph">
+ <Tag name="Paragraph">
<Begin>&lt;p&gt;</Begin>
<End>&lt;/p&gt;</End>
</Tag>
- <Tag _name="Preformatted text">
+ <Tag name="Preformatted text">
<Begin>&lt;pre&gt;</Begin>
<End>&lt;/pre&gt;</End>
</Tag>
- <Tag _name="Profile metainfo dictionary">
+ <Tag name="Profile metainfo dictionary">
<Begin>profile="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Push button">
+ <Tag name="Push button">
<Begin>&lt;button&gt;</Begin>
<End>&lt;/button&gt;</End>
</Tag>
- <Tag _name="ReadOnly text and password">
+ <Tag name="ReadOnly text and password">
<Begin>readonly="readonly"</Begin>
</Tag>
<!-- Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD. -->
- <Tag _name="Reduced spacing (deprecated)">
+ <Tag name="Reduced spacing (deprecated)">
<Begin>compact="compact_rendering"</Begin>
</Tag>
- <Tag _name="Reverse link">
+ <Tag name="Reverse link">
<Begin>rev="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Rows">
+ <Tag name="Rows">
<Begin>rows="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Rulings between rows and columns">
+ <Tag name="Rulings between rows and columns">
<Begin>rules="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Sample program output, scripts">
+ <Tag name="Sample program output, scripts">
<Begin>&lt;samp&gt;</Begin>
<End>&lt;/samp&gt;</End>
</Tag>
- <Tag _name="Scope covered by header cells">
+ <Tag name="Scope covered by header cells">
<Begin>scope="</Begin>
<End>"</End>
</Tag>
<!-- Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD. -->
- <Tag _name="Script language name">
+ <Tag name="Script language name">
<Begin>language="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Script statements">
+ <Tag name="Script statements">
<Begin>&lt;script type="</Begin>
<End>"&gt;&lt;/script&gt;</End>
</Tag>
- <Tag _name="Scrollbar">
+ <Tag name="Scrollbar">
<Begin>scrolling="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Selectable option">
+ <Tag name="Selectable option">
<Begin>&lt;option&gt;</Begin>
<End>&lt;/option&gt;</End>
</Tag>
- <Tag _name="Selected">
+ <Tag name="Selected">
<Begin>selected="selected"</Begin>
</Tag>
- <Tag _name="Server-side image map">
+ <Tag name="Server-side image map">
<Begin>ismap="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Shape">
+ <Tag name="Shape">
<Begin>shape="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Short inline quotation">
+ <Tag name="Short inline quotation">
<Begin>&lt;q&gt;</Begin>
<End>&lt;/q&gt;</End>
</Tag>
<!-- Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD. -->
- <Tag _name="Size (deprecated)">
+ <Tag name="Size (deprecated)">
<Begin>size="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Small text style">
+ <Tag name="Small text style">
<Begin>&lt;small&gt;</Begin>
<End>&lt;/small&gt;</End>
</Tag>
- <Tag _name="Source">
+ <Tag name="Source">
<Begin>src="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Space-separated archive list">
+ <Tag name="Space-separated archive list">
<Begin>archive="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Spacing between cells">
+ <Tag name="Spacing between cells">
<Begin>cellspacing="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Spacing within cells">
+ <Tag name="Spacing within cells">
<Begin>cellpadding="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Span">
+ <Tag name="Span">
<Begin>span="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Standby load message">
+ <Tag name="Standby load message">
<Begin>standby="</Begin>
<End>"</End>
</Tag>
<!-- Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD. -->
- <Tag _name="Starting sequence number (deprecated)">
+ <Tag name="Starting sequence number (deprecated)">
<Begin>start="</Begin>
<End>"</End>
</Tag>
<!-- Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD. -->
- <Tag _name="Strike-through text style (deprecated)">
+ <Tag name="Strike-through text style (deprecated)">
<Begin>&lt;s&gt;</Begin>
<End>&lt;/s&gt;</End>
</Tag>
<!-- Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD. -->
- <Tag _name="Strike-through text (deprecated)">
+ <Tag name="Strike-through text (deprecated)">
<Begin>&lt;strike&gt;</Begin>
<End>&lt;/strike&gt;</End>
</Tag>
- <Tag _name="Strong emphasis">
+ <Tag name="Strong emphasis">
<Begin>&lt;strong&gt;</Begin>
<End>&lt;/strong&gt;</End>
</Tag>
- <Tag _name="Style info">
+ <Tag name="Style info">
<Begin>&lt;style type="text/css"&gt;</Begin>
<End>&lt;/style&gt;</End>
</Tag>
- <Tag _name="Style info">
+ <Tag name="Style info">
<Begin>style="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Subscript">
+ <Tag name="Subscript">
<Begin>&lt;sub&gt;</Begin>
<End>&lt;/sub&gt;</End>
</Tag>
- <Tag _name="Superscript">
+ <Tag name="Superscript">
<Begin>&lt;sup&gt;</Begin>
<End>&lt;/sup&gt;</End>
</Tag>
- <Tag _name="Table body">
+ <Tag name="Table body">
<Begin>&lt;tbody&gt;</Begin>
<End>&lt;/tbody&gt;</End>
</Tag>
- <Tag _name="Table caption">
+ <Tag name="Table caption">
<Begin>&lt;caption&gt;</Begin>
<End>&lt;/caption&gt;</End>
</Tag>
- <Tag _name="Table column group properties">
+ <Tag name="Table column group properties">
<Begin>&lt;colgroup&gt;</Begin>
<End>&lt;/colgroup&gt;</End>
</Tag>
- <Tag _name="Table column properties">
+ <Tag name="Table column properties">
<Begin>&lt;col&gt;</Begin>
<End>&lt;/col&gt;</End>
</Tag>
- <Tag _name="Table data cell">
+ <Tag name="Table data cell">
<Begin>&lt;td&gt;</Begin>
<End>&lt;/td&gt;</End>
</Tag>
- <Tag _name="Table footer">
+ <Tag name="Table footer">
<Begin>&lt;tfoot&gt;</Begin>
<End>&lt;/tfoot&gt;</End>
</Tag>
- <Tag _name="Table header cell">
+ <Tag name="Table header cell">
<Begin>&lt;th&gt;</Begin>
<End>&lt;/th&gt;</End>
</Tag>
- <Tag _name="Table header">
+ <Tag name="Table header">
<Begin>&lt;thead&gt;</Begin>
<End>&lt;/thead&gt;</End>
</Tag>
- <Tag _name="Table row">
+ <Tag name="Table row">
<Begin>&lt;tr&gt;</Begin>
<End>&lt;/tr&gt;</End>
</Tag>
- <Tag _name="Table summary">
+ <Tag name="Table summary">
<Begin>summary="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Table">
+ <Tag name="Table">
<Begin>&lt;table&gt;</Begin>
<End>&lt;/table&gt;</End>
</Tag>
- <Tag _name="Target - Blank">
+ <Tag name="Target - Blank">
<Begin>&lt;a target="_blank"&gt;</Begin>
<End>&lt;/a&gt;</End>
</Tag>
- <Tag _name="Target - Parent">
+ <Tag name="Target - Parent">
<Begin>&lt;a target="_parent"&gt;</Begin>
<End>&lt;/a&gt;</End>
</Tag>
- <Tag _name="Target - Self">
+ <Tag name="Target - Self">
<Begin>&lt;a target="_self"&gt;</Begin>
<End>&lt;/a&gt;</End>
</Tag>
- <Tag _name="Target - Top">
+ <Tag name="Target - Top">
<Begin>&lt;a target="_top"&gt;</Begin>
<End>&lt;/a&gt;</End>
</Tag>
- <Tag _name="Teletype or monospace text style">
+ <Tag name="Teletype or monospace text style">
<Begin>&lt;tt&gt;</Begin>
<End>&lt;/tt&gt;</End>
</Tag>
<!-- Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD. -->
- <Tag _name="Text color (deprecated)">
+ <Tag name="Text color (deprecated)">
<Begin>color="</Begin>
<End>"</End>
</Tag>
<!-- Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD. -->
- <Tag _name="Text color (deprecated)">
+ <Tag name="Text color (deprecated)">
<Begin>text="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Text entered by user">
+ <Tag name="Text entered by user">
<Begin>&lt;kbd&gt;</Begin>
<End>&lt;/kbd&gt;</End>
</Tag>
- <Tag _name="Title">
+ <Tag name="Title">
<Begin>title="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Underlined text style">
+ <Tag name="Underlined text style">
<Begin>&lt;u&gt;</Begin>
<End>&lt;/u&gt;</End>
</Tag>
- <Tag _name="Unordered list">
+ <Tag name="Unordered list">
<Begin>&lt;ul&gt;</Begin>
<End>&lt;/ul&gt;</End>
</Tag>
- <Tag _name="Use image map">
+ <Tag name="Use image map">
<Begin>usemap="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Value interpretation">
+ <Tag name="Value interpretation">
<Begin>valuetype="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Value">
+ <Tag name="Value">
<Begin>value="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Variable or program argument">
+ <Tag name="Variable or program argument">
<Begin>&lt;var&gt;</Begin>
<End>&lt;/var&gt;</End>
</Tag>
- <Tag _name="Vertical cell alignment">
+ <Tag name="Vertical cell alignment">
<Begin>valign="</Begin>
<End>"</End>
</Tag>
<!-- Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD. -->
- <Tag _name="Vertical space (deprecated)">
+ <Tag name="Vertical space (deprecated)">
<Begin>vspace="</Begin>
<End>"</End>
</Tag>
<!-- Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD. -->
- <Tag _name="Visited link color (deprecated)">
+ <Tag name="Visited link color (deprecated)">
<Begin>vlink="</Begin>
<End>"</End>
</Tag>
- <Tag _name="Width">
+ <Tag name="Width">
<Begin>width="</Begin>
<End>"</End>
</Tag>
</TagGroup>
-<TagGroup _name="HTML - Tags" sort="true">
+<TagGroup name="HTML - Tags" sort="true">
- <Tag _name="Abbreviated form">
+ <Tag name="Abbreviated form">
<Begin>&lt;abbr&gt;</Begin>
<End>&lt;/abbr&gt;</End>
</Tag>
- <Tag _name="Abbreviation">
+ <Tag name="Abbreviation">
<Begin>abbr=</Begin>
</Tag>
- <Tag _name="Above">
+ <Tag name="Above">
<Begin>&lt;above&gt;</Begin>
</Tag>
- <Tag _name="Accessibility key character">
+ <Tag name="Accessibility key character">
<Begin>accesskey=</Begin>
</Tag>
- <Tag _name="Acronym">
+ <Tag name="Acronym">
<Begin>&lt;acronym&gt;</Begin>
<End>&lt;/acronym&gt;</End>
</Tag>
- <Tag _name="Align">
+ <Tag name="Align">
<Begin>align=</Begin>
</Tag>
- <Tag _name="Alignment character">
+ <Tag name="Alignment character">
<Begin>char=</Begin>
</Tag>
- <Tag _name="Alternative">
+ <Tag name="Alternative">
<Begin>alt=</Begin>
</Tag>
- <Tag _name="Anchor URI">
+ <Tag name="Anchor URI">
<Begin>&lt;a href=&gt;</Begin>
<End>&lt;/a&gt;</End>
</Tag>
- <Tag _name="Anchor">
+ <Tag name="Anchor">
<Begin>&lt;a&gt;</Begin>
<End>&lt;/a&gt;</End>
</Tag>
- <Tag _name="Applet class file code">
+ <Tag name="Applet class file code">
<Begin>code=</Begin>
</Tag>
- <Tag _name="Array">
+ <Tag name="Array">
<Begin>&lt;array&gt;</Begin>
</Tag>
- <Tag _name="Associated information">
+ <Tag name="Associated information">
<Begin>content=</Begin>
</Tag>
- <Tag _name="Author info">
+ <Tag name="Author info">
<Begin>&lt;address&gt;</Begin>
<End>&lt;/address&gt;</End>
</Tag>
- <Tag _name="Axis related headers">
+ <Tag name="Axis related headers">
<Begin>axis=</Begin>
</Tag>
- <Tag _name="Background color">
+ <Tag name="Background color">
<Begin>bgcolor=</Begin>
</Tag>
- <Tag _name="Background texture tile">
+ <Tag name="Background texture tile">
<Begin>background=</Begin>
</Tag>
- <Tag _name="Base font">
+ <Tag name="Base font">
<Begin>&lt;basefont&gt;</Begin>
</Tag>
- <Tag _name="Base URI">
+ <Tag name="Base URI">
<Begin>codebase=</Begin>
</Tag>
- <Tag _name="Bold">
+ <Tag name="Bold">
<Begin>&lt;b&gt;</Begin>
<End>&lt;/b&gt;</End>
</Tag>
- <Tag _name="Border color">
+ <Tag name="Border color">
<Begin>bordercolor=</Begin>
</Tag>
- <Tag _name="Border">
+ <Tag name="Border">
<Begin>border=</Begin>
</Tag>
- <Tag _name="Cell rowspan">
+ <Tag name="Cell rowspan">
<Begin>rowspan=</Begin>
</Tag>
- <Tag _name="Center">
+ <Tag name="Center">
<Begin>&lt;center&gt;</Begin>
<End>&lt;/center&gt;</End>
</Tag>
- <Tag _name="Character encoding of linked resource">
+ <Tag name="Character encoding of linked resource">
<Begin>charset=</Begin>
</Tag>
- <Tag _name="Checked (state)">
+ <Tag name="Checked (state)">
<Begin>checked</Begin>
</Tag>
- <Tag _name="Citation">
+ <Tag name="Citation">
<Begin>&lt;cite&gt;</Begin>
<End>&lt;/cite&gt;</End>
</Tag>
- <Tag _name="Cite reason for change">
+ <Tag name="Cite reason for change">
<Begin>cite=</Begin>
</Tag>
- <Tag _name="Class implementation ID">
+ <Tag name="Class implementation ID">
<Begin>classid=</Begin>
</Tag>
- <Tag _name="Class list">
+ <Tag name="Class list">
<Begin>class=</Begin>
</Tag>
- <Tag _name="Clear text flow control">
+ <Tag name="Clear text flow control">
<Begin>clear=</Begin>
</Tag>
- <Tag _name="Code content type">
+ <Tag name="Code content type">
<Begin>codetype=</Begin>
</Tag>
- <Tag _name="Color of selected links">
+ <Tag name="Color of selected links">
<Begin>alink=</Begin>
</Tag>
- <Tag _name="Column span">
+ <Tag name="Column span">
<Begin>colspan=</Begin>
</Tag>
- <Tag _name="Columns">
+ <Tag name="Columns">
<Begin>cols=</Begin>
</Tag>
- <Tag _name="Comment">
+ <Tag name="Comment">
<Begin>&lt;!-- </Begin>
<End> --&gt;</End>
</Tag>
- <Tag _name="Comment">
+ <Tag name="Comment">
<Begin>&lt;comment&gt;</Begin>
<End>&lt;/comment&gt;</End>
</Tag>
- <Tag _name="Computer code fragment">
+ <Tag name="Computer code fragment">
<Begin>&lt;code&gt;</Begin>
<End>&lt;/code&gt;</End>
</Tag>
- <Tag _name="Content scheme">
+ <Tag name="Content scheme">
<Begin>scheme=</Begin>
</Tag>
- <Tag _name="Content type">
+ <Tag name="Content type">
<Begin>type=</Begin>
</Tag>
- <Tag _name="Coordinates">
+ <Tag name="Coordinates">
<Begin>coords=</Begin>
</Tag>
- <Tag _name="Date and time of change">
+ <Tag name="Date and time of change">
<Begin>datetime=</Begin>
</Tag>
- <Tag _name="Declare flag">
+ <Tag name="Declare flag">
<Begin>declare</Begin>
</Tag>
<!-- Translators: DEFER is an optional attribute of the <script> tag.
It indicates that the script is not going to generate any document
content. The browser can continue parsing and drawing the page. -->
- <Tag _name="Defer attribute">
+ <Tag name="Defer attribute">
<Begin>defer</Begin>
</Tag>
- <Tag _name="Definition description">
+ <Tag name="Definition description">
<Begin>&lt;dd&gt;</Begin>
<End>&lt;/dd&gt;</End>
</Tag>
- <Tag _name="Definition list">
+ <Tag name="Definition list">
<Begin>&lt;dl&gt;</Begin>
<End>&lt;/dl&gt;</End>
</Tag>
- <Tag _name="Definition term">
+ <Tag name="Definition term">
<Begin>&lt;dt&gt;</Begin>
<End>&lt;/dt&gt;</End>
</Tag>
- <Tag _name="Deleted text">
+ <Tag name="Deleted text">
<Begin>&lt;del&gt;</Begin>
<End>&lt;/del&gt;</End>
</Tag>
- <Tag _name="Direction">
+ <Tag name="Direction">
<Begin>direction=</Begin>
</Tag>
- <Tag _name="Directionality">
+ <Tag name="Directionality">
<Begin>dir=</Begin>
</Tag>
- <Tag _name="Directory list">
+ <Tag name="Directory list">
<Begin>&lt;dir&gt;</Begin>
<End>&lt;/dir&gt;</End>
</Tag>
- <Tag _name="Disabled">
+ <Tag name="Disabled">
<Begin>disabled</Begin>
</Tag>
- <Tag _name="DIV container">
+ <Tag name="DIV container">
<Begin>&lt;div&gt;</Begin>
<End>&lt;/div&gt;</End>
</Tag>
- <Tag _name="DIV Style container">
+ <Tag name="DIV Style container">
<Begin>&lt;div style=&gt;</Begin>
<End>&lt;/div&gt;</End>
</Tag>
- <Tag _name="Document base">
+ <Tag name="Document base">
<Begin>&lt;base&gt;</Begin>
</Tag>
- <Tag _name="Document body">
+ <Tag name="Document body">
<Begin>&lt;body&gt;</Begin>
<End>&lt;/body&gt;</End>
</Tag>
- <Tag _name="Document head">
+ <Tag name="Document head">
<Begin>&lt;head&gt;</Begin>
<End>&lt;/head&gt;</End>
</Tag>
- <Tag _name="Element ID">
+ <Tag name="Element ID">
<Begin>id=</Begin>
</Tag>
- <Tag _name="Document title">
+ <Tag name="Document title">
<Begin>&lt;title&gt;</Begin>
<End>&lt;/title&gt;</End>
</Tag>
- <Tag _name="Document type">
+ <Tag name="Document type">
<Begin>&lt;!DOCTYPE&gt;</Begin>
</Tag>
- <Tag _name="HTML version">
+ <Tag name="HTML version">
<Begin>version=</Begin>
</Tag>
- <Tag _name="Embedded object">
+ <Tag name="Embedded object">
<Begin>&lt;embed&gt;</Begin>
<End>&lt;/embed&gt;</End>
</Tag>
- <Tag _name="Emphasis">
+ <Tag name="Emphasis">
<Begin>&lt;em&gt;</Begin>
<End>&lt;/em&gt;</End>
</Tag>
- <Tag _name="Encode type">
+ <Tag name="Encode type">
<Begin>enctype=</Begin>
</Tag>
- <Tag _name="Figure">
+ <Tag name="Figure">
<Begin>&lt;fig&gt;</Begin>
<End>&lt;/fig&gt;</End>
</Tag>
- <Tag _name="Font face">
+ <Tag name="Font face">
<Begin>face=</Begin>
</Tag>
- <Tag _name="For label">
+ <Tag name="For label">
<Begin>for=</Begin>
</Tag>
- <Tag _name="Forced line break">
+ <Tag name="Forced line break">
<Begin>&lt;br /&gt;</Begin>
</Tag>
- <Tag _name="Form action handler">
+ <Tag name="Form action handler">
<Begin>action=</Begin>
</Tag>
- <Tag _name="Form control group">
+ <Tag name="Form control group">
<Begin>&lt;fieldset&gt;</Begin>
<End>&lt;/fieldset&gt;</End>
</Tag>
- <Tag _name="Form field label text">
+ <Tag name="Form field label text">
<Begin>&lt;label&gt;</Begin>
<End>&lt;/label&gt;</End>
</Tag>
- <Tag _name="Form input type">
+ <Tag name="Form input type">
<Begin>&lt;input type=&gt;</Begin>
</Tag>
- <Tag _name="Form input">
+ <Tag name="Form input">
<Begin>&lt;input&gt;</Begin>
</Tag>
- <Tag _name="Form method">
+ <Tag name="Form method">
<Begin>&lt;form method=&gt;</Begin>
</Tag>
- <Tag _name="Form method">
+ <Tag name="Form method">
<Begin>method=</Begin>
</Tag>
- <Tag _name="Form">
+ <Tag name="Form">
<Begin>&lt;form&gt;</Begin>
<End>&lt;/form&gt;</End>
</Tag>
- <Tag _name="Forward link">
+ <Tag name="Forward link">
<Begin>rel=</Begin>
</Tag>
- <Tag _name="Frame render parts">
+ <Tag name="Frame render parts">
<Begin>frame=</Begin>
</Tag>
- <Tag _name="Frame source">
+ <Tag name="Frame source">
<Begin>&lt;frame src=&gt;</Begin>
</Tag>
- <Tag _name="Frame target">
+ <Tag name="Frame target">
<Begin>target=</Begin>
</Tag>
- <Tag _name="Frame">
+ <Tag name="Frame">
<Begin>&lt;frame&gt;</Begin>
</Tag>
- <Tag _name="Frameborder">
+ <Tag name="Frameborder">
<Begin>frameborder=</Begin>
</Tag>
- <Tag _name="Frameset columns">
+ <Tag name="Frameset columns">
<Begin>&lt;frameset cols=&gt;</Begin>
<End>&lt;/frameset&gt;</End>
</Tag>
- <Tag _name="Frameset rows">
+ <Tag name="Frameset rows">
<Begin>&lt;frameset rows=&gt;</Begin>
<End>&lt;/frameset&gt;</End>
</Tag>
- <Tag _name="Frameset">
+ <Tag name="Frameset">
<Begin>&lt;frameset&gt;</Begin>
<End>&lt;/frameset&gt;</End>
</Tag>
- <Tag _name="Framespacing">
+ <Tag name="Framespacing">
<Begin>framespacing=</Begin>
</Tag>
- <Tag _name="Generic embedded object">
+ <Tag name="Generic embedded object">
<Begin>&lt;object&gt;</Begin>
</Tag>
- <Tag _name="Generic metainformation">
+ <Tag name="Generic metainformation">
<Begin>&lt;meta&gt;</Begin>
</Tag>
- <Tag _name="Generic span">
+ <Tag name="Generic span">
<Begin>&lt;span&gt;</Begin>
<End>&lt;/span&gt;</End>
</Tag>
- <Tag _name="Header cell IDs">
+ <Tag name="Header cell IDs">
<Begin>headers=</Begin>
</Tag>
- <Tag _name="Heading 1">
+ <Tag name="Heading 1">
<Begin>&lt;h1&gt;</Begin>
<End>&lt;/h1&gt;</End>
</Tag>
- <Tag _name="Heading 2">
+ <Tag name="Heading 2">
<Begin>&lt;h2&gt;</Begin>
<End>&lt;/h2&gt;</End>
</Tag>
- <Tag _name="Heading 3">
+ <Tag name="Heading 3">
<Begin>&lt;h3&gt;</Begin>
<End>&lt;/h3&gt;</End>
</Tag>
- <Tag _name="Heading 4">
+ <Tag name="Heading 4">
<Begin>&lt;h4&gt;</Begin>
<End>&lt;/h4&gt;</End>
</Tag>
- <Tag _name="Heading 5">
+ <Tag name="Heading 5">
<Begin>&lt;h5&gt;</Begin>
<End>&lt;/h5&gt;</End>
</Tag>
- <Tag _name="Heading 6">
+ <Tag name="Heading 6">
<Begin>&lt;h6&gt;</Begin>
<End>&lt;/h6&gt;</End>
</Tag>
- <Tag _name="Heading">
+ <Tag name="Heading">
<Begin>&lt;h&gt;</Begin>
<End>&lt;/h&gt;</End>
</Tag>
- <Tag _name="Height">
+ <Tag name="Height">
<Begin>height=</Begin>
</Tag>
- <Tag _name="Horizontal rule">
+ <Tag name="Horizontal rule">
<Begin>&lt;hr /&gt;</Begin>
</Tag>
- <Tag _name="Horizontal space">
+ <Tag name="Horizontal space">
<Begin>hspace=</Begin>
</Tag>
- <Tag _name="HREF URI">
+ <Tag name="HREF URI">
<Begin>href=</Begin>
</Tag>
- <Tag _name="HTML root element">
+ <Tag name="HTML root element">
<Begin>&lt;html&gt;</Begin>
<End>&lt;/html&gt;</End>
</Tag>
- <Tag _name="HTTP header name">
+ <Tag name="HTTP header name">
<Begin>http-equiv=</Begin>
</Tag>
- <Tag _name="I18N BiDi override">
+ <Tag name="I18N BiDi override">
<Begin>&lt;BDO&gt;</Begin>
<End>&lt;/BDO&gt;</End>
</Tag>
- <Tag _name="Image map area">
+ <Tag name="Image map area">
<Begin>&lt;area&gt;</Begin>
</Tag>
- <Tag _name="Image map name">
+ <Tag name="Image map name">
<Begin>&lt;map name=&gt;</Begin>
<End>&lt;/map&gt;</End>
</Tag>
- <Tag _name="Image map">
+ <Tag name="Image map">
<Begin>&lt;map&gt;</Begin>
<End>&lt;/map&gt;</End>
</Tag>
- <Tag _name="Image source">
+ <Tag name="Image source">
<Begin>&lt;img src=&gt;</Begin>
</Tag>
- <Tag _name="Image">
+ <Tag name="Image">
<Begin>&lt;img&gt;</Begin>
</Tag>
- <Tag _name="Inline frame">
+ <Tag name="Inline frame">
<Begin>&lt;iframe&gt;</Begin>
<End>&lt;/iframe&gt;</End>
</Tag>
- <Tag _name="Inline layer">
+ <Tag name="Inline layer">
<Begin>&lt;ilayer&gt;</Begin>
<End>&lt;/ilayer&gt;</End>
</Tag>
- <Tag _name="Inserted text">
+ <Tag name="Inserted text">
<Begin>&lt;ins&gt;</Begin>
<End>&lt;/ins&gt;</End>
</Tag>
- <Tag _name="Instance definition">
+ <Tag name="Instance definition">
<Begin>&lt;dfn&gt;</Begin>
<End>&lt;/dfn&gt;</End>
</Tag>
- <Tag _name="Italic text">
+ <Tag name="Italic text">
<Begin>&lt;i&gt;</Begin>
<End>&lt;/i&gt;</End>
</Tag>
- <Tag _name="Java applet">
+ <Tag name="Java applet">
<Begin>&lt;applet&gt;</Begin>
<End>&lt;/applet&gt;</End>
</Tag>
- <Tag _name="Label">
+ <Tag name="Label">
<Begin>label=</Begin>
</Tag>
- <Tag _name="Language code">
+ <Tag name="Language code">
<Begin>hreflang=</Begin>
</Tag>
- <Tag _name="Language code">
+ <Tag name="Language code">
<Begin>lang=</Begin>
</Tag>
- <Tag _name="Large text style">
+ <Tag name="Large text style">
<Begin>&lt;big&gt;</Begin>
<End>&lt;/big&gt;</End>
</Tag>
- <Tag _name="Layer">
+ <Tag name="Layer">
<Begin>&lt;layer&gt;</Begin>
</Tag>
- <Tag _name="Link color">
+ <Tag name="Link color">
<Begin>link=</Begin>
</Tag>
- <Tag _name="List item">
+ <Tag name="List item">
<Begin>&lt;li&gt;</Begin>
<End>&lt;/li&gt;</End>
</Tag>
- <Tag _name="List of MIME types for file upload">
+ <Tag name="List of MIME types for file upload">
<Begin>accept=</Begin>
</Tag>
- <Tag _name="List of supported character sets">
+ <Tag name="List of supported character sets">
<Begin>accept-charset=</Begin>
</Tag>
- <Tag _name="Listing">
+ <Tag name="Listing">
<Begin>&lt;listing&gt;</Begin>
<End>&lt;/listing&gt;</End>
</Tag>
- <Tag _name="Local change to font">
+ <Tag name="Local change to font">
<Begin>&lt;font&gt;</Begin>
<End>&lt;/font&gt;</End>
</Tag>
- <Tag _name="Long description link">
+ <Tag name="Long description link">
<Begin>longdesc=</Begin>
</Tag>
- <Tag _name="Long quotation">
+ <Tag name="Long quotation">
<Begin>&lt;blockquote&gt;</Begin>
<End>&lt;/blockquote&gt;</End>
</Tag>
- <Tag _name="Mail link">
+ <Tag name="Mail link">
<Begin>mailto=</Begin>
</Tag>
- <Tag _name="Margin pixel height">
+ <Tag name="Margin pixel height">
<Begin>marginheight=</Begin>
</Tag>
- <Tag _name="Margin pixel width">
+ <Tag name="Margin pixel width">
<Begin>marginwidth=</Begin>
</Tag>
- <Tag _name="Marquee">
+ <Tag name="Marquee">
<Begin>&lt;marquee&gt;</Begin>
<End>&lt;/marquee&gt;</End>
</Tag>
- <Tag _name="Maximum length of text field">
+ <Tag name="Maximum length of text field">
<Begin>maxlength=</Begin>
</Tag>
- <Tag _name="Output media">
+ <Tag name="Output media">
<Begin>media=</Begin>
</Tag>
- <Tag _name="Media-independent link">
+ <Tag name="Media-independent link">
<Begin>&lt;link rel="&gt;</Begin>
</Tag>
- <Tag _name="Menu list">
+ <Tag name="Menu list">
<Begin>&lt;menu&gt;</Begin>
<End>&lt;/menu&gt;</End>
</Tag>
- <Tag _name="Multicolumn">
+ <Tag name="Multicolumn">
<Begin>&lt;multicol&gt;</Begin>
<End>&lt;/multicol&gt;</End>
</Tag>
- <Tag _name="Multi-line text field">
+ <Tag name="Multi-line text field">
<Begin>&lt;textarea&gt;</Begin>
<End>&lt;/textarea&gt;</End>
</Tag>
- <Tag _name="Multiple">
+ <Tag name="Multiple">
<Begin>multiple</Begin>
</Tag>
- <Tag _name="Name">
+ <Tag name="Name">
<Begin>name=</Begin>
</Tag>
- <Tag _name="Named property value">
+ <Tag name="Named property value">
<Begin>&lt;param&gt;</Begin>
</Tag>
- <Tag _name="Next ID">
+ <Tag name="Next ID">
<Begin>&lt;nextid&gt;</Begin>
</Tag>
- <Tag _name="No embedded objects">
+ <Tag name="No embedded objects">
<Begin>&lt;noembed&gt;</Begin>
</Tag>
- <Tag _name="No frames">
+ <Tag name="No frames">
<Begin>&lt;noframes&gt;</Begin>
<End>&lt;/noframes&gt;</End>
</Tag>
- <Tag _name="No layers">
+ <Tag name="No layers">
<Begin>&lt;nolayer&gt;</Begin>
<End>&lt;/nolayer&gt;</End>
</Tag>
- <Tag _name="No line break">
+ <Tag name="No line break">
<Begin>&lt;nobr&gt;</Begin>
<End>&lt;/nobr&gt;</End>
</Tag>
- <Tag _name="No resize">
+ <Tag name="No resize">
<Begin>noresize</Begin>
</Tag>
- <Tag _name="No script">
+ <Tag name="No script">
<Begin>&lt;noscript&gt;</Begin>
<End>&lt;/noscript&gt;</End>
</Tag>
- <Tag _name="No shade">
+ <Tag name="No shade">
<Begin>noshade</Begin>
</Tag>
- <Tag _name="No URI">
+ <Tag name="No URI">
<Begin>nohref</Begin>
</Tag>
- <Tag _name="No word wrap">
+ <Tag name="No word wrap">
<Begin>nowrap</Begin>
</Tag>
- <Tag _name="Note">
+ <Tag name="Note">
<Begin>&lt;note&gt;</Begin>
<End>&lt;/note&gt;</End>
</Tag>
- <Tag _name="Object applet file">
+ <Tag name="Object applet file">
<Begin>object=</Begin>
</Tag>
- <Tag _name="Object data reference">
+ <Tag name="Object data reference">
<Begin>data=</Begin>
</Tag>
- <Tag _name="Offset for alignment character">
+ <Tag name="Offset for alignment character">
<Begin>charoff=</Begin>
</Tag>
- <Tag _name="OnBlur event">
+ <Tag name="OnBlur event">
<Begin>onblur=</Begin>
</Tag>
- <Tag _name="OnChange event">
+ <Tag name="OnChange event">
<Begin>onchange=</Begin>
</Tag>
- <Tag _name="OnClick event">
+ <Tag name="OnClick event">
<Begin>onclick=</Begin>
</Tag>
- <Tag _name="OnDblClick event">
+ <Tag name="OnDblClick event">
<Begin>ondbclick=</Begin>
</Tag>
- <Tag _name="OnFocus event">
+ <Tag name="OnFocus event">
<Begin>onfocus=</Begin>
</Tag>
- <Tag _name="OnKeyDown event">
+ <Tag name="OnKeyDown event">
<Begin>onkeydown=</Begin>
</Tag>
- <Tag _name="OnKeyPress event">
+ <Tag name="OnKeyPress event">
<Begin>onkeypress=</Begin>
</Tag>
- <Tag _name="OnKeyUp event">
+ <Tag name="OnKeyUp event">
<Begin>onkeyup=</Begin>
</Tag>
- <Tag _name="OnLoad event">
+ <Tag name="OnLoad event">
<Begin>onload=</Begin>
</Tag>
- <Tag _name="OnMouseDown event">
+ <Tag name="OnMouseDown event">
<Begin>onmousedown=</Begin>
</Tag>
- <Tag _name="OnMouseMove event">
+ <Tag name="OnMouseMove event">
<Begin>onmousemove=</Begin>
</Tag>
- <Tag _name="OnMouseOut event">
+ <Tag name="OnMouseOut event">
<Begin>onmouseout=</Begin>
</Tag>
- <Tag _name="OnMouseOver event">
+ <Tag name="OnMouseOver event">
<Begin>onmouseover=</Begin>
</Tag>
- <Tag _name="OnMouseUp event">
+ <Tag name="OnMouseUp event">
<Begin>onmouseup=</Begin>
</Tag>
- <Tag _name="OnReset event">
+ <Tag name="OnReset event">
<Begin>onreset=</Begin>
</Tag>
- <Tag _name="OnSelect event">
+ <Tag name="OnSelect event">
<Begin>onselect=</Begin>
</Tag>
- <Tag _name="OnSubmit event">
+ <Tag name="OnSubmit event">
<Begin>onsubmit=</Begin>
</Tag>
- <Tag _name="OnUnload event">
+ <Tag name="OnUnload event">
<Begin>onunload=</Begin>
</Tag>
- <Tag _name="Option group">
+ <Tag name="Option group">
<Begin>&lt;optgroup&gt;</Begin>
<End>&lt;/optgroup&gt;</End>
</Tag>
- <Tag _name="Option selector">
+ <Tag name="Option selector">
<Begin>&lt;select&gt;</Begin>
<End>&lt;/select&gt;</End>
</Tag>
- <Tag _name="Ordered list">
+ <Tag name="Ordered list">
<Begin>&lt;ol&gt;</Begin>
<End>&lt;/ol&gt;</End>
</Tag>
- <Tag _name="Paragraph class">
+ <Tag name="Paragraph class">
<Begin>&lt;p class=&gt;</Begin>
<End>&lt;/p&gt;</End>
</Tag>
- <Tag _name="Paragraph style">
+ <Tag name="Paragraph style">
<Begin>&lt;p style=&gt;</Begin>
<End>&lt;/p&gt;</End>
</Tag>
- <Tag _name="Paragraph">
+ <Tag name="Paragraph">
<Begin>&lt;p&gt;</Begin>
<End>&lt;/p&gt;</End>
</Tag>
- <Tag _name="Preformatted listing">
+ <Tag name="Preformatted listing">
<Begin>&lt;xmp&gt;</Begin>
<End>&lt;/xmp&gt;</End>
</Tag>
- <Tag _name="Preformatted text">
+ <Tag name="Preformatted text">
<Begin>&lt;pre&gt;</Begin>
<End>&lt;/pre&gt;</End>
</Tag>
- <Tag _name="Profile metainfo dictionary">
+ <Tag name="Profile metainfo dictionary">
<Begin>profile=</Begin>
</Tag>
- <Tag _name="Prompt message">
+ <Tag name="Prompt message">
<Begin>prompt=</Begin>
</Tag>
- <Tag _name="Push button">
+ <Tag name="Push button">
<Begin>&lt;button&gt;</Begin>
<End>&lt;/button&gt;</End>
</Tag>
- <Tag _name="Quote">
+ <Tag name="Quote">
<Begin>&lt;quote&gt;</Begin>
</Tag>
- <Tag _name="Range">
+ <Tag name="Range">
<Begin>&lt;range&gt;</Begin>
</Tag>
- <Tag _name="ReadOnly text and password">
+ <Tag name="ReadOnly text and password">
<Begin>readonly</Begin>
</Tag>
- <Tag _name="Reduced spacing">
+ <Tag name="Reduced spacing">
<Begin>compact</Begin>
</Tag>
- <Tag _name="Reverse link">
+ <Tag name="Reverse link">
<Begin>rev=</Begin>
</Tag>
- <Tag _name="Root">
+ <Tag name="Root">
<Begin>&lt;root&gt;</Begin>
</Tag>
- <Tag _name="Rows">
+ <Tag name="Rows">
<Begin>rows=</Begin>
</Tag>
- <Tag _name="Rulings between rows and columns">
+ <Tag name="Rulings between rows and columns">
<Begin>rules=</Begin>
</Tag>
- <Tag _name="Sample program output, scripts">
+ <Tag name="Sample program output, scripts">
<Begin>&lt;samp&gt;</Begin>
<End>&lt;/samp&gt;</End>
</Tag>
- <Tag _name="Scope covered by header cells">
+ <Tag name="Scope covered by header cells">
<Begin>scope=</Begin>
</Tag>
- <Tag _name="Script language name">
+ <Tag name="Script language name">
<Begin>language=</Begin>
</Tag>
- <Tag _name="Script statements">
+ <Tag name="Script statements">
<Begin>&lt;script&gt;</Begin>
<End>&lt;/script&gt;</End>
</Tag>
- <Tag _name="Scrollbar">
+ <Tag name="Scrollbar">
<Begin>scrolling=</Begin>
</Tag>
- <Tag _name="Selectable option">
+ <Tag name="Selectable option">
<Begin>&lt;option&gt;</Begin>
</Tag>
- <Tag _name="Selected">
+ <Tag name="Selected">
<Begin>selected</Begin>
</Tag>
- <Tag _name="Server-side image map">
+ <Tag name="Server-side image map">
<Begin>ismap</Begin>
</Tag>
- <Tag _name="Shape">
+ <Tag name="Shape">
<Begin>shape=</Begin>
</Tag>
- <Tag _name="Short inline quotation">
+ <Tag name="Short inline quotation">
<Begin>&lt;q&gt;</Begin>
<End>&lt;/q&gt;</End>
</Tag>
- <Tag _name="Single line prompt">
+ <Tag name="Single line prompt">
<Begin>&lt;isindex&gt;</Begin>
</Tag>
- <Tag _name="Size">
+ <Tag name="Size">
<Begin>size=</Begin>
</Tag>
- <Tag _name="Small text style">
+ <Tag name="Small text style">
<Begin>&lt;small&gt;</Begin>
<End>&lt;/small&gt;</End>
</Tag>
- <Tag _name="Soft line break">
+ <Tag name="Soft line break">
<Begin>&lt;wbr&gt;</Begin>
</Tag>
- <Tag _name="Sound">
+ <Tag name="Sound">
<Begin>&lt;sound&gt;</Begin>
</Tag>
- <Tag _name="Source">
+ <Tag name="Source">
<Begin>src=</Begin>
</Tag>
- <Tag _name="Space-separated archive list">
+ <Tag name="Space-separated archive list">
<Begin>archive=</Begin>
</Tag>
- <Tag _name="Spacer">
+ <Tag name="Spacer">
<Begin>&lt;spacer&gt;</Begin>
</Tag>
- <Tag _name="Spacing between cells">
+ <Tag name="Spacing between cells">
<Begin>cellspacing=</Begin>
</Tag>
- <Tag _name="Spacing within cells">
+ <Tag name="Spacing within cells">
<Begin>cellpadding=</Begin>
</Tag>
- <Tag _name="Span">
+ <Tag name="Span">
<Begin>span=</Begin>
</Tag>
- <Tag _name="Square root">
+ <Tag name="Square root">
<Begin>&lt;sqrt&gt;</Begin>
</Tag>
- <Tag _name="Standby load message">
+ <Tag name="Standby load message">
<Begin>standby=</Begin>
</Tag>
- <Tag _name="Starting sequence number">
+ <Tag name="Starting sequence number">
<Begin>start</Begin>
</Tag>
- <Tag _name="Strike-through text style">
+ <Tag name="Strike-through text style">
<Begin>&lt;s&gt;</Begin>
<End>&lt;/s&gt;</End>
</Tag>
- <Tag _name="Strike-through text">
+ <Tag name="Strike-through text">
<Begin>&lt;strike&gt;</Begin>
<End>&lt;/strike&gt;</End>
</Tag>
- <Tag _name="Strong emphasis">
+ <Tag name="Strong emphasis">
<Begin>&lt;strong&gt;</Begin>
<End>&lt;/strong&gt;</End>
</Tag>
- <Tag _name="Style info">
+ <Tag name="Style info">
<Begin>&lt;style&gt;</Begin>
<End>&lt;/style&gt;</End>
</Tag>
- <Tag _name="Style info">
+ <Tag name="Style info">
<Begin>style=</Begin>
</Tag>
- <Tag _name="Subscript">
+ <Tag name="Subscript">
<Begin>&lt;sub&gt;</Begin>
<End>&lt;/sub&gt;</End>
</Tag>
- <Tag _name="Superscript">
+ <Tag name="Superscript">
<Begin>&lt;sup&gt;</Begin>
<End>&lt;/sup&gt;</End>
</Tag>
- <Tag _name="Tab order position">
+ <Tag name="Tab order position">
<Begin>tabindex=</Begin>
</Tag>
- <Tag _name="Table body">
+ <Tag name="Table body">
<Begin>&lt;tbody&gt;</Begin>
<End>&lt;/tbody&gt;</End>
</Tag>
- <Tag _name="Table caption">
+ <Tag name="Table caption">
<Begin>&lt;caption&gt;</Begin>
<End>&lt;/caption&gt;</End>
</Tag>
- <Tag _name="Table column group properties">
+ <Tag name="Table column group properties">
<Begin>&lt;colgroup&gt;</Begin>
<End>&lt;/colgroup&gt;</End>
</Tag>
- <Tag _name="Table column properties">
+ <Tag name="Table column properties">
<Begin>&lt;col&gt;</Begin>
<End>&lt;/col&gt;</End>
</Tag>
- <Tag _name="Table data cell">
+ <Tag name="Table data cell">
<Begin>&lt;td&gt;</Begin>
<End>&lt;/td&gt;</End>
</Tag>
- <Tag _name="Table footer">
+ <Tag name="Table footer">
<Begin>&lt;tfoot&gt;</Begin>
<End>&lt;/tfoot&gt;</End>
</Tag>
- <Tag _name="Table header cell">
+ <Tag name="Table header cell">
<Begin>&lt;th&gt;</Begin>
<End>&lt;/th&gt;</End>
</Tag>
- <Tag _name="Table header">
+ <Tag name="Table header">
<Begin>&lt;thead&gt;</Begin>
<End>&lt;/thead&gt;</End>
</Tag>
- <Tag _name="Table row">
+ <Tag name="Table row">
<Begin>&lt;tr&gt;</Begin>
<End>&lt;/tr&gt;</End>
</Tag>
- <Tag _name="Table summary">
+ <Tag name="Table summary">
<Begin>summary=</Begin>
</Tag>
- <Tag _name="Table">
+ <Tag name="Table">
<Begin>&lt;table&gt;</Begin>
<End>&lt;/table&gt;</End>
</Tag>
- <Tag _name="Target - Blank">
+ <Tag name="Target - Blank">
<Begin>&lt;a target="_blank"&gt;</Begin>
<End>&lt;/a&gt;</End>
</Tag>
- <Tag _name="Target - Parent">
+ <Tag name="Target - Parent">
<Begin>&lt;a target="_parent"&gt;</Begin>
<End>&lt;/a&gt;</End>
</Tag>
- <Tag _name="Target - Self">
+ <Tag name="Target - Self">
<Begin>&lt;a target="_self"&gt;</Begin>
<End>&lt;/a&gt;</End>
</Tag>
- <Tag _name="Target - Top">
+ <Tag name="Target - Top">
<Begin>&lt;a target="_top"&gt;</Begin>
<End>&lt;/a&gt;</End>
</Tag>
- <Tag _name="Teletype or monospace text style">
+ <Tag name="Teletype or monospace text style">
<Begin>&lt;tt&gt;</Begin>
<End>&lt;/tt&gt;</End>
</Tag>
- <Tag _name="Text color">
+ <Tag name="Text color">
<Begin>color=</Begin>
</Tag>
- <Tag _name="Text color">
+ <Tag name="Text color">
<Begin>text=</Begin>
</Tag>
- <Tag _name="Text entered by user">
+ <Tag name="Text entered by user">
<Begin>&lt;kbd&gt;</Begin>
<End>&lt;/kbd&gt;</End>
</Tag>
- <Tag _name="Text">
+ <Tag name="Text">
<Begin>&lt;text&gt;</Begin>
</Tag>
- <Tag _name="Title">
+ <Tag name="Title">
<Begin>title=</Begin>
</Tag>
- <Tag _name="Top margin in pixels">
+ <Tag name="Top margin in pixels">
<Begin>topmargin</Begin>
</Tag>
- <Tag _name="Underlined text style">
+ <Tag name="Underlined text style">
<Begin>&lt;u&gt;</Begin>
<End>&lt;/u&gt;</End>
</Tag>
- <Tag _name="Unordered list">
+ <Tag name="Unordered list">
<Begin>&lt;ul&gt;</Begin>
<End>&lt;/ul&gt;</End>
</Tag>
- <Tag _name="URL">
+ <Tag name="URL">
<Begin>url=</Begin>
</Tag>
- <Tag _name="Use image map">
+ <Tag name="Use image map">
<Begin>usemap=</Begin>
</Tag>
- <Tag _name="Value interpretation">
+ <Tag name="Value interpretation">
<Begin>valuetype=</Begin>
</Tag>
- <Tag _name="Value">
+ <Tag name="Value">
<Begin>value=</Begin>
</Tag>
- <Tag _name="Variable or program argument">
+ <Tag name="Variable or program argument">
<Begin>&lt;var&gt;</Begin>
<End>&lt;/var&gt;</End>
</Tag>
- <Tag _name="Vertical cell alignment">
+ <Tag name="Vertical cell alignment">
<Begin>valign=</Begin>
</Tag>
- <Tag _name="Vertical space">
+ <Tag name="Vertical space">
<Begin>vspace=</Begin>
</Tag>
- <Tag _name="Visited link color">
+ <Tag name="Visited link color">
<Begin>vlink=</Begin>
</Tag>
- <Tag _name="Width">
+ <Tag name="Width">
<Begin>width=</Begin>
</Tag>
</TagGroup>
-<TagGroup _name="HTML - Special Characters" sort="false">
+<TagGroup name="HTML - Special Characters" sort="false">
- <Tag _name="Non-breaking space">
+ <Tag name="Non-breaking space">
<Begin>&amp;nbsp;</Begin>
</Tag>
diff --git a/plugins/taglist/Latex.tags.xml.in b/plugins/taglist/Latex.tags.xml.in
index 78242fe3..ec4a1485 100644
--- a/plugins/taglist/Latex.tags.xml.in
+++ b/plugins/taglist/Latex.tags.xml.in
@@ -1,341 +1,341 @@
<?xml version="1.0" encoding="UTF-8"?>
<TagList xmlns="http://pluma.sourceforge.net/some-location">
-<TagGroup _name="Latex - Tags" sort="true">
- <Tag _name="Bibliography (cite)">
+<TagGroup name="Latex - Tags" sort="true">
+ <Tag name="Bibliography (cite)">
<Begin>\cite{ </Begin>
<End> } </End>
</Tag>
- <Tag _name="Bibliography (item)">
+ <Tag name="Bibliography (item)">
<Begin>\bibitem{ </Begin>
<End> }{} &#10;</End>
</Tag>
- <Tag _name="Bibliography (shortcite)">
+ <Tag name="Bibliography (shortcite)">
<Begin>\shortcite{ </Begin>
<End> }</End>
</Tag>
- <Tag _name="Bibliography (thebibliography)">
+ <Tag name="Bibliography (thebibliography)">
<Begin>\begin{thebibliography}{99}&#10;</Begin>
<End>&#10;\end{thebibliography}</End>
</Tag>
- <Tag _name="Brackets ()">
+ <Tag name="Brackets ()">
<Begin>\left( </Begin>
<End> \right) </End>
</Tag>
- <Tag _name="Brackets []">
+ <Tag name="Brackets []">
<Begin>\left[ </Begin>
<End> \right] </End>
</Tag>
- <Tag _name="Brackets {}">
+ <Tag name="Brackets {}">
<Begin>\left\{ </Begin>
<End> \right\} </End>
</Tag>
- <Tag _name="Brackets &lt;&gt;">
+ <Tag name="Brackets &lt;&gt;">
<Begin>\left\langle </Begin>
<End> \right\rangle </End>
</Tag>
- <Tag _name="File input">
+ <Tag name="File input">
<Begin>\input{ </Begin>
<End> }&#10;</End>
</Tag>
- <Tag _name="Function cosine">
+ <Tag name="Function cosine">
<Begin>\cos{ </Begin>
<End> } </End>
</Tag>
- <Tag _name="Function e^">
+ <Tag name="Function e^">
<Begin>e^{ </Begin>
<End> } </End>
</Tag>
- <Tag _name="Function exp">
+ <Tag name="Function exp">
<Begin>\exp{ </Begin>
<End> } </End>
</Tag>
- <Tag _name="Function log">
+ <Tag name="Function log">
<Begin>\log{ </Begin>
<End> } </End>
</Tag>
- <Tag _name="Function log10">
+ <Tag name="Function log10">
<Begin>\log_{10}{ </Begin>
<End> } </End>
</Tag>
- <Tag _name="Function sine">
+ <Tag name="Function sine">
<Begin>\sin{ </Begin>
<End> } </End>
</Tag>
- <Tag _name="Greek alpha">
+ <Tag name="Greek alpha">
<Begin>\alpha </Begin>
</Tag>
- <Tag _name="Greek beta">
+ <Tag name="Greek beta">
<Begin>\beta </Begin>
</Tag>
- <Tag _name="Greek epsilon">
+ <Tag name="Greek epsilon">
<Begin>\varepsilon </Begin>
</Tag>
- <Tag _name="Greek gamma">
+ <Tag name="Greek gamma">
<Begin>\gamma </Begin>
</Tag>
- <Tag _name="Greek lambda">
+ <Tag name="Greek lambda">
<Begin>\lambda </Begin>
</Tag>
- <Tag _name="Greek rho">
+ <Tag name="Greek rho">
<Begin>\rho </Begin>
</Tag>
- <Tag _name="Greek tau">
+ <Tag name="Greek tau">
<Begin>\tau </Begin>
</Tag>
- <Tag _name="Header 0 (chapter)">
+ <Tag name="Header 0 (chapter)">
<Begin>\chapter{ </Begin>
<End> } </End>
</Tag>
- <Tag _name="Header 0 (chapter*)">
+ <Tag name="Header 0 (chapter*)">
<Begin>\chapter*{ </Begin>
<End> } </End>
</Tag>
- <Tag _name="Header 1 (section)">
+ <Tag name="Header 1 (section)">
<Begin>\section{ </Begin>
<End> } </End>
</Tag>
- <Tag _name="Header 1 (section*)">
+ <Tag name="Header 1 (section*)">
<Begin>\section*{ </Begin>
<End> } </End>
</Tag>
- <Tag _name="Header 2 (subsection)">
+ <Tag name="Header 2 (subsection)">
<Begin>\subsection{ </Begin>
<End> } </End>
</Tag>
- <Tag _name="Header 2 (subsection*)">
+ <Tag name="Header 2 (subsection*)">
<Begin>\subsection*{ </Begin>
<End> } </End>
</Tag>
- <Tag _name="Header 3 (subsubsection)">
+ <Tag name="Header 3 (subsubsection)">
<Begin>\subsubsection{ </Begin>
<End> } </End>
</Tag>
- <Tag _name="Header 3 (subsubsection*)">
+ <Tag name="Header 3 (subsubsection*)">
<Begin>\subsubsection*{ </Begin>
<End> } </End>
</Tag>
- <Tag _name="Header 4 (paragraph)">
+ <Tag name="Header 4 (paragraph)">
<Begin>\paragraph{ </Begin>
<End> } </End>
</Tag>
- <Tag _name="Header appendix">
+ <Tag name="Header appendix">
<Begin>\appendix&#10; </Begin>
</Tag>
- <Tag _name="List description">
+ <Tag name="List description">
<Begin>\begin{description}&#10;</Begin>
<End>&#10;\end{description}&#10;</End>
</Tag>
- <Tag _name="List enumerate">
+ <Tag name="List enumerate">
<Begin>\begin{enumerate}&#10;</Begin>
<End>&#10;\end{enumerate}&#10;</End>
</Tag>
- <Tag _name="List itemize">
+ <Tag name="List itemize">
<Begin>\begin{itemize}&#10;</Begin>
<End>&#10;\end{itemize}&#10;</End>
</Tag>
- <Tag _name="Item with label">
+ <Tag name="Item with label">
<Begin>\item[ </Begin>
<End> ]</End>
</Tag>
- <Tag _name="Item">
+ <Tag name="Item">
<Begin>\item </Begin>
</Tag>
- <Tag _name="Maths (display)">
+ <Tag name="Maths (display)">
<Begin>&#10;$$&#10;</Begin>
<End>&#10;$$&#10;</End>
</Tag>
- <Tag _name="Maths (inline)">
+ <Tag name="Maths (inline)">
<Begin>$ </Begin>
<End> $ </End>
</Tag>
- <Tag _name="Operator fraction">
+ <Tag name="Operator fraction">
<Begin>\frac{ </Begin>
<End> }{} </End>
</Tag>
- <Tag _name="Operator integral (display)">
+ <Tag name="Operator integral (display)">
<Begin>\int\limits_{ </Begin>
<End> }^{} </End>
</Tag>
- <Tag _name="Operator integral (inline)">
+ <Tag name="Operator integral (inline)">
<Begin>\int_{ </Begin>
<End> }^{} </End>
</Tag>
- <Tag _name="Operator sum (display)">
+ <Tag name="Operator sum (display)">
<Begin>\sum\limits_{ </Begin>
<End> }^{} </End>
</Tag>
- <Tag _name="Operator sum (inline)">
+ <Tag name="Operator sum (inline)">
<Begin>\sum_{ </Begin>
<End> }^{} </End>
</Tag>
- <Tag _name="Reference label">
+ <Tag name="Reference label">
<Begin>\label{ </Begin>
<End> } </End>
</Tag>
- <Tag _name="Reference ref">
+ <Tag name="Reference ref">
<Begin>{\protect\ref{ </Begin>
<End> }} </End>
</Tag>
- <Tag _name="Symbol &lt;&lt;">
+ <Tag name="Symbol &lt;&lt;">
<Begin>\ll </Begin>
</Tag>
- <Tag _name="Symbol &lt;=">
+ <Tag name="Symbol &lt;=">
<Begin>\le </Begin>
</Tag>
- <Tag _name="Symbol &gt;=">
+ <Tag name="Symbol &gt;=">
<Begin>\ge </Begin>
</Tag>
- <Tag _name="Symbol &gt;&gt;">
+ <Tag name="Symbol &gt;&gt;">
<Begin>\gg </Begin>
</Tag>
- <Tag _name="Symbol and">
+ <Tag name="Symbol and">
<Begin>\mathrm{and} </Begin>
</Tag>
- <Tag _name="Symbol const">
+ <Tag name="Symbol const">
<Begin>\mathrm{const} </Begin>
</Tag>
- <Tag _name="Symbol d2-by-dt2-partial">
+ <Tag name="Symbol d2-by-dt2-partial">
<Begin>\frac{\partial{ </Begin>
<End> }^2}{\partial t^2} </End>
</Tag>
- <Tag _name="Symbol dagger">
+ <Tag name="Symbol dagger">
<Begin>\dagger </Begin>
</Tag>
- <Tag _name="Symbol d-by-dt">
+ <Tag name="Symbol d-by-dt">
<Begin>\frac{{\mathrm{d}} </Begin>
<End> }{{\mathrm{d}}t} </End>
</Tag>
- <Tag _name="Symbol d-by-dt-partial">
+ <Tag name="Symbol d-by-dt-partial">
<Begin>\frac{\partial </Begin>
<End> }{\partial t} </End>
</Tag>
- <Tag _name="Symbol equiv">
+ <Tag name="Symbol equiv">
<Begin>\equiv </Begin>
</Tag>
- <Tag _name="Symbol en-dash --">
+ <Tag name="Symbol en-dash --">
<Begin>-- </Begin>
</Tag>
- <Tag _name="Symbol em-dash ---">
+ <Tag name="Symbol em-dash ---">
<Begin>--- </Begin>
</Tag>
- <Tag _name="Symbol infinity">
+ <Tag name="Symbol infinity">
<Begin>\infty </Begin>
</Tag>
- <Tag _name="Symbol mathspace ,">
+ <Tag name="Symbol mathspace ,">
<Begin>\quad\mathrm{,} </Begin>
</Tag>
- <Tag _name="Symbol mathspace .">
+ <Tag name="Symbol mathspace .">
<Begin>\quad\mathrm{.} </Begin>
</Tag>
- <Tag _name="Symbol mathspace _">
+ <Tag name="Symbol mathspace _">
<Begin>\quad </Begin>
</Tag>
- <Tag _name="Symbol mathspace __">
+ <Tag name="Symbol mathspace __">
<Begin>\qquad </Begin>
</Tag>
- <Tag _name="Symbol simeq">
+ <Tag name="Symbol simeq">
<Begin>\simeq </Begin>
</Tag>
- <Tag _name="Symbol star">
+ <Tag name="Symbol star">
<Begin>\star </Begin>
</Tag>
- <Tag _name="Typeface bold">
+ <Tag name="Typeface bold">
<Begin>\textbf{ </Begin>
<End> } </End>
</Tag>
- <Tag _name="Typeface type">
+ <Tag name="Typeface type">
<Begin>\texttt{ </Begin>
<End> } </End>
</Tag>
- <Tag _name="Typeface italic">
+ <Tag name="Typeface italic">
<Begin>\textit{ </Begin>
<End> } </End>
</Tag>
- <Tag _name="Typeface slanted">
+ <Tag name="Typeface slanted">
<Begin>\textsl{ </Begin>
<End> } </End>
</Tag>
- <Tag _name="Emphasis">
+ <Tag name="Emphasis">
<Begin>\emph{ </Begin>
<End> } </End>
</Tag>
- <Tag _name="Unbreakable text">
+ <Tag name="Unbreakable text">
<Begin>\mbox{ </Begin>
<End> } </End>
</Tag>
- <Tag _name="Footnote">
+ <Tag name="Footnote">
<Begin>\footnote{ </Begin>
<End> } </End>
</Tag>
diff --git a/plugins/taglist/Makefile.am b/plugins/taglist/Makefile.am
index 3088ba58..d2573f3d 100644
--- a/plugins/taglist/Makefile.am
+++ b/plugins/taglist/Makefile.am
@@ -30,18 +30,17 @@ libtaglist_la_LDFLAGS = $(PLUGIN_LIBTOOL_FLAGS)
libtaglist_la_LIBADD = $(PLUMA_LIBS)
plugin_in_files = taglist.plugin.desktop.in
+plugin_DATA = $(plugin_in_files:.plugin.desktop.in=.plugin)
-%.plugin: %.plugin.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*po)
- $(INTLTOOL_MERGE) $(top_srcdir)/po $< $@ -d -u -c $(top_builddir)/po/.intltool-merge-cache
+$(plugin_DATA): $(plugin_in_files)
+ $(AM_V_GEN) $(MSGFMT) --keyword=Name --keyword=Description --desktop --template $< -d $(top_srcdir)/po -o $@
GZIP_ENV = -9
-%.tags.gz: %.tags.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po)
- LC_ALL=C $(INTLTOOL_MERGE) $(top_srcdir)/po $< $(@:.gz=) -x -u -c $(top_builddir)/po/.intltool-merge-cache
+%.tags.gz: %.tags.xml.in
+ $(AM_V_GEN) GETTEXTDATADIR=$(top_srcdir) $(MSGFMT) --xml --template $< -d $(top_srcdir)/po -o $(@:.gz=)
GZIP=$(GZIP_ENV) gzip -n -f $(@:.gz=)
-plugin_DATA = $(plugin_in_files:.plugin.desktop.in=.plugin)
-
EXTRA_DIST = \
$(taglist_in_files) $(taglist_DATA) \
$(plugin_in_files) $(plugin_DATA)
diff --git a/plugins/taglist/XSLT.tags.xml.in b/plugins/taglist/XSLT.tags.xml.in
index e625f6ca..ac75bd20 100644
--- a/plugins/taglist/XSLT.tags.xml.in
+++ b/plugins/taglist/XSLT.tags.xml.in
@@ -4,7 +4,7 @@
Jens Askengren <[email protected]>
-->
<TagList xmlns="http://pluma.sourceforge.net/some-location">
-<TagGroup _name="XSLT - Elements" sort="true">
+<TagGroup name="XSLT - Elements" sort="true">
<Tag name="apply-imports">
<Begin>&lt;xsl:apply-imports&gt;</Begin>
<End>&lt;/xsl:apply-imports&gt;</End>
@@ -138,7 +138,7 @@
</Tag>
</TagGroup>
-<TagGroup _name="XSLT - Functions" sort="true">
+<TagGroup name="XSLT - Functions" sort="true">
<Tag name="boolean">
<Begin>boolean(</Begin>
<End>)</End>
@@ -293,44 +293,44 @@
</Tag>
</TagGroup>
-<TagGroup _name="XSLT - Axes" sort="true">
- <Tag _name="ancestor">
+<TagGroup name="XSLT - Axes" sort="true">
+ <Tag name="ancestor">
<Begin>ancestor::</Begin>
</Tag>
- <Tag _name="ancestor-or-self">
+ <Tag name="ancestor-or-self">
<Begin>ancestor-or-self::</Begin>
</Tag>
- <Tag _name="attribute">
+ <Tag name="attribute">
<Begin>@</Begin>
</Tag>
- <Tag _name="child">
+ <Tag name="child">
<Begin>child::</Begin>
</Tag>
- <Tag _name="descendant">
+ <Tag name="descendant">
<Begin>descendant::</Begin>
</Tag>
- <Tag _name="descendant-or-self">
+ <Tag name="descendant-or-self">
<Begin>//</Begin>
</Tag>
- <Tag _name="following">
+ <Tag name="following">
<Begin>following::</Begin>
</Tag>
- <Tag _name="following-sibling">
+ <Tag name="following-sibling">
<Begin>following-sibling::</Begin>
</Tag>
- <Tag _name="namespace">
+ <Tag name="namespace">
<Begin>namespace::</Begin>
</Tag>
- <Tag _name="parent">
+ <Tag name="parent">
<Begin>..</Begin>
</Tag>
- <Tag _name="preceding">
+ <Tag name="preceding">
<Begin>preceding::</Begin>
</Tag>
- <Tag _name="preceding-sibling">
+ <Tag name="preceding-sibling">
<Begin>preceding-sibling::</Begin>
</Tag>
- <Tag _name="self">
+ <Tag name="self">
<Begin>.</Begin>
</Tag>
</TagGroup>
diff --git a/plugins/taglist/XUL.tags.xml.in b/plugins/taglist/XUL.tags.xml.in
index 3d5d3c8c..f4359c7a 100644
--- a/plugins/taglist/XUL.tags.xml.in
+++ b/plugins/taglist/XUL.tags.xml.in
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<TagList xmlns="http://pluma.sourceforge.net/some-location">
-<TagGroup _name="XUL - Tags" sort="true">
+<TagGroup name="XUL - Tags" sort="true">
<Tag name="action">
<Begin>&lt;action&gt;</Begin>
diff --git a/plugins/taglist/taglist.plugin.desktop.in b/plugins/taglist/taglist.plugin.desktop.in
index f33004d5..550dba2e 100644
--- a/plugins/taglist/taglist.plugin.desktop.in
+++ b/plugins/taglist/taglist.plugin.desktop.in
@@ -1,8 +1,8 @@
[Plugin]
Module=taglist
IAge=2
-_Name=Tag list
-_Description=Provides a method to easily insert commonly used tags/strings into a document without having to type them.
+Name=Tag list
+Description=Provides a method to easily insert commonly used tags/strings into a document without having to type them.
Authors=Paolo Maggi <[email protected]>
Copyright=Copyright © 2002-2005 Paolo Maggi
Website=https://mate-desktop.org
diff --git a/plugins/time/Makefile.am b/plugins/time/Makefile.am
index 591a04d6..185d1a86 100644
--- a/plugins/time/Makefile.am
+++ b/plugins/time/Makefile.am
@@ -23,12 +23,11 @@ include $(top_srcdir)/gla11y.mk
ui_DATA = $(ui_files)
plugin_in_files = time.plugin.desktop.in
-
-%.plugin: %.plugin.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*po) ; $(INTLTOOL_MERGE) $(top_srcdir)/po $< $@ -d -u -c $(top_builddir)/po/.intltool-merge-cache
-
plugin_DATA = $(plugin_in_files:.plugin.desktop.in=.plugin)
-@INTLTOOL_XML_NOMERGE_RULE@
+$(plugin_DATA): $(plugin_in_files)
+ $(AM_V_GEN) $(MSGFMT) --keyword=Name --keyword=Description --desktop --template $< -d $(top_srcdir)/po -o $@
+
time_gschema_in = org.mate.pluma.plugins.time.gschema.xml.in
gsettings_SCHEMAS = $(time_gschema_in:.xml.in=.xml)
@GSETTINGS_RULES@
diff --git a/plugins/time/time.plugin.desktop.in b/plugins/time/time.plugin.desktop.in
index c3c599f1..5c060665 100644
--- a/plugins/time/time.plugin.desktop.in
+++ b/plugins/time/time.plugin.desktop.in
@@ -1,8 +1,8 @@
[Plugin]
Module=time
IAge=2
-_Name=Insert Date/Time
-_Description=Inserts current date and time at the cursor position.
+Name=Insert Date/Time
+Description=Inserts current date and time at the cursor position.
Authors=Paolo Maggi <[email protected]>;Lee Mallabone <[email protected]>
Copyright=Copyright © 2002-2005 Paolo Maggi
Website=https://mate-desktop.org
diff --git a/plugins/trailsave/Makefile.am b/plugins/trailsave/Makefile.am
index d9ef3225..45e80ab3 100644
--- a/plugins/trailsave/Makefile.am
+++ b/plugins/trailsave/Makefile.am
@@ -16,11 +16,11 @@ libtrailsave_la_LDFLAGS = $(PLUGIN_LIBTOOL_FLAGS)
libtrailsave_la_LIBADD = $(PLUMA_LIBS)
plugin_in_files = trailsave.plugin.desktop.in
-
-%.plugin: %.plugin.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*po) ; $(INTLTOOL_MERGE) $(top_srcdir)/po $< $@ -d -u -c $(top_builddir)/po/.intltool-merge-cache
-
plugin_DATA = $(plugin_in_files:.plugin.desktop.in=.plugin)
+$(plugin_DATA): $(plugin_in_files)
+ $(AM_V_GEN) $(MSGFMT) --keyword=Name --keyword=Description --desktop --template $< -d $(top_srcdir)/po -o $@
+
EXTRA_DIST = $(plugin_in_files)
CLEANFILES = $(plugin_DATA)
diff --git a/plugins/trailsave/trailsave.plugin.desktop.in b/plugins/trailsave/trailsave.plugin.desktop.in
index f623ebcb..011de4d4 100644
--- a/plugins/trailsave/trailsave.plugin.desktop.in
+++ b/plugins/trailsave/trailsave.plugin.desktop.in
@@ -1,8 +1,8 @@
[Plugin]
Module=trailsave
IAge=2
-_Name=Save Without Trailing Spaces
-_Description=Removes trailing spaces from lines before saving.
+Name=Save Without Trailing Spaces
+Description=Removes trailing spaces from lines before saving.
Icon=edit-cut
Authors=Marty Mills <[email protected]>
Copyright=Copyright © 2015 Marty Mills
diff --git a/po/Makevars b/po/Makevars
new file mode 100644
index 00000000..c03ef084
--- /dev/null
+++ b/po/Makevars
@@ -0,0 +1,79 @@
+# Makefile variables for PO directory in any package using GNU gettext.
+
+# Usually the message domain is the same as the package name.
+DOMAIN = $(PACKAGE)
+
+# These two variables depend on the location of this directory.
+subdir = po
+top_builddir = ..
+
+# These options get passed to xgettext.
+XGETTEXT_OPTIONS = --from-code=UTF-8 --keyword=_ --keyword=N_ --keyword=C_:1c,2 --keyword=NC_:1c,2 --keyword=g_dngettext:2,3 --keyword=Description --add-comments=Translators:
+
+# This is the copyright holder that gets inserted into the header of the
+# $(DOMAIN).pot file. Set this to the copyright holder of the surrounding
+# package. (Note that the msgstr strings, extracted from the package's
+# sources, belong to the copyright holder of the package.) Translators are
+# expected to transfer the copyright for their translations to this person
+# or entity, or to disclaim their copyright. The empty string stands for
+# the public domain; in this case the translators are expected to disclaim
+# their copyright.
+COPYRIGHT_HOLDER = MATE Desktop Environment team
+
+# This tells whether or not to prepend "GNU " prefix to the package
+# name that gets inserted into the header of the $(DOMAIN).pot file.
+# Possible values are "yes", "no", or empty. If it is empty, try to
+# detect it automatically by scanning the files in $(top_srcdir) for
+# "GNU packagename" string.
+PACKAGE_GNU =
+
+# This is the email address or URL to which the translators shall report
+# bugs in the untranslated strings:
+# - Strings which are not entire sentences, see the maintainer guidelines
+# in the GNU gettext documentation, section 'Preparing Strings'.
+# - Strings which use unclear terms or require additional context to be
+# understood.
+# - Strings which make invalid assumptions about notation of date, time or
+# money.
+# - Pluralisation problems.
+# - Incorrect English spelling.
+# - Incorrect formatting.
+# It can be your email address, or a mailing list address where translators
+# can write to without being subscribed, or the URL of a web page through
+# which the translators can contact you.
+MSGID_BUGS_ADDRESS =
+
+# This is the list of locale categories, beyond LC_MESSAGES, for which the
+# message catalogs shall be used. It is usually empty.
+EXTRA_LOCALE_CATEGORIES =
+
+# This tells whether the $(DOMAIN).pot file contains messages with an 'msgctxt'
+# context. Possible values are "yes" and "no". Set this to yes if the
+# package uses functions taking also a message context, like pgettext(), or
+# if in $(XGETTEXT_OPTIONS) you define keywords with a context argument.
+USE_MSGCTXT = no
+
+# These options get passed to msgmerge.
+# Useful options are in particular:
+# --previous to keep previous msgids of translated messages,
+# --quiet to reduce the verbosity.
+MSGMERGE_OPTIONS =
+
+# These options get passed to msginit.
+# If you want to disable line wrapping when writing PO files, add
+# --no-wrap to MSGMERGE_OPTIONS, XGETTEXT_OPTIONS, and
+# MSGINIT_OPTIONS.
+MSGINIT_OPTIONS =
+
+# This tells whether or not to regenerate a PO file when $(DOMAIN).pot
+# has changed. Possible values are "yes" and "no". Set this to no if
+# the POT file is checked in the repository and the version control
+# program ignores timestamps.
+PO_DEPENDS_ON_POT = yes
+
+# This tells whether or not to forcibly update $(DOMAIN).pot and
+# regenerate PO files on "make dist". Possible values are "yes" and
+# "no". Set this to no if the POT file and PO files are maintained
+# externally.
+DIST_DEPENDS_ON_UPDATE_PO = yes
+$(DOMAIN).pot-update: export GETTEXTDATADIRS = $(top_srcdir)
diff --git a/po/POTFILES.in b/po/POTFILES.in
index 479928b7..28459064 100644
--- a/po/POTFILES.in
+++ b/po/POTFILES.in
@@ -1,16 +1,15 @@
# List of source files containing translatable strings.
# Please keep this file sorted alphabetically.
-[encoding: UTF-8]
-[type: gettext/gsettings]data/org.mate.pluma.gschema.xml.in
+data/org.mate.pluma.gschema.xml.in
data/pluma.appdata.xml.in
data/pluma.desktop.in.in
pluma/dialogs/pluma-close-confirmation-dialog.c
pluma/dialogs/pluma-encodings-dialog.c
-[type: gettext/glade]pluma/dialogs/pluma-encodings-dialog.ui
+pluma/dialogs/pluma-encodings-dialog.ui
pluma/dialogs/pluma-preferences-dialog.c
-[type: gettext/glade]pluma/dialogs/pluma-preferences-dialog.ui
+pluma/dialogs/pluma-preferences-dialog.ui
pluma/dialogs/pluma-search-dialog.c
-[type: gettext/glade]pluma/dialogs/pluma-search-dialog.ui
+pluma/dialogs/pluma-search-dialog.ui
pluma/pluma.c
pluma/pluma-app.c
pluma/pluma-commands-file.c
@@ -32,7 +31,7 @@ pluma/pluma-panel.c
pluma/pluma-plugins-engine.c
pluma/pluma-prefs-manager.c
pluma/pluma-print-job.c
-[type: gettext/glade]pluma/pluma-print-preferences.ui
+pluma/pluma-print-preferences.ui
pluma/pluma-print-preview.c
pluma/pluma-progress-message-area.c
pluma/pluma-smart-charset-converter.c
@@ -48,7 +47,7 @@ pluma/pluma-window.c
plugins/changecase/changecase.plugin.desktop.in
plugins/changecase/pluma-changecase-plugin.c
plugins/docinfo/docinfo.plugin.desktop.in
-[type: gettext/glade]plugins/docinfo/docinfo.ui
+plugins/docinfo/docinfo.ui
plugins/docinfo/pluma-docinfo-plugin.c
plugins/externaltools/externaltools.plugin.desktop.in
plugins/externaltools/tools/__init__.py
@@ -56,7 +55,7 @@ plugins/externaltools/tools/capture.py
plugins/externaltools/tools/functions.py
plugins/externaltools/tools/manager.py
plugins/externaltools/tools/outputpanel.py
-[type: gettext/glade]plugins/externaltools/tools/tools.ui
+plugins/externaltools/tools/tools.ui
plugins/externaltools/data/build.desktop.in
plugins/externaltools/data/open-terminal-here.desktop.in
plugins/externaltools/data/remove-trailing-spaces.desktop.in
@@ -64,7 +63,7 @@ plugins/externaltools/data/run-command.desktop.in
plugins/externaltools/data/search-recursive.desktop.in
plugins/externaltools/data/switch-c.desktop.in
plugins/filebrowser/filebrowser.plugin.desktop.in
-[type: gettext/gsettings]plugins/filebrowser/org.mate.pluma.plugins.filebrowser.gschema.xml.in
+plugins/filebrowser/org.mate.pluma.plugins.filebrowser.gschema.xml.in
plugins/filebrowser/pluma-file-bookmarks-store.c
plugins/filebrowser/pluma-file-browser-plugin.c
plugins/filebrowser/pluma-file-browser-store.c
@@ -74,12 +73,12 @@ plugins/filebrowser/pluma-file-browser-widget.c
plugins/modelines/modelines.plugin.desktop.in
plugins/pythonconsole/pythonconsole.plugin.desktop.in
plugins/pythonconsole/pythonconsole/__init__.py
-[type: gettext/glade]plugins/pythonconsole/pythonconsole/config.ui
+plugins/pythonconsole/pythonconsole/config.ui
plugins/quickopen/quickopen/popup.py
plugins/quickopen/quickopen/windowhelper.py
plugins/quickopen/quickopen.plugin.desktop.in
plugins/snippets/snippets.plugin.desktop.in
-[type: gettext/glade]plugins/snippets/snippets/snippets.ui
+plugins/snippets/snippets/snippets.ui
plugins/snippets/snippets/Document.py
plugins/snippets/snippets/WindowHelper.py
plugins/snippets/snippets/Manager.py
@@ -88,17 +87,17 @@ plugins/snippets/snippets/Importer.py
plugins/snippets/snippets/Placeholder.py
plugins/sort/pluma-sort-plugin.c
plugins/sort/sort.plugin.desktop.in
-[type: gettext/glade]plugins/sort/sort.ui
-[type: gettext/gsettings]plugins/spell/org.mate.pluma.plugins.spell.gschema.xml.in
+plugins/sort/sort.ui
+plugins/spell/org.mate.pluma.plugins.spell.gschema.xml.in
plugins/spell/pluma-automatic-spell-checker.c
plugins/spell/pluma-spell-checker.c
plugins/spell/pluma-spell-checker-dialog.c
plugins/spell/pluma-spell-checker-language.c
plugins/spell/pluma-spell-language-dialog.c
plugins/spell/pluma-spell-plugin.c
-[type: gettext/glade]plugins/spell/languages-dialog.ui
-[type: gettext/glade]plugins/spell/spell-checker.ui
-[type: gettext/glade]plugins/spell/pluma-spell-setup-dialog.ui
+plugins/spell/languages-dialog.ui
+plugins/spell/spell-checker.ui
+plugins/spell/pluma-spell-setup-dialog.ui
plugins/spell/spell.plugin.desktop.in
plugins/taglist/pluma-taglist-plugin.c
plugins/taglist/pluma-taglist-plugin-panel.c
@@ -108,9 +107,9 @@ plugins/taglist/Latex.tags.xml.in
plugins/taglist/taglist.plugin.desktop.in
plugins/taglist/XSLT.tags.xml.in
plugins/taglist/XUL.tags.xml.in
-[type: gettext/gsettings]plugins/time/org.mate.pluma.plugins.time.gschema.xml.in
+plugins/time/org.mate.pluma.plugins.time.gschema.xml.in
plugins/time/pluma-time-plugin.c
plugins/time/time.plugin.desktop.in
plugins/trailsave/trailsave.plugin.desktop.in
-[type: gettext/glade]plugins/time/pluma-time-dialog.ui
-[type: gettext/glade]plugins/time/pluma-time-setup-dialog.ui
+plugins/time/pluma-time-dialog.ui
+plugins/time/pluma-time-setup-dialog.ui
diff --git a/tools/plugin_template/Makefile.am b/tools/plugin_template/Makefile.am
index cf14f903..32569edd 100644
--- a/tools/plugin_template/Makefile.am
+++ b/tools/plugin_template/Makefile.am
@@ -22,11 +22,11 @@ uidir = $(PLUMA_PLUGINS_DATA_DIR)/##(PLUGIN_MODULE)
ui_DATA =
plugin_in_files = ##(PLUGIN_MODULE).pluma-plugin.desktop.in
-
-%.pluma-plugin: %.pluma-plugin.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*po) ; $(INTLTOOL_MERGE) $(top_srcdir)/po $< $@ -d -u -c $(top_builddir)/po/.intltool-merge-cache
-
plugin_DATA = $(plugin_in_files:.pluma-plugin.desktop.in=.pluma-plugin)
+$(plugin_DATA): $(plugin_in_files)
+ $(AM_V_GEN) $(MSGFMT) --keyword=Description --desktop --template $< -d $(top_srcdir)/po -o $@
+
EXTRA_DIST = $(plugin_in_files)
CLEANFILES = $(plugin_DATA) $(ui_DATA)