debian/0000755000000000000000000000000012066723322007171 5ustar debian/README.Debian0000644000000000000000000000213411647374357011250 0ustar libphone-utils is used to get a national number from an international number. It is needed for incoming calls, which give you the international number of the caller. You probably used national numbers in your phonebook, so without proper configuration you will not be able to get names instead of numbers. This configuration can be done directly in /etc/phone-utils.conf or via dpkg-reconfig by running: "dpkg-reconfigure libphone-util0". You can check the values for your country on [1] and [2] if you don't know them yourself. I don't know of any list providing information about national call prefixes, but you will probably know it yourself. It is the prefix you need to call any number in your own land. Area code is normally only needed with a landline telephone. Since version 0.1+git20091220-2 there is also a phoneprefix file in the docs directory, which is part of the upstream libphone-utils package. [1] http://en.wikipedia.org/wiki/List_of_country_calling_codes [2] http://en.wikipedia.org/wiki/List_of_international_call_prefixes -- Sebastian Reichel Wed, 23 Sep 2009 05:27:00 debian/libphone-utils0.install0000644000000000000000000000002111647374357013606 0ustar usr/lib/*/*.so.* debian/libphone-utils0.templates0000644000000000000000000000221711647374357014147 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: libphone-utils/international_prefix Type: string Default: 00 _Description: International phone prefix: Please enter the prefix to dial for international calls. This prefix is "00" in most countries. Template: libphone-utils/national_prefix Type: string Default: 0 _Description: National phone prefix: Please enter the prefix to dial for national calls. This prefix is "0" in most countries. Template: libphone-utils/country_code Type: string _Default: 49 _Description: Telephone country code: Please enter the international telephone code for the local country (for instance, "49" for Germany). Template: libphone-utils/area_code Type: string Default: 0 _Description: Area code: Please enter the telephone code for the local area (for instance, "30" for Berlin in Germany). . This is normally only needed with landline phones. debian/source/0000755000000000000000000000000011647374357010507 5ustar debian/source/lintian-overrides0000644000000000000000000000030011647374357014061 0ustar libphone-utils source: translated-default-field libphone-utils0.templates: 26 # we use experimental multi-arch support libphone-utils source: package-needs-versioned-debhelper-build-depends 9 debian/source/format0000644000000000000000000000001411647374357011715 0ustar 3.0 (quilt) debian/watch0000644000000000000000000000006411647374357010240 0ustar # upstream uses git, there are no released tarballs debian/libphone-utils0.postrm0000644000000000000000000000026311647374357013474 0ustar #!/bin/sh # postrm script for libphone-utils set -e if [ "$1" = "purge" ] ; then if [ -f /etc/phone-utils.conf ] ; then rm /etc/phone-utils.conf fi fi #DEBHELPER# exit 0; debian/libphone-utils-dev.postinst0000644000000000000000000000040512031050006014467 0ustar #!/bin/sh set -e # Replace documentation directory with symlink docdir="/usr/share/doc/libphone-utils-dev" if [ -d $docdir ] && [ ! -L $docdir ]; then if rmdir $docdir 2>/dev/null; then ln -sf libphone-utils0 $docdir fi fi #DEBHELPER# exit 0 debian/rules0000755000000000000000000000030611647374357010266 0ustar #!/usr/bin/make -f %: dh $@ --with autoreconf override_dh_strip: dh_strip -plibphone-utils0 --dbg-package=libphone-utils0-dbg override_dh_installdocs: dh_installdocs --link-doc=libphone-utils0 debian/libphone-utils0-dbg.preinst0000644000000000000000000000035712022404242014341 0ustar #!/bin/sh set -e DOCDIR=/usr/share/doc/libphone-utils0-dbg case "$1" in upgrade) if dpkg --compare-versions "$2" lt "0.1+git20110523-1"; then if [ ! -L $DOCDIR ]; then rm -rf $DOCDIR fi fi ;; *) ;; esac #DEBHELPER# debian/libphone-utils0.docs0000644000000000000000000000002111647374357013070 0ustar data/phoneprefix debian/compat0000644000000000000000000000000211647374357010405 0ustar 9 debian/libphone-utils0.config0000644000000000000000000000206411647374357013416 0ustar #!/bin/sh -e # config script for libphone-utils . /usr/share/debconf/confmodule if [ -s /etc/phone-utils.conf ] ; then INTERNATIONAL=$(cat /etc/phone-utils.conf | grep -E "^international_prefix" | head -n 1 | cut -d "=" -f 2) NATIONAL=$(cat /etc/phone-utils.conf | grep -E "^national_prefix" | head -n 1 | cut -d "=" -f 2) COUNTRY=$(cat /etc/phone-utils.conf | grep country_code | head -n 1 | cut -d "=" -f 2) AREA=$(cat /etc/phone-utils.conf | grep area_code | head -n 1 | cut -d "=" -f 2) if [ -n "$INTERNATIONAL" ] ; then db_set libphone-utils/international_prefix "$INTERNATIONAL" fi if [ -n "$NATIONAL" ] ; then db_set libphone-utils/national_prefix "$NATIONAL" fi if [ -n "$COUNTRY" ] ; then db_set libphone-utils/country_code "$COUNTRY" fi if [ -n "$AREA" ] ; then db_set libphone-utils/area_code "$AREA" fi fi db_input high libphone-utils/international_prefix || true db_go db_input high libphone-utils/national_prefix || true db_go db_input high libphone-utils/country_code || true db_go db_input high libphone-utils/area_code || true db_go debian/libphone-utils0.postinst0000644000000000000000000000154711647374357014041 0ustar #!/bin/sh # postinst script for libphone-utils set -e . /usr/share/debconf/confmodule cfgpath=/etc/phone-utils.conf cfg_prep() { [ -f "$cfgpath" ] || touch "$cfgpath" grep -q '^\[local\]' "$cfgpath" || echo '[local]' >> "$cfgpath" } cfg_set() { var="$1" val="$2" perl -i -ple ' s/^($ENV{var})[ \t]*=.*/$1 = $ENV{val}/ and $seen++; print STDERR "WARNING: option \"$ENV{var}\" set multiple times!\n" if ( $seen > 1 ); s/$/\n$ENV{var} = $ENV{val}/ if (eof and ! $seen); ' "$cfgpath" } if [ "$1" = "configure" ] ; then cfg_prep db_get libphone-utils/international_prefix cfg_set international_prefix $RET db_get libphone-utils/national_prefix cfg_set national_prefix $RET db_get libphone-utils/country_code cfg_set country_code $RET db_get libphone-utils/area_code cfg_set area_code $RET fi # tell debconf we are done db_stop; #DEBHELPER# exit 0; debian/changelog0000644000000000000000000001077512066723177011065 0ustar libphone-utils (0.1+git20110523-2.1) unstable; urgency=low * Non-maintainer upload. * Ignore maintainer change from 0.1+git20110523-2 that introduce many changes not in line with the current freeze policy, and lose the fix from 0.1+git20110523-1.1. (Closes: #684758) * Remove multi-arch support for libphone-utils0, a less intrusive way to fix #695272 as advised by Helmut Grohne, and underlined by the release team. -- David Prévot Wed, 26 Dec 2012 21:31:46 -0400 libphone-utils (0.1+git20110523-2) unstable; urgency=low [ Dominik George ] * Added a new libphone-utils-common binary package to contain the /etc/phone-utils.conf config file for better multi-arch support as reported by Helmut Grohne (Closes: #695272). [ Sebastian Reichel ] * Use Debian Copyright Format 1.0 * Bump Debian Standards Version to 3.9.4 * Move phoneprefix file to libphone-utils-common -- Sebastian Reichel Sun, 09 Dec 2012 20:28:21 +0100 libphone-utils (0.1+git20110523-1.2) unstable; urgency=low * Non-maintainer upload. * debian/libphone-utils-dev.postinst: Fix directory to symlink upgrade in postinst. (Closes: #687870) -- David Prévot Thu, 27 Sep 2012 09:10:19 -0400 libphone-utils (0.1+git20110523-1.1) unstable; urgency=low * Non-maintainer upload. * Fix "/usr/share/doc/libphone-utils0-dbg empty after squeeze->wheezy upgrade": add libphone-utils0-dbg.preinst to remove directory before the symlink is created. (Closes: #684758) -- gregor herrmann Fri, 07 Sep 2012 16:52:01 +0200 libphone-utils (0.1+git20110523-1) unstable; urgency=low [ Sebastian Reichel ] * Initial Danish translation (Joe Dalton). (Closes: #597772) * Update my mail address * Update copyright to new DEP5 style [ Rico Rommel ] * update standards to 3.9.2 * add multiarch support * use debhelper * remove static libs from libphone-utils-dev -- Sebastian Reichel Tue, 18 Oct 2011 23:37:13 +0200 libphone-utils (0.1+git20100630-1) unstable; urgency=low * New upstream release * Switch to DEP-5 * Update Debian Standards Version to 3.9.1.0 * Add VCS entries to control file * Use CDBS routines instead of autoreconf * Updated Czech translation (Michal Simunek). (Closes: #589321) -- Sebastian Reichel Mon, 26 Jul 2010 17:15:46 +0200 libphone-utils (0.1+git20100219-1) unstable; urgency=low * new git checkout * make control file lintian clean * update to 3.0 (quilt) format * Vietnamese (Clytie Siddall). (Closes: #576025) -- Sebastian Reichel Fri, 04 Jun 2010 16:23:55 +0200 libphone-utils (0.1+git20091220-2) unstable; urgency=low * Debconf templates and debian/control reviewed by the debian-l10n- english team as part of the Smith review project. (Closes: #565577) * [Debconf translation updates] * German (Thomas Mueller). (Closes: #562829, #566883) * Russian (Yuri Kozlov). (Closes: #563182, #566359) * Swedish (Martin Bagge). (Closes: #566716) * Japanese (Hideki Yamane (Debian-JP)). (Closes: #566885) * Portuguese (Miguel Figueiredo). (Closes: #566909) * Italian (Vincenzo Campanella). (Closes: #567110) * French (Christian Perrier). (Closes: #567651 * Spanish (Francisco Javier Cuadrado). (Closes: #567916) * Install phoneprefix file * Update to Debian Standards Version 3.8.4 * Allow DM-Upload -- Sebastian Reichel Thu, 07 Jan 2010 17:37:43 +0100 libphone-utils (0.1+git20091220-1) pkg-fso; urgency=low * new git checkout -- Sebastian Reichel Sun, 20 Dec 2009 13:17:38 +0100 libphone-utils (0.1+git20091114-4) unstable; urgency=low * add debhelper entry in postrm * update templates -- Sebastian Reichel Sun, 17 Nov 2009 22:08:00 +0200 libphone-utils (0.1+git20091114-3) pkg-fso; urgency=low * apply Jonas Smedegaard's patch to keep comments in the config file -- Sebastian Reichel Sun, 16 Nov 2009 13:10:00 +0200 libphone-utils (0.1+git20091114-2) pkg-fso; urgency=low * remove config file on package removal -- Sebastian Reichel Sun, 15 Nov 2009 23:12:00 +0200 libphone-utils (0.1+git20091114-1) pkg-fso; urgency=low * new git checkout -- Sebastian Reichel Sun, 15 Nov 2009 00:15:00 +0200 libphone-utils (0.1+git20090801-1) pkg-fso; urgency=low * Initial release -- Sebastian Reichel Mon, 03 Aug 2009 22:19:13 +0200 debian/po/0000755000000000000000000000000011647374357007625 5ustar debian/po/POTFILES.in0000644000000000000000000000006411647374357011402 0ustar [type: gettext/rfc822deb] libphone-utils0.templates debian/po/templates.pot0000644000000000000000000000374611647374357012361 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: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: libphone-utils@packages.debian.org\n" "POT-Creation-Date: 2010-01-22 06:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" #. Type: string #. Description #: ../libphone-utils0.templates:2001 msgid "International phone prefix:" msgstr "" #. Type: string #. Description #: ../libphone-utils0.templates:2001 msgid "" "Please enter the prefix to dial for international calls. This prefix is \"00" "\" in most countries." msgstr "" #. Type: string #. Description #: ../libphone-utils0.templates:3001 msgid "National phone prefix:" msgstr "" #. Type: string #. Description #: ../libphone-utils0.templates:3001 msgid "" "Please enter the prefix to dial for national calls. This prefix is \"0\" in " "most countries." msgstr "" #. Type: string #. Default #: ../libphone-utils0.templates:4001 msgid "49" msgstr "" #. Type: string #. Description #: ../libphone-utils0.templates:4002 msgid "Telephone country code:" msgstr "" #. Type: string #. Description #: ../libphone-utils0.templates:4002 msgid "" "Please enter the international telephone code for the local country (for " "instance, \"49\" for Germany)." msgstr "" #. Type: string #. Description #: ../libphone-utils0.templates:5001 msgid "Area code:" msgstr "" #. Type: string #. Description #: ../libphone-utils0.templates:5001 msgid "" "Please enter the telephone code for the local area (for instance, \"30\" for " "Berlin in Germany)." msgstr "" #. Type: string #. Description #: ../libphone-utils0.templates:5001 msgid "This is normally only needed with landline phones." msgstr "" debian/po/ja.po0000644000000000000000000000552711647374357010570 0ustar # libphone-utils po-debconf translation (Japanese) # Copyright (C) 2009-2010 Debian freesmartphone.org Team # This file is distributed under the same license as the libphone-utils package. # Hideki Yamane (Debian-JP) , 2009-2010. # msgid "" msgstr "" "Project-Id-Version: libphone-utils 0.1+git20091114-5\n" "Report-Msgid-Bugs-To: libphone-utils@packages.debian.org\n" "POT-Creation-Date: 2010-01-22 06:39+0100\n" "PO-Revision-Date: 2010-01-25 08:52+0900\n" "Last-Translator: Hideki Yamane (Debian-JP) \n" "Language-Team: Japanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: string #. Description #: ../libphone-utils0.templates:2001 msgid "International phone prefix:" msgstr "国際プレフィックス:" #. Type: string #. Description #: ../libphone-utils0.templates:2001 msgid "" "Please enter the prefix to dial for international calls. This prefix is \"00" "\" in most countries." msgstr "" "国際電話をかける際の国際プレフィックスを入力してください。多くの国で、この番" "号は「00」となっています (訳注:日本は 010 です)。" #. Type: string #. Description #: ../libphone-utils0.templates:3001 msgid "National phone prefix:" msgstr "国内プレフィックス:" #. Type: string #. Description #: ../libphone-utils0.templates:3001 msgid "" "Please enter the prefix to dial for national calls. This prefix is \"0\" in " "most countries." msgstr "" "国内電話をかける際の、国内プレフィックスを入力してください。多くの国で、この" "番号は「0」となっています (訳注:日本含む)。" #. Type: string #. Default #: ../libphone-utils0.templates:4001 msgid "49" msgstr "81" #. Type: string #. Description #: ../libphone-utils0.templates:4002 msgid "Telephone country code:" msgstr "国番号:" #. Type: string #. Description #: ../libphone-utils0.templates:4002 msgid "" "Please enter the international telephone code for the local country (for " "instance, \"49\" for Germany)." msgstr "この国の国番号を入力してください (例えば、日本の場合は「81」です)。" #. Type: string #. Description #: ../libphone-utils0.templates:5001 msgid "Area code:" msgstr "市外局番:" #. Type: string #. Description #: ../libphone-utils0.templates:5001 msgid "" "Please enter the telephone code for the local area (for instance, \"30\" for " "Berlin in Germany)." msgstr "" "この地域の市外局番を入力してください (例えば、日本で東京の場合は「3」です)。" #. Type: string #. Description #: ../libphone-utils0.templates:5001 msgid "This is normally only needed with landline phones." msgstr "通常、これは固定電話にのみ必要となります。" debian/po/ru.po0000644000000000000000000000602311647374357010614 0ustar # translation of ru.po to Russian # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Yuri Kozlov , 2009, 2010. msgid "" msgstr "" "Project-Id-Version: libphone-utils 0.1+git20091114-5\n" "Report-Msgid-Bugs-To: libphone-utils@packages.debian.org\n" "POT-Creation-Date: 2010-01-22 06:39+0100\n" "PO-Revision-Date: 2010-01-23 10:00+0300\n" "Last-Translator: Yuri Kozlov \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" "10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. Type: string #. Description #: ../libphone-utils0.templates:2001 msgid "International phone prefix:" msgstr "Префикс для международных телефонных звонков:" #. Type: string #. Description #: ../libphone-utils0.templates:2001 msgid "" "Please enter the prefix to dial for international calls. This prefix is \"00" "\" in most countries." msgstr "" "Введите префикс для международных телефонных звонков. В России это \"810\"." #. Type: string #. Description #: ../libphone-utils0.templates:3001 msgid "National phone prefix:" msgstr "Префикс для телефонных звонков внутри страны:" #. Type: string #. Description #: ../libphone-utils0.templates:3001 msgid "" "Please enter the prefix to dial for national calls. This prefix is \"0\" in " "most countries." msgstr "" "Введите префикс для телефонных звонков внутри страны. В России это \"8\"." #. Type: string #. Default #: ../libphone-utils0.templates:4001 msgid "49" msgstr "7" #. Type: string #. Description #: ../libphone-utils0.templates:4002 msgid "Telephone country code:" msgstr "Телефонный код страны:" #. Type: string #. Description #: ../libphone-utils0.templates:4002 msgid "" "Please enter the international telephone code for the local country (for " "instance, \"49\" for Germany)." msgstr "" "Введите международный телефонный код страны. Например, для России это \"7\"." #. Type: string #. Description #: ../libphone-utils0.templates:5001 msgid "Area code:" msgstr "Код региона:" #. Type: string #. Description #: ../libphone-utils0.templates:5001 msgid "" "Please enter the telephone code for the local area (for instance, \"30\" for " "Berlin in Germany)." msgstr "Введите телефонный код региона. Например, для Подмосковья это \"496\"." #. Type: string #. Description #: ../libphone-utils0.templates:5001 msgid "This is normally only needed with landline phones." msgstr "Обычно, он требуется только для проводных телефонов." debian/po/sv.po0000644000000000000000000000534311647374357010622 0ustar # Translation of libphone-utils debconf template to Swedish # Copyright (C) 2010 Martin Bagge # This file is distributed under the same license as the libphone-utils package. # # Martin Bagge , 2010 msgid "" msgstr "" "Project-Id-Version: libphone-utils VERSION\n" "Report-Msgid-Bugs-To: libphone-utils@packages.debian.org\n" "POT-Creation-Date: 2010-01-22 06:39+0100\n" "PO-Revision-Date: 2010-01-25 18:45+0100\n" "Last-Translator: Martin Bagge \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: Swedish\n" "X-Poedit-Country: Sweden\n" #. Type: string #. Description #: ../libphone-utils0.templates:2001 msgid "International phone prefix:" msgstr "Utlandsprefix:" #. Type: string #. Description #: ../libphone-utils0.templates:2001 msgid "" "Please enter the prefix to dial for international calls. This prefix is \"00" "\" in most countries." msgstr "" "Ange prefixet för att ringa samtal till utlandet. I många länder, ex. " "Sverige, är detta \"00\"." #. Type: string #. Description #: ../libphone-utils0.templates:3001 msgid "National phone prefix:" msgstr "Prefix nationellt:" #. Type: string #. Description #: ../libphone-utils0.templates:3001 msgid "" "Please enter the prefix to dial for national calls. This prefix is \"0\" in " "most countries." msgstr "" "Ange prefixet för att ringa samtal inom landet. I många länder är detta \"0" "\"." #. Type: string #. Default #: ../libphone-utils0.templates:4001 msgid "49" msgstr "46" #. Type: string #. Description #: ../libphone-utils0.templates:4002 msgid "Telephone country code:" msgstr "Landskod:" #. Type: string #. Description #: ../libphone-utils0.templates:4002 msgid "" "Please enter the international telephone code for the local country (for " "instance, \"49\" for Germany)." msgstr "" "Ange det internationella prefixet för ditt land (exempelvis \"46\" för " "Sverige)." #. Type: string #. Description #: ../libphone-utils0.templates:5001 msgid "Area code:" msgstr "Riktnummer:" # go 035! Halmstad <3 #. Type: string #. Description #: ../libphone-utils0.templates:5001 msgid "" "Please enter the telephone code for the local area (for instance, \"30\" for " "Berlin in Germany)." msgstr "Ange riktnummerområde (exempelvis \"08\" för Stockholm)." #. Type: string #. Description #: ../libphone-utils0.templates:5001 msgid "This is normally only needed with landline phones." msgstr "Detta behövs vanligen bara vid fast telefoni." #~ msgid "" #~ "You can setup your country code here. For example it is \"49\" for " #~ "Germany." #~ msgstr "Här kan du ange din landskod. I Sverige är detta \"46\"." debian/po/es.po0000644000000000000000000000671411647374357010604 0ustar # libphone-utils po-debconf translation to Spanish # Copyright (C) 2010 Software in the Public Interest # This file is distributed under the same license as the libphone-utils package. # # Changes: # - Initial translation # Francisco Javier Cuadrado Egea , 2010 # # Traductores, si no conocen el formato PO, merece la pena leer la # documentación de gettext, especialmente las secciones dedicadas a este # formato, por ejemplo ejecutando: # info -n '(gettext)PO Files' # info -n '(gettext)Header Entry' # # Equipo de traducción al español, por favor lean antes de traducir # los siguientes documentos: # # - El proyecto de traducción de Debian al español # http://www.debian.org/intl/spanish/ # especialmente las notas y normas de traducción en # http://www.debian.org/intl/spanish/notas # # - La guía de traducción de po's de debconf: # /usr/share/doc/po-debconf/README-trans # o http://www.debian.org/intl/l10n/po-debconf/README-trans # msgid "" msgstr "" "Project-Id-Version: libphone-utils 0.1+git20091114-5\n" "Report-Msgid-Bugs-To: libphone-utils@packages.debian.org\n" "POT-Creation-Date: 2010-01-22 06:39+0100\n" "PO-Revision-Date: 2010-01-22 11:40+0100\n" "Last-Translator: Francisco Javier Cuadrado \n" "Language-Team: Debian l10n Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: string #. Description #: ../libphone-utils0.templates:2001 msgid "International phone prefix:" msgstr "Prefijo telefónico internacional:" #. Type: string #. Description #: ../libphone-utils0.templates:2001 msgid "" "Please enter the prefix to dial for international calls. This prefix is \"00" "\" in most countries." msgstr "" "Introduzca el prefijo para realizar llamadas internacionales. Este prefijo " "es «00» en la mayoría de países." #. Type: string #. Description #: ../libphone-utils0.templates:3001 msgid "National phone prefix:" msgstr "Prefijo telefónico nacional:" #. Type: string #. Description #: ../libphone-utils0.templates:3001 msgid "" "Please enter the prefix to dial for national calls. This prefix is \"0\" in " "most countries." msgstr "" "Introduzca el prefijo para realizar llamadas nacionales. Este prefijo es «0» " "en la mayoría de países." #. Type: string #. Default #: ../libphone-utils0.templates:4001 msgid "49" msgstr "34" #. Type: string #. Description #: ../libphone-utils0.templates:4002 msgid "Telephone country code:" msgstr "Código telefónico del país:" #. Type: string #. Description #: ../libphone-utils0.templates:4002 msgid "" "Please enter the international telephone code for the local country (for " "instance, \"49\" for Germany)." msgstr "" "Introduzca el código telefónico internacional para el país actual (por " "ejemplo: «34» para España)." #. Type: string #. Description #: ../libphone-utils0.templates:5001 msgid "Area code:" msgstr "Código de área:" #. Type: string #. Description #: ../libphone-utils0.templates:5001 msgid "" "Please enter the telephone code for the local area (for instance, \"30\" for " "Berlin in Germany)." msgstr "" "Introduzca el código telefónico para el área local (por ejemplo: «91» para " "Madrid en España)." #. Type: string #. Description #: ../libphone-utils0.templates:5001 msgid "This is normally only needed with landline phones." msgstr "Normalmente sólo se necesita en teléfonos en líneas de tierra." debian/po/cs.po0000644000000000000000000000674311647374357010604 0ustar # Czech translation of PO debconf template for package libphone-utils. # Copyright (C) 2010 Michal Simunek # This file is distributed under the same license as the libphone-utils package. # Michal Simunek , 2010. # msgid "" msgstr "" "Project-Id-Version: libphone-utils 0.1+git20100219-1\n" "Report-Msgid-Bugs-To: libphone-utils@packages.debian.org\n" "POT-Creation-Date: 2010-01-22 06:39+0100\n" "PO-Revision-Date: 2010-07-16 18:10+0200\n" "Last-Translator: Michal Simunek \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: string #. Description #: ../libphone-utils0.templates:2001 #| msgid "international phone prefix:" msgid "International phone prefix:" msgstr "Mezinárodní telefonní předčíslí:" #. Type: string #. Description #: ../libphone-utils0.templates:2001 #| msgid "" #| "You can setup the prefix for international calls here. This prefix is \"00" #| "\" in a lot of countries." msgid "" "Please enter the prefix to dial for international calls. This prefix is \"00" "\" in most countries." msgstr "" "Zadejte předčíslí pro mezinárodní hovory. Ve většině zemích je toto " "předčíslí \"00\"." #. Type: string #. Description #: ../libphone-utils0.templates:3001 #| msgid "national phone prefix:" msgid "National phone prefix:" msgstr "Vnitrostátní telefonní předčíslí:" #. Type: string #. Description #: ../libphone-utils0.templates:3001 #| msgid "" #| "You can setup the prefix for national calls here. This prefix is \"0\" in " #| "a lot of countries." msgid "" "Please enter the prefix to dial for national calls. This prefix is \"0\" in " "most countries." msgstr "" "Zadejte prosím předčíslí pro vnitrostátní hovory. Ve většině zemích je toto " "předčíslí \"0\"." #. Type: string #. Default #: ../libphone-utils0.templates:4001 msgid "49" msgstr "420" #. Type: string #. Description #: ../libphone-utils0.templates:4002 #| msgid "country code:" msgid "Telephone country code:" msgstr "Kód země:" #. Type: string #. Description #: ../libphone-utils0.templates:4002 msgid "" "Please enter the international telephone code for the local country (for " "instance, \"49\" for Germany)." msgstr "" "Zadejte prosím mezinárodní telefonní kód země. (například \"420\" pro " "Českou republiku)." #. Type: string #. Description #: ../libphone-utils0.templates:5001 #| msgid "area code:" msgid "Area code:" msgstr "Kód oblasti:" #. Type: string #. Description #: ../libphone-utils0.templates:5001 msgid "" "Please enter the telephone code for the local area (for instance, \"30\" for " "Berlin in Germany)." msgstr "" "Zadejte prosím telefonní kód oblasti. (například \"3\" pro " "Středočeský kraj v České republice)." #. Type: string #. Description #: ../libphone-utils0.templates:5001 msgid "This is normally only needed with landline phones." msgstr "To je obvykle potřeba pouze u pevných linek." #~ msgid "" #~ "You can setup your country code here. For example it is \"49\" for " #~ "Germany." #~ msgstr "Zde můžete zadat kód své země. Například, pro Německo je to \"49\"." #~ msgid "" #~ "You can setup your area code here. For example it is \"30\" for Berlin. " #~ "This is normally only needed with landline phones." #~ msgstr "" #~ "Zde můžete zadat kód své oblasti. Například, pro Berlín je to \"33\". To " #~ "je obvykle potřeba pouze u pevných telefonních linek." debian/po/pt.po0000644000000000000000000000515011647374357010611 0ustar # This file is distributed under the same license as the libphone-utils package. # # Miguel Figueiredo , 2010. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: libphone-utils@packages.debian.org\n" "POT-Creation-Date: 2010-01-22 06:39+0100\n" "PO-Revision-Date: 2010-01-25 21:18+0000\n" "Last-Translator: Miguel Figueiredo \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: Lokalize 1.0\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. Type: string #. Description #: ../libphone-utils0.templates:2001 msgid "International phone prefix:" msgstr "Prefixo telefónico internacional:" #. Type: string #. Description #: ../libphone-utils0.templates:2001 msgid "" "Please enter the prefix to dial for international calls. This prefix is \"00" "\" in most countries." msgstr "" "Por favor introduza o prefixo para marcar chamadas internacionais. Na " "maioria dos países o prefixo é \"00\"." #. Type: string #. Description #: ../libphone-utils0.templates:3001 msgid "National phone prefix:" msgstr "Prefixo de telefone nacional:" #. Type: string #. Description #: ../libphone-utils0.templates:3001 msgid "" "Please enter the prefix to dial for national calls. This prefix is \"0\" in " "most countries." msgstr "" "Por favor introduza o prefixo para marcar chamadas nacionais. Na maioria dos " "países é \"0\"." #. Type: string #. Default #: ../libphone-utils0.templates:4001 msgid "49" msgstr "351" #. Type: string #. Description #: ../libphone-utils0.templates:4002 msgid "Telephone country code:" msgstr "Código telefónico de país:" #. Type: string #. Description #: ../libphone-utils0.templates:4002 msgid "" "Please enter the international telephone code for the local country (for " "instance, \"49\" for Germany)." msgstr "" "Por favor introduza o código internacional de telefone para o seu país local " "(por exemplo, \"351\" para Portugal)." #. Type: string #. Description #: ../libphone-utils0.templates:5001 msgid "Area code:" msgstr "Indicativo regional:" #. Type: string #. Description #: ../libphone-utils0.templates:5001 msgid "" "Please enter the telephone code for the local area (for instance, \"30\" for " "Berlin in Germany)." msgstr "" "Por favor introduza o código telefónico para a região local (por exemplo, " "\"259\" para Vila Real em Portugal)." #. Type: string #. Description #: ../libphone-utils0.templates:5001 msgid "This is normally only needed with landline phones." msgstr "Normalmente isto só é necessário para telefone fixo." debian/po/de.po0000644000000000000000000000513611647374357010562 0ustar # Translation of po-debconf template to German # This file is distributed under the same license as the libphone-utils package. # # Thomas Mueller , 2010. msgid "" msgstr "" "Project-Id-Version: libphone-utils 0.1\n" "Report-Msgid-Bugs-To: libphone-utils@packages.debian.org\n" "POT-Creation-Date: 2010-01-22 06:39+0100\n" "PO-Revision-Date: 2010-01-25 20:19+0100\n" "Last-Translator: Thomas Mueller \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Lokalize 1.0\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" #. Type: string #. Description #: ../libphone-utils0.templates:2001 msgid "International phone prefix:" msgstr "Internationale Vorwahl:" #. Type: string #. Description #: ../libphone-utils0.templates:2001 msgid "" "Please enter the prefix to dial for international calls. This prefix is \"00" "\" in most countries." msgstr "" "Bitten geben Sie die Vorwahl für internationale Telefonate an. In den " "meisten Ländern ist die Vorwahl »00«." #. Type: string #. Description #: ../libphone-utils0.templates:3001 msgid "National phone prefix:" msgstr "Nationale Vorwahl:" #. Type: string #. Description #: ../libphone-utils0.templates:3001 msgid "" "Please enter the prefix to dial for national calls. This prefix is \"0\" in " "most countries." msgstr "" "Bitte geben Sie die Vorwahl für nationale Telefonate an. In vielen Ländern " "ist die Vorwahl »0«." #. Type: string #. Default #: ../libphone-utils0.templates:4001 msgid "49" msgstr "49" #. Type: string #. Description #: ../libphone-utils0.templates:4002 msgid "Telephone country code:" msgstr "Landesvorwahl:" #. Type: string #. Description #: ../libphone-utils0.templates:4002 msgid "" "Please enter the international telephone code for the local country (for " "instance, \"49\" for Germany)." msgstr "" "Bitten geben Sie die internationale Landesvorwahl für Ihren Standort an (zum " "Beispiel »49« für Deutschland)." #. Type: string #. Description #: ../libphone-utils0.templates:5001 msgid "Area code:" msgstr "Ortsvorwahl:" #. Type: string #. Description #: ../libphone-utils0.templates:5001 msgid "" "Please enter the telephone code for the local area (for instance, \"30\" for " "Berlin in Germany)." msgstr "Bitte geben Sie Ihre Ortsvorwahl an (zum Beispiel »30« für Berlin)." #. Type: string #. Description #: ../libphone-utils0.templates:5001 msgid "This is normally only needed with landline phones." msgstr "Diese ist üblicherweise nur bei Festnetztelefonen notwendig." debian/po/it.po0000644000000000000000000000555711647374357010615 0ustar # ITALIAN TRANSLATION OF LIBPHONE-UTILS' PO-DEBCONF FILE. # COPYRIGHT (C) 2010 THE LIBPHONE-UTILS' COPYRIGHT HOLDER # This file is distributed under the same license as the libphone-utils package. # # Vincenzo Campanella , 2010. # msgid "" msgstr "" "Project-Id-Version: libphone-utils 0.1+git20091114-5\n" "Report-Msgid-Bugs-To: libphone-utils@packages.debian.org\n" "POT-Creation-Date: 2010-01-22 06:39+0100\n" "PO-Revision-Date: 2010-01-22 09:32+0100\n" "Last-Translator: Vincenzo Campanella \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: string #. Description #: ../libphone-utils0.templates:2001 msgid "International phone prefix:" msgstr "Prefisso telefonico internazionale:" #. Type: string #. Description #: ../libphone-utils0.templates:2001 msgid "" "Please enter the prefix to dial for international calls. This prefix is \"00" "\" in most countries." msgstr "" "Inserire il prefisso che deve essere composto per le chiamate " "internazionali. Nella maggior parte dei paesi è «00»." #. Type: string #. Description #: ../libphone-utils0.templates:3001 msgid "National phone prefix:" msgstr "Prefisso telefonico nazionale:" #. Type: string #. Description #: ../libphone-utils0.templates:3001 msgid "" "Please enter the prefix to dial for national calls. This prefix is \"0\" in " "most countries." msgstr "" "Inserire il prefisso che deve essere composto per le chiamate nazionali. " "Nella maggior parte dei paesi è «0»." #. Type: string #. Default #: ../libphone-utils0.templates:4001 msgid "49" msgstr "39" #. Type: string #. Description #: ../libphone-utils0.templates:4002 msgid "Telephone country code:" msgstr "Codice telefonico della nazione:" #. Type: string #. Description #: ../libphone-utils0.templates:4002 msgid "" "Please enter the international telephone code for the local country (for " "instance, \"49\" for Germany)." msgstr "" "Inserire il codice telefonico internazionale della nazione (per esempio «39» " "per l'Italia)." #. Type: string #. Description #: ../libphone-utils0.templates:5001 msgid "Area code:" msgstr "Prefisso:" #. Type: string #. Description #: ../libphone-utils0.templates:5001 msgid "" "Please enter the telephone code for the local area (for instance, \"30\" for " "Berlin in Germany)." msgstr "" "Inserire il prefisso per le chiamate locali (per esempio «06» per Roma in " "Italia); lo «0» iniziale va inserito solo se deve sempre essere composto, " "come per esempio per chiamate verso l'Italia, mentre in altri casi va " "tralasciato: per esempio, per chiamate verso Lugano in Svizzera inserire «91»." #. Type: string #. Description #: ../libphone-utils0.templates:5001 msgid "This is normally only needed with landline phones." msgstr "Normalmente questo è necessario solo per i telefoni fissi." debian/po/vi.po0000644000000000000000000000532111647374357010604 0ustar # Vietnamese translation for Lib Phone Utils. # Copyright © 2010 Free Software Foundation, Inc. # Clytie Siddall , 2010. # msgid "" msgstr "" "Project-Id-Version: libphone-utils 0.1+git20091114-5\n" "Report-Msgid-Bugs-To: libphone-utils@packages.debian.org\n" "POT-Creation-Date: 2010-01-22 06:39+0100\n" "PO-Revision-Date: 2010-04-01 00:54+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" "X-Generator: LocFactoryEditor 1.8\n" #. Type: string #. Description #: ../libphone-utils0.templates:2001 msgid "International phone prefix:" msgstr "Tiền tố điện thoại quốc tế:" #. Type: string #. Description #: ../libphone-utils0.templates:2001 msgid "Please enter the prefix to dial for international calls. This prefix is \"00\" in most countries." msgstr "Hãy gõ tiền tố cần quay số khi gọi cho người ngoài nước. Tiền tố này là « 00 » trong phần lớn các quốc gia." #. Type: string #. Description #: ../libphone-utils0.templates:3001 msgid "National phone prefix:" msgstr "Tiền tố điện thoại trong nước:" #. Type: string #. Description #: ../libphone-utils0.templates:3001 msgid "Please enter the prefix to dial for national calls. This prefix is \"0\" in most countries." msgstr "Hãy gõ tiền tố cần quay số khi gọi cho người ở trong nước này. Tiền tố này là « 0 » trong phần lớn các quốc gia." #. Type: string #. Defaultchoice #: ../libphone-utils0.templates:4001 msgid "49" msgstr "49" #. Type: string #. Description #: ../libphone-utils0.templates:4002 msgid "Telephone country code:" msgstr "Mã quốc gia điện thoại:" #. Type: string #. Description #: ../libphone-utils0.templates:4002 msgid "Please enter the international telephone code for the local country (for instance, \"49\" for Germany)." msgstr "Hãy gõ mã điện thoại quốc tế cho nước này (v.d. « 84 » cho Việt Nam)." #. Type: string #. Description #: ../libphone-utils0.templates:5001 msgid "Area code:" msgstr "Mã vùng:" #. Type: string #. Description #: ../libphone-utils0.templates:5001 msgid "Please enter the telephone code for the local area (for instance, \"30\" for Berlin in Germany)." msgstr "Hãy gõ mã điện thoại cho vùng này (v.d. « 4 » cho Hà Nội)." #. Type: string #. Description #: ../libphone-utils0.templates:5001 msgid "This is normally only needed with landline phones." msgstr "Giá trị này bình thường chỉ yêu cầu cho điện thoại dây (không phải điện thoại di động)." debian/po/da.po0000644000000000000000000000511711647374357010555 0ustar # Danish translation libphone-utils. # Copyright (C) 2010 libphone-utils & nedenstående oversættere. # This file is distributed under the same license as the libphone-utils package. # Joe Hansen , 2010. # msgid "" msgstr "" "Project-Id-Version: libphone-utils\n" "Report-Msgid-Bugs-To: libphone-utils@packages.debian.org\n" "POT-Creation-Date: 2010-01-22 06:39+0100\n" "PO-Revision-Date: 2010-09-25 17:30+01:00\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: string #. Description #: ../libphone-utils0.templates:2001 msgid "International phone prefix:" msgstr "Internationalt telefonpræfiks:" #. Type: string #. Description #: ../libphone-utils0.templates:2001 msgid "" "Please enter the prefix to dial for international calls. This prefix is \"00" "\" in most countries." msgstr "" "Indtast venligst præfikset for at ringe internationalt. Dette præfiks er »00«" "i de fleste lande." #. Type: string #. Description #: ../libphone-utils0.templates:3001 msgid "National phone prefix:" msgstr "Nationalt telefonpræfiks:" #. Type: string #. Description #: ../libphone-utils0.templates:3001 msgid "" "Please enter the prefix to dial for national calls. This prefix is \"0\" in " "most countries." msgstr "" "Indtast venligst præfikset for ringe nationalt. Dette præfiks er »0« i " "de fleste lande." #. Type: string #. Default #: ../libphone-utils0.templates:4001 msgid "49" msgstr "45" #. Type: string #. Description #: ../libphone-utils0.templates:4002 msgid "Telephone country code:" msgstr "Landekode for telefon:" #. Type: string #. Description #: ../libphone-utils0.templates:4002 msgid "" "Please enter the international telephone code for the local country (for " "instance, \"49\" for Germany)." msgstr "" "Indtast venligst den internationale telefonkode for det lokale land (for " "eksempel, »45« for Danmark)." #. Type: string #. Description #: ../libphone-utils0.templates:5001 msgid "Area code:" msgstr "Områdekode:" #. Type: string #. Description #: ../libphone-utils0.templates:5001 msgid "" "Please enter the telephone code for the local area (for instance, \"30\" for " "Berlin in Germany)." msgstr "" "Indtast venligst telefonkoden for det lokale område (for eksempel, »30« for " "Berlin i Tyskland)." #. Type: string #. Description #: ../libphone-utils0.templates:5001 msgid "This is normally only needed with landline phones." msgstr "Dette er normalt kun krævet for fastnetstelefoner." debian/po/fr.po0000644000000000000000000000550511647374357010601 0ustar # Translation of libphone-utils debconf templates to French # Copyright (C) 2010 Debian French l10n team # This file is distributed under the same license as the libphone-utils package. # # Translators: # Christian Perrier , 2010. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: libphone-utils@packages.debian.org\n" "POT-Creation-Date: 2010-01-22 06:39+0100\n" "PO-Revision-Date: 2010-01-23 12:33+0100\n" "Last-Translator: Christian Perrier \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Lokalize 1.0\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. Type: string #. Description #: ../libphone-utils0.templates:2001 msgid "International phone prefix:" msgstr "Préfixe téléphonique pour l'accès à l'international :" #. Type: string #. Description #: ../libphone-utils0.templates:2001 msgid "" "Please enter the prefix to dial for international calls. This prefix is \"00" "\" in most countries." msgstr "" "Veuillez indiquer le préfixe à composer avant les numéros internationaux. " "C'est « 00 » dans la plupart des pays." #. Type: string #. Description #: ../libphone-utils0.templates:3001 msgid "National phone prefix:" msgstr "Préfixe téléphonique pour les appels nationaux :" #. Type: string #. Description #: ../libphone-utils0.templates:3001 msgid "" "Please enter the prefix to dial for national calls. This prefix is \"0\" in " "most countries." msgstr "" "Veuillez indiquer le préfixe à composer avant les numéros nationaux. C'est " "« 0 » dans la plupart des pays." #. Type: string #. Default #: ../libphone-utils0.templates:4001 msgid "49" msgstr "33" #. Type: string #. Description #: ../libphone-utils0.templates:4002 msgid "Telephone country code:" msgstr "Code téléphonique du pays :" #. Type: string #. Description #: ../libphone-utils0.templates:4002 msgid "" "Please enter the international telephone code for the local country (for " "instance, \"49\" for Germany)." msgstr "" "Veuillez indiquer le code à composer avant un appel local au pays (p. ex., " "« 33 » pour la France." #. Type: string #. Description #: ../libphone-utils0.templates:5001 msgid "Area code:" msgstr "Code régional :" #. Type: string #. Description #: ../libphone-utils0.templates:5001 msgid "" "Please enter the telephone code for the local area (for instance, \"30\" for " "Berlin in Germany)." msgstr "" "Veuillez indiquer le code téléphonique pour la zone locale (cette notion est " "inutile en France)." #. Type: string #. Description #: ../libphone-utils0.templates:5001 msgid "This is normally only needed with landline phones." msgstr "Ce code est utilisé en général avec les téléphones fixes." debian/libphone-utils-dev.install0000644000000000000000000000012311647374357014305 0ustar usr/bin/phoneutils_test usr/lib/*/*.so usr/lib/*/pkgconfig usr/include/phone-utils debian/control0000644000000000000000000000346212066721036010601 0ustar Source: libphone-utils Section: libs Priority: extra Maintainer: Debian freesmartphone.org Team Uploaders: Sebastian Reichel , Rico Rommel DM-Upload-Allowed: yes Build-Depends: debhelper (>= 8), dh-autoreconf, libglib2.0-dev, po-debconf Standards-Version: 3.9.2 Homepage: http://shr-project.org Vcs-git: git://git.debian.org/pkg-fso/libphone-utils.git Vcs-browser: http://git.debian.org/?p=pkg-fso/libphone-utils.git Package: libphone-utils0 Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Pre-Depends: ${misc:Pre-Depends} Breaks: fso-frameworkd (<= 0.9.5.9+git20100117) Description: library for basic phone operations This library contains basic functions needed by SHR phone software and the freesmartphone.org opimd daemon. It is used for handling international numbers. Package: libphone-utils0-dbg Section: debug Architecture: any Depends: libphone-utils0 (= ${binary:Version}), ${misc:Depends} Multi-Arch: same Description: library for basic phone operations - debug symbols This library contains basic functions needed by SHR phone software and the freesmartphone.org opimd daemon. It is used for handling international numbers. . This package provides the debug symbols for the library. Package: libphone-utils-dev Section: libdevel Architecture: any Depends: libphone-utils0 (= ${binary:Version}), ${shlibs:Depends}, ${misc:Depends}, libglib2.0-dev Description: library for basic phone operations - development files This library contains basic functions needed by SHR phone software and the freesmartphone.org opimd daemon. It is used for handling international numbers. . This package provides the development files for this library. debian/copyright0000644000000000000000000000227311647374357011146 0ustar Format: http://dep.debian.net/deps/dep5/ Source: http://git.shr-project.org/git/?p=libphone-utils.git Files: * Copyright: 2009, Sebastian Krzyszkowiak 2009-2010, Tom Hacohen License: LGPL-3+ Files: debian/* Copyright: 2009-2011, Sebastian Reichel License: LGPL-3+ License: LGPL-3+ This package is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. . This package 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 Lesser General Public License for more details. . You should have received a copy of the GNU Lesser General Public License along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA . On Debian systems, the complete text of the GNU Lesser General Public License can be found in the file `/usr/share/common-licenses/LGPL-3'. debian/libphone-utils0.symbols0000644000000000000000000000417511647374357013646 0ustar libphone-utils.so.0 libphone-utils0 #MINVER# filter_string@Base 0.1+git20090801 phone_utils_call_is_valid_number@Base 0.1+git20091114 phone_utils_deinit@Base 0.1+git20090801 phone_utils_get_strdup_user_area_code@Base 0.1+git20091220 phone_utils_get_strdup_user_country_code@Base 0.1+git20091220 phone_utils_get_strdup_user_international_prefix@Base 0.1+git20091220 phone_utils_get_strdup_user_national_prefix@Base 0.1+git20091220 phone_utils_get_user_area_code@Base 0.1+git20090801 phone_utils_get_user_area_codes@Base 0.1+git20091220 phone_utils_get_user_country_code@Base 0.1+git20090801 phone_utils_get_user_country_codes@Base 0.1+git20091220 phone_utils_get_user_international_prefix@Base 0.1+git20090801 phone_utils_get_user_international_prefixes@Base 0.1+git20091220 phone_utils_get_user_national_prefix@Base 0.1+git20090801 phone_utils_get_user_national_prefixes@Base 0.1+git20091220 phone_utils_gsm_get_char_size@Base 0.1+git20091114 phone_utils_gsm_is_ucs@Base 0.1+git20091114 phone_utils_gsm_number_is_ussd@Base 0.1+git20091114 phone_utils_gsm_sms_split_message@Base 0.1+git20091114 phone_utils_gsm_sms_strlen@Base 0.1+git20091114 phone_utils_init@Base 0.1+git20090801 phone_utils_init_from_file@Base 0.1+git20090801 phone_utils_is_initialized@Base 0.1+git20090801 phone_utils_normalize_number@Base 0.1+git20090801 phone_utils_normalize_number_using_params@Base 0.1+git20091220 phone_utils_numbers_compare@Base 0.1+git20100219 phone_utils_numbers_equal@Base 0.1+git20090801 phone_utils_remove_filler_chars@Base 0.1+git20100630 phone_utils_save_config@Base 0.1+git20090801 phone_utils_save_config_to_file@Base 0.1+git20090801 phone_utils_set_codes@Base 0.1+git20090801 phone_utils_set_user_area_code@Base 0.1+git20090801 phone_utils_set_user_country_code@Base 0.1+git20090801 phone_utils_set_user_international_prefix@Base 0.1+git20090801 phone_utils_set_user_national_prefix@Base 0.1+git20090801 phone_utils_sms_is_valid_number@Base 0.1+git20091114 remove_from_chrs@Base 0.1+git20090801 remove_from_chrs_r@Base 0.1+git20090801 strchrs@Base 0.1+git20090801 strrchrs@Base 0.1+git20090801 utf8_get_next@Base 0.1+git20091114