--- libwiki-toolkit-perl-0.78.orig/TestConfig.pm +++ libwiki-toolkit-perl-0.78/TestConfig.pm @@ -0,0 +1,16 @@ +%Wiki::Toolkit::TestConfig::config = ( + 'search_invertedindex' => 0, + 'plucene' => 0, + 'Pg' => { + 'dbname' => undef + }, + 'dbixfts' => undef, + 'MySQL' => { + 'dbname' => undef + }, + 'SQLite' => { + 'dbname' => 't/sqlite-test.db' + } + ); +$Wiki::Toolkit::TestConfig::configured = 1; +1; --- libwiki-toolkit-perl-0.78.orig/debian/compat +++ libwiki-toolkit-perl-0.78/debian/compat @@ -0,0 +1 @@ +5 --- libwiki-toolkit-perl-0.78.orig/debian/rules +++ libwiki-toolkit-perl-0.78/debian/rules @@ -0,0 +1,95 @@ +#!/usr/bin/make -f +# This debian/rules file is provided as a template for normal perl +# packages. It was created by Marc Brockschmidt for +# the Debian Perl Group (http://pkg-perl.alioth.debian.org/) but may +# be used freely wherever it is useful. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# If set to a true value then MakeMaker's prompt function will +# always return the default without waiting for user input. +export PERL_MM_USE_DEFAULT=1 + +PACKAGE=$(shell dh_listpackages) + +ifndef PERL +PERL = /usr/bin/perl +endif + +TMP =$(CURDIR)/debian/$(PACKAGE) + +# Allow disabling build optimation by setting noopt in +# $DEB_BUILD_OPTIONS +CFLAGS = -Wall -g +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +build: build-stamp +build-stamp: + dh_testdir + + # Add commands to compile the package here + $(PERL) Makefile.PL INSTALLDIRS=vendor + $(MAKE) OPTIMIZE="$(CFLAGS)" + cp -f TestConfig.pm blib/lib/Wiki/Toolkit + + touch build-stamp + +clean: + dh_testdir + dh_testroot + + debconf-updatepo + + # Add commands to clean up after the build process here + [ ! -f Makefile ] || $(MAKE) distclean + rm -f t/wiki.db + + dh_clean build-stamp install-stamp + +install: install-stamp +install-stamp: build-stamp + dh_testdir + dh_testroot + dh_clean -k + + $(MAKE) test + $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr + + # As this is a architecture independent package, we are not supposed to install + # stuff to /usr/lib. MakeMaker creates the dirs, we delete them from the deb: + [ ! -d $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents --verbose $(TMP)/usr/lib/perl5 + + touch install-stamp + +binary-arch: +# We have nothing to do by default. + +binary-indep: build install + dh_testdir + dh_testroot + dh_installdebconf +# dh_installcron +# dh_installmenu +# dh_installexamples + dh_installdocs README + dh_installchangelogs Changes + dh_perl + dh_link + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +source diff: + @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary --- libwiki-toolkit-perl-0.78.orig/debian/postinst +++ libwiki-toolkit-perl-0.78/debian/postinst @@ -0,0 +1,59 @@ +#!/bin/sh +# postinst script for #PACKAGE# +# +# see: dh_installdeb(1) + +set -e + +# source debconf stuff +. /usr/share/debconf/confmodule + +# summary of how this script can be called: +# * `configure' +# * `abort-upgrade' +# * `abort-remove' `in-favour' +# +# * `abort-remove' +# * `abort-deconfigure' `in-favour' +# `removing' +# +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + +UPGRADE_DIR=/usr/share/libwiki-toolkit-perl/upgrade-hooks + +case "$1" in + configure) + db_get libwiki-toolkit-perl/schema_upgrade_auto || true + AUTO_UPGRADE="$RET" + if [ "$AUTO_UPGRADE" = "true" ]; then + if [ -d $UPGRADE_DIR ]; then + for file in `find $UPGRADE_DIR -type f ! -name '*.*'`; do + if [ -x $file ]; then + $file + fi + done + fi + fi + # Reset this for the next upgrade + db_fset libwiki-toolkit-perl/schema_upgrade_auto seen false + db_fset libwiki-toolkit-perl/schema_upgrade_warn seen false + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + ;; + + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 + + --- libwiki-toolkit-perl-0.78.orig/debian/watch +++ libwiki-toolkit-perl-0.78/debian/watch @@ -0,0 +1,3 @@ +version=3 +# URL to the package page followed by a regex to search +http://search.cpan.org/dist/Wiki-Toolkit/ .*/Wiki-Toolkit-v?(\d[\d_.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip) --- libwiki-toolkit-perl-0.78.orig/debian/NEWS +++ libwiki-toolkit-perl-0.78/debian/NEWS @@ -0,0 +1,14 @@ +libcgi-wiki-perl (0.62-4) unstable; urgency=low + + * The following is only relevant if you are using the SQLite database + backend. The dependencies for DBD::SQLite are now on libdbd-sqlite-perl + or libdbd-sqlite3-perl. The former is deprecated and may be removed at + some point in the future, so I recommend that you manually take a dump + of your databases, upgrade to libdbd-sqlite3-perl and then restore them + (since the on-disk formats of the two packages are incompatible). + Something like 'sqlite foo.db .dump > foo.dump', then, following the + upgrade, 'sqlite3 foo.db < foo.dump' ought to work (with appropriate + backup steps). + + -- Dominic Hargreaves Mon, 11 Apr 2005 01:51:43 +0100 + --- libwiki-toolkit-perl-0.78.orig/debian/changelog +++ libwiki-toolkit-perl-0.78/debian/changelog @@ -0,0 +1,185 @@ +libwiki-toolkit-perl (0.78-2) unstable; urgency=low + + * Add Spanish translation (closes: #584447) + + -- Dominic Hargreaves Sat, 09 Oct 2010 17:37:51 +0100 + +libwiki-toolkit-perl (0.78-1) unstable; urgency=low + + * New upstream release (closes: #560607) + * Bump debian/compat + * Bump Standards-Version (no changes) + + -- Dominic Hargreaves Wed, 16 Dec 2009 22:34:40 +0000 + +libwiki-toolkit-perl (0.77-1) unstable; urgency=low + + * New upstream release + + -- Dominic Hargreaves Mon, 29 Dec 2008 18:06:33 +0000 + +libwiki-toolkit-perl (0.76-2) unstable; urgency=low + + * Fix typo in debconf template (closes: #490946) + * Include debconf translations (closes: #491014, #491333, #491397, + #491495, #491675, #491727, #492393, #493370, #494411, #492547) + + -- Dominic Hargreaves Sun, 10 Aug 2008 17:52:21 +0100 + +libwiki-toolkit-perl (0.76-1) unstable; urgency=low + + * New upstream release + * Add postinst to process hooks provided by other packages using us, + to upgrade databases when a schema upgrade is required + * Update Standards-Version (no changes) + + -- Dominic Hargreaves Sun, 13 Jul 2008 19:27:18 +0100 + +libwiki-toolkit-perl (0.75-1) unstable; urgency=low + + * New upstream release + * Remove alternative dependency on libdbd-sqlite-perl which no + longer exists + + -- Dominic Hargreaves Sat, 17 May 2008 23:54:55 +0100 + +libwiki-toolkit-perl (0.74-2) unstable; urgency=low + + * Fix debian/rules rmdir bug (closes: #467927) + * Update Standards-Version (no changes) + * Standardize debian/watch format + * debian/control: add Homepage field + * Fix make distclean lintian warning + + -- Dominic Hargreaves Sun, 2 Mar 2008 18:27:21 +0000 + +libwiki-toolkit-perl (0.74-1) unstable; urgency=low + + * New upstream release + * Update debian/copyright to reflect team ownership + * Remove bogus substvars file from debian/ + + -- Dominic Hargreaves Sun, 10 Jun 2007 08:51:25 +0100 + +libwiki-toolkit-perl (0.73-1) unstable; urgency=low + + * New upstream release + + -- Dominic Hargreaves Tue, 12 Dec 2006 18:05:05 +0000 + +libwiki-toolkit-perl (0.72-1) unstable; urgency=low + + * New upstream release (closes: #386494) + + -- Dominic Hargreaves Fri, 15 Sep 2006 09:04:26 +0100 + +libwiki-toolkit-perl (0.71-1) unstable; urgency=low + + * New upstream release (closes: #382873) + * Update watch file for new name + * Build-depend on Text::Wikiformat and re-enable tests + + -- Dominic Hargreaves Thu, 31 Aug 2006 21:05:17 +0100 + +libwiki-toolkit-perl (0.70-1) unstable; urgency=low + + * New upstream release + * Override TestConfig.pm to be suitable for installation + * Closes: #366859 + + -- Dominic Hargreaves Wed, 7 Jun 2006 14:02:00 +0100 + +libwiki-toolkit-perl (0.69-03-1) unstable; urgency=low + + * New upstream release + * Temporarily disable tests due to upstream failure + * Update Standard-Version (no changes) + + -- Dominic Hargreaves Sat, 13 May 2006 12:56:24 +0000 + +libwiki-toolkit-perl (0.69-02-1) unstable; urgency=low + + * New upstream release + * Rename package to libwiki-toolkit-perl + + -- Dominic Hargreaves Thu, 27 Apr 2006 18:58:54 +0100 + +libcgi-wiki-perl (0.62-7) unstable; urgency=low + + * Brown paper bag release. Versioned depends is not satisfiable in woody + thus breaking the only release this bug applies to. Reverting. + + -- Dominic Hargreaves Mon, 25 Apr 2005 23:06:45 +0100 + +libcgi-wiki-perl (0.62-6) unstable; urgency=low + + * Really add previous depends. + + -- Dominic Hargreaves Mon, 25 Apr 2005 23:00:45 +0100 + +libcgi-wiki-perl (0.62-5) unstable; urgency=low + + * Add versioned dependency on HTML::Parser to avoid a nasty UTF8 + double-encoding bug. + + -- Dominic Hargreaves Mon, 25 Apr 2005 22:52:35 +0100 + +libcgi-wiki-perl (0.62-4) unstable; urgency=low + + * Remove versioned dependency on libdbd-sqlite-perl; instead depend on + either libdbd-sqlite3-perl or libdbd-sqlite-perl. Note in NEWS.Debian. + * Fix more FTBFS problems (build-deps for tests). + + -- Dominic Hargreaves Mon, 11 Apr 2005 01:57:41 +0100 + +libcgi-wiki-perl (0.62-3) unstable; urgency=low + + * Make libdbd-sqlite-perl dependency stricter. + * Fix FTBFS. + + -- Dominic Hargreaves Sun, 16 Jan 2005 17:38:38 +0000 + +libcgi-wiki-perl (0.62-2) unstable; urgency=low + + * Conflict with libdbd-sqlite-perl (>= 1:0.33-1) since this version + has renamed itself to DBD::SQLite2. + + -- Dominic Hargreaves Tue, 7 Dec 2004 00:18:57 +0000 + +libcgi-wiki-perl (0.62-1) unstable; urgency=low + + * New upstream release + + -- Dominic Hargreaves Sun, 28 Nov 2004 16:43:09 +0000 + +libcgi-wiki-perl (0.61-1) unstable; urgency=low + + * New upstream release + + -- Dominic Hargreaves Sun, 3 Oct 2004 20:54:12 +0100 + +libcgi-wiki-perl (0.60-1) unstable; urgency=low + + * New upstream release + + -- Dominic Hargreaves Sun, 3 Oct 2004 15:20:43 +0100 + +libcgi-wiki-perl (0.59-3) unstable; urgency=low + + * Fix description for lintian. + * Add dependencies for DBD modules. + + -- Dominic Hargreaves Wed, 22 Sep 2004 02:00:37 +0100 + +libcgi-wiki-perl (0.59-2) unstable; urgency=low + + * Add dependencies + + -- Dominic Hargreaves Wed, 22 Sep 2004 01:09:57 +0100 + +libcgi-wiki-perl (0.59-1) unstable; urgency=low + + * Initial Release. + + -- Dominic Hargreaves Wed, 22 Sep 2004 01:02:43 +0100 + --- libwiki-toolkit-perl-0.78.orig/debian/config +++ libwiki-toolkit-perl-0.78/debian/config @@ -0,0 +1,24 @@ +#!/bin/sh +# config maintainer script for libwiki-toolkit-perl + +set -e + +# source debconf stuff +. /usr/share/debconf/confmodule + +if [ -n "$2" ]; then + if dpkg --compare-versions "$2" lt 0.76-1; then + db_input high libwiki-toolkit-perl/schema_upgrade_warn || true + db_go + db_get libwiki-toolkit-perl/schema_upgrade_warn || true + if [ "$RET" = "false" ]; then + echo "Aborting install"; + db_fset libwiki-toolkit-perl/schema_upgrade_warn seen false + exit 1 + fi + if [ -d /usr/share/libwiki-toolkit-perl/upgrade-hooks ]; then + db_input high libwiki-toolkit-perl/schema_upgrade_auto || true + db_go + fi + fi +fi --- libwiki-toolkit-perl-0.78.orig/debian/control +++ libwiki-toolkit-perl-0.78/debian/control @@ -0,0 +1,19 @@ +Source: libwiki-toolkit-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 5), po-debconf +Build-Depends-Indep: perl (>= 5.8.0-7), libdbd-sqlite3-perl, libtime-piece-perl, libtext-wikiformat-perl (>= 0.78), libhtml-parser-perl, libtest-pod-perl +Maintainer: Dominic Hargreaves +Standards-Version: 3.8.3 +Homepage: http://search.cpan.org/dist/Wiki-Toolkit/ + +Package: libwiki-toolkit-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends}, + libdbix-fulltextsearch-perl (>= 0.71), libdigest-md5-perl, + libhtml-parser-perl, libtext-wikiformat-perl (>= 0.45), + libtime-piece-perl, + libdbd-mysql-perl | libdbd-pg-perl | libdbd-sqlite3-perl +Description: A toolkit for building Wikis + Helps you develop Wikis quickly by taking care of the boring bits for + you. You will still need to write some code - this isn't an instant Wiki. --- libwiki-toolkit-perl-0.78.orig/debian/templates +++ libwiki-toolkit-perl-0.78/debian/templates @@ -0,0 +1,21 @@ +Template: libwiki-toolkit-perl/schema_upgrade_warn +Type: boolean +_Description: Install version of Wiki::Toolkit requiring schema upgrade? + You are about to install a version of Wiki::Toolkit which requires a + database schema upgrade. Until you have run the upgrade procedure on + Wiki::Toolkit databases, this will cause applications using Wiki::Toolkit + to stop working. + . + If your Wiki::Toolkit application installed an upgrade hook, this upgrade + procedure will optionally run this hook to automatically upgrade the + database(s) belonging to this application. + +Template: libwiki-toolkit-perl/schema_upgrade_auto +Type: boolean +_Description: Automatically upgrade Wiki::Toolkit databases? + Upgrade hooks provided by Wiki::Toolkit applications have been found. + They can be run after the package upgrade completes to automatically + upgrade the relevant databases. + . + It is recommended that you backup your Wiki::Toolkit databases before + upgrading them. --- libwiki-toolkit-perl-0.78.orig/debian/copyright +++ libwiki-toolkit-perl-0.78/debian/copyright @@ -0,0 +1,15 @@ +The upstream author is: + +Kake Pugh (kake@earth.li) and the Wiki::Toolkit team + + +Copyright (C) 2002-2004 Kake Pugh. All Rights Reserved. +Copyright (C) 2006-2007 the Wiki::Toolkit team. All Rights Reserved. + +This module is free software; you can redistribute it and/or modify it +under the same terms as Perl itself. + +Perl is distributed under your choice of the GNU General Public License or +the Artistic License. On Debian GNU/Linux systems, the complete text of the +GNU General Public License can be found in `/usr/share/common-licenses/GPL' +and the Artistic Licence in `/usr/share/common-licenses/Artistic'. --- libwiki-toolkit-perl-0.78.orig/debian/po/cs.po +++ libwiki-toolkit-perl-0.78/debian/po/cs.po @@ -0,0 +1,74 @@ +# Czech translation of libwiki-toolkit-perl debconf messages. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the libwiki-toolkit-perl package. +# Miroslav Kure , 2008 +# +msgid "" +msgstr "" +"Project-Id-Version: libwiki-toolkit-perl\n" +"Report-Msgid-Bugs-To: dom@earth.li\n" +"POT-Creation-Date: 2008-07-22 20:22+0100\n" +"PO-Revision-Date: 2008-08-09 10:25+0200\n" +"Last-Translator: Miroslav Kure \n" +"Language-Team: Czech \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Install version of Wiki::Toolkit requiring schema upgrade?" +msgstr "Instalovat verzi Wiki::Toolkitu, která vyžaduje aktualizaci schématu?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"You are about to install a version of Wiki::Toolkit which requires a " +"database schema upgrade. Until you have run the upgrade procedure on Wiki::" +"Toolkit databases, this will cause applications using Wiki::Toolkit to stop " +"working." +msgstr "" +"Chystáte se nainstalovat verzi Wiki::Toolkitu, která vyžaduje změnu " +"databázového schématu. To znamená, že dokud tuto změnu neprovedete, nebudou " +"fungovat aplikace využívající Wiki::Toolkit." + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"If your Wiki::Toolkit application installed an upgrade hook, this upgrade " +"procedure will optionally run this hook to automatically upgrade the database" +"(s) belonging to this application." +msgstr "" +"Pokud vaše aplikace využívající Wiki::Toolkit nainstalovala hook pro " +"aktualizaci, bude tento spuštěn a automaticky aktualizuje databáze patřící " +"této aplikaci." + +#. Type: boolean +#. Description +#: ../templates:2001 +msgid "Automatically upgrade Wiki::Toolkit databases?" +msgstr "Automaticky aktualizovat databáze Wiki::Toolkitu?" + +#. Type: boolean +#. Description +#: ../templates:2001 +msgid "" +"Upgrade hooks provided by Wiki::Toolkit applications have been found. They " +"can be run after the package upgrade completes to automatically upgrade the " +"relevant databases." +msgstr "" +"Byly nalezeny hooky aplikací využívajících Wiki::Toolkit. Tyto hooky lze " +"spustit po aktualizaci balíku a automaticky tak aktualizovat příslušné " +"databáze." + +#. Type: boolean +#. Description +#: ../templates:2001 +msgid "" +"It is recommended that you backup your Wiki::Toolkit databases before " +"upgrading them." +msgstr "Před aktualizací databází je doporučujeme zazálohovat." --- libwiki-toolkit-perl-0.78.orig/debian/po/de.po +++ libwiki-toolkit-perl-0.78/debian/po/de.po @@ -0,0 +1,77 @@ +# Translation of libwiki-toolkit-perl debconf templates to German +# Copyright (C) Helge Kreutzmann , 2008. +# This file is distributed under the same license as the libwiki-toolkit-perl package. +# +msgid "" +msgstr "" +"Project-Id-Version: libwiki-toolkit-perl 0.76-1\n" +"Report-Msgid-Bugs-To: dom@earth.li\n" +"POT-Creation-Date: 2008-07-22 20:22+0100\n" +"PO-Revision-Date: 2008-07-21 18:53+0200\n" +"Last-Translator: Helge Kreutzmann \n" +"Language-Team: de \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Install version of Wiki::Toolkit requiring schema upgrade?" +msgstr "" +"Version von Wiki::Toolkit installieren, die ein Schema-Upgrade benötigt?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"You are about to install a version of Wiki::Toolkit which requires a " +"database schema upgrade. Until you have run the upgrade procedure on Wiki::" +"Toolkit databases, this will cause applications using Wiki::Toolkit to stop " +"working." +msgstr "" +"Sie sind dabei, eine Version von Wiki::Toolkit zu installieren, die ein " +"Upgrade des Datenbank-Schematas benötigt. Bis die Upgrade-Prozedur von Ihnen " +"ausgeführt wurde, werden daher Anwendungen, die Wiki::Toolkit verwenden, " +"nicht mehr funktionieren." + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"If your Wiki::Toolkit application installed an upgrade hook, this upgrade " +"procedure will optionally run this hook to automatically upgrade the database" +"(s) belonging to this application." +msgstr "" +"Falls Ihre Wiki::Toolkit-Anwendung einen Upgrade-Hook installierte, wird " +"dieses Upgrade ihn optional ausführen, um das Upgrade der zu dieser/diesen " +"Anwendung(en) gehörenden Datenbank(en) durchzuführen." + +#. Type: boolean +#. Description +#: ../templates:2001 +msgid "Automatically upgrade Wiki::Toolkit databases?" +msgstr "Automatisches Upgrade der Wiki::Toolkit-Datenbanken durchführen?" + +#. Type: boolean +#. Description +#: ../templates:2001 +msgid "" +"Upgrade hooks provided by Wiki::Toolkit applications have been found. They " +"can be run after the package upgrade completes to automatically upgrade the " +"relevant databases." +msgstr "" +"Es wurden Upgrade-Hooks von Wiki::Toolkit-Anwendungen gefunden. Sie können " +"nach Beendigung des Paket-Upgrades ausgeführt werden, um automatisch ein " +"Upgrade der relevanten Datenbanken durchzuführen." + +#. Type: boolean +#. Description +#: ../templates:2001 +msgid "" +"It is recommended that you backup your Wiki::Toolkit databases before " +"upgrading them." +msgstr "" +"Es wird empfohlen, dass Sie ein Backup Ihrer Wiki::Toolkit-Datenbanken vor " +"deren Upgrade durchführen." --- libwiki-toolkit-perl-0.78.orig/debian/po/ja.po +++ libwiki-toolkit-perl-0.78/debian/po/ja.po @@ -0,0 +1,79 @@ +# Copyright (C) 2008 Dominic Hargreaves +# as libwiki-toolkit-perl Debian package's copyright holder. +# This file is distributed under the same license as the libwiki-toolkit-perl package. +# Hideki Yamane (Debian-JP) , 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: libwiki-toolkit-perl 0.76-1\n" +"Report-Msgid-Bugs-To: dom@earth.li\n" +"POT-Creation-Date: 2008-07-22 20:22+0100\n" +"PO-Revision-Date: 2008-07-30 19:21+0200\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: boolean +#. Description +#: ../templates:1001 +msgid "Install version of Wiki::Toolkit requiring schema upgrade?" +msgstr "" +"スキーマのアップグレードが必要なバージョンの Wiki::Toolkit をインストールしま" +"すか?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"You are about to install a version of Wiki::Toolkit which requires a " +"database schema upgrade. Until you have run the upgrade procedure on Wiki::" +"Toolkit databases, this will cause applications using Wiki::Toolkit to stop " +"working." +msgstr "" +"あなたがインストールしようとしている Wiki::Toolkit は、データベーススキーマの" +"アップグレードを必要としています。Wiki::Toolkit データベースのアップグレード" +"作業を実施するまで、Wiki::Toolkit を使っているアプリケーションは動作を停止し" +"ます。" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"If your Wiki::Toolkit application installed an upgrade hook, this upgrade " +"procedure will optionally run this hook to automatically upgrade the database" +"(s) belonging to this application." +msgstr "" +"Wiki::Toolkit アプリケーションがアップグレードのフックをインストールしていた" +"場合、このアップグレード作業でアプリケーションに関連するデータベースを自動的" +"にアップグレードするため、これらのフックが動作するようにもできます。" + +#. Type: boolean +#. Description +#: ../templates:2001 +msgid "Automatically upgrade Wiki::Toolkit databases?" +msgstr "自動的に Wiki::Toolkit のデータベースをアップグレードしますか?" + +#. Type: boolean +#. Description +#: ../templates:2001 +msgid "" +"Upgrade hooks provided by Wiki::Toolkit applications have been found. They " +"can be run after the package upgrade completes to automatically upgrade the " +"relevant databases." +msgstr "" +"Wiki::Toolkit アプリケーションによるアップグレードのフックが見つかりました。" +"フックは、パッケージのアップグレードが完了してから自動的に関連するデータベー" +"スをアップグレードするために実行されます。" + +#. Type: boolean +#. Description +#: ../templates:2001 +msgid "" +"It is recommended that you backup your Wiki::Toolkit databases before " +"upgrading them." +msgstr "" +"アップグレードの前に Wiki::Toolkit データベースをバックアップしておくことをお" +"勧めします。" --- libwiki-toolkit-perl-0.78.orig/debian/po/POTFILES.in +++ libwiki-toolkit-perl-0.78/debian/po/POTFILES.in @@ -0,0 +1 @@ +[type: gettext/rfc822deb] templates --- libwiki-toolkit-perl-0.78.orig/debian/po/tr.po +++ libwiki-toolkit-perl-0.78/debian/po/tr.po @@ -0,0 +1,78 @@ +# Turkish translation of libwiki-toolkit-perl debconf template. +# Copyright (C) 2008 +# This file is distributed under the same license as the libwiki-toolkit-perl package. +# Mert Dirik , 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: libwiki-toolkit-perl 0.76-1\n" +"Report-Msgid-Bugs-To: dom@earth.li\n" +"POT-Creation-Date: 2008-07-22 20:22+0100\n" +"PO-Revision-Date: 2008-07-22 22:46+0200\n" +"Last-Translator: Mert Dirik \n" +"Language-Team: Debian L10n Turkish \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Poedit-Language: Turkish\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Install version of Wiki::Toolkit requiring schema upgrade?" +msgstr "Şema yükseltmesi gerektiren Wiki::Toolkit sürümü kurulsun mu?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"You are about to install a version of Wiki::Toolkit which requires a " +"database schema upgrade. Until you have run the upgrade procedure on Wiki::" +"Toolkit databases, this will cause applications using Wiki::Toolkit to stop " +"working." +msgstr "" +"Veritabanı şema güncellemesi gerektiren bir Wiki::Toolkit sürümünü kurmak " +"üzeresiniz. Siz Wiki::Toolkit veritabanlarında yükseltme yordamını " +"çalıştırana kadar Wiki::Toolkit kullanan programlar çalışmayacak." + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"If your Wiki::Toolkit application installed an upgrade hook, this upgrade " +"procedure will optionally run this hook to automatically upgrade the database" +"(s) belonging to this application." +msgstr "" +"Eğer Wiki::Toolkit uygulamanız bir yükseltme kancası (hook) kurduysa; bu " +"yükseltme yordamı, söz konusu uygulamaya ait veritaban(lar)ının otomatik " +"olarak yükseltilmesini sağlamak için bu kancayı çalıştırabilir." + +#. Type: boolean +#. Description +#: ../templates:2001 +msgid "Automatically upgrade Wiki::Toolkit databases?" +msgstr "Wiki::Toolkit veritabanları otomatik olarak yükseltilsin mi?" + +#. Type: boolean +#. Description +#: ../templates:2001 +msgid "" +"Upgrade hooks provided by Wiki::Toolkit applications have been found. They " +"can be run after the package upgrade completes to automatically upgrade the " +"relevant databases." +msgstr "" +"Wiki::Toolkit uygulamaları tarafından sağlanan yükseltme kancaları bulundu. " +"Bu kancalar kurulumdan sonra ilgili veritabanlarını otomatik olarak " +"yükseltmek için çalıştırılabilir." + +#. Type: boolean +#. Description +#: ../templates:2001 +msgid "" +"It is recommended that you backup your Wiki::Toolkit databases before " +"upgrading them." +msgstr "" +"Yükseltme işleminden önce Wiki::Toolkit veritabanlarınızı yedeklemeniz " +"önerilir." --- libwiki-toolkit-perl-0.78.orig/debian/po/es.po +++ libwiki-toolkit-perl-0.78/debian/po/es.po @@ -0,0 +1,103 @@ +# libwiki-toolkit-perl po-debconf translation to Spanish +# Copyright (C) 2010 Software in the Public Interest +# This file is distributed under the same license as the libwiki-toolkit-perl package. +# +# Changes: +# - Initial translation +# Camaleón , 2010 +# +# - Updates +# +# +# 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: libwiki-toolkit-perl 0.78-1\n" +"Report-Msgid-Bugs-To: dom@earth.li\n" +"POT-Creation-Date: 2008-07-22 20:22+0100\n" +"PO-Revision-Date: 2010-05-20 16:15+0100\n" +"Last-Translator: Camaleón \n" +"Language-Team: Debian Spanish \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: Spanish\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Install version of Wiki::Toolkit requiring schema upgrade?" +msgstr "" +"¿Desea instalar una versión de Wiki::Toolkit que requiere una actualización " +"del esquema de la base de datos?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"You are about to install a version of Wiki::Toolkit which requires a " +"database schema upgrade. Until you have run the upgrade procedure on Wiki::" +"Toolkit databases, this will cause applications using Wiki::Toolkit to stop " +"working." +msgstr "" +"Va a instalar una versión de Wiki::Toolkit que requiere una actualización " +"del esquema de la base de datos. Hasta que actualice las bases de datos de " +"Wiki::Toolkit las aplicaciones que utilicen Wiki::Toolkit no funcionarán." + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"If your Wiki::Toolkit application installed an upgrade hook, this upgrade " +"procedure will optionally run this hook to automatically upgrade the database" +"(s) belonging to this application." +msgstr "" +"Si alguna aplicación de Wiki::Toolkit instaló un «hook» de actualización, al " +"actualizarla se ejecutará este «hook» de manera opcional para actualizar la" +"(s) base(s) de datos que pertenecen a esa aplicación." + +#. Type: boolean +#. Description +#: ../templates:2001 +msgid "Automatically upgrade Wiki::Toolkit databases?" +msgstr "¿Desea actualizar automáticamente las bases de datos de Wiki::Toolkit?" + +#. Type: boolean +#. Description +#: ../templates:2001 +msgid "" +"Upgrade hooks provided by Wiki::Toolkit applications have been found. They " +"can be run after the package upgrade completes to automatically upgrade the " +"relevant databases." +msgstr "" +"Se han encontrado «hooks» de actualización para las aplicaciones de Wiki::" +"Toolkit. Se pueden ejecutar tras la actualización del paquete para " +"actualizar automáticamente las bases de datos pertinentes." + +#. Type: boolean +#. Description +#: ../templates:2001 +msgid "" +"It is recommended that you backup your Wiki::Toolkit databases before " +"upgrading them." +msgstr "" +"Se recomienda que realice una copia de seguridad de las bases de datos de " +"Wiki::Toolkit antes de actualizarlas." --- libwiki-toolkit-perl-0.78.orig/debian/po/templates.pot +++ libwiki-toolkit-perl-0.78/debian/po/templates.pot @@ -0,0 +1,65 @@ +# 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: dom@earth.li\n" +"POT-Creation-Date: 2008-07-22 20:22+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: boolean +#. Description +#: ../templates:1001 +msgid "Install version of Wiki::Toolkit requiring schema upgrade?" +msgstr "" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"You are about to install a version of Wiki::Toolkit which requires a " +"database schema upgrade. Until you have run the upgrade procedure on Wiki::" +"Toolkit databases, this will cause applications using Wiki::Toolkit to stop " +"working." +msgstr "" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"If your Wiki::Toolkit application installed an upgrade hook, this upgrade " +"procedure will optionally run this hook to automatically upgrade the database" +"(s) belonging to this application." +msgstr "" + +#. Type: boolean +#. Description +#: ../templates:2001 +msgid "Automatically upgrade Wiki::Toolkit databases?" +msgstr "" + +#. Type: boolean +#. Description +#: ../templates:2001 +msgid "" +"Upgrade hooks provided by Wiki::Toolkit applications have been found. They " +"can be run after the package upgrade completes to automatically upgrade the " +"relevant databases." +msgstr "" + +#. Type: boolean +#. Description +#: ../templates:2001 +msgid "" +"It is recommended that you backup your Wiki::Toolkit databases before " +"upgrading them." +msgstr "" --- libwiki-toolkit-perl-0.78.orig/debian/po/fr.po +++ libwiki-toolkit-perl-0.78/debian/po/fr.po @@ -0,0 +1,83 @@ +# Translation of libwiki-toolkit-perl debconf templates to French +# Copyright (C) 2008 Julien Patriarca +# This file is distributed under the same license as the libwiki-toolkit-perl package. +# +# Julien Patriarca , 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: libwiki-toolkit-perl\n" +"Report-Msgid-Bugs-To: dom@earth.li\n" +"POT-Creation-Date: 2008-07-22 20:22+0100\n" +"PO-Revision-Date: 2008-07-15 23:23+0100\n" +"Last-Translator: Julien Patriarca \n" +"Language-Team: French \\n " +"\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: French\n" +"X-Poedit-Country: FRANCE\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Install version of Wiki::Toolkit requiring schema upgrade?" +msgstr "Faut-il mettre Wiki::Toolkit à niveau ?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"You are about to install a version of Wiki::Toolkit which requires a " +"database schema upgrade. Until you have run the upgrade procedure on Wiki::" +"Toolkit databases, this will cause applications using Wiki::Toolkit to stop " +"working." +msgstr "" +"Vous êtes sur le point d'installer une version de Wiki::Toolkit qui impose " +"une mise à jour du schéma de la base de données. Tant que cette mise à jour " +"n'aura pas eu lieu, les applications qui utilisent Wiki::Toolkit ne " +"fonctionneront pas." + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"If your Wiki::Toolkit application installed an upgrade hook, this upgrade " +"procedure will optionally run this hook to automatically upgrade the database" +"(s) belonging to this application." +msgstr "" +"Si une application qui utilise Wiki::Toolkit a installé un point d'entrée " +"pour un script de mise à niveau (« upgrade hook »), ce script sera exécuté " +"automatiquement et mettra à niveau la ou les bases de données de " +"l'application." + +#. Type: boolean +#. Description +#: ../templates:2001 +msgid "Automatically upgrade Wiki::Toolkit databases?" +msgstr "Mettre à jour automatiquement les bases de données de Wiki::Toolkit ?" + +#. Type: boolean +#. Description +#: ../templates:2001 +msgid "" +"Upgrade hooks provided by Wiki::Toolkit applications have been found. They " +"can be run after the package upgrade completes to automatically upgrade the " +"relevant databases." +msgstr "" +"Des points d'entrée pour scripts de mises à niveau d'applications utilisant " +"Wiki::Toolkit ont été trouvés. Ces scripts peuvent être exécutés après la " +"mise à jour du paquet pour mettre à niveau les bases de données de ces " +"applications." + +#. Type: boolean +#. Description +#: ../templates:2001 +msgid "" +"It is recommended that you backup your Wiki::Toolkit databases before " +"upgrading them." +msgstr "" +"Vous devriez sauvegarder les bases de données Wiki::Toolkit avant de les " +"mettre à jour." --- libwiki-toolkit-perl-0.78.orig/debian/po/ru.po +++ libwiki-toolkit-perl-0.78/debian/po/ru.po @@ -0,0 +1,79 @@ +# translation of ru.po to Russian +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Yuri Kozlov , 2008. +msgid "" +msgstr "" +"Project-Id-Version: ru\n" +"Report-Msgid-Bugs-To: dom@earth.li\n" +"POT-Creation-Date: 2008-07-22 20:22+0100\n" +"PO-Revision-Date: 2008-07-19 10:45+0400\n" +"Last-Translator: Yuri Kozlov \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" +"X-Generator: KBabel 1.11.4\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" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Install version of Wiki::Toolkit requiring schema upgrade?" +msgstr "Установить версию Wiki::Toolkit, требующую обновление схемы?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"You are about to install a version of Wiki::Toolkit which requires a " +"database schema upgrade. Until you have run the upgrade procedure on Wiki::" +"Toolkit databases, this will cause applications using Wiki::Toolkit to stop " +"working." +msgstr "" +"Вы собираетесь установить версию Wiki::Toolkit, которая требует обновления " +"схемы базы данных. Пока все базы данных Wiki::Toolkit не будут обновлены, " +"приложения Wiki::Toolkit не будут работать." + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"If your Wiki::Toolkit application installed an upgrade hook, this upgrade " +"procedure will optionally run this hook to automatically upgrade the database" +"(s) belonging to this application." +msgstr "" +"Если ваше приложение Wiki::Toolkit установило специальную процедуру (hook), " +"то она может быть автоматически вызвана при обновлении базы данных, " +"принадлежащей приложению." + +#. Type: boolean +#. Description +#: ../templates:2001 +msgid "Automatically upgrade Wiki::Toolkit databases?" +msgstr "Обновить базы данных Wiki::Toolkit автоматически?" + +#. Type: boolean +#. Description +#: ../templates:2001 +msgid "" +"Upgrade hooks provided by Wiki::Toolkit applications have been found. They " +"can be run after the package upgrade completes to automatically upgrade the " +"relevant databases." +msgstr "" +"Найдены специальные процедуры обновления, предоставленные приложениями Wiki::" +"Toolkit. Они могут быть запущены после завершения обновления пакета для " +"автоматического обновления соответствующих баз." + +#. Type: boolean +#. Description +#: ../templates:2001 +msgid "" +"It is recommended that you backup your Wiki::Toolkit databases before " +"upgrading them." +msgstr "" +"Перед обновлением баз данных Wiki::Toolkit рекомендуется сделать их " +"резервную копию." --- libwiki-toolkit-perl-0.78.orig/debian/po/fi.po +++ libwiki-toolkit-perl-0.78/debian/po/fi.po @@ -0,0 +1,71 @@ +msgid "" +msgstr "" +"Project-Id-Version: libwiki-toolkit-perl\n" +"Report-Msgid-Bugs-To: dom@earth.li\n" +"POT-Creation-Date: 2008-07-22 20:22+0100\n" +"PO-Revision-Date: 2008-07-27 07:58+0200\n" +"Last-Translator: Esko Arajärvi \n" +"Language-Team: Finnish \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Country: FINLAND\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Install version of Wiki::Toolkit requiring schema upgrade?" +msgstr "Asennetaanko Wiki::Toolkitin versio, joka vaatii skeeman päivityksen?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"You are about to install a version of Wiki::Toolkit which requires a " +"database schema upgrade. Until you have run the upgrade procedure on Wiki::" +"Toolkit databases, this will cause applications using Wiki::Toolkit to stop " +"working." +msgstr "" +"Wiki:Toolkitistä ollaan asentamassa versiota, joka vaatii tietokannan " +"skeeman päivityksen. Mikään Wiki::Toolkitiä käyttävä ohjelma ei toimi ennen " +"kuin Wiki::Toolkit-tietokannat on päivitetty." + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"If your Wiki::Toolkit application installed an upgrade hook, this upgrade " +"procedure will optionally run this hook to automatically upgrade the database" +"(s) belonging to this application." +msgstr "" +"Jos jokin käytössä oleva Wiki::Toolkit-ohjelma asensi päivityskoukun, tämä " +"päivitysprosessi voi automaattisesti päivittää ohjelman tietokannat käyttäen " +"tätä koukkua." + +#. Type: boolean +#. Description +#: ../templates:2001 +msgid "Automatically upgrade Wiki::Toolkit databases?" +msgstr "Päivitetäänkö Wiki::Toolkit-tietokannat automaattisesti?" + +#. Type: boolean +#. Description +#: ../templates:2001 +msgid "" +"Upgrade hooks provided by Wiki::Toolkit applications have been found. They " +"can be run after the package upgrade completes to automatically upgrade the " +"relevant databases." +msgstr "" +"Wiki::Toolkit-ohjelmien toimittamia päivityskoukkuja löytyi. Ne voidaan ajaa " +"paketin päivityksen jälkeen tietokantojen päivittämiseksi automaattisesti." + +#. Type: boolean +#. Description +#: ../templates:2001 +msgid "" +"It is recommended that you backup your Wiki::Toolkit databases before " +"upgrading them." +msgstr "" +"On suositeltavaa ottaa Wiki::Toolkit-tietokannoista varmuuskopiot ennen " +"niiden päivittämistä." --- libwiki-toolkit-perl-0.78.orig/debian/po/pt.po +++ libwiki-toolkit-perl-0.78/debian/po/pt.po @@ -0,0 +1,79 @@ +# translation of libwiki-toolkit-perl debconf to Portuguese +# Copyright (C) 2008 Américo Monteiro +# This file is distributed under the same license as the libwiki-toolkit-perl package. +# +# Américo Monteiro , 2008. +msgid "" +msgstr "" +"Project-Id-Version: libwiki-toolkit-perl 0.76-1\n" +"Report-Msgid-Bugs-To: dom@earth.li\n" +"POT-Creation-Date: 2008-07-22 20:22+0100\n" +"PO-Revision-Date: 2008-07-15 19:28+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: boolean +#. Description +#: ../templates:1001 +msgid "Install version of Wiki::Toolkit requiring schema upgrade?" +msgstr "Instalar versão do Wiki::Toolkit requerendo actualização de esquema?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"You are about to install a version of Wiki::Toolkit which requires a " +"database schema upgrade. Until you have run the upgrade procedure on Wiki::" +"Toolkit databases, this will cause applications using Wiki::Toolkit to stop " +"working." +msgstr "" +"Você está prestes a instalar uma versão do Wiki::Toolkit que requer uma " +"actualização do esquema da base de dados. Até que tenha decorrido o " +"procedimento de actualização nas bases de dados do Wiki::Toolkit, isto irá " +"causar que aplicações que usem o Wiki::Toolkit parem de funcionar." + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"If your Wiki::Toolkit application installed an upgrade hook, this upgrade " +"procedure will optionally run this hook to automatically upgrade the database" +"(s) belonging to this application." +msgstr "" +"Se a sua aplicação Wiki::Toolkit instalou um 'hook' de actualização, este " +"processo de actualização irá opcionalmente correr estes 'hook' para " +"actualizar automaticamente a(s) base(s) de dados pertencentes a essa " +"aplicação." + +#. Type: boolean +#. Description +#: ../templates:2001 +msgid "Automatically upgrade Wiki::Toolkit databases?" +msgstr "Actualizar automaticamente as bases de dados Wiki:Toolkit?" + +#. Type: boolean +#. Description +#: ../templates:2001 +msgid "" +"Upgrade hooks provided by Wiki::Toolkit applications have been found. They " +"can be run after the package upgrade completes to automatically upgrade the " +"relevant databases." +msgstr "" +"Foram detectados 'hooks' de actualização disponibilizados por aplicações " +"Wiki::Toolkit. Estes podem ser corridos após se completar a actualização do " +"pacote para actualizar automaticamente as bases de dados relevantes." + +#. Type: boolean +#. Description +#: ../templates:2001 +msgid "" +"It is recommended that you backup your Wiki::Toolkit databases before " +"upgrading them." +msgstr "" +"É recomendado que você guarde cópias de segurança das suas bases de dados " +"Wiki::Toolkit antes de as actualizar." --- libwiki-toolkit-perl-0.78.orig/debian/po/sv.po +++ libwiki-toolkit-perl-0.78/debian/po/sv.po @@ -0,0 +1,73 @@ +# 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: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: dom@earth.li\n" +"POT-Creation-Date: 2008-07-22 20:22+0100\n" +"PO-Revision-Date: 2008-07-18 19:02+0100\n" +"Last-Translator: Martin Bagge \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Install version of Wiki::Toolkit requiring schema upgrade?" +msgstr "Uppgradera dataschema?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"You are about to install a version of Wiki::Toolkit which requires a " +"database schema upgrade. Until you have run the upgrade procedure on Wiki::" +"Toolkit databases, this will cause applications using Wiki::Toolkit to stop " +"working." +msgstr "" +"Du kommer installera en version av Wiki::Toolkit som kräver att databaserna " +"uppdateras. Så länge databaserna inte uppgraderas kommer Wiki::Toolkit-" +"applikationer inte kunna använda dem och därmed sluta fungera." + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"If your Wiki::Toolkit application installed an upgrade hook, this upgrade " +"procedure will optionally run this hook to automatically upgrade the database" +"(s) belonging to this application." +msgstr "" +"Om din Wiki::Toolkit-applikation installerade en uppgraderingsgenväg så kan " +"den här uppgraderingen använda dessa genvägar för att automatiskt uppgradera " +"databasen för applikationen." + +#. Type: boolean +#. Description +#: ../templates:2001 +msgid "Automatically upgrade Wiki::Toolkit databases?" +msgstr "Vill du automatiskt uppgradera databaser som använder Wiki::Toolkit?" + +#. Type: boolean +#. Description +#: ../templates:2001 +msgid "" +"Upgrade hooks provided by Wiki::Toolkit applications have been found. They " +"can be run after the package upgrade completes to automatically upgrade the " +"relevant databases." +msgstr "" +"Hittade genvägar för uppgradering av Wiki::Toolkit-applikationer. Dessa kan " +"användas för att uppgradera databaser automatiskt." + +#. Type: boolean +#. Description +#: ../templates:2001 +msgid "" +"It is recommended that you backup your Wiki::Toolkit databases before " +"upgrading them." +msgstr "Du bör ta en backup av din databas innan du uppgraderar den."