277168c322af06c73173c9f3925f50ee14592980
[edward.git] / lang / it.py
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
3 """*********************************************************************
4 * This file is part of Edward the GPG Bot. *
5 * *
6 * Edward is free software: you can redistribute it and/or modify *
7 * it under the terms of the GNU Affero Public License as published by *
8 * the Free Software Foundation, either version 3 of the License, or *
9 * (at your option) any later version. *
10 * *
11 * Edward is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU Affero Public License for more details. *
15 * *
16 * You should have received a copy of the GNU Affero Public License *
17 * along with Edward. If not, see <http://www.gnu.org/licenses/>. *
18 * *
19 * Josh Drake, Copyright (c) 2014 *
20 * Lisa Marie Maginnis, Copyright (c) 2014 *
21 *********************************************************************"""
22
23 replies = {
24 'greeting' : "Ciao, io sono Edward, l'amichevole bot GnuPG.",
25 'success_decrypt' : "Ho ricevuto il tuo messaggio e l'ho decriptato.",
26 'quote_follows' : "Questa è una copia del tuo messaggio:",
27 'public_key_received' : 'Ho ricevuto la tua chiave pubblica. Grazie.',
28 'failed_decrypt' : "Mi dispiace, non sono stato in grado di decifrare il tuo messaggio. Sei sicuro di averlo criptato con la mia chiave pubblica?",
29 'no_public_key' : "Mi dispiace, non ho trovato la tua chiave pubblica. Ti sei ricordato di allegarla?",
30 'sig_failure' : 'La tua firma non può essere verificata.',
31 'sig_success' : 'La tua firma è stata verificata.',
32 'signature' : "- Edward, l'amichevole bot GnuPG\n\nLa Free Software Foundation mi ha creato. Potresti fare una donazione per supportare il loro lavoro? | https://www.fsf.org/donate",
33 'space' : " "
34 }
35