--- /dev/null
+# SOME DESCRIPTIVE TITLE
+# Copyright (C) YEAR Free Software Foundation, Inc.
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2021-07-22 08:37+0000\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. type: Plain text
+#, no-wrap
+msgid "[[!meta date=\"Thu, 22 Jul 2021 17:24:34 +0900\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "[[!meta updated=\"Thu, 22 Jul 2021 17:24:34 +0900\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "[[!tag Debian]]\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "[[!meta title=\"Recherche dans les sources de Debian\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"Via mon travail sur le paquet "
+"[`media-types`](packages.debian.org/media-types)\n"
+"je voulais savoir quel paquets utilisaient le type média "
+"`application/x-xcf`\n"
+"qui apparemment est erroné ([#991158](https://bugs.debian.org/991158)). "
+"Le\n"
+"site <codesearch.debian.net> permet de répondre à cette question. "
+"(Merci !)\n"
+msgstr ""
+
+#. type: Plain text
+msgid ""
+"De plus, [en créant une clé "
+"d'utilisateur](https://codesearch.debian.net/apikeys/), on peut interroger "
+"le site en ligne de commande; voici un exemple ci-dessous (le fichier "
+"`dcs-apikeyHeader-plessy.txt` contient `x-dcs-apikey: ` suivi de ma clé "
+"d'accès)"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+" curl -X GET "
+"\"https://codesearch.debian.net/api/v1/searchperpackage?query=application/x-xcf&match_mode=literal\" "
+"-H @dcs-apikeyHeader-plessy.txt > result.json\n"
+msgstr ""
+
+#. type: Plain text
+msgid ""
+"Le résultat est en JSON. Voici comment de l'ai transformé pour faire une "
+"liste d'adresses courriel à contacter que j'ai pu facilement coller dans "
+"`mutt`."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+" cat result.json |\n"
+" jq --raw-output '.[].\"package\"' |\n"
+" dd-list --stdin |\n"
+" sed -e '/^ /d' -e '/^$/'d -e 's/$/,/' -e 's/^/ /'\n"
+msgstr ""