Limnoria/plugins/Conditional/messages.pot

202 lines
4.3 KiB
Plaintext
Raw Normal View History

2011-02-26 10:40:50 +01:00
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR ORGANIZATION
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2014-03-22 16:34+EET\n"
2011-02-26 10:40:50 +01:00
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
"Generated-By: pygettext.py 1.5\n"
#: plugin.py:57
2011-02-26 10:40:50 +01:00
#, docstring
msgid ""
"Add the help for \"@plugin help Conditional\" here\n"
" This should describe *how* to use this plugin."
msgstr ""
#: plugin.py:64
2011-02-26 10:40:50 +01:00
#, docstring
msgid "Run a command from message, as if command was sent over IRC."
msgstr ""
#: plugin.py:73
2011-02-26 10:40:50 +01:00
#, docstring
msgid ""
"<condition> <ifcommand> <elsecommand>\n"
"\n"
2011-02-26 10:40:50 +01:00
" Runs <ifcommand> if <condition> evaluates to true, runs <elsecommand>\n"
" if it evaluates to false.\n"
"\n"
2011-02-26 10:40:50 +01:00
" Use other logical operators defined in this plugin and command nesting\n"
" to your advantage here.\n"
" "
msgstr ""
#: plugin.py:90
2011-02-26 10:40:50 +01:00
#, docstring
msgid ""
"<cond1> [<cond2> ... <condN>]\n"
"\n"
2011-02-26 10:40:50 +01:00
" Returns true if all conditions supplied evaluate to true.\n"
" "
msgstr ""
#: plugin.py:102
2011-02-26 10:40:50 +01:00
#, docstring
msgid ""
"<cond1> [<cond2> ... <condN>]\n"
"\n"
2011-02-26 10:40:50 +01:00
" Returns true if any one of conditions supplied evaluates to true.\n"
" "
msgstr ""
#: plugin.py:114
2011-02-26 10:40:50 +01:00
#, docstring
msgid ""
"<cond1> [<cond2> ... <condN>]\n"
"\n"
2011-02-26 10:40:50 +01:00
" Returns true if only one of conditions supplied evaluates to true.\n"
" "
msgstr ""
#: plugin.py:126
2011-02-26 10:40:50 +01:00
#, docstring
msgid ""
"<item1> <item2>\n"
"\n"
" Does a string comparison on <item1> and <item2>.\n"
2011-02-26 10:40:50 +01:00
" Returns true if they are equal.\n"
" "
msgstr ""
#: plugin.py:139
2011-02-26 10:40:50 +01:00
#, docstring
msgid ""
"<item1> <item2>\n"
"\n"
" Does a string comparison on <item1> and <item2>.\n"
2011-02-26 10:40:50 +01:00
" Returns true if they are not equal.\n"
" "
msgstr ""
#: plugin.py:152
2011-02-26 10:40:50 +01:00
#, docstring
msgid ""
"<item1> <item2>\n"
"\n"
" Does a string comparison on <item1> and <item2>.\n"
2011-02-26 10:40:50 +01:00
" Returns true if <item1> is greater than <item2>.\n"
" "
msgstr ""
#: plugin.py:165
2011-02-26 10:40:50 +01:00
#, docstring
msgid ""
"<item1> <item2>\n"
"\n"
" Does a string comparison on <item1> and <item2>.\n"
2011-02-26 10:40:50 +01:00
" Returns true if <item1> is greater than or equal to <item2>.\n"
" "
msgstr ""
#: plugin.py:178
2011-02-26 10:40:50 +01:00
#, docstring
msgid ""
"<item1> <item2>\n"
"\n"
" Does a string comparison on <item1> and <item2>.\n"
2011-02-26 10:40:50 +01:00
" Returns true if <item1> is less than <item2>.\n"
" "
msgstr ""
#: plugin.py:191
2011-02-26 10:40:50 +01:00
#, docstring
msgid ""
"<item1> <item2>\n"
"\n"
" Does a string comparison on <item1> and <item2>.\n"
2011-02-26 10:40:50 +01:00
" Returns true if <item1> is less than or equal to <item2>.\n"
" "
msgstr ""
#: plugin.py:204
2011-02-26 10:40:50 +01:00
#, docstring
msgid ""
"[--case-insensitive] <item1> <item2>\n"
"\n"
" Determines if <item1> is a substring of <item2>.\n"
2011-02-26 10:40:50 +01:00
" Returns true if <item1> is contained in <item2>.\n"
"\n"
" Will only match case if --case-insensitive is not given.\n"
2011-02-26 10:40:50 +01:00
" "
msgstr ""
#: plugin.py:224
2011-02-26 10:40:50 +01:00
#, docstring
msgid ""
"<item1> <item2>\n"
"\n"
" Does a numeric comparison on <item1> and <item2>.\n"
2011-02-26 10:40:50 +01:00
" Returns true if they are equal.\n"
" "
msgstr ""
#: plugin.py:237
2011-02-26 10:40:50 +01:00
#, docstring
msgid ""
"<item1> <item2>\n"
"\n"
" Does a numeric comparison on <item1> and <item2>.\n"
2011-02-26 10:40:50 +01:00
" Returns true if they are not equal.\n"
" "
msgstr ""
#: plugin.py:250
2011-02-26 10:40:50 +01:00
#, docstring
msgid ""
"<item1> <item2>\n"
"\n"
" Does a numeric comparison on <item1> and <item2>.\n"
2011-07-08 10:41:36 +02:00
" Returns true if <item1> is greater than <item2>.\n"
2011-02-26 10:40:50 +01:00
" "
msgstr ""
#: plugin.py:263
2011-02-26 10:40:50 +01:00
#, docstring
msgid ""
"<item1> <item2>\n"
"\n"
" Does a numeric comparison on <item1> and <item2>.\n"
2011-02-26 10:40:50 +01:00
" Returns true if <item1> is greater than or equal to <item2>.\n"
" "
msgstr ""
#: plugin.py:276
2011-02-26 10:40:50 +01:00
#, docstring
msgid ""
"<item1> <item2>\n"
"\n"
" Does a numeric comparison on <item1> and <item2>.\n"
2011-02-26 10:40:50 +01:00
" Returns true if <item1> is less than <item2>.\n"
" "
msgstr ""
#: plugin.py:289
2011-02-26 10:40:50 +01:00
#, docstring
msgid ""
"<item1> <item2>\n"
"\n"
" Does a numeric comparison on <item1> and <item2>.\n"
2011-02-26 10:40:50 +01:00
" Returns true if <item1> is less than or equal to <item2>.\n"
" "
msgstr ""