debian/0000755000000000000000000000000012227633614007174 5ustar debian/patches/0000755000000000000000000000000012227631634010623 5ustar debian/patches/0001-Make-RTx-honour-the-DESTDIR-xxx-variable.patch0000644000000000000000000000143512227631634021407 0ustar From: Kai Storbeck Date: Wed, 28 Aug 2013 21:44:58 +0200 Subject: Make RTx honour the DESTDIR=xxx variable Closes #12964 on rt.cpan.org --- inc/Module/Install/RTx.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/Module/Install/RTx.pm b/inc/Module/Install/RTx.pm index c9fe996..5e3baf4 100644 --- a/inc/Module/Install/RTx.pm +++ b/inc/Module/Install/RTx.pm @@ -101,7 +101,7 @@ sub RTx { my %index = map { $_ => 1 } @INDEX_DIRS; $self->no_index( directory => $_ ) foreach grep !$index{$_}, @DIRS; - my $args = join ', ', map "q($_)", map { ($_, $path{$_}) } + my $args = join ', ', map "q($_)", map { ($_, '$(DESTDIR)' . $path{$_}) } grep $subdirs{$_}, keys %path; print "./$_\t=> $path{$_}\n" for sort keys %subdirs; debian/patches/series0000644000000000000000000000033112227631634012035 0ustar 0001-Make-RTx-honour-the-DESTDIR-xxx-variable.patch 0002-Don-t-delete-ticket-pagewidgets-Easy-for-user-to-dis.patch 0003-Use-newer-version-of-RT-PickCFs-element.patch 0004-Backport-required-method-from-newer-RT.patch debian/patches/0002-Don-t-delete-ticket-pagewidgets-Easy-for-user-to-dis.patch0000644000000000000000000000216212227631634024063 0ustar From: Bradley Bell Date: Sat, 5 Oct 2013 12:25:18 -0700 Subject: Don't delete ticket pagewidgets Easy for user to disable later if they want --- html/Callbacks/AssetTracker/Elements/Tabs/Privileged | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/html/Callbacks/AssetTracker/Elements/Tabs/Privileged b/html/Callbacks/AssetTracker/Elements/Tabs/Privileged index 8248050..f4e24b0 100644 --- a/html/Callbacks/AssetTracker/Elements/Tabs/Privileged +++ b/html/Callbacks/AssetTracker/Elements/Tabs/Privileged @@ -22,8 +22,8 @@ if ($@) { $assets->child( new => title => loc('New Search') => path => "/AssetTracker/Search/Build.html?NewQuery=1" ); if ( $request_path =~ m{^/AssetTracker/} ) { - PageWidgets()->delete('simple_search'); - PageWidgets()->delete('create_ticket'); +# PageWidgets()->delete('simple_search'); +# PageWidgets()->delete('create_ticket'); PageWidgets()->child( AT_simple_search => raw_html => $m->scomp('/AssetTracker/Elements/SimpleSearch') ); PageWidgets()->child( create_asset => raw_html => $m->scomp('/AssetTracker/Elements/CreateAsset') ); } debian/patches/0003-Use-newer-version-of-RT-PickCFs-element.patch0000644000000000000000000001202412227631634021414 0ustar From: Bradley Bell Date: Mon, 7 Oct 2013 13:38:51 -0700 Subject: Use newer version of RT PickCFs element --- html/AssetTracker/Search/Elements/PickAssetCFs | 2 +- html/AssetTracker/Search/Elements/PickCFs | 117 ++++++++++++++++++++++++ 2 files changed, 118 insertions(+), 1 deletion(-) create mode 100644 html/AssetTracker/Search/Elements/PickCFs diff --git a/html/AssetTracker/Search/Elements/PickAssetCFs b/html/AssetTracker/Search/Elements/PickAssetCFs index 6d1eab2..27b2d20 100644 --- a/html/AssetTracker/Search/Elements/PickAssetCFs +++ b/html/AssetTracker/Search/Elements/PickAssetCFs @@ -60,4 +60,4 @@ foreach my $id (keys %types) { $CustomFields->LimitToGlobalAsset; $CustomFields->OrderBy( FIELD => 'Name', ORDER => 'ASC' ); -<& /Search/Elements/PickCFs, %ARGS, TicketSQLField => 'CF', CustomFields => $CustomFields &> +<& PickCFs, %ARGS, TicketSQLField => 'CF', CustomFields => $CustomFields &> diff --git a/html/AssetTracker/Search/Elements/PickCFs b/html/AssetTracker/Search/Elements/PickCFs new file mode 100644 index 0000000..2f20063 --- /dev/null +++ b/html/AssetTracker/Search/Elements/PickCFs @@ -0,0 +1,117 @@ +%# BEGIN BPS TAGGED BLOCK {{{ +%# +%# COPYRIGHT: +%# +%# This software is Copyright (c) 1996-2013 Best Practical Solutions, LLC +%# +%# +%# (Except where explicitly superseded by other copyright notices) +%# +%# +%# LICENSE: +%# +%# This work is made available to you under the terms of Version 2 of +%# the GNU General Public License. A copy of that license should have +%# been provided with this software, but in any event can be snarfed +%# from www.gnu.org. +%# +%# This work is distributed in the hope that it will be useful, but +%# WITHOUT ANY WARRANTY; without even the implied warranty of +%# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +%# General Public License for more details. +%# +%# You should have received a copy of the GNU General Public License +%# along with this program; if not, write to the Free Software +%# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA +%# 02110-1301 or visit their web page on the internet at +%# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. +%# +%# +%# CONTRIBUTION SUBMISSION POLICY: +%# +%# (The following paragraph is not intended to limit the rights granted +%# to you to modify and distribute this software under the terms of +%# the GNU General Public License and is only of importance to you if +%# you choose to contribute your changes and enhancements to the +%# community by submitting them to Best Practical Solutions, LLC.) +%# +%# By intentionally submitting any modifications, corrections or +%# derivatives to this work, or any other work intended for use with +%# Request Tracker, to Best Practical Solutions, LLC, you confirm that +%# you are the copyright holder for those contributions and you grant +%# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, +%# royalty-free, perpetual, license to use, copy, create derivative +%# works based on those contributions, and sublicense and distribute +%# those contributions and any derivatives thereof. +%# +%# END BPS TAGGED BLOCK }}} +% foreach( @lines ) { +<& /Search/Elements/ConditionRow, Condition => $_ &> +% } +<%INIT> +$m->callback( + CallbackName => 'MassageCustomFields', + CustomFields => $CustomFields, +); + + +my @lines; +while ( my $CustomField = $CustomFields->Next ) { + my %line; + $line{'Name'} = "'$TicketSQLField.{" . $CustomField->Name . "}'"; + $line{'Field'} = $CustomField->Name; + + # Op + if ($CustomField->Type =~ /^Date(Time)?$/ ) { + $line{'Op'} = { + Type => 'component', + Path => '/Elements/SelectDateRelation', + Arguments => {}, + }; + } + elsif ($CustomField->Type =~ /^IPAddress(Range)?$/ ) { + $line{'Op'} = { + Type => 'component', + Path => '/Elements/SelectIPRelation', + Arguments => {}, + }; + } else { + $line{'Op'} = { + Type => 'component', + Path => '/Elements/SelectCustomFieldOperator', + Arguments => { True => loc("is"), + False => loc("isn't"), + TrueVal=> '=', + FalseVal => '!=', + }, + }; + } + + # Value + if ($CustomField->Type =~ /^Date(Time)?$/) { + my $is_datetime = $1 ? 1 : 0; + $line{'Value'} = { + Type => 'component', + Path => '/Elements/SelectDate', + Arguments => { $is_datetime ? (ShowTime => 1) : (ShowTime => 0), }, + }; + } else { + $line{'Value'} = { + Type => 'component', + Path => '/Elements/SelectCustomFieldValue', + Arguments => { CustomField => $CustomField }, + }; + } + + push @lines, \%line; +} + +$m->callback( Conditions => \@lines, Queues => \%queues ); + + + +<%ARGS> +%queues => () +$CustomFields +$TicketSQLField => 'CF' + debian/patches/0004-Backport-required-method-from-newer-RT.patch0000644000000000000000000000253312227631634021473 0ustar From: Bradley Bell Date: Mon, 7 Oct 2013 13:50:48 -0700 Subject: Backport required method from newer RT --- lib/RT/CustomField_ATOverlay.pm | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/lib/RT/CustomField_ATOverlay.pm b/lib/RT/CustomField_ATOverlay.pm index e006ff4..32cf27f 100644 --- a/lib/RT/CustomField_ATOverlay.pm +++ b/lib/RT/CustomField_ATOverlay.pm @@ -75,4 +75,37 @@ sub LoadByNameAndAssetType { } +=head1 ObjectTypeFromLookupType + +Returns the ObjectType used in ObjectCustomFieldValues rows for this CF + +Optionally takes a LookupType to use instead of using the value on the loaded +record. In this case, the method may be called on the class instead of an +object. + +=for comment + +Backported from newer RT because AT needs it. + +=cut + +sub ObjectTypeFromLookupType { + my $self = shift; + my $type = shift || $self->LookupType; + my ($class) = ($type =~ /([^-]+)$/); + unless ( $class ) { + if (blessed($self) and $self->LookupType eq $type) { + $RT::Logger->error( + "Custom Field #". $self->id + ." has incorrect LookupType '$type'" + ); + } else { + RT->Logger->error("Invalid LookupType passed as argument: $type"); + } + return undef; + } + return $class; +} + + 1; debian/lintian/0000755000000000000000000000000012227577422010636 5ustar debian/lintian/rt3.8-extension-assettracker0000644000000000000000000000024712227577422016145 0ustar # questions are only asked at install time if the user has explicitly # asked for them or if an error is encountered with the database upgrades postinst-uses-db-input debian/lintian/rt4-extension-assettracker0000644000000000000000000000024712227577422016000 0ustar # questions are only asked at install time if the user has explicitly # asked for them or if an error is encountered with the database upgrades postinst-uses-db-input debian/rt4-extension-assettracker.README.debian0000644000000000000000000000566512227577422016530 0ustar Asset Tracker for Debian ------------------------ Database modifications on install ================================= AT needs a few schema and ACL modifications to the RT database. The package installation scripts now automatically apply these modifications when needed, unless otherwise instructed by a debconf question (or /etc/rt4-extension-assettracker/debian.conf, which is where the answer is stored.) Of course, this requires a working RT installation. The output of any database modification commands run by the maintainer scripts should be found in the RT log, logged via syslog by default. If you want to setup the database manually, answer the debconf question accordingly and run the following commands (as root, or anybody else that can read /etc/request-tracker4/RT_SiteConfig.pm): # for action in schema acl; do \ rt-setup-database-4 \ --action $action \ --datadir /usr/share/request-tracker4/plugins/RTx-AssetTracker/etc \ --dba rtuser --prompt-for-dba-password ; \ done # PERLLIB=/usr/share/request-tracker4/plugins/RTx-AssetTracker/lib \ rt-setup-database-4 \ --action insert \ --datadir /usr/share/request-tracker4/plugins/RTx-AssetTracker/etc \ --datafile /usr/share/request-tracker4/plugins/RTx-AssetTracker/etc/initialdata \ --dba rtuser --prompt-for-dba-password ; \ where "rtuser" is your $RT::DatabaseUser, as defined in RT_SiteConfig.pm. (The database administrator will also do, but that's a bit overkill.) Database modifications on upgrade from 1.2.x ============================================ The upstream version, 2.0.0, is a major new release with a few database schema modifications from the 1.2 series. The package installation scripts can detect if the database needs to be updated and do the update automatically if you let them. (If you want to use the automatic upgrade later, just run 'dpkg-reconfigure rt4-extension-assettracker'). If you want to run the upgrade commands manually, answer the debconf question accordingly and run the following commands (as root, or anybody else that can read /etc/request-tracker4/RT_SiteConfig.pm): # for dir in /usr/share/request-tracker4/plugins/RTx-AssetTracker/etc/upgrade/*; do \ for action in schema acl; do \ rt-setup-database-4 \ --action $action \ --datadir $dir \ --dba rtuser --prompt-for-dba-password ; \ done Enabling Asset Tracker ====================== AT needs to be enabled as a plugin in RT before it will work. This must be done manually by the system administrator, for example by adding Set(@Plugins, (qw(RTx::AssetTracker))); to your RT_SiteConfig.pm, or a file in RT_SiteConfig.d Note that there should only be a single Set(@Plugins, qw(...)) command containing all the plugins you wish to enable (separated by whitespace). Web server ========== You may also need to restart your web server on install/upgrade. Apache users can use '/etc/init.d/apache2 force-reload' for this. -- Bradley Bell Thu, 21 Apr 2011 14:53:13 -0700 debian/po/0000755000000000000000000000000012227577422007616 5ustar debian/po/nl.po0000644000000000000000000001163512227577422010575 0ustar # Dutch translation of rt-extension-assettracker debconf templates. # Copyright (C) 2011 THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the rt-extension-assettracker package. # Jeroen Schot , 2011. # msgid "" msgstr "" "Project-Id-Version: rt-extension-assettracker 2.0.0~b2-2\n" "Report-Msgid-Bugs-To: rt-extension-assettracker@packages.debian.org\n" "POT-Creation-Date: 2012-10-17 18:51+0100\n" "PO-Revision-Date: 2011-07-08 13:51+0200\n" "Last-Translator: Jeroen Schot \n" "Language-Team: Debian l10n Dutch \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:2001 msgid "allow" msgstr "toestaan" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:2001 msgid "prompt" msgstr "vragen" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:2001 msgid "deny" msgstr "weigeren" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:2002 msgid "Permission to modify the Request Tracker database:" msgstr "Toestemming om de database van de Request Tracker te wijzigen:" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:2002 msgid "" "Asset Tracker needs some modifications in the Request Tracker database to be " "functional. These modifications can be made automatically (choose \"allow\") " "or you may be prompted when they are needed (choose \"prompt\"). " "Alternatively, you can run the necessary commands manually (choose \"deny\")." msgstr "" "Asset Tracker moet wijzigingen aanbrengen in de database van de Request " "Tracker om te kunnen werken. Deze wijzigingen kunnen automatische worden " "aangebracht (kies \"toestaan\") of dit kan gevraagd worden wanneer het nodig " "is (kies \"vragen\"). Daarnaast is het ook mogelijk dat u de benodigde " "commando's handmatig uitvoert (kies \"weigeren\")." #. Type: select #. Description #: ../rt4-extension-assettracker.templates:2002 msgid "Please check the README.Debian file for more details." msgstr "Lees het README.Debian-bestand voor meer details." #. Type: boolean #. Description #: ../rt4-extension-assettracker.templates:3001 msgid "Set up the Request Tracker database?" msgstr "De database van de Request Tracker instellen?" #. Type: boolean #. Description #: ../rt4-extension-assettracker.templates:3001 msgid "" "New tables must be created in the Request Tracker database for Asset Tracker " "to be functional." msgstr "" "Er moeten nieuwe tabellen worden aangemaakt in de database van de Request " "Tracker om Asset Tracker te kunnen gebruiken." #. Type: boolean #. Description #: ../rt4-extension-assettracker.templates:4001 msgid "Upgrade the Request Tracker database?" msgstr "De database van de Request Tracker opwaarderen?" #. Type: boolean #. Description #: ../rt4-extension-assettracker.templates:4001 msgid "" "The Request Tracker database schema and contents must be upgraded for this " "version of Asset Tracker." msgstr "" "Het schema en de inhoud van de database van de Request Tracker moeten worden " "opgewaardeerd voor deze versie van Asset Tracker." #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:5001 msgid "abort" msgstr "afbreken" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:5001 msgid "retry" msgstr "opnieuw proberen" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:5001 msgid "ignore" msgstr "negeren" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:5002 msgid "Action after database modification error:" msgstr "Actie na fout bij databasewijziging:" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:5002 msgid "An error occurred while modifying the database:" msgstr "Er is een fout opgetreden tijdens het wijzigen van de database:" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:5002 msgid "" "The full output should be available in Request Tracker log, most probably " "syslog." msgstr "" "De volledige uitvoer hoort u te kunnen vinden in het logbestand van Request " "Tracker, dit is waarschijnlijk syslog." #. Type: select #. Description #: ../rt4-extension-assettracker.templates:5002 msgid "" "You can retry the modification, abort the installation or ignore the error. " "If you abort the installation, the operation will fail and you will need to " "manually intervene (for instance by purging and reinstalling). If you choose " "to ignore the error, the upgrade process will continue." msgstr "" "U kunt de wijziging nogmaals proberen, de installatie afbreken of de fout " "negeren. Als u de installatie afbreekt zal de operatie mislukken en moet u " "handmatig ingrijpen (bijvoorbeeld door het pakket te wissen (purge) en " "herinstalleren). Als u ervoor kiest om de fout te negeren zal het " "opwaarderen verdergaan." debian/po/ja.po0000644000000000000000000001204312227577422010550 0ustar # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # victory , 2012. # msgid "" msgstr "" "Project-Id-Version: rt-extension-assettracker\n" "Report-Msgid-Bugs-To: rt-extension-assettracker@packages.debian.org\n" "POT-Creation-Date: 2012-10-17 18:51+0100\n" "PO-Revision-Date: 2012-06-17 07:57+0900\n" "Last-Translator: victory \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: select #. Choices #: ../rt4-extension-assettracker.templates:2001 msgid "allow" msgstr "許可" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:2001 msgid "prompt" msgstr "問い合わせる" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:2001 msgid "deny" msgstr "拒否" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:2002 msgid "Permission to modify the Request Tracker database:" msgstr "Request Tracker データベースの変更許可:" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:2002 msgid "" "Asset Tracker needs some modifications in the Request Tracker database to be " "functional. These modifications can be made automatically (choose \"allow\") " "or you may be prompted when they are needed (choose \"prompt\"). " "Alternatively, you can run the necessary commands manually (choose \"deny\")." msgstr "" "Asset Tracker が機能するためには、Request Tracker データベースへの変更がいく" "らか必要です。変更は自動で行う (「許可」選択の場合)、または必要なときに問い合" "わせる (「問い合わせる」選択の場合) ようにできます。手作業で必要なコマンドを" "実行して変更する (「拒否」選択の場合) こともできます。" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:2002 msgid "Please check the README.Debian file for more details." msgstr "さらなる詳細については、README.Debian ファイルを確認してください。" #. Type: boolean #. Description #: ../rt4-extension-assettracker.templates:3001 msgid "Set up the Request Tracker database?" msgstr "Request Tracker データベースを準備しますか?" #. Type: boolean #. Description #: ../rt4-extension-assettracker.templates:3001 msgid "" "New tables must be created in the Request Tracker database for Asset Tracker " "to be functional." msgstr "" "Asset Tracker が機能するためには、Request Tracker データベースにテーブルを作" "らなければなりません。" #. Type: boolean #. Description #: ../rt4-extension-assettracker.templates:4001 msgid "Upgrade the Request Tracker database?" msgstr "Request Tracker データベースを更新しますか?" #. Type: boolean #. Description #: ../rt4-extension-assettracker.templates:4001 msgid "" "The Request Tracker database schema and contents must be upgraded for this " "version of Asset Tracker." msgstr "" "Request Tracker データベーススキーマおよびその内容をこのバージョンの Asset " "Tracker に合わせて更新しなければなりません。" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:5001 msgid "abort" msgstr "中止" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:5001 msgid "retry" msgstr "再試行" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:5001 msgid "ignore" msgstr "無視" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:5002 msgid "Action after database modification error:" msgstr "データベースの変更でエラーが発生した場合の動作:" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:5002 msgid "An error occurred while modifying the database:" msgstr "データベースの変更中にエラーが発生しました:" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:5002 msgid "" "The full output should be available in Request Tracker log, most probably " "syslog." msgstr "" "出力全体は Request Tracker のログ、ほぼ間違いなく syslog にあるでしょう。" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:5002 msgid "" "You can retry the modification, abort the installation or ignore the error. " "If you abort the installation, the operation will fail and you will need to " "manually intervene (for instance by purging and reinstalling). If you choose " "to ignore the error, the upgrade process will continue." msgstr "" "変更の再試行、インストール作業の中止、あるいはエラーの無視が可能です。インス" "トール作業を中止すると、操作は失敗となり手作業での介入が必要となります (一例" "を挙げると完全削除してから再インストール)。エラーの無視を選択すると更新処理は" "続行となります。" debian/po/es.po0000644000000000000000000001331712227577422010572 0ustar # rt-extension-assettracker po-debconf translation to Spanish # Copyright (C) 2011 Software in the Public Interest # This file is distributed under the same license as the rt-extension-assettracker package. # # Changes: # - Initial translation # Francisco Javier Cuadrado , 2011 # # 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: rt-extension-assettracker 2.0.0~b2-2\n" "Report-Msgid-Bugs-To: rt-extension-assettracker@packages.debian.org\n" "POT-Creation-Date: 2012-10-17 18:51+0100\n" "PO-Revision-Date: 2011-06-29 12:52+0100\n" "Last-Translator: Francisco Javier Cuadrado \n" "Language-Team: Debian l10n Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:2001 msgid "allow" msgstr "permitir" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:2001 msgid "prompt" msgstr "preguntar" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:2001 msgid "deny" msgstr "denegar" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:2002 msgid "Permission to modify the Request Tracker database:" msgstr "Permiso para modificar la base de datos de «Request Tracker»:" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:2002 msgid "" "Asset Tracker needs some modifications in the Request Tracker database to be " "functional. These modifications can be made automatically (choose \"allow\") " "or you may be prompted when they are needed (choose \"prompt\"). " "Alternatively, you can run the necessary commands manually (choose \"deny\")." msgstr "" "«Asset Tracker» necesita algunas modificaciones en la base de datos de " "«Request Tracker» para poder funcionar. Estas modificaciones se pueden " "realizar automáticamente (elija «permitir») o se le puede preguntar cuando " "sean necesarias (elija «preguntar»). También, puede ejecutar las órdenes " "necesarias de forma manual (elija «denegar»)." #. Type: select #. Description #: ../rt4-extension-assettracker.templates:2002 msgid "Please check the README.Debian file for more details." msgstr "Consulte el archivo «README.Debian» para más detalles." #. Type: boolean #. Description #: ../rt4-extension-assettracker.templates:3001 msgid "Set up the Request Tracker database?" msgstr "¿Desea configurar la base de datos de «Request Tracker»?" #. Type: boolean #. Description #: ../rt4-extension-assettracker.templates:3001 msgid "" "New tables must be created in the Request Tracker database for Asset Tracker " "to be functional." msgstr "" "Se deben crear nuevas tablas en la base de datos de Request Tracker para que " "Asset Tracker pueda funcionar." #. Type: boolean #. Description #: ../rt4-extension-assettracker.templates:4001 msgid "Upgrade the Request Tracker database?" msgstr "¿Desea actualizar la base de datos de Request Tracker?" #. Type: boolean #. Description #: ../rt4-extension-assettracker.templates:4001 msgid "" "The Request Tracker database schema and contents must be upgraded for this " "version of Asset Tracker." msgstr "" "El esquema y los contenidos de la base de datos de Request Tracker se deben " "actualizar para esta versión de Asset Tracker." #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:5001 msgid "abort" msgstr "cancelar" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:5001 msgid "retry" msgstr "reintentar" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:5001 msgid "ignore" msgstr "ignorar" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:5002 msgid "Action after database modification error:" msgstr "" "Acción a tomar después de un error en la modificación de la base de datos:" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:5002 msgid "An error occurred while modifying the database:" msgstr "Se produjo un error al intentar modificar la base de datos:" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:5002 msgid "" "The full output should be available in Request Tracker log, most probably " "syslog." msgstr "" "El mensaje completo debería estar disponible en el registro de Request " "Tracker, más probablemente en syslog." #. Type: select #. Description #: ../rt4-extension-assettracker.templates:5002 msgid "" "You can retry the modification, abort the installation or ignore the error. " "If you abort the installation, the operation will fail and you will need to " "manually intervene (for instance by purging and reinstalling). If you choose " "to ignore the error, the upgrade process will continue." msgstr "" "Puede intentar de nuevo la modificación, abortar la instalación o ignorar el " "error. Si aborta la instalación, la operación fallará y necesitará " "intervenir manualmente (por ejemplo: purgando y volviendo a instalar). Si " "elige ignorar el error, el proceso de actualización continuará." debian/po/POTFILES.in0000644000000000000000000000007712227577422011377 0ustar [type: gettext/rfc822deb] rt4-extension-assettracker.templates debian/po/da.po0000644000000000000000000001125412227577422010545 0ustar # Danish translation rt-extension-assettracker. # Copyright (C) 2011 rt-extension-assettracker & nedenstående oversætttere. # This file is distributed under the same license as the rt-extension-assettracker package. # Joe Hansen , 2011. # msgid "" msgstr "" "Project-Id-Version: rt-extension-assettracker\n" "Report-Msgid-Bugs-To: rt-extension-assettracker@packages.debian.org\n" "POT-Creation-Date: 2012-10-17 18:51+0100\n" "PO-Revision-Date: 2011-06-26 14:44+0200\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: select #. Choices #: ../rt4-extension-assettracker.templates:2001 msgid "allow" msgstr "tillad" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:2001 msgid "prompt" msgstr "spørg" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:2001 msgid "deny" msgstr "nægt" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:2002 msgid "Permission to modify the Request Tracker database:" msgstr "Tilladelse til at ændre Request Tracker-databasen:" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:2002 msgid "" "Asset Tracker needs some modifications in the Request Tracker database to be " "functional. These modifications can be made automatically (choose \"allow\") " "or you may be prompted when they are needed (choose \"prompt\"). " "Alternatively, you can run the necessary commands manually (choose \"deny\")." msgstr "" "Asset Tracker kræver nogle ændringer i Request Tracker-databasen for at " "fungere. Disse ændringer kan udføres automatisk (vælg »tillad«) eller du kan " "blive spurgt, når de er krævet (vælg »spørg«). Alternativt kan du køre de " "nødvendige kommandoer manuelt (vælg »nægt«)." #. Type: select #. Description #: ../rt4-extension-assettracker.templates:2002 msgid "Please check the README.Debian file for more details." msgstr "Tjek venligst README.Debian-filen for yderligere detaljer." #. Type: boolean #. Description #: ../rt4-extension-assettracker.templates:3001 msgid "Set up the Request Tracker database?" msgstr "Opsæt Request Tracker-databasen?" #. Type: boolean #. Description #: ../rt4-extension-assettracker.templates:3001 msgid "" "New tables must be created in the Request Tracker database for Asset Tracker " "to be functional." msgstr "" "Nye tabeller skal oprettes i Request Tracker-databasen for at Asset Tracker " "er funktionel." #. Type: boolean #. Description #: ../rt4-extension-assettracker.templates:4001 msgid "Upgrade the Request Tracker database?" msgstr "Opgrader Request Tracker-databasen?" #. Type: boolean #. Description #: ../rt4-extension-assettracker.templates:4001 msgid "" "The Request Tracker database schema and contents must be upgraded for this " "version of Asset Tracker." msgstr "" "Request Tracker-databaseskemaet og indhold skal opgraderes for denne version " "af Asset Tracker." #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:5001 msgid "abort" msgstr "afbryd" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:5001 msgid "retry" msgstr "prøv igen" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:5001 msgid "ignore" msgstr "ignorer" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:5002 msgid "Action after database modification error:" msgstr "Handling efter fejl ved databaseændring:" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:5002 msgid "An error occurred while modifying the database:" msgstr "Der opstod en fejl under ændring af databasen:" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:5002 msgid "" "The full output should be available in Request Tracker log, most probably " "syslog." msgstr "" "De fulde uddata bør være tilgængelig i Request Tracker-loggen, højst " "sandsynlig syslog." #. Type: select #. Description #: ../rt4-extension-assettracker.templates:5002 msgid "" "You can retry the modification, abort the installation or ignore the error. " "If you abort the installation, the operation will fail and you will need to " "manually intervene (for instance by purging and reinstalling). If you choose " "to ignore the error, the upgrade process will continue." msgstr "" "Du kan udføre ændringen igen, afbryde installationen eller ignorere denne " "fejl. Hvis du afbryder installationen, vil handlingen fejle og du vil skulle " "rette manuelt (for eksempel ved at rydde op og geninstallere). Hvis du " "vælger at ignorere fejlen, vil opgraderingsprocessen fortsætte." debian/po/cs.po0000644000000000000000000001156312227577422010571 0ustar # Czech PO debconf template translation of rt-extension-assettracker. # Copyright (C) 2011 Michal Simunek # This file is distributed under the same license as the rt-extension-assettracker package. # Michal Simunek , 2011. # msgid "" msgstr "" "Project-Id-Version: rt-extension-assettracker 2.0.0~b2-2\n" "Report-Msgid-Bugs-To: rt-extension-assettracker@packages.debian.org\n" "POT-Creation-Date: 2012-10-17 18:51+0100\n" "PO-Revision-Date: 2011-07-08 14:31+0200\n" "Last-Translator: Michal Simunek \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: select #. Choices #: ../rt4-extension-assettracker.templates:2001 msgid "allow" msgstr "povolit" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:2001 msgid "prompt" msgstr "potvrdit" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:2001 msgid "deny" msgstr "zakázat" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:2002 msgid "Permission to modify the Request Tracker database:" msgstr "Oprávnění upravit databázi pro Request Tracker:" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:2002 msgid "" "Asset Tracker needs some modifications in the Request Tracker database to be " "functional. These modifications can be made automatically (choose \"allow\") " "or you may be prompted when they are needed (choose \"prompt\"). " "Alternatively, you can run the necessary commands manually (choose \"deny\")." msgstr "" "Aby byl Asset Tracker funkční, je třeba provést určité úpravy v databázi pro " "Request Tracker. Úpravy lze provést automaticky (zvolte \"povolit\"), nebo " "když je bude třeba provést, můžete být požádáni o jejich potvrzení (zvolte " "\"potvrdit\"). Potřebné příkazy můžete případně zadat ručně (zvolte \"zakázat" "\")." #. Type: select #. Description #: ../rt4-extension-assettracker.templates:2002 msgid "Please check the README.Debian file for more details." msgstr "Pro více informací se prosím podívaejte do souboru README.Debian." #. Type: boolean #. Description #: ../rt4-extension-assettracker.templates:3001 msgid "Set up the Request Tracker database?" msgstr "Nastavit databázi pro Request Tracker?" #. Type: boolean #. Description #: ../rt4-extension-assettracker.templates:3001 msgid "" "New tables must be created in the Request Tracker database for Asset Tracker " "to be functional." msgstr "" "Aby byl Asset Tracker funkční, musí se v databázi pro Request Tracker " "vytvořit nové tabulky." #. Type: boolean #. Description #: ../rt4-extension-assettracker.templates:4001 msgid "Upgrade the Request Tracker database?" msgstr "Aktualizovat databázi pro Request Tracker?" #. Type: boolean #. Description #: ../rt4-extension-assettracker.templates:4001 msgid "" "The Request Tracker database schema and contents must be upgraded for this " "version of Asset Tracker." msgstr "" "Pro tuto verzi Asset Trackeru se musí aktualizovat struktura a obsah " "databáze pro Request Tracker." #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:5001 msgid "abort" msgstr "přerušit" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:5001 msgid "retry" msgstr "opakovat" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:5001 msgid "ignore" msgstr "ignorovat" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:5002 msgid "Action after database modification error:" msgstr "Akce po neúspěšné aktualizaci databáze:" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:5002 msgid "An error occurred while modifying the database:" msgstr "Při úpravě databáze došlo k chybě:" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:5002 msgid "" "The full output should be available in Request Tracker log, most probably " "syslog." msgstr "" "Úplný výpis by měl být dostupný v rejstříku Request Trackeru, ten se s " "největší pravděpodobností bude nacházet v systémovém rejstříku." #. Type: select #. Description #: ../rt4-extension-assettracker.templates:5002 msgid "" "You can retry the modification, abort the installation or ignore the error. " "If you abort the installation, the operation will fail and you will need to " "manually intervene (for instance by purging and reinstalling). If you choose " "to ignore the error, the upgrade process will continue." msgstr "" "Můžete opakovat úpravu, přerušit instalaci, nebo ignorovat chybu. Přerušíte-" "li instalaci, operace se nezdaří a budete muset ručně zasáhnout (například " "balíček úplně odstranit a pak jej znovu nainstalovat). Zvolíte-li ignorovat " "chybu, proces aktualizace bude pokračovat." debian/po/pt.po0000644000000000000000000001156112227577422010605 0ustar # Portuguese translation for rt-extension-assettracker (debconf) # This file is distributed under the same license as the rt-extension-assettracker package. # Rui Branco , 2011. # msgid "" msgstr "" "Project-Id-Version: rt-extension-assettracker 2.0.0~b2-2\n" "Report-Msgid-Bugs-To: rt-extension-assettracker@packages.debian.org\n" "POT-Creation-Date: 2012-10-17 18:51+0100\n" "PO-Revision-Date: 2011-07-05 22:09+0100\n" "Last-Translator: Rui Branco \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" "Plural-Forms: nplurals=2; plural=(n != 1)\n" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:2001 msgid "allow" msgstr "permitir" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:2001 msgid "prompt" msgstr "perguntar" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:2001 msgid "deny" msgstr "negar" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:2002 msgid "Permission to modify the Request Tracker database:" msgstr "Permissão para modificar a base de dados do 'Request Tracker':" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:2002 msgid "" "Asset Tracker needs some modifications in the Request Tracker database to be " "functional. These modifications can be made automatically (choose \"allow\") " "or you may be prompted when they are needed (choose \"prompt\"). " "Alternatively, you can run the necessary commands manually (choose \"deny\")." msgstr "" "O 'Asset Tracker' necessita de algumas modificações na base de dados do " "'Request Tracker' para que fique funcional. Estas modificações podem ser " "feitas automaticamente (escolha \"permitir\") ou pode-lhe ser perguntado " "quando necessário (escolha \"perguntar\"). Alternativamente, pode correr " "manualmente os comandos necessários (escolha \"negar\")" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:2002 msgid "Please check the README.Debian file for more details." msgstr "Por favor consulte o ficheiro README:Debian para mais detalhes." #. Type: boolean #. Description #: ../rt4-extension-assettracker.templates:3001 msgid "Set up the Request Tracker database?" msgstr "Configurar a base de dados do 'Request Tracker'?" #. Type: boolean #. Description #: ../rt4-extension-assettracker.templates:3001 msgid "" "New tables must be created in the Request Tracker database for Asset Tracker " "to be functional." msgstr "" "Novas tabelas têm que ser criadas na base de dados do 'Request Tracker' para " "que o 'Asset Tracker' fique operacional." #. Type: boolean #. Description #: ../rt4-extension-assettracker.templates:4001 msgid "Upgrade the Request Tracker database?" msgstr "Actualizar a base de dados do 'Request Tracker'?" #. Type: boolean #. Description #: ../rt4-extension-assettracker.templates:4001 msgid "" "The Request Tracker database schema and contents must be upgraded for this " "version of Asset Tracker." msgstr "" "O esquema da base de dados do 'Request Tracker' e o seu conteúdo pode ser " "actualizado para esta versão do 'Asset Tracker'." #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:5001 msgid "abort" msgstr "abortar" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:5001 msgid "retry" msgstr "repetir" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:5001 msgid "ignore" msgstr "ignorar" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:5002 msgid "Action after database modification error:" msgstr "Acção a tomar depois de erro na modificação da base de dados:" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:5002 msgid "An error occurred while modifying the database:" msgstr "Um erro ocorreu enquanto se actualizava a base de dados:" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:5002 msgid "" "The full output should be available in Request Tracker log, most probably " "syslog." msgstr "" "O resultado completo deverá estar disponível no log do 'Request Tracker', " "mais provavelmente no syslog." #. Type: select #. Description #: ../rt4-extension-assettracker.templates:5002 msgid "" "You can retry the modification, abort the installation or ignore the error. " "If you abort the installation, the operation will fail and you will need to " "manually intervene (for instance by purging and reinstalling). If you choose " "to ignore the error, the upgrade process will continue." msgstr "" "Pode repetir a modificação, abortar a instalação ou ignorar o erro. Se " "abortar a instalação, a operação irá falhar e terá que intervir manualmente " "(por exemplo recorrendo a uma purga ou reinstalar). Se escolher ignorar o " "erro, o processo de actualização irá continuar." debian/po/ru.po0000644000000000000000000001320712227577422010607 0ustar # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the rt-extension-assettracker package. # # Yuri Kozlov , 2011. msgid "" msgstr "" "Project-Id-Version: rt-extension-assettracker 2.0.0~b2-2\n" "Report-Msgid-Bugs-To: rt-extension-assettracker@packages.debian.org\n" "POT-Creation-Date: 2012-10-17 18:51+0100\n" "PO-Revision-Date: 2011-06-28 21:43+0400\n" "Last-Translator: Yuri Kozlov \n" "Language-Team: Russian \n" "Language: \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=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: select #. Choices #: ../rt4-extension-assettracker.templates:2001 msgid "allow" msgstr "разрешить" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:2001 msgid "prompt" msgstr "отложить" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:2001 msgid "deny" msgstr "запретить" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:2002 msgid "Permission to modify the Request Tracker database:" msgstr "Изменение базы данных Request Tracker:" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:2002 msgid "" "Asset Tracker needs some modifications in the Request Tracker database to be " "functional. These modifications can be made automatically (choose \"allow\") " "or you may be prompted when they are needed (choose \"prompt\"). " "Alternatively, you can run the necessary commands manually (choose \"deny\")." msgstr "" "Для работы Asset Tracker требуется внести изменения в базу данных Request " "Tracker. Это может быть сделано автоматически (выберите «разрешить») или вам " "предложат это сделать при необходимости (выберите «отложить»). Или же вы " "можете запустить необходимые команды вручную (выберите «запретить»)." #. Type: select #. Description #: ../rt4-extension-assettracker.templates:2002 msgid "Please check the README.Debian file for more details." msgstr "Более полное описание смотрите в файле README.Debian." #. Type: boolean #. Description #: ../rt4-extension-assettracker.templates:3001 msgid "Set up the Request Tracker database?" msgstr "Настроить базу данных Request Tracker?" #. Type: boolean #. Description #: ../rt4-extension-assettracker.templates:3001 msgid "" "New tables must be created in the Request Tracker database for Asset Tracker " "to be functional." msgstr "" "Для работы Asset Tracker требуется создать новые таблицы в базе данных " "Request Tracker." #. Type: boolean #. Description #: ../rt4-extension-assettracker.templates:4001 msgid "Upgrade the Request Tracker database?" msgstr "Обновить базу данных Request Tracker?" #. Type: boolean #. Description #: ../rt4-extension-assettracker.templates:4001 msgid "" "The Request Tracker database schema and contents must be upgraded for this " "version of Asset Tracker." msgstr "" "Схема базы данных Request Tracker и её содержимое требуется обновить до этой " "версии Asset Tracker." #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:5001 msgid "abort" msgstr "прервать" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:5001 msgid "retry" msgstr "повторить" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:5001 msgid "ignore" msgstr "игнорировать" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:5002 msgid "Action after database modification error:" msgstr "Действие после ошибки при изменении базы данных:" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:5002 msgid "An error occurred while modifying the database:" msgstr "При изменении базы данных произошла ошибка:" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:5002 msgid "" "The full output should be available in Request Tracker log, most probably " "syslog." msgstr "" "Весь вывод хода работы доступен в журнале Request Tracker, обычно в syslog." #. Type: select #. Description #: ../rt4-extension-assettracker.templates:5002 msgid "" "You can retry the modification, abort the installation or ignore the error. " "If you abort the installation, the operation will fail and you will need to " "manually intervene (for instance by purging and reinstalling). If you choose " "to ignore the error, the upgrade process will continue." msgstr "" "Вы можете повторить попытку изменения, прервать установку или " "проигнорировать ошибку. Если вы выберете прерывание установки, то операция " "завершится неудачно и вам потребуется что-то сделать вручную (например, " "вычистить или переустановить пакет). Если вы выберете игнорирование ошибки, " "то процесс обновления будет продолжен." debian/po/zh_CN.po0000644000000000000000000001101412227577422011154 0ustar # Chinese translations for PACKAGE package # PACKAGE 软件包的简体中文翻译. # Copyright (C) 2011 THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # YunQiang Su , 2011. # msgid "" msgstr "" "Project-Id-Version: rt-extension-assettracker-debconf VERSION\n" "Report-Msgid-Bugs-To: rt-extension-assettracker@packages.debian.org\n" "POT-Creation-Date: 2012-10-17 18:51+0100\n" "PO-Revision-Date: 2011-07-05 20:35+0800\n" "Last-Translator: YunQiang Su \n" "Language-Team: Chinese (simplified) \n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bits\n" "Plural-Forms: nplurals=1; plural=0;\n" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:2001 msgid "allow" msgstr "允许" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:2001 msgid "prompt" msgstr "提示" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:2001 msgid "deny" msgstr "拒绝" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:2002 msgid "Permission to modify the Request Tracker database:" msgstr "允许修改请求跟踪数据库:" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:2002 msgid "" "Asset Tracker needs some modifications in the Request Tracker database to be " "functional. These modifications can be made automatically (choose \"allow\") " "or you may be prompted when they are needed (choose \"prompt\"). " "Alternatively, you can run the necessary commands manually (choose \"deny\")." msgstr "" "资产跟踪器工作需要在请求跟踪数据库中进行一些修改。这些修改可以自动进行(选" "择“允许”)或者在需要的时候提示您(选择“提示”)。或者手动运行需要的命令(选择“拒" "绝”)。" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:2002 msgid "Please check the README.Debian file for more details." msgstr "请查看 README.Debian 文件来获取更多细节。" #. Type: boolean #. Description #: ../rt4-extension-assettracker.templates:3001 msgid "Set up the Request Tracker database?" msgstr "设置请求跟踪数据库?" #. Type: boolean #. Description #: ../rt4-extension-assettracker.templates:3001 msgid "" "New tables must be created in the Request Tracker database for Asset Tracker " "to be functional." msgstr "要使资产跟踪器工作,必须在跟踪请求数据库中创建新表。" #. Type: boolean #. Description #: ../rt4-extension-assettracker.templates:4001 msgid "Upgrade the Request Tracker database?" msgstr "更新请求跟踪数据库?" #. Type: boolean #. Description #: ../rt4-extension-assettracker.templates:4001 msgid "" "The Request Tracker database schema and contents must be upgraded for this " "version of Asset Tracker." msgstr "请求跟踪数据库方案和内容必须要升级以配合此版本的资产跟踪器。" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:5001 msgid "abort" msgstr "退出" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:5001 msgid "retry" msgstr "重试" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:5001 msgid "ignore" msgstr "忽略" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:5002 msgid "Action after database modification error:" msgstr "数据库修改出错之后的动作:" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:5002 msgid "An error occurred while modifying the database:" msgstr "修改数据库时出错:" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:5002 msgid "" "The full output should be available in Request Tracker log, most probably " "syslog." msgstr "完整的输出可以在请求跟踪器日志中找到,最有可能的就是在 syslog 中。" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:5002 msgid "" "You can retry the modification, abort the installation or ignore the error. " "If you abort the installation, the operation will fail and you will need to " "manually intervene (for instance by purging and reinstalling). If you choose " "to ignore the error, the upgrade process will continue." msgstr "" "您可以重试此修改,退出安装或者忽略错误。如果退出安装,操作将会失败并且需要手" "动干预(例如通过清除或重新安装)。如果选择忽略错误,升级进程将会继续。" debian/po/templates.pot0000644000000000000000000000664412227577422012352 0ustar # 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: rt-extension-assettracker\n" "Report-Msgid-Bugs-To: rt-extension-assettracker@packages.debian.org\n" "POT-Creation-Date: 2012-10-17 18:51+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:2001 msgid "allow" msgstr "" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:2001 msgid "prompt" msgstr "" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:2001 msgid "deny" msgstr "" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:2002 msgid "Permission to modify the Request Tracker database:" msgstr "" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:2002 msgid "" "Asset Tracker needs some modifications in the Request Tracker database to be " "functional. These modifications can be made automatically (choose \"allow\") " "or you may be prompted when they are needed (choose \"prompt\"). " "Alternatively, you can run the necessary commands manually (choose \"deny\")." msgstr "" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:2002 msgid "Please check the README.Debian file for more details." msgstr "" #. Type: boolean #. Description #: ../rt4-extension-assettracker.templates:3001 msgid "Set up the Request Tracker database?" msgstr "" #. Type: boolean #. Description #: ../rt4-extension-assettracker.templates:3001 msgid "" "New tables must be created in the Request Tracker database for Asset Tracker " "to be functional." msgstr "" #. Type: boolean #. Description #: ../rt4-extension-assettracker.templates:4001 msgid "Upgrade the Request Tracker database?" msgstr "" #. Type: boolean #. Description #: ../rt4-extension-assettracker.templates:4001 msgid "" "The Request Tracker database schema and contents must be upgraded for this " "version of Asset Tracker." msgstr "" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:5001 msgid "abort" msgstr "" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:5001 msgid "retry" msgstr "" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:5001 msgid "ignore" msgstr "" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:5002 msgid "Action after database modification error:" msgstr "" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:5002 msgid "An error occurred while modifying the database:" msgstr "" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:5002 msgid "" "The full output should be available in Request Tracker log, most probably " "syslog." msgstr "" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:5002 msgid "" "You can retry the modification, abort the installation or ignore the error. " "If you abort the installation, the operation will fail and you will need to " "manually intervene (for instance by purging and reinstalling). If you choose " "to ignore the error, the upgrade process will continue." msgstr "" debian/po/it.po0000644000000000000000000001172312227577422010576 0ustar # Italian translation of rt-extension-assettracker debconf messages. # Copyright (C) 2012, rt-extension-assettracker package copyright holder # This file is distributed under the same license as the rt-extension-assettracker package. # Beatrice Torracca , 2012. msgid "" msgstr "" "Project-Id-Version: rt-extension-assettracker\n" "Report-Msgid-Bugs-To: rt-extension-assettracker@packages.debian.org\n" "POT-Creation-Date: 2012-10-17 18:51+0100\n" "PO-Revision-Date: 2012-05-04 08:10+0200\n" "Last-Translator: Beatrice Torracca \n" "Language-Team: Italian \n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Virtaal 0.7.1\n" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:2001 msgid "allow" msgstr "permetti" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:2001 msgid "prompt" msgstr "chiedi" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:2001 msgid "deny" msgstr "non permettere" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:2002 msgid "Permission to modify the Request Tracker database:" msgstr "Permesso di modificare il database di Request Tracker:" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:2002 msgid "" "Asset Tracker needs some modifications in the Request Tracker database to be " "functional. These modifications can be made automatically (choose \"allow\") " "or you may be prompted when they are needed (choose \"prompt\"). " "Alternatively, you can run the necessary commands manually (choose \"deny\")." msgstr "" "Asset Tracker richiede alcune modifiche nel database di Request Tracker per " "poter funzionare. Queste modifiche possono essere fatte automaticamente " "(scegliere \"permetti\") o può essere domandato cosa fare quando necessario " "(scegliere \"chiedi\"). In alternativa, si possono eseguire i comandi " "necessari a mano (scegliere \"non permettere\")." #. Type: select #. Description #: ../rt4-extension-assettracker.templates:2002 msgid "Please check the README.Debian file for more details." msgstr "Per ulteriori dettagli guardare il file README.Debian." #. Type: boolean #. Description #: ../rt4-extension-assettracker.templates:3001 msgid "Set up the Request Tracker database?" msgstr "Impostare il database di Request Tracker?" #. Type: boolean #. Description #: ../rt4-extension-assettracker.templates:3001 msgid "" "New tables must be created in the Request Tracker database for Asset Tracker " "to be functional." msgstr "" "Affinché Asset Tracker possa funzionare devono essere create nuove tabelle " "nel database di Request Tracker." #. Type: boolean #. Description #: ../rt4-extension-assettracker.templates:4001 msgid "Upgrade the Request Tracker database?" msgstr "Aggiornare il database di Request Tracker?" #. Type: boolean #. Description #: ../rt4-extension-assettracker.templates:4001 msgid "" "The Request Tracker database schema and contents must be upgraded for this " "version of Asset Tracker." msgstr "" "Per questa versione di Asset Tracker, lo schema e i contenuti del database " "di Request Tracker devono essere aggiornati." #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:5001 msgid "abort" msgstr "annulla" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:5001 msgid "retry" msgstr "riprova" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:5001 msgid "ignore" msgstr "ignora" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:5002 msgid "Action after database modification error:" msgstr "Azione dopo un errore di modifica del database:" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:5002 msgid "An error occurred while modifying the database:" msgstr "Si è verificato un errore durante la modifica del database:" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:5002 msgid "" "The full output should be available in Request Tracker log, most probably " "syslog." msgstr "" "L'output completo dovrebbe essere disponibile nel registro di Request " "Tracker, molto probabilmente in syslog." #. Type: select #. Description #: ../rt4-extension-assettracker.templates:5002 msgid "" "You can retry the modification, abort the installation or ignore the error. " "If you abort the installation, the operation will fail and you will need to " "manually intervene (for instance by purging and reinstalling). If you choose " "to ignore the error, the upgrade process will continue." msgstr "" "Si può riprovare a fare la modifica, annullare l'installazione o ignorare " "l'errore. Se si annulla l'installazione, l'operazione fallisce e sarà " "necessario intervenire manualmente (ad esempio, eliminando il pacchetto e " "reinstallando). Se si sceglie di ignorare l'errore, il processo di " "aggiornamento continua." debian/po/sv.po0000644000000000000000000001136712227577422010616 0ustar # Translation of rt-extension-assettracker debconf template to Swedish # Copyright (C) 2011 Martin Bagge # This file is distributed under the same license as the rt-extension-assettracker package. # # Martin Bagge , 2011 msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: rt-extension-assettracker@packages.debian.org\n" "POT-Creation-Date: 2012-10-17 18:51+0100\n" "PO-Revision-Date: 2011-06-28 21:52+0100\n" "Last-Translator: Martin Bagge / brother \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-Poedit-Language: Swedish\n" "X-Poedit-Country: Sweden\n" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:2001 msgid "allow" msgstr "tillåt" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:2001 msgid "prompt" msgstr "fråga" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:2001 msgid "deny" msgstr "neka" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:2002 msgid "Permission to modify the Request Tracker database:" msgstr "Tillåtelse att redigera Request Trackers databas:" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:2002 msgid "" "Asset Tracker needs some modifications in the Request Tracker database to be " "functional. These modifications can be made automatically (choose \"allow\") " "or you may be prompted when they are needed (choose \"prompt\"). " "Alternatively, you can run the necessary commands manually (choose \"deny\")." msgstr "" "För Asset Tracker behövs ändringar i Request Trackers databas. Dessa " "ändringar kan göras automatiskt (välj \"tillåt\") eller så kan du få frågor " "när de behövs (välj \"fråga\"). Alternativt kan du köra dessa kommandon " "manuellt (välj \"neka\")." #. Type: select #. Description #: ../rt4-extension-assettracker.templates:2002 msgid "Please check the README.Debian file for more details." msgstr "Läs README.Debian för ytterligare information." #. Type: boolean #. Description #: ../rt4-extension-assettracker.templates:3001 msgid "Set up the Request Tracker database?" msgstr "Ska Request Trackers databas installeras?" #. Type: boolean #. Description #: ../rt4-extension-assettracker.templates:3001 msgid "" "New tables must be created in the Request Tracker database for Asset Tracker " "to be functional." msgstr "" "Nya tabeller måste skapas i Request Trackers databas för Asset Tracker ska " "fungera." #. Type: boolean #. Description #: ../rt4-extension-assettracker.templates:4001 msgid "Upgrade the Request Tracker database?" msgstr "Ska Request Trackers databas uppgraderas?" #. Type: boolean #. Description #: ../rt4-extension-assettracker.templates:4001 msgid "" "The Request Tracker database schema and contents must be upgraded for this " "version of Asset Tracker." msgstr "" "Request Trackers databasschema och innehåll måste uppgraderas för den här " "versionen av Asset Tracker." #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:5001 msgid "abort" msgstr "avbryt" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:5001 msgid "retry" msgstr "försök igen" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:5001 msgid "ignore" msgstr "ignorera" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:5002 msgid "Action after database modification error:" msgstr "Åtgärd efter fel vid databasmodifieringen:" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:5002 msgid "An error occurred while modifying the database:" msgstr "Ett fel uppstod när databasen skulle modifieras:" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:5002 msgid "" "The full output should be available in Request Tracker log, most probably " "syslog." msgstr "" "Komplett utskrift ska finnas i Request Tracker-loggen, troligtvis i syslog." #. Type: select #. Description #: ../rt4-extension-assettracker.templates:5002 msgid "" "You can retry the modification, abort the installation or ignore the error. " "If you abort the installation, the operation will fail and you will need to " "manually intervene (for instance by purging and reinstalling). If you choose " "to ignore the error, the upgrade process will continue." msgstr "" "Du kan försöka genomföra ändringarna igen, avbryta installationen eller " "bortse från felet. Om du avbryter installationen kommer åtgärden att " "misslyckas och du måste slutföra processen manuellt (exempelvis genom att " "avinstallera eller installera om). Väljer du att ignorera felet kommer " "uppgraderingsprocessen att fortsätta." debian/po/de.po0000644000000000000000000001166712227577422010561 0ustar # Translation of rt-extension-assettracker debconf templates to German # Copyright (C) Helge Kreutzmann , 2011. # This file is distributed under the same license as the rt-extension-assettracker package. # msgid "" msgstr "" "Project-Id-Version: rt-extension-assettracker 2.0.0~b2-2\n" "Report-Msgid-Bugs-To: rt-extension-assettracker@packages.debian.org\n" "POT-Creation-Date: 2012-10-17 18:51+0100\n" "PO-Revision-Date: 2011-07-10 12:12+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: select #. Choices #: ../rt4-extension-assettracker.templates:2001 msgid "allow" msgstr "erlauben" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:2001 msgid "prompt" msgstr "nachfragen" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:2001 msgid "deny" msgstr "verbieten" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:2002 msgid "Permission to modify the Request Tracker database:" msgstr "Erlaubnis, die Datenbank von Request Tracker zu verändern:" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:2002 msgid "" "Asset Tracker needs some modifications in the Request Tracker database to be " "functional. These modifications can be made automatically (choose \"allow\") " "or you may be prompted when they are needed (choose \"prompt\"). " "Alternatively, you can run the necessary commands manually (choose \"deny\")." msgstr "" "Asset Tracker muss einige Änderungen an der Datenbank von Request Tracker " "vornehmen, um zu funktionieren. Diese Änderungen können automatisch " "vorgenommen werden (wählen Sie »erlauben«) oder Sie können gefragt werden, " "wenn sie notwendig sind (wählen Sie »nachfragen«). Alternativ können Sie die " "notwendigen Befehle manuell ausführen (wählen Sie »verbieten«)." #. Type: select #. Description #: ../rt4-extension-assettracker.templates:2002 msgid "Please check the README.Debian file for more details." msgstr "Bitte lesen Sie die Datei README.Debian für weitere Details." #. Type: boolean #. Description #: ../rt4-extension-assettracker.templates:3001 msgid "Set up the Request Tracker database?" msgstr "Die Request-Tracker-Datenbank einrichten?" #. Type: boolean #. Description #: ../rt4-extension-assettracker.templates:3001 msgid "" "New tables must be created in the Request Tracker database for Asset Tracker " "to be functional." msgstr "" "In der Request-Tracker-Datenbank müssen neue Tabellen erstellt werden, damit " "Asset Tracker funktioniert." #. Type: boolean #. Description #: ../rt4-extension-assettracker.templates:4001 msgid "Upgrade the Request Tracker database?" msgstr "Upgrade der Request-Tracker-Datenbank durchführen?" #. Type: boolean #. Description #: ../rt4-extension-assettracker.templates:4001 msgid "" "The Request Tracker database schema and contents must be upgraded for this " "version of Asset Tracker." msgstr "" "Es muss ein Upgrade der Request-Tracker-Datenbankschemata für diese Version " "von Asset Tracker durchgeführt werden." #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:5001 msgid "abort" msgstr "abbrechen" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:5001 msgid "retry" msgstr "erneut versuchen" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:5001 msgid "ignore" msgstr "ignorieren" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:5002 msgid "Action after database modification error:" msgstr "Aktion, die nach einem Fehler beim Ändern der Datenbank erfolgen soll:" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:5002 msgid "An error occurred while modifying the database:" msgstr "Beim Ändern der Datenbank erfolgte ein Fehler:" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:5002 msgid "" "The full output should be available in Request Tracker log, most probably " "syslog." msgstr "" "Die komplette Ausgabe sollte im Protokoll von Request Tracker verfügbar " "sein, wahrscheinlich im Syslog." #. Type: select #. Description #: ../rt4-extension-assettracker.templates:5002 msgid "" "You can retry the modification, abort the installation or ignore the error. " "If you abort the installation, the operation will fail and you will need to " "manually intervene (for instance by purging and reinstalling). If you choose " "to ignore the error, the upgrade process will continue." msgstr "" "Sie können die Änderung erneut versuchen, die Installation abbrechen oder " "den Fehler ignorieren. Falls Sie die Installation abbrechen, wird die " "Ausführung fehlschlagen und Sie müssen manuell eingreifen (beispielsweise " "durch vollständiges Löschen und erneute Installation). Falls Sie den Fehler " "ignorieren, wird der Upgrade-Prozess fortfahren." debian/po/fr.po0000644000000000000000000001210712227577422010566 0ustar # Translation of rt-extension-assettracker debconf templates to French # Copyright (C) 2011 Debian French l10n team # This file is distributed under the same license as the rt-extension-assettracker package. # Julien Patriarca , 2011. # msgid "" msgstr "" "Project-Id-Version: rt-extension-assettracker 2.0.0~b2\n" "Report-Msgid-Bugs-To: rt-extension-assettracker@packages.debian.org\n" "POT-Creation-Date: 2012-10-17 18:51+0100\n" "PO-Revision-Date: 2011-06-27 14:23+0100\n" "Last-Translator: Julien Patriarca \n" "Language-Team: FRENCH \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:2001 msgid "allow" msgstr "autoriser" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:2001 msgid "prompt" msgstr "demander" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:2001 msgid "deny" msgstr "rejeter" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:2002 msgid "Permission to modify the Request Tracker database:" msgstr "Autorisation de modifier la base de données de Request Tracker :" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:2002 msgid "" "Asset Tracker needs some modifications in the Request Tracker database to be " "functional. These modifications can be made automatically (choose \"allow\") " "or you may be prompted when they are needed (choose \"prompt\"). " "Alternatively, you can run the necessary commands manually (choose \"deny\")." msgstr "" "Asset Tracker nécessite quelques modifications dans la base de données de " "Request Tracker pour fonctionner. Ces modifications peuvent être faites " "automatiquement (choisir « autoriser »), ou des questions peuvent vous être " "posées si besoin (choisir « demander »). L'autre possibilité est de lancer " "les commandes vous-même (choisir « rejeter »)." #. Type: select #. Description #: ../rt4-extension-assettracker.templates:2002 msgid "Please check the README.Debian file for more details." msgstr "Veuillez consulter le fichier README.Debian pour plus d'informations." #. Type: boolean #. Description #: ../rt4-extension-assettracker.templates:3001 msgid "Set up the Request Tracker database?" msgstr "Faut-il configurer la base de données de Request Tracker ?" #. Type: boolean #. Description #: ../rt4-extension-assettracker.templates:3001 msgid "" "New tables must be created in the Request Tracker database for Asset Tracker " "to be functional." msgstr "" "De nouvelles tables doivent être créées dans la base de données de Request " "Tracker pour qu'Asset Tracker puisse fonctionner." #. Type: boolean #. Description #: ../rt4-extension-assettracker.templates:4001 msgid "Upgrade the Request Tracker database?" msgstr "Faut-il mettre à jour la base de données de Request Tracker ?" #. Type: boolean #. Description #: ../rt4-extension-assettracker.templates:4001 msgid "" "The Request Tracker database schema and contents must be upgraded for this " "version of Asset Tracker." msgstr "" "Le schéma de la base de données de Request Tracker et son contenu doivent " "être mis à jour pour cette version d'Asset Tracker. " #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:5001 msgid "abort" msgstr "abandonner" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:5001 msgid "retry" msgstr "réessayer" #. Type: select #. Choices #: ../rt4-extension-assettracker.templates:5001 msgid "ignore" msgstr "ignorer" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:5002 msgid "Action after database modification error:" msgstr "" "Action à effectuer en cas d'erreur pendant la modification de la base :" #. Type: select #. Description #: ../rt4-extension-assettracker.templates:5002 msgid "An error occurred while modifying the database:" msgstr "" "Une erreur s'est produite durant la modification de la base de données." #. Type: select #. Description #: ../rt4-extension-assettracker.templates:5002 msgid "" "The full output should be available in Request Tracker log, most probably " "syslog." msgstr "" "La sortie complète devrait être disponible dans les fichiers de " "journalisation de Request Tracker, probablement dans syslog." #. Type: select #. Description #: ../rt4-extension-assettracker.templates:5002 msgid "" "You can retry the modification, abort the installation or ignore the error. " "If you abort the installation, the operation will fail and you will need to " "manually intervene (for instance by purging and reinstalling). If you choose " "to ignore the error, the upgrade process will continue." msgstr "" "Vous pouvez tenter la modification à nouveau, l'abandonner ou ignorer " "l'erreur. Si vous abandonnez l'installation, l'opération échouera et vous " "devrez intervenir manuellement (par exemple en purgeant et en réinstallant). " "Si vous choisissez d'ignorer l'erreur, le processus de mise à jour " "continuera." debian/rt4-extension-assettracker.config0000644000000000000000000000102212227577422015576 0ustar #!/bin/sh set -e . /usr/share/debconf/confmodule db_version 2.0 if [ "$1" = "configure" ] || [ "$1" = "reconfigure" ] then CONFFILE=/etc/rt4-extension-assettracker/debian.conf if [ -r $CONFFILE ] then MODIFY_DATABASE=unknown . $CONFFILE if [ "$MODIFY_DATABASE" != "unknown" ] then db_set rt4-extension-assettracker/modify-database-permission "$MODIFY_DATABASE" fi fi db_input high rt4-extension-assettracker/modify-database-permission || true fi db_go debian/compat0000644000000000000000000000000212227577422010376 0ustar 7 debian/control0000644000000000000000000000162712227577422010611 0ustar Source: rt-extension-assettracker Section: perl Priority: optional Maintainer: Debian Request Tracker Group Uploaders: Bradley Bell , Dominic Hargreaves Build-Depends: debhelper (>= 7.0.50~) Standards-Version: 3.9.3 Homepage: https://github.com/chakatodd/rt-extension-assettracker Vcs-Git: git://anonscm.debian.org/pkg-request-tracker/rt-extension-assettracker.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-request-tracker/rt-extension-assettracker.git Package: rt4-extension-assettracker Architecture: all Depends: ${shlibs:Depends}, ${misc:Depends}, request-tracker4, libset-scalar-perl, libxml-parser-perl, libxml-simple-perl, ucf Description: asset tracking extension for Request Tracker Asset Tracker is an extension for Request Tracker. It adds the ability to track assets in the same way one tracks tickets. debian/rt4-extension-assettracker.postrm0000644000000000000000000000056512227577422015670 0ustar #!/bin/sh set -e #DEBHELPER# case "$1" in purge) rm -f /etc/rt4-extension-assettracker/debian.conf if which ucf >/dev/null 2>&1 then ucf --purge /etc/rt4-extension-assettracker/debian.conf fi if which ucfr >/dev/null 2>&1 then ucfr --purge rt4-extension-assettracker /etc/rt4-extension-assettracker/debian.conf fi ;; esac debian/rules0000755000000000000000000000301212227577422010254 0ustar #!/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 RT_VERSIONS=4 RTHOME=/usr/share/request-tracker4 PREFIX=$(RTHOME)/plugins/RTx-AssetTracker %: dh $@ override_dh_auto_configure: PREFIX=$(PREFIX) dh_auto_configure override_dh_install: dh_install for ver in $(RT_VERSIONS); do \ tmp=$(CURDIR)/debian/rt$$ver-extension-assettracker ; \ prefix=usr/share/request-tracker$$ver/plugins/RTx-AssetTracker ; \ mv $$tmp/$$prefix/etc/AssetTracker/* $$tmp/$$prefix/etc ; \ rmdir $$tmp/$$prefix/etc/AssetTracker ; \ rm -rf $$tmp/usr/share/perl5 ; \ rm -rf $$tmp/usr/share/man ; \ rm -rf $$tmp/$$prefix/lib/t ; \ rm -f $$tmp/$$prefix/sbin/at_factory.in ; \ rm -f $$tmp/$$prefix/sbin/at-setup-database.in ; \ rm -f $$tmp/$$prefix/sbin/extract_pod_tests ; \ done override_dh_fixperms: dh_fixperms for ver in $(RT_VERSIONS); do \ tmp=$(CURDIR)/debian/rt$$ver-extension-assettracker ; \ prefix=usr/share/request-tracker$$ver/plugins/RTx-AssetTracker ; \ chmod 755 $$tmp/$$prefix/sbin/* ; \ find $$tmp/$$prefix/lib $$tmp/$$prefix/html $$tmp/$$prefix/etc \ -type f -perm -5 -print0 | xargs -0r chmod a-X ; \ done override_dh_auto_test: debian/source/0000755000000000000000000000000012227600777010500 5ustar debian/source/format0000644000000000000000000000001412227577422011706 0ustar 3.0 (quilt) debian/conf/0000755000000000000000000000000012227577422010125 5ustar debian/conf/AT_SiteConfig.pm0000644000000000000000000000140112227577422013075 0ustar # Any configuration directives you include here will override # AT's default configuration file, AT_Config.pm # # To include a directive here, just copy the equivalent statement # from AT_Config.pm and change the value. We've included a single # sample value below. # # This file is actually a perl module, so you can include valid # perl code, as well. # # The converse is also true, if this file isn't valid perl, you're # going to run into trouble. To check your SiteConfig file, use # this comamnd: # # perl -c /path/to/your/etc/AT_SiteConfig.pm # # You must restart your webserver after making changes to this file. # If you don't want to use IPs, or would rather use CFs for IPs # then set this to zero to disable IP features in AT #Set ($EnableIP, 0); 1; debian/rt4-extension-assettracker.templates0000644000000000000000000000367112227577422016343 0ustar # 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: rt4-extension-assettracker/modify-database-permission Type: select __Choices: allow, prompt, deny Default: allow _Description: Permission to modify the Request Tracker database: Asset Tracker needs some modifications in the Request Tracker database to be functional. These modifications can be made automatically (choose "allow") or you may be prompted when they are needed (choose "prompt"). Alternatively, you can run the necessary commands manually (choose "deny"). . Please check the README.Debian file for more details. Template: rt4-extension-assettracker/setup-database-prompt Type: boolean Default: true _Description: Set up the Request Tracker database? New tables must be created in the Request Tracker database for Asset Tracker to be functional. Template: rt4-extension-assettracker/upgrade-database-prompt Type: boolean Default: true _Description: Upgrade the Request Tracker database? The Request Tracker database schema and contents must be upgraded for this version of Asset Tracker. Template: rt4-extension-assettracker/modify-database-error Type: select __Choices: abort, retry, ignore Default: abort #flag:translate!:3 _Description: Action after database modification error: An error occurred while modifying the database: . ${error} . The full output should be available in Request Tracker log, most probably syslog. . You can retry the modification, abort the installation or ignore the error. If you abort the installation, the operation will fail and you will need to manually intervene (for instance by purging and reinstalling). If you choose to ignore the error, the upgrade process will continue. debian/rt4-extension-assettracker.postinst0000644000000000000000000001137712227577422016232 0ustar #!/bin/sh set -e atdir=/usr/share/request-tracker4/plugins/RTx-AssetTracker etcdir=$atdir/etc upgrade_database () { echo "upgrading the RT database for Asset Tracker" 1>&2 for dir in $etcdir/upgrade/* do for action in schema acl do run_setup_database $action $dir done done echo "Database upgrade done, see the RT (sys)log for details" 1>&2 } setup_database () { echo "setting up the RT database for Asset Tracker" 1>&2 for action in schema acl insert do run_setup_database $action $etcdir done echo "Database setup done, see the RT (sys)log for details" 1>&2 } run_setup_database () { action=$1 datadir=$2 command="$atdir/sbin/rt-setup-database-debian -v 4 -- --action $action --datadir $datadir" if [ "$action" = "insert" ] then export PERLLIB=$atdir/lib command="$command --datafile $etcdir/initialdata" fi # cosmetics for the output base=$(basename $datadir) if [ "$base" = "etc" ] then base="Asset Tracker" fi echo -n "updating database $action for $base..." 1>&2 run_command "$command" } run_command () { command="$1" local exitcode set +e output=$($command 2>&1 >/dev/null) exitcode=$? set -e if [ $exitcode != 0 ] #|| [ -n "$output" ] then echo "command failed with code $exitcode" 1>&2 db_capb escape error=$(debconf-escape -e << EOF database modification command "$command" exited with code $exitcode Error messages follow: $output EOF ) db_subst rt4-extension-assettracker/modify-database-error error "$error" db_fset rt4-extension-assettracker/modify-database-error seen false db_input critical rt4-extension-assettracker/modify-database-error || true db_go || true db_get rt4-extension-assettracker/modify-database-error ERROR_CHOICE="$RET" if [ "$ERROR_CHOICE" = "abort" ] then echo "postinst script aborted" 1>&2 exit 1 fi if [ "$ERROR_CHOICE" = "retry" ] then echo "postinst script: retry to set up the database $action" 1>&2 run_command $@ fi else echo "OK" 1>&2 fi } test_database () { local testresult testresult=0 permission="$1" $atdir/sbin/test-database -v 4 2>/dev/null 1>&2 || testresult=$? set -e if [ "$permission" = "prompt" ] && \ ( [ $testresult = 1 ] || [ $testresult = 2 ] ) then case $testresult in 1) db_fset rt4-extension-assettracker/setup-database-prompt seen false db_input high rt4-extension-assettracker/setup-database-prompt || true db_go db_get rt4-extension-assettracker/setup-database-prompt break ;; 2) db_fset rt4-extension-assettracker/upgrade-database-prompt seen false db_input high rt4-extension-assettracker/upgrade-database-prompt || true db_go db_get rt4-extension-assettracker/upgrade-database-prompt break ;; esac if [ "$RET" = "false" ] then echo "database modification denied by the administrator" 1>&2 return 0 fi fi if [ $testresult = 255 ] then echo "Database state check failed, skipping modifications. Check your RT_SiteConfig.pm." 1>&2 fi return $testresult } . /usr/share/debconf/confmodule db_version 2.0 case "$1" in configure|reconfigure) db_get rt4-extension-assettracker/modify-database-permission CONFFILE=/etc/rt4-extension-assettracker/debian.conf MODIFY_DATABASE="unknown" if [ -r $CONFFILE ] then . $CONFFILE fi if [ "$RET" != "$MODIFY_DATABASE" ] then # rewrite the configuration file tmpfile=$(mktemp -t rt4-extension-assettracker.XXXXXXXX) || exit 1 chmod 644 $tmpfile cat >$tmpfile << EOF # automatically modify the database when needed? # valid options are "allow", "deny" and "prompt" MODIFY_DATABASE="${RET}" EOF ucf --debconf-ok $tmpfile $CONFFILE rm $tmpfile fi if [ "$RET" != "deny" ] then retcode=0 test_database $RET || retcode=$? case $retcode in 1) setup_database ;; 2) upgrade_database ;; esac fi db_stop # add the configuration file into the ucf registry if which ucfr >/dev/null 2>&1 then ucfr rt4-extension-assettracker $CONFFILE fi break ;; esac #DEBHELPER# debian/watch0000644000000000000000000000021312227577422010225 0ustar version=3 opts=uversionmangle=s/((b|rc)\d)$/~$1/ https://github.com/AssetTracker/rt-extension-assettracker/tags .*/archive/v?(\d.*).tar.gz debian/scripts/0000755000000000000000000000000012227577422010667 5ustar debian/scripts/rt-setup-database-debian0000644000000000000000000000445312227577422015365 0ustar #!/usr/bin/perl -w use strict; # this is a wrapper around rt-setup-database to # get it to run as the regular RT user (from RT_SiteConfig.pm) # without exposing the password on the command line # we feed the password into the rt-setup-database stdin # when it looks like it's asking for it # everything rt-setup-database says is tee'd to the RT logger # so that the administrator can find the real output in the # syslog when this is run from the Asset Tracker maintainer # scripts use Getopt::Std; use IPC::Open3; use IO::Select; use Symbol; use POSIX ":sys_wait_h"; my %opts; getopts('v:', \%opts) or usage(); sub usage { print STDERR <] EOF exit 1; } my $rt_version = "4"; if (exists $opts{v}) { if ($opts{v} =~ /^(3\.[468]|4)$/) { $rt_version = $1; } else { usage(); } } unshift @INC, "/usr/local/share/request-tracker${rt_version}/lib"; unshift @INC, "/usr/share/request-tracker${rt_version}/lib"; require RT; RT::LoadConfig(); RT::InitLogging(); my $t; $t = $RT::DatabaseUser; $t = $RT::DatabasePassword; $t = $RT::Logger; my ($child_out, $child_in, $child_err) = ("","",gensym); my @cmd = ( "/usr/sbin/rt-setup-database-${rt_version}", "--dba", $RT::DatabaseUser, "-p", @ARGV, ); my $cmd = join(" ", @cmd); $RT::Logger->notice("running $cmd\n"); my $pid = open3($child_in, $child_out, $child_err, @cmd); my $s = IO::Select->new; $s->add($child_out); $s->add($child_err); my $password_sent=0; while ($s->handles and my @ready = $s->can_read(10)) { for my $fh (@ready) { my $ret = sysread($fh, my $buf, 1024); if (not defined $ret) { die("sysread failed: $!"); } if ($ret == 0) { $s->remove($fh); next; } print STDERR $buf if $fh eq $child_err; $RT::Logger->notice("rt-setup-database-${rt_version}: $buf") if $fh eq $child_err or $password_sent; if ($fh == $child_out) { if ($buf =~ /Password:/ && !$password_sent++) { print $child_in $RT::DatabasePassword ."\n" } } } } my $i = 0; do { if (waitpid($pid, WNOHANG) > 0) { my $ret = $?; exit $ret >> 8; } sleep 1; } while ($i++ < 5); debian/scripts/test-database0000644000000000000000000000324012227577422013332 0ustar #!/usr/bin/perl -w use strict; # for testing # use Smart::Comments; # test if the database has the AssetTracker schema modifications # exit codes: # 0: OK for AssetTracker 2.0 # 1: missing # 2: needs upgrade from 1.2 # this script intentionally doesn't use any modules from AssetTracker # itself, just in case we want to use it in the preconfiguration # phase some day use Getopt::Std; my %opts; getopts('v:', \%opts) or usage(); sub usage { print STDERR <new($RT::SystemUser); $type->Table('AT_Types'); my ($status, $msg) = $type->Load(0); ## type/status: $status ## type/msg: $msg if ($status != 0) { print "strange database state: type 0 loaded succesfully?\n"; exit 42; } if ($msg =~ /execute query/i) { print "AssetTracker schema missing\n"; exit 1; } my $scrip = RT::Record->new($RT::SystemUser); $scrip->Table('AT_Scrips'); ($status, $msg) = $scrip->Load(0); ## scrip/status: $status ## scrip/msg: $msg if ($msg =~ /execute query/i) { print "AssetTracker schema needs an upgrade for 2.0\n"; exit 2; } if ($status || ($msg =~ /find row/i)) { print "AssetTracker schema ok\n"; exit 0; } print "unknown database state\n"; exit 3; debian/changelog0000644000000000000000000000526212227633523011052 0ustar rt-extension-assettracker (3.0.0-1) unstable; urgency=low * Move to AT 3.0 series (Closes: #722619) * Include sample AT_SiteConfig.pm * Delete patches merged upstream * Use Kai's DESTDIR patch * Minor pending upstream patches * Now managing patches with gbp-pq * Added backports necessary to work on wheezy's RT -- Bradley Bell Wed, 16 Oct 2013 18:03:15 -0700 rt-extension-assettracker (2.0.0~b2-6) unstable; urgency=low * Fix syntax error when trying to add links -- Bradley Bell Mon, 29 Oct 2012 17:14:10 -0700 rt-extension-assettracker (2.0.0~b2-5) unstable; urgency=low [ Dominic Hargreaves ] * Add Japanese Debconf translation (Closes: #690787) [ Bradley Bell ] * Use l_unsafe to render html correctly with latest RT (Closes: #691101) * Purge gracefully without conffiles or dependencies (Closes: 688938) * Add plugin enabling instructions to README.Debian (Closes: 691103) * Miscellaneous bugfixes from upstream repository -- Bradley Bell Mon, 29 Oct 2012 15:59:48 -0700 rt-extension-assettracker (2.0.0~b2-4) unstable; urgency=low * Add Italian Debconf translation (Closes: #673836) -- Dominic Hargreaves Sun, 03 Jun 2012 17:59:27 +0100 rt-extension-assettracker (2.0.0~b2-3) unstable; urgency=low * Add debian/watch * Remove RT 3.8 support as request-tracker3.8 is being removed from Debian (see #668461) * Update Standards-Version (no changes) -- Dominic Hargreaves Sat, 14 Apr 2012 11:16:20 +0100 rt-extension-assettracker (2.0.0~b2-2) unstable; urgency=low [ Christian Perrier ] * Debconf templates and debian/control reviewed by the debian-l10n- english team as part of the Smith review project. Closes: #631253 * [Debconf translation updates] * Danish (Joe Hansen). Closes: #631704 * Russian (Yuri Kozlov). Closes: #631965 * Swedish (Martin Bagge / brother). Closes: #631973 * Spanish; (Francisco Javier Cuadrado). Closes: #632647 * Simplified Chinese (YunQiang Su). Closes: #631681 * French (Julien Patriarca). Closes: #632717 * Dutch; (Jeroen Schot). Closes: #633098 * Czech (Michal Simunek). Closes: #633104 * German (Helge Kreutzmann). Closes: #633440 * Portuguese (Rui Branco). Closes: #633444 [ Dominic Hargreaves ] * Add myself to Uploaders * Update Vcs-* URLs to use anonscm.debian.org [ Bradley Bell ] * Add support for RT 4, provide second binary package. Closes: #647125 -- Bradley Bell Fri, 04 Nov 2011 18:56:45 -0700 rt-extension-assettracker (2.0.0~b2-1) unstable; urgency=low * Initial release (Closes: #623610) -- Bradley Bell Thu, 21 Apr 2011 13:15:16 -0700 debian/rt4-extension-assettracker.dirs0000644000000000000000000000003712227577422015277 0ustar etc/rt4-extension-assettracker debian/rt4-extension-assettracker.install0000644000000000000000000000030312227577422016000 0ustar debian/lintian/rt4-extension-assettracker usr/share/lintian/overrides debian/scripts/* usr/share/request-tracker4/plugins/RTx-AssetTracker/sbin debian/conf/AT_SiteConfig.pm etc/request-tracker4/ debian/copyright0000644000000000000000000000331312227577422011133 0ustar This work was packaged for Debian by: Bradley Bell on Thu, 14 Apr 2011 20:01:51 -0700 It was downloaded from: Upstream Author: Todd Chapman Copyright: Copyright (c) 2005-2011 Todd Chapman Copyright (c) 1996-2010 Best Practical Solutions, LLC License: This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. On Debian GNU/Linux systems, the complete text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-2' The file 'inc/Module/Install.pm' is Copyright 2008 - 2009 Adam Kennedy. Although the file does not contain license information, it is assumed that it is licensed under the same terms as the CPAN Module-Install distribution, packaged for Debian in the libmodule-install-perl package. The license of this distribution is: This program 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'. The parts of the Debian packaging by Niko Tyni, particularly debian/scripts/rt-setup-database-debian debian/scripts/test-database are Copyright © 2007-2008 Niko Tyni and licensed under the same terms as the software itself. debian/clean0000644000000000000000000000003512227577422010203 0ustar lib/RTx/AssetTracker/Test.pm debian/rt4-extension-assettracker.docs0000644000000000000000000000000712227577422015263 0ustar README