mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-05 02:29:22 +01:00
213 lines
4.5 KiB
Plaintext
213 lines
4.5 KiB
Plaintext
# SOME DESCRIPTIVE TITLE.
|
|
# Copyright (C) YEAR ORGANIZATION
|
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
|
#
|
|
msgid ""
|
|
msgstr ""
|
|
"Project-Id-Version: PACKAGE VERSION\n"
|
|
"POT-Creation-Date: 2022-02-06 00:12+0100\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"
|
|
"MIME-Version: 1.0\n"
|
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
"Content-Transfer-Encoding: 8bit\n"
|
|
"Generated-By: pygettext.py 1.5\n"
|
|
|
|
|
|
#: plugin.py:59
|
|
#, docstring
|
|
msgid ""
|
|
"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."
|
|
msgstr ""
|
|
|
|
#: plugin.py:66
|
|
#, docstring
|
|
msgid "Run a command from message, as if command was sent over IRC."
|
|
msgstr ""
|
|
|
|
#: plugin.py:76
|
|
#, 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 ""
|
|
|
|
#: plugin.py:92
|
|
#, docstring
|
|
msgid ""
|
|
"<cond1> [<cond2> ... <condN>]\n"
|
|
"\n"
|
|
" Returns true if all conditions supplied evaluate to true.\n"
|
|
" "
|
|
msgstr ""
|
|
|
|
#: plugin.py:104
|
|
#, docstring
|
|
msgid ""
|
|
"<cond1> [<cond2> ... <condN>]\n"
|
|
"\n"
|
|
" Returns true if any one of conditions supplied evaluates to true.\n"
|
|
" "
|
|
msgstr ""
|
|
|
|
#: plugin.py:116
|
|
#, docstring
|
|
msgid ""
|
|
"<cond1> [<cond2> ... <condN>]\n"
|
|
"\n"
|
|
" Returns true if only one of conditions supplied evaluates to true.\n"
|
|
" "
|
|
msgstr ""
|
|
|
|
#: plugin.py:128
|
|
#, docstring
|
|
msgid ""
|
|
"<item1> <item2>\n"
|
|
"\n"
|
|
" Does a string comparison on <item1> and <item2>.\n"
|
|
" Returns true if they are equal.\n"
|
|
" "
|
|
msgstr ""
|
|
|
|
#: plugin.py:141
|
|
#, docstring
|
|
msgid ""
|
|
"<item1> <item2>\n"
|
|
"\n"
|
|
" Does a string comparison on <item1> and <item2>.\n"
|
|
" Returns true if they are not equal.\n"
|
|
" "
|
|
msgstr ""
|
|
|
|
#: plugin.py:154
|
|
#, 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 ""
|
|
|
|
#: plugin.py:167
|
|
#, 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 ""
|
|
|
|
#: plugin.py:180
|
|
#, 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 ""
|
|
|
|
#: plugin.py:193
|
|
#, 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 ""
|
|
|
|
#: plugin.py:206
|
|
#, docstring
|
|
msgid ""
|
|
"[--case-insensitive] <item1> <item2>\n"
|
|
"\n"
|
|
" Determines if <item1> is a substring of <item2>.\n"
|
|
" Returns true if <item1> is contained in <item2>.\n"
|
|
"\n"
|
|
" Will only match case if --case-insensitive is not given.\n"
|
|
" "
|
|
msgstr ""
|
|
|
|
#: plugin.py:226
|
|
#, docstring
|
|
msgid ""
|
|
"<item1> <item2>\n"
|
|
"\n"
|
|
" Does a numeric comparison on <item1> and <item2>.\n"
|
|
" Returns true if they are equal.\n"
|
|
" "
|
|
msgstr ""
|
|
|
|
#: plugin.py:239
|
|
#, docstring
|
|
msgid ""
|
|
"<item1> <item2>\n"
|
|
"\n"
|
|
" Does a numeric comparison on <item1> and <item2>.\n"
|
|
" Returns true if they are not equal.\n"
|
|
" "
|
|
msgstr ""
|
|
|
|
#: plugin.py:252
|
|
#, 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 ""
|
|
|
|
#: plugin.py:265
|
|
#, 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 ""
|
|
|
|
#: plugin.py:278
|
|
#, 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 ""
|
|
|
|
#: plugin.py:291
|
|
#, 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 ""
|
|
|
|
#: plugin.py:303
|
|
#, docstring
|
|
msgid ""
|
|
"<testcommand>\n"
|
|
"\n"
|
|
" Runs <testcommand> and returns true if it raises an error;\n"
|
|
" false otherwise.\n"
|
|
" "
|
|
msgstr ""
|
|
|