--- myodbc-5.1.10.orig/odbc.ini +++ myodbc-5.1.10/odbc.ini @@ -0,0 +1,45 @@ +; +; odbc.ini configuration for MyODBC and MyODBC 3.51 Drivers +; + +[ODBC Data Sources] + +myodbc = MySQL ODBC 2.50 Driver DSN +myodbc3 = MySQL ODBC 3.51 Driver DSN + + +[myodbc] +Driver = MySQL +Description = MySQL ODBC 2.50 Driver DSN +Server = localhost +Port = +User = root +Password = +Database = test +Option = 3 +Socket = + + +[myodbc3] +Driver = MySQL3 +Description = MySQL ODBC 3.51 Driver DSN +Server = localhost +Port = +User = root +Password = +Database = test +Option = 3 +Socket = + + +[Default] +Driver = MySQL +Description = MySQL ODBC 3.51 Driver DSN +Server = localhost +Port = +User = root +Password = +Database = test +Option = 3 +Socket = + --- myodbc-5.1.10.orig/dltest/dltest.c +++ myodbc-5.1.10/dltest/dltest.c @@ -22,6 +22,7 @@ #include #include +#include #ifdef WIN32 #include @@ -84,7 +85,7 @@ if ( argc < 2 ) { - printf( szSyntax ); + printf( "%s", szSyntax ); exit( 1 ); } --- myodbc-5.1.10.orig/debian/templates +++ myodbc-5.1.10/debian/templates @@ -0,0 +1,10 @@ +Template: libmyodbc/addtoodbc +Type: boolean +Default: false +_Description: Do you want MyODBC to be registered as an ODBC driver? + You appear to have an ODBC manager (unixodbc or iODBC) installed on your + system. + . + If you wish, MyODBC will be automatically added as an ODBC driver now and + will be automatically deleted from the list when you remove the libmyodbc + package, using the /usr/bin/odbcinst utility from unixodbc. --- myodbc-5.1.10.orig/debian/control +++ myodbc-5.1.10/debian/control @@ -0,0 +1,22 @@ +Source: myodbc +Section: libs +Priority: optional +Maintainer: Steve Langasek +Standards-Version: 3.9.2 +Build-Depends: debhelper (>= 8.9.4), libmysqlclient-dev (>= 5.5.17), zlib1g-dev (>= 1:1.1.3), unixodbc-dev (>= 2.2.11), libltdl3-dev, autotools-dev, dh-autoreconf +Homepage: http://dev.mysql.com/downloads/connector/odbc/ +Vcs-Bzr: nosmart+http://bzr.debian.org/bzr/users/vorlon/myodbc/trunk/ +Vcs-Browser: http://anonscm.debian.org/loggerhead/users/vorlon/myodbc/trunk/ + +Package: libmyodbc +Section: libs +Architecture: any +Multi-Arch: same +Depends: ${shlibs:Depends}, ${misc:Depends} +Recommends: libodbc1 | libiodbc2 +Breaks: unixodbc (<< 2.2.14p2-3), odbcinst1debian2 (<< 2.2.14p2-3), libiodbc2 (<< 3.52.7-3~) +Description: the MySQL ODBC driver + This package allows you to connect to MySQL database servers using + ODBC, the Open Database Connectivity abstraction layer which is + understood by a variety of database tools that cannot talk to MySQL + databases directly. --- myodbc-5.1.10.orig/debian/odbcinst.ini +++ myodbc-5.1.10/debian/odbcinst.ini @@ -0,0 +1,6 @@ +[MySQL] +Description = MySQL driver +Driver = libmyodbc.so +Setup = libodbcmyS.so +CPTimeout = +CPReuse = --- myodbc-5.1.10.orig/debian/README.Debian +++ myodbc-5.1.10/debian/README.Debian @@ -0,0 +1,8 @@ +MyODBC for Debian +---------------------- + +I decided to build no -dev package since it was already so small and +due to the strange version numbering system I expect the headers +not to stay compatible for another release. + + -- Christian Hammers , Sun, 17 Oct 1999 13:26:59 +0200 --- myodbc-5.1.10.orig/debian/config +++ myodbc-5.1.10/debian/config @@ -0,0 +1,19 @@ +#!/bin/sh + +set -e + +action=$1 +version=$2 + +# Source debconf library. +. /usr/share/debconf/confmodule +db_version 2.0 + +if [ -e /usr/bin/odbcinst ] +then + db_title "ODBC Setup" + + db_input medium libmyodbc/addtoodbc || true + db_go +fi +exit 0 --- myodbc-5.1.10.orig/debian/copyright +++ myodbc-5.1.10/debian/copyright @@ -0,0 +1,25 @@ +This package was debianized by Christian Hammers on +Sun, 3 Oct 1999 11:46:10 +0200. + +It was downloaded from http://dev.mysql.com/downloads/connector/odbc/3.51.html + +Upstream Authors: Michael 'Monty' Widenius, TCX Datakonsult AB + +Copyright (C) 1997-2007 MySQL AB and others + +This program is free software; you can redistribute it and/or modify +it under the terms of version 2 of the GNU General Public License as +published by the Free Software Foundation. + +This program 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 St, Fifth Floor, Boston, MA 02110-1301 USA. + +On Debian GNU/Linux systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL-2'. + --- myodbc-5.1.10.orig/debian/clean +++ myodbc-5.1.10/debian/clean @@ -0,0 +1,2 @@ +config.sub +config.guess --- myodbc-5.1.10.orig/debian/rules +++ myodbc-5.1.10/debian/rules @@ -0,0 +1,27 @@ +#!/usr/bin/make -f + +upstream_version := $(shell dpkg-parsechangelog | sed -n -e'/^Version: / { s/Version: //; s/-[^-]\+$$//; p }') +base_version = $(shell echo $(upstream_version) | sed -e's/r[0-9]\+$$//') + +DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH) + +%: + dh $@ --with autoreconf + +override_dh_auto_configure: + ln -sf /usr/share/misc/config.sub . + ln -sf /usr/share/misc/config.guess . + dh_auto_configure -- --with-unixODBC=/usr \ + --disable-gui --disable-test + +# Do nothing; the test suite requires a sql server, so we can't run it +# as part of the build. +override_dh_auto_test: + +# we should never need to run this for our plugin package; running it creates +# a spurious shlibs file that shouldn't be there. +override_dh_makeshlibs: + +override_dh_auto_install: + dh_auto_install -- libdir=/usr/lib/$(DEB_HOST_MULTIARCH)/odbc DESTDIR=$(CURDIR)/debian/tmp + mv $(CURDIR)/debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/odbc/libmyodbc5-$(base_version).so $(CURDIR)/debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/odbc/libmyodbc.so --- myodbc-5.1.10.orig/debian/prerm +++ myodbc-5.1.10/debian/prerm @@ -0,0 +1,14 @@ +#!/bin/sh + +set -e + +# Source debconf library. +. /usr/share/debconf/confmodule +db_version 2.0 + +db_get libmyodbc/addtoodbc || true +if [ "$RET" = "true" ]; then + odbcinst -u -d -n MySQL +fi + +#DEBHELPER# --- myodbc-5.1.10.orig/debian/postinst +++ myodbc-5.1.10/debian/postinst @@ -0,0 +1,17 @@ +#!/bin/sh + +set -e + +# Source debconf library. +. /usr/share/debconf/confmodule + +db_version 2.0 + +# Always add in the postinst, always delete in the prerm -- this way, +# we'll always have a good reference count in odbcinst.ini. +db_get libmyodbc/addtoodbc || true +if [ "$RET" = "true" ]; then + odbcinst -i -d -f /usr/share/libmyodbc/odbcinst.ini 1>&2 +fi + +#DEBHELPER# --- myodbc-5.1.10.orig/debian/compat +++ myodbc-5.1.10/debian/compat @@ -0,0 +1 @@ +9 --- myodbc-5.1.10.orig/debian/libmyodbc.examples +++ myodbc-5.1.10/debian/libmyodbc.examples @@ -0,0 +1 @@ +odbc.ini --- myodbc-5.1.10.orig/debian/watch +++ myodbc-5.1.10/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://mysql.osuosl.org/Downloads/MyODBC3/mysql-connector-odbc-([0-9r.]+)\.tar\.gz --- myodbc-5.1.10.orig/debian/README.Maintainer +++ myodbc-5.1.10/debian/README.Maintainer @@ -0,0 +1,7 @@ +autoconf: + To get autoconf know that it should use v2.50 I had to rename configure.in + to configure.ac. +Versioning: + The shared lib is called libmyodbc2.20.30.so instead of libmyodbc.so.x.y.z + so a dynamic linked program would not know that libmyodbc2.20.32.so would + be acceptable, too. I complained the author! --- myodbc-5.1.10.orig/debian/changelog +++ myodbc-5.1.10/debian/changelog @@ -0,0 +1,395 @@ +myodbc (5.1.10-3) unstable; urgency=low + + * Version the breaks: on libiodbc2 now that a fixed version is available + in unstable. + + -- Steve Langasek Sun, 26 May 2013 17:23:39 -0700 + +myodbc (5.1.10-2) unstable; urgency=low + + * Upload to unstable for mysql-5.5 transition. Closes: #673264. + + -- Steve Langasek Fri, 18 May 2012 00:04:26 +0000 + +myodbc (5.1.10-1) experimental; urgency=low + + * New upstream release. + * Build-depend on dh-autoreconf, since the new upstream release doesn't + ship a configure script... + * Build-depend on libmysqlclient-dev (>= 5.5.17) for experimental + * Disable building the tests altogether, since upstream apparently hasn't + bothered making the test suite work with the new upstream release of + mysql despite having released a new upstream version of myodbc. + + -- Steve Langasek Tue, 28 Feb 2012 00:36:29 +0000 + +myodbc (5.1.6-3) unstable; urgency=low + + * debian/compat: bump to 9, to turn on hardening with dpkg-buildflags. + * installer/myodbc3i.c, dltest/dltest.c: fix lack of format string when + calling fprintf(), so we can build this cleanly with + -Werror=format-security. Closes: #646352. + * Use debian/clean instead of overriding dh_auto_clean + + -- Steve Langasek Mon, 24 Oct 2011 00:30:57 +0000 + +myodbc (5.1.6-2) unstable; urgency=low + + * Install to /usr/lib/$(DEB_HOST_MULTIARCH)/odbc, use a relative path in + odbcinst.ini, and mark the package Multi-Arch: same. + * Bump standards-version to 3.9.2, no changes required + * Set Vcs-{Bzr,Browser} fields. + * Add Danish debconf translation, thanks to Joe Dalton + . Closes: #633379. + + -- Steve Langasek Sun, 21 Aug 2011 07:19:56 +0000 + +myodbc (5.1.6-1) unstable; urgency=low + + * New upstream release. + * Drop use of deprecated SQL types, fixing build failure with unixODBC + 2.2.14. Closes: #577370. + * Drop obsolete configure options. + * Fix up the source path name in debian/rules, tracking upstream changes + * Point debian/control at the current homepage + * Fix miscellaneous upstream type mismatches + * Update debian/copyright to reflect that the work is now GPLv2-only, + not GPLv2+ + * Bump standards version to 3.8.4, no changes required + + -- Steve Langasek Tue, 01 Jun 2010 02:14:11 -0700 + +myodbc (3.51.27r695-1) unstable; urgency=low + + * New upstream release + - Drop use of wrong, non-standard 'gptr' type. + * Fix dependence on 'bool' type, correcting build failure with + libmysqlclient16. Closes: #542845. + * Add a Homepage: field, since the mysql website makes it impossible to + use a watch file directly. + * Update to Standards-Version 3.8.3 (no changes required). + * Build-depend on libmysqlclient-dev instead of libmysqlclient15-dev. + * Convert debian/rules to dh 7, bump debian/compat to 7, and build-depend + on debhelper (>= 7.0.50) for override rules support. + * Build-depend on autotools-dev to always have a current config.sub. + Closes: #542073. + + -- Steve Langasek Sat, 22 Aug 2009 16:33:38 -0700 + +myodbc (3.51.19r646-1) unstable; urgency=low + + * New upstream release + - fix build failure with current libmysqlclient. Closes: #521185. + * Fix lintian warnings about ignoring errors in postinst, config scripts. + + -- Steve Langasek Sun, 10 May 2009 03:07:47 -0700 + +myodbc (3.51.15r409-4) unstable; urgency=low + + * Remove a stray change to odbc.ini that snuck into the preceding upload. + + -- Steve Langasek Sat, 21 Jun 2008 22:17:55 -0700 + +myodbc (3.51.15r409-3) unstable; urgency=low + + * Add Galician debconf translation, thanks to Jacobo Tarrio + . Closes: #482833. + * Allow changing the odbcinst registration option with dpkg-reconfigure, + partially addressing bug #250850. + * Move the odbcinst removal handling from the postrm to the prerm, required + for idempotency in light of the above. + * Updated debian/watch for compatibility with the latest upstream + tarball naming scheme. Closes: #450376. + * Update to Standards-Version 3.8.0 (no changes required). + * Drop obsolete conflicts/replaces on packages that haven't existed + since woody or earlier. + * Update the FSF mailing address in debian/copyright. + * Add a proper copyright notice to debian/copyright. + + -- Steve Langasek Sat, 21 Jun 2008 22:03:35 -0700 + +myodbc (3.51.15r409-2) unstable; urgency=low + + * Fix debian/rules to not ignore errors from make clean or make + distclean. + * Bump debhelper compat to version 5 + * Add German debconf translation, thanks to Matthias Julius + and Helge Kreutzmann . + Closes: #397639. + * Add Finnish debconf translation, thanks to Esko Arajärvi + . Closes: #447072. + * Add Dutch debconf translation, thanks to Bart Cornelis + . Closes: #414765. + * Add Portuguese debconf translation, thanks to Américo Monteiro + . Closes: #434285. + * Add Spanish debconf translation, thanks to Manuel Porras Peralta + . Closes: #410044. + * Add Brazilian Portuguese debconf translation, thanks to Felipe + Augusto van de Wiel . + + -- Steve Langasek Fri, 26 Oct 2007 20:59:50 -0700 + +myodbc (3.51.15r409-1) unstable; urgency=low + + * New upstream release + - compatibility with mysql 5.0 protocol. Closes: #381671. + * Make use of debconf in the postrm conditional, to allow for the + possibility that debconf has been removed before libmyodbc. + Closes: #416903. + + -- Steve Langasek Thu, 28 Jun 2007 11:51:10 -0700 + +myodbc (3.51.11-6) unstable; urgency=low + + * Add Swedish debconf translation, thanks to Daniel Nylander + (closes: #331559). + * Rebuild against libmysqlclient15-dev, as libmysqlclient12 no longer + exists. Closes: #353997. + * Also rebuild against unixodbc-dev (>= 2.2.11-13), to pull in a small + ABI change on 64-bit archs that's been backported from 2.2.12. This + also requires a patch to driver/prepare.c. + * No longer specify extra build flags to request a 64-bit-clean ABI; + the headers from the unixodbc-dev package have been fixed to always + declare this for us. + + -- Steve Langasek Thu, 25 May 2006 15:14:40 -0700 + +myodbc (3.51.11-5) unstable; urgency=low + + * Use ${misc:Depends} instead of hard-coding a dependency on debconf, + for compatibility with cdebconf. + + -- Steve Langasek Fri, 5 Aug 2005 04:39:19 -0700 + +myodbc (3.51.11-4) unstable; urgency=low + + * Doesn't build cleanly with REAL_64_BIT_MODE: fix some conflicting + types in MyODBC so that they're 64-bittable. + + -- Steve Langasek Tue, 28 Jun 2005 16:07:14 -0700 + +myodbc (3.51.11-3) unstable; urgency=low + + * Rebuild against unixodbc 2.2.11. + * Set BUILD_REAL_64_BIT_MODE define for the benefit of 64-bit archs, + which seems to have been missed previously. + + -- Steve Langasek Fri, 17 Jun 2005 05:54:13 -0700 + +myodbc (3.51.11-2) unstable; urgency=low + + * Add missing header includes to fix 64-bit issues; thanks to Dann + Frazier for the patch (closes: #314165). + * Add a direct Build-Dependency on libltdl3-dev since we're using + headers from it, rather than relying on unixodbc-dev to pull it in + for us. + * Disable the Qt-based GUI setup library, unless someone asks for it + (it wasn't being used anyway, since we're specifying the unixodbc + setup lib in odbcinst.ini). + + -- Steve Langasek Wed, 15 Jun 2005 03:00:04 -0700 + +myodbc (3.51.11-1) unstable; urgency=low + + * New upstream release + * Add debian/watch to keep more easily in sync with upstream + * Add Vietnamese debconf translation, thanks to Clytie Siddall + (closes: #312997). + + -- Steve Langasek Mon, 13 Jun 2005 20:04:16 -0700 + +myodbc (3.51.09-1) unstable; urgency=low + + * New upstream release + - includes compatibility with newer versions of MySQL servers + (closes: #274879). + * Build-Depend on libmysqclient12-dev instead of on + libmysqlclient10-dev, required by the new upstream version + (closes: #245231). + * Update debian/rules to honor DEB_BUILD_OPTIONS and turn on -g by + default, bringing us in line with Standards-Version 3.6.1. + * Add Japanese debconf translation, thanks to Hideki Yamane + (closes: #237175). + * Add Czech debconf translation, thanks to Miroslav Kure + (closes: #283221). + + -- Steve Langasek Wed, 9 Mar 2005 14:13:36 -0800 + +myodbc (3.51.06-1) unstable; urgency=low + + * New upstream release (closes: #149461). + * Add French debconf translations, thanks to Clément Stenac + (closes: #232839). + + -- Steve Langasek Sun, 15 Feb 2004 14:59:29 -0600 + +myodbc (2.50.39-6) unstable; urgency=low + + * Change to using po-debconf for debconf template translations. + * Provide a more verbose package description (closes: #209878). + * Remove build-depends on autotools. + * Fix --host and --build options passed to configure in ./debian/rules. + + -- Steve Langasek Sat, 7 Feb 2004 17:52:11 -0600 + +myodbc (2.50.39-5) unstable; urgency=low + + * Build-dep on autoconf and call 'autoconf' instead of 'autoconf2.50', + so that autobuilders know what to do with us again (closes: #162725) + + -- Steve Langasek Sun, 29 Sep 2002 00:39:27 -0500 + +myodbc (2.50.39-4) unstable; urgency=low + + * make sure our examples set a good example (closes: #162005) + + -- Steve Langasek Mon, 23 Sep 2002 21:42:58 -0500 + +myodbc (2.50.39-3) unstable; urgency=low + + * Merge in Russian debconf templates, thanks to Ilgiz Kalmetev + . (Closes: #137671) + + -- Steve Langasek Sun, 10 Mar 2002 12:53:20 -0600 + +myodbc (2.50.39-2) unstable; urgency=medium + + * db_stop was being called too early in the postrm script, and broke + things Badly. Move to the end of the script. (Closes: #136274). + + -- Steve Langasek Fri, 1 Mar 2002 14:42:41 -0600 + +myodbc (2.50.39-1) unstable; urgency=low + + * New upstream release + * Add a package relationship for unixodbc | libiodbc2. + + -- Steve Langasek Sun, 24 Feb 2002 23:01:06 -0600 + +myodbc (2.50.37-7) unstable; urgency=low + + * Admit that static linking was a bad idea. Switch back to using + dynamic linking, now that there's a separate odbcinst package. + Build-depend appropriately. + + -- Steve Langasek Mon, 14 Jan 2002 21:06:04 -0600 + +myodbc (2.50.37-6) unstable; urgency=low + + * Change package name: myodbc is a plugin, not a normal shared + library, and versioned package names are an inconvenience. + * Likewise, disable building of static libs, and remove header files + from the package, since nothing uses them. + * Move .so file to /usr/lib/odbc, and remove dh_makeshlibs reference. + * Fix aclocal.m4 to look for $ac_header instead of $ac_hdr, since + the name has changed w/ autoconf 2.5. Fixes build on arm, ia64, + hppa, and mips, at least. + * Remove --with-odbc-ini argument to configure, only needed when using + the internal ini-file handling. + * Oh, and while we're at it, add support to debian/rules for + cross-compiling packages. + + -- Steve Langasek Mon, 7 Jan 2002 19:18:32 -0600 + +myodbc2.50.37 (2.50.37-5) unstable; urgency=low + + * New maintainer + * Change package to build against unixodbc-dev instead of libiodbc2-dev, + fixes ABI problems on Alpha platform. + * Force static linking against libodbcinst, so that we avoid a + dependency on unixodbc. + * Add support for automatically registering as a driver on + installation if unixodbc is installed (closes: #107038) + * Disable DH_VERBOSE, because it's annoying to read. :) + + -- Steve Langasek Mon, 31 Dec 2001 12:23:00 -0600 + +myodbc2.50.37 (2.50.37-4) unstable; urgency=low + + * Added autoconf patches to let it build on ia64. + Hopefully closes #110074. Thanks to Jeff Lincquia for this. + + -- Christian Hammers Tue, 6 Nov 2001 23:51:00 +0100 + +myodbc2.50.37 (2.50.37-3) unstable; urgency=low + + * Approving NMU. + + -- Christian Hammers Tue, 7 Aug 2001 21:31:05 +0200 + +myodbc2.50.37 (2.50.37-2.1) unstable; urgency=low + + * NMU + * Run libtoolize/aclocal for new arch support. Closes: #107655 + + -- LaMont Jones Fri, 3 Aug 2001 22:19:56 -0600 + +myodbc2.50.37 (2.50.37-2) unstable; urgency=low + + * Recompiled in current unstable. Closes: #98190 + * Fixed configure directive. + + -- Christian Hammers Mon, 21 May 2001 10:09:53 +0200 + +myodbc2.50.37 (2.50.37-1) unstable; urgency=low + + * New upstream. Now fully supports transactions. + + -- Christian Hammers Sat, 28 Apr 2001 19:10:43 +0200 + +myodbc2.50.32 (2.50.32-5) unstable; urgency=low + + * Added Build-Depends for libiodbc2-dev. Closes: #81801 + * No code change. + + -- Christian Hammers Sun, 18 Feb 2001 05:21:49 +0100 + +myodbc2.50.32 (2.50.32-4) testing unstable; urgency=low + + * This one should be in woody and sid! + * Added build-depends for debhelper. + + -- Christian Hammers Fri, 29 Dec 2000 17:00:08 +0100 + +myodbc2.50.32 (2.50.32-3) unstable; urgency=low + + * Added build-depends for debhelper. + + -- Christian Hammers Fri, 29 Dec 2000 17:00:08 +0100 + +myodbc2.50.32 (2.50.32-2) unstable; urgency=low + + * Recompiled against libmysqlclient10. + + -- Christian Hammers Wed, 11 Oct 2000 23:08:25 +0200 + +myodbc2.50.32 (2.50.32-1) unstable; urgency=low + + * New upstream version. + * (As always, forgive the package versioning, it's forced due to upstream + versioning of the shared library) + + -- Christian Hammers Tue, 12 Sep 2000 06:57:40 +0200 + +myodbc2.50.28 (2.50.28-2) frozen unstable; urgency=low + + * Applied a small upstream bug fix. + + -- Christian Hammers Tue, 22 Feb 2000 17:29:45 +0100 + +myodbc2.50.28 (2.50.28-1) unstable; urgency=low + + * New upstream release. + * Now compilable without full mysql source. Closes: #51643 + + -- Christian Hammers Sat, 4 Dec 1999 20:06:34 +0100 + +myodbc2.50.26 (2.50.26-1) unstable; urgency=low + + * Initial Release. + + -- Christian Hammers Sun, 3 Oct 1999 11:46:10 +0200 + +Local variables: +mode: debian-changelog +End: --- myodbc-5.1.10.orig/debian/libmyodbc.install +++ myodbc-5.1.10/debian/libmyodbc.install @@ -0,0 +1,2 @@ +usr/lib/*/odbc/libmyodbc.so +debian/odbcinst.ini usr/share/libmyodbc --- myodbc-5.1.10.orig/debian/po/es.po +++ myodbc-5.1.10/debian/po/es.po @@ -0,0 +1,69 @@ +# myodbc translation to spanish +# Copyright (C) 2007 Free Software Foundation, Inc. +# This file is distributed under the same license as the package. +# +# Changes: +# - Initial translation +# Manuel Porras Peralta , 2007 +# +# +# Traductores, si no conoce 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 +# +# Si tiene dudas o consultas sobre esta traducción consulte con el último +# traductor (campo Last-Translator) y ponga en copia a la lista de +# traducción de Debian al español () +msgid "" +msgstr "" +"Project-Id-Version: myodbc\n" +"Report-Msgid-Bugs-To: vorlon@debian.org\n" +"POT-Creation-Date: 2007-07-02 23:08-0700\n" +"PO-Revision-Date: 2007-02-07 11:49+0100\n" +"Last-Translator: Manuel Porras Peralta «Venturi» \n" +"Language-Team: Debian Spanish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Do you want MyODBC to be registered as an ODBC driver?" +msgstr "¿Desea que MyODBC se registre como un controlador de ODBC?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"You appear to have an ODBC manager (unixodbc or iODBC) installed on your " +"system." +msgstr "" +"Parece que tiene instalado en su sistema un gestor de ODBC (unixodbc o " +"iODBC)." + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"If you wish, MyODBC will be automatically added as an ODBC driver now and " +"will be automatically deleted from the list when you remove the libmyodbc " +"package, using the /usr/bin/odbcinst utility from unixodbc." +msgstr "" +"Si lo desea, se usará la herramienta «/usr/bin/odbcinst» de unixodbc para " +"agregar automáticamente MyODBC a la lista de controladores ahora y borrarlo " +"automáticamente de la lista cuando elimine el paquete libmyodbc." --- myodbc-5.1.10.orig/debian/po/ru.po +++ myodbc-5.1.10/debian/po/ru.po @@ -0,0 +1,53 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: vorlon@debian.org\n" +"POT-Creation-Date: 2007-07-02 23:08-0700\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=KOI8-R\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Do you want MyODBC to be registered as an ODBC driver?" +msgstr " MyODBC ODBC?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"You appear to have an ODBC manager (unixodbc or iODBC) installed on your " +"system." +msgstr "" +" ODBC (unixodbc " +"iODBC)." + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"If you wish, MyODBC will be automatically added as an ODBC driver now and " +"will be automatically deleted from the list when you remove the libmyodbc " +"package, using the /usr/bin/odbcinst utility from unixodbc." +msgstr "" +" , MyODBC ODBC " +" libmyodbc, " +" /usr/bin/odbcinst." --- myodbc-5.1.10.orig/debian/po/nl.po +++ myodbc-5.1.10/debian/po/nl.po @@ -0,0 +1,45 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: myodbc\n" +"Report-Msgid-Bugs-To: vorlon@debian.org\n" +"POT-Creation-Date: 2007-07-02 23:08-0700\n" +"PO-Revision-Date: 2007-03-06 19:10+0100\n" +"Last-Translator: Bart Cornelis \n" +"Language-Team: debian-l10n-dutch \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Do you want MyODBC to be registered as an ODBC driver?" +msgstr "Wilt u dat MyODBC geregistreerd wordt als een ODBC-stuurprogramma?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"You appear to have an ODBC manager (unixodbc or iODBC) installed on your " +"system." +msgstr "" +"Het lijkt erop dat u een ODBC-manager (unixodbc of iODBC) geïnstalleerd " +"heeft op uw systeem." + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"If you wish, MyODBC will be automatically added as an ODBC driver now and " +"will be automatically deleted from the list when you remove the libmyodbc " +"package, using the /usr/bin/odbcinst utility from unixodbc." +msgstr "" +"Als u dit wenst wordt MyODBC automatisch toegevoegd aan de lijst van ODBC-" +"stuurprogramma's, en bij verwijdering van het 'libmyodbc'-pakket ook weer " +"uit de lijst verwijderd. Dit gebeurt m.b.v. het hulpprogramma /usr/bin/" +"odbcinst uit het pakket unixodbc." --- myodbc-5.1.10.orig/debian/po/POTFILES.in +++ myodbc-5.1.10/debian/po/POTFILES.in @@ -0,0 +1 @@ +[type: gettext/rfc822deb] templates --- myodbc-5.1.10.orig/debian/po/da.po +++ myodbc-5.1.10/debian/po/da.po @@ -0,0 +1,45 @@ +# Danish translation myodbc. +# Copyright (C) 2011 myodbc & nedenstående oversættere. +# This file is distributed under the same license as the myodbc package. +# Joe Hansen (joedalton2@yahoo.dk), 2011. +# +msgid "" +msgstr "" +"Project-Id-Version: myodbc\n" +"Report-Msgid-Bugs-To: vorlon@debian.org\n" +"POT-Creation-Date: 2007-07-02 23:08-0700\n" +"PO-Revision-Date: 2011-07-09 12:42+0000\n" +"Last-Translator: Joe Hansen \n" +"Language-Team: Danish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Do you want MyODBC to be registered as an ODBC driver?" +msgstr "Ønsker du at MyODBC registreres som en ODBC-driver?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"You appear to have an ODBC manager (unixodbc or iODBC) installed on your " +"system." +msgstr "" +"Du ser ud til at have en ODBC-håndtering (unixodbc eller iODBC) installeret " +"på dit system." + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"If you wish, MyODBC will be automatically added as an ODBC driver now and " +"will be automatically deleted from the list when you remove the libmyodbc " +"package, using the /usr/bin/odbcinst utility from unixodbc." +msgstr "" +"Hvis du ønsker det, vil MyODBC automatisk blive tilføjet som en ODBC-driver " +"nu og vil automatisk blive slettet fra listen, når du fjerner pakken " +"libmyodbc med brug af redskabet /usr/bin7odbcinst fra unixodbc." + --- myodbc-5.1.10.orig/debian/po/fr.po +++ myodbc-5.1.10/debian/po/fr.po @@ -0,0 +1,53 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: myodbc_2.50.39-6\n" +"Report-Msgid-Bugs-To: vorlon@debian.org\n" +"POT-Creation-Date: 2007-07-02 23:08-0700\n" +"PO-Revision-Date: 2004-02-10 10:55+0100\n" +"Last-Translator: Clment Stenac \n" +"Language-Team: French \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=iso-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Do you want MyODBC to be registered as an ODBC driver?" +msgstr "Souhaitez-vous que MyODBC soit enregistr en tant que pilote ODBC?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"You appear to have an ODBC manager (unixodbc or iODBC) installed on your " +"system." +msgstr "" +"Il semble qu'un gestionnaire ODBC (unixodbc ou iODBC) soit install sur " +"votre systme." + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"If you wish, MyODBC will be automatically added as an ODBC driver now and " +"will be automatically deleted from the list when you remove the libmyodbc " +"package, using the /usr/bin/odbcinst utility from unixodbc." +msgstr "" +"Si vous le souhaitez, MyODBC sera automatiquement ajout en tant que pilote " +"ODBC maintenant et sera automatiquement retir de la liste lorsque vous " +"supprimerez le paquet libmyodbc, grce l'utilitaire /usr/bin/odbcinst " +"d'unixodbc." --- myodbc-5.1.10.orig/debian/po/gl.po +++ myodbc-5.1.10/debian/po/gl.po @@ -0,0 +1,42 @@ +# Galician translation of myodbc's debconf templates +# This file is distributed under the same license as the myodbc package. +# Jacobo Tarrio , 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: myodbc\n" +"Report-Msgid-Bugs-To: vorlon@debian.org\n" +"POT-Creation-Date: 2007-07-02 23:08-0700\n" +"PO-Revision-Date: 2008-05-25 13:20+0100\n" +"Last-Translator: Jacobo Tarrio \n" +"Language-Team: Galician \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Do you want MyODBC to be registered as an ODBC driver?" +msgstr "¿Quere rexistrar MyODBC coma controlador ODBC?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"You appear to have an ODBC manager (unixodbc or iODBC) installed on your " +"system." +msgstr "" +"Semella que ten un xestor ODBC (unixodbc ou iODBC) instalado no sistema." + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"If you wish, MyODBC will be automatically added as an ODBC driver now and " +"will be automatically deleted from the list when you remove the libmyodbc " +"package, using the /usr/bin/odbcinst utility from unixodbc." +msgstr "" +"Se quere, hase engadir automaticamente MyODBC coma controlador ODBC, e hase " +"quitar automaticamente da lista cando elimine o paquete libmyodbc, " +"empregando a utilidade /usr/bin/odbcinst de unixodbc." --- myodbc-5.1.10.orig/debian/po/vi.po +++ myodbc-5.1.10/debian/po/vi.po @@ -0,0 +1,44 @@ +# Vietnamese Translation for myodbc. +# Copyright © 2005 Free Software Foundation, Inc. +# Clytie Siddall , 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: myodbc 3.51.09-1\n" +"Report-Msgid-Bugs-To: vorlon@debian.org\n" +"POT-Creation-Date: 2007-07-02 23:08-0700\n" +"PO-Revision-Date: 2005-06-11 16:44+0930\n" +"Last-Translator: Clytie Siddall \n" +"Language-Team: Vietnamese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Do you want MyODBC to be registered as an ODBC driver?" +msgstr "Bạn có muốn đăng ký MyODBC là một trình hỗ trợ thiết bị ODBC không?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"You appear to have an ODBC manager (unixodbc or iODBC) installed on your " +"system." +msgstr "" +"Hình như bạn đã cài đặt một trình quản lý ODBC (unixodbc hay iODBC) trong hệ " +"thống này rồi." + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"If you wish, MyODBC will be automatically added as an ODBC driver now and " +"will be automatically deleted from the list when you remove the libmyodbc " +"package, using the /usr/bin/odbcinst utility from unixodbc." +msgstr "" +"Nếu bạn muốn thì trình này sẻ tự động thêm MyODBC là một trình hỗ trợ thiết " +"bị ODBC ngay bây giờ, và sẽ tự động xóa bỏ nó ra danh sách khi bạn loại bỏ " +"gói tin «libmyodbc», dùng tiện ích «/usr/bin/odbcinst» từ «unixodbc»." --- myodbc-5.1.10.orig/debian/po/de.po +++ myodbc-5.1.10/debian/po/de.po @@ -0,0 +1,44 @@ +# Translation of myodbc debconf templates to German +# Copyright (C) Matthias Julius , 2006. +# Copyright (C) Helge Kreutzmann , 2007. +# This file is distributed under the same license as the myodbc package. +# +msgid "" +msgstr "" +"Project-Id-Version: myodbc 3.51.15r409-1\n" +"Report-Msgid-Bugs-To: vorlon@debian.org\n" +"POT-Creation-Date: 2007-07-02 23:08-0700\n" +"PO-Revision-Date: 2007-07-01 11:52+0200\n" +"Last-Translator: Helge Kreutzmann \n" +"Language-Team: German \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-15\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Do you want MyODBC to be registered as an ODBC driver?" +msgstr "Soll MyODBC als ODBC-Treiber registriert werden?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"You appear to have an ODBC manager (unixodbc or iODBC) installed on your " +"system." +msgstr "" +"Es scheint ein ODBC-Manager (Unixodbc oder iODBC) auf Ihrem System " +"installiert zu sein." + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"If you wish, MyODBC will be automatically added as an ODBC driver now and " +"will be automatically deleted from the list when you remove the libmyodbc " +"package, using the /usr/bin/odbcinst utility from unixodbc." +msgstr "" +"Falls Sie mchten, wird MyODBC jetzt automatisch als ODBC-Treiber " +"hinzugefgt und automatisch aus der Liste gelscht, wenn Sie das libmyodbc-" +"Paket entfernen. Hierzu wird /usr/bin/odbcinst aus Unixodbc verwendet." --- myodbc-5.1.10.orig/debian/po/pt_BR.po +++ myodbc-5.1.10/debian/po/pt_BR.po @@ -0,0 +1,45 @@ +# myodbc Brazilian Portuguese translation +# Copyright (C) 2007 THE myodbc'S COPYRIGHT HOLDER +# This file is distributed under the same license as the myodbc package. +# Felipe Augusto van de Wiel (faw) , 2007. +# +msgid "" +msgstr "" +"Project-Id-Version: (20071022)\n" +"Report-Msgid-Bugs-To: vorlon@debian.org\n" +"POT-Creation-Date: 2007-07-02 23:08-0700\n" +"PO-Revision-Date: 2007-10-22 02:42-0200\n" +"Last-Translator: Felipe Augusto van de Wiel (faw) \n" +"Language-Team: l10n portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"pt_BR utf-8\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Do you want MyODBC to be registered as an ODBC driver?" +msgstr "Você gostaria de registrar o MyODBC como um driver ODBC?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"You appear to have an ODBC manager (unixodbc or iODBC) installed on your " +"system." +msgstr "" +"Você parece ter um gerenciador ODBC (unixodbc ou iODBC) instalado em seu " +"sistema." + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"If you wish, MyODBC will be automatically added as an ODBC driver now and " +"will be automatically deleted from the list when you remove the libmyodbc " +"package, using the /usr/bin/odbcinst utility from unixodbc." +msgstr "" +"Se você desejar, o MyODBC será automaticamente adicionado como um driver " +"ODBC agora e será automaticamente removido da lista quando você remover o " +"pacote libmyodbc, usando o utilitário /usr/bin/odbcinst do unixodbc." --- myodbc-5.1.10.orig/debian/po/cs.po +++ myodbc-5.1.10/debian/po/cs.po @@ -0,0 +1,52 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: myodbc\n" +"Report-Msgid-Bugs-To: vorlon@debian.org\n" +"POT-Creation-Date: 2007-07-02 23:08-0700\n" +"PO-Revision-Date: 2004-11-27 10:45+0100\n" +"Last-Translator: Miroslav Kure \n" +"Language-Team: Czech \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-2\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Do you want MyODBC to be registered as an ODBC driver?" +msgstr "Chcete MyODBC zaregistrovat jako ODBC ovlada?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"You appear to have an ODBC manager (unixodbc or iODBC) installed on your " +"system." +msgstr "" +"Zd se, e mte na svm systmu nainstalovanho sprvce ODBC (unixodbc nebo " +"iODBC)." + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"If you wish, MyODBC will be automatically added as an ODBC driver now and " +"will be automatically deleted from the list when you remove the libmyodbc " +"package, using the /usr/bin/odbcinst utility from unixodbc." +msgstr "" +"Pokud chcete, me se nyn MyODBC automaticky pidat jako ODBC ovlada a " +"pozdji, a odstrante libmyodbc, zase automaticky ze seznamu odstranit. " +"(Pro tyto akce se pouije nstroj /usr/bin/odbcinst z balku unixodbc.)" --- myodbc-5.1.10.orig/debian/po/pt.po +++ myodbc-5.1.10/debian/po/pt.po @@ -0,0 +1,45 @@ +# translation of myodbc debconf to Portuguese +# Copyright (C) 2007 Américo Monteiro +# This file is distributed under the same license as the myodbc package. +# +# Américo Monteiro , 2007. +msgid "" +msgstr "" +"Project-Id-Version: myodbc 3.51.15r409-1\n" +"Report-Msgid-Bugs-To: vorlon@debian.org\n" +"POT-Creation-Date: 2007-07-02 23:08-0700\n" +"PO-Revision-Date: 2007-07-22 17:01+0100\n" +"Last-Translator: Américo Monteiro \n" +"Language-Team: Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Do you want MyODBC to be registered as an ODBC driver?" +msgstr "Deseja que o MyODBC seja registrado como um controlador ODBC?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"You appear to have an ODBC manager (unixodbc or iODBC) installed on your " +"system." +msgstr "" +"Parece que você tem um gestor ODBC (unixodbc ou iODBC) instalado no seu " +"sistema." + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"If you wish, MyODBC will be automatically added as an ODBC driver now and " +"will be automatically deleted from the list when you remove the libmyodbc " +"package, using the /usr/bin/odbcinst utility from unixodbc." +msgstr "" +"Se desejar, MyODBC pode ser automaticamente adicionado agora como um " +"controlador ODBC e será automaticamente apagado da lista quando você remover " +"o pacote libmyodbc, usando o utilitário /usr/bin/odbcinst do unixodbc." --- myodbc-5.1.10.orig/debian/po/ja.po +++ myodbc-5.1.10/debian/po/ja.po @@ -0,0 +1,53 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +# +msgid "" +msgstr "" +"Project-Id-Version: myodbc 3.51.06\n" +"Report-Msgid-Bugs-To: vorlon@debian.org\n" +"POT-Creation-Date: 2007-07-02 23:08-0700\n" +"PO-Revision-Date: 2004-03-02 02:00+0900\n" +"Last-Translator: Hideki Yamane \n" +"Language-Team: Japanese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=EUC-JP\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Do you want MyODBC to be registered as an ODBC driver?" +msgstr "ODBC ɥ饤ФȤ MyODBC Ͽޤ?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"You appear to have an ODBC manager (unixodbc or iODBC) installed on your " +"system." +msgstr "" +"ODBC ޥ͡ (unixodbc ޤ iODBC) ƥ˥󥹥ȡ뤵Ƥ" +"Ǥ" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"If you wish, MyODBC will be automatically added as an ODBC driver now and " +"will be automatically deleted from the list when you remove the libmyodbc " +"package, using the /usr/bin/odbcinst utility from unixodbc." +msgstr "" +"⤷˾ʤ顢MyODBC Ϥ ODBC ɥ饤ФȤƼưŪϿ졢libmyodbc " +"ѥå줿ݤ onixodbc /usr/bin/odbcinst 桼ƥƥ" +"ƥɥ饤ХꥹȤ鼫ưŪ˺ޤ" --- myodbc-5.1.10.orig/debian/po/sv.po +++ myodbc-5.1.10/debian/po/sv.po @@ -0,0 +1,51 @@ +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# Developers do not need to manually edit POT or PO files. +# , fuzzy +# +# +msgid "" +msgstr "" +"Project-Id-Version: myodbc 3.51.11-5\n" +"Report-Msgid-Bugs-To: vorlon@debian.org\n" +"POT-Creation-Date: 2007-07-02 23:08-0700\n" +"PO-Revision-Date: 2005-10-05 02:11+0200\n" +"Last-Translator: Daniel Nylander \n" +"Language-Team: Swedish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=iso-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Do you want MyODBC to be registered as an ODBC driver?" +msgstr "Vill du att MyODBC ska registreras som en ODBC-drivare?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"You appear to have an ODBC manager (unixodbc or iODBC) installed on your " +"system." +msgstr "" +"Du verkar ha en ODBC-hanterare (unixodbc eller iODBC) installerat p ditt " +"system." + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"If you wish, MyODBC will be automatically added as an ODBC driver now and " +"will be automatically deleted from the list when you remove the libmyodbc " +"package, using the /usr/bin/odbcinst utility from unixodbc." +msgstr "" +"Om du nskar kan MyODBC automatiskt lggas till som en ODBC-drivare nu och " +"kommer att automatiskt tas bort frn listan nr du tar bort myodbc-paketet " +"med verktyget /usr/bin/odbcinst frn paketet unixodbc." --- myodbc-5.1.10.orig/debian/po/templates.pot +++ myodbc-5.1.10/debian/po/templates.pot @@ -0,0 +1,40 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: vorlon@debian.org\n" +"POT-Creation-Date: 2007-07-02 23:08-0700\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Do you want MyODBC to be registered as an ODBC driver?" +msgstr "" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"You appear to have an ODBC manager (unixodbc or iODBC) installed on your " +"system." +msgstr "" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"If you wish, MyODBC will be automatically added as an ODBC driver now and " +"will be automatically deleted from the list when you remove the libmyodbc " +"package, using the /usr/bin/odbcinst utility from unixodbc." +msgstr "" --- myodbc-5.1.10.orig/debian/po/fi.po +++ myodbc-5.1.10/debian/po/fi.po @@ -0,0 +1,41 @@ +msgid "" +msgstr "" +"Project-Id-Version: myodbc\n" +"Report-Msgid-Bugs-To: vorlon@debian.org\n" +"POT-Creation-Date: 2007-07-02 23:08-0700\n" +"PO-Revision-Date: 2007-10-17 23:31+0200\n" +"Last-Translator: Esko Arajärvi \n" +"Language-Team: Finnish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: Finnish\n" +"X-Poedit-Country: FINLAND\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Do you want MyODBC to be registered as an ODBC driver?" +msgstr "Rekisteröidäänkö MyODBC ODBC-ajurina?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"You appear to have an ODBC manager (unixodbc or iODBC) installed on your " +"system." +msgstr "" +"Järjestelmässä näyttää olevan ODBC-hallintaohjelma (unixodbc tai iODBC) " +"asennettuna." + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"If you wish, MyODBC will be automatically added as an ODBC driver now and " +"will be automatically deleted from the list when you remove the libmyodbc " +"package, using the /usr/bin/odbcinst utility from unixodbc." +msgstr "" +"Jos haluat, MyODBC lisätään automaattisesti ODBC-ajuriksi käyttäen työkalua /" +"usr/bin/odbcinst ohjelmasta unixodbc, ja poistetaan automaattisesti " +"listalta, kun paketti libmyodbc poistetaan." --- myodbc-5.1.10.orig/installer/myodbc3i.c +++ myodbc-5.1.10/installer/myodbc3i.c @@ -146,7 +146,7 @@ void main_usage() { - fprintf(stderr, usage); + fprintf(stderr, "%s", usage); } --- myodbc-5.1.10.orig/test/my_cursor.c +++ myodbc-5.1.10/test/my_cursor.c @@ -711,7 +711,7 @@ rc = SQLRowCount(hstmt1,&row_count); mystmt(hstmt1,rc); - fprintf(stdout, "rows affected: %d\n", row_count); + fprintf(stdout, "rows affected: %ld\n", row_count); myassert(row_count == 1); rc = SQLExtendedFetch(hstmt,SQL_FETCH_NEXT,1,NULL,&rgfRowStatus); @@ -732,7 +732,7 @@ rc = SQLRowCount(hstmt1,&row_count); mystmt(hstmt1,rc); - fprintf(stdout, "rows affected: %d\n", row_count); + fprintf(stdout, "rows affected: %ld\n", row_count); myassert(row_count == 1); SQLFreeStmt(hstmt,SQL_UNBIND); --- myodbc-5.1.10.orig/test/my_types.c +++ myodbc-5.1.10/test/my_types.c @@ -220,7 +220,7 @@ mycon(hdbc,rc); rc = SQLSpecialColumns(hstmt,SQL_ROWVER,NULL,SQL_NTS,NULL,SQL_NTS, - "t_bigint",SQL_NTS,SQL_SCOPE_TRANSACTION,SQL_NULLABLE); + (SQLCHAR *)"t_bigint",SQL_NTS,SQL_SCOPE_TRANSACTION,SQL_NULLABLE); mycon(hdbc,rc); @@ -229,7 +229,7 @@ rc = SQLFreeStmt(hstmt,SQL_CLOSE); mystmt(hstmt,rc); - rc = SQLColumns(hstmt,NULL,SQL_NTS,NULL,SQL_NTS,"t_bigint",SQL_NTS,NULL,SQL_NTS); + rc = SQLColumns(hstmt,NULL,SQL_NTS,NULL,SQL_NTS,(SQLCHAR *)"t_bigint",SQL_NTS,NULL,SQL_NTS); mycon(hdbc,rc); @@ -238,7 +238,7 @@ rc = SQLFreeStmt(hstmt,SQL_CLOSE); mystmt(hstmt,rc); - rc = SQLStatistics(hstmt,NULL,SQL_NTS,NULL,SQL_NTS,"t_bigint",SQL_NTS,SQL_INDEX_ALL,SQL_QUICK); + rc = SQLStatistics(hstmt,NULL,SQL_NTS,NULL,SQL_NTS,(SQLCHAR *)"t_bigint",SQL_NTS,SQL_INDEX_ALL,SQL_QUICK); mycon(hdbc,rc);