[Xfce4-commits] <xfce4-panel:master> Add submodule to xfce4-docs/xfce4-panel-master.

Nick Schermer noreply at xfce.org
Tue Oct 26 21:00:01 CEST 2010


Updating branch refs/heads/master
         to 32165185fbd15b9ec67fe9c4812d6d162df64ac7 (commit)
       from 68b190cff460a5c0441ee382cfe773f428f0cd86 (commit)

commit 32165185fbd15b9ec67fe9c4812d6d162df64ac7
Author: Nick Schermer <nick at xfce.org>
Date:   Tue Oct 26 20:57:46 2010 +0200

    Add submodule to xfce4-docs/xfce4-panel-master.

 .gitmodules                              |    3 +
 docs/manual                              |    1 +
 docs/manual/Makefile.am                  |  153 ---------------
 docs/manual/actions.page                 |   36 ----
 docs/manual/add-new-items.page           |   25 ---
 docs/manual/applicationsmenu.page        |   36 ----
 docs/manual/clock.page                   |   36 ----
 docs/manual/directorymenu.page           |   36 ----
 docs/manual/figures/Makefile.am          |   17 --
 docs/manual/figures/actions.png          |  Bin 12288 -> 0 bytes
 docs/manual/figures/add-new-items.png    |  Bin 37914 -> 0 bytes
 docs/manual/figures/applicationsmenu.png |  Bin 20919 -> 0 bytes
 docs/manual/figures/clock.png            |  Bin 15002 -> 0 bytes
 docs/manual/figures/directorymenu.png    |  Bin 15683 -> 0 bytes
 docs/manual/figures/launcher.png         |  Bin 17948 -> 0 bytes
 docs/manual/figures/pager.png            |  Bin 19408 -> 0 bytes
 docs/manual/figures/preferences.png      |  Bin 18976 -> 0 bytes
 docs/manual/figures/separator.png        |  Bin 10215 -> 0 bytes
 docs/manual/figures/systray.png          |  Bin 19761 -> 0 bytes
 docs/manual/figures/tasklist.png         |  Bin 26494 -> 0 bytes
 docs/manual/figures/windowmenu.png       |  Bin 15699 -> 0 bytes
 docs/manual/index.page                   |   27 ---
 docs/manual/introduction.page            |   20 --
 docs/manual/launcher.page                |   36 ----
 docs/manual/license.page                 |   59 ------
 docs/manual/pager.page                   |   36 ----
 docs/manual/po/Makefile.am               |    5 -
 docs/manual/po/bn.po                     |  237 -----------------------
 docs/manual/po/ca.po                     |  279 ---------------------------
 docs/manual/po/da.po                     |  299 -----------------------------
 docs/manual/po/es.po                     |  246 ------------------------
 docs/manual/po/fr.po                     |  303 ------------------------------
 docs/manual/po/gl.po                     |  256 -------------------------
 docs/manual/po/id.po                     |  265 --------------------------
 docs/manual/po/it.po                     |  295 -----------------------------
 docs/manual/po/ru.po                     |  247 ------------------------
 docs/manual/po/sv.po                     |  291 ----------------------------
 docs/manual/po/ug.po                     |  259 -------------------------
 docs/manual/po/xfce4-panel.pot           |  224 ----------------------
 docs/manual/po/zh_CN.po                  |  261 -------------------------
 docs/manual/preferences.page             |   24 ---
 docs/manual/separator.page               |   36 ----
 docs/manual/showdesktop.page             |   32 ---
 docs/manual/systray.page                 |   36 ----
 docs/manual/tasklist.page                |   36 ----
 docs/manual/theming.page                 |   26 ---
 docs/manual/windowmenu.page              |   36 ----
 47 files changed, 4 insertions(+), 4210 deletions(-)

diff --git a/.gitmodules b/.gitmodules
new file mode 100644
index 0000000..49cdd59
--- /dev/null
+++ b/.gitmodules
@@ -0,0 +1,3 @@
+[submodule "docs/manual"]
+	path = docs/manual
+	url = ssh://git.xfce.org/git/xfce/xfce4-docs
diff --git a/docs/manual b/docs/manual
new file mode 160000
index 0000000..4c19662
--- /dev/null
+++ b/docs/manual
@@ -0,0 +1 @@
+Subproject commit 4c1966278834ff41be41561ecba31c7828ecb217
diff --git a/docs/manual/Makefile.am b/docs/manual/Makefile.am
deleted file mode 100644
index 75dfc5d..0000000
--- a/docs/manual/Makefile.am
+++ /dev/null
@@ -1,153 +0,0 @@
-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 \
-	tasklist.page \
-	theming.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/index.html"; 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" "$(srcdir)/index.page"; \
-	echo; \
-	for lang in $(ALL_LINGUAS); do \
-		echo "Generating $$lang documentation"; \
-		mkdir -p "$(srcdir)/.pages/"; \
-		if test x"$$lang" = x"C"; then \
-			for page in $(MALLARD_PAGES); do \
-				cp -t "$(srcdir)/.pages/" "$(srcdir)/$$page"; \
-			done; \
-		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; \
-		if test -f "$(srcdir)/.pages/index.page"; then \
-			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"; \
-		else \
-			echo "  - No mallard pages found, skipping HTML generation!"; \
-		fi; \
-		rm -rf "$(srcdir)/.pages" "$(srcdir)/html/$$lang/index.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"; 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"; \
-	mkdir -p "$(distdir)/html"; \
-	if test -f "$$file"; then \
-		cp "$$file" "$(distdir)/html/"; \
-	fi; \
-	for lang in $(ALL_LINGUAS); do \
-		if test -f "$(srcdir)/html/$$lang/index.html"; then \
-			mkdir -p "$(distdir)/html/$$lang"; \
-			cp -t "$(distdir)/html/$$lang/" $(srcdir)/html/$$lang/*; \
-		fi \
-	done
-
-EXTRA_DIST = \
-	$(MALLARD_PAGES)
-
-CLEANFILES = \
-	doc-build.stamp
diff --git a/docs/manual/actions.page b/docs/manual/actions.page
deleted file mode 100644
index c31d18d..0000000
--- a/docs/manual/actions.page
+++ /dev/null
@@ -1,36 +0,0 @@
-<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>
-
-    <figure>
-      <title>Action Buttons' properties dialog</title>
-      <media type="image" src="figures/actions.png" mime="image/png" style="right"/>
-    </figure>
-  </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
deleted file mode 100644
index 34e34fa..0000000
--- a/docs/manual/add-new-items.page
+++ /dev/null
@@ -1,25 +0,0 @@
-<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>
-
-  <figure>
-    <title>Add new items dialog</title>
-    <media type="image" src="figures/add-new-items.png" mime="image/png" style="right"/>
-  </figure>
-</page>
diff --git a/docs/manual/applicationsmenu.page b/docs/manual/applicationsmenu.page
deleted file mode 100644
index c301450..0000000
--- a/docs/manual/applicationsmenu.page
+++ /dev/null
@@ -1,36 +0,0 @@
-<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>
-
-    <figure>
-      <title>Applications menu's properties dialog</title>
-      <media type="image" src="figures/applicationsmenu.png" mime="image/png" style="right"/>
-    </figure>
-  </section>
-
-  <section id="theming">
-    <title>Style Properties</title>
-
-  </section>
-
-</page>
diff --git a/docs/manual/clock.page b/docs/manual/clock.page
deleted file mode 100644
index 879e10e..0000000
--- a/docs/manual/clock.page
+++ /dev/null
@@ -1,36 +0,0 @@
-<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>
-
-    <figure>
-      <title>Clock's properties dialog</title>
-      <media type="image" src="figures/clock.png" mime="image/png" style="right"/>
-    </figure>
-  </section>
-
-</page>
diff --git a/docs/manual/directorymenu.page b/docs/manual/directorymenu.page
deleted file mode 100644
index eb900b3..0000000
--- a/docs/manual/directorymenu.page
+++ /dev/null
@@ -1,36 +0,0 @@
-<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>
-
-    <figure>
-      <title>Directory menu's properties dialog</title>
-      <media type="image" src="figures/directorymenu.png" mime="image/png" style="right"/>
-    </figure>
-  </section>
-
-  <section id="theming">
-    <title>Style Properties</title>
-
-  </section>
-
-</page>
diff --git a/docs/manual/figures/Makefile.am b/docs/manual/figures/Makefile.am
deleted file mode 100644
index 4724b95..0000000
--- a/docs/manual/figures/Makefile.am
+++ /dev/null
@@ -1,17 +0,0 @@
-imagesdir = $(docdir)/html/C/figures
-images_DATA = \
-	actions.png \
-	add-new-items.png \
-	applicationsmenu.png \
-	clock.png \
-	directorymenu.png \
-	launcher.png \
-	pager.png \
-	preferences.png \
-	separator.png \
-	systray.png \
-	tasklist.png \
-	windowmenu.png
-
-EXTRA_DIST = \
-	$(images_DATA)
diff --git a/docs/manual/figures/actions.png b/docs/manual/figures/actions.png
deleted file mode 100644
index da299fa..0000000
Binary files a/docs/manual/figures/actions.png and /dev/null differ
diff --git a/docs/manual/figures/add-new-items.png b/docs/manual/figures/add-new-items.png
deleted file mode 100644
index b604e3e..0000000
Binary files a/docs/manual/figures/add-new-items.png and /dev/null differ
diff --git a/docs/manual/figures/applicationsmenu.png b/docs/manual/figures/applicationsmenu.png
deleted file mode 100644
index 222365a..0000000
Binary files a/docs/manual/figures/applicationsmenu.png and /dev/null differ
diff --git a/docs/manual/figures/clock.png b/docs/manual/figures/clock.png
deleted file mode 100644
index eb9d4c3..0000000
Binary files a/docs/manual/figures/clock.png and /dev/null differ
diff --git a/docs/manual/figures/directorymenu.png b/docs/manual/figures/directorymenu.png
deleted file mode 100644
index e920212..0000000
Binary files a/docs/manual/figures/directorymenu.png and /dev/null differ
diff --git a/docs/manual/figures/launcher.png b/docs/manual/figures/launcher.png
deleted file mode 100644
index a974dcb..0000000
Binary files a/docs/manual/figures/launcher.png and /dev/null differ
diff --git a/docs/manual/figures/pager.png b/docs/manual/figures/pager.png
deleted file mode 100644
index 31d1d96..0000000
Binary files a/docs/manual/figures/pager.png and /dev/null differ
diff --git a/docs/manual/figures/preferences.png b/docs/manual/figures/preferences.png
deleted file mode 100644
index e652dde..0000000
Binary files a/docs/manual/figures/preferences.png and /dev/null differ
diff --git a/docs/manual/figures/separator.png b/docs/manual/figures/separator.png
deleted file mode 100644
index d71ea5d..0000000
Binary files a/docs/manual/figures/separator.png and /dev/null differ
diff --git a/docs/manual/figures/systray.png b/docs/manual/figures/systray.png
deleted file mode 100644
index 567aafd..0000000
Binary files a/docs/manual/figures/systray.png and /dev/null differ
diff --git a/docs/manual/figures/tasklist.png b/docs/manual/figures/tasklist.png
deleted file mode 100644
index b282630..0000000
Binary files a/docs/manual/figures/tasklist.png and /dev/null differ
diff --git a/docs/manual/figures/windowmenu.png b/docs/manual/figures/windowmenu.png
deleted file mode 100644
index 0dc243e..0000000
Binary files a/docs/manual/figures/windowmenu.png and /dev/null differ
diff --git a/docs/manual/index.page b/docs/manual/index.page
deleted file mode 100644
index 6d3dc27..0000000
--- a/docs/manual/index.page
+++ /dev/null
@@ -1,27 +0,0 @@
-<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
deleted file mode 100644
index 8a9bb83..0000000
--- a/docs/manual/introduction.page
+++ /dev/null
@@ -1,20 +0,0 @@
-<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
deleted file mode 100644
index 133d6cb..0000000
--- a/docs/manual/launcher.page
+++ /dev/null
@@ -1,36 +0,0 @@
-<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>
-
-    <figure>
-      <title>Launcher's properties dialog</title>
-      <media type="image" src="figures/launcher.png" mime="image/png" style="right"/>
-    </figure>
-  </section>
-
-  <section id="theming">
-    <title>Style Properties</title>
-
-  </section>
-
-</page>
diff --git a/docs/manual/license.page b/docs/manual/license.page
deleted file mode 100644
index 8f3f849..0000000
--- a/docs/manual/license.page
+++ /dev/null
@@ -1,59 +0,0 @@
-<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
deleted file mode 100644
index 8b0078b..0000000
--- a/docs/manual/pager.page
+++ /dev/null
@@ -1,36 +0,0 @@
-<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>
-
-    <figure>
-      <title>Pager's properties dialog</title>
-      <media type="image" src="figures/pager.png" mime="image/png" style="right"/>
-    </figure>
-  </section>
-
-  <section id="theming">
-    <title>Style Properties</title>
-
-  </section>
-
-</page>
diff --git a/docs/manual/po/Makefile.am b/docs/manual/po/Makefile.am
deleted file mode 100644
index d7b4884..0000000
--- a/docs/manual/po/Makefile.am
+++ /dev/null
@@ -1,5 +0,0 @@
-
-PO_FILES=$(shell cd $(srcdir) && echo `/bin/ls *.po`)
-EXTRA_DIST = \
-	$(PO_FILES) \
-	$(GETTEXT_PACKAGE).pot
diff --git a/docs/manual/po/bn.po b/docs/manual/po/bn.po
deleted file mode 100644
index 74d6d04..0000000
--- a/docs/manual/po/bn.po
+++ /dev/null
@@ -1,237 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-# Israt Jahan <israt at ankur.org.bd>, 2010.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: bn\n"
-"POT-Creation-Date: 2010-02-22 17:45+0100\n"
-"PO-Revision-Date: 2010-04-01 17:20+0600\n"
-"Last-Translator: Israt Jahan <israt at ankur.org.bd>\n"
-"Language-Team: Bengali <ankur-bd-l10n at googlegroups.com>\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 "Nick Schermer"
-
-#: 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 "nick at xfce.org"
-
-#: 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 "Creative Commons Share Alike 3.0"
-
-#: 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 "Xfce প্যানেল"
-
-#: preferences.page:8(desc)
-msgid "Configure the <placeholder-1/>"
-msgstr "কনফিগার করুন <placeholder-1/>"
-
-#: 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 ""
-"কাজটি CreativeCommons Attribution-Share Alike 3.0 আনপোর্টেড লাইসেন্সের অধীণে "
-"বিতরণকৃত।"
-
-#: 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 "CreativeCommons ওয়েবসাইট"
-
-#: 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 ""
-"লাইসেন্সের সম্পূর্ন টেক্সট দেখতে, <placeholder-1/> এ যান, অথরা "
-"<placeholder-2/> পুরোটা পড়ুন।"
-
-#: 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 "<placeholder-1/> এ ভূমিকা"
-
-#: 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 "<placeholder-1/> এ নতুন প্লাগইন যোগ করুন"
-
-#: 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 ""
-"অঙ্কুর প্রকল্পের পক্ষে, ইসরাত জাহান (Israt Jahan) <israt at ankur.org.bd>, ২০১০"
diff --git a/docs/manual/po/ca.po b/docs/manual/po/ca.po
deleted file mode 100644
index caa943e..0000000
--- a/docs/manual/po/ca.po
+++ /dev/null
@@ -1,279 +0,0 @@
-# Catalan translations for xfce4-panel package.
-# xfce4-panel for XFce desktop environment.
-# Copyright (C) 2002-2006 The Xfce development team.
-# This file is distributed under the same license as the xfce4-panel package.
-# Carles Muñoz Gorriz <carlesmu at internuatas.org>, 2003-2004, 2008-2010.
-# Ivà Burgos <debian.public at gmail.com>, 2007.
-# Pau Rul.lan Ferragut <paurullan at bulma.net> 2005-2007.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: \n"
-"POT-Creation-Date: 2010-02-22 17:45+0100\n"
-"PO-Revision-Date: 2010-05-04 21:06+0100\n"
-"Last-Translator: Carles Muñoz Gorriz <carlesmu at internautas.org>\n"
-"Language-Team: catalan <xfce-i18n at xfce.org>\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: Catalan\n"
-"X-Poedit-Country: Spain\n"
-"X-Poedit-SourceCharset: utf-8\n"
-
-#: windowmenu.page:8(desc)
-msgid "Switch between open windows using a menu"
-msgstr "Canvia entre les finestres obertes emprant un menú"
-
-#: 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 "Nick Schermer"
-
-#: 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 "nick at xfce.org"
-
-#: 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 "Creative Commons compartir igual (share alike) 3.0"
-
-#: windowmenu.page:18(title)
-msgid "Window Menu"
-msgstr "Menús de finestra"
-
-#: 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 "Propietats"
-
-#: 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 "Propietats d'estil"
-
-#: windowbuttons.page:8(desc)
-msgid "Switch between open windows using buttons"
-msgstr "Canvia entre finestres obertes emprant botons"
-
-#: windowbuttons.page:18(title)
-msgid "Window Buttons"
-msgstr "Botons de finestra"
-
-#: systray.page:8(desc)
-msgid "Area where notification icons appear"
-msgstr "Espai on apareix la icona de notificació"
-
-#: systray.page:18(title)
-msgid "Notification Area"
-msgstr "Àrea de notificació"
-
-#: showdesktop.page:8(desc)
-msgid "Hide all windows and show the desktop"
-msgstr "Amaga totes les finestres i mostra l'escriptori"
-
-#: showdesktop.page:18(title)
-msgid "Show Desktop"
-msgstr "Mostra l'escriptori"
-
-#: separator.page:8(desc)
-msgid "Adds a separator or space between panel plugins"
-msgstr "Afegeix un separador o espai entre els connectors del quadre"
-
-#: separator.page:18(title)
-msgid "Separator"
-msgstr "Separador"
-
-#: 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 "Quadre Xfce"
-
-#: preferences.page:8(desc)
-msgid "Configure the <placeholder-1/>"
-msgstr "Configura el <placeholder-1/>"
-
-#: preferences.page:18(title)
-msgid "Preferences"
-msgstr "Preferències"
-
-#: pager.page:8(desc)
-msgid "Switch between virtual desktops"
-msgstr "Canvia entre escriptoris virtuals"
-
-#: pager.page:18(title)
-msgid "Workspace Switcher"
-msgstr "Canviador d'espais de treball"
-
-#: license.page:8(desc)
-msgid "Legal information."
-msgstr "Informació legal."
-
-#: license.page:11(title)
-msgid "License"
-msgstr "Llicència"
-
-#: license.page:12(p)
-msgid ""
-"This work is distributed under a CreativeCommons Attribution-Share Alike 3.0 "
-"Unported license."
-msgstr ""
-"Aquesta obra es distribueix sota una llicència Reconeixement-Compartir Igual "
-"3.0 No Adaptada."
-
-#: license.page:20(p)
-msgid "You are free:"
-msgstr "Teniu llibertat per:"
-
-#: license.page:25(em)
-msgid "To share"
-msgstr "Compartir"
-
-#: license.page:26(p)
-msgid "To copy, distribute and transmit the work."
-msgstr "Copiar, distribuir i transmetre l'obra."
-
-#: license.page:29(em)
-msgid "To remix"
-msgstr "Modificar"
-
-#: license.page:30(p)
-msgid "To adapt the work."
-msgstr "Adaptar l'obra."
-
-#: license.page:33(p)
-msgid "Under the following conditions:"
-msgstr "Sota les següents condicions:"
-
-#: license.page:38(em)
-msgid "Attribution"
-msgstr "Reconeixement"
-
-#: 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 ""
-"Heu de reconèixer els crèdits de l'obra de la manera especificada per "
-"l'autor o titular dels drets (però no d'una manera que suggereixi que us "
-"dóna suport o rebeu suport per l'ús que en feu)."
-
-#: license.page:46(em)
-msgid "Share Alike"
-msgstr "Compartir igual"
-
-#: 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 ""
-"Si altereu, transformeu o munteu aquesta obra per generar-ne una obra "
-"derivada, només podreu distribuir l'obra resultant amb la mateixa llicència, "
-"una de similar o una de compatible."
-
-#: license.page:56(link)
-msgid "CreativeCommons website"
-msgstr "Lloc web de CreativeCommons"
-
-#: license.page:57(link)
-msgid "Commons Deed"
-msgstr "Carta de Commons"
-
-#: license.page:53(p)
-msgid ""
-"For the full text of the license, see the <placeholder-1/>, or read the full "
-"<placeholder-2/>."
-msgstr ""
-"Pel text sencer de la llicència, veieu el <placeholder-1/>, o llegiu el "
-"<placeholder-2/> sencer."
-
-#: launcher.page:8(desc)
-msgid "Program launcher with optional menu"
-msgstr "Programa llançador amb menú opcional"
-
-#: launcher.page:18(title)
-msgid "Launcher"
-msgstr "Llançador"
-
-#: introduction.page:8(desc)
-msgid "Introduction to <placeholder-1/>"
-msgstr "Introducció a <placeholder-1/>"
-
-#: introduction.page:18(title)
-msgid "Introduction"
-msgstr "Introducció"
-
-#: index.page:21(title)
-msgid "Panel"
-msgstr "Quadre"
-
-#: index.page:25(title)
-msgid "Plugins"
-msgstr "Connectors"
-
-#: directorymenu.page:8(desc)
-msgid "Show a directory tree in a menu"
-msgstr "Mostra un arbre de directoris al menú"
-
-#: directorymenu.page:18(title)
-msgid "Directory Menu"
-msgstr "Menú de directoris"
-
-#: clock.page:8(desc)
-msgid "What time is it?"
-msgstr "Quina hora és?"
-
-#: clock.page:18(title)
-msgid "Clock"
-msgstr "Rellotge"
-
-#: applicationsmenu.page:8(desc)
-msgid "Show a menu containing categories of installed applications"
-msgstr "Mostra un menú amb les categories de les aplicacions instaŀlades"
-
-#: applicationsmenu.page:18(title)
-msgid "Applications Menu"
-msgstr "Menú d'aplicacions"
-
-#: add-new-items.page:9(desc)
-msgid "Add new plugins to the <placeholder-1/>"
-msgstr "Afegeix un nou connector al <placeholder-1/>"
-
-#: add-new-items.page:19(title)
-msgid "Add New Plugins"
-msgstr "Afegeix un nou connector"
-
-#: actions.page:8(desc)
-msgid "Log out, lock or other system actions"
-msgstr "Surt, bloca o altres accions del sistema"
-
-#: actions.page:18(title)
-msgid "Action Buttons"
-msgstr "Botons d'accions"
-
-#. Put one translator per line, in the form of NAME <EMAIL>, YEAR1, YEAR2
-#: actions.page:0(None)
-msgid "translator-credits"
-msgstr ""
-"Carles Muñoz Gorriz «carlesmu at internautas.org», 2003-2004, 2008-2010.\n"
-"Ivà Burgos «debian.public at gmail.com», 2007.\n"
-"Pau Ruŀlan Ferragut «paurullan at bulma.net», 2005-2007."
diff --git a/docs/manual/po/da.po b/docs/manual/po/da.po
deleted file mode 100644
index ceb2652..0000000
--- a/docs/manual/po/da.po
+++ /dev/null
@@ -1,299 +0,0 @@
-#Per Kongstad <p_kongstad at op.pl>, 2010.
-msgid ""
-msgstr ""
-"Project-Id-Version: Xfce4 Panel \n"
-"POT-Creation-Date: 2010-02-22 17:45+0100\n"
-"PO-Revision-Date: 2010-02-27 16:35+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"
-"X-Poedit-Language: Danish\n"
-"X-Poedit-Country: DENMARK\n"
-"X-Poedit-SourceCharset: utf-8\n"
-
-#: windowmenu.page:8(desc)
-msgid "Switch between open windows using a menu"
-msgstr "Skift mellem åbne vinduer ved brug af en 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 "Nick Schermer"
-
-#: 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 "nick at xfce.org"
-
-#: 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 "Creative Commons Share Alike 3.0"
-
-#: windowmenu.page:18(title)
-msgid "Window Menu"
-msgstr "Vinduesmenu"
-
-#: 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 "Egenskaber"
-
-#: 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 "Stilegenskaber"
-
-#: 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 beskedsikoner fremkommer"
-
-#: systray.page:18(title)
-msgid "Notification Area"
-msgstr "Beskedsområ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)
-msgid "Adds a separator or space between panel plugins"
-msgstr "Tilføjer en adskiller eller et mellemrum mellem udvidelsesmoduler til panel"
-
-#: separator.page:18(title)
-msgid "Separator"
-msgstr "Adskiller"
-
-#: 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 "Panel til Xfce"
-
-#: preferences.page:8(desc)
-msgid "Configure the <placeholder-1/>"
-msgstr "Indstil <placeholder-1/>"
-
-#: preferences.page:18(title)
-msgid "Preferences"
-msgstr "Foretrukne"
-
-#: pager.page:8(desc)
-msgid "Switch between virtual desktops"
-msgstr "Skift mellem virtuelle skriveborde"
-
-#: pager.page:18(title)
-msgid "Workspace Switcher"
-msgstr "Arbejdsområdeskifter"
-
-#: license.page:8(desc)
-msgid "Legal information."
-msgstr "Retslig information."
-
-#: license.page:11(title)
-msgid "License"
-msgstr "Licens"
-
-#: license.page:12(p)
-msgid "This work is distributed under a CreativeCommons Attribution-Share Alike 3.0 Unported license."
-msgstr "Dette arbejde er distribueret under en CreativeCommons Attribution-Share Alike 3.0 ikke portet licens."
-
-#: license.page:20(p)
-msgid "You are free:"
-msgstr "Du kan frit:"
-
-#: license.page:25(em)
-msgid "To share"
-msgstr "At dele"
-
-#: license.page:26(p)
-msgid "To copy, distribute and transmit the work."
-msgstr "At kopiere, distribuere og overføre arbejdet."
-
-#: license.page:29(em)
-msgid "To remix"
-msgstr "At mikse"
-
-#: license.page:30(p)
-msgid "To adapt the work."
-msgstr "At ændre arbejdet."
-
-#: license.page:33(p)
-msgid "Under the following conditions:"
-msgstr "Under  disse betingelser:"
-
-#: license.page:38(em)
-msgid "Attribution"
-msgstr "Medvirken"
-
-#: 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 "Du skal medvirke til arbejdet på en måde angivet af forfatteren eller licensholderen (men ikke på en måde at de skal godkende dig eller din brug af arbejdet)."
-
-#: license.page:46(em)
-msgid "Share Alike"
-msgstr "Share Alike"
-
-#: 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 "Hvis du ændrer, omformer eller bygger videre på dette arbejde skal du distribuerer det resulterende arbejde kun under denne, en lignende eller en kompatibel licens."
-
-#: license.page:56(link)
-msgid "CreativeCommons website"
-msgstr "CreativeCommons netsted"
-
-#: license.page:57(link)
-msgid "Commons Deed"
-msgstr "Fælles deklaration"
-
-#: license.page:53(p)
-msgid "For the full text of the license, see the <placeholder-1/>, or read the full <placeholder-2/>."
-msgstr "For den fulde tekst af licensen, læs <placeholder-1/>, eller læs den fulde <placeholder-2/>."
-
-#: launcher.page:8(desc)
-msgid "Program launcher with optional menu"
-msgstr "Programstarter med mulig tilvalt menu"
-
-#: launcher.page:18(title)
-msgid "Launcher"
-msgstr "Opstarter"
-
-#: introduction.page:8(desc)
-msgid "Introduction to <placeholder-1/>"
-msgstr "Introduktion til <placeholder-1/>"
-
-#: introduction.page:18(title)
-msgid "Introduction"
-msgstr "Introduktion"
-
-#: index.page:21(title)
-msgid "Panel"
-msgstr "Panel"
-
-#: index.page:25(title)
-msgid "Plugins"
-msgstr "Udvidelsesmoduler"
-
-#: directorymenu.page:8(desc)
-msgid "Show a directory tree in a menu"
-msgstr "Vis et katalogtræ in en menu"
-
-#: directorymenu.page:18(title)
-msgid "Directory Menu"
-msgstr "Katalogmenu"
-
-#: 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 katagorier af installerede programmer"
-
-#: applicationsmenu.page:18(title)
-msgid "Applications Menu"
-msgstr "Menu til progermmer"
-
-#: add-new-items.page:9(desc)
-msgid "Add new plugins to the <placeholder-1/>"
-msgstr "Føj nye udvidelsmoduler til <placeholder-1/>"
-
-#: add-new-items.page:19(title)
-msgid "Add New Plugins"
-msgstr "Tilføj nye programmer"
-
-#: actions.page:8(desc)
-msgid "Log out, lock or other system actions"
-msgstr "Logud, lås eller andre systemhandlinger"
-
-#: actions.page:18(title)
-msgid "Action Buttons"
-msgstr "Handlingsknapper"
-
-#. 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"
-
diff --git a/docs/manual/po/es.po b/docs/manual/po/es.po
deleted file mode 100644
index fbf6329..0000000
--- a/docs/manual/po/es.po
+++ /dev/null
@@ -1,246 +0,0 @@
-# 
-msgid ""
-msgstr ""
-"Project-Id-Version: xfce4-panel master-docs\n"
-"POT-Creation-Date: 2010-02-22 17:45+0100\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: Abel Martín <abel.martin.ruiz at gmail.com>\n"
-"Language-Team: https://translations.xfce.org/projects/p/xfce/team/es/\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: windowmenu.page8(desc)
-msgid "Switch between open windows using a menu"
-msgstr ""
-
-#: windowmenu.page10(name) windowbuttons.page10(name) systray.page10(name)
-#: showdesktop.page10(name) separator.page10(name) preferences.page10(name)
-#: pager.page10(name) launcher.page10(name) introduction.page10(name)
-#: index.page10(name) directorymenu.page10(name) clock.page10(name)
-#: applicationsmenu.page10(name) add-new-items.page11(name)
-#: actions.page10(name)
-msgid "Nick Schermer"
-msgstr "Nick Schermer"
-
-#: windowmenu.page11(email) windowbuttons.page11(email) systray.page11(email)
-#: showdesktop.page11(email) separator.page11(email) preferences.page11(email)
-#: pager.page11(email) launcher.page11(email) introduction.page11(email)
-#: index.page11(email) directorymenu.page11(email) clock.page11(email)
-#: applicationsmenu.page11(email) add-new-items.page12(email)
-#: actions.page11(email)
-msgid "nick at xfce.org"
-msgstr "nick at xfce.org"
-
-#: windowmenu.page14(p) windowbuttons.page14(p) systray.page14(p)
-#: showdesktop.page14(p) separator.page14(p) preferences.page14(p)
-#: pager.page14(p) launcher.page14(p) introduction.page14(p) index.page14(p)
-#: directorymenu.page14(p) clock.page14(p) applicationsmenu.page14(p)
-#: add-new-items.page15(p) actions.page14(p)
-#, fuzzy
-msgid "Creative Commons Share Alike 3.0"
-msgstr "Creative Commons Share Alike 3.0"
-
-#: windowmenu.page18(title)
-msgid "Window Menu"
-msgstr "Menú de ventanas"
-
-#: windowmenu.page23(title) windowbuttons.page23(title) systray.page23(title)
-#: showdesktop.page23(title) separator.page23(title) pager.page23(title)
-#: launcher.page23(title) directorymenu.page23(title) clock.page23(title)
-#: applicationsmenu.page23(title) actions.page23(title)
-msgid "Properties"
-msgstr "Propiedades"
-
-#: windowmenu.page28(title) windowbuttons.page28(title) systray.page28(title)
-#: showdesktop.page28(title) separator.page28(title) pager.page28(title)
-#: launcher.page28(title) directorymenu.page28(title) clock.page28(title)
-#: applicationsmenu.page28(title) actions.page28(title)
-msgid "Style Properties"
-msgstr "Propiedades de estilo"
-
-#: windowbuttons.page8(desc)
-msgid "Switch between open windows using buttons"
-msgstr ""
-
-#: windowbuttons.page18(title)
-msgid "Window Buttons"
-msgstr ""
-
-#: systray.page8(desc)
-msgid "Area where notification icons appear"
-msgstr ""
-
-#: systray.page18(title)
-msgid "Notification Area"
-msgstr ""
-
-#: showdesktop.page8(desc)
-msgid "Hide all windows and show the desktop"
-msgstr ""
-
-#: showdesktop.page18(title)
-msgid "Show Desktop"
-msgstr ""
-
-#: separator.page8(desc)
-msgid "Adds a separator or space between panel plugins"
-msgstr ""
-
-#: separator.page18(title)
-msgid "Separator"
-msgstr ""
-
-#: preferences.page8(app) introduction.page8(app) index.page7(title)
-#: index.page8(title) index.page18(title) add-new-items.page9(app)
-msgid "Xfce Panel"
-msgstr ""
-
-#: preferences.page8(desc)
-msgid "Configure the <placeholder-1/>"
-msgstr ""
-
-#: preferences.page18(title)
-msgid "Preferences"
-msgstr ""
-
-#: pager.page8(desc)
-msgid "Switch between virtual desktops"
-msgstr ""
-
-#: pager.page18(title)
-msgid "Workspace Switcher"
-msgstr ""
-
-#: license.page8(desc)
-msgid "Legal information."
-msgstr ""
-
-#: license.page11(title)
-msgid "License"
-msgstr ""
-
-#: license.page12(p)
-msgid "This work is distributed under a CreativeCommons Attribution-Share Alike 3.0 Unported license."
-msgstr ""
-
-#: license.page20(p)
-msgid "You are free:"
-msgstr ""
-
-#: license.page25(em)
-msgid "To share"
-msgstr ""
-
-#: license.page26(p)
-msgid "To copy, distribute and transmit the work."
-msgstr ""
-
-#: license.page29(em)
-msgid "To remix"
-msgstr ""
-
-#: license.page30(p)
-msgid "To adapt the work."
-msgstr ""
-
-#: license.page33(p)
-msgid "Under the following conditions:"
-msgstr ""
-
-#: license.page38(em)
-msgid "Attribution"
-msgstr ""
-
-#: license.page39(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.page46(em)
-msgid "Share Alike"
-msgstr ""
-
-#: license.page47(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.page56(link)
-msgid "CreativeCommons website"
-msgstr ""
-
-#: license.page57(link)
-msgid "Commons Deed"
-msgstr ""
-
-#: license.page53(p)
-msgid "For the full text of the license, see the <placeholder-1/>, or read the full <placeholder-2/>."
-msgstr ""
-
-#: launcher.page8(desc)
-msgid "Program launcher with optional menu"
-msgstr ""
-
-#: launcher.page18(title)
-msgid "Launcher"
-msgstr ""
-
-#: introduction.page8(desc)
-msgid "Introduction to <placeholder-1/>"
-msgstr ""
-
-#: introduction.page18(title)
-msgid "Introduction"
-msgstr ""
-
-#: index.page21(title)
-msgid "Panel"
-msgstr ""
-
-#: index.page25(title)
-msgid "Plugins"
-msgstr ""
-
-#: directorymenu.page8(desc)
-msgid "Show a directory tree in a menu"
-msgstr ""
-
-#: directorymenu.page18(title)
-msgid "Directory Menu"
-msgstr ""
-
-#: clock.page8(desc)
-msgid "What time is it?"
-msgstr ""
-
-#: clock.page18(title)
-msgid "Clock"
-msgstr ""
-
-#: applicationsmenu.page8(desc)
-msgid "Show a menu containing categories of installed applications"
-msgstr ""
-
-#: applicationsmenu.page18(title)
-msgid "Applications Menu"
-msgstr ""
-
-#: add-new-items.page9(desc)
-msgid "Add new plugins to the <placeholder-1/>"
-msgstr ""
-
-#: add-new-items.page19(title)
-msgid "Add New Plugins"
-msgstr ""
-
-#: actions.page8(desc)
-msgid "Log out, lock or other system actions"
-msgstr ""
-
-#: actions.page18(title)
-msgid "Action Buttons"
-msgstr ""
-
-#. Put one translator per line, in the form of NAME <EMAIL>, YEAR1, YEAR2
-#: actions.page0(None)
-msgid "translator-credits"
-msgstr ""
diff --git a/docs/manual/po/fr.po b/docs/manual/po/fr.po
deleted file mode 100644
index 35bc63b..0000000
--- a/docs/manual/po/fr.po
+++ /dev/null
@@ -1,303 +0,0 @@
-msgid ""
-msgstr ""
-"Project-Id-Version: xfce4-panel master-docs\n"
-"POT-Creation-Date: 2010-02-22 17:45+0100\n"
-"PO-Revision-Date: 2010-07-28 10:01+0100\n"
-"Last-Translator: Durand-Favreau Arnaud <biginoz at free.fr>\n"
-"Language-Team: French <xfce-i18n at xfce.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Poedit-Language: fr\n"
-"X-Poedit-Country: FRANCE\n"
-"X-Poedit-SourceCharset: utf-8\n"
-
-#: windowmenu.page:8(desc)
-#, fuzzy
-msgid "Switch between open windows using a menu"
-msgstr "Bascule entre les fenêtres ouvertes en utilisant un 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)
-#, fuzzy
-msgid "Nick Schermer"
-msgstr "Pseudonyme"
-
-#: 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 "nick at xfce.org"
-
-#: 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)
-#, fuzzy
-msgid "Window Menu"
-msgstr "Menu des opérations de fenêtre"
-
-#: 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 "Propriétés"
-
-#: 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)
-#, fuzzy
-msgid "Style Properties"
-msgstr "Propriétés du style"
-
-#: windowbuttons.page:8(desc)
-#, fuzzy
-msgid "Switch between open windows using buttons"
-msgstr "Bascule entre les fenêtres ouvertes en utilisant des boutons"
-
-#: windowbuttons.page:18(title)
-msgid "Window Buttons"
-msgstr "Boutons de fenêtre"
-
-#: systray.page:8(desc)
-msgid "Area where notification icons appear"
-msgstr "Zone où les icônes de notification apparaîtront"
-
-#: systray.page:18(title)
-msgid "Notification Area"
-msgstr "Zone de notification"
-
-#: showdesktop.page:8(desc)
-msgid "Hide all windows and show the desktop"
-msgstr "Cacher toutes les fenêtres et afficher le bureau"
-
-#: showdesktop.page:18(title)
-msgid "Show Desktop"
-msgstr "Afficher le bureau"
-
-#: separator.page:8(desc)
-msgid "Adds a separator or space between panel plugins"
-msgstr "Ajoute un espace ou une ligne entre les éléments du panneau"
-
-#: separator.page:18(title)
-msgid "Separator"
-msgstr "Séparateur"
-
-#: 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 "Tableau de bord Xfce"
-
-#: preferences.page:8(desc)
-msgid "Configure the <placeholder-1/>"
-msgstr "Configurer <placeholder-1/>"
-
-#: preferences.page:18(title)
-msgid "Preferences"
-msgstr "Préférences"
-
-#: pager.page:8(desc)
-msgid "Switch between virtual desktops"
-msgstr "Changer de bureau virtuel"
-
-#: pager.page:18(title)
-msgid "Workspace Switcher"
-msgstr "Sélecteur d'espaces de travail"
-
-#: license.page:8(desc)
-msgid "Legal information."
-msgstr "Information légale."
-
-#: license.page:11(title)
-msgid "License"
-msgstr "Licence"
-
-#: 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 "Vous êtes libre : "
-
-#: license.page:25(em)
-msgid "To share"
-msgstr "De partager"
-
-#: license.page:26(p)
-msgid "To copy, distribute and transmit the work."
-msgstr ""
-
-#: license.page:29(em)
-msgid "To remix"
-msgstr "De modifier "
-
-#: license.page:30(p)
-msgid "To adapt the work."
-msgstr "D'adapter le travail"
-
-#: license.page:33(p)
-msgid "Under the following conditions:"
-msgstr "Sous les conditions suivantes :"
-
-#: 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 "Distribuer"
-
-#: 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)
-#, fuzzy
-msgid "CreativeCommons website"
-msgstr "Adresse du site Web"
-
-#: 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 "Lanceur de programme avec menu facultatif"
-
-#: launcher.page:18(title)
-msgid "Launcher"
-msgstr "Lanceur"
-
-#: introduction.page:8(desc)
-msgid "Introduction to <placeholder-1/>"
-msgstr "Introduction à <placeholder-1/>"
-
-#: introduction.page:18(title)
-msgid "Introduction"
-msgstr "Introduction"
-
-#: index.page:21(title)
-msgid "Panel"
-msgstr "Tableau de bord"
-
-#: index.page:25(title)
-msgid "Plugins"
-msgstr "Greffons"
-
-#: directorymenu.page:8(desc)
-#, fuzzy
-msgid "Show a directory tree in a menu"
-msgstr "Afficher les icô_nes des applications dans le menu"
-
-#: directorymenu.page:18(title)
-#, fuzzy
-msgid "Directory Menu"
-msgstr "Pour les menus"
-
-#: clock.page:8(desc)
-msgid "What time is it?"
-msgstr "Quelle heure est-il ?"
-
-#: clock.page:18(title)
-msgid "Clock"
-msgstr "Horloge"
-
-#: applicationsmenu.page:8(desc)
-#, fuzzy
-msgid "Show a menu containing categories of installed applications"
-msgstr "Affiche un menu contenant les catégories d'applications installées"
-
-#: applicationsmenu.page:18(title)
-msgid "Applications Menu"
-msgstr "Menu Applications"
-
-#: add-new-items.page:9(desc)
-msgid "Add new plugins to the <placeholder-1/>"
-msgstr "Ajouter un nouveau greffon à <placeholder-1/>"
-
-#: add-new-items.page:19(title)
-msgid "Add New Plugins"
-msgstr "Ajouter un nouveau greffon"
-
-#: actions.page:8(desc)
-msgid "Log out, lock or other system actions"
-msgstr ""
-
-#: actions.page:18(title)
-msgid "Action Buttons"
-msgstr "Boutons d'actions"
-
-#. 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/po/gl.po b/docs/manual/po/gl.po
deleted file mode 100644
index 9c5cf1a..0000000
--- a/docs/manual/po/gl.po
+++ /dev/null
@@ -1,256 +0,0 @@
-# Galician translation of xfce4-panel-docs
-# Copyright (C) 2010 Leandro Regueiro
-# This file is distributed under the same license as the xfce package.
-#
-# Leandro Regueiro <leandro.regueiro at gmail.com>, 2010.
-#
-# Proxecto Trasno - Adaptación do software libre á lingua galega:  Se desexas
-# colaborar connosco, podes atopar máis información en <http://trasno.net>
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2010-02-22 17:45+0100\n"
-"PO-Revision-Date: 2010-10-19 18:28+0100\n"
-"Last-Translator: Leandro Regueiro <leandro.regueiro at gmail.com>\n"
-"Language-Team: Galego <proxecto at trasno.net>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: gl\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: windowmenu.page8(desc)
-msgid "Switch between open windows using a menu"
-msgstr "Cambiar entre xanelas abertas usando un menú"
-
-#: windowmenu.page10(name) windowbuttons.page10(name) systray.page10(name)
-#: showdesktop.page10(name) separator.page10(name) preferences.page10(name)
-#: pager.page10(name) launcher.page10(name) introduction.page10(name)
-#: index.page10(name) directorymenu.page10(name) clock.page10(name)
-#: applicationsmenu.page10(name) add-new-items.page11(name)
-#: actions.page10(name)
-msgid "Nick Schermer"
-msgstr "Nick Schermer"
-
-#: windowmenu.page11(email) windowbuttons.page11(email) systray.page11(email)
-#: showdesktop.page11(email) separator.page11(email) preferences.page11(email)
-#: pager.page11(email) launcher.page11(email) introduction.page11(email)
-#: index.page11(email) directorymenu.page11(email) clock.page11(email)
-#: applicationsmenu.page11(email) add-new-items.page12(email)
-#: actions.page11(email)
-msgid "nick at xfce.org"
-msgstr "nick at xfce.org"
-
-#: windowmenu.page14(p) windowbuttons.page14(p) systray.page14(p)
-#: showdesktop.page14(p) separator.page14(p) preferences.page14(p)
-#: pager.page14(p) launcher.page14(p) introduction.page14(p) index.page14(p)
-#: directorymenu.page14(p) clock.page14(p) applicationsmenu.page14(p)
-#: add-new-items.page15(p) actions.page14(p)
-msgid "Creative Commons Share Alike 3.0"
-msgstr "Creative Commons Compartir Igual 3.0"
-
-#: windowmenu.page18(title)
-msgid "Window Menu"
-msgstr "Menú de xanelas"
-
-#: windowmenu.page23(title) windowbuttons.page23(title) systray.page23(title)
-#: showdesktop.page23(title) separator.page23(title) pager.page23(title)
-#: launcher.page23(title) directorymenu.page23(title) clock.page23(title)
-#: applicationsmenu.page23(title) actions.page23(title)
-msgid "Properties"
-msgstr "Propiedades"
-
-#: windowmenu.page28(title) windowbuttons.page28(title) systray.page28(title)
-#: showdesktop.page28(title) separator.page28(title) pager.page28(title)
-#: launcher.page28(title) directorymenu.page28(title) clock.page28(title)
-#: applicationsmenu.page28(title) actions.page28(title)
-msgid "Style Properties"
-msgstr "Propiedades de estilo"
-
-#: windowbuttons.page8(desc)
-msgid "Switch between open windows using buttons"
-msgstr "Cambiar entre xanelas abertas usando botóns"
-
-#: windowbuttons.page18(title)
-msgid "Window Buttons"
-msgstr "Botóns de xanela"
-
-#: systray.page8(desc)
-msgid "Area where notification icons appear"
-msgstr "Zona onde aparecen as iconas de notificación"
-
-#: systray.page18(title)
-msgid "Notification Area"
-msgstr "Zona de notificación"
-
-#: showdesktop.page8(desc)
-msgid "Hide all windows and show the desktop"
-msgstr "Oculta todas as xanelas e mostra o escritorio"
-
-#: showdesktop.page18(title)
-msgid "Show Desktop"
-msgstr "Mostrar o escritorio"
-
-#: separator.page8(desc)
-msgid "Adds a separator or space between panel plugins"
-msgstr "Engade un separador ou espazo entre os engadidos do panel"
-
-#: separator.page18(title)
-msgid "Separator"
-msgstr "Separador"
-
-#: preferences.page8(app) introduction.page8(app) index.page7(title)
-#: index.page8(title) index.page18(title) add-new-items.page9(app)
-msgid "Xfce Panel"
-msgstr "Panel de Xfce"
-
-#: preferences.page8(desc)
-msgid "Configure the <placeholder-1/>"
-msgstr "Configurar o <placeholder-1/>"
-
-#: preferences.page18(title)
-msgid "Preferences"
-msgstr "Preferencias"
-
-#: pager.page8(desc)
-msgid "Switch between virtual desktops"
-msgstr "Cambiar de escritorio virtual"
-
-#: pager.page18(title)
-msgid "Workspace Switcher"
-msgstr "Selector de espazos de traballo"
-
-#: license.page8(desc)
-msgid "Legal information."
-msgstr "Información legal."
-
-#: license.page11(title)
-msgid "License"
-msgstr "Licenza"
-
-#: license.page12(p)
-msgid "This work is distributed under a CreativeCommons Attribution-Share Alike 3.0 Unported license."
-msgstr ""
-
-#: license.page20(p)
-msgid "You are free:"
-msgstr "É libre para:"
-
-#: license.page25(em)
-msgid "To share"
-msgstr "Para compartir"
-
-#: license.page26(p)
-msgid "To copy, distribute and transmit the work."
-msgstr "Para copiar, distribuír e transmitir o traballo."
-
-#: license.page29(em)
-msgid "To remix"
-msgstr ""
-
-#: license.page30(p)
-msgid "To adapt the work."
-msgstr "Para adaptar o traballo."
-
-#: license.page33(p)
-msgid "Under the following conditions:"
-msgstr "Baixo as seguintes condicións:"
-
-#: license.page38(em)
-msgid "Attribution"
-msgstr "Atribución"
-
-#: license.page39(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.page46(em)
-msgid "Share Alike"
-msgstr "Compartir Igual"
-
-#: license.page47(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 "Se altera, transforma, ou constrúe a partir deste traballo, terá que distribuír o traballo resultante baixo a mesma licenza, baixo unha licenza similar ou baixo unha licenza compatible."
-
-#: license.page56(link)
-msgid "CreativeCommons website"
-msgstr "Sitio web de CreativeCommons"
-
-#: license.page57(link)
-msgid "Commons Deed"
-msgstr ""
-
-#: license.page53(p)
-msgid "For the full text of the license, see the <placeholder-1/>, or read the full <placeholder-2/>."
-msgstr "Para ver o texto completo da licenza, consulte <placeholder-1/>, ou lea toda a <placeholder-2/>."
-
-#: launcher.page8(desc)
-msgid "Program launcher with optional menu"
-msgstr "Iniciador de programas con menú opcional"
-
-#: launcher.page18(title)
-msgid "Launcher"
-msgstr "Iniciador"
-
-#: introduction.page8(desc)
-msgid "Introduction to <placeholder-1/>"
-msgstr "Introdución a <placeholder-1/>"
-
-#: introduction.page18(title)
-msgid "Introduction"
-msgstr "Introdución"
-
-#: index.page21(title)
-msgid "Panel"
-msgstr "Panel"
-
-#: index.page25(title)
-msgid "Plugins"
-msgstr "Engadidos"
-
-#: directorymenu.page8(desc)
-msgid "Show a directory tree in a menu"
-msgstr "Mostra unha árbore de directorio nun menú"
-
-#: directorymenu.page18(title)
-msgid "Directory Menu"
-msgstr "Menú de directorio"
-
-#: clock.page8(desc)
-msgid "What time is it?"
-msgstr "Que hora é?"
-
-#: clock.page18(title)
-msgid "Clock"
-msgstr "Reloxo"
-
-#: applicationsmenu.page8(desc)
-msgid "Show a menu containing categories of installed applications"
-msgstr "Mostra un menú que contén as categorías dos aplicativos instalados"
-
-#: applicationsmenu.page18(title)
-msgid "Applications Menu"
-msgstr "Menú de aplicativos"
-
-#: add-new-items.page9(desc)
-msgid "Add new plugins to the <placeholder-1/>"
-msgstr "Engadir novos engadidos ao <placeholder-1/>"
-
-#: add-new-items.page19(title)
-msgid "Add New Plugins"
-msgstr "Engadir novos engadidos"
-
-#: actions.page8(desc)
-msgid "Log out, lock or other system actions"
-msgstr "Saír da sesión, bloquear a pantalla ou outras accións do sistema"
-
-#: actions.page18(title)
-msgid "Action Buttons"
-msgstr "Botóns de acción"
-
-#. Put one translator per line, in the form of NAME <EMAIL>, YEAR1, YEAR2
-#: actions.page0(None)
-msgid "translator-credits"
-msgstr "Leandro Regueiro <leandro.regueiro at gmail.com>, 2010."
-
diff --git a/docs/manual/po/id.po b/docs/manual/po/id.po
deleted file mode 100644
index f035376..0000000
--- a/docs/manual/po/id.po
+++ /dev/null
@@ -1,265 +0,0 @@
-msgid ""
-msgstr ""
-"Project-Id-Version: xfce4-panel doc\n"
-"POT-Creation-Date: 2010-02-22 17:45+0100\n"
-"PO-Revision-Date: 2010-07-02 22:30+0700\n"
-"Last-Translator: Andhika Padmawan <andhika.padmawan at gmail.com>\n"
-"Language-Team: Indonesian <translation-team-id at lists.sourceforge.net>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: id\n"
-
-#: windowmenu.page:8(desc)
-msgid "Switch between open windows using a menu"
-msgstr "Berpindah di antara jendela yang terbuka menggunakan sebuah 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 "Nick Schermer"
-
-#: 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 "nick at xfce.org"
-
-#: 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 "Creative Commons Share Alike 3.0"
-
-#: windowmenu.page:18(title)
-msgid "Window Menu"
-msgstr "Menu Jendela"
-
-#: 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 "Properti"
-
-#: 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 "Properti Gaya"
-
-#: windowbuttons.page:8(desc)
-msgid "Switch between open windows using buttons"
-msgstr "Berpindah di antara jendela yang terbuka menggunakan tombol"
-
-#: windowbuttons.page:18(title)
-msgid "Window Buttons"
-msgstr "Tombol Jendela"
-
-#: systray.page:8(desc)
-msgid "Area where notification icons appear"
-msgstr "Area tempat ikon notifikasi tampak"
-
-#: systray.page:18(title)
-msgid "Notification Area"
-msgstr "Area Notifikasi"
-
-#: showdesktop.page:8(desc)
-msgid "Hide all windows and show the desktop"
-msgstr "Sembunyikan semua jendela dan tampilkan desktop"
-
-#: showdesktop.page:18(title)
-msgid "Show Desktop"
-msgstr "Tampilkan Desktop"
-
-#: separator.page:8(desc)
-msgid "Adds a separator or space between panel plugins"
-msgstr "Tambah pemisah atau spasi di antara plugin panel"
-
-#: separator.page:18(title)
-msgid "Separator"
-msgstr "Separator"
-
-#: 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 "Panel Xfce"
-
-#: preferences.page:8(desc)
-msgid "Configure the <placeholder-1/>"
-msgstr "Atur <placeholder-1/>"
-
-#: preferences.page:18(title)
-msgid "Preferences"
-msgstr "Pengaturan"
-
-#: pager.page:8(desc)
-msgid "Switch between virtual desktops"
-msgstr "Berpindah di antara desktop virtual"
-
-#: pager.page:18(title)
-msgid "Workspace Switcher"
-msgstr "Pengganti Ruang Kerja"
-
-#: license.page:8(desc)
-msgid "Legal information."
-msgstr "Informasi legal."
-
-#: license.page:11(title)
-msgid "License"
-msgstr "Lisensi"
-
-#: license.page:12(p)
-msgid ""
-"This work is distributed under a CreativeCommons Attribution-Share Alike 3.0 "
-"Unported license."
-msgstr ""
-"Karya ini didistribusikan di bawah lisensi CreativeCommons Attribution-Share "
-"Alike 3.0 Unported."
-
-#: license.page:20(p)
-msgid "You are free:"
-msgstr "Anda bebas:"
-
-#: license.page:25(em)
-msgid "To share"
-msgstr "Untuk berbagi"
-
-#: license.page:26(p)
-msgid "To copy, distribute and transmit the work."
-msgstr "Untuk menyalin, mendistribusikan dan meneruskan karya ini."
-
-#: license.page:29(em)
-msgid "To remix"
-msgstr "Untuk memperbaiki"
-
-#: license.page:30(p)
-msgid "To adapt the work."
-msgstr "Untuk mengadaptasi karya ini."
-
-#: license.page:33(p)
-msgid "Under the following conditions:"
-msgstr "Dengan kondisi berikut:"
-
-#: license.page:38(em)
-msgid "Attribution"
-msgstr "Attribution"
-
-#: 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 ""
-"Anda harus mengatribusikan karya ini dengan cara yang ditentukan oleh "
-"penulis atau pelisensi (tapi tidak dengan cara dimana mereka menyuruh anda "
-"atau meminta anda menggunakan karya ini)."
-
-#: license.page:46(em)
-msgid "Share Alike"
-msgstr "Share Alike"
-
-#: 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 ""
-"Jika anda mengganti, mengubah, atau membuat karya lain di atas karya ini, "
-"anda hanya diizinkan untuk mendistribusikan hasil karya yang dihasilkan di "
-"bawah lisensi yang sama, mirip, atau sesuai."
-
-#: license.page:56(link)
-msgid "CreativeCommons website"
-msgstr "Situs web CreativeCommons"
-
-#: license.page:57(link)
-msgid "Commons Deed"
-msgstr "Keinginan Umum"
-
-#: license.page:53(p)
-msgid ""
-"For the full text of the license, see the <placeholder-1/>, or read the full "
-"<placeholder-2/>."
-msgstr ""
-"Untuk teks lengkap lisensi, lihat <placeholder-1/>, atau baca lengkap "
-"<placeholder-2/>."
-
-#: launcher.page:8(desc)
-msgid "Program launcher with optional menu"
-msgstr "Peluncur program dengan menu tambahan"
-
-#: launcher.page:18(title)
-msgid "Launcher"
-msgstr "Peluncur"
-
-#: introduction.page:8(desc)
-msgid "Introduction to <placeholder-1/>"
-msgstr "Pengantar untuk <placeholder-1/>"
-
-#: introduction.page:18(title)
-msgid "Introduction"
-msgstr "Pengantar"
-
-#: index.page:21(title)
-msgid "Panel"
-msgstr "Panel"
-
-#: index.page:25(title)
-msgid "Plugins"
-msgstr "Plugin"
-
-#: directorymenu.page:8(desc)
-msgid "Show a directory tree in a menu"
-msgstr "Tampilkan pohon direktori dalam menu"
-
-#: directorymenu.page:18(title)
-msgid "Directory Menu"
-msgstr "Menu Direktori"
-
-#: clock.page:8(desc)
-msgid "What time is it?"
-msgstr "Jam berapa sekarang?"
-
-#: clock.page:18(title)
-msgid "Clock"
-msgstr "Jam"
-
-#: applicationsmenu.page:8(desc)
-msgid "Show a menu containing categories of installed applications"
-msgstr "Menampilkan menu berisi kategori aplikasi yang terinstal"
-
-#: applicationsmenu.page:18(title)
-msgid "Applications Menu"
-msgstr "Menu Aplikasi"
-
-#: add-new-items.page:9(desc)
-msgid "Add new plugins to the <placeholder-1/>"
-msgstr "Tambah plugin baru ke <placeholder-1/>"
-
-#: add-new-items.page:19(title)
-msgid "Add New Plugins"
-msgstr "Tambah Plugin Baru"
-
-#: actions.page:8(desc)
-msgid "Log out, lock or other system actions"
-msgstr "Keluar, kunci atau aksi sistem lainnya"
-
-#: actions.page:18(title)
-msgid "Action Buttons"
-msgstr "Tombol Aksi"
-
-#. Put one translator per line, in the form of NAME <EMAIL>, YEAR1, YEAR2
-#: actions.page:0(None)
-msgid "translator-credits"
-msgstr "Andhika Padmawan <andhika.padmawan at gmail.com>, 2010."
diff --git a/docs/manual/po/it.po b/docs/manual/po/it.po
deleted file mode 100644
index a5ae7f7..0000000
--- a/docs/manual/po/it.po
+++ /dev/null
@@ -1,295 +0,0 @@
-# Italian translations of xfce4-panel-docs.
-# Copyright (C) 2007 Benedikt Meurer.
-# This file is distributed under the same license as the xfce4-panel-docs.
-# Cristian Marchi <cri.penta at gmail.com>, 2010.
-msgid ""
-msgstr ""
-"Project-Id-Version: xfce4-panel-docs\n"
-"POT-Creation-Date: 2010-02-22 17:45+0100\n"
-"PO-Revision-Date: 2010-03-19 17:39+0100\n"
-"Last-Translator: Cristian Marchi <cri.penta at gmail.com>\n"
-"Language-Team: Italian Translation Team <xfce-it-translators at googlegroups.com>\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 "Scorre tra le finestre aperte utilizzando un 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 "Nick Schermer"
-
-#: 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 "nick at xfce.org"
-
-#: 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 "Creative Commons Share Alike 3.0"
-
-#: windowmenu.page:18(title)
-msgid "Window Menu"
-msgstr "Menu delle finestre"
-
-#: 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 "Proprietà"
-
-#: 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 "Proprietà dello stile"
-
-#: windowbuttons.page:8(desc)
-msgid "Switch between open windows using buttons"
-msgstr "Scorre tra le finestre aperte utilizzando i pulsanti"
-
-#: windowbuttons.page:18(title)
-msgid "Window Buttons"
-msgstr "Pulsanti delle finestre"
-
-#: systray.page:8(desc)
-msgid "Area where notification icons appear"
-msgstr "Area in cui compaiono le icone di notifica"
-
-#: systray.page:18(title)
-msgid "Notification Area"
-msgstr "Area di notifica"
-
-#: showdesktop.page:8(desc)
-msgid "Hide all windows and show the desktop"
-msgstr "Nasconde tutte le finestre e mostra la scrivania"
-
-#: showdesktop.page:18(title)
-msgid "Show Desktop"
-msgstr "Mostra scrivania"
-
-#: separator.page:8(desc)
-msgid "Adds a separator or space between panel plugins"
-msgstr "Aggiunge un separatore o uno spazio tra i plugin del pannello"
-
-#: separator.page:18(title)
-msgid "Separator"
-msgstr "Separatore"
-
-#: 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 "Pannello di Xfce"
-
-#: preferences.page:8(desc)
-msgid "Configure the <placeholder-1/>"
-msgstr "Configura il <placeholder-1/>"
-
-#: preferences.page:18(title)
-msgid "Preferences"
-msgstr "Preferenze"
-
-#: pager.page:8(desc)
-msgid "Switch between virtual desktops"
-msgstr "Scorre le scrivanie virtuali"
-
-#: pager.page:18(title)
-msgid "Workspace Switcher"
-msgstr "Selettore di spazi di lavoro"
-
-#: license.page:8(desc)
-msgid "Legal information."
-msgstr "Informazioni legali."
-
-#: license.page:11(title)
-msgid "License"
-msgstr "Licenza"
-
-#: license.page:12(p)
-msgid "This work is distributed under a CreativeCommons Attribution-Share Alike 3.0 Unported license."
-msgstr "Questo lavoro è distribuito con licenza CreativeCommons Attribution-Share Alike 3.0 Unported."
-
-#: license.page:20(p)
-msgid "You are free:"
-msgstr "Si è liberi di:"
-
-#: license.page:25(em)
-msgid "To share"
-msgstr "condividere"
-
-#: license.page:26(p)
-msgid "To copy, distribute and transmit the work."
-msgstr "copiare, ridistribuire e trasmettere il lavoro."
-
-#: license.page:29(em)
-msgid "To remix"
-msgstr "modificare"
-
-#: license.page:30(p)
-msgid "To adapt the work."
-msgstr "adattare il lavoro."
-
-#: license.page:33(p)
-msgid "Under the following conditions:"
-msgstr "Alle seguenti condizioni:"
-
-#: license.page:38(em)
-msgid "Attribution"
-msgstr "Attribuzione"
-
-#: 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 "Il lavoro deve essere attribuito nel modo specificato dall'autore o dal licenziatario (ma non si deve in alcun modo far intendere che si sia stati incaricati)."
-
-#: license.page:46(em)
-msgid "Share Alike"
-msgstr "Share Alike"
-
-#: 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 "Se si altera, si trasforma o si espande questo lavoro, il risultato deve essere distribuito con una licenza uguale, simile o campatibile."
-
-#: license.page:56(link)
-msgid "CreativeCommons website"
-msgstr "Sito web di CreativeCommons"
-
-#: license.page:57(link)
-msgid "Commons Deed"
-msgstr "Commons Deed"
-
-#: license.page:53(p)
-msgid "For the full text of the license, see the <placeholder-1/>, or read the full <placeholder-2/>."
-msgstr "Per il testo completo della licenza, consultare il <placeholder-1/>, o leggere il <placeholder-2/> completo."
-
-#: launcher.page:8(desc)
-msgid "Program launcher with optional menu"
-msgstr "Avviatore di programmi con menu opzionale"
-
-#: launcher.page:18(title)
-msgid "Launcher"
-msgstr "Avviatore"
-
-#: introduction.page:8(desc)
-msgid "Introduction to <placeholder-1/>"
-msgstr "Introduzione al <placeholder-1/>"
-
-#: introduction.page:18(title)
-msgid "Introduction"
-msgstr "Introduzione"
-
-#: index.page:21(title)
-msgid "Panel"
-msgstr "Pannello"
-
-#: index.page:25(title)
-msgid "Plugins"
-msgstr "Plugin"
-
-#: directorymenu.page:8(desc)
-msgid "Show a directory tree in a menu"
-msgstr "Mostra l'albero delle cartelle in un menu"
-
-#: directorymenu.page:18(title)
-msgid "Directory Menu"
-msgstr "Menu delle cartelle"
-
-#: clock.page:8(desc)
-msgid "What time is it?"
-msgstr "Che ora è?"
-
-#: clock.page:18(title)
-msgid "Clock"
-msgstr "Orologio"
-
-#: applicationsmenu.page:8(desc)
-msgid "Show a menu containing categories of installed applications"
-msgstr "Mostra un menu contenente le categorie delle applicazioni installate"
-
-#: applicationsmenu.page:18(title)
-msgid "Applications Menu"
-msgstr "Menu delle applicazioni"
-
-#: add-new-items.page:9(desc)
-msgid "Add new plugins to the <placeholder-1/>"
-msgstr "Aggiunge nuovi plugin al <placeholder-1/>"
-
-#: add-new-items.page:19(title)
-msgid "Add New Plugins"
-msgstr "Aggiunge nuovi plugin"
-
-#: actions.page:8(desc)
-msgid "Log out, lock or other system actions"
-msgstr "Disconnette l'utente, blocca lo schermo o esegue altre azioni di sistema"
-
-#: actions.page:18(title)
-msgid "Action Buttons"
-msgstr "Pulsante delle azioni"
-
-#. Put one translator per line, in the form of NAME <EMAIL>, YEAR1, YEAR2
-#: actions.page:0(None)
-msgid "translator-credits"
-msgstr "Cristian Marchi <cri.penta at gmail.com>,  2010."
-
diff --git a/docs/manual/po/ru.po b/docs/manual/po/ru.po
deleted file mode 100644
index 4ca30b0..0000000
--- a/docs/manual/po/ru.po
+++ /dev/null
@@ -1,247 +0,0 @@
-# 
-msgid ""
-msgstr ""
-"Project-Id-Version: xfce4-panel.master-docs\n"
-"POT-Creation-Date: 2010-02-22 17:45+0100\n"
-"PO-Revision-Date: 2010-04-29 22:04+0300\n"
-"Last-Translator: Andriy Kovtun <kovtunos at yandex.ru>\n"
-"Language-Team: Russian <xfce4-dev at xfce.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Poedit-Language: Russian\n"
-"X-Poedit-Country: Russian Federation\n"
-
-#: windowmenu.page8(desc)
-msgid "Switch between open windows using a menu"
-msgstr "Переключаться между открытыми окнами используя меню"
-
-#: windowmenu.page10(name) windowbuttons.page10(name) systray.page10(name)
-#: showdesktop.page10(name) separator.page10(name) preferences.page10(name)
-#: pager.page10(name) launcher.page10(name) introduction.page10(name)
-#: index.page10(name) directorymenu.page10(name) clock.page10(name)
-#: applicationsmenu.page10(name) add-new-items.page11(name)
-#: actions.page10(name)
-msgid "Nick Schermer"
-msgstr "Nick Schermer"
-
-#: windowmenu.page11(email) windowbuttons.page11(email) systray.page11(email)
-#: showdesktop.page11(email) separator.page11(email) preferences.page11(email)
-#: pager.page11(email) launcher.page11(email) introduction.page11(email)
-#: index.page11(email) directorymenu.page11(email) clock.page11(email)
-#: applicationsmenu.page11(email) add-new-items.page12(email)
-#: actions.page11(email)
-msgid "nick at xfce.org"
-msgstr "nick at xfce.org"
-
-#: windowmenu.page14(p) windowbuttons.page14(p) systray.page14(p)
-#: showdesktop.page14(p) separator.page14(p) preferences.page14(p)
-#: pager.page14(p) launcher.page14(p) introduction.page14(p) index.page14(p)
-#: directorymenu.page14(p) clock.page14(p) applicationsmenu.page14(p)
-#: add-new-items.page15(p) actions.page14(p)
-msgid "Creative Commons Share Alike 3.0"
-msgstr "Creative Commons Share Alike 3.0"
-
-#: windowmenu.page18(title)
-msgid "Window Menu"
-msgstr "Меню окна"
-
-#: windowmenu.page23(title) windowbuttons.page23(title) systray.page23(title)
-#: showdesktop.page23(title) separator.page23(title) pager.page23(title)
-#: launcher.page23(title) directorymenu.page23(title) clock.page23(title)
-#: applicationsmenu.page23(title) actions.page23(title)
-msgid "Properties"
-msgstr "Настройки"
-
-#: windowmenu.page28(title) windowbuttons.page28(title) systray.page28(title)
-#: showdesktop.page28(title) separator.page28(title) pager.page28(title)
-#: launcher.page28(title) directorymenu.page28(title) clock.page28(title)
-#: applicationsmenu.page28(title) actions.page28(title)
-msgid "Style Properties"
-msgstr "Параметры стиля"
-
-#: windowbuttons.page8(desc)
-msgid "Switch between open windows using buttons"
-msgstr "Переключаться между открытыми окнами используя кнопки"
-
-#: windowbuttons.page18(title)
-msgid "Window Buttons"
-msgstr "Кнопки окна"
-
-#: systray.page8(desc)
-msgid "Area where notification icons appear"
-msgstr "Область где отображаются значки уведомлений"
-
-#: systray.page18(title)
-msgid "Notification Area"
-msgstr "Системный лоток"
-
-#: showdesktop.page8(desc)
-msgid "Hide all windows and show the desktop"
-msgstr "Скрыть все окна и показать рабочий стол"
-
-#: showdesktop.page18(title)
-msgid "Show Desktop"
-msgstr "Показать рабочий стол"
-
-#: separator.page8(desc)
-msgid "Adds a separator or space between panel plugins"
-msgstr "Вставка разделителя или пустого места между элементами панели"
-
-#: separator.page18(title)
-msgid "Separator"
-msgstr "Разделитель"
-
-#: preferences.page8(app) introduction.page8(app) index.page7(title)
-#: index.page8(title) index.page18(title) add-new-items.page9(app)
-msgid "Xfce Panel"
-msgstr "Панель Xfce"
-
-#: preferences.page8(desc)
-msgid "Configure the <placeholder-1/>"
-msgstr "Настроить <placeholder-1/>"
-
-#: preferences.page18(title)
-msgid "Preferences"
-msgstr "Настройки"
-
-#: pager.page8(desc)
-msgid "Switch between virtual desktops"
-msgstr "Переключение между виртуальными рабочими столами"
-
-#: pager.page18(title)
-msgid "Workspace Switcher"
-msgstr "Переключатель рабочих мест"
-
-#: license.page8(desc)
-msgid "Legal information."
-msgstr "Юридическая информация."
-
-#: license.page11(title)
-msgid "License"
-msgstr "Лицензия"
-
-#: license.page12(p)
-msgid "This work is distributed under a CreativeCommons Attribution-Share Alike 3.0 Unported license."
-msgstr "Это произведение распространяется под лицензией CreativeCommons Attribution-Share Alike 3.0 Unported."
-
-#: license.page20(p)
-msgid "You are free:"
-msgstr "Вы можете:"
-
-#: license.page25(em)
-msgid "To share"
-msgstr "Делиться"
-
-#: license.page26(p)
-msgid "To copy, distribute and transmit the work."
-msgstr "Копировать, распространять и передавать это произведение."
-
-#: license.page29(em)
-msgid "To remix"
-msgstr "Переделывать"
-
-#: license.page30(p)
-msgid "To adapt the work."
-msgstr "Исправлять произведение."
-
-#: license.page33(p)
-msgid "Under the following conditions:"
-msgstr "Под следующими условиями:"
-
-#: license.page38(em)
-msgid "Attribution"
-msgstr "Атрибуция"
-
-#: license.page39(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.page46(em)
-msgid "Share Alike"
-msgstr "Share Alike"
-
-#: license.page47(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.page56(link)
-msgid "CreativeCommons website"
-msgstr "Сайт CreativeCommons"
-
-#: license.page57(link)
-msgid "Commons Deed"
-msgstr "Commons Deed"
-
-#: license.page53(p)
-msgid "For the full text of the license, see the <placeholder-1/>, or read the full <placeholder-2/>."
-msgstr "Полный текст лицензии, см. <placeholder-1/> или читать полный текст<placeholder-2/>."
-
-#: launcher.page8(desc)
-msgid "Program launcher with optional menu"
-msgstr "Запуск приложений с дополнительным меню"
-
-#: launcher.page18(title)
-msgid "Launcher"
-msgstr "Запуск приложений"
-
-#: introduction.page8(desc)
-msgid "Introduction to <placeholder-1/>"
-msgstr "Введение в <placeholder-1/>"
-
-#: introduction.page18(title)
-msgid "Introduction"
-msgstr "Введение"
-
-#: index.page21(title)
-msgid "Panel"
-msgstr "Панель"
-
-#: index.page25(title)
-msgid "Plugins"
-msgstr "Модули"
-
-#: directorymenu.page8(desc)
-msgid "Show a directory tree in a menu"
-msgstr "Показывать дерево каталогов в меню"
-
-#: directorymenu.page18(title)
-msgid "Directory Menu"
-msgstr "Меню папки"
-
-#: clock.page8(desc)
-msgid "What time is it?"
-msgstr "Который час?"
-
-#: clock.page18(title)
-msgid "Clock"
-msgstr "Часы"
-
-#: applicationsmenu.page8(desc)
-msgid "Show a menu containing categories of installed applications"
-msgstr "Показать меню, содержащие категории установленных приложений"
-
-#: applicationsmenu.page18(title)
-msgid "Applications Menu"
-msgstr "Меню приложений"
-
-#: add-new-items.page9(desc)
-msgid "Add new plugins to the <placeholder-1/>"
-msgstr "Добавить новые модули в <placeholder-1/>"
-
-#: add-new-items.page19(title)
-msgid "Add New Plugins"
-msgstr "Добавить новые модули"
-
-#: actions.page8(desc)
-msgid "Log out, lock or other system actions"
-msgstr "Выход, блокировка или другое системное действие"
-
-#: actions.page18(title)
-msgid "Action Buttons"
-msgstr "Кнопки действий"
-
-#. Put one translator per line, in the form of NAME <EMAIL>, YEAR1, YEAR2
-#: actions.page0(None)
-msgid "translator-credits"
-msgstr "переводчики"
diff --git a/docs/manual/po/sv.po b/docs/manual/po/sv.po
deleted file mode 100644
index 9ea795f..0000000
--- a/docs/manual/po/sv.po
+++ /dev/null
@@ -1,291 +0,0 @@
-msgid ""
-msgstr ""
-"Project-Id-Version: xfce4-panel doc\n"
-"POT-Creation-Date: 2010-02-22 17:45+0100\n"
-"PO-Revision-Date: 2010-10-17 18:24+0100\n"
-"Last-Translator: Daniel Nylander <po at danielnylander.se>\n"
-"Language-Team: Swedish <tp-sv at listor.tp-sv.se>\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 "Växla mellan öppnade fönster via en meny"
-
-#: 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 "Nick Schermer"
-
-#: 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 "nick at xfce.org"
-
-#: 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 "Creative Commons Share Alike 3.0"
-
-#: windowmenu.page:18(title)
-msgid "Window Menu"
-msgstr "Fönstermeny"
-
-#: 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 "Egenskaper"
-
-#: 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 "Stilegenskaper"
-
-#: windowbuttons.page:8(desc)
-msgid "Switch between open windows using buttons"
-msgstr "Växla mellan öppnade fönster via knappar"
-
-#: windowbuttons.page:18(title)
-msgid "Window Buttons"
-msgstr "Fönsterknappar"
-
-#: systray.page:8(desc)
-msgid "Area where notification icons appear"
-msgstr "Yta där notifieringsikoner visas"
-
-#: systray.page:18(title)
-msgid "Notification Area"
-msgstr "Notifieringsyta"
-
-#: showdesktop.page:8(desc)
-msgid "Hide all windows and show the desktop"
-msgstr "Dölj alla fönster och visa skrivbordet"
-
-#: showdesktop.page:18(title)
-msgid "Show Desktop"
-msgstr "Visa skrivbordet"
-
-#: separator.page:8(desc)
-msgid "Adds a separator or space between panel plugins"
-msgstr ""
-
-#: separator.page:18(title)
-msgid "Separator"
-msgstr "Avgränsare"
-
-#: 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-panelen"
-
-#: preferences.page:8(desc)
-msgid "Configure the <placeholder-1/>"
-msgstr "Konfigurera <placeholder-1/>"
-
-#: preferences.page:18(title)
-msgid "Preferences"
-msgstr "Inställningar"
-
-#: pager.page:8(desc)
-msgid "Switch between virtual desktops"
-msgstr "Växla mellan virtuella skrivbord"
-
-#: pager.page:18(title)
-msgid "Workspace Switcher"
-msgstr "Arbetsyteväxlare"
-
-#: license.page:8(desc)
-msgid "Legal information."
-msgstr "Juridisk information."
-
-#: license.page:11(title)
-msgid "License"
-msgstr "Licens"
-
-#: 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 "Du får:"
-
-#: 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 "Programstartare"
-
-#: introduction.page:8(desc)
-msgid "Introduction to <placeholder-1/>"
-msgstr "Introduktion till <placeholder-1/>"
-
-#: introduction.page:18(title)
-msgid "Introduction"
-msgstr "Introduktion"
-
-#: index.page:21(title)
-msgid "Panel"
-msgstr "Panel"
-
-#: index.page:25(title)
-msgid "Plugins"
-msgstr "Insticksmoduler"
-
-#: directorymenu.page:8(desc)
-msgid "Show a directory tree in a menu"
-msgstr ""
-
-#: directorymenu.page:18(title)
-msgid "Directory Menu"
-msgstr "Katalogmeny"
-
-#: clock.page:8(desc)
-msgid "What time is it?"
-msgstr "Vad är klockan?"
-
-#: clock.page:18(title)
-msgid "Clock"
-msgstr "Klocka"
-
-#: applicationsmenu.page:8(desc)
-msgid "Show a menu containing categories of installed applications"
-msgstr ""
-
-#: applicationsmenu.page:18(title)
-msgid "Applications Menu"
-msgstr "Programmeny"
-
-#: add-new-items.page:9(desc)
-msgid "Add new plugins to the <placeholder-1/>"
-msgstr "Lägg till nya insticksmoduler till <placeholder-1/>"
-
-#: add-new-items.page:19(title)
-msgid "Add New Plugins"
-msgstr "Lägg till nya insticksmoduler"
-
-#: actions.page:8(desc)
-msgid "Log out, lock or other system actions"
-msgstr "Logga ut, lås skärmen eller andra systemåtgärder"
-
-#: actions.page:18(title)
-msgid "Action Buttons"
-msgstr "Åtgärdsknappar"
-
-#. Put one translator per line, in the form of NAME <EMAIL>, YEAR1, YEAR2
-#: actions.page:0(None)
-msgid "translator-credits"
-msgstr "Daniel Nylander <po at danielnylander.se>, 2010"
-
diff --git a/docs/manual/po/ug.po b/docs/manual/po/ug.po
deleted file mode 100644
index dc11c33..0000000
--- a/docs/manual/po/ug.po
+++ /dev/null
@@ -1,259 +0,0 @@
-# Uyghur translation of the manual from the xfce4-panel package.
-# Gheyret T.Kenji <gheyret at gmail.com>, 2010.
-
-msgid ""
-msgstr ""
-"Project-Id-Version: xfce4-panel\n"
-"POT-Creation-Date: 2010-02-22 17:45+0100\n"
-"PO-Revision-Date: 2010-04-08 06:04+0800\n"
-"Last-Translator: Gheyret T.Kenji <gheyret at gmail.com>\n"
-"Language-Team: Uyghur Computer Science Association <UKIJ at yahoogroups.com>\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 "Nick Schermer"
-
-#: 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 "nick at xfce.org"
-
-#: 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 "Creative Commons Share Alike 3.0"
-
-#: 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 "panel دىكى قىستۇرمىلار ئارىسىغا ئايرىغۇ ياكى بوشلۇق قوش"
-
-#: 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 "Xfce Panel"
-
-#: preferences.page:8(desc)
-msgid "Configure the <placeholder-1/>"
-msgstr "<placeholder-1/> نى سەپلە"
-
-#: 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 "بۇ ئەسەر CreativeCommons Attribution-Share Alike 3.0 ئىجازەتنامىسى بويىچە تارقىتىلدى."
-""
-
-#: 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 "كۆچۈرۈش، تارقىتىش ۋە transmit قىلىش"
-
-#: 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 "CreativeCommons توربېتى"
-
-#: license.page:57(link)
-msgid "Commons Deed"
-msgstr "Commons Deed"
-
-#: license.page:53(p)
-msgid ""
-"For the full text of the license, see the <placeholder-1/>, or read the full "
-"<placeholder-2/>."
-msgstr "ئىجازەتنامىنىڭ تولۇق تېكىستىنى <placeholder-1/> دىن تاپالايسىز ياكى ئۇنى <placeholder-2/> دىن ئوقۇيالايسىز"
-
-#: 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 "<placeholder-1/> نى تونۇشتۇرۇش"
-
-#: introduction.page:18(title)
-msgid "Introduction"
-msgstr "تونۇشتۇرۇش"
-
-#: index.page:21(title)
-msgid "Panel"
-msgstr "Panel"
-
-#: 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 "<placeholder-1/> غا يېڭى قىستۇرما قوش"
-
-#: 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 "Gheyret T.Kenji <gheyret at gmail.com>, 2010."
diff --git a/docs/manual/po/xfce4-panel.pot b/docs/manual/po/xfce4-panel.pot
deleted file mode 100644
index efc2b5f..0000000
--- a/docs/manual/po/xfce4-panel.pot
+++ /dev/null
@@ -1,224 +0,0 @@
-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/po/zh_CN.po b/docs/manual/po/zh_CN.po
deleted file mode 100644
index 214e128..0000000
--- a/docs/manual/po/zh_CN.po
+++ /dev/null
@@ -1,261 +0,0 @@
-msgid ""
-msgstr ""
-"Project-Id-Version: xfce4-panel\n"
-"POT-Creation-Date: 2010-02-22 17:45+0100\n"
-"PO-Revision-Date: 2010-04-08 06:04+0800\n"
-"Last-Translator: Hunt Xu <huntxu at live.cn>\n"
-"Language-Team: Chinese (simplified) <xfce-i18n at xfce.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 "Nick Schermer"
-
-#: 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 "nick at xfce.org"
-
-#: 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 "知识共享协议(相同方式共享) 3.0"
-
-#: 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 "Xfce 面板"
-
-#: preferences.page:8(desc)
-msgid "Configure the <placeholder-1/>"
-msgstr "配置 <placeholder-1/>"
-
-#: 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 ""
-"本文档在知识共享协议(署名,相同方式共享) 3.0 Unported 约束下发布。"
-
-#: 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 ""
-"协议的全文请参见 <placeholder-1/>,或请阅读 <placeholder-2/> 全文。"
-
-#: 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 "<placeholder-1/> 简介"
-
-#: 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 "添加新插件至 <placeholder-1/>"
-
-#: 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 ""
-"HuntXu <huntxu at live.cn>, 2010."
diff --git a/docs/manual/preferences.page b/docs/manual/preferences.page
deleted file mode 100644
index c4981d3..0000000
--- a/docs/manual/preferences.page
+++ /dev/null
@@ -1,24 +0,0 @@
-<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>
-
-  <figure>
-    <title>Panel's Preferences dialog</title>
-    <media type="image" src="figures/preferences.png" mime="image/png" style="right"/>
-  </figure>
-</page>
diff --git a/docs/manual/separator.page b/docs/manual/separator.page
deleted file mode 100644
index f005c20..0000000
--- a/docs/manual/separator.page
+++ /dev/null
@@ -1,36 +0,0 @@
-<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>
-
-    <figure>
-      <title>Separator's properties dialog</title>
-      <media type="image" src="figures/separator.png" mime="image/png" style="right"/>
-    </figure>
-  </section>
-
-  <section id="theming">
-    <title>Style Properties</title>
-
-  </section>
-
-</page>
diff --git a/docs/manual/showdesktop.page b/docs/manual/showdesktop.page
deleted file mode 100644
index f60e1a4..0000000
--- a/docs/manual/showdesktop.page
+++ /dev/null
@@ -1,32 +0,0 @@
-<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
deleted file mode 100644
index 8b33481..0000000
--- a/docs/manual/systray.page
+++ /dev/null
@@ -1,36 +0,0 @@
-<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>
-
-    <figure>
-      <title>Notification area's properties dialog</title>
-      <media type="image" src="figures/systray.png" mime="image/png" style="right"/>
-    </figure>
-  </section>
-
-  <section id="theming">
-    <title>Style Properties</title>
-
-  </section>
-
-</page>
diff --git a/docs/manual/tasklist.page b/docs/manual/tasklist.page
deleted file mode 100644
index c4d5bd9..0000000
--- a/docs/manual/tasklist.page
+++ /dev/null
@@ -1,36 +0,0 @@
-<page xmlns="http://projectmallard.org/1.0/"
-      xmlns:e="http://projectmallard.org/experimental/"
-      type="topic"
-      id="tasklist">
-
-  <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>
-
-    <figure>
-      <title>Window button's properties dialog</title>
-      <media type="image" src="figures/tasklist.png" mime="image/png" style="right"/>
-    </figure>
-  </section>
-
-  <section id="theming">
-    <title>Style Properties</title>
-
-  </section>
-
-</page>
diff --git a/docs/manual/theming.page b/docs/manual/theming.page
deleted file mode 100644
index 0c467e4..0000000
--- a/docs/manual/theming.page
+++ /dev/null
@@ -1,26 +0,0 @@
-<page xmlns="http://projectmallard.org/1.0/"
-      xmlns:e="http://projectmallard.org/experimental/"
-      type="topic"
-      id="theming">
-
-  <info>
-    <link type="guide" xref="index#panel"/>
-    <desc>Styling 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>Theming</title>
-
-  <p>
-    XfcePanelWindow (normal panel window),
-    XfcePanelWindowHidden (autohide window),
-    XfcePanelWindowExternal (4.6 external plugin),
-    XfcePanelWindowWrapper (4.8 external plugins).
-  </p>
-</page>
diff --git a/docs/manual/windowmenu.page b/docs/manual/windowmenu.page
deleted file mode 100644
index 9339eba..0000000
--- a/docs/manual/windowmenu.page
+++ /dev/null
@@ -1,36 +0,0 @@
-<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>
-
-    <figure>
-      <title>Window Menu's properties dialog</title>
-      <media type="image" src="figures/windowmenu.png" mime="image/png" style="right"/>
-    </figure>
-  </section>
-
-  <section id="theming">
-    <title>Style Properties</title>
-
-  </section>
-
-</page>



More information about the Xfce4-commits mailing list