tazpkg rev 472

Some fix to POT file but get an error.
author Christophe Lincoln <pankso@slitaz.org>
date Fri Apr 08 18:26:26 2011 +0200 (2011-04-08)
parents 7e0df4f72628
children f0cb9cf0dce3
files Makefile po/tazpkg-notify/pt.po po/tazpkg-notify/tazpkg-notify.pot po/tazpkg/fr.po po/tazpkg/tazpkg.pot tazpkg
line diff
     1.1 --- a/Makefile	Fri Apr 08 17:58:27 2011 +0200
     1.2 +++ b/Makefile	Fri Apr 08 18:26:26 2011 +0200
     1.3 @@ -23,10 +23,12 @@
     1.4  	
     1.5  msgmerge:
     1.6  	@for l in $(LINGUAS); do \
     1.7 -		echo -n "Updating $$l po file."; \
     1.8 -		msgmerge -U po/tazpkg/$$l.po po/tazpkg/tazpkg.pot ; \
     1.9 -		echo -n "Updating $$l po file."; \
    1.10 +		if [ -f "po/tazpkg/$$l.po" ]; then; \
    1.11 +			echo -n "Updating $$l po file."; \
    1.12 +			msgmerge -U po/tazpkg/$$l.po po/tazpkg/tazpkg.pot ; \
    1.13 +		fi; \
    1.14  		if [ -f "po/tazpkg-notify/$$l.po" ]; then; \
    1.15 +			echo -n "Updating $$l po file."; \
    1.16  			msgmerge -U po/tazpkg-notify/$$l.po \
    1.17  				po/tazpkg-notify/tazpkg-notify.pot; \
    1.18  		fi; \
    1.19 @@ -34,9 +36,19 @@
    1.20  
    1.21  msgfmt:
    1.22  	@for l in $(LINGUAS); do \
    1.23 -		echo "Compiling $$l mo file..."; \
    1.24 -		mkdir -p po/mo/$$l/LC_MESSAGES; \
    1.25 -		msgfmt -o po/mo/$$l/LC_MESSAGES/tazpkg.mo po/tazpkg/$$l.po ; \
    1.26 +		if [ -f "po/tazpkg/$$l.po" ]; then; \
    1.27 +			echo "Compiling $$l mo file..."; \
    1.28 +			mkdir -p po/mo/$$l/LC_MESSAGES; \
    1.29 +			msgfmt -o po/mo/$$l/LC_MESSAGES/tazpkg.mo \
    1.30 +				po/tazpkg/$$l.po ; \
    1.31 +		fi; \
    1.32 +		if [ -f "po/tazpkg-notify/$$l.po" ]; then; \
    1.33 +			echo "Compiling $$l mo file..."; \
    1.34 +			mkdir -p po/mo/$$l/LC_MESSAGES; \
    1.35 +			msgfmt -o po/mo/$$l/LC_MESSAGES/tazpkg-notify.mo \
    1.36 +				po/tazpkg-notify/$$l.po ; \
    1.37 +		fi; \
    1.38 +		
    1.39  	done;
    1.40  
    1.41  # Installation.
    1.42 @@ -46,6 +58,7 @@
    1.43  	install -m 0755 -d $(DESTDIR)$(PREFIX)/bin
    1.44  	install -m 0777 tazpkg $(DESTDIR)$(PREFIX)/bin
    1.45  	# Tazpkgbox GUI
    1.46 +	install -m 0777 tazpk-notify $(DESTDIR)$(PREFIX)/bin
    1.47  	install -m 0777 tazpkgbox $(DESTDIR)$(PREFIX)/bin
    1.48  	install -m 0777 tazpkgbox-install $(DESTDIR)$(PREFIX)/bin
    1.49  	install -m 0755 -d $(DESTDIR)$(LIBDIR)
    1.50 @@ -80,4 +93,5 @@
    1.51  	rm -rf _pkg
    1.52  	rm -rf po/mo
    1.53  	rm -f po/*/*~
    1.54 +	rm -f po/*/*.mo
    1.55  	
     2.1 --- a/po/tazpkg-notify/pt.po	Fri Apr 08 17:58:27 2011 +0200
     2.2 +++ b/po/tazpkg-notify/pt.po	Fri Apr 08 18:26:26 2011 +0200
     2.3 @@ -3,13 +3,12 @@
     2.4  # This file is distributed under the same license as the TazPKG package.
     2.5  # Claudinei Pereira <claudinei@slitaz.org>, 2011.
     2.6  #
     2.7 -#, fuzzy
     2.8  msgid ""
     2.9  msgstr ""
    2.10  "Project-Id-Version: Tazpkg-notify\n"
    2.11  "Report-Msgid-Bugs-To: \n"
    2.12  "POT-Creation-Date: 2011-04-07 05:36+0000\n"
    2.13 -"PO-Revision-Date: 2011-04-07 06:00+0000\n"
    2.14 +"PO-Revision-Date: 2011-04-08 18:07+0100\n"
    2.15  "Last-Translator: Claudinei Pereira <claudinei@slitaz.org>\n"
    2.16  "Language-Team: Portuguese <i18n@slitaz.org>\n"
    2.17  "Language: pt\n"
    2.18 @@ -49,11 +48,12 @@
    2.19  "Você deverá recarregar a lista de pacotes no mirror\n"
    2.20  "se quiser instalar pacotes ou atualizar o sistema"
    2.21  
    2.22 -
    2.23  #: tazpkg-notify:68
    2.24  msgid "Upgrade:2"
    2.25  msgstr "Atualizar:2"
    2.26  
    2.27 -#: tazpkg-notify:107 tazpkg-notify:147
    2.28 +#: tazpkg-notify:107
    2.29 +#: tazpkg-notify:147
    2.30  msgid "Recharge now:2"
    2.31  msgstr "Recarregar agora:2"
    2.32 +
     3.1 --- a/po/tazpkg-notify/tazpkg-notify.pot	Fri Apr 08 17:58:27 2011 +0200
     3.2 +++ b/po/tazpkg-notify/tazpkg-notify.pot	Fri Apr 08 18:26:26 2011 +0200
     3.3 @@ -6,9 +6,9 @@
     3.4  #, fuzzy
     3.5  msgid ""
     3.6  msgstr ""
     3.7 -"Project-Id-Version: Tazpkg Notification 4.3\n"
     3.8 +"Project-Id-Version: Tazpkg Notification 4.6\n"
     3.9  "Report-Msgid-Bugs-To: \n"
    3.10 -"POT-Creation-Date: 2011-04-06 01:31+0200\n"
    3.11 +"POT-Creation-Date: 2011-04-08 18:25+0200\n"
    3.12  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    3.13  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
    3.14  "Language-Team: LANGUAGE <LL@li.org>\n"
    3.15 @@ -20,7 +20,7 @@
    3.16  #: tazpkg-notify:38
    3.17  #, sh-format
    3.18  msgid ""
    3.19 -"<b>There is $up upgradeable packages for your SliTaz $ver</b>\n"
    3.20 +"<b>There is $up upgradeable packages for your SliTaz $rel</b>\n"
    3.21  "You should upgrade your system to get all latest fixes\n"
    3.22  "and improvments from SliTaz contributors"
    3.23  msgstr ""
    3.24 @@ -28,7 +28,7 @@
    3.25  #: tazpkg-notify:45
    3.26  #, sh-format
    3.27  msgid ""
    3.28 -"<b>Your SliTaz $ver packages list is older than 10 days.</b>\n"
    3.29 +"<b>Your SliTaz $rel packages list is older than 10 days.</b>\n"
    3.30  "You should recharge the list to check for updates"
    3.31  msgstr ""
    3.32  
     4.1 --- a/po/tazpkg/fr.po	Fri Apr 08 17:58:27 2011 +0200
     4.2 +++ b/po/tazpkg/fr.po	Fri Apr 08 18:26:26 2011 +0200
     4.3 @@ -1,16 +1,16 @@
     4.4 -# French translations for PACKAGE package
     4.5 -# Traductions françaises du paquet PACKAGE.
     4.6 -# Copyright (C) 2010 THE PACKAGE'S COPYRIGHT HOLDER
     4.7 -# This file is distributed under the same license as the PACKAGE package.
     4.8 -# Christophe Lincoln <pankso@slitaz.org>, 2010.
     4.9 -# 
    4.10 +# French translations for PACKAGE package
    4.11 +# Traductions françaises du paquet PACKAGE.
    4.12 +# Copyright (C) 2010 THE PACKAGE'S COPYRIGHT HOLDER
    4.13 +# This file is distributed under the same license as the PACKAGE package.
    4.14 +# Christophe Lincoln <pankso@slitaz.org>, 2010.
    4.15 +#
    4.16  msgid ""
    4.17  msgstr ""
    4.18  "Project-Id-Version: Tazpkg\n"
    4.19  "Report-Msgid-Bugs-To: \n"
    4.20  "POT-Creation-Date: 2011-04-06 01:20+0200\n"
    4.21 -"PO-Revision-Date: 2010-12-09 00:49+0100\n"
    4.22 -"Last-Translator: GoKhlaYeh <gokhlayeh@mailoo.org>\n"
    4.23 +"PO-Revision-Date: 2011-04-08 18:12+0100\n"
    4.24 +"Last-Translator: Christophe Lincoln <pankso@slitaz.org>\n"
    4.25  "Language-Team: French\n"
    4.26  "Language: \n"
    4.27  "MIME-Version: 1.0\n"
    4.28 @@ -116,7 +116,6 @@
    4.29  msgstr "Créé un paquet avec les fichiers de configuration système."
    4.30  
    4.31  #: tazpkg:110
    4.32 -#, fuzzy
    4.33  msgid "Rebuild a package with a better compression ratio."
    4.34  msgstr "Reconstruit un paquet avec le meilleur ratio de compression."
    4.35  
    4.36 @@ -237,8 +236,7 @@
    4.37  "You must probably run 'tazpkg recharge' as root to get the latest list of\n"
    4.38  "packages available on the mirror."
    4.39  msgstr ""
    4.40 -"Vous devez probablement lancer 'tazpkg recharge' en tant que root afin "
    4.41 -"d'obtenir\n"
    4.42 +"Vous devez probablement lancer 'tazpkg recharge' en tant que root afin d'obtenir\n"
    4.43  "la dernière liste des paquets disponibles sur le miroir."
    4.44  
    4.45  #: tazpkg:347
    4.46 @@ -251,7 +249,8 @@
    4.47  msgid "Extracting $PACKAGE... "
    4.48  msgstr "Extraction de $PACKAGE... "
    4.49  
    4.50 -#: tazpkg:405 tazpkg:410
    4.51 +#: tazpkg:405
    4.52 +#: tazpkg:410
    4.53  msgid "Extracting the pseudo fs... "
    4.54  msgstr "Extraction du pseudo fs..."
    4.55  
    4.56 @@ -326,12 +325,12 @@
    4.57  msgstr "Vérification de l'existance de $pkg dans la liste locale... "
    4.58  
    4.59  #: tazpkg:734
    4.60 -#, fuzzy, sh-format
    4.61 +#, sh-format
    4.62  msgid ""
    4.63  "Leaving dependencies for $PACKAGE unresolved. The package is installed but\n"
    4.64  "will probably not work."
    4.65  msgstr ""
    4.66 -"Dépendances pour $PACKAGE irésolue. Le paquet est installé mais\n"
    4.67 +"Dépendances pour $PACKAGE irésolues. Le paquet est installé mais\n"
    4.68  "ne va probablement pas fonctionner."
    4.69  
    4.70  #: tazpkg:811
    4.71 @@ -357,16 +356,17 @@
    4.72  "No 'packages.list' found to check for mirrored packages. For more results,\n"
    4.73  "please run 'tazpkg recharge' once as root before searching."
    4.74  msgstr ""
    4.75 -"Pas de 'packages.list' trouvée afin de vérifier les paquets du miroir. Pour "
    4.76 -"plus de résulats,\n"
    4.77 +"Pas de 'packages.list' trouvée afin de vérifier les paquets du miroir. Pour plus de résulats,\n"
    4.78  "veuillez lancer 'tazpkg recharge' en tant que root avant de rechercher."
    4.79  
    4.80 -#: tazpkg:853 tazpkg:881
    4.81 +#: tazpkg:853
    4.82 +#: tazpkg:881
    4.83  #, sh-format
    4.84  msgid "0 available packages found for : $PATTERN"
    4.85  msgstr "0 paquet trouvé pour: $PATTERN"
    4.86  
    4.87 -#: tazpkg:857 tazpkg:885
    4.88 +#: tazpkg:857
    4.89 +#: tazpkg:885
    4.90  #, sh-format
    4.91  msgid "$packages available package(s) found for : $PATTERN"
    4.92  msgstr "$packages paquets(s) trouvé pour: $PATTERN"
    4.93 @@ -380,12 +380,11 @@
    4.94  "No 'packages.txt' found to check for mirrored packages. For more results,\n"
    4.95  "please run 'tazpkg recharge' once as root before searching."
    4.96  msgstr ""
    4.97 -"Pas de 'packages.txt' pour vérifier les paquets du miroir. Pour plus de "
    4.98 -"résultats,\n"
    4.99 +"Pas de 'packages.txt' pour vérifier les paquets du miroir. Pour plus de résultats,\n"
   4.100  "veuillez lancer 'tazpkg recharge' en tant que root avant de rechercher."
   4.101  
   4.102  #: tazpkg:932
   4.103 -#, fuzzy, sh-format
   4.104 +#, sh-format
   4.105  msgid "Can't find flavor $FLAVOR. Abort."
   4.106  msgstr "Ne peut trouver la saveur $FLAVOR. Abandon."
   4.107  
   4.108 @@ -395,12 +394,10 @@
   4.109  
   4.110  #: tazpkg:950
   4.111  msgid ""
   4.112 -"Please enter URL of the new mirror (http, ftp or local path). You must "
   4.113 -"specify\n"
   4.114 +"Please enter URL of the new mirror (http, ftp or local path). You must specify\n"
   4.115  "the complete address to the directory of the packages and packages.list file."
   4.116  msgstr ""
   4.117 -"Veuillez entrer l'URL du nouveau miroir (http, ftp ou chemin local). Vous "
   4.118 -"devez spécifier\n"
   4.119 +"Veuillez entrer l'URL du nouveau miroir (http, ftp ou chemin local). Vous devez spécifier\n"
   4.120  "l'adresse complète vers le répertoire des paquets et liste de paquets."
   4.121  
   4.122  #: tazpkg:953
   4.123 @@ -421,68 +418,82 @@
   4.124  msgstr "ATTENTION: dépendance inconnue pour $lib"
   4.125  
   4.126  #: tazpkg:1190
   4.127 -#, fuzzy, sh-format
   4.128 +#, sh-format
   4.129  msgid "$PACKAGE_FILE does not look like a Archlinux/Alpine package !"
   4.130 -msgstr "$PACKAGE_FILE ne semble pas être un paquet Archlinux !"
   4.131 +msgstr "$PACKAGE_FILE ne semble pas être un paquet Archlinux ou Alpine !"
   4.132  
   4.133  #: tazpkg:1241
   4.134  #, sh-format
   4.135  msgid "$PACKAGE_FILE does not look like a Slackware package !"
   4.136  msgstr "$PACKAGE_FILE ne semble pas être un paquet Slackware !"
   4.137  
   4.138 -#: tazpkg:1364 tazpkg:1388
   4.139 +#: tazpkg:1364
   4.140 +#: tazpkg:1388
   4.141  msgid "base-system"
   4.142  msgstr "base-système"
   4.143  
   4.144 -#: tazpkg:1365 tazpkg:1389
   4.145 +#: tazpkg:1365
   4.146 +#: tazpkg:1389
   4.147  msgid "x-window"
   4.148  msgstr "fenêtre-x"
   4.149  
   4.150 -#: tazpkg:1366 tazpkg:1390
   4.151 +#: tazpkg:1366
   4.152 +#: tazpkg:1390
   4.153  msgid "utilities"
   4.154  msgstr "utilitaires"
   4.155  
   4.156 -#: tazpkg:1367 tazpkg:1391
   4.157 +#: tazpkg:1367
   4.158 +#: tazpkg:1391
   4.159  msgid "network"
   4.160  msgstr "réseau"
   4.161  
   4.162 -#: tazpkg:1368 tazpkg:1392
   4.163 +#: tazpkg:1368
   4.164 +#: tazpkg:1392
   4.165  msgid "graphics"
   4.166  msgstr "graphisme"
   4.167  
   4.168 -#: tazpkg:1369 tazpkg:1393
   4.169 +#: tazpkg:1369
   4.170 +#: tazpkg:1393
   4.171  msgid "multimedia"
   4.172  msgstr "multimédia"
   4.173  
   4.174 -#: tazpkg:1370 tazpkg:1394
   4.175 +#: tazpkg:1370
   4.176 +#: tazpkg:1394
   4.177  msgid "office"
   4.178  msgstr "bureautique"
   4.179  
   4.180 -#: tazpkg:1371 tazpkg:1395
   4.181 +#: tazpkg:1371
   4.182 +#: tazpkg:1395
   4.183  msgid "development"
   4.184  msgstr "développement"
   4.185  
   4.186 -#: tazpkg:1372 tazpkg:1396
   4.187 +#: tazpkg:1372
   4.188 +#: tazpkg:1396
   4.189  msgid "system-tools"
   4.190  msgstr "outils-système"
   4.191  
   4.192 -#: tazpkg:1373 tazpkg:1397
   4.193 +#: tazpkg:1373
   4.194 +#: tazpkg:1397
   4.195  msgid "security"
   4.196  msgstr "sécurité"
   4.197  
   4.198 -#: tazpkg:1374 tazpkg:1398
   4.199 +#: tazpkg:1374
   4.200 +#: tazpkg:1398
   4.201  msgid "games"
   4.202  msgstr "jeux"
   4.203  
   4.204 -#: tazpkg:1375 tazpkg:1399
   4.205 +#: tazpkg:1375
   4.206 +#: tazpkg:1399
   4.207  msgid "misc"
   4.208  msgstr "divers"
   4.209  
   4.210 -#: tazpkg:1376 tazpkg:1400
   4.211 +#: tazpkg:1376
   4.212 +#: tazpkg:1400
   4.213  msgid "meta"
   4.214  msgstr "méta"
   4.215  
   4.216 -#: tazpkg:1377 tazpkg:1401
   4.217 +#: tazpkg:1377
   4.218 +#: tazpkg:1401
   4.219  msgid "non-free"
   4.220  msgstr "non-libre"
   4.221  
   4.222 @@ -553,7 +564,8 @@
   4.223  msgid "Generating xHTML footer..."
   4.224  msgstr "Génération du pied XHTML..."
   4.225  
   4.226 -#: tazpkg:1541 tazpkg:2256
   4.227 +#: tazpkg:1541
   4.228 +#: tazpkg:2256
   4.229  msgid "Mirrored packages diff"
   4.230  msgstr "Diff des paquets du miroir"
   4.231  
   4.232 @@ -570,7 +582,8 @@
   4.233  msgid "Recharge your current list to create a first diff."
   4.234  msgstr "Rechargez votre liste actuelle pour créer un premier diff."
   4.235  
   4.236 -#: tazpkg:1556 tazpkg:1561
   4.237 +#: tazpkg:1556
   4.238 +#: tazpkg:1561
   4.239  msgid "List of available packages on the mirror"
   4.240  msgstr "Liste des paquets disponibles sur le miroir."
   4.241  
   4.242 @@ -652,7 +665,8 @@
   4.243  msgid "Search result for:"
   4.244  msgstr "Résulat de recherche pour:"
   4.245  
   4.246 -#: tazpkg:1659 tazpkg:1719
   4.247 +#: tazpkg:1659
   4.248 +#: tazpkg:1719
   4.249  msgid "Please specify a pattern or file name to search for."
   4.250  msgstr "Veuillez spécifier un modèle ou un fichier à rechercher."
   4.251  
   4.252 @@ -660,7 +674,8 @@
   4.253  msgid "Example : 'tazpkg search-file libnss'"
   4.254  msgstr "Exemple : 'tazpkg search-file libnss'"
   4.255  
   4.256 -#: tazpkg:1665 tazpkg:1725
   4.257 +#: tazpkg:1665
   4.258 +#: tazpkg:1725
   4.259  msgid "Search result for file"
   4.260  msgstr "Résultat de recherche pour un fichier"
   4.261  
   4.262 @@ -692,8 +707,7 @@
   4.263  "Please change directory (cd) to the packages repository and specify the\n"
   4.264  "list of packages to install. Example : tazpkg install-list packages.list"
   4.265  msgstr ""
   4.266 -"Veuillez changer de répertoire (cd) vers le dépôt de paquets et spécifier "
   4.267 -"la\n"
   4.268 +"Veuillez changer de répertoire (cd) vers le dépôt de paquets et spécifier la\n"
   4.269  "liste des paquets à installer. Exemple : tazpkg install-list packages.list"
   4.270  
   4.271  #: tazpkg:1805
   4.272 @@ -769,7 +783,8 @@
   4.273  msgid "Extracting:"
   4.274  msgstr "Extraction de:"
   4.275  
   4.276 -#: tazpkg:1987 tazpkg:2004
   4.277 +#: tazpkg:1987
   4.278 +#: tazpkg:2004
   4.279  msgid "Copying original package..."
   4.280  msgstr "Copie du paquet original..."
   4.281  
   4.282 @@ -825,7 +840,8 @@
   4.283  msgid "Package $PACKAGE repacked successfully."
   4.284  msgstr "Paquet $PACKAGE réempaqueter avec succès."
   4.285  
   4.286 -#: tazpkg:2158 tazpkg:2213
   4.287 +#: tazpkg:2158
   4.288 +#: tazpkg:2213
   4.289  msgid "Size"
   4.290  msgstr "Taille"
   4.291  
   4.292 @@ -885,10 +901,8 @@
   4.293  "list, a list of differences will be displayed to show new and upgradeable\n"
   4.294  "packages."
   4.295  msgstr ""
   4.296 -"La dernière liste des paquets est prête à être utilisée. Notez qu'à la "
   4.297 -"prochaine\n"
   4.298 -"recharge, une liste des différences sera affichée pour vous montrer les "
   4.299 -"nouveaux\n"
   4.300 +"La dernière liste des paquets est prête à être utilisée. Notez qu'à la prochaine\n"
   4.301 +"recharge, une liste des différences sera affichée pour vous montrer les nouveaux\n"
   4.302  "paquets et les mises à jour disponibles."
   4.303  
   4.304  #: tazpkg:2308
   4.305 @@ -897,13 +911,14 @@
   4.306  
   4.307  #: tazpkg:2352
   4.308  msgid "build"
   4.309 -msgstr ""
   4.310 +msgstr "build"
   4.311  
   4.312  #: tazpkg:2363
   4.313  msgid "minor"
   4.314  msgstr "mineur"
   4.315  
   4.316 -#: tazpkg:2366 tazpkg:2375
   4.317 +#: tazpkg:2366
   4.318 +#: tazpkg:2375
   4.319  msgid "WARNING"
   4.320  msgstr "ATTENTION"
   4.321  
   4.322 @@ -917,11 +932,8 @@
   4.323  
   4.324  #: tazpkg:2406
   4.325  #, sh-format
   4.326 -msgid ""
   4.327 -"$packages installed and listed packages to consider, $up to upgrade, "
   4.328 -"$blocked blocked."
   4.329 -msgstr ""
   4.330 -"$packages paquets installés et listés, $up à mettre à jour, $blocked bloqués."
   4.331 +msgid "$packages installed and listed packages to consider, $up to upgrade, $blocked blocked."
   4.332 +msgstr "$packages paquets installés et listés, $up à mettre à jour, $blocked bloqués."
   4.333  
   4.334  #: tazpkg:2409
   4.335  msgid "System is up-to-date."
   4.336 @@ -929,21 +941,16 @@
   4.337  
   4.338  #: tazpkg:2412
   4.339  #, sh-format
   4.340 -msgid ""
   4.341 -"$packages installed and listed packages to consider, 0 to upgrade, $blocked "
   4.342 -"blocked."
   4.343 -msgstr ""
   4.344 -"$packages paquets installés et listés, 0 à mettre à jour, $blocked bloqués."
   4.345 +msgid "$packages installed and listed packages to consider, 0 to upgrade, $blocked blocked."
   4.346 +msgstr "$packages paquets installés et listés, 0 à mettre à jour, $blocked bloqués."
   4.347  
   4.348  #: tazpkg:2419
   4.349 -#, fuzzy
   4.350  msgid ""
   4.351  "WARNING ---> Installed package(s) seem(s) more recent than the mirrored\n"
   4.352  "one. You can block packages using the command : 'tazpkg block package'.\n"
   4.353  "Or upgrade packages at your own risk."
   4.354  msgstr ""
   4.355 -"ATTENTION ---> Le paquet installé semble être plus récent que celui du "
   4.356 -"miroir.\n"
   4.357 +"ATTENTION ---> Le paquet installé semble être plus récent que celui du miroir.\n"
   4.358  "Vous pouvez bloquer la paquet avec la commande: 'tazpkg block package'.\n"
   4.359  "Ou mettre à jour à vos risques."
   4.360  
   4.361 @@ -1136,7 +1143,7 @@
   4.362  msgstr "Lier toutes les dépendance manquantes"
   4.363  
   4.364  #: tazpkg:2878
   4.365 -#, fuzzy, sh-format
   4.366 +#, sh-format
   4.367  msgid "Leaving dependencies for $PACKAGE unresolved."
   4.368  msgstr "Les dépendance pour $PACKAGE ne seront pas résolue."
   4.369  
     5.1 --- a/po/tazpkg/tazpkg.pot	Fri Apr 08 17:58:27 2011 +0200
     5.2 +++ b/po/tazpkg/tazpkg.pot	Fri Apr 08 18:26:26 2011 +0200
     5.3 @@ -6,9 +6,9 @@
     5.4  #, fuzzy
     5.5  msgid ""
     5.6  msgstr ""
     5.7 -"Project-Id-Version: Tazpkg 4.3\n"
     5.8 +"Project-Id-Version: Tazpkg 4.6\n"
     5.9  "Report-Msgid-Bugs-To: \n"
    5.10 -"POT-Creation-Date: 2011-04-06 01:31+0200\n"
    5.11 +"POT-Creation-Date: 2011-04-08 18:25+0200\n"
    5.12  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    5.13  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
    5.14  "Language-Team: LANGUAGE <LL@li.org>\n"
    5.15 @@ -17,1095 +17,1172 @@
    5.16  "Content-Type: text/plain; charset=CHARSET\n"
    5.17  "Content-Transfer-Encoding: 8bit\n"
    5.18  
    5.19 -#: tazpkg:86
    5.20 +#: tazpkg:87
    5.21  msgid "SliTaz package manager - Version"
    5.22  msgstr ""
    5.23  
    5.24 -#: tazpkg:87
    5.25 +#: tazpkg:88
    5.26  msgid "Usage"
    5.27  msgstr ""
    5.28  
    5.29 -#: tazpkg:87
    5.30 +#: tazpkg:88
    5.31  msgid "tazpkg [command] [package|dir|pattern|list|cat|--opt] [dir|--opt]"
    5.32  msgstr ""
    5.33  
    5.34 -#: tazpkg:89
    5.35 +#: tazpkg:90
    5.36  msgid "Commands"
    5.37  msgstr ""
    5.38  
    5.39 -#: tazpkg:90
    5.40 +#: tazpkg:91
    5.41  msgid "Print this short usage."
    5.42  msgstr ""
    5.43  
    5.44 -#: tazpkg:91
    5.45 +#: tazpkg:92
    5.46  msgid "Show known bugs in packages."
    5.47  msgstr ""
    5.48  
    5.49 -#: tazpkg:92
    5.50 +#: tazpkg:93
    5.51  msgid "List installed packages on the system by category or all."
    5.52  msgstr ""
    5.53  
    5.54 -#: tazpkg:93
    5.55 +#: tazpkg:94
    5.56  msgid "Create a xHTML list of installed packages."
    5.57  msgstr ""
    5.58  
    5.59 -#: tazpkg:94
    5.60 +#: tazpkg:95
    5.61  msgid "List all available packages on the mirror (--diff for new)."
    5.62  msgstr ""
    5.63  
    5.64 -#: tazpkg:95
    5.65 +#: tazpkg:96
    5.66  msgid "Print information about a package."
    5.67  msgstr ""
    5.68  
    5.69 -#: tazpkg:96
    5.70 +#: tazpkg:97
    5.71  msgid "Print description of a package (if it exists)."
    5.72  msgstr ""
    5.73  
    5.74 -#: tazpkg:97
    5.75 +#: tazpkg:98
    5.76  msgid "List the files installed with a package."
    5.77  msgstr ""
    5.78  
    5.79 -#: tazpkg:98
    5.80 +#: tazpkg:99
    5.81  msgid "List the configuration files."
    5.82  msgstr ""
    5.83  
    5.84 -#: tazpkg:99
    5.85 +#: tazpkg:100
    5.86  msgid "Search for a package by pattern or name (options: -i|-l|-m)."
    5.87  msgstr ""
    5.88  
    5.89 -#: tazpkg:100
    5.90 +#: tazpkg:101
    5.91  msgid "Search on mirror for package having a particular file."
    5.92  msgstr ""
    5.93  
    5.94 -#: tazpkg:101
    5.95 +#: tazpkg:102
    5.96  msgid "Search for file(s) in all installed packages files."
    5.97  msgstr ""
    5.98  
    5.99 -#: tazpkg:102
   5.100 +#: tazpkg:103
   5.101  msgid "Install a local (*.tazpkg) package (--forced to force)."
   5.102  msgstr ""
   5.103  
   5.104 -#: tazpkg:103
   5.105 +#: tazpkg:104
   5.106  msgid "Install all packages from a list of packages."
   5.107  msgstr ""
   5.108  
   5.109 -#: tazpkg:104
   5.110 +#: tazpkg:105
   5.111  msgid "Remove the specified package and all installed files."
   5.112  msgstr ""
   5.113  
   5.114 -#: tazpkg:105
   5.115 +#: tazpkg:106
   5.116  msgid "Extract a (*.tazpkg) package into a directory."
   5.117  msgstr ""
   5.118  
   5.119 -#: tazpkg:106
   5.120 +#: tazpkg:107
   5.121  msgid "Pack an unpacked or prepared package tree."
   5.122  msgstr ""
   5.123  
   5.124 -#: tazpkg:107
   5.125 +#: tazpkg:108
   5.126  msgid "Recharge your packages.list from the mirror."
   5.127  msgstr ""
   5.128  
   5.129 -#: tazpkg:108
   5.130 +#: tazpkg:109
   5.131 +msgid "Check packges md5sum to list and install latest upgrade."
   5.132 +msgstr ""
   5.133 +
   5.134 +#: tazpkg:110
   5.135  msgid "Create a package archive from an installed package."
   5.136  msgstr ""
   5.137  
   5.138 -#: tazpkg:109
   5.139 +#: tazpkg:111
   5.140  msgid "Create a package archive with configuration files."
   5.141  msgstr ""
   5.142  
   5.143 -#: tazpkg:110
   5.144 +#: tazpkg:112
   5.145  msgid "Rebuild a package with a better compression ratio."
   5.146  msgstr ""
   5.147  
   5.148 -#: tazpkg:111
   5.149 -msgid "Upgrade one or all installed/listed package(s) on the mirror."
   5.150 +#: tazpkg:113
   5.151 +msgid "Upgrade one or all installed package(s) (obsolete)."
   5.152  msgstr ""
   5.153  
   5.154 -#: tazpkg:112
   5.155 -msgid "Build upgradeable packages list quickly."
   5.156 +#: tazpkg:114
   5.157 +msgid "Build upgradeable packages list quickly. (buggy)"
   5.158  msgstr ""
   5.159  
   5.160 -#: tazpkg:113
   5.161 +#: tazpkg:115
   5.162  msgid "Block an installed package version or unblock it for upgrade."
   5.163  msgstr ""
   5.164  
   5.165 -#: tazpkg:114
   5.166 +#: tazpkg:116
   5.167  msgid "Download a package into the current directory."
   5.168  msgstr ""
   5.169  
   5.170 -#: tazpkg:115
   5.171 +#: tazpkg:117
   5.172  msgid "Download and install a package from the mirror."
   5.173  msgstr ""
   5.174  
   5.175 -#: tazpkg:116
   5.176 +#: tazpkg:118
   5.177  msgid "Download and install a list of packages from the mirror."
   5.178  msgstr ""
   5.179  
   5.180 -#: tazpkg:117
   5.181 +#: tazpkg:119
   5.182  msgid "Verify consistency of installed packages."
   5.183  msgstr ""
   5.184  
   5.185 -#: tazpkg:118
   5.186 +#: tazpkg:120
   5.187  msgid "Install the flavor list of packages."
   5.188  msgstr ""
   5.189  
   5.190 -#: tazpkg:119
   5.191 +#: tazpkg:121
   5.192  msgid "Install the flavor list of packages and remove other ones."
   5.193  msgstr ""
   5.194  
   5.195 -#: tazpkg:120
   5.196 +#: tazpkg:122
   5.197  msgid "Change release and update packages."
   5.198  msgstr ""
   5.199  
   5.200 -#: tazpkg:121
   5.201 +#: tazpkg:123
   5.202  msgid "Clean all packages downloaded in cache directory."
   5.203  msgstr ""
   5.204  
   5.205 -#: tazpkg:122
   5.206 +#: tazpkg:124
   5.207  msgid "Display dependencies tree."
   5.208  msgstr ""
   5.209  
   5.210 -#: tazpkg:123
   5.211 +#: tazpkg:125
   5.212  msgid "Display reverse dependencies tree."
   5.213  msgstr ""
   5.214  
   5.215 -#: tazpkg:124
   5.216 +#: tazpkg:126
   5.217  msgid "Convert a deb/rpm/tgz/arch package to a slitaz (.tazpkg)."
   5.218  msgstr ""
   5.219  
   5.220 -#: tazpkg:125
   5.221 +#: tazpkg:127
   5.222  msgid "Link a package from another slitaz installation."
   5.223  msgstr ""
   5.224  
   5.225 -#: tazpkg:126
   5.226 +#: tazpkg:128
   5.227  msgid "Change the mirror url configuration."
   5.228  msgstr ""
   5.229  
   5.230 -#: tazpkg:127
   5.231 +#: tazpkg:129
   5.232  msgid "List undigest mirrors."
   5.233  msgstr ""
   5.234  
   5.235 -#: tazpkg:128
   5.236 +#: tazpkg:130
   5.237  msgid "Remove an undigest mirror."
   5.238  msgstr ""
   5.239  
   5.240 -#: tazpkg:129
   5.241 +#: tazpkg:131
   5.242  msgid "Add an undigest mirror."
   5.243  msgstr ""
   5.244  
   5.245 -#: tazpkg:130
   5.246 +#: tazpkg:132
   5.247  msgid "Update an undigest mirror."
   5.248  msgstr ""
   5.249  
   5.250 -#: tazpkg:131
   5.251 +#: tazpkg:133
   5.252  msgid "Replay post install script from package."
   5.253  msgstr ""
   5.254  
   5.255 +#: tazpkg:138
   5.256 +msgid "Tazpkg usage for command up"
   5.257 +msgstr ""
   5.258 +
   5.259 +#: tazpkg:138
   5.260 +msgid "tazpkg up [--option]"
   5.261 +msgstr ""
   5.262 +
   5.263  #: tazpkg:139
   5.264 +msgid "Without options run in interactive mode and ask before install"
   5.265 +msgstr ""
   5.266 +
   5.267 +#: tazpkg:141
   5.268 +msgid "Where options are"
   5.269 +msgstr ""
   5.270 +
   5.271 +#: tazpkg:142
   5.272 +msgid "Check only for avalaible upgrade"
   5.273 +msgstr ""
   5.274 +
   5.275 +#: tazpkg:143
   5.276 +msgid "Force recharge of packages list and check"
   5.277 +msgstr ""
   5.278 +
   5.279 +#: tazpkg:144
   5.280 +msgid "Check for upgrade and install them all"
   5.281 +msgstr ""
   5.282 +
   5.283 +#: tazpkg:146
   5.284 +msgid "Example"
   5.285 +msgstr ""
   5.286 +
   5.287 +#: tazpkg:161
   5.288  msgid "Please specify a package name on the command line."
   5.289  msgstr ""
   5.290  
   5.291 -#: tazpkg:150
   5.292 +#: tazpkg:172
   5.293  #, sh-format
   5.294  msgid "Unable to find: $PACKAGE_FILE"
   5.295  msgstr ""
   5.296  
   5.297 -#: tazpkg:161
   5.298 +#: tazpkg:183
   5.299  #, sh-format
   5.300  msgid "Unable to find the receipt: $FS$INSTALLED/$PACKAGE/receipt"
   5.301  msgstr ""
   5.302  
   5.303 -#: tazpkg:214
   5.304 +#: tazpkg:236
   5.305  #, sh-format
   5.306  msgid ""
   5.307  "$PACKAGE package is already installed. You can\n"
   5.308  "use the --forced option to force installation or remove it and reinstall."
   5.309  msgstr ""
   5.310  
   5.311 -#: tazpkg:228
   5.312 +#: tazpkg:250
   5.313  #, sh-format
   5.314  msgid "Unable to find the list: $LOCALSTATE/packages.list"
   5.315  msgstr ""
   5.316  
   5.317 -#: tazpkg:230
   5.318 +#: tazpkg:252
   5.319  msgid ""
   5.320  "You must probably run 'tazpkg recharge' as root to get the latest list of\n"
   5.321  "packages available on the mirror."
   5.322  msgstr ""
   5.323  
   5.324 -#: tazpkg:347
   5.325 +#: tazpkg:369
   5.326  #, sh-format
   5.327  msgid "Unable to find: $PACKAGE in the mirrored packages list."
   5.328  msgstr ""
   5.329  
   5.330 -#: tazpkg:401
   5.331 +#: tazpkg:423
   5.332  #, sh-format
   5.333  msgid "Extracting $PACKAGE... "
   5.334  msgstr ""
   5.335  
   5.336 -#: tazpkg:405 tazpkg:410
   5.337 +#: tazpkg:427 tazpkg:432
   5.338  msgid "Extracting the pseudo fs... "
   5.339  msgstr ""
   5.340  
   5.341 -#: tazpkg:474
   5.342 +#: tazpkg:496
   5.343  msgid "Installation of :"
   5.344  msgstr ""
   5.345  
   5.346 -#: tazpkg:476
   5.347 +#: tazpkg:498
   5.348  #, sh-format
   5.349  msgid "Copying $PACKAGE... "
   5.350  msgstr ""
   5.351  
   5.352 -#: tazpkg:488
   5.353 +#: tazpkg:510
   5.354  msgid "Checking post install dependencies... "
   5.355  msgstr ""
   5.356  
   5.357 -#: tazpkg:491
   5.358 +#: tazpkg:513
   5.359  #, sh-format
   5.360  msgid "Please run 'tazpkg install $PACKAGE_FILE' in / and retry."
   5.361  msgstr ""
   5.362  
   5.363 -#: tazpkg:565
   5.364 +#: tazpkg:587
   5.365  #, sh-format
   5.366  msgid "Saving configuration files for $PACKAGE... "
   5.367  msgstr ""
   5.368  
   5.369 -#: tazpkg:579
   5.370 +#: tazpkg:601
   5.371  #, sh-format
   5.372  msgid "Installing $PACKAGE... "
   5.373  msgstr ""
   5.374  
   5.375 -#: tazpkg:583
   5.376 +#: tazpkg:605
   5.377  #, sh-format
   5.378  msgid "Removing old $PACKAGE... "
   5.379  msgstr ""
   5.380  
   5.381 -#: tazpkg:591
   5.382 +#: tazpkg:613
   5.383  msgid "Removing all tmp files... "
   5.384  msgstr ""
   5.385  
   5.386 -#: tazpkg:608
   5.387 +#: tazpkg:630
   5.388  #, sh-format
   5.389  msgid "$PACKAGE ($VERSION$EXTRAVERSION) is installed."
   5.390  msgstr ""
   5.391  
   5.392 -#: tazpkg:659
   5.393 +#: tazpkg:681
   5.394  #, sh-format
   5.395  msgid "WARNING Dependency loop between $PACKAGE and $i."
   5.396  msgstr ""
   5.397  
   5.398 -#: tazpkg:663
   5.399 +#: tazpkg:685
   5.400  msgid "Tracking dependencies for :"
   5.401  msgstr ""
   5.402  
   5.403 -#: tazpkg:670
   5.404 +#: tazpkg:692
   5.405  #, sh-format
   5.406  msgid "Missing: $MISSING_PACKAGE"
   5.407  msgstr ""
   5.408  
   5.409 -#: tazpkg:674
   5.410 +#: tazpkg:696
   5.411  #, sh-format
   5.412  msgid "$deps missing package(s) to install."
   5.413  msgstr ""
   5.414  
   5.415 -#: tazpkg:690
   5.416 +#: tazpkg:712
   5.417  msgid "Install all missing dependencies"
   5.418  msgstr ""
   5.419  
   5.420 -#: tazpkg:707
   5.421 +#: tazpkg:729
   5.422  #, sh-format
   5.423  msgid "Checking if $pkg exists in local list... "
   5.424  msgstr ""
   5.425  
   5.426 -#: tazpkg:734
   5.427 +#: tazpkg:756
   5.428  #, sh-format
   5.429  msgid ""
   5.430  "Leaving dependencies for $PACKAGE unresolved. The package is installed but\n"
   5.431  "will probably not work."
   5.432  msgstr ""
   5.433  
   5.434 -#: tazpkg:811
   5.435 +#: tazpkg:832
   5.436  msgid "Installed packages"
   5.437  msgstr ""
   5.438  
   5.439 -#: tazpkg:826
   5.440 +#: tazpkg:847
   5.441  #, sh-format
   5.442  msgid "0 installed packages found for : $PATTERN"
   5.443  msgstr ""
   5.444  
   5.445 -#: tazpkg:830
   5.446 +#: tazpkg:851
   5.447  #, sh-format
   5.448  msgid "$packages installed package(s) found for : $PATTERN"
   5.449  msgstr ""
   5.450  
   5.451 -#: tazpkg:838
   5.452 +#: tazpkg:859
   5.453  msgid "Available packages name-version"
   5.454  msgstr ""
   5.455  
   5.456 -#: tazpkg:848
   5.457 +#: tazpkg:869
   5.458  msgid ""
   5.459  "No 'packages.list' found to check for mirrored packages. For more results,\n"
   5.460  "please run 'tazpkg recharge' once as root before searching."
   5.461  msgstr ""
   5.462  
   5.463 -#: tazpkg:853 tazpkg:881
   5.464 +#: tazpkg:874 tazpkg:902
   5.465  #, sh-format
   5.466  msgid "0 available packages found for : $PATTERN"
   5.467  msgstr ""
   5.468  
   5.469 -#: tazpkg:857 tazpkg:885
   5.470 +#: tazpkg:878 tazpkg:906
   5.471  #, sh-format
   5.472  msgid "$packages available package(s) found for : $PATTERN"
   5.473  msgstr ""
   5.474  
   5.475 -#: tazpkg:866
   5.476 +#: tazpkg:887
   5.477  msgid "Matching packages name with version and desc"
   5.478  msgstr ""
   5.479  
   5.480 -#: tazpkg:876
   5.481 +#: tazpkg:897
   5.482  msgid ""
   5.483  "No 'packages.txt' found to check for mirrored packages. For more results,\n"
   5.484  "please run 'tazpkg recharge' once as root before searching."
   5.485  msgstr ""
   5.486  
   5.487 -#: tazpkg:932
   5.488 +#: tazpkg:953
   5.489  #, sh-format
   5.490  msgid "Can't find flavor $FLAVOR. Abort."
   5.491  msgstr ""
   5.492  
   5.493 -#: tazpkg:946
   5.494 +#: tazpkg:967
   5.495  msgid "Current mirror(s)"
   5.496  msgstr ""
   5.497  
   5.498 -#: tazpkg:950
   5.499 +#: tazpkg:971
   5.500  msgid ""
   5.501  "Please enter URL of the new mirror (http, ftp or local path). You must "
   5.502  "specify\n"
   5.503  "the complete address to the directory of the packages and packages.list file."
   5.504  msgstr ""
   5.505  
   5.506 -#: tazpkg:953
   5.507 +#: tazpkg:974
   5.508  msgid "New mirror(s) URL : "
   5.509  msgstr ""
   5.510  
   5.511 -#: tazpkg:961
   5.512 +#: tazpkg:982
   5.513  msgid "Nothing has been changed."
   5.514  msgstr ""
   5.515  
   5.516 -#: tazpkg:1084
   5.517 +#: tazpkg:1105
   5.518  msgid "No dependency for"
   5.519  msgstr ""
   5.520  
   5.521 -#: tazpkg:1086
   5.522 +#: tazpkg:1107
   5.523  #, sh-format
   5.524  msgid "WARNING: unknown dependency for $lib"
   5.525  msgstr ""
   5.526  
   5.527 -#: tazpkg:1190
   5.528 +#: tazpkg:1211
   5.529  #, sh-format
   5.530  msgid "$PACKAGE_FILE does not look like a Archlinux/Alpine package !"
   5.531  msgstr ""
   5.532  
   5.533 -#: tazpkg:1241
   5.534 +#: tazpkg:1262
   5.535  #, sh-format
   5.536  msgid "$PACKAGE_FILE does not look like a Slackware package !"
   5.537  msgstr ""
   5.538  
   5.539 -#: tazpkg:1364 tazpkg:1388
   5.540 +#: tazpkg:1385 tazpkg:1409
   5.541  msgid "base-system"
   5.542  msgstr ""
   5.543  
   5.544 -#: tazpkg:1365 tazpkg:1389
   5.545 +#: tazpkg:1386 tazpkg:1410
   5.546  msgid "x-window"
   5.547  msgstr ""
   5.548  
   5.549 -#: tazpkg:1366 tazpkg:1390
   5.550 +#: tazpkg:1387 tazpkg:1411
   5.551  msgid "utilities"
   5.552  msgstr ""
   5.553  
   5.554 -#: tazpkg:1367 tazpkg:1391
   5.555 +#: tazpkg:1388 tazpkg:1412
   5.556  msgid "network"
   5.557  msgstr ""
   5.558  
   5.559 -#: tazpkg:1368 tazpkg:1392
   5.560 +#: tazpkg:1389 tazpkg:1413
   5.561  msgid "graphics"
   5.562  msgstr ""
   5.563  
   5.564 -#: tazpkg:1369 tazpkg:1393
   5.565 +#: tazpkg:1390 tazpkg:1414
   5.566  msgid "multimedia"
   5.567  msgstr ""
   5.568  
   5.569 -#: tazpkg:1370 tazpkg:1394
   5.570 +#: tazpkg:1391 tazpkg:1415
   5.571  msgid "office"
   5.572  msgstr ""
   5.573  
   5.574 -#: tazpkg:1371 tazpkg:1395
   5.575 +#: tazpkg:1392 tazpkg:1416
   5.576  msgid "development"
   5.577  msgstr ""
   5.578  
   5.579 -#: tazpkg:1372 tazpkg:1396
   5.580 +#: tazpkg:1393 tazpkg:1417
   5.581  msgid "system-tools"
   5.582  msgstr ""
   5.583  
   5.584 -#: tazpkg:1373 tazpkg:1397
   5.585 +#: tazpkg:1394 tazpkg:1418
   5.586  msgid "security"
   5.587  msgstr ""
   5.588  
   5.589 -#: tazpkg:1374 tazpkg:1398
   5.590 +#: tazpkg:1395 tazpkg:1419
   5.591  msgid "games"
   5.592  msgstr ""
   5.593  
   5.594 -#: tazpkg:1375 tazpkg:1399
   5.595 +#: tazpkg:1396 tazpkg:1420
   5.596  msgid "misc"
   5.597  msgstr ""
   5.598  
   5.599 -#: tazpkg:1376 tazpkg:1400
   5.600 +#: tazpkg:1397 tazpkg:1421
   5.601  msgid "meta"
   5.602  msgstr ""
   5.603  
   5.604 -#: tazpkg:1377 tazpkg:1401
   5.605 +#: tazpkg:1398 tazpkg:1422
   5.606  msgid "non-free"
   5.607  msgstr ""
   5.608  
   5.609 -#: tazpkg:1414
   5.610 +#: tazpkg:1435
   5.611  msgid "y"
   5.612  msgstr ""
   5.613  
   5.614 -#: tazpkg:1415
   5.615 +#: tazpkg:1436
   5.616  msgid "Y"
   5.617  msgstr ""
   5.618  
   5.619 -#: tazpkg:1416
   5.620 +#: tazpkg:1437
   5.621  msgid "n"
   5.622  msgstr ""
   5.623  
   5.624 -#: tazpkg:1417
   5.625 +#: tazpkg:1438
   5.626  msgid "N"
   5.627  msgstr ""
   5.628  
   5.629 -#: tazpkg:1436
   5.630 +#: tazpkg:1457
   5.631  msgid "Blocked packages"
   5.632  msgstr ""
   5.633  
   5.634 -#: tazpkg:1441
   5.635 +#: tazpkg:1462
   5.636  msgid "No blocked packages found."
   5.637  msgstr ""
   5.638  
   5.639 -#: tazpkg:1448
   5.640 +#: tazpkg:1469
   5.641  msgid "Packages categories"
   5.642  msgstr ""
   5.643  
   5.644 -#: tazpkg:1456
   5.645 +#: tazpkg:1477
   5.646  #, sh-format
   5.647  msgid "$categories categories"
   5.648  msgstr ""
   5.649  
   5.650 -#: tazpkg:1465
   5.651 +#: tazpkg:1486
   5.652  msgid "Installed packages of category:"
   5.653  msgstr ""
   5.654  
   5.655 -#: tazpkg:1479
   5.656 +#: tazpkg:1500
   5.657  #, sh-format
   5.658  msgid "$packages packages installed of category $ASKED_CATEGORY_I18N."
   5.659  msgstr ""
   5.660  
   5.661 -#: tazpkg:1484
   5.662 +#: tazpkg:1505
   5.663  msgid "List of all installed packages"
   5.664  msgstr ""
   5.665  
   5.666 -#: tazpkg:1497
   5.667 +#: tazpkg:1518
   5.668  #, sh-format
   5.669  msgid "$packages packages installed."
   5.670  msgstr ""
   5.671  
   5.672 -#: tazpkg:1509
   5.673 +#: tazpkg:1530
   5.674  msgid "Creating xHTML list of installed packages"
   5.675  msgstr ""
   5.676  
   5.677 -#: tazpkg:1511
   5.678 +#: tazpkg:1532
   5.679  msgid "Generating xHTML header..."
   5.680  msgstr ""
   5.681  
   5.682 -#: tazpkg:1515
   5.683 +#: tazpkg:1536
   5.684  msgid "Creating packages information..."
   5.685  msgstr ""
   5.686  
   5.687 -#: tazpkg:1525
   5.688 +#: tazpkg:1546
   5.689  msgid "Generating xHTML footer..."
   5.690  msgstr ""
   5.691  
   5.692 -#: tazpkg:1541 tazpkg:2256
   5.693 +#: tazpkg:1562 tazpkg:2327
   5.694  msgid "Mirrored packages diff"
   5.695  msgstr ""
   5.696  
   5.697 -#: tazpkg:1546
   5.698 +#: tazpkg:1567
   5.699  #, sh-format
   5.700  msgid "$pkgs new packages listed on the mirror."
   5.701  msgstr ""
   5.702  
   5.703 -#: tazpkg:1550
   5.704 +#: tazpkg:1571
   5.705  msgid "Unable to list anything, no packages.diff found."
   5.706  msgstr ""
   5.707  
   5.708 -#: tazpkg:1551
   5.709 +#: tazpkg:1572
   5.710  msgid "Recharge your current list to create a first diff."
   5.711  msgstr ""
   5.712  
   5.713 -#: tazpkg:1556 tazpkg:1561
   5.714 +#: tazpkg:1577 tazpkg:1582
   5.715  msgid "List of available packages on the mirror"
   5.716  msgstr ""
   5.717  
   5.718 -#: tazpkg:1567
   5.719 +#: tazpkg:1588
   5.720  #, sh-format
   5.721  msgid "$pkgs packages in the last recharged list."
   5.722  msgstr ""
   5.723  
   5.724 -#: tazpkg:1575
   5.725 +#: tazpkg:1596
   5.726  msgid "Installed files with:"
   5.727  msgstr ""
   5.728  
   5.729 -#: tazpkg:1580
   5.730 +#: tazpkg:1601
   5.731  #, sh-format
   5.732  msgid "$files files installed with $PACKAGE."
   5.733  msgstr ""
   5.734  
   5.735 -#: tazpkg:1590
   5.736 +#: tazpkg:1611
   5.737  msgid "Tazpkg information"
   5.738  msgstr ""
   5.739  
   5.740 -#: tazpkg:1592
   5.741 +#: tazpkg:1613
   5.742  msgid "Package    :"
   5.743  msgstr ""
   5.744  
   5.745 -#: tazpkg:1593
   5.746 +#: tazpkg:1614
   5.747  msgid "Version    :"
   5.748  msgstr ""
   5.749  
   5.750 -#: tazpkg:1594
   5.751 +#: tazpkg:1615
   5.752  msgid "Category   :"
   5.753  msgstr ""
   5.754  
   5.755 -#: tazpkg:1595
   5.756 +#: tazpkg:1616
   5.757  msgid "Short desc :"
   5.758  msgstr ""
   5.759  
   5.760 -#: tazpkg:1596
   5.761 +#: tazpkg:1617
   5.762  msgid "Maintainer :"
   5.763  msgstr ""
   5.764  
   5.765 -#: tazpkg:1598
   5.766 +#: tazpkg:1619
   5.767  msgid "Depends    :"
   5.768  msgstr ""
   5.769  
   5.770 -#: tazpkg:1601
   5.771 +#: tazpkg:1622
   5.772  msgid "Suggested  :"
   5.773  msgstr ""
   5.774  
   5.775 -#: tazpkg:1604
   5.776 +#: tazpkg:1625
   5.777  msgid "Build deps :"
   5.778  msgstr ""
   5.779  
   5.780 -#: tazpkg:1607
   5.781 +#: tazpkg:1628
   5.782  msgid "Wanted src :"
   5.783  msgstr ""
   5.784  
   5.785 -#: tazpkg:1610
   5.786 +#: tazpkg:1631
   5.787  msgid "Web site   :"
   5.788  msgstr ""
   5.789  
   5.790 -#: tazpkg:1618
   5.791 +#: tazpkg:1639
   5.792  msgid "Description of:"
   5.793  msgstr ""
   5.794  
   5.795 -#: tazpkg:1625
   5.796 +#: tazpkg:1646
   5.797  msgid "Sorry, no description available for this package."
   5.798  msgstr ""
   5.799  
   5.800 -#: tazpkg:1634
   5.801 +#: tazpkg:1655
   5.802  msgid "Please specify a pattern or package name to search for."
   5.803  msgstr ""
   5.804  
   5.805 -#: tazpkg:1635
   5.806 +#: tazpkg:1656
   5.807  msgid "Example : 'tazpkg search paint'"
   5.808  msgstr ""
   5.809  
   5.810 -#: tazpkg:1640
   5.811 +#: tazpkg:1661
   5.812  msgid "Search result for:"
   5.813  msgstr ""
   5.814  
   5.815 -#: tazpkg:1659 tazpkg:1719
   5.816 +#: tazpkg:1680 tazpkg:1740
   5.817  msgid "Please specify a pattern or file name to search for."
   5.818  msgstr ""
   5.819  
   5.820 -#: tazpkg:1660
   5.821 +#: tazpkg:1681
   5.822  msgid "Example : 'tazpkg search-file libnss'"
   5.823  msgstr ""
   5.824  
   5.825 -#: tazpkg:1665 tazpkg:1725
   5.826 +#: tazpkg:1686 tazpkg:1746
   5.827  msgid "Search result for file"
   5.828  msgstr ""
   5.829  
   5.830 -#: tazpkg:1697
   5.831 +#: tazpkg:1718 tazpkg:2374
   5.832  msgid "Package"
   5.833  msgstr ""
   5.834  
   5.835 -#: tazpkg:1707
   5.836 +#: tazpkg:1728
   5.837  #, sh-format
   5.838  msgid "0 file found for: $pkg"
   5.839  msgstr ""
   5.840  
   5.841 -#: tazpkg:1712
   5.842 +#: tazpkg:1733
   5.843  #, sh-format
   5.844  msgid "$match file(s) found for: $pkg"
   5.845  msgstr ""
   5.846  
   5.847 -#: tazpkg:1720
   5.848 +#: tazpkg:1741
   5.849  msgid "Example : 'tazpkg search-pkgname libnss'"
   5.850  msgstr ""
   5.851  
   5.852 -#: tazpkg:1738
   5.853 +#: tazpkg:1759
   5.854  #, sh-format
   5.855  msgid "0 file found for : $file"
   5.856  msgstr ""
   5.857  
   5.858 -#: tazpkg:1775
   5.859 +#: tazpkg:1798
   5.860  msgid ""
   5.861  "Please change directory (cd) to the packages repository and specify the\n"
   5.862  "list of packages to install. Example : tazpkg install-list packages.list"
   5.863  msgstr ""
   5.864  
   5.865 -#: tazpkg:1805
   5.866 +#: tazpkg:1828
   5.867  #, sh-format
   5.868  msgid "Adding implicit depends $pkg ..."
   5.869  msgstr ""
   5.870  
   5.871 -#: tazpkg:1830
   5.872 +#: tazpkg:1853
   5.873  msgid "Please specify the release you want on the command line."
   5.874  msgstr ""
   5.875  
   5.876 -#: tazpkg:1831
   5.877 +#: tazpkg:1854
   5.878  msgid "Example: tazpkg set-release cooking"
   5.879  msgstr ""
   5.880  
   5.881 -#: tazpkg:1858
   5.882 +#: tazpkg:1881
   5.883  #, sh-format
   5.884  msgid "$PACKAGE is not installed."
   5.885  msgstr ""
   5.886  
   5.887 -#: tazpkg:1876
   5.888 +#: tazpkg:1899
   5.889  #, sh-format
   5.890  msgid "The following packages depend on $PACKAGE:"
   5.891  msgstr ""
   5.892  
   5.893 -#: tazpkg:1883
   5.894 +#: tazpkg:1906
   5.895  #, sh-format
   5.896  msgid "The following packages have been modified by $PACKAGE:"
   5.897  msgstr ""
   5.898  
   5.899 -#: tazpkg:1891
   5.900 +#: tazpkg:1914
   5.901  #, sh-format
   5.902  msgid "Remove $PACKAGE ($VERSION$EXTRAVERSION) ?"
   5.903  msgstr ""
   5.904  
   5.905 -#: tazpkg:1892
   5.906 +#: tazpkg:1915
   5.907  msgid "Please confirm uninstallation"
   5.908  msgstr ""
   5.909  
   5.910 -#: tazpkg:1897
   5.911 +#: tazpkg:1920
   5.912  msgid "Removing:"
   5.913  msgstr ""
   5.914  
   5.915 -#: tazpkg:1903
   5.916 +#: tazpkg:1926
   5.917  msgid "Removing all files installed..."
   5.918  msgstr ""
   5.919  
   5.920 -#: tazpkg:1924
   5.921 +#: tazpkg:1947
   5.922  msgid "Removing package receipt..."
   5.923  msgstr ""
   5.924  
   5.925 -#: tazpkg:1935
   5.926 +#: tazpkg:1958
   5.927  #, sh-format
   5.928  msgid "Remove packages depending on $PACKAGE"
   5.929  msgstr ""
   5.930  
   5.931 -#: tazpkg:1951
   5.932 +#: tazpkg:1974
   5.933  #, sh-format
   5.934  msgid "Reinstall packages modified by $PACKAGE"
   5.935  msgstr ""
   5.936  
   5.937 -#: tazpkg:1958
   5.938 +#: tazpkg:1981
   5.939  #, sh-format
   5.940  msgid "Check $INSTALLED/$i for reinstallation"
   5.941  msgstr ""
   5.942  
   5.943 -#: tazpkg:1968
   5.944 +#: tazpkg:1991
   5.945  #, sh-format
   5.946  msgid "Uninstallation of $PACKAGE cancelled."
   5.947  msgstr ""
   5.948  
   5.949 -#: tazpkg:1977
   5.950 +#: tazpkg:2000
   5.951  msgid "Extracting:"
   5.952  msgstr ""
   5.953  
   5.954 -#: tazpkg:1987 tazpkg:2004
   5.955 +#: tazpkg:2010 tazpkg:2027
   5.956  msgid "Copying original package..."
   5.957  msgstr ""
   5.958  
   5.959 -#: tazpkg:1993
   5.960 +#: tazpkg:2016
   5.961  #, sh-format
   5.962  msgid "$PACKAGE is extracted to: $DESTDIR"
   5.963  msgstr ""
   5.964  
   5.965 -#: tazpkg:2001
   5.966 +#: tazpkg:2024
   5.967  msgid "Recompressing:"
   5.968  msgstr ""
   5.969  
   5.970 -#: tazpkg:2009
   5.971 +#: tazpkg:2032
   5.972  msgid "Recompressing the fs... "
   5.973  msgstr ""
   5.974  
   5.975 -#: tazpkg:2013
   5.976 +#: tazpkg:2036
   5.977  msgid "Creating new package... "
   5.978  msgstr ""
   5.979  
   5.980 -#: tazpkg:2032
   5.981 +#: tazpkg:2055
   5.982  msgid "File lost"
   5.983  msgstr ""
   5.984  
   5.985 -#: tazpkg:2046
   5.986 +#: tazpkg:2069
   5.987  msgid "Configuration files"
   5.988  msgstr ""
   5.989  
   5.990 -#: tazpkg:2083
   5.991 +#: tazpkg:2106
   5.992  msgid "User configuration backup on "
   5.993  msgstr ""
   5.994  
   5.995 -#: tazpkg:2103
   5.996 +#: tazpkg:2126
   5.997  #, sh-format
   5.998  msgid "Can't repack $PACKAGE"
   5.999  msgstr ""
  5.1000  
  5.1001 -#: tazpkg:2107
  5.1002 +#: tazpkg:2130
  5.1003  #, sh-format
  5.1004  msgid "Can't repack, $PACKAGE files have been modified by:"
  5.1005  msgstr ""
  5.1006  
  5.1007 -#: tazpkg:2119
  5.1008 +#: tazpkg:2142
  5.1009  msgid "Can't repack, the following files are lost:"
  5.1010  msgstr ""
  5.1011  
  5.1012 -#: tazpkg:2146
  5.1013 +#: tazpkg:2169
  5.1014  msgid "Can't repack, md5sum error."
  5.1015  msgstr ""
  5.1016  
  5.1017 -#: tazpkg:2157
  5.1018 +#: tazpkg:2180
  5.1019  #, sh-format
  5.1020  msgid "Package $PACKAGE repacked successfully."
  5.1021  msgstr ""
  5.1022  
  5.1023 -#: tazpkg:2158 tazpkg:2213
  5.1024 +#: tazpkg:2181 tazpkg:2236
  5.1025  msgid "Size"
  5.1026  msgstr ""
  5.1027  
  5.1028 -#: tazpkg:2166
  5.1029 +#: tazpkg:2189
  5.1030  msgid "Receipt is missing. Please read the documentation."
  5.1031  msgstr ""
  5.1032  
  5.1033 -#: tazpkg:2173
  5.1034 +#: tazpkg:2196
  5.1035  msgid "Creating the list of files..."
  5.1036  msgstr ""
  5.1037  
  5.1038 -#: tazpkg:2178
  5.1039 +#: tazpkg:2201
  5.1040  msgid "Creating md5sum of files..."
  5.1041  msgstr ""
  5.1042  
  5.1043 -#: tazpkg:2192
  5.1044 +#: tazpkg:2215
  5.1045  msgid "Compressing the fs... "
  5.1046  msgstr ""
  5.1047  
  5.1048 -#: tazpkg:2199
  5.1049 +#: tazpkg:2222
  5.1050  msgid "Updating receipt sizes..."
  5.1051  msgstr ""
  5.1052  
  5.1053 -#: tazpkg:2204
  5.1054 +#: tazpkg:2227
  5.1055  msgid "Creating full cpio archive... "
  5.1056  msgstr ""
  5.1057  
  5.1058 -#: tazpkg:2207
  5.1059 +#: tazpkg:2230
  5.1060  msgid "Restoring original package tree... "
  5.1061  msgstr ""
  5.1062  
  5.1063 -#: tazpkg:2212
  5.1064 +#: tazpkg:2235
  5.1065  #, sh-format
  5.1066  msgid "Package $PACKAGE compressed successfully."
  5.1067  msgstr ""
  5.1068  
  5.1069 -#: tazpkg:2225
  5.1070 +#: tazpkg:2256
  5.1071 +msgid "doesn't exists."
  5.1072 +msgstr ""
  5.1073 +
  5.1074 +#: tazpkg:2273
  5.1075 +msgid "Undigest"
  5.1076 +msgstr ""
  5.1077 +
  5.1078 +#: tazpkg:2275
  5.1079 +msgid "is up to date."
  5.1080 +msgstr ""
  5.1081 +
  5.1082 +#: tazpkg:2289
  5.1083  msgid "Recharging undigest"
  5.1084  msgstr ""
  5.1085  
  5.1086 -#: tazpkg:2229
  5.1087 +#: tazpkg:2293
  5.1088  msgid "Creating backup of the last packages list..."
  5.1089  msgstr ""
  5.1090  
  5.1091 -#: tazpkg:2262
  5.1092 +#: tazpkg:2333
  5.1093  #, sh-format
  5.1094  msgid "$new_pkgs new packages on the mirror."
  5.1095  msgstr ""
  5.1096  
  5.1097 -#: tazpkg:2265
  5.1098 +#: tazpkg:2336
  5.1099  msgid "No new packages on the mirror."
  5.1100  msgstr ""
  5.1101  
  5.1102 -#: tazpkg:2272
  5.1103 +#: tazpkg:2343
  5.1104  msgid ""
  5.1105  "Last packages.list is ready to use. Note that next time you recharge the\n"
  5.1106  "list, a list of differences will be displayed to show new and upgradeable\n"
  5.1107  "packages."
  5.1108  msgstr ""
  5.1109  
  5.1110 -#: tazpkg:2308
  5.1111 +#: tazpkg:2370
  5.1112 +msgid "Your packages list is older than one week... recharging"
  5.1113 +msgstr ""
  5.1114 +
  5.1115 +#: tazpkg:2375
  5.1116 +msgid "Update type"
  5.1117 +msgstr ""
  5.1118 +
  5.1119 +#: tazpkg:2393
  5.1120 +msgid "New build   :"
  5.1121 +msgstr ""
  5.1122 +
  5.1123 +#: tazpkg:2396
  5.1124 +msgid "New version :"
  5.1125 +msgstr ""
  5.1126 +
  5.1127 +#: tazpkg:2404 tazpkg:2425
  5.1128 +msgid "-e"
  5.1129 +msgstr ""
  5.1130 +
  5.1131 +#: tazpkg:2407
  5.1132 +#, sh-format
  5.1133 +msgid "You have $upnb avalaible uppgrade on $pkgs installed packages"
  5.1134 +msgstr ""
  5.1135 +
  5.1136 +#: tazpkg:2415
  5.1137 +msgid "Do you wish to install them now: y=yes n=no ? "
  5.1138 +msgstr ""
  5.1139 +
  5.1140 +#: tazpkg:2460
  5.1141  msgid "Available upgrades"
  5.1142  msgstr ""
  5.1143  
  5.1144 -#: tazpkg:2352
  5.1145 +#: tazpkg:2504
  5.1146  msgid "build"
  5.1147  msgstr ""
  5.1148  
  5.1149 -#: tazpkg:2363
  5.1150 +#: tazpkg:2515
  5.1151  msgid "minor"
  5.1152  msgstr ""
  5.1153  
  5.1154 -#: tazpkg:2366 tazpkg:2375
  5.1155 +#: tazpkg:2518 tazpkg:2527
  5.1156  msgid "WARNING"
  5.1157  msgstr ""
  5.1158  
  5.1159 -#: tazpkg:2371
  5.1160 +#: tazpkg:2523
  5.1161  msgid "major"
  5.1162  msgstr ""
  5.1163  
  5.1164 -#: tazpkg:2380
  5.1165 +#: tazpkg:2532
  5.1166  msgid "revision"
  5.1167  msgstr ""
  5.1168  
  5.1169 -#: tazpkg:2406
  5.1170 +#: tazpkg:2558
  5.1171  #, sh-format
  5.1172  msgid ""
  5.1173  "$packages installed and listed packages to consider, $up to upgrade, "
  5.1174  "$blocked blocked."
  5.1175  msgstr ""
  5.1176  
  5.1177 -#: tazpkg:2409
  5.1178 +#: tazpkg:2561
  5.1179  msgid "System is up-to-date."
  5.1180  msgstr ""
  5.1181  
  5.1182 -#: tazpkg:2412
  5.1183 +#: tazpkg:2564
  5.1184  #, sh-format
  5.1185  msgid ""
  5.1186  "$packages installed and listed packages to consider, 0 to upgrade, $blocked "
  5.1187  "blocked."
  5.1188  msgstr ""
  5.1189  
  5.1190 -#: tazpkg:2419
  5.1191 +#: tazpkg:2571
  5.1192  msgid ""
  5.1193  "WARNING ---> Installed package(s) seem(s) more recent than the mirrored\n"
  5.1194  "one. You can block packages using the command : 'tazpkg block package'.\n"
  5.1195  "Or upgrade packages at your own risk."
  5.1196  msgstr ""
  5.1197  
  5.1198 -#: tazpkg:2425
  5.1199 +#: tazpkg:2577
  5.1200  msgid "Upgrade now"
  5.1201  msgstr ""
  5.1202  
  5.1203 -#: tazpkg:2430
  5.1204 +#: tazpkg:2582
  5.1205  msgid "Exiting. No package upgraded."
  5.1206  msgstr ""
  5.1207  
  5.1208 -#: tazpkg:2447
  5.1209 +#: tazpkg:2599
  5.1210  msgid "No known bugs."
  5.1211  msgstr ""
  5.1212  
  5.1213 -#: tazpkg:2453
  5.1214 +#: tazpkg:2605
  5.1215  msgid "Bug list completed"
  5.1216  msgstr ""
  5.1217  
  5.1218 -#: tazpkg:2455
  5.1219 +#: tazpkg:2607
  5.1220  #, sh-format
  5.1221  msgid "Bugs in package $PACKAGE version $VERSION$EXTRAVERSION:"
  5.1222  msgstr ""
  5.1223  
  5.1224 -#: tazpkg:2473
  5.1225 +#: tazpkg:2625
  5.1226  #, sh-format
  5.1227  msgid "The package $PACKAGE installation has not completed"
  5.1228  msgstr ""
  5.1229  
  5.1230 -#: tazpkg:2481
  5.1231 +#: tazpkg:2633
  5.1232  #, sh-format
  5.1233  msgid "The package $PACKAGE $VERSION$EXTRAVERSION has been modified by:"
  5.1234  msgstr ""
  5.1235  
  5.1236 -#: tazpkg:2486
  5.1237 +#: tazpkg:2638
  5.1238  #, sh-format
  5.1239  msgid "Files lost from $PACKAGE $VERSION$EXTRAVERSION :"
  5.1240  msgstr ""
  5.1241  
  5.1242 -#: tazpkg:2490
  5.1243 +#: tazpkg:2642
  5.1244  msgid "target of symlink"
  5.1245  msgstr ""
  5.1246  
  5.1247 -#: tazpkg:2495
  5.1248 +#: tazpkg:2647
  5.1249  msgid "Missing dependencies for"
  5.1250  msgstr ""
  5.1251  
  5.1252 -#: tazpkg:2502
  5.1253 +#: tazpkg:2654
  5.1254  msgid "Dependencies loop between"
  5.1255  msgstr ""
  5.1256  
  5.1257 -#: tazpkg:2506
  5.1258 +#: tazpkg:2658
  5.1259  msgid "Looking for known bugs... "
  5.1260  msgstr ""
  5.1261  
  5.1262 -#: tazpkg:2531
  5.1263 +#: tazpkg:2683
  5.1264  #, sh-format
  5.1265  msgid "The following packages provide $file :"
  5.1266  msgstr ""
  5.1267  
  5.1268 -#: tazpkg:2537
  5.1269 +#: tazpkg:2689
  5.1270  msgid "overridden by"
  5.1271  msgstr ""
  5.1272  
  5.1273 -#: tazpkg:2542
  5.1274 +#: tazpkg:2694
  5.1275  msgid "No package has installed the following files"
  5.1276  msgstr ""
  5.1277  
  5.1278 -#: tazpkg:2551
  5.1279 +#: tazpkg:2703
  5.1280  msgid "Check completed."
  5.1281  msgstr ""
  5.1282  
  5.1283 -#: tazpkg:2559
  5.1284 +#: tazpkg:2711
  5.1285  #, sh-format
  5.1286  msgid "$PACKAGE is already in the blocked packages list."
  5.1287  msgstr ""
  5.1288  
  5.1289 -#: tazpkg:2563
  5.1290 +#: tazpkg:2715
  5.1291  #, sh-format
  5.1292  msgid "Add $PACKAGE to : $BLOCKED..."
  5.1293  msgstr ""
  5.1294  
  5.1295 -#: tazpkg:2578
  5.1296 +#: tazpkg:2730
  5.1297  #, sh-format
  5.1298  msgid "Removing $PACKAGE from : $BLOCKED..."
  5.1299  msgstr ""
  5.1300  
  5.1301 -#: tazpkg:2586
  5.1302 +#: tazpkg:2738
  5.1303  #, sh-format
  5.1304  msgid "$PACKAGE is not in the blocked packages list."
  5.1305  msgstr ""
  5.1306  
  5.1307 -#: tazpkg:2645
  5.1308 +#: tazpkg:2809
  5.1309  #, sh-format
  5.1310  msgid "$PACKAGE already in the cache : $CACHE_DIR"
  5.1311  msgstr ""
  5.1312  
  5.1313 -#: tazpkg:2648
  5.1314 +#: tazpkg:2812
  5.1315  #, sh-format
  5.1316  msgid "Continuing $PACKAGE download"
  5.1317  msgstr ""
  5.1318  
  5.1319 -#: tazpkg:2670
  5.1320 +#: tazpkg:2835
  5.1321  msgid "Clean cache:"
  5.1322  msgstr ""
  5.1323  
  5.1324 -#: tazpkg:2672
  5.1325 +#: tazpkg:2837
  5.1326  msgid "Cleaning cache directory..."
  5.1327  msgstr ""
  5.1328  
  5.1329 -#: tazpkg:2676
  5.1330 +#: tazpkg:2841
  5.1331  #, sh-format
  5.1332  msgid "$files file(s) removed from cache."
  5.1333  msgstr ""
  5.1334  
  5.1335 -#: tazpkg:2688
  5.1336 +#: tazpkg:2853
  5.1337  msgid "Current undigest(s)"
  5.1338  msgstr ""
  5.1339  
  5.1340 -#: tazpkg:2692
  5.1341 +#: tazpkg:2857
  5.1342  msgid "No undigest mirror found."
  5.1343  msgstr ""
  5.1344  
  5.1345 -#: tazpkg:2705
  5.1346 +#: tazpkg:2870
  5.1347  #, sh-format
  5.1348  msgid "Remove $undigest undigest"
  5.1349  msgstr ""
  5.1350  
  5.1351 -#: tazpkg:2709
  5.1352 +#: tazpkg:2874
  5.1353  #, sh-format
  5.1354  msgid "Removing $undigest undigest..."
  5.1355  msgstr ""
  5.1356  
  5.1357 -#: tazpkg:2715
  5.1358 +#: tazpkg:2880
  5.1359  #, sh-format
  5.1360  msgid "Undigest $undigest not found"
  5.1361  msgstr ""
  5.1362  
  5.1363 -#: tazpkg:2731
  5.1364 +#: tazpkg:2896
  5.1365  #, sh-format
  5.1366  msgid "Creating new undigest $undigest."
  5.1367  msgstr ""
  5.1368  
  5.1369 -#: tazpkg:2751
  5.1370 +#: tazpkg:2916
  5.1371  msgid "Unknow option"
  5.1372  msgstr ""
  5.1373  
  5.1374 -#: tazpkg:2766
  5.1375 +#: tazpkg:2931
  5.1376  #, sh-format
  5.1377  msgid "Nothing to do for $PACKAGE."
  5.1378  msgstr ""
  5.1379  
  5.1380 -#: tazpkg:2770
  5.1381 +#: tazpkg:2935
  5.1382  #, sh-format
  5.1383  msgid "Package $PACKAGE is not installed."
  5.1384  msgstr ""
  5.1385  
  5.1386 -#: tazpkg:2771
  5.1387 +#: tazpkg:2936
  5.1388  msgid "Install package with 'tazpkg install' or 'tazpkg get-install'"
  5.1389  msgstr ""
  5.1390  
  5.1391 -#: tazpkg:2785
  5.1392 +#: tazpkg:2950
  5.1393  msgid "Tazpkg SHell"
  5.1394  msgstr ""
  5.1395  
  5.1396 -#: tazpkg:2787
  5.1397 +#: tazpkg:2952
  5.1398  msgid "Type 'usage' to list all available commands or 'quit' or 'q' to exit."
  5.1399  msgstr ""
  5.1400  
  5.1401 -#: tazpkg:2797
  5.1402 +#: tazpkg:2962
  5.1403  msgid "You are already running a Tazpkg SHell."
  5.1404  msgstr ""
  5.1405  
  5.1406 -#: tazpkg:2839
  5.1407 +#: tazpkg:3004
  5.1408  msgid "Unsupported format"
  5.1409  msgstr ""
  5.1410  
  5.1411 -#: tazpkg:2855
  5.1412 +#: tazpkg:3020
  5.1413  #, sh-format
  5.1414  msgid "$PACKAGE is already installed."
  5.1415  msgstr ""
  5.1416  
  5.1417 -#: tazpkg:2864
  5.1418 +#: tazpkg:3029
  5.1419  #, sh-format
  5.1420  msgid "Missing : $i"
  5.1421  msgstr ""
  5.1422  
  5.1423 -#: tazpkg:2868
  5.1424 +#: tazpkg:3033
  5.1425  msgid "Link all missing dependencies"
  5.1426  msgstr ""
  5.1427  
  5.1428 -#: tazpkg:2878
  5.1429 +#: tazpkg:3043
  5.1430  #, sh-format
  5.1431  msgid "Leaving dependencies for $PACKAGE unresolved."
  5.1432  msgstr ""
  5.1433  
  5.1434 -#: tazpkg:2879
  5.1435 +#: tazpkg:3044
  5.1436  msgid "The package is installed but will probably not work."
  5.1437  msgstr ""
     6.1 --- a/tazpkg	Fri Apr 08 17:58:27 2011 +0200
     6.2 +++ b/tazpkg	Fri Apr 08 18:26:26 2011 +0200
     6.3 @@ -134,7 +134,7 @@
     6.4  }
     6.5  
     6.6  usage_up() {
     6.7 -	echo -e "`gettext ""`
     6.8 +	echo -e "
     6.9  \033[1m`gettext \"Tazpkg usage for command up\"`:\033[0m `gettext \"tazpkg up [--option]`\n
    6.10  * `gettext \"Without options run in interactive mode and ask before install\"`
    6.11