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"
|
2022-02-06 00:14:47 +01:00
|
|
|
"POT-Creation-Date: 2022-02-06 00:12+0100\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"
|
2022-02-06 00:14:47 +01:00
|
|
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
|
|
"Content-Transfer-Encoding: 8bit\n"
|
2011-02-26 10:40:50 +01:00
|
|
|
"Generated-By: pygettext.py 1.5\n"
|
|
|
|
|
|
|
|
|
2022-02-06 00:14:47 +01:00
|
|
|
#: plugin.py:59
|
2011-02-26 10:40:50 +01:00
|
|
|
#, docstring
|
|
|
|
msgid ""
|
2014-12-20 14:37:27 +01:00
|
|
|
"This plugin provides logic operators and other commands that\n"
|
|
|
|
" enable you to run commands only if a condition is true. Useful for nested\n"
|
|
|
|
" commands and scripting."
|
2011-02-26 10:40:50 +01:00
|
|
|
msgstr ""
|
|
|
|
|
2022-02-06 00:14:47 +01:00
|
|
|
#: plugin.py:66
|
2011-02-26 10:40:50 +01:00
|
|
|
#, docstring
|
|
|
|
msgid "Run a command from message, as if command was sent over IRC."
|
|
|
|
msgstr ""
|
|
|
|
|
2022-02-06 00:14:47 +01:00
|
|
|
#: plugin.py:76
|
2011-02-26 10:40:50 +01:00
|
|
|
#, docstring
|
|
|
|
msgid ""
|
|
|
|
"<condition> <ifcommand> <elsecommand>\n"
|
2011-06-28 19:43:21 +02:00
|
|
|
"\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"
|
2011-06-28 19:43:21 +02:00
|
|
|
"\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 ""
|
|
|
|
|
2022-02-06 00:14:47 +01:00
|
|
|
#: plugin.py:92
|
2011-02-26 10:40:50 +01:00
|
|
|
#, docstring
|
|
|
|
msgid ""
|
|
|
|
"<cond1> [<cond2> ... <condN>]\n"
|
2011-06-28 19:43:21 +02:00
|
|
|
"\n"
|
2011-02-26 10:40:50 +01:00
|
|
|
" Returns true if all conditions supplied evaluate to true.\n"
|
|
|
|
" "
|
|
|
|
msgstr ""
|
|
|
|
|
2022-02-06 00:14:47 +01:00
|
|
|
#: plugin.py:104
|
2011-02-26 10:40:50 +01:00
|
|
|
#, docstring
|
|
|
|
msgid ""
|
|
|
|
"<cond1> [<cond2> ... <condN>]\n"
|
2011-06-28 19:43:21 +02:00
|
|
|
"\n"
|
2011-02-26 10:40:50 +01:00
|
|
|
" Returns true if any one of conditions supplied evaluates to true.\n"
|
|
|
|
" "
|
|
|
|
msgstr ""
|
|
|
|
|
2022-02-06 00:14:47 +01:00
|
|
|
#: plugin.py:116
|
2011-02-26 10:40:50 +01:00
|
|
|
#, docstring
|
|
|
|
msgid ""
|
|
|
|
"<cond1> [<cond2> ... <condN>]\n"
|
2011-06-28 19:43:21 +02:00
|
|
|
"\n"
|
2011-02-26 10:40:50 +01:00
|
|
|
" Returns true if only one of conditions supplied evaluates to true.\n"
|
|
|
|
" "
|
|
|
|
msgstr ""
|
|
|
|
|
2022-02-06 00:14:47 +01:00
|
|
|
#: plugin.py:128
|
2011-02-26 10:40:50 +01:00
|
|
|
#, docstring
|
|
|
|
msgid ""
|
|
|
|
"<item1> <item2>\n"
|
2011-06-28 19:43:21 +02:00
|
|
|
"\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 ""
|
|
|
|
|
2022-02-06 00:14:47 +01:00
|
|
|
#: plugin.py:141
|
2011-02-26 10:40:50 +01:00
|
|
|
#, docstring
|
|
|
|
msgid ""
|
|
|
|
"<item1> <item2>\n"
|
2011-06-28 19:43:21 +02:00
|
|
|
"\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 ""
|
|
|
|
|
2022-02-06 00:14:47 +01:00
|
|
|
#: plugin.py:154
|
2011-02-26 10:40:50 +01:00
|
|
|
#, docstring
|
|
|
|
msgid ""
|
|
|
|
"<item1> <item2>\n"
|
2011-06-28 19:43:21 +02:00
|
|
|
"\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 ""
|
|
|
|
|
2022-02-06 00:14:47 +01:00
|
|
|
#: plugin.py:167
|
2011-02-26 10:40:50 +01:00
|
|
|
#, docstring
|
|
|
|
msgid ""
|
|
|
|
"<item1> <item2>\n"
|
2011-06-28 19:43:21 +02:00
|
|
|
"\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 ""
|
|
|
|
|
2022-02-06 00:14:47 +01:00
|
|
|
#: plugin.py:180
|
2011-02-26 10:40:50 +01:00
|
|
|
#, docstring
|
|
|
|
msgid ""
|
|
|
|
"<item1> <item2>\n"
|
2011-06-28 19:43:21 +02:00
|
|
|
"\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 ""
|
|
|
|
|
2022-02-06 00:14:47 +01:00
|
|
|
#: plugin.py:193
|
2011-02-26 10:40:50 +01:00
|
|
|
#, docstring
|
|
|
|
msgid ""
|
|
|
|
"<item1> <item2>\n"
|
2011-06-28 19:43:21 +02:00
|
|
|
"\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 ""
|
|
|
|
|
2022-02-06 00:14:47 +01:00
|
|
|
#: plugin.py:206
|
2011-02-26 10:40:50 +01:00
|
|
|
#, docstring
|
|
|
|
msgid ""
|
2013-11-27 00:02:05 +01:00
|
|
|
"[--case-insensitive] <item1> <item2>\n"
|
2011-06-28 19:43:21 +02:00
|
|
|
"\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"
|
2013-11-27 00:02:05 +01:00
|
|
|
"\n"
|
|
|
|
" Will only match case if --case-insensitive is not given.\n"
|
2011-02-26 10:40:50 +01:00
|
|
|
" "
|
|
|
|
msgstr ""
|
|
|
|
|
2022-02-06 00:14:47 +01:00
|
|
|
#: plugin.py:226
|
2011-02-26 10:40:50 +01:00
|
|
|
#, docstring
|
|
|
|
msgid ""
|
|
|
|
"<item1> <item2>\n"
|
2011-06-28 19:43:21 +02:00
|
|
|
"\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 ""
|
|
|
|
|
2022-02-06 00:14:47 +01:00
|
|
|
#: plugin.py:239
|
2011-02-26 10:40:50 +01:00
|
|
|
#, docstring
|
|
|
|
msgid ""
|
|
|
|
"<item1> <item2>\n"
|
2011-06-28 19:43:21 +02:00
|
|
|
"\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 ""
|
|
|
|
|
2022-02-06 00:14:47 +01:00
|
|
|
#: plugin.py:252
|
2011-02-26 10:40:50 +01:00
|
|
|
#, docstring
|
|
|
|
msgid ""
|
|
|
|
"<item1> <item2>\n"
|
2011-06-28 19:43:21 +02:00
|
|
|
"\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 ""
|
|
|
|
|
2022-02-06 00:14:47 +01:00
|
|
|
#: plugin.py:265
|
2011-02-26 10:40:50 +01:00
|
|
|
#, docstring
|
|
|
|
msgid ""
|
|
|
|
"<item1> <item2>\n"
|
2011-06-28 19:43:21 +02:00
|
|
|
"\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 ""
|
|
|
|
|
2022-02-06 00:14:47 +01:00
|
|
|
#: plugin.py:278
|
2011-02-26 10:40:50 +01:00
|
|
|
#, docstring
|
|
|
|
msgid ""
|
|
|
|
"<item1> <item2>\n"
|
2011-06-28 19:43:21 +02:00
|
|
|
"\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 ""
|
|
|
|
|
2022-02-06 00:14:47 +01:00
|
|
|
#: plugin.py:291
|
2011-02-26 10:40:50 +01:00
|
|
|
#, docstring
|
|
|
|
msgid ""
|
|
|
|
"<item1> <item2>\n"
|
2011-06-28 19:43:21 +02:00
|
|
|
"\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 ""
|
|
|
|
|
2022-02-06 00:14:47 +01:00
|
|
|
#: plugin.py:303
|
|
|
|
#, docstring
|
|
|
|
msgid ""
|
|
|
|
"<testcommand>\n"
|
|
|
|
"\n"
|
|
|
|
" Runs <testcommand> and returns true if it raises an error;\n"
|
|
|
|
" false otherwise.\n"
|
|
|
|
" "
|
|
|
|
msgstr ""
|
|
|
|
|