[Xfce4-commits] <xfce4-panel:devel> Add empty Mallard based documentation.

Nick Schermer noreply at xfce.org
Mon Feb 22 20:10:02 CET 2010


Updating branch refs/heads/devel
         to 527c44b6d809f3cdc3a3727c3ba43b11fa62ad13 (commit)
       from 81c84bf7d9c7e8e9f7026f270c7a2a55afc370bd (commit)

commit 527c44b6d809f3cdc3a3727c3ba43b11fa62ad13
Author: Nick Schermer <nick at xfce.org>
Date:   Mon Feb 22 15:10:42 2010 +0100

    Add empty Mallard based documentation.
    
    Does not contain any usefull information, but it builds,
    is stuitable for po file translations and passes dist-check.

 Makefile.am                       |    3 +-
 configure.ac.in                   |   33 +-
 docs/Makefile.am                  |    4 +-
 docs/README.libxfce4panel         |   10 -
 docs/manual/Makefile.am           |  147 +++++
 docs/manual/actions.page          |   32 +
 docs/manual/add-new-items.page    |   21 +
 docs/manual/applicationsmenu.page |   32 +
 docs/manual/clock.page            |   32 +
 docs/manual/directorymenu.page    |   32 +
 docs/manual/figures/Makefile.am   |    5 +
 docs/manual/index.page            |   27 +
 docs/manual/introduction.page     |   20 +
 docs/manual/launcher.page         |   32 +
 docs/manual/license.page          |   59 ++
 docs/manual/pager.page            |   32 +
 docs/manual/po/Makefile.am        |    5 +
 docs/manual/po/da.po              | 1161 +++++++++++++++++++++++++++++++++++++
 docs/manual/po/xfce4-panel.pot    |  224 +++++++
 docs/manual/preferences.page      |   20 +
 docs/manual/separator.page        |   32 +
 docs/manual/showdesktop.page      |   32 +
 docs/manual/systray.page          |   32 +
 docs/manual/windowbuttons.page    |   32 +
 docs/manual/windowmenu.page       |   32 +
 25 files changed, 2076 insertions(+), 15 deletions(-)

diff --git a/Makefile.am b/Makefile.am
index 28f7a6b..1959900 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -47,6 +47,7 @@ DISTCLEANFILES = \
 	intltool-update-tmp
 
 DISTCHECK_CONFIGURE_FLAGS = \
-	--enable-gtk-doc
+	--enable-gtk-doc \
+	--enable-gen-doc
 
 # vi:set ts=8 sw=8 noet ai nocindent syntax=automake:
diff --git a/configure.ac.in b/configure.ac.in
index 498355b..4e3d5b2 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -123,6 +123,31 @@ dnl **********************************
 XDT_CHECK_OPTIONAL_PACKAGE([GIO_UNIX], [gio-unix-2.0],
                            [2.18.0], [gio-unix], [GIO UNIX features])
 
+dnl ***************************************************
+dnl *** Check if we need to build the documentation ***
+dnl ***************************************************
+AC_ARG_ENABLE([gen-doc], [AC_HELP_STRING([--enable-gen-doc], 
+              [Generate HTML documentation (requires gnome-doc-utils) [default=no]])],,
+              [enable_gen_doc=no])
+if test x"$enable_gen_doc" = x"yes"; then
+  XDT_CHECK_PACKAGE([GNOME_DOC_UTILS], [gnome-doc-utils], [0.19.1],
+  [
+    AC_PATH_PROG([XML2PO], [xml2po], [no])
+    if test x"$XML2PO" = x"no"; then
+        enable_gen_doc=no
+    fi
+
+    AC_PATH_PROG([GNOME_DOC_TOOL], [gnome-doc-tool], [no])
+    if test x"$GNOME_DOC_TOOL" = x"no"; then
+        enable_gen_doc=no
+    fi
+  ],
+  [
+    enable_gen_doc=no
+  ])
+fi
+AM_CONDITIONAL([GENERATE_DOCUMENTATION], [test x"$enable_gen_doc" = x"yes"])
+
 dnl *************************
 dnl *** Check for gtk-doc ***
 dnl *************************
@@ -195,6 +220,9 @@ AC_OUTPUT([
 Makefile
 common/Makefile
 docs/Makefile
+docs/manual/Makefile
+docs/manual/figures/Makefile
+docs/manual/po/Makefile
 docs/references/Makefile
 docs/references/version.xml
 icons/Makefile
@@ -231,6 +259,7 @@ dnl ***************************
 echo
 echo "Build Configuration:"
 echo
-echo "* Debug Support:        $enable_debug"
-echo "* GNU Visibility:       $have_gnuc_visibility"
+echo "* Debug Support:          $enable_debug"
+echo "* GNU Visibility:         $have_gnuc_visibility"
+echo "* Generate Documentation: $enable_gen_doc"
 echo
diff --git a/docs/Makefile.am b/docs/Makefile.am
index 66dcc27..0faac59 100644
--- a/docs/Makefile.am
+++ b/docs/Makefile.am
@@ -1,9 +1,9 @@
 SUBDIRS = \
+	manual \
 	references
 
 doc_DATA = \
-	README.gtkrc-2.0 \
-	README.libxfce4panel
+	README.gtkrc-2.0
 
 EXTRA_DIST = \
 	$(doc_DATA)
diff --git a/docs/README.libxfce4panel b/docs/README.libxfce4panel
deleted file mode 100644
index b67f5eb..0000000
--- a/docs/README.libxfce4panel
+++ /dev/null
@@ -1,10 +0,0 @@
-The Xfce Panel plugin library
-=============================
-
-XfcePanelPlugin
----------------
-
-
-XfcePanelPluginProvider
------------------------
-
diff --git a/docs/manual/Makefile.am b/docs/manual/Makefile.am
new file mode 100644
index 0000000..6fbff7b
--- /dev/null
+++ b/docs/manual/Makefile.am
@@ -0,0 +1,147 @@
+SUBDIRS = \
+	figures \
+	po
+
+MALLARD_PAGES = \
+	index.page \
+	actions.page \
+	add-new-items.page \
+	applicationsmenu.page \
+	clock.page \
+	directorymenu.page \
+	introduction.page \
+	launcher.page \
+	license.page \
+	pager.page \
+	preferences.page \
+	separator.page \
+	showdesktop.page \
+	systray.page \
+	windowbuttons.page \
+	windowmenu.page
+
+LINGUAS = $(shell cd $(srcdir)/po && echo `/bin/ls *.po | sed 's,[.]po,,g'`)
+ALL_LINGUAS = C $(LINGUAS)
+
+# install the html files to the destdir
+install-data-local:
+	file=$(srcdir)/html/$(PACKAGE).css; \
+	if test -f $$file; then \
+		dest=$(DESTDIR)$(docdir)/html; \
+		$(mkinstalldirs) $$dest; \
+		$(INSTALL_DATA) $$file $$dest/; \
+	fi; \
+	for lang in $(ALL_LINGUAS); do \
+		if test -d $(srcdir)/html/$$lang; then \
+			dest=$(DESTDIR)$(docdir)/html/$$lang; \
+			$(mkinstalldirs) $$dest; \
+			installfiles=`echo $(srcdir)/html/$$lang/*`; \
+			for file in $$installfiles; do \
+				echo "--- Installing "$$file; \
+				$(INSTALL_DATA) $$file $$dest/; \
+			done; \
+		fi \
+	done
+
+# remove installed files from the destdir
+uninstall-local:
+	file=$(DESTDIR)$(docdir)/html/$(PACKAGE).css; \
+	if test -f $$file; then \
+		rm -f $$file; \
+	fi; \
+	for lang in $(ALL_LINGUAS); do \
+		dest=$(DESTDIR)$(docdir)/html/$$lang; \
+		if test -d $$dest; then \
+			rm -f $$dest/*.html; \
+		fi \
+	done;
+
+# remove generate html from the srcdir
+clean-local:
+	rm -rf $(srcdir)/html
+
+if GENERATE_DOCUMENTATION
+
+# regenerate po(t) files
+update-po:
+	rm -f $(srcdir)/po/$(GETTEXT_PACKAGE).pot; \
+	$(XML2PO) -o $(srcdir)/po/$(GETTEXT_PACKAGE).pot $(MALLARD_PAGES); \
+	for lang in $(LINGUAS); do \
+		$(XML2PO) -u $(srcdir)/po/$$lang.po $(MALLARD_PAGES);
+	done
+
+# build the translated help files
+doc-build.stamp:
+	@chmod -R u+w $(srcdir); \
+	rm -rf $(srcdir)/html $(srcdir)/.pages; \
+	echo; \
+	echo "Creating CSS file for documentation"; \
+	$(GNOME_DOC_TOOL) css -o "$(srcdir)/html/$(PACKAGE).css"; \
+	echo; \
+	for lang in $(ALL_LINGUAS); do \
+		echo "Generating $$lang documentation"; \
+		mkdir -p $(srcdir)/.pages; \
+		if test x"$$lang" = x"C"; then \
+			cp $(MALLARD_PAGES) .pages/; \
+		else \
+			echo "  - Creating translated pages"; \
+			pofile=$(srcdir)/po/$$lang.po; \
+			for page in $(MALLARD_PAGES); do \
+				$(XML2PO) -l $$lang -p "$$pofile" -o "$(srcdir)/.pages/$$page" "$(srcdir)/$$page"; \
+			done; \
+		fi; \
+		echo "  - Building HTML files"; \
+		$(GNOME_DOC_TOOL) html -n -c "../$(PACKAGE).css" -o "$(srcdir)/html/$$lang/" "$(srcdir)/.pages/"; \
+		chmod -R u+w $(srcdir)/html/$$lang; \
+		rm -rf $(srcdir)/.pages; \
+		rm -rf $(srcdir)/html/$$lang/*.cache; \
+		echo; \
+	done; \
+	touch doc-build.stamp
+
+dist-check-doc: all
+
+else
+
+update-po:
+	@echo "*** You need to compile with --enable-gen-doc in order to make update-po"
+	@false
+
+doc-build.stamp:
+	@if test ! -d $(srcdir)/html -a ! -d $(srcdir)/man; then \
+		echo; \
+		echo "*** No generated documentation found. If you want to"; \
+		echo "*** generate the (translated) documentation, run configure"; \
+		echo "*** with --enable-gen-doc."; \
+		echo; \
+	fi
+
+dist-check-doc:
+	@echo "*** You need to compile with --enable-gen-doc in order to make dist"
+	@false
+
+endif
+
+# always try to build (if compiling with --enable-gen-doc) or print
+# a message if no html files were found in the tarball
+all: doc-build.stamp
+
+# include the css and html files in the dist
+dist-hook: dist-check-doc doc-build.stamp
+	file=$(srcdir)/html/$(PACKAGE).css; \
+	if test -f $$file; then \
+		mkdir -p $(distdir)/html; \
+		cp $$file $(distdir)/html/; \
+	fi; \
+	for lang in $(ALL_LINGUAS); do \
+		if test -d $(srcdir)/html/$$lang; then \
+			mkdir -p $(distdir)/html/$$lang; \
+			cp $(srcdir)/html/$$lang/* $(distdir)/html/$$lang/; \
+		fi \
+	done
+
+EXTRA_DIST = \
+	$(MALLARD_PAGES)
+
+CLEANFILES = \
+	doc-build.stamp
diff --git a/docs/manual/actions.page b/docs/manual/actions.page
new file mode 100644
index 0000000..313b3d6
--- /dev/null
+++ b/docs/manual/actions.page
@@ -0,0 +1,32 @@
+<page xmlns="http://projectmallard.org/1.0/"
+      xmlns:e="http://projectmallard.org/experimental/"
+      type="topic"
+      id="actions">
+
+  <info>
+    <link type="guide" xref="index#plugins"/>
+    <desc>Log out, lock or other system actions</desc>
+    <credit type="author">
+      <name>Nick Schermer</name>
+      <email>nick at xfce.org</email>
+    </credit>
+    <license>
+      <p>Creative Commons Share Alike 3.0</p>
+    </license>
+  </info>
+
+  <title>Action Buttons</title>
+
+  <p></p>
+
+  <section id="properties">
+    <title>Properties</title>
+
+  </section>
+
+  <section id="theming">
+    <title>Style Properties</title>
+
+  </section>
+
+</page>
diff --git a/docs/manual/add-new-items.page b/docs/manual/add-new-items.page
new file mode 100644
index 0000000..b2ad009
--- /dev/null
+++ b/docs/manual/add-new-items.page
@@ -0,0 +1,21 @@
+<page xmlns="http://projectmallard.org/1.0/"
+      xmlns:e="http://projectmallard.org/experimental/"
+      type="topic"
+      id="add-new-items">
+
+  <info>
+    <link type="guide" xref="index#panel"/>
+    <link type="seealso" xref="preferences"/>
+    <desc>Add new plugins to the <app>Xfce Panel</app></desc>
+    <credit type="author">
+      <name>Nick Schermer</name>
+      <email>nick at xfce.org</email>
+    </credit>
+    <license>
+      <p>Creative Commons Share Alike 3.0</p>
+    </license>
+  </info>
+
+  <title>Add New Plugins</title>
+
+</page>
diff --git a/docs/manual/applicationsmenu.page b/docs/manual/applicationsmenu.page
new file mode 100644
index 0000000..d3c0ea0
--- /dev/null
+++ b/docs/manual/applicationsmenu.page
@@ -0,0 +1,32 @@
+<page xmlns="http://projectmallard.org/1.0/"
+      xmlns:e="http://projectmallard.org/experimental/"
+      type="topic"
+      id="applicationsmenu">
+
+  <info>
+    <link type="guide" xref="index#plugins"/>
+    <desc>Show a menu containing categories of installed applications</desc>
+    <credit type="author">
+      <name>Nick Schermer</name>
+      <email>nick at xfce.org</email>
+    </credit>
+    <license>
+      <p>Creative Commons Share Alike 3.0</p>
+    </license>
+  </info>
+
+  <title>Applications Menu</title>
+
+  <p></p>
+
+  <section id="properties">
+    <title>Properties</title>
+
+  </section>
+
+  <section id="theming">
+    <title>Style Properties</title>
+
+  </section>
+
+</page>
diff --git a/docs/manual/clock.page b/docs/manual/clock.page
new file mode 100644
index 0000000..4467a5e
--- /dev/null
+++ b/docs/manual/clock.page
@@ -0,0 +1,32 @@
+<page xmlns="http://projectmallard.org/1.0/"
+      xmlns:e="http://projectmallard.org/experimental/"
+      type="topic"
+      id="clock">
+
+  <info>
+    <link type="guide" xref="index#plugins"/>
+    <desc>What time is it?</desc>
+    <credit type="author">
+      <name>Nick Schermer</name>
+      <email>nick at xfce.org</email>
+    </credit>
+    <license>
+      <p>Creative Commons Share Alike 3.0</p>
+    </license>
+  </info>
+
+  <title>Clock</title>
+
+  <p></p>
+
+  <section id="properties">
+    <title>Properties</title>
+
+  </section>
+
+  <section id="theming">
+    <title>Style Properties</title>
+
+  </section>
+
+</page>
diff --git a/docs/manual/directorymenu.page b/docs/manual/directorymenu.page
new file mode 100644
index 0000000..7510c81
--- /dev/null
+++ b/docs/manual/directorymenu.page
@@ -0,0 +1,32 @@
+<page xmlns="http://projectmallard.org/1.0/"
+      xmlns:e="http://projectmallard.org/experimental/"
+      type="topic"
+      id="directorymenu">
+
+  <info>
+    <link type="guide" xref="index#plugins"/>
+    <desc>Show a directory tree in a menu</desc>
+    <credit type="author">
+      <name>Nick Schermer</name>
+      <email>nick at xfce.org</email>
+    </credit>
+    <license>
+      <p>Creative Commons Share Alike 3.0</p>
+    </license>
+  </info>
+
+  <title>Directory Menu</title>
+
+  <p></p>
+
+  <section id="properties">
+    <title>Properties</title>
+
+  </section>
+
+  <section id="theming">
+    <title>Style Properties</title>
+
+  </section>
+
+</page>
diff --git a/docs/manual/figures/Makefile.am b/docs/manual/figures/Makefile.am
new file mode 100644
index 0000000..9254e36
--- /dev/null
+++ b/docs/manual/figures/Makefile.am
@@ -0,0 +1,5 @@
+imagesdir = $(docdir)/html/C/figures
+images_DATA = 
+
+EXTRA_DIST = \
+	$(images_DATA)
diff --git a/docs/manual/index.page b/docs/manual/index.page
new file mode 100644
index 0000000..6d3dc27
--- /dev/null
+++ b/docs/manual/index.page
@@ -0,0 +1,27 @@
+<page xmlns="http://projectmallard.org/1.0/"
+      xmlns:e="http://projectmallard.org/experimental/"
+      type="guide"
+      id="index">
+
+  <info>
+    <title type="link">Xfce Panel</title>
+    <title type="text">Xfce Panel</title>
+    <credit type="author">
+      <name>Nick Schermer</name>
+      <email>nick at xfce.org</email>
+    </credit>
+    <license>
+      <p>Creative Commons Share Alike 3.0</p>
+    </license>
+  </info>
+
+  <title>Xfce Panel</title>
+
+  <section id="panel" style="2column">
+    <title>Panel</title>
+  </section>
+
+  <section id="plugins" style="2column">
+    <title>Plugins</title>
+  </section>
+</page>
diff --git a/docs/manual/introduction.page b/docs/manual/introduction.page
new file mode 100644
index 0000000..8a9bb83
--- /dev/null
+++ b/docs/manual/introduction.page
@@ -0,0 +1,20 @@
+<page xmlns="http://projectmallard.org/1.0/"
+      xmlns:e="http://projectmallard.org/experimental/"
+      type="topic"
+      id="introduction">
+
+  <info>
+    <link type="guide" xref="index"/>
+    <desc>Introduction to <app>Xfce Panel</app></desc>
+    <credit type="author">
+      <name>Nick Schermer</name>
+      <email>nick at xfce.org</email>
+    </credit>
+    <license>
+      <p>Creative Commons Share Alike 3.0</p>
+    </license>
+  </info>
+
+  <title>Introduction</title>
+
+</page>
diff --git a/docs/manual/launcher.page b/docs/manual/launcher.page
new file mode 100644
index 0000000..995d1c4
--- /dev/null
+++ b/docs/manual/launcher.page
@@ -0,0 +1,32 @@
+<page xmlns="http://projectmallard.org/1.0/"
+      xmlns:e="http://projectmallard.org/experimental/"
+      type="topic"
+      id="launcher">
+
+  <info>
+    <link type="guide" xref="index#plugins"/>
+    <desc>Program launcher with optional menu</desc>
+    <credit type="author">
+      <name>Nick Schermer</name>
+      <email>nick at xfce.org</email>
+    </credit>
+    <license>
+      <p>Creative Commons Share Alike 3.0</p>
+    </license>
+  </info>
+
+  <title>Launcher</title>
+
+  <p></p>
+
+  <section id="properties">
+    <title>Properties</title>
+
+  </section>
+
+  <section id="theming">
+    <title>Style Properties</title>
+
+  </section>
+
+</page>
diff --git a/docs/manual/license.page b/docs/manual/license.page
new file mode 100644
index 0000000..8f3f849
--- /dev/null
+++ b/docs/manual/license.page
@@ -0,0 +1,59 @@
+<page xmlns="http://projectmallard.org/1.0/"
+  type="topic"
+  id="license">
+
+  <info>
+    <link type="seealso" xref="index"/>
+    <revision pkgversion="2.30" version="0.1" date="2009-12-28" status="draft"/>
+    <desc>Legal information.</desc>
+  </info>
+
+  <title>License</title>
+  <p>
+    <!--
+    Translators: try to use the same translation as the one provided by the CreativeCommons website.
+    If there is no translation for your language, consider providing one to CreativeCommons.
+    -->
+    This work is distributed under a CreativeCommons Attribution-Share Alike
+    3.0 Unported license.
+  </p>
+  <p>
+    You are free:
+  </p>
+  <terms>
+    <item>
+      <title><em>To share</em></title>
+      <p>To copy, distribute and transmit the work.</p>
+    </item>
+    <item>
+      <title><em>To remix</em></title>
+      <p>To adapt the work.</p>
+    </item>
+  </terms>
+  <p>
+    Under the following conditions:
+  </p>
+  <terms>
+    <item>
+      <title><em>Attribution</em></title>
+      <p>
+        You must attribute the work in the manner specified by the author or
+        licensor (but not in any way that suggests that they endorse you or
+        your use of the work).
+      </p>
+    </item>
+    <item>
+      <title><em>Share Alike</em></title>
+      <p>
+        If you alter, transform, or build upon this work, you may distribute the
+        resulting work only under the same, similar or a compatible license.
+      </p>
+    </item>
+  </terms>
+  <p>
+    <!-- Translators: there are no official localized versions of the legal code, only the deed is localized. -->
+    For the full text of the license, see the
+    <link href="http://creativecommons.org/licenses/by-sa/3.0/legalcode">CreativeCommons website</link>,
+    or read the full <link href="http://creativecommons.org/licenses/by-sa/3.0/">Commons Deed</link>.
+  </p>
+</page>
diff --git a/docs/manual/pager.page b/docs/manual/pager.page
new file mode 100644
index 0000000..0841272
--- /dev/null
+++ b/docs/manual/pager.page
@@ -0,0 +1,32 @@
+<page xmlns="http://projectmallard.org/1.0/"
+      xmlns:e="http://projectmallard.org/experimental/"
+      type="topic"
+      id="pager">
+
+  <info>
+    <link type="guide" xref="index#plugins"/>
+    <desc>Switch between virtual desktops</desc>
+    <credit type="author">
+      <name>Nick Schermer</name>
+      <email>nick at xfce.org</email>
+    </credit>
+    <license>
+      <p>Creative Commons Share Alike 3.0</p>
+    </license>
+  </info>
+
+  <title>Workspace Switcher</title>
+
+  <p></p>
+
+  <section id="properties">
+    <title>Properties</title>
+
+  </section>
+
+  <section id="theming">
+    <title>Style Properties</title>
+
+  </section>
+
+</page>
diff --git a/docs/manual/po/Makefile.am b/docs/manual/po/Makefile.am
new file mode 100644
index 0000000..d7b4884
--- /dev/null
+++ b/docs/manual/po/Makefile.am
@@ -0,0 +1,5 @@
+
+PO_FILES=$(shell cd $(srcdir) && echo `/bin/ls *.po`)
+EXTRA_DIST = \
+	$(PO_FILES) \
+	$(GETTEXT_PACKAGE).pot
diff --git a/docs/manual/po/da.po b/docs/manual/po/da.po
new file mode 100644
index 0000000..a4ea68f
--- /dev/null
+++ b/docs/manual/po/da.po
@@ -0,0 +1,1161 @@
+# Danish translations for xfce4-panel package.
+# Copyright (C) 2002-2010 The Xfce development team.
+# This file is distributed under the same license as the xfce4-panel package.
+# Jesper Berth <bigsanta at berthit.dk>, 2005.
+# Lars Nielsen <lars at mit-web.dk>, 2008.
+# Per Kongstad <p_kongstad at op.pl>, 2009, 10.
+msgid ""
+msgstr ""
+"Project-Id-Version: xfce4-panel 4.7.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-02-22 17:53+0100\n"
+"PO-Revision-Date: 2010-02-20 00:31+0100\n"
+"Last-Translator: Per Kongstad <p_kongstad at op.pl>\n"
+"Language-Team: Danish <dansk at dansk-gruppen.dk>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Poedit-Language: Danish\n"
+"X-Poedit-SourceCharset: utf-8\n"
+"X-Poedit-Country: DENMARK\n"
+
+#: windowmenu.page:8(desc)
+msgid "Switch between open windows using a menu"
+msgstr "Skift mellem åbne vinduer ved brug afen menu"
+
+#: windowmenu.page:10(name) windowbuttons.page:10(name) systray.page:10(name)
+#: showdesktop.page:10(name) separator.page:10(name) preferences.page:10(name)
+#: pager.page:10(name) launcher.page:10(name) introduction.page:10(name)
+#: index.page:10(name) directorymenu.page:10(name) clock.page:10(name)
+#: applicationsmenu.page:10(name) add-new-items.page:11(name)
+#: actions.page:10(name)
+msgid "Nick Schermer"
+msgstr ""
+
+#: windowmenu.page:11(email) windowbuttons.page:11(email)
+#: systray.page:11(email) showdesktop.page:11(email) separator.page:11(email)
+#: preferences.page:11(email) pager.page:11(email) launcher.page:11(email)
+#: introduction.page:11(email) index.page:11(email)
+#: directorymenu.page:11(email) clock.page:11(email)
+#: applicationsmenu.page:11(email) add-new-items.page:12(email)
+#: actions.page:11(email)
+msgid "nick at xfce.org"
+msgstr ""
+
+#: windowmenu.page:14(p) windowbuttons.page:14(p) systray.page:14(p)
+#: showdesktop.page:14(p) separator.page:14(p) preferences.page:14(p)
+#: pager.page:14(p) launcher.page:14(p) introduction.page:14(p)
+#: index.page:14(p) directorymenu.page:14(p) clock.page:14(p)
+#: applicationsmenu.page:14(p) add-new-items.page:15(p) actions.page:14(p)
+msgid "Creative Commons Share Alike 3.0"
+msgstr ""
+
+#: windowmenu.page:18(title)
+msgid "Window Menu"
+msgstr "Vinduesliste"
+
+#: windowmenu.page:23(title) windowbuttons.page:23(title)
+#: systray.page:23(title) showdesktop.page:23(title) separator.page:23(title)
+#: pager.page:23(title) launcher.page:23(title) directorymenu.page:23(title)
+#: clock.page:23(title) applicationsmenu.page:23(title) actions.page:23(title)
+msgid "Properties"
+msgstr ""
+
+#: windowmenu.page:28(title) windowbuttons.page:28(title)
+#: systray.page:28(title) showdesktop.page:28(title) separator.page:28(title)
+#: pager.page:28(title) launcher.page:28(title) directorymenu.page:28(title)
+#: clock.page:28(title) applicationsmenu.page:28(title) actions.page:28(title)
+msgid "Style Properties"
+msgstr ""
+
+#: windowbuttons.page:8(desc)
+msgid "Switch between open windows using buttons"
+msgstr "Skift mellem åbne vinduer ved brug af knapper"
+
+#: windowbuttons.page:18(title)
+msgid "Window Buttons"
+msgstr "Vinduesknapper"
+
+#: systray.page:8(desc)
+msgid "Area where notification icons appear"
+msgstr "Område hvor beskedikoner fremkommer"
+
+#: systray.page:18(title)
+msgid "Notification Area"
+msgstr "Påmindelsesområde"
+
+#: showdesktop.page:8(desc)
+msgid "Hide all windows and show the desktop"
+msgstr "Skjul alle vinduer og vis skrivebordet"
+
+#: showdesktop.page:18(title)
+msgid "Show Desktop"
+msgstr "Vis skrivebord"
+
+#: separator.page:8(desc)
+#, fuzzy
+msgid "Adds a separator or space between panel plugins"
+msgstr "Tilføj en skillelinje eller et mellemrum mellem panelets elementer"
+
+#: separator.page:18(title)
+msgid "Separator"
+msgstr "Skillelinje"
+
+#: preferences.page:8(app) introduction.page:8(app) index.page:7(title)
+#: index.page:8(title) index.page:18(title) add-new-items.page:9(app)
+msgid "Xfce Panel"
+msgstr "Xfce Panel"
+
+#: preferences.page:8(desc)
+msgid "Configure the <placeholder-1/>"
+msgstr ""
+
+#: preferences.page:18(title)
+#, fuzzy
+msgid "Preferences"
+msgstr "Panelindstillinger"
+
+#: pager.page:8(desc)
+msgid "Switch between virtual desktops"
+msgstr "Skift mellem virtuelle skriveborde"
+
+#: pager.page:18(title)
+msgid "Workspace Switcher"
+msgstr "Skifter til arbejdsområde"
+
+#: license.page:8(desc)
+msgid "Legal information."
+msgstr ""
+
+#: license.page:11(title)
+msgid "License"
+msgstr ""
+
+#: license.page:12(p)
+msgid ""
+"This work is distributed under a CreativeCommons Attribution-Share Alike 3.0 "
+"Unported license."
+msgstr ""
+
+#: license.page:20(p)
+msgid "You are free:"
+msgstr ""
+
+#: license.page:25(em)
+msgid "To share"
+msgstr ""
+
+#: license.page:26(p)
+msgid "To copy, distribute and transmit the work."
+msgstr ""
+
+#: license.page:29(em)
+msgid "To remix"
+msgstr ""
+
+#: license.page:30(p)
+msgid "To adapt the work."
+msgstr ""
+
+#: license.page:33(p)
+msgid "Under the following conditions:"
+msgstr ""
+
+#: license.page:38(em)
+msgid "Attribution"
+msgstr ""
+
+#: license.page:39(p)
+msgid ""
+"You must attribute the work in the manner specified by the author or "
+"licensor (but not in any way that suggests that they endorse you or your use "
+"of the work)."
+msgstr ""
+
+#: license.page:46(em)
+msgid "Share Alike"
+msgstr ""
+
+#: license.page:47(p)
+msgid ""
+"If you alter, transform, or build upon this work, you may distribute the "
+"resulting work only under the same, similar or a compatible license."
+msgstr ""
+
+#: license.page:56(link)
+msgid "CreativeCommons website"
+msgstr ""
+
+#: license.page:57(link)
+msgid "Commons Deed"
+msgstr ""
+
+#: license.page:53(p)
+msgid ""
+"For the full text of the license, see the <placeholder-1/>, or read the full "
+"<placeholder-2/>."
+msgstr ""
+
+#: launcher.page:8(desc)
+msgid "Program launcher with optional menu"
+msgstr "Program afvikler med valgfri menu"
+
+#: launcher.page:18(title)
+msgid "Launcher"
+msgstr "Starter"
+
+#: introduction.page:8(desc)
+msgid "Introduction to <placeholder-1/>"
+msgstr ""
+
+#: introduction.page:18(title)
+msgid "Introduction"
+msgstr ""
+
+#: index.page:21(title)
+#, fuzzy
+msgid "Panel"
+msgstr "Panel %d"
+
+#: index.page:25(title)
+msgid "Plugins"
+msgstr ""
+
+#: directorymenu.page:8(desc)
+msgid "Show a directory tree in a menu"
+msgstr "Vis en mappestruktur i en menu"
+
+#: directorymenu.page:18(title)
+msgid "Directory Menu"
+msgstr "Mappemenu"
+
+#: clock.page:8(desc)
+msgid "What time is it?"
+msgstr "Hvad er klokken?"
+
+#: clock.page:18(title)
+msgid "Clock"
+msgstr "Ur"
+
+#: applicationsmenu.page:8(desc)
+msgid "Show a menu containing categories of installed applications"
+msgstr "Vis en menu indeholdende kategorier over installerede programmer"
+
+#: applicationsmenu.page:18(title)
+msgid "Applications Menu"
+msgstr "Programmenu"
+
+#: add-new-items.page:9(desc)
+#, fuzzy
+msgid "Add new plugins to the <placeholder-1/>"
+msgstr "Tilføj nye udvidelsesmoduler til panelet"
+
+#: add-new-items.page:19(title)
+#, fuzzy
+msgid "Add New Plugins"
+msgstr "Tilføj nye elementer"
+
+#: actions.page:8(desc)
+msgid "Log out, lock or other system actions"
+msgstr "Log ud, lås skærmen eller andre systemhandlinger"
+
+#: actions.page:18(title)
+msgid "Action Buttons"
+msgstr "Hændelsesknapper"
+
+#. Put one translator per line, in the form of NAME <EMAIL>, YEAR1, YEAR2
+#: actions.page:0(None)
+msgid "translator-credits"
+msgstr ""
+"Per Kongstad <p_kongstad at op.pl>\n"
+"\n"
+"Dansk-gruppen <dansk at dansk-gruppen.dk>\n"
+"Mere info: http://www.dansk-gruppen.dk"
+
+#~ msgid "Create Launcher on Xfce Panel"
+#~ msgstr "Opret opstarter på panelet til Xfce"
+
+#~ msgid "Create a new launcher on the Xfce Panel"
+#~ msgstr "Opret en ny opstarter på panelet til Xfce"
+
+#~ msgid "Customize the Xfce Panel"
+#~ msgstr "Tilpas panelet til Xfce"
+
+#~ msgid "Are you sure that you want to remove \"%s\"?"
+#~ msgstr "Er du sikker på at du vil fjerne \"%s\"?"
+
+#~ msgid "If you remove the item from the panel, it is permanently lost."
+#~ msgstr "Hvis du fjerner elementet fra panelet vil det være tabt."
+
+#~ msgid "_Move"
+#~ msgstr "_Flyt"
+
+#~ msgid "Add _New Items..."
+#~ msgstr "Tilføj _nye elementer..."
+
+#~ msgid "Panel Pr_eferences..."
+#~ msgstr "Paneli_ndstillinger..."
+
+#~ msgid "_Restart"
+#~ msgstr "_Genstart"
+
+#~ msgid "Show the 'Panel Preferences' dialog"
+#~ msgstr "Vis dialogen 'Panelindstillinger'"
+
+#~ msgid "PANEL-NUMBER"
+#~ msgstr "PANELNUMMER"
+
+#~ msgid "Show the 'Add New Items' dialog"
+#~ msgstr "Vis dialogen 'Tilføj nye elementer'"
+
+#~ msgid "Save the panel configuration"
+#~ msgstr "Gem indstilling til panelet"
+
+#~ msgid "Add a new plugin to the panel"
+#~ msgstr "Tilføj et nyt udvidelsesmodul til panelet"
+
+#~ msgid "PLUGIN-NAME"
+#~ msgstr "UDVIDELSESMODULNAVN"
+
+#~ msgid "Restart the running panel instance"
+#~ msgstr "Genstart den kørende panelinstans"
+
+#~ msgid "Quit the running panel instance"
+#~ msgstr "Afslut den kørende panelinstans"
+
+#~ msgid "Print version information and exit"
+#~ msgstr "Udskriv versionsinformation og afslut"
+
+#~ msgid "[ARGUMENTS...]"
+#~ msgstr "[ARGUMENTER...]"
+
+#~ msgid "Type \"%s --help\" for usage."
+#~ msgstr "Tast \"%s --help\" for brugervejledning."
+
+#~ msgid "The Xfce development team. All rights reserved."
+#~ msgstr "Xfce udviklingsholdet. Alle rettigheder forbeholdes."
+
+#~ msgid "Please report bugs to <%s>."
+#~ msgstr "Rapporter venligst fejl til <%s>."
+
+#~ msgid "There is already a running instance"
+#~ msgstr "Der findes allerede en kørende instans"
+
+#~ msgid "Restarting..."
+#~ msgstr "Genstarter..."
+
+#~ msgid "Failed to show the preferences dialog"
+#~ msgstr "Kunne ikke vise dialogen indstillinger"
+
+#~ msgid "Failed to show the add new items dialog"
+#~ msgstr "Kunne ikke vise dialogen tilføj nye elementer"
+
+#~ msgid "Failed to save the panel configuration"
+#~ msgstr "Kunne ikke gemme indstillingen til panelet"
+
+#~ msgid "Failed to add a plugin to the panel"
+#~ msgstr "Kunne ikke føje et udvidelsesmodul til panelet"
+
+#~ msgid "Failed to restart the panel"
+#~ msgstr "Kunne ikke genstarte panelet"
+
+#~ msgid "Failed to quit the panel"
+#~ msgstr "Kunne ikke afslutte panelet"
+
+#~ msgid "Failed to send D-Bus message"
+#~ msgstr "Kunne ikke sende D-bus-besked"
+
+#~ msgid "No running instance of %s was found"
+#~ msgstr "Ingen kørende instans af %s blev fundet"
+
+#~ msgid "Failed to launch the migration application"
+#~ msgstr "Kunne ikke starte migrationsprogrammet"
+
+#~ msgid ""
+#~ "Invalid plugin event syntax specified. Use PLUGIN-NAME:NAME[:TYPE:VALUE]."
+#~ msgstr ""
+#~ "Ugyldigt udvidelsesmodul syntaks angivet. Brug UDVIDELSESMODULNAVN:NAVN[:"
+#~ "TYPE:VÆRDI]."
+
+#~ msgid ""
+#~ "Invalid hint type \"%s\". Valid types are bool, double, int, string and "
+#~ "uint."
+#~ msgstr ""
+#~ "Ugyldig hentydningstype  \"%s\". Valide typer er boolesk, heltal , "
+#~ "strenge og heltal uden fortegn."
+
+#~ msgid "The panel of the Xfce Desktop Environment"
+#~ msgstr "Panelet til skrivebordsmiljøet Xfce"
+
+#~ msgid "Add New Item"
+#~ msgstr "Tilføj nyt element"
+
+#~ msgid "Please choose a panel for the new plugin:"
+#~ msgstr "Vælg venligst et panel for det nye udvidelsesmodul:"
+
+#~ msgid ""
+#~ "Because the panel is running in kiosk mode, you are not allowed to make "
+#~ "changes to the panel configuration as a regular user"
+#~ msgstr ""
+#~ "Fordi panelet kører i kiosktilstand, er du ikke tilladt at lave ændringer "
+#~ "til panelindstillingen som en normal bruger"
+
+#~ msgid "Modifying the panel is not allowed"
+#~ msgstr "Tilpasning af panelet er ikke tilladt"
+
+#~ msgid ""
+#~ "Plugin \"%s\" unexpectedly left the panel, do you want to restart it?"
+#~ msgstr ""
+#~ "Udvicelsesmodul \"%s\" forlod uventet panelet. Vil du genstarte det?"
+
+#~ msgid ""
+#~ "The plugin restarted more than once in the last %d seconds. If you press "
+#~ "Execute the panel will try to restart the plugin otherwise it will be "
+#~ "permanently removed from the panel."
+#~ msgstr ""
+#~ "Udvidelsesmodulet genstartede mere end én gang i de sidste %d sekunder. "
+#~ "Hvis du trykker 'Kør' vil panelet prøve at genstarte udvidelsesmodulet "
+#~ "ellers vil det blive permanent fjernet fra panelet."
+
+#~ msgid "_Search:"
+#~ msgstr "_Søg:"
+
+#~ msgid "Enter search phrase here"
+#~ msgstr "Indtasts søgeudtryk her"
+
+#~ msgid "Failed to open manual"
+#~ msgstr "Kunne ikke åbne manual"
+
+#~ msgid "Automatic"
+#~ msgstr "Automatisk"
+
+#~ msgid "Screen %d"
+#~ msgstr "Skærm %d"
+
+#~ msgid "Monitor %d"
+#~ msgstr "Overvåg %d"
+
+#~ msgid "The panel and plugin configurations will be permanently removed"
+#~ msgstr ""
+#~ "Indstillingerne til panel og udvidelsesmoduler vil blive fjernet for altid"
+
+#~ msgid "Are you sure you want to remove panel %d?"
+#~ msgstr "Er du sikker på, at du vil fjerne panel %d?"
+
+#~ msgid "Internal name: %s-%d"
+#~ msgstr "Intert navn: %s-%d"
+
+#~ msgid "Add a new panel"
+#~ msgstr "Tilføj et nyt panel"
+
+#~ msgid "Add new item to this panel"
+#~ msgstr "Tilføj nye elementer til dette panel"
+
+#~ msgid ""
+#~ "Alpha value of the panel background, between 0 (transparent) and 100 "
+#~ "(opaque)."
+#~ msgstr ""
+#~ "Alfaværdi af panelbaggrunden mellem 0 (gennemsigtig) eller 100 "
+#~ "(ugennemsigtig)."
+
+#~ msgid "Automatically show and _hide the panel"
+#~ msgstr "Automatisk vis og sk_jul panelet"
+
+#~ msgid "Background"
+#~ msgstr "Baggrund"
+
+#~ msgid "C_ompositing"
+#~ msgstr "Red_igering"
+
+#~ msgid "D_isplay"
+#~ msgstr "_Vis"
+
+#~ msgid "Edit the currently selected item"
+#~ msgstr "Redigér det aktuelle valgte element"
+
+#~ msgid "General"
+#~ msgstr "Generelt"
+
+#~ msgid "Horizontal"
+#~ msgstr "Horisontal"
+
+#~ msgid "Ite_ms"
+#~ msgstr "Ele_menter"
+
+#~ msgid "L_ength (%):"
+#~ msgstr "L_ængde (%):"
+
+#~ msgid "Measurements"
+#~ msgstr "Dimensioner til panel"
+
+#~ msgid "Move currently selected item down by one row"
+#~ msgstr "Flyt det aktuelle valgte element en række ned"
+
+#~ msgid "Move currently selected item up by one row"
+#~ msgstr "Flyt det aktuelle valgte element en række op"
+
+#~ msgid "O_utput:"
+#~ msgstr "Ud_data:"
+
+#~ msgid "Remove currently selected item"
+#~ msgstr "Fjern det aktuelle valgte element"
+
+#~ msgid "Remove the currently selected panel"
+#~ msgstr "Fjern det aktuelle valgte panel"
+
+#~ msgid "Select this option to extend the panel over multiple monitors."
+#~ msgstr "Vælg denne indstilling for af brede panelet ud over flere skærme."
+
+#~ msgid ""
+#~ "Select this option to hide the handles of the panel and lock its position."
+#~ msgstr ""
+#~ "Vælg denne indstilling for at skjule håndtagene til panelet og fastlåse "
+#~ "positionen."
+
+#~ msgid ""
+#~ "Select this option to hide the panel when the pointer is not above it. "
+#~ "This only works when the panel is attached to a screen edge."
+#~ msgstr ""
+#~ "Vælg denne indstilling for at skjule panelet når markøren ikke er over "
+#~ "det. Dette virker kun, når panelet er hæftet til en skærmkant."
+
+#~ msgid "Show about information of the currently selected item"
+#~ msgstr "Vis om information af det aktuelle valgte element"
+
+#~ msgid "Span mo_nitors"
+#~ msgstr "Udbred på _skærme"
+
+#~ msgid "Transparency"
+#~ msgstr "Gennemsigtighed"
+
+#~ msgid "Transparency when the pointer is hovering over the panel."
+#~ msgstr "Gennemsigtigt når markøren svæver over panelet."
+
+#~ msgid "Transparency when the pointer is not hovering the panel."
+#~ msgstr "Gennemsigtigt når markøren ikke svæver over panelet."
+
+#~ msgid "Vertical"
+#~ msgstr "Vertikal"
+
+#~ msgid "_Alpha:"
+#~ msgstr "_Alfa:"
+
+#~ msgid "_Enter:"
+#~ msgstr "_Indtast:"
+
+#~ msgid "_Leave:"
+#~ msgstr "_Forlad:"
+
+#~ msgid "_Lock panel"
+#~ msgstr "_Lås panel"
+
+#~ msgid "_Orientation:"
+#~ msgstr "_Orientering:"
+
+#~ msgid "_Size (pixels):"
+#~ msgstr "_Størrelse (pixels):"
+
+#~ msgid "Action Button"
+#~ msgstr "Hændelsesknap"
+
+#~ msgid "Button Actions"
+#~ msgstr "Knaphandlinger"
+
+#~ msgid "_First button:"
+#~ msgstr "_Første knap:"
+
+#~ msgid "_Second button:"
+#~ msgstr "_Anden knap:"
+
+#~ msgid "Disabled"
+#~ msgstr "Deaktiveret"
+
+#~ msgid "Log Out Dialog"
+#~ msgstr "Luk ned dialog"
+
+#~ msgid "Log Out"
+#~ msgstr "Logud"
+
+#~ msgid "Lock Screen"
+#~ msgstr "Lås skærm"
+
+#~ msgid "Shut Down"
+#~ msgstr "Luk ned"
+
+#~ msgid "Restart"
+#~ msgstr "Genstart"
+
+#~ msgid "Suspend"
+#~ msgstr "Hviletilstand"
+
+#~ msgid "Hibernate"
+#~ msgstr "Dvaletilstand"
+
+#~ msgid "Failed to execute command \"%s\""
+#~ msgstr "Kunne ikke køre kommando \"%s\""
+
+#~ msgid "Appearance"
+#~ msgstr "Udseende"
+
+#~ msgid "Button _title:"
+#~ msgstr "Knap_titel:"
+
+#~ msgid "Menu File"
+#~ msgstr "Menufil"
+
+#~ msgid "Menu _file:"
+#~ msgstr "Menu_fil:"
+
+#~ msgid "Select A Menu File"
+#~ msgstr "Vælg en menufil"
+
+#~ msgid ""
+#~ "Select this option to show the generic application name in the menu, for "
+#~ "example \"File Manager\" instead of \"Thunar\""
+#~ msgstr ""
+#~ "Vælg denne indstilling for at vise det generiske navn i menuen, "
+#~ "eksempelvis \"Filhåndtering\" i stedet for \"Thunar\""
+
+#~ msgid "Show generic application n_ames"
+#~ msgstr "Vis generiske programn_avne"
+
+#~ msgid "Show ic_ons in menu"
+#~ msgstr "Vis ik_oner i menu"
+
+#~ msgid "Use _default menu file"
+#~ msgstr "Brug _standardmenufil"
+
+#~ msgid "Use c_ustom menu file"
+#~ msgstr "Brug t_ilpasset menufil"
+
+#~ msgid "_Icon:"
+#~ msgstr "_Ikon:"
+
+#~ msgid "_Show button title"
+#~ msgstr "_Vis knaptitel"
+
+#~ msgid "Xfce Menu"
+#~ msgstr "Xfce's menu"
+
+#~ msgid "Select An Icon"
+#~ msgstr "Vælg et ikon"
+
+#~ msgid "Failed to execute command \"%s\"."
+#~ msgstr "Kunne ikke køre kommando \"%s\"."
+
+#~ msgid "No applications found"
+#~ msgstr "Ingen programmer blev fundet"
+
+#~ msgid "Failed to load the applications menu"
+#~ msgstr "Kunne ikke starte programmenu"
+
+#~ msgid "24-_hour clock"
+#~ msgstr "24-_timers ur"
+
+#~ msgid "Analog"
+#~ msgstr "Analog"
+
+#~ msgid "Binary"
+#~ msgstr "Binært"
+
+#~ msgid "Clock Options"
+#~ msgstr "Urindstillinger"
+
+#~ msgid "Digital"
+#~ msgstr "Digitalt"
+
+#~ msgid "Display _seconds"
+#~ msgstr "Vis _sekunder"
+
+#~ msgid "F_ormat:"
+#~ msgstr "F_ormat:"
+
+#~ msgid "F_uzziness:"
+#~ msgstr "I_ntervaller:"
+
+#~ msgid "Fl_ash time seperators"
+#~ msgstr "B_linkende linjeskillere"
+
+#~ msgid "Fuzzy"
+#~ msgstr "Interval"
+
+#~ msgid "LCD"
+#~ msgstr "LCD"
+
+#~ msgid "Sho_w AM/PM"
+#~ msgstr "_Vis AM/PM"
+
+#~ msgid "Show _frame"
+#~ msgstr "Vis _ramme"
+
+#~ msgid "Show _inactive dots"
+#~ msgstr "Vis _inaktive prikker"
+
+#~ msgid "Show gri_d"
+#~ msgstr "Vis _gitter"
+
+#~ msgid ""
+#~ "The format describes the date and time parts to insert into the file "
+#~ "name. For example, %Y will be substituted with the year, %m with the "
+#~ "month and %d with the day. See the documentation of the date utility for "
+#~ "additional information."
+#~ msgstr ""
+#~ "Formatet beskriver dato- og tidsdele som skal indsættes i filnavnet. Som "
+#~ "eksempel, %Y vil blive erstattet med året, %m med måneden og %d med "
+#~ "dagen. Gennemlæs dokumentationen for datohjælpeprogrammet for yderligere "
+#~ "information."
+
+#~ msgid "True _binary clock"
+#~ msgstr "Ægte _binært ur"
+
+#~ msgid "_Layout:"
+#~ msgstr "_Layout:"
+
+#~ msgid "_Tooltip format:"
+#~ msgstr "_Værktøjstipformat:"
+
+#~ msgid "Night"
+#~ msgstr "Nat"
+
+#~ msgid "Early morning"
+#~ msgstr "Tidlig morgen"
+
+#~ msgid "Morning"
+#~ msgstr "Morgen"
+
+#~ msgid "Almost noon"
+#~ msgstr "Før middag"
+
+#~ msgid "Noon"
+#~ msgstr "Middag"
+
+#~ msgid "Afternoon"
+#~ msgstr "Efter middag"
+
+#~ msgid "Evening"
+#~ msgstr "Aften"
+
+#~ msgid "Late evening"
+#~ msgstr "Sen aften"
+
+#~ msgid "%0 o'clock"
+#~ msgstr "klokken er %0"
+
+#~ msgid "five past %0"
+#~ msgstr "5 minutter over %0"
+
+#~ msgid "ten past %0"
+#~ msgstr "10 minutter over %0"
+
+#~ msgid "quarter past %0"
+#~ msgstr "et kvarter over %0"
+
+#~ msgid "twenty past %0"
+#~ msgstr "20 minutter over %0"
+
+#~ msgid "twenty five past %0"
+#~ msgstr "25 minutter over %0"
+
+#~ msgid "half past %0"
+#~ msgstr "30 minutter over %0"
+
+#~ msgid "twenty five to %1"
+#~ msgstr "25 minutter i %1"
+
+#~ msgid "twenty to %1"
+#~ msgstr "20 minutter i %1"
+
+#~ msgid "quarter to %1"
+#~ msgstr "et kvarter i %1"
+
+#~ msgid "ten to %1"
+#~ msgstr "10 minutter i %1"
+
+#~ msgid "five to %1"
+#~ msgstr "5 minutter i %1"
+
+#~ msgid "%1 o'clock"
+#~ msgstr "klokken er %1"
+
+#~ msgctxt "one"
+#~ msgid "%0 o'clock"
+#~ msgstr "klokken er %0"
+
+#~ msgctxt "one"
+#~ msgid "five past %0"
+#~ msgstr "5 minutter over %0"
+
+#~ msgctxt "one"
+#~ msgid "ten past %0"
+#~ msgstr "10 minutter over %0"
+
+#~ msgctxt "one"
+#~ msgid "quarter past %0"
+#~ msgstr "et kvarter over %0"
+
+#~ msgctxt "one"
+#~ msgid "twenty past %0"
+#~ msgstr "20 minutter over %0"
+
+#~ msgctxt "one"
+#~ msgid "twenty five past %0"
+#~ msgstr "25 minutter over %0"
+
+#~ msgctxt "one"
+#~ msgid "half past %0"
+#~ msgstr "30 minutter over %0"
+
+#~ msgctxt "one"
+#~ msgid "twenty five to %1"
+#~ msgstr "25 minutter i %1"
+
+#~ msgctxt "one"
+#~ msgid "twenty to %1"
+#~ msgstr "20 minutter i %1"
+
+#~ msgctxt "one"
+#~ msgid "quarter to %1"
+#~ msgstr "et kvarter i %1"
+
+#~ msgctxt "one"
+#~ msgid "ten to %1"
+#~ msgstr "10 minutter i %1"
+
+#~ msgctxt "one"
+#~ msgid "five to %1"
+#~ msgstr "5 minutter i %1"
+
+#~ msgctxt "one"
+#~ msgid "%1 o'clock"
+#~ msgstr "klokken er %1"
+
+#~ msgid "one"
+#~ msgstr "et"
+
+#~ msgid "two"
+#~ msgstr "to"
+
+#~ msgid "three"
+#~ msgstr "tre"
+
+#~ msgid "four"
+#~ msgstr "fire"
+
+#~ msgid "five"
+#~ msgstr "fem"
+
+#~ msgid "six"
+#~ msgstr "seks"
+
+#~ msgid "seven"
+#~ msgstr "syv"
+
+#~ msgid "eight"
+#~ msgstr "otte"
+
+#~ msgid "nine"
+#~ msgstr "ni"
+
+#~ msgid "ten"
+#~ msgstr "ti"
+
+#~ msgid "eleven"
+#~ msgstr "elleve"
+
+#~ msgid "twelve"
+#~ msgstr "tolv"
+
+#~ msgid "Week %V"
+#~ msgstr "Uge %V"
+
+#~ msgid "Failed to execute clock command"
+#~ msgstr "Kunne ikke udføre klokkommando"
+
+#~ msgid "Custom Format"
+#~ msgstr "Tilpasset format"
+
+#~ msgid "Failed to launch application \"%s\""
+#~ msgstr "Kunne ikke starte program \"%s\""
+
+#~ msgid "Failed to query content type for \"%s\""
+#~ msgstr "Kunne ikke forespørge om indholdstype for \"%s\""
+
+#~ msgid "No default application found for \"%s\""
+#~ msgstr "Standardprogram for \"%s\" blev ikke fundet"
+
+#~ msgid "Failed to launch default application for \"%s\""
+#~ msgstr "Kunne ikke starte standardprogram for \"%s\""
+
+#~ msgid "Failed to execute the preferred application for category \"%s\""
+#~ msgstr "Kunne ikke køre det foretrukne program for kategori \"%s\""
+
+#~ msgid "Open Folder"
+#~ msgstr "Åbn mappe"
+
+#~ msgid "Open in Terminal"
+#~ msgstr "Åbn i terminal"
+
+#~ msgid ""
+#~ "Enter a list of patterns that will be used to determine which files are "
+#~ "visible in a directory. If you specify more than one pattern here, the "
+#~ "list items must be separated with semicolons (e.g. *.txt;*.doc)."
+#~ msgstr ""
+#~ "Indtast en liste over mønstre som bruges til at bestemme hvilke filer som "
+#~ "der er synlige i en mappe. Hvis du angiver mere end ét mønster her skal "
+#~ "listeelementerne adskilles med et semikolon (eks. *.txt;*.doc)."
+
+#~ msgid "Filtering"
+#~ msgstr "Filtrering"
+
+#~ msgid "Select A Directory"
+#~ msgstr "Vælg en mappe"
+
+#~ msgid "Show _hidden files"
+#~ msgstr "Vis _skjulte filer"
+
+#~ msgid "_Base Directory:"
+#~ msgstr "_Basismappe:"
+
+#~ msgid "_File Pattern:"
+#~ msgstr "_Filmønster:"
+
+#~ msgid "If you delete an item, it will be permanently removed"
+#~ msgstr "Hvis du sletter et element vil det blive fjernet permanent"
+
+#~ msgid "Are you sure you want to remove \"%s\"?"
+#~ msgstr "Er du sikker på, at du vil fjerne \"%s\"?"
+
+#~ msgid "Unnamed item"
+#~ msgstr "Ikke navngivet element"
+
+#~ msgid "Failed to remove the desktop file from the config directory"
+#~ msgstr "Kunne ikke fjerne skrivebordsfilen fra indstillingsmappen"
+
+#~ msgid "Failed to open desktop item editor"
+#~ msgstr "Kunne ikke åbne redigering af skrivebordselement"
+
+#~ msgid "Add a new empty item"
+#~ msgstr "Tilføj et nyt tomt element"
+
+#~ msgid "Add one or more existing items to the launcher"
+#~ msgstr "Føj en eller flere eksisterende elementer til opstarteren"
+
+#~ msgid "Advanced"
+#~ msgstr "Avanceret"
+
+#~ msgid "Default"
+#~ msgstr "Standard"
+
+#~ msgid "Delete the currently selected item"
+#~ msgstr "Fjern det aktuelle valgte element"
+
+#~ msgid "Disable t_ooltips"
+#~ msgstr "Slå væ_rktøjstips fra"
+
+#~ msgid "East"
+#~ msgstr "Øst"
+
+# fuzzy, skal bruges i 4.6
+#~ msgid "Inside Button"
+#~ msgstr "Invendig knap"
+
+#~ msgid "North"
+#~ msgstr "Nord"
+
+#~ msgid ""
+#~ "Select this option to disable the tooltips when moving over the panel "
+#~ "button or menu items."
+#~ msgstr ""
+#~ "Vælg denne indstilling for at slå værkstøjtips fra når du svæver over "
+#~ "panelknappen eller menuelementer."
+
+#~ msgid "Select this option to move the clicked menu item to the panel."
+#~ msgstr "Vælg denne indstilling for at flytte den valgte menu til panelet."
+
+#~ msgid "Show _label instead of icon"
+#~ msgstr "Vis _mærkat i stedet for ikon"
+
+#~ msgid "Show last _used item in panel"
+#~ msgstr "Vis sidst _brugte element i panel"
+
+#~ msgid "South"
+#~ msgstr "Syd"
+
+#~ msgid "West"
+#~ msgstr "Vest"
+
+#~ msgid "_Arrow button position:"
+#~ msgstr "Position af p_ilknap:"
+
+#~ msgid "Unnamed Item"
+#~ msgstr "Ikke navngivet element"
+
+#~ msgid "No items"
+#~ msgstr "Ingen elementer"
+
+#~ msgid "Behaviour"
+#~ msgstr "Opførsel"
+
+#~ msgid "Number of _rows:"
+#~ msgstr "Antal ræ_kker:"
+
+#~ msgid "Show workspace _names"
+#~ msgstr "Vis arbejdsom_rådenavne"
+
+#~ msgid "Switch workspaces using the mouse _wheel"
+#~ msgstr "Skift arbejdsområde med muse_hjulet"
+
+#~ msgid "Workspace _Settings..."
+#~ msgstr "Arbejdsområde_indstillinger..."
+
+#~ msgid "Unable to open the Xfce workspace settings"
+#~ msgstr "Kunne ikke åbne arbejdsområdeindstillingerne til Xfce"
+
+#~ msgid "Dots"
+#~ msgstr "Prikker"
+
+#~ msgid "Handle"
+#~ msgstr "Håndtag"
+
+#~ msgid "New Line"
+#~ msgstr "Nyt linje"
+
+#~ msgid "Transparent"
+#~ msgstr "Gennemsigtig"
+
+#~ msgid "_Expand"
+#~ msgstr "_Udvid"
+
+#~ msgid "_Style:"
+#~ msgstr "_Stil:"
+
+#~ msgid "Restore the minimized windows"
+#~ msgstr "Gendan de minimerede vinduer"
+
+#~ msgid "Minimize all open windows and show the desktop"
+#~ msgstr "Minimér alle vinduer og vis skrivebordet"
+
+#~ msgid "C_lear Known Applications"
+#~ msgstr "R_yd kendte programmer"
+
+#~ msgid "Known Applications"
+#~ msgstr "Kendte programmer"
+
+#~ msgid "_Number of rows:"
+#~ msgstr "A_ntal rækker:"
+
+#~ msgid "Failed to acquire manager selection for screen %d"
+#~ msgstr "Kunne ikke allokere håndteringsvalg for skærm %d"
+
+#~ msgid ""
+#~ "Most likely another widget took over the function of a notification area. "
+#~ "This plugin will close."
+#~ msgstr ""
+#~ "Mest sandsynligt et andet widget har overtaget funktionen af et "
+#~ "beskedsområde. Udvidelsesmodulet vil afslutte."
+
+#~ msgid "The notification area lost selection"
+#~ msgstr "Beskedsområdet mistede valget"
+
+#~ msgid "Are you sure you want to clear the list of known applications?"
+#~ msgstr "Er du sikker på at du vil slette listen over kendte programmer?"
+
+#~ msgid "Always"
+#~ msgstr "Altid"
+
+#~ msgid "D_raw window frame when hovering a button"
+#~ msgstr "Te_gn en vinduesramme når svævning over en knap"
+
+#~ msgid "Group title and timestamp"
+#~ msgstr "Gruppetitel og tidsstempel"
+
+#~ msgid "Group title and window title"
+#~ msgstr "Gruppetitel og vinduestitel"
+
+#~ msgid "Never"
+#~ msgstr "Aldrig"
+
+#~ msgid "Restore minimized windows to current _workspace"
+#~ msgstr "Gendan minimerede vinduer til det aktuelle _arbejdsområde"
+
+#~ msgid "Show _flat buttons"
+#~ msgstr "Brug fl_ade knapper"
+
+#~ msgid "Show _handle"
+#~ msgstr "Vis _håndtag"
+
+#~ msgid "Show button _labels"
+#~ msgstr "Vis knap_mærkater"
+
+#~ msgid "Show only _minimized windows"
+#~ msgstr "Vis kun _minimerede vinduer"
+
+#~ msgid "Show windows from _all workspaces"
+#~ msgstr "Vis _vinduer fra alle arbejdsområder"
+
+#~ msgid "Sorting _order:"
+#~ msgstr "Sor_teringsorden:"
+
+#~ msgid "Timestamp"
+#~ msgstr "Tidsstemple"
+
+#~ msgid "When space is limited"
+#~ msgstr "Når plads er begrænset"
+
+#~ msgid "Window _grouping:"
+#~ msgstr "Vindue_gruppering:"
+
+#~ msgid "Window title"
+#~ msgstr "Vinduestitel"
+
+#~ msgid "Mi_nimize All"
+#~ msgstr "Mi_nimér alle"
+
+#~ msgid "Un_minimize All"
+#~ msgstr "Gen_dan alle minimerede"
+
+#~ msgid "Ma_ximize All"
+#~ msgstr "Maksi_mér alle"
+
+#~ msgid "_Unmaximize All"
+#~ msgstr "_Gendan alle maksimerede"
+
+#~ msgid "_Close All"
+#~ msgstr "_Luk alle"
+
+#~ msgid "Arrow"
+#~ msgstr "Pil"
+
+#~ msgid "Button layout:"
+#~ msgstr "Knaplayout:"
+
+#~ msgid "Enable _urgency notification"
+#~ msgstr "Slå _vigtige beskeder til"
+
+#~ msgid "Icon"
+#~ msgstr "Ikon"
+
+#~ msgid "Show workspace a_ctions"
+#~ msgstr "Vis arb_ejdsområdehændelser"
+
+#~ msgid "Desktop"
+#~ msgstr "Skrivebord"
+
+#~ msgid "Workspace %d"
+#~ msgstr "Arbejdsområde %d"
+
+#~ msgid "No Windows"
+#~ msgstr "Ingen vinduer"
+
+#~ msgid "Urgent Windows"
+#~ msgstr "Presserende vinduer"
+
+#~ msgid "Add Workspace"
+#~ msgstr "Tilføj arbejdsområde"
+
+#~ msgid "Remove Workspace \"%s\""
+#~ msgstr "Fjern arbejdsområde \"%s\""
+
+#~ msgid "Remove Workspace %d"
+#~ msgstr "Fjern arbejdsområde %d"
diff --git a/docs/manual/po/xfce4-panel.pot b/docs/manual/po/xfce4-panel.pot
new file mode 100644
index 0000000..efc2b5f
--- /dev/null
+++ b/docs/manual/po/xfce4-panel.pot
@@ -0,0 +1,224 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2010-02-22 17:45+0100\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
+"Language-Team: LANGUAGE <LL at li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: windowmenu.page:8(desc)
+msgid "Switch between open windows using a menu"
+msgstr ""
+
+#: windowmenu.page:10(name) windowbuttons.page:10(name) systray.page:10(name) showdesktop.page:10(name) separator.page:10(name) preferences.page:10(name) pager.page:10(name) launcher.page:10(name) introduction.page:10(name) index.page:10(name) directorymenu.page:10(name) clock.page:10(name) applicationsmenu.page:10(name) add-new-items.page:11(name) actions.page:10(name)
+msgid "Nick Schermer"
+msgstr ""
+
+#: windowmenu.page:11(email) windowbuttons.page:11(email) systray.page:11(email) showdesktop.page:11(email) separator.page:11(email) preferences.page:11(email) pager.page:11(email) launcher.page:11(email) introduction.page:11(email) index.page:11(email) directorymenu.page:11(email) clock.page:11(email) applicationsmenu.page:11(email) add-new-items.page:12(email) actions.page:11(email)
+msgid "nick at xfce.org"
+msgstr ""
+
+#: windowmenu.page:14(p) windowbuttons.page:14(p) systray.page:14(p) showdesktop.page:14(p) separator.page:14(p) preferences.page:14(p) pager.page:14(p) launcher.page:14(p) introduction.page:14(p) index.page:14(p) directorymenu.page:14(p) clock.page:14(p) applicationsmenu.page:14(p) add-new-items.page:15(p) actions.page:14(p)
+msgid "Creative Commons Share Alike 3.0"
+msgstr ""
+
+#: windowmenu.page:18(title)
+msgid "Window Menu"
+msgstr ""
+
+#: windowmenu.page:23(title) windowbuttons.page:23(title) systray.page:23(title) showdesktop.page:23(title) separator.page:23(title) pager.page:23(title) launcher.page:23(title) directorymenu.page:23(title) clock.page:23(title) applicationsmenu.page:23(title) actions.page:23(title)
+msgid "Properties"
+msgstr ""
+
+#: windowmenu.page:28(title) windowbuttons.page:28(title) systray.page:28(title) showdesktop.page:28(title) separator.page:28(title) pager.page:28(title) launcher.page:28(title) directorymenu.page:28(title) clock.page:28(title) applicationsmenu.page:28(title) actions.page:28(title)
+msgid "Style Properties"
+msgstr ""
+
+#: windowbuttons.page:8(desc)
+msgid "Switch between open windows using buttons"
+msgstr ""
+
+#: windowbuttons.page:18(title)
+msgid "Window Buttons"
+msgstr ""
+
+#: systray.page:8(desc)
+msgid "Area where notification icons appear"
+msgstr ""
+
+#: systray.page:18(title)
+msgid "Notification Area"
+msgstr ""
+
+#: showdesktop.page:8(desc)
+msgid "Hide all windows and show the desktop"
+msgstr ""
+
+#: showdesktop.page:18(title)
+msgid "Show Desktop"
+msgstr ""
+
+#: separator.page:8(desc)
+msgid "Adds a separator or space between panel plugins"
+msgstr ""
+
+#: separator.page:18(title)
+msgid "Separator"
+msgstr ""
+
+#: preferences.page:8(app) introduction.page:8(app) index.page:7(title) index.page:8(title) index.page:18(title) add-new-items.page:9(app)
+msgid "Xfce Panel"
+msgstr ""
+
+#: preferences.page:8(desc)
+msgid "Configure the <placeholder-1/>"
+msgstr ""
+
+#: preferences.page:18(title)
+msgid "Preferences"
+msgstr ""
+
+#: pager.page:8(desc)
+msgid "Switch between virtual desktops"
+msgstr ""
+
+#: pager.page:18(title)
+msgid "Workspace Switcher"
+msgstr ""
+
+#: license.page:8(desc)
+msgid "Legal information."
+msgstr ""
+
+#: license.page:11(title)
+msgid "License"
+msgstr ""
+
+#: license.page:12(p)
+msgid "This work is distributed under a CreativeCommons Attribution-Share Alike 3.0 Unported license."
+msgstr ""
+
+#: license.page:20(p)
+msgid "You are free:"
+msgstr ""
+
+#: license.page:25(em)
+msgid "To share"
+msgstr ""
+
+#: license.page:26(p)
+msgid "To copy, distribute and transmit the work."
+msgstr ""
+
+#: license.page:29(em)
+msgid "To remix"
+msgstr ""
+
+#: license.page:30(p)
+msgid "To adapt the work."
+msgstr ""
+
+#: license.page:33(p)
+msgid "Under the following conditions:"
+msgstr ""
+
+#: license.page:38(em)
+msgid "Attribution"
+msgstr ""
+
+#: license.page:39(p)
+msgid "You must attribute the work in the manner specified by the author or licensor (but not in any way that suggests that they endorse you or your use of the work)."
+msgstr ""
+
+#: license.page:46(em)
+msgid "Share Alike"
+msgstr ""
+
+#: license.page:47(p)
+msgid "If you alter, transform, or build upon this work, you may distribute the resulting work only under the same, similar or a compatible license."
+msgstr ""
+
+#: license.page:56(link)
+msgid "CreativeCommons website"
+msgstr ""
+
+#: license.page:57(link)
+msgid "Commons Deed"
+msgstr ""
+
+#: license.page:53(p)
+msgid "For the full text of the license, see the <placeholder-1/>, or read the full <placeholder-2/>."
+msgstr ""
+
+#: launcher.page:8(desc)
+msgid "Program launcher with optional menu"
+msgstr ""
+
+#: launcher.page:18(title)
+msgid "Launcher"
+msgstr ""
+
+#: introduction.page:8(desc)
+msgid "Introduction to <placeholder-1/>"
+msgstr ""
+
+#: introduction.page:18(title)
+msgid "Introduction"
+msgstr ""
+
+#: index.page:21(title)
+msgid "Panel"
+msgstr ""
+
+#: index.page:25(title)
+msgid "Plugins"
+msgstr ""
+
+#: directorymenu.page:8(desc)
+msgid "Show a directory tree in a menu"
+msgstr ""
+
+#: directorymenu.page:18(title)
+msgid "Directory Menu"
+msgstr ""
+
+#: clock.page:8(desc)
+msgid "What time is it?"
+msgstr ""
+
+#: clock.page:18(title)
+msgid "Clock"
+msgstr ""
+
+#: applicationsmenu.page:8(desc)
+msgid "Show a menu containing categories of installed applications"
+msgstr ""
+
+#: applicationsmenu.page:18(title)
+msgid "Applications Menu"
+msgstr ""
+
+#: add-new-items.page:9(desc)
+msgid "Add new plugins to the <placeholder-1/>"
+msgstr ""
+
+#: add-new-items.page:19(title)
+msgid "Add New Plugins"
+msgstr ""
+
+#: actions.page:8(desc)
+msgid "Log out, lock or other system actions"
+msgstr ""
+
+#: actions.page:18(title)
+msgid "Action Buttons"
+msgstr ""
+
+#. Put one translator per line, in the form of NAME <EMAIL>, YEAR1, YEAR2
+#: actions.page:0(None)
+msgid "translator-credits"
+msgstr ""
+
diff --git a/docs/manual/preferences.page b/docs/manual/preferences.page
new file mode 100644
index 0000000..3e1d8ca
--- /dev/null
+++ b/docs/manual/preferences.page
@@ -0,0 +1,20 @@
+<page xmlns="http://projectmallard.org/1.0/"
+      xmlns:e="http://projectmallard.org/experimental/"
+      type="topic"
+      id="preferences">
+
+  <info>
+    <link type="guide" xref="index#panel"/>
+    <desc>Configure the <app>Xfce Panel</app></desc>
+    <credit type="author">
+      <name>Nick Schermer</name>
+      <email>nick at xfce.org</email>
+    </credit>
+    <license>
+      <p>Creative Commons Share Alike 3.0</p>
+    </license>
+  </info>
+
+  <title>Preferences</title>
+
+</page>
diff --git a/docs/manual/separator.page b/docs/manual/separator.page
new file mode 100644
index 0000000..7e6ff61
--- /dev/null
+++ b/docs/manual/separator.page
@@ -0,0 +1,32 @@
+<page xmlns="http://projectmallard.org/1.0/"
+      xmlns:e="http://projectmallard.org/experimental/"
+      type="topic"
+      id="separator">
+
+  <info>
+    <link type="guide" xref="index#plugins"/>
+    <desc>Adds a separator or space between panel plugins</desc>
+    <credit type="author">
+      <name>Nick Schermer</name>
+      <email>nick at xfce.org</email>
+    </credit>
+    <license>
+      <p>Creative Commons Share Alike 3.0</p>
+    </license>
+  </info>
+
+  <title>Separator</title>
+
+  <p></p>
+
+  <section id="properties">
+    <title>Properties</title>
+
+  </section>
+
+  <section id="theming">
+    <title>Style Properties</title>
+
+  </section>
+
+</page>
diff --git a/docs/manual/showdesktop.page b/docs/manual/showdesktop.page
new file mode 100644
index 0000000..f60e1a4
--- /dev/null
+++ b/docs/manual/showdesktop.page
@@ -0,0 +1,32 @@
+<page xmlns="http://projectmallard.org/1.0/"
+      xmlns:e="http://projectmallard.org/experimental/"
+      type="topic"
+      id="showdesktop">
+
+  <info>
+    <link type="guide" xref="index#plugins"/>
+    <desc>Hide all windows and show the desktop</desc>
+    <credit type="author">
+      <name>Nick Schermer</name>
+      <email>nick at xfce.org</email>
+    </credit>
+    <license>
+      <p>Creative Commons Share Alike 3.0</p>
+    </license>
+  </info>
+
+  <title>Show Desktop</title>
+
+  <p></p>
+
+  <section id="properties">
+    <title>Properties</title>
+
+  </section>
+
+  <section id="theming">
+    <title>Style Properties</title>
+
+  </section>
+
+</page>
diff --git a/docs/manual/systray.page b/docs/manual/systray.page
new file mode 100644
index 0000000..8d7a235
--- /dev/null
+++ b/docs/manual/systray.page
@@ -0,0 +1,32 @@
+<page xmlns="http://projectmallard.org/1.0/"
+      xmlns:e="http://projectmallard.org/experimental/"
+      type="topic"
+      id="systray">
+
+  <info>
+    <link type="guide" xref="index#plugins"/>
+    <desc>Area where notification icons appear</desc>
+    <credit type="author">
+      <name>Nick Schermer</name>
+      <email>nick at xfce.org</email>
+    </credit>
+    <license>
+      <p>Creative Commons Share Alike 3.0</p>
+    </license>
+  </info>
+
+  <title>Notification Area</title>
+
+  <p></p>
+
+  <section id="properties">
+    <title>Properties</title>
+
+  </section>
+
+  <section id="theming">
+    <title>Style Properties</title>
+
+  </section>
+
+</page>
diff --git a/docs/manual/windowbuttons.page b/docs/manual/windowbuttons.page
new file mode 100644
index 0000000..4e4b8eb
--- /dev/null
+++ b/docs/manual/windowbuttons.page
@@ -0,0 +1,32 @@
+<page xmlns="http://projectmallard.org/1.0/"
+      xmlns:e="http://projectmallard.org/experimental/"
+      type="topic"
+      id="windowbuttons">
+
+  <info>
+    <link type="guide" xref="index#plugins"/>
+    <desc>Switch between open windows using buttons</desc>
+    <credit type="author">
+      <name>Nick Schermer</name>
+      <email>nick at xfce.org</email>
+    </credit>
+    <license>
+      <p>Creative Commons Share Alike 3.0</p>
+    </license>
+  </info>
+
+  <title>Window Buttons</title>
+
+  <p></p>
+
+  <section id="properties">
+    <title>Properties</title>
+
+  </section>
+
+  <section id="theming">
+    <title>Style Properties</title>
+
+  </section>
+
+</page>
diff --git a/docs/manual/windowmenu.page b/docs/manual/windowmenu.page
new file mode 100644
index 0000000..41ebd12
--- /dev/null
+++ b/docs/manual/windowmenu.page
@@ -0,0 +1,32 @@
+<page xmlns="http://projectmallard.org/1.0/"
+      xmlns:e="http://projectmallard.org/experimental/"
+      type="topic"
+      id="windowmenu">
+
+  <info>
+    <link type="guide" xref="index#plugins"/>
+    <desc>Switch between open windows using a menu</desc>
+    <credit type="author">
+      <name>Nick Schermer</name>
+      <email>nick at xfce.org</email>
+    </credit>
+    <license>
+      <p>Creative Commons Share Alike 3.0</p>
+    </license>
+  </info>
+
+  <title>Window Menu</title>
+
+  <p></p>
+
+  <section id="properties">
+    <title>Properties</title>
+
+  </section>
+
+  <section id="theming">
+    <title>Style Properties</title>
+
+  </section>
+
+</page>



More information about the Xfce4-commits mailing list