msgid "" msgstr "" "Project-Id-Version: Supybot-fr\n" "POT-Creation-Date: 2011-02-26 09:49+CET\n" "PO-Revision-Date: 2011-07-08 09:05+0200\n" "Last-Translator: skizzhg <skizzhg@gmx.com>\n" "Language-Team: Italian <skizzhg@gmx.com>\n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: plugin.py:64 #, docstring msgid "" "Add the help for \"@plugin help Conditional\" here\n" " This should describe *how* to use this plugin." msgstr "" #: plugin.py:71 #, docstring msgid "Run a command from message, as if command was sent over IRC." msgstr "" #: plugin.py:80 #, docstring msgid "" "<condition> <ifcommand> <elsecommand>\n" "\n" " Runs <ifcommand> if <condition> evaluates to true, runs <elsecommand>\n" " if it evaluates to false.\n" "\n" " Use other logical operators defined in this plugin and command nesting\n" " to your advantage here.\n" " " msgstr "" "<condizione> <comando_if> <comando_else>\n" "\n" " Esegue <comando_if> se <la condizione> analizzata è vera, esegue <comando_else> se falsa.\n" "\n" " Utilizza gli altri operatori logici presenti in questo plugin e i comandi nidificati a tuo vantaggio.\n" " " #: plugin.py:97 #, docstring msgid "" "<cond1> [<cond2> ... <condN>]\n" "\n" " Returns true if all conditions supplied evaluate to true.\n" " " msgstr "" "<condizione1> [<condizione2> ... <condizioneN>]\n" "\n" " Restituisce True se tutte le condizioni fornite sono vere.\n" " " #: plugin.py:109 #, docstring msgid "" "<cond1> [<cond2> ... <condN>]\n" "\n" " Returns true if any one of conditions supplied evaluates to true.\n" " " msgstr "" "<condizione1> [<condizione2> ... <condizioneN>]\n" "\n" " Restituisce True se almeno una delle condizioni fornite è vera.\n" " " #: plugin.py:121 #, docstring msgid "" "<cond1> [<cond2> ... <condN>]\n" "\n" " Returns true if only one of conditions supplied evaluates to true.\n" " " msgstr "" "<condizione1> [<condizione2> ... <condizioneN>]\n" "\n" " Restituisce True se solo una delle condizioni fornite è vera.\n" " " #: plugin.py:133 #, docstring msgid "" "<item1> <item2>\n" "\n" " Does a string comparison on <item1> and <item2>.\n" " Returns true if they are equal.\n" " " msgstr "" "<elemento1> <elemento2>\n" "\n" " Effettua una comparazione di stringhe tra <elemento1> ed <elemento2>.\n" " Restituisce True se sono uguali.\n" " " #: plugin.py:146 #, docstring msgid "" "<item1> <item2>\n" "\n" " Does a string comparison on <item1> and <item2>.\n" " Returns true if they are not equal.\n" " " msgstr "" "<elemento1> <elemento2>\n" "\n" " Effettua una comparazione di stringhe tra <elemento1> ed <elemento2>.\n" " Restituisce True se non sono uguali.\n" " " #: plugin.py:159 #, docstring msgid "" "<item1> <item2>\n" "\n" " Does a string comparison on <item1> and <item2>.\n" " Returns true if <item1> is greater than <item2>.\n" " " msgstr "" "<elemento1> <elemento2>\n" "\n" " Effettua una comparazione di stringhe tra <elemento1> ed <elemento2>.\n" " Restituisce True se <elemento1> è maggiore di <elemento2>.\n" " " #: plugin.py:172 #, docstring msgid "" "<item1> <item2>\n" "\n" " Does a string comparison on <item1> and <item2>.\n" " Returns true if <item1> is greater than or equal to <item2>.\n" " " msgstr "" "<elemento1> <elemento2>\n" "\n" " Effettua una comparazione di stringhe tra <elemento1> ed <elemento2>.\n" " Restituisce True se <elemento1> è maggiore o uguale a <elemento2>.\n" " " #: plugin.py:185 #, docstring msgid "" "<item1> <item2>\n" "\n" " Does a string comparison on <item1> and <item2>.\n" " Returns true if <item1> is less than <item2>.\n" " " msgstr "" "<elemento1> <elemento2>\n" "\n" " Effettua una comparazione di stringhe tra <elemento1> ed <elemento2>.\n" " Restituisce True se <elemento1> è minore di <elemento2>.\n" " " #: plugin.py:198 #, docstring msgid "" "<item1> <item2>\n" "\n" " Does a string comparison on <item1> and <item2>.\n" " Returns true if <item1> is less than or equal to <item2>.\n" " " msgstr "" "<elemento1> <elemento2>\n" "\n" " Effettua una comparazione di stringhe tra <elemento1> ed <elemento2>.\n" " Restituisce True se <elemento1> è minore o uguale a <elemento2>.\n" " " #: plugin.py:211 #, docstring msgid "" "<item1> <item2>\n" "\n" " Determines if <item1> is a substring of <item2>.\n" " Returns true if <item1> is contained in <item2>.\n" " " msgstr "" "<elemento1> <elemento2>\n" "\n" " Determina se <elemento1> è una sottostringa di <elemento2>.\n" " Restituisce True se <elemento1> è contenuto in <elemento2>.\n" " " #: plugin.py:224 #, docstring msgid "" "<item1> <item2>\n" "\n" " Does a numeric comparison on <item1> and <item2>.\n" " Returns true if they are equal.\n" " " msgstr "" "<elemento1> <elemento2>\n" "\n" " Effettua una comparazione numerica tra <elemento1> ed <elemento2>.\n" " Restituisce True se sono uguali.\n" " " #: plugin.py:237 #, docstring msgid "" "<item1> <item2>\n" "\n" " Does a numeric comparison on <item1> and <item2>.\n" " Returns true if they are not equal.\n" " " msgstr "" "<elemento1> <elemento2>\n" "\n" " Effettua una comparazione numerica tra <elemento1> ed <elemento2>.\n" " Restituisce True se non sono uguali.\n" " " #: plugin.py:250 #, docstring msgid "" "<item1> <item2>\n" "\n" " Does a numeric comparison on <item1> and <item2>.\n" " Returns true if <item1> is greater than <item2>.\n" " " msgstr "" "<elemento1> <elemento2>\n" "\n" " Effettua una comparazione numerica tra <elemento1> ed <elemento2>.\n" " Restituisce True se <elemento1> è maggiore di <elemento2>.\n" " " #: plugin.py:263 #, docstring msgid "" "<item1> <item2>\n" "\n" " Does a numeric comparison on <item1> and <item2>.\n" " Returns true if <item1> is greater than or equal to <item2>.\n" " " msgstr "" "<elemento1> <elemento2>\n" "\n" " Effettua una comparazione numerica tra <elemento1> ed <elemento2>.\n" " Restituisce True se <elemento1> è maggiore o uguale a <elemento2>.\n" " " #: plugin.py:276 #, docstring msgid "" "<item1> <item2>\n" "\n" " Does a numeric comparison on <item1> and <item2>.\n" " Returns true if <item1> is less than <item2>.\n" " " msgstr "" "<elemento1> <elemento2>\n" "\n" " Effettua una comparazione numerica tra <elemento1> ed <elemento2>.\n" " Restituisce True se <elemento1> è minore di <elemento2>.\n" " " #: plugin.py:289 #, docstring msgid "" "<item1> <item2>\n" "\n" " Does a numeric comparison on <item1> and <item2>.\n" " Returns true if <item1> is less than or equal to <item2>.\n" " " msgstr "" "<elemento1> <elemento2>\n" "\n" " Effettua una comparazione numerica tra <elemento1> ed <elemento2>.\n" " Restituisce True se <elemento1> è minore o uguale a <elemento2>.\n" " "