--- writer2latex-1.0.orig/debian/openoffice.org-writer2latex.install +++ writer2latex-1.0/debian/openoffice.org-writer2latex.install @@ -0,0 +1 @@ +target/lib/writer2latex.oxt usr/lib/openoffice/share/extension/install --- writer2latex-1.0.orig/debian/openoffice.org-writer2xhtml.lintian-overrides +++ writer2latex-1.0/debian/openoffice.org-writer2xhtml.lintian-overrides @@ -0,0 +1 @@ +openoffice.org-writer2xhtml: postinst-uses-db-input --- writer2latex-1.0.orig/debian/libwriter2latex-java-doc.install +++ writer2latex-1.0/debian/libwriter2latex-java-doc.install @@ -0,0 +1 @@ +target/javadoc usr/share/doc/libwriter2latex-java --- writer2latex-1.0.orig/debian/openoffice.org-writer2xhtml.templates +++ writer2latex-1.0/debian/openoffice.org-writer2xhtml.templates @@ -0,0 +1,19 @@ +# These templates have been reviewed by the debian-l10n-english +# team +# +# If modifications/additions/rewording are needed, please ask +# debian-l10n-english@lists.debian.org for advice. +# +# Even minor modifications require translation updates and such +# changes should be coordinated with translators and reviewers. + +Template: shared/openofficeorg-running +Type: error +_Description: OpenOffice.org running + OpenOffice.org is running right now. This can cause problems with + (de-)registration of components and extensions. + . + You should close all running instances of OpenOffice.org (including + any currently running Quickstarter) before proceeding with the package + upgrade. + --- writer2latex-1.0.orig/debian/compat +++ writer2latex-1.0/debian/compat @@ -0,0 +1 @@ +5 --- writer2latex-1.0.orig/debian/openoffice.org-writer2latex.prerm +++ writer2latex-1.0/debian/openoffice.org-writer2latex.prerm @@ -0,0 +1,60 @@ +#!/bin/sh + +set -e + +. /usr/share/debconf/confmodule + +check_for_running_ooo() { + if [ -e /usr/lib/openoffice/program/bootstraprc ]; then + LOCKFILE=`grep UserInstallation /usr/lib/openoffice/program/bootstraprc | cut -d= -f2 | sed -e 's,SYSUSERCONFIG,HOME,'` + PID=`pgrep soffice.bin | head -n 1` + if [ -n "$PID" ] || [ -e "$LOCKFILE" ]; then + if [ "$DEBIAN_FRONTEND" = "noninteractive" ]; then + echo "OpenOffice.org running!" >&2 + echo "" >&2 + echo -n "OpenOffice.org is running right now with pid " >&2 + echo -n "$PID." >&2 + echo " This can cause problems" >&2 + echo "with (de-)registration of components and extensions" >&2 + echo "Thus this package will fail to install" >&2 + echo "You should close all running instances of OpenOffice.org (including" >&2 + echo "any currently running Quickstarter) before proceeding with the package" >&2 + echo "upgrade." >&2 + exit 1 + else + db_input high shared/openofficeorg-running + db_go + # try again in case OOo got closed before hitting OK + PID=`pgrep soffice.bin | head -n 1` + if [ -n "$PID" ] || [ -e "$LOCKFILE" ]; then + exit 1 + fi + fi + fi + fi +} + +flush_unopkg_cache() { + /usr/lib/openoffice/program/unopkg list --shared > /dev/null 2>&1 +} + +remove_extension() { + check_for_running_ooo + if /usr/lib/openoffice/program/unopkg list --shared $1 >/dev/null; then + INSTDIR=`mktemp -d` + /usr/lib/openoffice/program/unopkg remove -v --shared $1 \ + "-env:UserInstallation=file://$INSTDIR" \ + '-env:UNO_JAVA_JFW_INSTALL_DATA=file:///var/lib/openoffice/javasettingsunopkginstall.xml' \ + "-env:JFW_PLUGIN_DO_NOT_CHECK_ACCESSIBILITY=1" + if [ -n $INSTDIR ]; then rm -rf $INSTDIR; fi + flush_unopkg_cache + fi +} + +case "$1" in + remove) + remove_extension org.openoffice.da.writer2latex.oxt + ;; +esac + +#DEBHELPER# --- writer2latex-1.0.orig/debian/openoffice.org-writer2xhtml.preinst +++ writer2latex-1.0/debian/openoffice.org-writer2xhtml.preinst @@ -0,0 +1,60 @@ +#!/bin/sh + +set -e + +. /usr/share/debconf/confmodule + +check_for_running_ooo() { + if [ -e /usr/lib/openoffice/program/bootstraprc ]; then + LOCKFILE="`grep UserInstallation /usr/lib/openoffice/program/bootstraprc | cut -d= -f2 | sed -e 's,SYSUSERCONFIG,HOME,'`/.lock" + PID=`pgrep soffice.bin | head -n 1` + if [ -n "$PID" ] || [ -e "$LOCKFILE" ]; then + if [ "$DEBIAN_FRONTEND" = "noninteractive" ]; then + echo "OpenOffice.org running!" >&2 + echo "" >&2 + echo -n "OpenOffice.org is running right now with pid " >&2 + echo -n "$PID." >&2 + echo " This can cause problems" >&2 + echo "with (de-)registration of components and extensions" >&2 + echo "Thus this package will fail to install" >&2 + echo "You should close all running instances of OpenOffice.org (including" >&2 + echo "any currently running Quickstarter) before proceeding with the package" >&2 + echo "upgrade." >&2 + exit 1 + else + db_input high shared/openofficeorg-running + db_go + # try again in case OOo got closed before hitting OK + PID=`pgrep soffice.bin | head -n 1` + if [ -n "$PID" ] || [ -e "$LOCKFILE" ]; then + exit 1 + fi + fi + fi + fi +} + +flush_unopkg_cache() { + /usr/lib/openoffice/program/unopkg list --shared > /dev/null 2>&1 +} + +remove_extension() { + check_for_running_ooo + if /usr/lib/openoffice/program/unopkg list --shared $1 >/dev/null; then + INSTDIR=`mktemp -d` + /usr/lib/openoffice/program/unopkg remove -v --shared $1 \ + "-env:UserInstallation=file://$INSTDIR" \ + '-env:UNO_JAVA_JFW_INSTALL_DATA=file:///var/lib/openoffice/javasettingsunopkginstall.xml' \ + "-env:JFW_PLUGIN_DO_NOT_CHECK_ACCESSIBILITY=1" + if [ -n $INSTDIR ]; then rm -rf $INSTDIR; fi + flush_unopkg_cache + fi +} + +case "$1" in + upgrade) + remove_extension org.openoffice.da.writer2xhtml.oxt + ;; +esac + +#DEBHELPER# --- writer2latex-1.0.orig/debian/copyright +++ writer2latex-1.0/debian/copyright @@ -0,0 +1,21 @@ +This package was debianized by Rene Engelhard on +Tue, 20 Nov 2007 21:12:28 +0100. + +It was downloaded from http://www.hj-gym.dk/~hj/writer2latex/ + +Upstream Author: + + Henrik Just + +Copyright: + + (C) 2002-2007 Henrik Just + +License: + + LGPL 2.1. On Debian systems you can find the full text of the LGPL 2.1 + in /usr/share/common-licenses/LGPL-2.1 + + ooomath.sty is under LPPL 1.2 or later; the latest version of the LPPL + is in http://www.latex-project.org/lppl.txt + --- writer2latex-1.0.orig/debian/NEWS +++ writer2latex-1.0/debian/NEWS @@ -0,0 +1,11 @@ +writer2latex (0.5.0.1-fix1-1) unstable; urgency=low + + * writer2latex 0.5.0.1 split the writer2latex and the writer2xhtml + extensions. When you used the XHTML part of openoffice.org-writer2latex + so far and want to continue it instead you should install + openoffice.org-writer2xhtml. + Thus you can also remove this package and install + openoffice.org-writer2xhtml if you just need XHTML export but not a LaTeX + one. + + -- Rene Engelhard Tue, 29 Jul 2008 01:09:34 +0200 --- writer2latex-1.0.orig/debian/libwriter2latex-java.install +++ writer2latex-1.0/debian/libwriter2latex-java.install @@ -0,0 +1 @@ +target/lib/writer2latex.jar usr/share/java --- writer2latex-1.0.orig/debian/writer2latex.links +++ writer2latex-1.0/debian/writer2latex.links @@ -0,0 +1 @@ +usr/share/java/writer2latex.jar usr/share/writer2latex/writer2latex.jar --- writer2latex-1.0.orig/debian/openoffice.org-writer2latex.preinst +++ writer2latex-1.0/debian/openoffice.org-writer2latex.preinst @@ -0,0 +1,66 @@ +#!/bin/sh + +set -e + +. /usr/share/debconf/confmodule + +check_for_running_ooo() { + if [ -e /usr/lib/openoffice/program/bootstraprc ]; then + LOCKFILE="`grep UserInstallation /usr/lib/openoffice/program/bootstraprc | cut -d= -f2 | sed -e 's,SYSUSERCONFIG,HOME,'`/.lock" + PID=`pgrep soffice.bin | head -n 1` + if [ -n "$PID" ] || [ -e "$LOCKFILE" ]; then + if [ "$DEBIAN_FRONTEND" = "noninteractive" ]; then + echo "OpenOffice.org running!" >&2 + echo "" >&2 + echo -n "OpenOffice.org is running right now with pid " >&2 + echo -n "$PID." >&2 + echo " This can cause problems" >&2 + echo "with (de-)registration of components and extensions" >&2 + echo "Thus this package will fail to install" >&2 + echo "You should close all running instances of OpenOffice.org (including" >&2 + echo "any currently running Quickstarter) before proceeding with the package" >&2 + echo "upgrade." >&2 + exit 1 + else + db_input high shared/openofficeorg-running + db_go + # try again in case OOo got closed before hitting OK + PID=`pgrep soffice.bin | head -n 1` + if [ -n "$PID" ] || [ -e "$LOCKFILE" ]; then + exit 1 + fi + fi + fi + fi +} + +flush_unopkg_cache() { + /usr/lib/openoffice/program/unopkg list --shared > /dev/null 2>&1 +} + +remove_extension() { + check_for_running_ooo + if /usr/lib/openoffice/program/unopkg list --shared $1 >/dev/null; then + INSTDIR=`mktemp -d` + /usr/lib/openoffice/program/unopkg remove -v --shared $1 \ + "-env:UserInstallation=file://$INSTDIR" \ + '-env:UNO_JAVA_JFW_INSTALL_DATA=file:///var/lib/openoffice/javasettingsunopkginstall.xml' \ + "-env:JFW_PLUGIN_DO_NOT_CHECK_ACCESSIBILITY=1" + if [ -n $INSTDIR ]; then rm -rf $INSTDIR; fi + flush_unopkg_cache + fi +} + +case "$1" in + upgrade) + if dpkg --compare-versions $2 lt 0.5.0.1; then + # this is a legacy package, so we need to find it first... + id=`/usr/lib/openoffice/program/unopkg list --shared | grep Identifier:.*writer2latex | cut -d":" -f2` + else + id=org.openoffice.da.writer2latex.oxt + fi + remove_extension $id + ;; +esac + +#DEBHELPER# --- writer2latex-1.0.orig/debian/writer2latex-manual.install +++ writer2latex-1.0/debian/writer2latex-manual.install @@ -0,0 +1 @@ +source/distro/doc/* /usr/share/doc/writer2latex/manual --- writer2latex-1.0.orig/debian/openoffice.org-writer2xhtml.postinst +++ writer2latex-1.0/debian/openoffice.org-writer2xhtml.postinst @@ -0,0 +1,51 @@ +#!/bin/sh + +set -e + +. /usr/share/debconf/confmodule + +check_for_running_ooo() { + if [ -e /usr/lib/openoffice/program/bootstraprc ]; then + LOCKFILE="`grep UserInstallation /usr/lib/openoffice/program/bootstraprc | cut -d= -f2 | sed -e 's,SYSUSERCONFIG,HOME,'`/.lock" + PID=`pgrep soffice.bin | head -n 1` + if [ -n "$PID" ] || [ -e "$LOCKFILE" ]; then + if [ "$DEBIAN_FRONTEND" = "noninteractive" ]; then + echo "OpenOffice.org running!" >&2 + echo "" >&2 + echo -n "OpenOffice.org is running right now with pid " >&2 + echo -n "$PID." >&2 + echo " This can cause problems" >&2 + echo "with (de-)registration of components and extensions" >&2 + echo "Thus this package will fail to install" >&2 + echo "You should close all running instances of OpenOffice.org (including" >&2 + echo "any currently running Quickstarter) before proceeding with the package" >&2 + echo "upgrade." >&2 + exit 1 + else + db_input high shared/openofficeorg-running + db_go + # try again in case OOo got closed before hitting OK + PID=`pgrep soffice.bin | head -n 1` + if [ -n "$PID" ] || [ -e "$LOCKFILE" ]; then + exit 1 + fi + fi + fi + fi +} + +add_extension() { + check_for_running_ooo + INSTDIR=`mktemp -d` + /usr/lib/openoffice/program/unopkg add -v --shared $1 \ + "-env:UserInstallation=file:///$INSTDIR" \ + '-env:UNO_JAVA_JFW_INSTALL_DATA=file:///var/lib/openoffice/javasettingsunopkginstall.xml' \ + "-env:JFW_PLUGIN_DO_NOT_CHECK_ACCESSIBILITY=1" + if [ -n $INSTDIR ]; then rm -rf $INSTDIR; fi +} + +if [ "$1" = "configure" -o "$1" = "upgrade" ]; then + add_extension /usr/lib/openoffice/share/extension/install/writer2xhtml.oxt +fi + +#DEBHELPER# --- writer2latex-1.0.orig/debian/writer2latex.install +++ writer2latex-1.0/debian/writer2latex.install @@ -0,0 +1,4 @@ +source/distro/w2l usr/bin +source/java/writer2latex/latex/config/*.xml usr/share/writer2latex +source/oxt/xhtml-config-sample/template/xhtml-sample-config/*.ott /usr/share/writer2latex +source/distro/latex/ooomath.sty usr/share/texmf/tex/latex/ooomath --- writer2latex-1.0.orig/debian/changelog +++ writer2latex-1.0/debian/changelog @@ -0,0 +1,214 @@ +writer2latex (1.0-10ubuntu1) lucid; urgency=low + + * Merge from debian testing. Remaining changes: + - (Build-)depend on default-jre/-jdk. + + -- Chris Cheney Wed, 31 Mar 2010 14:30:00 -0500 + +writer2latex (1.0-10) unstable; urgency=low + + * build-depend on ant1.7 | ant (<< 1.8.0~) (closes: #571397) + + -- Rene Engelhard Thu, 04 Mar 2010 18:06:03 +0100 + +writer2latex (1.0-9) unstable; urgency=low + + * update for OOo 3.2 + + -- Rene Engelhard Thu, 11 Feb 2010 13:10:20 +0100 + +writer2latex (1.0-8) unstable; urgency=low + + * oops, actually build with -15... + + -- Rene Engelhard Mon, 08 Feb 2010 01:06:23 +0100 + +writer2latex (1.0-7) unstable; urgency=low + + * fix clean install to not split out dpkg --compare-versions + warning (closes: #568713) + * restore lost bits in preinst (closes: #568805) + + -- Rene Engelhard Mon, 08 Feb 2010 00:55:26 +0100 + +writer2latex (1.0-6) unstable; urgency=low + + * add missing Pre-Depends on Java and openoffice.org-java-common + * as the Pre-Depends on -java-common doesn't prevent -common being + temporarily removed in the upgrade (and we don't have unopkg then...) + try to recover in postinst from preinst not de-registering the old + extension. + + -- Rene Engelhard Sat, 06 Feb 2010 23:13:59 +0100 + +writer2latex (1.0-5) unstable; urgency=medium + + * stop pre-depending on openoffice.org-common for openoffice.org/running. + This closes: #566644. + Rename to shared/openofficeorg-running and merge here. + * add echos instead of debconf message on DEBIAN_FRONTEND = noninteractive + so that people in that case also know what goes on + * remove unneeded postrms, dh_installdebconf already does it for us + * fix debian/NEWS to have correct version number; thanks lintian + * rebuild with openoffice.org-dev 1:3.1.1-15 + + -- Rene Engelhard Wed, 27 Jan 2010 09:15:59 +0100 + +writer2latex (1.0-4) unstable; urgency=medium + + * rebuild with OOo 3.1.1-14 to get a uncorrupted .rdb + * add missing .lock to find_running_ooo to actually check for the extistence + of the lockfile and not for the profile dir, thanks Chris Cheney + * adapt for java-gcj-compat-dev -> gcj-jdk + + -- Rene Engelhard Fri, 15 Jan 2010 17:15:17 +0100 + +writer2latex (1.0-3) unstable; urgency=low + + * debian/openoffice.org-writer2latex.prerm: actually source confmodule... + + -- Rene Engelhard Mon, 19 Oct 2009 12:02:01 +0200 + +writer2latex (1.0-2) unstable; urgency=low + + * check whether OOo is running and show error openoffice.org/running if it + is - as in openoffice.org-common. pre-depend on + openoffice.org-common (>= 1:3.1.1-3), debconf (>= 0.5) | debconf-2.0 + and procps. (closes: #527556) + + -- Rene Engelhard Sun, 04 Oct 2009 15:13:38 +0200 + +writer2latex (1.0-1) unstable; urgency=low + + * New upstream release + * run unopkg with -v + + -- Rene Engelhard Wed, 30 Sep 2009 02:33:25 +0200 + +writer2latex (1.0~beta3-1) experimental; urgency=low + + * New upstream release + + -- Rene Engelhard Mon, 27 Apr 2009 18:29:55 +0200 + +writer2latex (1.0~beta2-1) experimental; urgency=low + + * New upstream release + * update Homepage: + * use /var/lib/openoffice/javasettingsunopkginstall.xml for + -env:UNO_JAVA_JFW_INSTALL_DATA + * adapt section of libwriter2latex-java: -> java + + -- Rene Engelhard Wed, 15 Apr 2009 18:39:20 +0200 + +writer2latex (0.5.0.2-4ubuntu1) karmic; urgency=low + + * Merge with Debian; remaining changes: + - (Build-)depend on default-jre/-jdk. + + -- Matthias Klose Sun, 17 May 2009 13:41:41 +0200 + +writer2latex (0.5.0.2-4) unstable; urgency=low + + * add missing Build-Depends: on ure (closes: #521945) + + -- Rene Engelhard Tue, 31 Mar 2009 00:47:44 +0200 + +writer2latex (0.5.0.2-3) unstable; urgency=high + + * $ORIGIN -> $OOO_BASE_DIR + + -- Rene Engelhard Tue, 03 Mar 2009 02:46:26 +0100 + +writer2latex (0.5.0.2-2) unstable; urgency=low + + * upload to unstable + + -- Rene Engelhard Fri, 13 Feb 2009 10:03:12 +0100 + +writer2latex (0.5.0.2-1) experimental; urgency=low + + * New upstream release + * lintian fixes + + -- Rene Engelhard Mon, 06 Oct 2008 02:00:55 +0200 + +writer2latex (0.5.0.1-fix1-1) experimental; urgency=low + + * New upstream release + - splits the writer2xhtml part into an own extension + * debian/patches/01_dirs.dpatch: make generic to work with OOo 2.4.1 and + 3.0.0 + + -- Rene Engelhard Tue, 29 Jul 2008 16:22:15 +0200 + +writer2latex (0.5-8ubuntu1) intrepid; urgency=low + + * Merge from Debian unstable (LP: #244098), remaining Ubuntu changes: + - (Build-)depend on default-jre/-jdk. + + -- Luca Falavigna Mon, 04 Aug 2008 02:19:03 +0200 + +writer2latex (0.5-8) unstable; urgency=high + + * add missing Depends: on ${misc:Depends} for writer2latex + (closes: #490138) + + -- Rene Engelhard Fri, 11 Jul 2008 00:28:21 +0200 + +writer2latex (0.5-7) unstable; urgency=high + + * fix debian/copyright; ooomath.sty is LPPL, actually mention that + + -- Rene Engelhard Wed, 09 Jul 2008 15:40:16 +0200 + +writer2latex (0.5-6ubuntu1) intrepid; urgency=low + + * (Build-)depend on default-jre/-jdk. + * Set Ubuntu maintainer address. + + -- Matthias Klose Thu, 31 Jul 2008 08:17:33 +0000 + +writer2latex (0.5-6) unstable; urgency=low + + * add missing -env:JFW_PLUGIN_DO_NOT_CHECK_ACCESSIBILITY=1 to the prerm + unopkg call, hopefully closes: #468202, please reopen if not + + -- Rene Engelhard Thu, 28 Feb 2008 14:11:44 +0100 + +writer2latex (0.5-5) unstable; urgency=low + + * build-depend on openoffice.org-java-common (closes: #46760) + + -- Rene Engelhard Tue, 26 Feb 2008 15:53:46 +0100 + +writer2latex (0.5-4) unstable; urgency=low + + * upload to unstable + * add bug script running unopkg list + + -- Rene Engelhard Fri, 15 Feb 2008 12:37:10 +0100 + +writer2latex (0.5-3) experimental; urgency=low + + * debian/shell-lib.sh: + - run unopkg with -env:JFW_PLUGIN_DO_NOT_CHECK_ACCESSIBILITY=1 because + otherwise the first run with gcj won't find a JRE (and might fail the + install then). Flush the cache after removing as unopkg doesn't remove + files on uninstall but marks them as "to-be-removed-on-next-start". + Thanks Caolan McNamara. + + -- Rene Engelhard Tue, 04 Dec 2007 17:31:46 +0100 + +writer2latex (0.5-2) experimental; urgency=low + + * run dh_installtex + + -- Rene Engelhard Mon, 26 Nov 2007 14:12:01 +0100 + +writer2latex (0.5-1) experimental; urgency=low + + * Initial release + + -- Rene Engelhard Mon, 26 Nov 2007 10:06:34 +0100 + --- writer2latex-1.0.orig/debian/openoffice.org-writer2latex.script.bug +++ writer2latex-1.0/debian/openoffice.org-writer2latex.script.bug @@ -0,0 +1,4 @@ +#!/bin/sh +# this is a legacy package, so we need to find it first... +id=`/usr/lib/openoffice/program/unopkg list --shared | grep Identifier:.*writer2latex | cut -d":" -f2` +/usr/lib/openoffice/program/unopkg list --shared $id >&3 --- writer2latex-1.0.orig/debian/openoffice.org-writer2latex.postinst +++ writer2latex-1.0/debian/openoffice.org-writer2latex.postinst @@ -0,0 +1,81 @@ +#!/bin/sh + +set -e + +. /usr/share/debconf/confmodule + +check_for_running_ooo() { + if [ -e /usr/lib/openoffice/program/bootstraprc ]; then + LOCKFILE="`grep UserInstallation /usr/lib/openoffice/program/bootstraprc | cut -d= -f2 | sed -e 's,SYSUSERCONFIG,HOME,'`/.lock" + PID=`pgrep soffice.bin | head -n 1` + if [ -n "$PID" ] || [ -e "$LOCKFILE" ]; then + if [ "$DEBIAN_FRONTEND" = "noninteractive" ]; then + echo "OpenOffice.org running!" >&2 + echo "" >&2 + echo -n "OpenOffice.org is running right now with pid " >&2 + echo -n "$PID." >&2 + echo " This can cause problems" >&2 + echo "with (de-)registration of components and extensions" >&2 + echo "Thus this package will fail to install" >&2 + echo "You should close all running instances of OpenOffice.org (including" >&2 + echo "any currently running Quickstarter) before proceeding with the package" >&2 + echo "upgrade." >&2 + exit 1 + else + db_input high shared/openofficeorg-running + db_go + # try again in case OOo got closed before hitting OK + PID=`pgrep soffice.bin | head -n 1` + if [ -n "$PID" ] || [ -e "$LOCKFILE" ]; then + exit 1 + fi + fi + fi + fi +} + +flush_unopkg_cache() { + /usr/lib/openoffice/program/unopkg list --shared > /dev/null 2>&1 +} + +remove_extension() { + check_for_running_ooo + if /usr/lib/openoffice/program/unopkg list --shared $1 >/dev/null; then + INSTDIR=`mktemp -d` + /usr/lib/openoffice/program/unopkg remove -v --shared $1 \ + "-env:UserInstallation=file://$INSTDIR" \ + '-env:UNO_JAVA_JFW_INSTALL_DATA=file:///var/lib/openoffice/javasettingsunopkginstall.xml' \ + "-env:JFW_PLUGIN_DO_NOT_CHECK_ACCESSIBILITY=1" + if [ -n $INSTDIR ]; then rm -rf $INSTDIR; fi + flush_unopkg_cache + fi +} + +add_extension() { + check_for_running_ooo + INSTDIR=`mktemp -d` + /usr/lib/openoffice/program/unopkg add -v --shared $1 \ + "-env:UserInstallation=file:///$INSTDIR" \ + '-env:UNO_JAVA_JFW_INSTALL_DATA=file:///var/lib/openoffice/javasettingsunopkginstall.xml' \ + "-env:JFW_PLUGIN_DO_NOT_CHECK_ACCESSIBILITY=1" + if [ -n $INSTDIR ]; then rm -rf $INSTDIR; fi +} + +if [ "$1" = "configure" -o "$1" = "upgrade" ]; then + if [ -n "$2" ]; then + if dpkg --compare-versions $2 lt 0.5.0.1; then + # in some circumstances (and this is special here) we have the legacy + # package still here in lenny->squeeze/sid upgrades. If found, try it + # now again in case it failed on upgrade because unopkg was tried + # to be called when -common was temporarily removed by apt + if /usr/lib/openoffice/program/unopkg list --shared | grep -q Identifier.*legacy\.writer2latex; then + # this is a legacy package, so we need to find it first + id=`/usr/lib/openoffice/program/unopkg list --shared | grep Identifier:.*legacy\.writer2latex | cut -d":" -f2` + remove_extension $id + fi + fi + fi + add_extension /usr/lib/openoffice/share/extension/install/writer2latex.oxt +fi + +#DEBHELPER# --- writer2latex-1.0.orig/debian/openoffice.org-writer2xhtml.install +++ writer2latex-1.0/debian/openoffice.org-writer2xhtml.install @@ -0,0 +1 @@ +target/lib/writer2xhtml.oxt usr/lib/openoffice/share/extension/install --- writer2latex-1.0.orig/debian/source.lintian-overrides +++ writer2latex-1.0/debian/source.lintian-overrides @@ -0,0 +1 @@ +writer2latex source: missing-build-dependency ant --- writer2latex-1.0.orig/debian/openoffice.org-writer2xhtml.prerm +++ writer2latex-1.0/debian/openoffice.org-writer2xhtml.prerm @@ -0,0 +1,60 @@ +#!/bin/sh + +set -e + +. /usr/share/debconf/confmodule + +check_for_running_ooo() { + if [ -e /usr/lib/openoffice/program/bootstraprc ]; then + LOCKFILE="`grep UserInstallation /usr/lib/openoffice/program/bootstraprc | cut -d= -f2 | sed -e 's,SYSUSERCONFIG,HOME,'`/.lock" + PID=`pgrep soffice.bin | head -n 1` + if [ -n "$PID" ] || [ -e "$LOCKFILE" ]; then + if [ "$DEBIAN_FRONTEND" = "noninteractive" ]; then + echo "OpenOffice.org running!" >&2 + echo "" >&2 + echo -n "OpenOffice.org is running right now with pid " >&2 + echo -n "$PID." >&2 + echo " This can cause problems" >&2 + echo "with (de-)registration of components and extensions" >&2 + echo "Thus this package will fail to install" >&2 + echo "You should close all running instances of OpenOffice.org (including" >&2 + echo "any currently running Quickstarter) before proceeding with the package" >&2 + echo "upgrade." >&2 + exit 1 + else + db_input high shared/openofficeorg-running + db_go + # try again in case OOo got closed before hitting OK + PID=`pgrep soffice.bin | head -n 1` + if [ -n "$PID" ] || [ -e "$LOCKFILE" ]; then + exit 1 + fi + fi + fi + fi +} + +flush_unopkg_cache() { + /usr/lib/openoffice/program/unopkg list --shared > /dev/null 2>&1 +} + +remove_extension() { + check_for_running_ooo + if /usr/lib/openoffice/program/unopkg list --shared $1 >/dev/null; then + INSTDIR=`mktemp -d` + /usr/lib/openoffice/program/unopkg remove -v --shared $1 \ + "-env:UserInstallation=file://$INSTDIR" \ + '-env:UNO_JAVA_JFW_INSTALL_DATA=file:///var/lib/openoffice/javasettingsunopkginstall.xml' \ + "-env:JFW_PLUGIN_DO_NOT_CHECK_ACCESSIBILITY=1" + if [ -n $INSTDIR ]; then rm -rf $INSTDIR; fi + flush_unopkg_cache + fi +} + +case "$1" in + remove) + remove_extension org.openoffice.da.writer2xhtml.oxt + ;; +esac + +#DEBHELPER# --- writer2latex-1.0.orig/debian/openoffice.org-writer2latex.templates +++ writer2latex-1.0/debian/openoffice.org-writer2latex.templates @@ -0,0 +1,18 @@ +# These templates have been reviewed by the debian-l10n-english +# team +# +# If modifications/additions/rewording are needed, please ask +# debian-l10n-english@lists.debian.org for advice. +# +# Even minor modifications require translation updates and such +# changes should be coordinated with translators and reviewers. + +Template: shared/openofficeorg-running +Type: error +_description: OpenOffice.org running + OpenOffice.org is running right now. This can cause problems with + (de-)registration of components and extensions. + . + You should close all running instances of OpenOffice.org (including any + currently running Quickstarter) before proceeding with the package + upgrade. --- writer2latex-1.0.orig/debian/control +++ writer2latex-1.0/debian/control @@ -0,0 +1,134 @@ +Source: writer2latex +Section: text +Priority: optional +Maintainer: Ubuntu Core developers +XSBC-Original-Maintainer: Debian OpenOffice Team +Uploaders: Rene Engelhard , Chris Halls +Build-Depends: debhelper (>= 6.0.7~), ant1.7 | ant (<< 1.8.0~), libxerces2-java, libxalan2-java, default-jdk, openoffice.org-java-common (>= 1:3.1.0~), ure (>= 1.4.1~), dpatch, tex-common +Build-Conflicts: openoffice.org-java-common (>= 1:3.3.0~) +Standards-Version: 3.7.2 +Homepage: http://writer2latex.sourceforge.net + +Package: writer2latex +Architecture: all +Depends: default-jre-headless | java2-runtime-headless, libwriter2latex-java, ${misc:Depends} +Recommends: www-browser | x-www-browser | pdf-viewer | openoffice.org-writer +Description: OpenOffice.org Writer/Calc to LaTeX/XHTML converter + Writer2LaTeX is a utility written in java. It converts OpenOffice.org + documents – in particular documents containing formulas – into other + formats. It is actually a collection of four converters, i.e.: + 1) Writer2LaTeX converts documents into LaTeX 2e format for high quality + typesetting. + 2) Writer2BibTeX extracts bibliographic data from a document and stores it in + BibTeX format (works together with Writer2LaTeX). + 3) Writer2xhtml converts documents into XHTML 1.0 or XHTML 1.1+MathML 2.0 with + CSS2. + 4) Calc2xhtml is a companion to Writer2xhtml that converts OOo Calc documents + to XHTML 1.0 with CSS2 to display your spreadsheets on the web. + +Package: writer2latex-manual +Architecture: all +Section: doc +Depends: ${misc:Depends} +Description: OpenOffice.org Writer/Calc to LaTeX/XHTML converter -- manual + Writer2LaTeX is a utility written in java. It converts OpenOffice.org + documents – in particular documents containing formulas – into other + formats. It is actually a collection of four converters, i.e.: + 1) Writer2LaTeX converts documents into LaTeX 2e format for high quality + typesetting. + 2) Writer2BibTeX extracts bibliographic data from a document and stores it in + BibTeX format (works together with Writer2LaTeX). + 3) Writer2xhtml converts documents into XHTML 1.0 or XHTML 1.1+MathML 2.0 with + CSS2. + 4) Calc2xhtml is a companion to Writer2xhtml that converts OOo Calc documents + to XHTML 1.0 with CSS2 to display your spreadsheets on the web. + . + This package contains the manual. + +Package: libwriter2latex-java-doc +Architecture: all +Section: doc +Depends: ${misc:Depends} +Recommends: www-browser | x-www-browser +Description: OpenOffice.org Writer/Calc to LaTeX/XHTML converter -- javadoc + Writer2LaTeX is a utility written in java. It converts OpenOffice.org + documents – in particular documents containing formulas – into other + formats. It is actually a collection of four converters, i.e.: + 1) Writer2LaTeX converts documents into LaTeX 2e format for high quality + typesetting. + 2) Writer2BibTeX extracts bibliographic data from a document and stores it in + BibTeX format (works together with Writer2LaTeX). + 3) Writer2xhtml converts documents into XHTML 1.0 or XHTML 1.1+MathML 2.0 with + CSS2. + 4) Calc2xhtml is a companion to Writer2xhtml that converts OOo Calc documents + to XHTML 1.0 with CSS2 to display your spreadsheets on the web. + . + This package contains the javadoc for the writer2latex library. + +Package: libwriter2latex-java +Section: java +Architecture: all +Depends: libxalan2-java, libxerces2-java, ${misc:Depends} +Description: OpenOffice.org Writer/Calc to LaTeX/XHTML converter -- library + Writer2LaTeX is a utility written in java. It converts OpenOffice.org + documents – in particular documents containing formulas – into other + formats. It is actually a collection of four converters, i.e.: + 1) Writer2LaTeX converts documents into LaTeX 2e format for high quality + typesetting. + 2) Writer2BibTeX extracts bibliographic data from a document and stores it in + BibTeX format (works together with Writer2LaTeX). + 3) Writer2xhtml converts documents into XHTML 1.0 or XHTML 1.1+MathML 2.0 with + CSS2. + 4) Calc2xhtml is a companion to Writer2xhtml that converts OOo Calc documents + to XHTML 1.0 with CSS2 to display your spreadsheets on the web. + . + This package contains the java library. + +Package: openoffice.org-writer2latex +Architecture: all +Pre-Depends: debconf (>= 0.5) | debconf-2.0, procps, openoffice.org-java-common (>= 1:2.3.0~oog680m1), default-jre | gcj-jre | java-gcj-compat | openjdk-6-jre | sun-java5-jre | sun-java6-jre | java5-runtime | jre +Depends: openoffice.org-core (>= 1:2.3.0~oog680m1), ${misc:Depends} +Enhances: openoffice.org-writer, openoffice.org-calc +Conflicts: openoffice.org-core (<< 1:3.0.0~), openoffice.org-common (<< 1:3.0.1-10), ure (<< 1.5.1+OOo3.1.1-15) +Description: Writer/Calc to LaTeX converter extension for OpenOffice.org + Writer2LaTeX is a utility written in java. It converts OpenOffice.org + documents – in particular documents containing formulas – into other + formats. It is actually a collection of four converters, i.e.: + 1) Writer2LaTeX converts documents into LaTeX 2e format for high quality + typesetting. + 2) Writer2BibTeX extracts bibliographic data from a document and stores it in + BibTeX format (works together with Writer2LaTeX). + 3) Writer2xhtml converts documents into XHTML 1.0 or XHTML 1.1+MathML 2.0 with + CSS2. + 4) Calc2xhtml is a companion to Writer2xhtml that converts OOo Calc documents + to XHTML 1.0 with CSS2 to display your spreadsheets on the web. + . + This package contains the OpenOffice.org extension providing + writer2latex for OpenOffice.org. Note that OOo contains Writer2LaTeX 0.4 + since 2.0.4 and this disables the internal writer2latex and uses the new + one. + +Package: openoffice.org-writer2xhtml +Architecture: all +Pre-Depends: debconf (>= 0.5) | debconf-2.0, procps, openoffice.org-java-common (>= 1:2.3.0~oog680m1), default-jre | gcj-jre | java-gcj-compat | openjdk-6-jre | sun-java5-jre | sun-java6-jre | java5-runtime | jre +Depends: openoffice.org-core (>= 1:2.3.0~oog680m1), ${misc:Depends} +Enhances: openoffice.org-writer, openoffice.org-calc +Conflicts: openoffice.org-core (<< 1:3.0.0~), openoffice.org-common (<< 1:3.0.1-10), ure (<< 1.5.1+OOo3.1.1-15) +Description: Writer/Calc to XHTML converter extension for OpenOffice.org + Writer2LaTeX is a utility written in java. It converts OpenOffice.org + documents – in particular documents containing formulas – into other + formats. It is actually a collection of four converters, i.e.: + 1) Writer2LaTeX converts documents into LaTeX 2e format for high quality + typesetting. + 2) Writer2BibTeX extracts bibliographic data from a document and stores it in + BibTeX format (works together with Writer2LaTeX). + 3) Writer2xhtml converts documents into XHTML 1.0 or XHTML 1.1+MathML 2.0 with + CSS2. + 4) Calc2xhtml is a companion to Writer2xhtml that converts OOo Calc documents + to XHTML 1.0 with CSS2 to display your spreadsheets on the web. + . + This package contains the OpenOffice.org extension providing + writer2xhtml for OpenOffice.org. Note that OOo contains Writer2LaTeX 0.4 + since 2.0.4 and this disables the internal writer2latex and uses the new + one. + --- writer2latex-1.0.orig/debian/openoffice.org-writer2xhtml.script.bug +++ writer2latex-1.0/debian/openoffice.org-writer2xhtml.script.bug @@ -0,0 +1,4 @@ +#!/bin/sh +# this is a legacy package, so we need to find it first... +id=`/usr/lib/openoffice/program/unopkg list --shared | grep Identifier:.*writer2latex | cut -d":" -f2` +/usr/lib/openoffice/program/unopkg list --shared $id >&3 --- writer2latex-1.0.orig/debian/openoffice.org-writer2latex.lintian-overrides +++ writer2latex-1.0/debian/openoffice.org-writer2latex.lintian-overrides @@ -0,0 +1 @@ +openoffice.org-writer2latex: postinst-uses-db-input --- writer2latex-1.0.orig/debian/openoffice.org-writer2latex.templates.old +++ writer2latex-1.0/debian/openoffice.org-writer2latex.templates.old @@ -0,0 +1,10 @@ +Template: shared/openofficeorg-running +Type: error +_Description: OpenOffice.org running + OpenOffice.org is running right now. This can cause problems with + (de-)registration of components and extensions. + . + You should close all running instances of OpenOffice.org (including + any currently running Quickstarter) before proceeding with the package + upgrade. + --- writer2latex-1.0.orig/debian/rules +++ writer2latex-1.0/debian/rules @@ -0,0 +1,103 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. +# +# Modified to make a template file for a multi-binary package with separated +# build-arch and build-indep targets by Bill Allombert 2001 + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# This has to be exported to make some magic below work. +export DH_OPTIONS + +include /usr/share/dpatch/dpatch.make + +export JAVA_HOME=/usr/lib/jvm/default-java + +configure: configure-stamp +configure-stamp: patch-stamp + dh_testdir + touch configure-stamp + + +build: build-arch build-indep + +build-arch: build-arch-stamp +build-arch-stamp: configure-stamp + + touch $@ + +build-indep: build-indep-stamp +build-indep-stamp: configure-stamp + + ant -DURE_HOME=/usr/lib/ure -DOFFICE_HOME=/usr/lib/openoffice/basis3.2 jar + ant javadoc + ant oxt + touch $@ + +clean: unpatch + dh_testdir + dh_testroot + rm -f build-arch-stamp build-indep-stamp configure-stamp + + ant clean + + dh_clean + +install: install-indep install-arch +install-indep: + dh_testdir + dh_testroot + dh_clean -k -i + dh_installdirs -i + + install -D -m755 debian/openoffice.org-writer2latex.script.bug \ + debian/openoffice.org-writer2latex/usr/share/bug/openoffice.org-writer2latex/script + + dh_install -i + +install-arch: + dh_testdir + dh_testroot + dh_clean -k -s + dh_installdirs -s + + dh_install -s + +binary-common: + dh_testdir + dh_testroot + dh_installchangelogs source/distro/History.txt + dh_installdocs + dh_installexamples -pwriter2latex source/distro/samples/* + dh_installman + dh_installdebconf + dh_link + dh_strip + dh_compress + dh_fixperms + unset DH_OPTIONS; dh_installtex -p writer2latex +# dh_perl +# dh_nativejava + dh_lintian + dh_makeshlibs + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary-indep: build-indep install-indep + $(MAKE) -f debian/rules DH_OPTIONS=-i binary-common + +binary-arch: build-arch install-arch + #$(MAKE) -f debian/rules DH_OPTIONS=-s binary-common + +binary: binary-arch binary-indep +.PHONY: build clean binary-indep binary-arch binary install install-indep install-arch configure --- writer2latex-1.0.orig/debian/patches/03_no_writer2latex_in_extension.dpatch +++ writer2latex-1.0/debian/patches/03_no_writer2latex_in_extension.dpatch @@ -0,0 +1,38 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 03_no_writer2latex_in_extension.dpatch by Rene Engelhard +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: No description. + +@DPATCH@ +diff -urNad writer2latex-0.5~/build.xml writer2latex-0.5/build.xml +--- writer2latex-0.5~/build.xml 2007-11-20 23:25:55.000000000 +0100 ++++ writer2latex-0.5/build.xml 2007-11-20 23:26:27.000000000 +0100 +@@ -100,7 +100,7 @@ + + + ++ includes="META-INF/manifest.xml,w2l_types.xcu,w2l_filters.xcu" /> + + + + + + + + +- +\ No newline at end of file ++ --- writer2latex-1.0.orig/debian/patches/02_BASE64_no_Sunism.dpatch +++ writer2latex-1.0/debian/patches/02_BASE64_no_Sunism.dpatch @@ -0,0 +1,33 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 02_BASE64_no_Sunism.dpatch by Rene Engelhard +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: remove Sunism + +@DPATCH@ +diff -urNad writer2latex-0.5~/build.xml writer2latex-0.5/build.xml +--- writer2latex-0.5~/build.xml 2006-11-02 11:15:42.000000000 +0100 ++++ writer2latex-0.5/build.xml 2007-11-20 21:17:21.000000000 +0100 +@@ -85,7 +85,7 @@ + + + +- ++ + + + +diff -urNad writer2latex-0.5~/source/writer2latex/office/ImageLoader.java writer2latex-0.5/source/writer2latex/office/ImageLoader.java +--- writer2latex-1.0~beta2/source/java/writer2latex/office/ImageLoader.java 2007-04-17 09:30:42.000000000 +0200 ++++ writer2latex-1.0~beta2/source/java/writer2latex/office/ImageLoader.java 2007-11-20 21:18:32.000000000 +0100 +@@ -107,8 +107,8 @@ + } + // TODO: Use another base64 decoder. This one is "nonstandard" + try { +- blob = new sun.misc.BASE64Decoder().decodeBuffer(buf.toString()); +- } catch (IOException e) { ++ blob = org.apache.xerces.impl.dv.util.Base64.decode(buf.toString()); ++ } catch (Exception e) { + System.err.println("Oops - error converting base64"); + } + sMIME = MIMETypes.getMagicMIMEType(blob); --- writer2latex-1.0.orig/debian/patches/04_add_shebang.dpatch +++ writer2latex-1.0/debian/patches/04_add_shebang.dpatch @@ -0,0 +1,15 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 03_add_shebang.dpatch by Rene Engelhard +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: No description. + +@DPATCH@ +diff -urNad writer2latex-1.0~beta2~/source/distro/w2l writer2latex-1.0~beta2/source/distro/w2l +--- writer2latex-1.0~beta2~/source/distro/w2l 2009-04-15 18:36:09.000000000 +0200 ++++ writer2latex-1.0~beta2/source/distro/w2l 2009-04-15 18:36:31.000000000 +0200 +@@ -1,3 +1,4 @@ ++#!/bin/sh + # *Very* simple script to run Writer2LaTeX (unix version) + # Created by Henrik Just, october 2003 + # Modified december 2003 as suggested by Juan Julian Merelo Guervos --- writer2latex-1.0.orig/debian/patches/00list +++ writer2latex-1.0/debian/patches/00list @@ -0,0 +1,3 @@ +01_dirs +#02_BASE64_no_Sunism +04_add_shebang --- writer2latex-1.0.orig/debian/patches/01_dirs.dpatch +++ writer2latex-1.0/debian/patches/01_dirs.dpatch @@ -0,0 +1,27 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 01_dir.dpatch by Rene Engelhard +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: speficy the paths to the office jars and where we install writer2latex +## DP: into + +@DPATCH@ +diff -urNad writer2latex-0.5.0.1~/w2l writer2latex-0.5.0.1/w2l +--- writer2latex-1.0~beta2/source/distro/w2l 2008-07-29 01:19:17.000000000 +0200 ++++ writer2latex-1.0~beta2/source/distro/w2l 2008-07-29 01:20:16.000000000 +0200 +@@ -6,7 +6,7 @@ + + # If writer2latex.jar is not in the same directory as the script, please + # edit the following line to contain the full path to Writer2LaTeX: +-W2LPATH=`dirname $0` ++W2LPATH=/usr/share/java + + # If the required JVM is not in your path, or the path is not set by JAVA_HOME, + # please edit the following line to contain the full path and file name +@@ -19,4 +19,4 @@ + JAVAEXE="$JAVA_HOME/bin/java" + fi + +-$JAVAEXE -jar "$W2LPATH/writer2latex.jar" "$@" +\ Kein Zeilenumbruch am Dateiende. ++$JAVAEXE -jar "$W2LPATH/writer2latex.jar" "$@" --- writer2latex-1.0.orig/debian/po/templates.pot +++ writer2latex-1.0/debian/po/templates.pot @@ -0,0 +1,42 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: openoffice.org@packages.debian.org\n" +"POT-Creation-Date: 2009-10-31 13:04+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: error +#. Description +#: ../openoffice.org-writer2latex.templates:1001 +#: ../openoffice.org-writer2xhtml.templates:100 +msgid "OpenOffice.org running" +msgstr "" + +#. Type: error +#. Description +#: ../openoffice.org-writer2latex.templates:1001 +#: ../openoffice.org-writer2xhtml.templates:100 +msgid "" +"OpenOffice.org is running right now. This can cause problems with (de-)" +"registration of components and extensions." +msgstr "" + +#. Type: error +#. Description +#: ../openoffice.org-writer2latex.templates:1001 +#: ../openoffice.org-writer2xhtml.templates:100 +msgid "" +"You should close all running instances of OpenOffice.org (including any " +"currently running Quickstarter) before proceeding with the package upgrade." +msgstr "" --- writer2latex-1.0.orig/debian/po/fr.po +++ writer2latex-1.0/debian/po/fr.po @@ -0,0 +1,47 @@ +# French Translation of openoffice.org debconf template +# Copyright (C) 2009 Debian French l10n Team +# This file is distributed under the same license as the openoffice.org package. +# Translator: +# L.F. Templeton , 2009. +# +msgid "" +msgstr "" +"Project-Id-Version: openoffice.org_3.1.1-2\n" +"Report-Msgid-Bugs-To: openoffice.org@packages.debian.org\n" +"POT-Creation-Date: 2009-10-31 13:04+0100\n" +"PO-Revision-Date: 2009-10-30 21:05+0100\n" +"Last-Translator: L.F.Templeton \n" +"Language-Team: French \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: error +#. Description +#: ../openoffice.org-writer2latex.templates:1001 +#: ../openoffice.org-writer2xhtml.templates:100 +msgid "OpenOffice.org running" +msgstr "OpenOffice.org actuellement lancé" + +#. Type: error +#. Description +#: ../openoffice.org-writer2latex.templates:1001 +#: ../openoffice.org-writer2xhtml.templates:100 +msgid "" +"OpenOffice.org is running right now. This can cause problems with (de-)" +"registration of components and extensions." +msgstr "" +"OpenOffice.org est actuellement lancé. Cela peut engendrer des problèmes " +"lors de l'ajout (ou suppression) d'extensions et de composants." + +#. Type: error +#. Description +#: ../openoffice.org-writer2latex.templates:1001 +#: ../openoffice.org-writer2xhtml.templates:100 +msgid "" +"You should close all running instances of OpenOffice.org (including any " +"currently running Quickstarter) before proceeding with the package upgrade." +msgstr "" +"Vous devriez fermer toutes les instances d'OpenOffice.org actuellement " +"ouvertes (y compris les Quickstarter) avant de mettre à jour le paquet." + --- writer2latex-1.0.orig/debian/po/de.po +++ writer2latex-1.0/debian/po/de.po @@ -0,0 +1,45 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2009 Rene Engelhard +# This file is distributed under the same license as the openoffice.org package. +# Rene Engelhard , 2009 +# +msgid "" +msgstr "" +"Project-Id-Version: openoffice.org 1:3.1.1-6\n" +"Report-Msgid-Bugs-To: openoffice.org@packages.debian.org\n" +"POT-Creation-Date: 2009-10-31 13:04+0100\n" +"PO-Revision-Date: 2009-10-24 12:42+0200\n" +"Last-Translator: Rene Engelhard \n" +"Language-Team: GERMAN \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: error +#. Description +#: ../openoffice.org-writer2latex.templates:1001 +#: ../openoffice.org-writer2xhtml.templates:100 +msgid "OpenOffice.org running" +msgstr "OpenOffice.org läuft" + +#. Type: error +#. Description +#: ../openoffice.org-writer2latex.templates:1001 +#: ../openoffice.org-writer2xhtml.templates:100 +msgid "" +"OpenOffice.org is running right now. This can cause problems with (de-)" +"registration of components and extensions." +msgstr "" +"OpenOffice.org läuft momentan. Das kann Probleme beim (De-)Registrieren von " +"Erweiterungen und Komponenten verursachen." + +#. Type: error +#. Description +#: ../openoffice.org-writer2latex.templates:1001 +#: ../openoffice.org-writer2xhtml.templates:100 +msgid "" +"You should close all running instances of OpenOffice.org (including any " +"currently running Quickstarter) before proceeding with the package upgrade." +msgstr "" +"Sie sollten alle laufenden Instanzen von OpenOffice.org (inkl. einem " +"laufenden Quickstarter) beenden bevor Sie mit dem Paket-Upgrade fortfahren" --- writer2latex-1.0.orig/debian/po/pt.po +++ writer2latex-1.0/debian/po/pt.po @@ -0,0 +1,46 @@ +# Portuguese translation for openoffice.org debconf messages. +# Copyright (C) 2009 The openoffice.org authors +# This file is distributed under the same license as the openoffice.org package. +# Pedro Ribeiro , 2009 +# +msgid "" +msgstr "" +"Project-Id-Version: openoffice.org_1:3.1.1-5\n" +"Report-Msgid-Bugs-To: openoffice.org@packages.debian.org\n" +"POT-Creation-Date: 2009-10-31 13:04+0100\n" +"PO-Revision-Date: 2009-10-25 20:45+0000\n" +"Last-Translator: Pedro Ribeiro \n" +"Language-Team: Portuguese\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: error +#. Description +#: ../openoffice.org-writer2latex.templates:1001 +#: ../openoffice.org-writer2xhtml.templates:100 +msgid "OpenOffice.org running" +msgstr "O OpenOffice.org está a ser executado" + +#. Type: error +#. Description +#: ../openoffice.org-writer2latex.templates:1001 +#: ../openoffice.org-writer2xhtml.templates:100 +msgid "" +"OpenOffice.org is running right now. This can cause problems with (de-)" +"registration of components and extensions." +msgstr "" +"O OpenOffice.org está neste momento a ser executado. Isto pode causar " +"problemas com o (des-)registo de componentes e extensões." + +#. Type: error +#. Description +#: ../openoffice.org-writer2latex.templates:1001 +#: ../openoffice.org-writer2xhtml.templates:100 +msgid "" +"You should close all running instances of OpenOffice.org (including any " +"currently running Quickstarter) before proceeding with the package upgrade." +msgstr "" +"Deve encerrar todas as cópias em execução do OpenOffice.org (incluindo " +"qualquer cópia do Quickstarter) antes de continuar com a actualização do " +"pacote." --- writer2latex-1.0.orig/debian/po/cs.po +++ writer2latex-1.0/debian/po/cs.po @@ -0,0 +1,45 @@ +# Czech translation of PO debconf template for openoffice.org. +# Copyright (C) 2009 Michal Simunek +# This file is distributed under the same license as the openoffice.org package. +# Michal Simunek , 2009. +# +msgid "" +msgstr "" +"Project-Id-Version: openoffice.org 1:3.1.1-6\n" +"Report-Msgid-Bugs-To: openoffice.org@packages.debian.org\n" +"POT-Creation-Date: 2009-10-31 13:04+0100\n" +"PO-Revision-Date: 2009-10-25 16:04+0100\n" +"Last-Translator: Michal Simunek \n" +"Language-Team: Czech \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: error +#. Description +#: ../openoffice.org-writer2latex.templates:1001 +#: ../openoffice.org-writer2xhtml.templates:100 +msgid "OpenOffice.org running" +msgstr "OpenOffice.org je spuštěn" + +#. Type: error +#. Description +#: ../openoffice.org-writer2latex.templates:1001 +#: ../openoffice.org-writer2xhtml.templates:100 +msgid "" +"OpenOffice.org is running right now. This can cause problems with (de-)" +"registration of components and extensions." +msgstr "" +"OpenOffice.org je nyní spuštěn. To může způsobit problémy při (od)registraci " +"komponent a rozšíření." + +#. Type: error +#. Description +#: ../openoffice.org-writer2latex.templates:1001 +#: ../openoffice.org-writer2xhtml.templates:100 +msgid "" +"You should close all running instances of OpenOffice.org (including any " +"currently running Quickstarter) before proceeding with the package upgrade." +msgstr "" +"Před provedením aktualizaci balíčku by jste měli zavřít všechny spuštěné " +"instance OpenOffice.org (včetně všech spuštěných instancí Rychlého spuštění)." --- writer2latex-1.0.orig/debian/po/ja.po +++ writer2latex-1.0/debian/po/ja.po @@ -0,0 +1,44 @@ +# Japanese translation of openoffice.org debconf templates. +# Copyright (C) 2009 Hideki Yamane +# This file is distributed under the same license as openoffice.org package. +# +msgid "" +msgstr "" +"Project-Id-Version: openoffice.org 1:3.1.1-6\n" +"Report-Msgid-Bugs-To: openoffice.org@packages.debian.org\n" +"POT-Creation-Date: 2009-10-31 13:04+0100\n" +"PO-Revision-Date: 2009-10-25 06:52+0900\n" +"Last-Translator: Hideki Yamane (Debian-JP) \n" +"Language-Team: Japanese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: error +#. Description +#: ../openoffice.org-writer2latex.templates:1001 +#: ../openoffice.org-writer2xhtml.templates:100 +msgid "OpenOffice.org running" +msgstr "OpenOffice.org が動作しています" + +#. Type: error +#. Description +#: ../openoffice.org-writer2latex.templates:1001 +#: ../openoffice.org-writer2xhtml.templates:100 +msgid "" +"OpenOffice.org is running right now. This can cause problems with (de-)" +"registration of components and extensions." +msgstr "" +"今現在 OpenOffice.org が動作しています。このためコンポーネントや拡張機能の登" +"録・解除に問題が生じる可能性があります。" + +#. Type: error +#. Description +#: ../openoffice.org-writer2latex.templates:1001 +#: ../openoffice.org-writer2xhtml.templates:100 +msgid "" +"You should close all running instances of OpenOffice.org (including any " +"currently running Quickstarter) before proceeding with the package upgrade." +msgstr "" +"パッケージのアップグレードを続ける前に、(クイック起動を含めた) 動作中の " +"OpenOffice.org プログラムを全て終了してください。" --- writer2latex-1.0.orig/debian/po/fi.po +++ writer2latex-1.0/debian/po/fi.po @@ -0,0 +1,46 @@ +# Copyright (C) 2009 +# This file is distributed under the same license as the openoffice.org package. +# +# Esko Arajärvi , 2009. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: openoffice.org@packages.debian.org\n" +"POT-Creation-Date: 2009-10-31 13:04+0100\n" +"PO-Revision-Date: 2009-11-02 21:16+0200\n" +"Last-Translator: Esko Arajärvi \n" +"Language-Team: Finnish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Lokalize 1.0\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. Type: error +#. Description +#: ../openoffice.org-writer2latex.templates:1001 +#: ../openoffice.org-writer2xhtml.templates:100 +msgid "OpenOffice.org running" +msgstr "OpenOffice.org käynnissä" + +#. Type: error +#. Description +#: ../openoffice.org-writer2latex.templates:1001 +#: ../openoffice.org-writer2xhtml.templates:100 +msgid "" +"OpenOffice.org is running right now. This can cause problems with (de-)" +"registration of components and extensions." +msgstr "" +"OpenOffice.org on parhaillaan käynnissä. Tämä voi aiheuttaa ongelmia " +"komponenttien ja laajennosten lisäyksen tai poiston kanssa." + +#. Type: error +#. Description +#: ../openoffice.org-writer2latex.templates:1001 +#: ../openoffice.org-writer2xhtml.templates:100 +msgid "" +"You should close all running instances of OpenOffice.org (including any " +"currently running Quickstarter) before proceeding with the package upgrade." +msgstr "" +"Sulje kaikki OpenOffice.orgin käynnissä olevat instanssit (mukaan lukien " +"Quickstarterit) ennen kuin jatkat paketin päivitystä." --- writer2latex-1.0.orig/debian/po/ar.po +++ writer2latex-1.0/debian/po/ar.po @@ -0,0 +1,47 @@ +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Ossama M. Khayat , 2009. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: openoffice.org@packages.debian.org\n" +"POT-Creation-Date: 2009-10-31 13:04+0100\n" +"PO-Revision-Date: 2009-10-26 00:06+0300\n" +"Last-Translator: Ossama M. Khayat \n" +"Language-Team: Arabic \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Lokalize 1.0\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. Type: error +#. Description +#: ../openoffice.org-writer2latex.templates:1001 +#: ../openoffice.org-writer2xhtml.templates:100 +msgid "OpenOffice.org running" +msgstr "أوبن أوفيس يعمل حالياً" + +#. Type: error +#. Description +#: ../openoffice.org-writer2latex.templates:1001 +#: ../openoffice.org-writer2xhtml.templates:100 +msgid "" +"OpenOffice.org is running right now. This can cause problems with (de-)" +"registration of components and extensions." +msgstr "" +"أوبن أوفيس يعمل حالياً. وقد يتسبب هذا بمشاكل أثناء تسجيل أو إزالة تسجيل " +"المكوّنات والإضافات." + +#. Type: error +#. Description +#: ../openoffice.org-writer2latex.templates:1001 +#: ../openoffice.org-writer2xhtml.templates:100 +msgid "" +"You should close all running instances of OpenOffice.org (including any " +"currently running Quickstarter) before proceeding with the package upgrade." +msgstr "" +"يجب أن تغلق جميع برامج أوبن أوفيس (بما في ذلك أي برنامج تشغيل سريع يعمل " +"حالياً) قد الاستمرار بترقية الحزمة." --- writer2latex-1.0.orig/debian/po/it.po +++ writer2latex-1.0/debian/po/it.po @@ -0,0 +1,47 @@ +# ITALIAN TRANSLATION OF OPENOFFICE.ORG PO-DEBCONFIG. +# COPYRIGHT (C) 2009 THE OPENOFFICE.ORG'S COPYRIGHT HOLDER +# This file is distributed under the same license as the OpenOffice.org package. +# +# Vincenzo Campanella , 2009. +# +msgid "" +msgstr "" +"Project-Id-Version: OPENOFFICE.ORG 1:3.1.1-6\n" +"Report-Msgid-Bugs-To: openoffice.org@packages.debian.org\n" +"POT-Creation-Date: 2009-10-31 13:04+0100\n" +"PO-Revision-Date: 2009-10-28 08:27+0100\n" +"Last-Translator: Vincenzo Campanella \n" +"Language-Team: Italian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: error +#. Description +#: ../openoffice.org-writer2latex.templates:1001 +#: ../openoffice.org-writer2xhtml.templates:100 +msgid "OpenOffice.org running" +msgstr "OpenOffice.org è in esecuzione" + +#. Type: error +#. Description +#: ../openoffice.org-writer2latex.templates:1001 +#: ../openoffice.org-writer2xhtml.templates:100 +msgid "" +"OpenOffice.org is running right now. This can cause problems with (de-)" +"registration of components and extensions." +msgstr "" +"Attualmente OpenOffice.org è in esecuzione. Questo potrebbe causare problemi " +"con la (de-)registrazione delle componenti e delle estensioni." + +#. Type: error +#. Description +#: ../openoffice.org-writer2latex.templates:1001 +#: ../openoffice.org-writer2xhtml.templates:100 +msgid "" +"You should close all running instances of OpenOffice.org (including any " +"currently running Quickstarter) before proceeding with the package upgrade." +msgstr "" +"È necessario chiudere tutte le istanze di OpenOffice.org, incluso l'avvio " +"rapido se attualmente in esecuzione, prima di procedere con l'aggiornamento " +"del pacchetto." --- writer2latex-1.0.orig/debian/po/ru.po +++ writer2latex-1.0/debian/po/ru.po @@ -0,0 +1,48 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2009 Rail Aliev +# This file is distributed under the same license as the openoffice.org package. +# Rail Aliev , 2009. +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: openoffice.org@packages.debian.org\n" +"POT-Creation-Date: 2009-10-31 13:04+0100\n" +"PO-Revision-Date: 2009-10-26 11:54+0400\n" +"Last-Translator: Rail Aliev \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ru\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: Virtaal 0.4.1\n" + +#. Type: error +#. Description +#: ../openoffice.org-writer2latex.templates:1001 +#: ../openoffice.org-writer2xhtml.templates:100 +msgid "OpenOffice.org running" +msgstr "OpenOffice.org запущен" + +#. Type: error +#. Description +#: ../openoffice.org-writer2latex.templates:1001 +#: ../openoffice.org-writer2xhtml.templates:100 +msgid "" +"OpenOffice.org is running right now. This can cause problems with (de-)" +"registration of components and extensions." +msgstr "" +"OpenOffice.org в данный момент запущен. Установка и удаление расширений при " +"работающем OpenOffice.org невозможна, а регистрация компонентов может " +"привести к проблемам." + +#. Type: error +#. Description +#: ../openoffice.org-writer2latex.templates:1001 +#: ../openoffice.org-writer2xhtml.templates:100 +msgid "" +"You should close all running instances of OpenOffice.org (including any " +"currently running Quickstarter) before proceeding with the package upgrade." +msgstr "" +"Перед обновлением пакета завершите все запущенные копии OpenOffice.org " +"(включая быстрый запуск)." --- writer2latex-1.0.orig/debian/po/gl.po +++ writer2latex-1.0/debian/po/gl.po @@ -0,0 +1,47 @@ +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Marce Villarino , 2009. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: openoffice.org@packages.debian.org\n" +"POT-Creation-Date: 2009-10-31 13:04+0100\n" +"PO-Revision-Date: 2009-11-07 19:54+0100\n" +"Last-Translator: Marce Villarino \n" +"Language-Team: Galician \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Lokalize 1.0\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" + +#. Type: error +#. Description +#: ../openoffice.org-writer2latex.templates:1001 +#: ../openoffice.org-writer2xhtml.templates:100 +msgid "OpenOffice.org running" +msgstr "OpenOffice.org está a executarse" + +#. Type: error +#. Description +#: ../openoffice.org-writer2latex.templates:1001 +#: ../openoffice.org-writer2xhtml.templates:100 +msgid "" +"OpenOffice.org is running right now. This can cause problems with (de-)" +"registration of components and extensions." +msgstr "" +"OpenOffice.org está a executarse nestes momentos. Isto pode traer problemas " +"co (des)rexistro das compoñentes e extensións." + +#. Type: error +#. Description +#: ../openoffice.org-writer2latex.templates:1001 +#: ../openoffice.org-writer2xhtml.templates:100 +msgid "" +"You should close all running instances of OpenOffice.org (including any " +"currently running Quickstarter) before proceeding with the package upgrade." +msgstr "" +"Debería pechar todas as instancias de OpenOffice.org en execución (incluíndo " +"calquera Quickstarter que se estea a executar) antes de continuar coa " +"actualización do paquete." --- writer2latex-1.0.orig/debian/po/eu.po +++ writer2latex-1.0/debian/po/eu.po @@ -0,0 +1,49 @@ +# translation of eu.po to +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# Piarres Beobide , 2009. +# Iñaki Larrañaga Murgoitio , 2009. +msgid "" +msgstr "" +"Project-Id-Version: eu\n" +"Report-Msgid-Bugs-To: openoffice.org@packages.debian.org\n" +"POT-Creation-Date: 2009-10-31 13:04+0100\n" +"PO-Revision-Date: 2009-10-29 12:28+0200\n" +"Last-Translator: Piarres Beobide \n" +"Language-Team: Euskara +# This file is distributed under the same license as the openoffice.org package. +# Rail Aliev , 2009. +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: openoffice.org@packages.debian.org\n" +"POT-Creation-Date: 2009-10-31 13:04+0100\n" +"PO-Revision-Date: 2009-10-26 11:51+0400\n" +"Last-Translator: Rail Aliev \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tr\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Virtaal 0.4.1\n" + +#. Type: error +#. Description +#: ../openoffice.org-writer2latex.templates:1001 +#: ../openoffice.org-writer2xhtml.templates:100 +msgid "OpenOffice.org running" +msgstr "OpenOffice.org çalışıyor" + +#. Type: error +#. Description +#: ../openoffice.org-writer2latex.templates:1001 +#: ../openoffice.org-writer2xhtml.templates:100 +msgid "" +"OpenOffice.org is running right now. This can cause problems with (de-)" +"registration of components and extensions." +msgstr "" +"OpenOffice.org şu anda çalışıyor. Çalışan OpenOffice.org eklentilerin " +"kurulum ve kaldırmasını imkansız kılıyor ve bileşenlerin kaydı sırasında " +"sorunlara yol açabilir." + +#. Type: error +#. Description +#: ../openoffice.org-writer2latex.templates:1001 +#: ../openoffice.org-writer2xhtml.templates:100 +msgid "" +"You should close all running instances of OpenOffice.org (including any " +"currently running Quickstarter) before proceeding with the package upgrade." +msgstr "" +"Paket yükseltme işleminden önce tüm çalışan OpenOffice.org süreçlerini " +"(çalışan hızlı başlatıcı dahil) sonlandırmalısınız." --- writer2latex-1.0.orig/debian/po/sv.po +++ writer2latex-1.0/debian/po/sv.po @@ -0,0 +1,47 @@ +# Translation of openoffice.org debconf template to Swedish +# Copyright © 2009 Martin Bagge +# This file is distributed under the same license as the openoffice.org package. +# +# Martin Bagge , 2009 +msgid "" +msgstr "" +"Project-Id-Version: openoffice.org\n" +"Report-Msgid-Bugs-To: openoffice.org@packages.debian.org\n" +"POT-Creation-Date: 2009-10-31 13:04+0100\n" +"PO-Revision-Date: 2009-10-26 00:31+0100\n" +"Last-Translator: Martin Bagge \n" +"Language-Team: Swedish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: Swedish\n" +"X-Poedit-Country: Sweden\n" + +#. Type: error +#. Description +#: ../openoffice.org-writer2latex.templates:1001 +#: ../openoffice.org-writer2xhtml.templates:100 +msgid "OpenOffice.org running" +msgstr "OpenOffice.org körs" + +#. Type: error +#. Description +#: ../openoffice.org-writer2latex.templates:1001 +#: ../openoffice.org-writer2xhtml.templates:100 +msgid "" +"OpenOffice.org is running right now. This can cause problems with (de-)" +"registration of components and extensions." +msgstr "" +"OpenOffice.org kärs just nu. Detta kan ställa till problem med (av-)" +"registreringen av komponenter och utökningar." + +#. Type: error +#. Description +#: ../openoffice.org-writer2latex.templates:1001 +#: ../openoffice.org-writer2xhtml.templates:100 +msgid "" +"You should close all running instances of OpenOffice.org (including any " +"currently running Quickstarter) before proceeding with the package upgrade." +msgstr "" +"Stäng alla instanser av OpenOffice.org som körs (inklusive alla Quickstarter " +"som körs) innan du går vidare med paketuppdateringen." --- writer2latex-1.0.orig/debian/po/es.po +++ writer2latex-1.0/debian/po/es.po @@ -0,0 +1,67 @@ +# openoffice.org po-debconf translation to Spanish +# Copyright (C) 2009 Software in the Public Interest +# This file is distributed under the same license as the openoffice.org package. +# +# Changes: +# - Initial translation +# Francisco Javier Cuadrado , 2009 +# +# Traductores, si no conocen el formato PO, merece la pena leer la +# documentación de gettext, especialmente las secciones dedicadas a este +# formato, por ejemplo ejecutando: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Equipo de traducción al español, por favor, lean antes de traducir +# los siguientes documentos: +# +# - El proyecto de traducción de Debian al español +# http://www.debian.org/intl/spanish/ +# especialmente las notas de traducción en +# http://www.debian.org/intl/spanish/notas +# +# - La guía de traducción de po's de debconf: +# /usr/share/doc/po-debconf/README-trans +# o http://www.debian.org/intl/l10n/po-debconf/README-trans +# +msgid "" +msgstr "" +"Project-Id-Version: openoffice.org 1:3.1.1-6\n" +"Report-Msgid-Bugs-To: openoffice.org@packages.debian.org\n" +"POT-Creation-Date: 2009-10-31 13:04+0100\n" +"PO-Revision-Date: 2009-10-26 09:00+0100\n" +"Last-Translator: Francisco Javier Cuadrado \n" +"Language-Team: Debian l10n Spanish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: error +#. Description +#: ../openoffice.org-writer2latex.templates:1001 +#: ../openoffice.org-writer2xhtml.templates:100 +msgid "OpenOffice.org running" +msgstr "OpenOffice.org se está ejecutando" + +#. Type: error +#. Description +#: ../openoffice.org-writer2latex.templates:1001 +#: ../openoffice.org-writer2xhtml.templates:100 +msgid "" +"OpenOffice.org is running right now. This can cause problems with (de-)" +"registration of components and extensions." +msgstr "" +"OpenOffice.org se está ejecutando ahora mismo. Esto puede causar problemas " +"con el registro o borrado de componentes y extensiones." + +#. Type: error +#. Description +#: ../openoffice.org-writer2latex.templates:1001 +#: ../openoffice.org-writer2xhtml.templates:100 +msgid "" +"You should close all running instances of OpenOffice.org (including any " +"currently running Quickstarter) before proceeding with the package upgrade." +msgstr "" +"Debería cerrar todas las instancias de OpenOffice.org (incluyendo cualquier " +"Quickstarter actualmente en ejecución) antes de proceder con la " +"actualización del paquete." --- writer2latex-1.0.orig/debian/po/POTFILES.in +++ writer2latex-1.0/debian/po/POTFILES.in @@ -0,0 +1,3 @@ +[type: gettext/rfc822deb] openoffice.org-writer2latex.templates +[type: gettext/rfc822deb] openoffice.org-writer2xhtml.templates + --- writer2latex-1.0.orig/debian/po/zh_CN.po +++ writer2latex-1.0/debian/po/zh_CN.po @@ -0,0 +1,43 @@ +# Simplified Chinese translations to openoffice-debconf +# Copyright (C) 2009 Free Software Foundation, Inc. +# This file is distributed under the same license as the openoffice package. +# Aron Xu , 2009. +# +msgid "" +msgstr "" +"Project-Id-Version: openoffice debconf\n" +"Report-Msgid-Bugs-To: openoffice.org@packages.debian.org\n" +"POT-Creation-Date: 2009-10-31 13:04+0100\n" +"PO-Revision-Date: 2009-10-25 13:20+0800\n" +"Last-Translator: Aron Xu \n" +"Language-Team: Chinese (simplified) \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: error +#. Description +#: ../openoffice.org-writer2latex.templates:1001 +#: ../openoffice.org-writer2xhtml.templates:100 +msgid "OpenOffice.org running" +msgstr "OpenOffice.org 正在运行" + +#. Type: error +#. Description +#: ../openoffice.org-writer2latex.templates:1001 +#: ../openoffice.org-writer2xhtml.templates:100 +msgid "" +"OpenOffice.org is running right now. This can cause problems with (de-)" +"registration of components and extensions." +msgstr "OpenOffice.org 正在运行。此时重新注册或者卸载组建和扩展会导致问题。" + +#. Type: error +#. Description +#: ../openoffice.org-writer2latex.templates:1001 +#: ../openoffice.org-writer2xhtml.templates:100 +msgid "" +"You should close all running instances of OpenOffice.org (including any " +"currently running Quickstarter) before proceeding with the package upgrade." +msgstr "" +"您应当关闭所有正在运行的 OpenOffice.org 实例(包括快速启动),然后再进行软件包" +"升级。"