--- jsmath-3.6c.orig/debian/compat +++ jsmath-3.6c/debian/compat @@ -0,0 +1 @@ +5 --- jsmath-3.6c.orig/debian/jsmath.postinst +++ jsmath-3.6c/debian/jsmath.postinst @@ -0,0 +1,50 @@ +#!/bin/sh +# +# jsmath postinst script, based on gallery's postinst. Since it was +# simplified to make it lintian quiet, it can be reorganized to make +# it much shorter. But I kept original layout in case if I decide to +# revert to the way gallery handles server restarts # +# -- yoh + +set -e + +. /usr/share/debconf/confmodule + + +if [ "$1" = "configure" ]; then + + db_get jsmath/webserver + webservers="$RET" + restart="" + + for webserver in $webservers; do + webserver=${webserver%,} + test -x /usr/sbin/$webserver || continue + + case "$webserver" in + apache|apache-perl|apache-ssl|apache2) + test -d /etc/$webserver/conf.d || continue + if [ ! -f /etc/$webserver/conf.d/jsmath -a ! -h /etc/$webserver/conf.d/jsmath ]; then + ln -s /etc/jsmath/apache.conf /etc/$webserver/conf.d/jsmath + fi + db_get jsmath/restart + if [ "$RET" = "true" ]; then + restart="$restart $webserver" + fi + ;; + esac + done + + db_stop + + for webserver in $restart; do + webserver=${webserver%,} + if [ -x /usr/sbin/invoke-rc.d ]; then + invoke-rc.d $webserver restart + else + /etc/init.d/$webserver restart + fi + done +fi + +#DEBHELPER# --- jsmath-3.6c.orig/debian/changelog +++ jsmath-3.6c/debian/changelog @@ -0,0 +1,106 @@ +jsmath (3.6c-1.1) unstable; urgency=low + + * Non-maintainer upload. + * Fix pending l10n issues. Debconf translations: + - Spanish (Ricardo Fraile). Closes: #584198 + - Danish (Joe Hansen). Closes: #620820 + + -- Christian Perrier Tue, 12 Apr 2011 07:21:55 +0200 + +jsmath (3.6c-1) unstable; urgency=low + + * New upstream release + * dh compatibility 5 (the lowest supported) + * [INTL:ja] Japanese po-debconf (Closes: #556611) and please pardon the delay. + * Boosted policy to 3.8.4 -- nothing seems to be due. + * Fixed spelling in README.Debian + + -- Yaroslav Halchenko Sun, 14 Mar 2010 23:44:04 -0400 + +jsmath (3.6b-1) unstable; urgency=low + + * New upstream release + * Boosted policy to somewhat recent 3.8.0: + - Homepage field in the header + - Updated copyright years + - Shortned listing of the Apache license and referred to the installed + copy + * Fixed up jsmath.postrm (thanks lintian) + + -- Yaroslav Halchenko Mon, 16 Mar 2009 23:23:03 -0400 + +jsmath (3.4f-2) unstable; urgency=low + + * [INTL:sv] Swedish strings for jsmath debconf (Closes: #504249) + (Thanks Martin Bagge) + * All .po files were updated by the recent debconf-updatepo (1.0.15) + + -- Yaroslav Halchenko Fri, 12 Dec 2008 23:21:29 -0500 + +jsmath (3.4f-1) unstable; urgency=low + + * New upstream release + * Dutch debconf translation (Thanks cobaco (aka Bart Cornelis)) + (closes: #448123) + + -- Yaroslav Halchenko Thu, 08 Nov 2007 11:49:21 -0500 + +jsmath (3.4e-1) unstable; urgency=low + + * New upstream release + + -- Yaroslav Halchenko Thu, 04 Oct 2007 10:57:02 -0400 + +jsmath (3.4c-1) unstable; urgency=low + + * New upstream release + * [INTL:pt] Portuguese translation for debconf messages (Closes: + #435501) (Thanks A. Monteiro) + + -- Yaroslav Halchenko Sun, 05 Aug 2007 21:52:45 -0400 + +jsmath (3.4a-1) unstable; urgency=low + + * New upstream release + + -- Yaroslav Halchenko Sat, 05 May 2007 17:32:59 -0400 + +jsmath (3.4-1) unstable; urgency=low + + * New upstream release + * Conditional use of debconf in postrm (Closes: #416792). Thanks + Michael Ablassmeier. + * Adjusted debian/watch to use sf's repository of jsMath. + + -- Yaroslav Halchenko Fri, 6 Apr 2007 19:52:35 -0400 + +jsmath (3.3g-4) unstable; urgency=low + + * [l10n] Czech translation for jsMath (Closes: #408694). Thanks Jakub + Kasparec + * Recommends rather than depends on web server since it can be used + stand alone (to browse saved HTML files which use jsMath) + + -- Yaroslav Halchenko Sun, 28 Jan 2007 12:58:13 -0500 + +jsmath (3.3g-3) unstable; urgency=low + + * French debconf templates translation (Closes: #402269). Thanks Jean-Luc + Coulon + * Initial Russian debconf templates translation (Thanks Yuri Kozlov for + proofreading and corrections) + + -- Yaroslav Halchenko Sun, 28 Jan 2007 12:58:01 -0500 + +jsmath (3.3g-2) unstable; urgency=low + + * [INTL:de] German po-debconf template translation (Closes: #399436,#399434) + + -- Yaroslav Halchenko Wed, 6 Dec 2006 22:01:58 -0500 + +jsmath (3.3g-1) unstable; urgency=low + + * Initial release (Closes: #391342) + + -- Yaroslav Halchenko Thu, 19 Oct 2006 20:58:52 -0400 + --- jsmath-3.6c.orig/debian/jsmath.postrm +++ jsmath-3.6c/debian/jsmath.postrm @@ -0,0 +1,62 @@ +#! /bin/sh +# +# jsmath postrm script, based on gallery's postrm +# + +set -e + +if [ -f /usr/share/debconf/confmodule ]; then + . /usr/share/debconf/confmodule +fi + +if [ "$1" = "purge" ]; then + + db_get jsmath/reconfigure || true + + for websvrs in apache apache-perl apache-ssl apache2; do + rm -f /etc/$websvrs/conf.d/jsmath + done + + webservers="$RET" + restart="" + + for webserver in $webservers; do + webserver=${webserver%,} + + case "$webserver" in + apache|apache-perl|apache-ssl|apache2) + rm -f /etc/$webserver/conf.d/jsmath + test -x /usr/sbin/$webserver || continue + db_reset jsmath/restart + db_subst jsmath/restart webserver "$webserver" + db_input high jsmath/restart || true + db_go + db_get jsmath/restart-webserver + if [ "$RET" = "true" ]; then + restart="$restart $webserver" + fi + ;; + esac + done + + rmdir --ignore-fail-on-non-empty /etc/jsmath || true +fi + +if [ "$1" = purge ] && [ -e /usr/share/debconf/confmodule ]; then + . /usr/share/debconf/confmodule + db_purge +fi + +if [ "$1" = "purge" ]; then + for webserver in $restart; do + webserver=${webserver%,} + if [ -x /usr/sbin/invoke-rc.d ]; then + invoke-rc.d $webserver restart + else + /etc/init.d/$webserver restart + fi + done +fi + + +#DEBHELPER# --- jsmath-3.6c.orig/debian/dirs +++ jsmath-3.6c/debian/dirs @@ -0,0 +1,2 @@ +usr/bin +usr/sbin --- jsmath-3.6c.orig/debian/watch +++ jsmath-3.6c/debian/watch @@ -0,0 +1,10 @@ +# Watch control file for uscan +# See uscan(1) for format + +# Compulsory line, this is a version 3 file +version=3 + +# Uncommment to examine a FTP server +http://sf.net/jsmath/ jsMath-([0-9].*)\.zip debian dh_wraporig + + --- jsmath-3.6c.orig/debian/control +++ jsmath-3.6c/debian/control @@ -0,0 +1,24 @@ +Source: jsmath +Section: web +Priority: optional +Maintainer: Yaroslav Halchenko +Build-Depends: debhelper (>= 4.1.16), po-debconf, unzip +Standards-Version: 3.8.4 +Homepage: http://www.math.union.edu/~dpvc/jsMath +Vcs-Browser: http://jsmath.cvs.sourceforge.net/jsmath/ +Vcs-CVS: :pserver:anonymous@jsmath.cvs.sourceforge.net:/cvsroot/jsmath + +Package: jsmath +Architecture: all +Depends: ${misc:Depends}, debconf (>= 0.2.26) | debconf-2.0 +Recommends: apache | apache-ssl | apache-perl | apache2 | httpd, jsmath-fonts +Suggests: jsmath-fonts-sprite +Description: TeX equations in HTML documents + Provides a method of including mathematics in HTML pages that works + across multiple browsers under Windows, Macintosh OS X, Linux and + other flavors of Unix. It overcomes a number of the shortcomings of + the traditional method of using images to represent mathematics: + jsMath uses native fonts, so they resize when you change the size of + the text in your browser, they print at the full resolution of your + printer, and you don't have to wait for dozens of images to be + downloaded in order to see the mathematics in a web page. --- jsmath-3.6c.orig/debian/apache.conf +++ jsmath-3.6c/debian/apache.conf @@ -0,0 +1,9 @@ +# +# Traditional alias for jsMath sources +# +Alias /jsMath /usr/share/jsmath + + + Options FollowSymLinks -Indexes + AllowOverride Limit Options FileInfo + --- jsmath-3.6c.orig/debian/README.Debian-source +++ jsmath-3.6c/debian/README.Debian-source @@ -0,0 +1,16 @@ +README on source packaging of jsmath: +-------------------------------------------------------------- + +The source tarball of the package was generated by +dh_wraporig v.0.1.363 script which +can be obtained from alioth's exppsy project repository: +http://svn.debian.org/wsvn/pkg-exppsy/tools/dh_wraporig + +For this package dh_wraporig performed following actions: +* Wrapped into a gzipped tarball provided file + md5:9f7fb6b0f0e6afb4915984db4b05bb70 ../jsMath-3.6c.zip +* Additional parameters for tar on tarball creation were: + --exclude *~ + +* Afterwards command 'svn-upgrade' has been run + --- jsmath-3.6c.orig/debian/copyright +++ jsmath-3.6c/debian/copyright @@ -0,0 +1,30 @@ +This package was debianized by Yaroslav Halchenko + on Thu, 19 Oct 2006 20:58:52 -0400. + +It was downloaded from +http://www.math.union.edu/~dpvc/jsMath/download/jsMath.html + +Upstream Author: Davide P. Cervone + +Copyright: 2004-2008 Davide P. Cervone + +License: + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + For a complete copy of Apache license on the Debian system see + /usr/share/common-licenses/Apache-2.0 . + +The Debian packaging is (C) 2006-2009, Yaroslav Halchenko + and is licensed under the GPL version 2, see +`/usr/share/common-licenses/GPL-2'. --- jsmath-3.6c.orig/debian/dh_wraporig.local +++ jsmath-3.6c/debian/dh_wraporig.local @@ -0,0 +1,3 @@ +source= +do_create_readme=yes +call=svn-upgrade --- jsmath-3.6c.orig/debian/jsmath.templates +++ jsmath-3.6c/debian/jsmath.templates @@ -0,0 +1,18 @@ +Template: jsmath/webserver +Type: multiselect +Choices: apache, apache-ssl, apache-perl, apache2 +Default: apache, apache-ssl, apache-perl, apache2 +_Description: Which web server would you like to reconfigure automatically: + If you do not select a web server to reconfigure automatically, jsMath + will not be usable until you reconfigure your webserver to enable + jsMath. + . + Enabled web servers will have jsMath available at /jsMath. + +Template: jsmath/restart +Type: boolean +Default: false +_Description: Should web servers be restarted? + Remember that in order to activate the new configuration + a web server has to be restarted. You can also restart web servers by + manually executing invoke-rc.d restart. --- jsmath-3.6c.orig/debian/jsmath.config +++ jsmath-3.6c/debian/jsmath.config @@ -0,0 +1,16 @@ +#!/bin/bash + +set -e + +action=$1 +version=$2 + +# Source debconf library. +. /usr/share/debconf/confmodule +db_version 2.0 || [ 0 -lt 30 ] + + db_input medium jsmath/webserver || true + db_go || true + db_input high jsmath/restart || true + db_go + --- jsmath-3.6c.orig/debian/rules +++ jsmath-3.6c/debian/rules @@ -0,0 +1,62 @@ +#!/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. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +DESTDIR=$(CURDIR)/debian/jsmath +JSMDIR=$(DESTDIR)/usr/share/jsmath +JSMCONFDIR=$(DESTDIR)/etc/jsmath + +build: build-stamp + +build-stamp: + dh_testdir + unzip -q jsMath-*.zip + touch build-stamp + +clean: + dh_testdir + dh_testroot + # should run updatepo somewhere here according to man po-debconf(7) + debconf-updatepo + rm -f build-stamp + rm -rf jsMath + dh_clean + +install: + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + install -m 755 -d $(JSMDIR) + install -m 755 -d $(JSMCONFDIR) + cp -rp jsMath/* $(JSMDIR)/ + rm -f $(JSMDIR)/COPYING.txt + install -m 644 debian/apache.conf $(JSMCONFDIR) + +# Build architecture-independent files here. +binary-indep: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_compress + dh_installdebconf -pjsmath + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +# Build architecture-dependent files here. +binary-arch: build install + +binary: binary-indep +.PHONY: build clean binary-indep binary-arch binary install configure --- jsmath-3.6c.orig/debian/README.Debian +++ jsmath-3.6c/debian/README.Debian @@ -0,0 +1,17 @@ +jsmath for Debian +----------------- + +Apache configuration: +--------------------- + +Handling of apache web server configuration is heavily inspired by +gallery package. Thus /etc/jsmath/apache.conf contains apache +configuration snippets that with recommended configuration. The +default /jsmath alias has NOT been commented out (opposite to +gallery's default behavior), since debconf inquires explicitly on +which webserver to enable the jsMath, so I don't see much of a point +to provide 2nd safety blanket. Comment this alias and restart apache +if you did not mean to make jsMath available. + + + -- Yaroslav O. Halchenko , Thu, 19 Oct 2006 22:40:25 -0400 --- jsmath-3.6c.orig/debian/po/fr.po +++ jsmath-3.6c/debian/po/fr.po @@ -0,0 +1,63 @@ +# jsMath debconf templates French translation. +# Copyright (C) 2006 +# Jean-Luc Coulon (f5ibh) . +# This file is distributed under the same license as the jsmath package. +# +msgid "" +msgstr "" +"Project-Id-Version: jsmath\n" +"Report-Msgid-Bugs-To: jsmath@packages.debian.org\n" +"POT-Creation-Date: 2010-03-15 00:03-0400\n" +"PO-Revision-Date: 2006-12-09 18:01+0100\n" +"Last-Translator: Jean-Luc Coulon (f5ibh) \n" +"Language-Team: French \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=iso-8859-15\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Country: France\n" +"X-Poedit-Language: French\n" + +#. Type: multiselect +#. Description +#: ../jsmath.templates:1001 +msgid "Which web server would you like to reconfigure automatically:" +msgstr "Serveur Web reconfigurer automatiquement:" + +#. Type: multiselect +#. Description +#: ../jsmath.templates:1001 +msgid "" +"If you do not select a web server to reconfigure automatically, jsMath will " +"not be usable until you reconfigure your webserver to enable jsMath." +msgstr "" +"Si vous ne choisissez pas de serveur Web reconfigurer automatiquement, " +"vous devrez reconfigurer votre serveur Web en activant jsMath avant de " +"pouvoir l'utiliser." + +#. Type: multiselect +#. Description +#: ../jsmath.templates:1001 +msgid "Enabled web servers will have jsMath available at /jsMath." +msgstr "" +"JsMath sera disponible dans le rpertoire /jsMath des serveurs pour lesquels " +"il a t activ." + +#. Type: boolean +#. Description +#: ../jsmath.templates:2001 +msgid "Should web servers be restarted?" +msgstr "Faut-il redmarrer les serveurs Web?" + +#. Type: boolean +#. Description +#: ../jsmath.templates:2001 +msgid "" +"Remember that in order to activate the new configuration a web server has to " +"be restarted. You can also restart web servers by manually executing invoke-" +"rc.d restart." +msgstr "" +"Veuillez noter qu'un serveur Web doit tre redmarr afin que sa nouvelle " +"configuration soit prise en compte. Vous pouvez aussi redmarrer les " +"serveurs Web vous-mme l'aide de la commande invoke-rc.d " +"restart." --- jsmath-3.6c.orig/debian/po/templates.pot +++ jsmath-3.6c/debian/po/templates.pot @@ -0,0 +1,52 @@ +# 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: jsmath@packages.debian.org\n" +"POT-Creation-Date: 2010-03-15 00:03-0400\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: multiselect +#. Description +#: ../jsmath.templates:1001 +msgid "Which web server would you like to reconfigure automatically:" +msgstr "" + +#. Type: multiselect +#. Description +#: ../jsmath.templates:1001 +msgid "" +"If you do not select a web server to reconfigure automatically, jsMath will " +"not be usable until you reconfigure your webserver to enable jsMath." +msgstr "" + +#. Type: multiselect +#. Description +#: ../jsmath.templates:1001 +msgid "Enabled web servers will have jsMath available at /jsMath." +msgstr "" + +#. Type: boolean +#. Description +#: ../jsmath.templates:2001 +msgid "Should web servers be restarted?" +msgstr "" + +#. Type: boolean +#. Description +#: ../jsmath.templates:2001 +msgid "" +"Remember that in order to activate the new configuration a web server has to " +"be restarted. You can also restart web servers by manually executing invoke-" +"rc.d restart." +msgstr "" --- jsmath-3.6c.orig/debian/po/ru.po +++ jsmath-3.6c/debian/po/ru.po @@ -0,0 +1,60 @@ +# jsMath debconf templates Russian translation. +# Copyright (C) Yaroslav Halchenko , 2006 +# This file is distributed under the same license as the jsmath package. +# +msgid "" +msgstr "" +"Project-Id-Version: jsmath 3.3g-1\n" +"Report-Msgid-Bugs-To: jsmath@packages.debian.org\n" +"POT-Creation-Date: 2010-03-15 00:03-0400\n" +"PO-Revision-Date: 2006-12-09 04:26-0500\n" +"Last-Translator: Yaroslav Halchenko \n" +"Language-Team: Russian \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: multiselect +#. Description +#: ../jsmath.templates:1001 +msgid "Which web server would you like to reconfigure automatically:" +msgstr "Cерверы, которые нужно перенастроить автоматически:" + +#. Type: multiselect +#. Description +#: ../jsmath.templates:1001 +msgid "" +"If you do not select a web server to reconfigure automatically, jsMath will " +"not be usable until you reconfigure your webserver to enable jsMath." +msgstr "" +"Если вы не выберете веб-сервер для автоматического конфигурирования,\n" +"то jsMath будет невозможно использовать до тех пор, пока вы не\n" +"сконфигурируете ваш сервер с поддержкой jsMath." + +#. Type: multiselect +#. Description +#: ../jsmath.templates:1001 +msgid "Enabled web servers will have jsMath available at /jsMath." +msgstr "" +"jsMath будет доступен на сконфигурированных веб-серверах по адресу\n" +"/jsMath." + +#. Type: boolean +#. Description +#: ../jsmath.templates:2001 +msgid "Should web servers be restarted?" +msgstr "Перезапустить веб-серверы?" + +#. Type: boolean +#. Description +#: ../jsmath.templates:2001 +msgid "" +"Remember that in order to activate the new configuration a web server has to " +"be restarted. You can also restart web servers by manually executing invoke-" +"rc.d restart." +msgstr "" +"Чтобы новая конфигурация вступила в силу, веб-серверы\n" +"должны быть перезапущены. Также, вы можете перезапустить веб-серверы " +"вручную\n" +"с помощью команды invoke-rc.d restart" --- jsmath-3.6c.orig/debian/po/ja.po +++ jsmath-3.6c/debian/po/ja.po @@ -0,0 +1,56 @@ +# Copyright (C) 2009 Yaroslav Halchenko +# This file is distributed under the same license as jsmath package. +# Hideki Yamane (Debian-JP) , 2009. +# +msgid "" +msgstr "" +"Project-Id-Version: jsmath 3.6b-1\n" +"Report-Msgid-Bugs-To: jsmath@packages.debian.org\n" +"POT-Creation-Date: 2010-03-15 00:03-0400\n" +"PO-Revision-Date: 2009-11-07 14:26+0900\n" +"Last-Translator: Hideki Yamane (Debian-JP) \n" +"Language-Team: Japanese \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: multiselect +#. Description +#: ../jsmath.templates:1001 +msgid "Which web server would you like to reconfigure automatically:" +msgstr "自動的に再設定したいウェブサーバを選んでください:" + +#. Type: multiselect +#. Description +#: ../jsmath.templates:1001 +msgid "" +"If you do not select a web server to reconfigure automatically, jsMath will " +"not be usable until you reconfigure your webserver to enable jsMath." +msgstr "" +"自動的に再設定するウェブサーバを選ばなかった場合は、jsMath を有効にするように" +"ウェブサーバを再設定するまで jsMath は利用できません。" + +#. Type: multiselect +#. Description +#: ../jsmath.templates:1001 +msgid "Enabled web servers will have jsMath available at /jsMath." +msgstr "設定を有効にしたウェブサーバでは /jsMath で jsMath が利用できます。" + +#. Type: boolean +#. Description +#: ../jsmath.templates:2001 +msgid "Should web servers be restarted?" +msgstr "ウェブサーバを再起動しますか?" + +#. Type: boolean +#. Description +#: ../jsmath.templates:2001 +msgid "" +"Remember that in order to activate the new configuration a web server has to " +"be restarted. You can also restart web servers by manually executing invoke-" +"rc.d restart." +msgstr "" +"新しい設定を有効にするには、ウェブサーバを再起動させなければならないのにご注" +"意ください。手動で invoke-rc.d restart を実行しても、再起動は可能" +"です。" --- jsmath-3.6c.orig/debian/po/sv.po +++ jsmath-3.6c/debian/po/sv.po @@ -0,0 +1,59 @@ +# translation of jsmath.po to swedish +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Martin Bagge , 2008. +msgid "" +msgstr "" +"Project-Id-Version: jsmath\n" +"Report-Msgid-Bugs-To: jsmath@packages.debian.org\n" +"POT-Creation-Date: 2010-03-15 00:03-0400\n" +"PO-Revision-Date: 2008-11-02 05:12+0100\n" +"Last-Translator: Martin Bagge \n" +"Language-Team: swedish \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: multiselect +#. Description +#: ../jsmath.templates:1001 +msgid "Which web server would you like to reconfigure automatically:" +msgstr "Ange vilken/vilka webbservrar som ska ställas in automatiskt:" + +#. Type: multiselect +#. Description +#: ../jsmath.templates:1001 +msgid "" +"If you do not select a web server to reconfigure automatically, jsMath will " +"not be usable until you reconfigure your webserver to enable jsMath." +msgstr "" +"Om du inte väljer en webbserver att ställa in automatiskt kommer jsMatch " +"inte vara användbart förrens du gjort isntällningar i din webbserver för att " +"använda jsMath." + +#. Type: multiselect +#. Description +#: ../jsmath.templates:1001 +msgid "Enabled web servers will have jsMath available at /jsMath." +msgstr "jsMath kommer att vara tillgänglig på /jsMath. från valda webbservrar." + +#. Type: boolean +#. Description +#: ../jsmath.templates:2001 +msgid "Should web servers be restarted?" +msgstr "Ska webbservrar startas om?" + +#. Type: boolean +#. Description +#: ../jsmath.templates:2001 +msgid "" +"Remember that in order to activate the new configuration a web server has to " +"be restarted. You can also restart web servers by manually executing invoke-" +"rc.d restart." +msgstr "" +"För att aktivera inställningarna i webbservern måste den startas om. Vill du " +"inte göra det automatiskt nu kan du göra det genom att köra 'invoke-rc.d " +" restart." --- jsmath-3.6c.orig/debian/po/POTFILES.in +++ jsmath-3.6c/debian/po/POTFILES.in @@ -0,0 +1 @@ +[type: gettext/rfc822deb] jsmath.templates --- jsmath-3.6c.orig/debian/po/pt.po +++ jsmath-3.6c/debian/po/pt.po @@ -0,0 +1,59 @@ +# translation of jsmath debconf to Portuguese +# Copyright (C) 2007 Américo Monteiro +# This file is distributed under the same license as the jsmath package. +# +# Américo Monteiro , 2007. +msgid "" +msgstr "" +"Project-Id-Version: jsmath 3.4a-1\n" +"Report-Msgid-Bugs-To: jsmath@packages.debian.org\n" +"POT-Creation-Date: 2010-03-15 00:03-0400\n" +"PO-Revision-Date: 2007-07-30 23:58+0100\n" +"Last-Translator: Américo Monteiro \n" +"Language-Team: Portuguese \n" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: multiselect +#. Description +#: ../jsmath.templates:1001 +msgid "Which web server would you like to reconfigure automatically:" +msgstr "Qual o servidor Web que deseja reconfigurar automaticamente:" + +#. Type: multiselect +#. Description +#: ../jsmath.templates:1001 +msgid "" +"If you do not select a web server to reconfigure automatically, jsMath will " +"not be usable until you reconfigure your webserver to enable jsMath." +msgstr "" +"Se você não seleccionar um servidor Web para reconfigurar automáticamente, o " +"jsMath não estará utilizável até que você reconfigure o seu servidor web " +"para usar jsMath." + +#. Type: multiselect +#. Description +#: ../jsmath.templates:1001 +msgid "Enabled web servers will have jsMath available at /jsMath." +msgstr "Os servidores Web activados terão o jsMath disponível em /jsMath." + +#. Type: boolean +#. Description +#: ../jsmath.templates:2001 +msgid "Should web servers be restarted?" +msgstr "Deverão os servidores Web ser reiniciados?" + +#. Type: boolean +#. Description +#: ../jsmath.templates:2001 +msgid "" +"Remember that in order to activate the new configuration a web server has to " +"be restarted. You can also restart web servers by manually executing invoke-" +"rc.d restart." +msgstr "" +"Lembre-se que para activar a nova configuração, o servidor Web precisa ser " +"reiniciado. Você também pode reiniciar o servidor Web manualmente executando " +"invoke-rc.d restart." --- jsmath-3.6c.orig/debian/po/de.po +++ jsmath-3.6c/debian/po/de.po @@ -0,0 +1,57 @@ +# Translation of jsmath debconf templates to German +# Copyright (C) Helge Kreutzmann , 2006. +# This file is distributed under the same license as the jsmath package. +# +msgid "" +msgstr "" +"Project-Id-Version: jsmath 3.3g-1\n" +"Report-Msgid-Bugs-To: jsmath@packages.debian.org\n" +"POT-Creation-Date: 2010-03-15 00:03-0400\n" +"PO-Revision-Date: 2006-11-01 17:17+0100\n" +"Last-Translator: Helge Kreutzmann \n" +"Language-Team: de \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-15\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: multiselect +#. Description +#: ../jsmath.templates:1001 +msgid "Which web server would you like to reconfigure automatically:" +msgstr "Welchen Webserver mchten Sie automatisch neukonfigurieren:" + +#. Type: multiselect +#. Description +#: ../jsmath.templates:1001 +msgid "" +"If you do not select a web server to reconfigure automatically, jsMath will " +"not be usable until you reconfigure your webserver to enable jsMath." +msgstr "" +"Falls Sie keine Webserver zum automatischen Neukonfigurieren auswhlen, wird " +"jsMath nicht verwendbar sein, bis Sie Ihren Webserver neukonfigurieren, um " +"jsMath zu aktivieren." + +#. Type: multiselect +#. Description +#: ../jsmath.templates:1001 +msgid "Enabled web servers will have jsMath available at /jsMath." +msgstr "Aktivierte Webserver werden jsMath unter /jsMath verfgbar haben." + +#. Type: boolean +#. Description +#: ../jsmath.templates:2001 +msgid "Should web servers be restarted?" +msgstr "Sollen die Webserver neu gestartet werden?" + +#. Type: boolean +#. Description +#: ../jsmath.templates:2001 +msgid "" +"Remember that in order to activate the new configuration a web server has to " +"be restarted. You can also restart web servers by manually executing invoke-" +"rc.d restart." +msgstr "" +"Denken Sie daran, dass ein Webserver neu gestartet werden muss, um die neue " +"Konfiguration zu aktivieren. Sie knnen Webserver auch manuell neu starten, " +"indem Sie invoke-rc.d restart ausfhren." --- jsmath-3.6c.orig/debian/po/da.po +++ jsmath-3.6c/debian/po/da.po @@ -0,0 +1,58 @@ +# Danish translation jsmath. +# Copyright (C) 2011 jsmath & nedenstående oversættere. +# This file is distributed under the same license as the jsmath package. +# Joe Hansen , 2011. +# +msgid "" +msgstr "" +"Project-Id-Version: jsmath\n" +"Report-Msgid-Bugs-To: jsmath@packages.debian.org\n" +"POT-Creation-Date: 2008-12-15 17:44-0500\n" +"PO-Revision-Date: 2011-04-04 17:30+01:00\n" +"Last-Translator: Joe Hansen \n" +"Language-Team: Danish \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: multiselect +#. Description +#: ../jsmath.templates:1001 +msgid "Which web server would you like to reconfigure automatically:" +msgstr "Hvilken internetserver ønsker du at rekonfigurere automatisk:" + +#. Type: multiselect +#. Description +#: ../jsmath.templates:1001 +msgid "" +"If you do not select a web server to reconfigure automatically, jsMath will " +"not be usable until you reconfigure your webserver to enable jsMath." +msgstr "" +"Hvis du ikke vælger en internetserver at rekonfigurere automatisk, vil " +"jsMath ikke være brugbar, før du rekonfigurerer din internetserver til at " +"aktivere jsMath." + +#. Type: multiselect +#. Description +#: ../jsmath.templates:1001 +msgid "Enabled web servers will have jsMath available at /jsMath." +msgstr "Aktiverede internetservere vil have jsMath tilgængelig i /jsMath." + +#. Type: boolean +#. Description +#: ../jsmath.templates:2001 +msgid "Should web servers be restarted?" +msgstr "Skal internetservere genstartes?" + +#. Type: boolean +#. Description +#: ../jsmath.templates:2001 +msgid "" +"Remember that in order to activate the new configuration a web server has to " +"be restarted. You can also restart web servers by manually executing invoke-" +"rc.d restart." +msgstr "" +"Husk at for at aktivere den nye konfiguration skal en internetserver " +"genstartes. Du kan også genstarte internetservere manuelt ved at køre invoke-" +"rc.d restart." --- jsmath-3.6c.orig/debian/po/nl.po +++ jsmath-3.6c/debian/po/nl.po @@ -0,0 +1,58 @@ +# 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. +# +msgid "" +msgstr "" +"Project-Id-Version: jsmath\n" +"Report-Msgid-Bugs-To: jsmath@packages.debian.org\n" +"POT-Creation-Date: 2010-03-15 00:03-0400\n" +"PO-Revision-Date: 2007-10-19 20:18+0100\n" +"Last-Translator: Bart Cornelis \n" +"Language-Team: debian-l10n-dutch \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: Dutch\n" + +#. Type: multiselect +#. Description +#: ../jsmath.templates:1001 +msgid "Which web server would you like to reconfigure automatically:" +msgstr "Welke webserver wilt u automatisch herconfigureren?" + +#. Type: multiselect +#. Description +#: ../jsmath.templates:1001 +msgid "" +"If you do not select a web server to reconfigure automatically, jsMath will " +"not be usable until you reconfigure your webserver to enable jsMath." +msgstr "" +"Als u geen webserver automatisch laat herconfigureren zal jsMath pas " +"bruikbaar zijn eens u uw webserver heeft ingesteld om jsMath te activeren." + +#. Type: multiselect +#. Description +#: ../jsmath.templates:1001 +msgid "Enabled web servers will have jsMath available at /jsMath." +msgstr "Geactiveerde webservers maken jsMath beschikbaar op /jsMath ." + +#. Type: boolean +#. Description +#: ../jsmath.templates:2001 +msgid "Should web servers be restarted?" +msgstr "Wilt u de webservers herstarten?" + +#. Type: boolean +#. Description +#: ../jsmath.templates:2001 +msgid "" +"Remember that in order to activate the new configuration a web server has to " +"be restarted. You can also restart web servers by manually executing invoke-" +"rc.d restart." +msgstr "" +"Vergeet niet dat de webserver herstart dient te worden voordat de nieuwe " +"configuratie actief wordt. U kunt de webservers ook handmatig herstarten via " +"het commando 'invoke-rc.d restart'." --- jsmath-3.6c.orig/debian/po/cs.po +++ jsmath-3.6c/debian/po/cs.po @@ -0,0 +1,59 @@ +# translation of jsmath_3.3g-3_cs-utf8.po to czech +# Copyright (C) Jakub Kasparec , 2007 +# This file is distributed under the same license as the jsMath package. +# +# +msgid "" +msgstr "" +"Project-Id-Version: jsmath_3.3g-3\n" +"Report-Msgid-Bugs-To: jsmath@packages.debian.org\n" +"POT-Creation-Date: 2010-03-15 00:03-0400\n" +"PO-Revision-Date: 2007-01-27 20:45+0100\n" +"Last-Translator: Jakub Kasparec \n" +"Language-Team: czech \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: multiselect +#. Description +#: ../jsmath.templates:1001 +msgid "Which web server would you like to reconfigure automatically:" +msgstr "Který webový server chcete překonfigurovat automaticky:" + +#. Type: multiselect +#. Description +#: ../jsmath.templates:1001 +msgid "" +"If you do not select a web server to reconfigure automatically, jsMath will " +"not be usable until you reconfigure your webserver to enable jsMath." +msgstr "" +"Jestliže nezvolíte webový server, který se má automaticky překonfigurovat, " +"nebudete moci použít jsMath do té doby, dokud nenastavíte svůj webový server " +"pro použití s jsMath." + +#. Type: multiselect +#. Description +#: ../jsmath.templates:1001 +msgid "Enabled web servers will have jsMath available at /jsMath." +msgstr "Aktivované webové servery budou mít jsMath dostpný v /jsMath." + +#. Type: boolean +#. Description +#: ../jsmath.templates:2001 +msgid "Should web servers be restarted?" +msgstr "Mají se webové servery restartovat?" + +#. Type: boolean +#. Description +#: ../jsmath.templates:2001 +msgid "" +"Remember that in order to activate the new configuration a web server has to " +"be restarted. You can also restart web servers by manually executing invoke-" +"rc.d restart." +msgstr "" +"Nezapomeňte prosím, že pro aktivaci vaší nové konfigurace je potřeba webový " +"server restartovat. Server můžete také restartovat ručně zadáním příkazu " +"invoke-rc.d restart." --- jsmath-3.6c.orig/debian/po/es.po +++ jsmath-3.6c/debian/po/es.po @@ -0,0 +1,78 @@ +# jsmath po-debconf translation to Spanish +# Copyright (C) 2010 Software in the Public Interest +# This file is distributed under the same license as the jsmath package. +# +# Changes: +# - Initial translation +# Ricardo Fraile , 2010 +# +# 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 y normas 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: jsmath 3.6c-1\n" +"Report-Msgid-Bugs-To: jsmath@packages.debian.org\n" +"POT-Creation-Date: 2008-12-15 17:44-0500\n" +"PO-Revision-Date: 2010-05-25 10:52+0200\n" +"Last-Translator: Ricardo Fraile \n" +"Language-Team: Spanish \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: multiselect +#. Description +#: ../jsmath.templates:1001 +msgid "Which web server would you like to reconfigure automatically:" +msgstr "Servidor web que quiere reconfigurar automáticamente:" + +#. Type: multiselect +#. Description +#: ../jsmath.templates:1001 +msgid "" +"If you do not select a web server to reconfigure automatically, jsMath will " +"not be usable until you reconfigure your webserver to enable jsMath." +msgstr "" +"Si no selecciona un servidor web para que se configure automáticamente, " +"jsMathno se podrá usar hasta que no se habilite en el servidor web." + +#. Type: multiselect +#. Description +#: ../jsmath.templates:1001 +msgid "Enabled web servers will have jsMath available at /jsMath." +msgstr "Los servidores web habilitados tendrán jsMath disponible en «/jsMath»" + +#. Type: boolean +#. Description +#: ../jsmath.templates:2001 +msgid "Should web servers be restarted?" +msgstr "¿Desea reiniciar los servidores web?" + +#. Type: boolean +#. Description +#: ../jsmath.templates:2001 +msgid "" +"Remember that in order to activate the new configuration a web server has to " +"be restarted. You can also restart web servers by manually executing invoke-" +"rc.d restart." +msgstr "" +"Recuerde que para activar la nueva configuración, tiene que reiniciarel " +"servidor web. Puede reiniciarlo manualmente ejecutando «invoke-rc.d restart»."