mirror of
https://github.com/Mikaela/Limnoria.git
synced 2025-01-11 04:32:36 +01:00
Conditional: Add Finnish translation.
This commit is contained in:
parent
05f122a008
commit
c85daa4fb1
266
plugins/Conditional/locale/fi.po
Normal file
266
plugins/Conditional/locale/fi.po
Normal file
@ -0,0 +1,266 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR ORGANIZATION
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: 2010-11-02 11:39+CET\n"
|
||||
"PO-Revision-Date: 2011-06-07 21:48+0200\n"
|
||||
"Last-Translator: Mika Suomalainen <mika.henrik.mainio@hotmail.com>\n"
|
||||
"Language-Team: \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:64
|
||||
msgid ""
|
||||
"Add the help for \"@plugin help Conditional\" here\n"
|
||||
" This should describe *how* to use this plugin."
|
||||
msgstr ""
|
||||
"Lisää ohje \"@plugin help Conditional\" tähän.\n"
|
||||
" Tämän pitäisi kuvata *kuinka* tätä lisäosaa käytetään."
|
||||
|
||||
#: plugin.py:71
|
||||
msgid "Run a command from message, as if command was sent over IRC."
|
||||
msgstr "Suorita komento viestistä, kuin komento olisi lähetetty IRC:stä."
|
||||
|
||||
#: plugin.py:80
|
||||
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 ""
|
||||
"<tilanne> <joskomento> <muutenkomento>\n"
|
||||
" \n"
|
||||
" Suorittaa <joskomennon> jos <tilanne> arvioituu todeksi, suorittaa <muutenkomennon>\n"
|
||||
" jos se arvioituu vääräksi.\n"
|
||||
" \n"
|
||||
"Käytä toisia loogisia operaatioita, jotka on määritetty lisäosassa ja rinnastettuja komentoja\n"
|
||||
"eduksesi tässä.\n"
|
||||
" "
|
||||
|
||||
#: plugin.py:97
|
||||
msgid ""
|
||||
"<cond1> [<cond2> ... <condN>]\n"
|
||||
" \n"
|
||||
" Returns true if all conditions supplied evaluate to true.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"<ehto1> [<ehto2> ... <ehtoN>]\n"
|
||||
" \n"
|
||||
"Palauttaa kaikki edellytykset jotka tukevat arviotumista todeksi.\n"
|
||||
" "
|
||||
|
||||
#: plugin.py:109
|
||||
msgid ""
|
||||
"<cond1> [<cond2> ... <condN>]\n"
|
||||
" \n"
|
||||
" Returns true if any one of conditions supplied evaluates to true.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"<ehto1> [<ehto2> ... <ehtoN>]\n"
|
||||
" \n"
|
||||
" Palauttaa toden, jos yksikään edellytys tukee arvioimista todeksi.\n"
|
||||
" "
|
||||
|
||||
#: plugin.py:121
|
||||
msgid ""
|
||||
"<cond1> [<cond2> ... <condN>]\n"
|
||||
" \n"
|
||||
" Returns true if only one of conditions supplied evaluates to true.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"<ehto1> [<ehto2> ... <ehtoN>]\n"
|
||||
" \n"
|
||||
"Palauttaa toden, jos vain yksi edellytys tukee arvioimista todeksi.\n"
|
||||
" "
|
||||
|
||||
#: plugin.py:133
|
||||
msgid ""
|
||||
"<item1> <item2>\n"
|
||||
" \n"
|
||||
" Does a string comparison on <item1> and <item2>. \n"
|
||||
" Returns true if they are equal.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"<asia1> <asia2>\n"
|
||||
" \n"
|
||||
" Tekee ketju vertailun <asia1:teen> ja <asia2:teen>. \n"
|
||||
" Palauttaa toden jos ne ovat yhtäläisia.\n"
|
||||
" "
|
||||
|
||||
#: plugin.py:146
|
||||
msgid ""
|
||||
"<item1> <item2>\n"
|
||||
" \n"
|
||||
" Does a string comparison on <item1> and <item2>. \n"
|
||||
" Returns true if they are not equal.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"<asia1> <asia2>\n"
|
||||
" \n"
|
||||
" Tekee ketju vertailun <asiaan1> ja <asiaan2>. \n"
|
||||
" Palauttaa toden, jos ne eivät ole yhtäläisia.\n"
|
||||
" "
|
||||
|
||||
#: plugin.py:159
|
||||
msgid ""
|
||||
"<item1> <item2>\n"
|
||||
" \n"
|
||||
" Does a string comparison on <item1> and <item2>. \n"
|
||||
" Returns true if <item1> is greater than <item2>.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"<asia1> <asia2>\n"
|
||||
" \n"
|
||||
" tekee ketju vertailun <asiaan1> ja <asiaan2>. \n"
|
||||
" Palauttaa toden jos <asia1> on suurempi kuin <asia2>.\n"
|
||||
" "
|
||||
|
||||
#: plugin.py:172
|
||||
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 ""
|
||||
"<asia1> <asia2>\n"
|
||||
" \n"
|
||||
" Tekee ketju vertailun <asiaan1> ja <asiaan2>. \n"
|
||||
" Palauttaa toden jos <asia1> on suurempi tai yhtäläinen <asiaan2>.\n"
|
||||
" "
|
||||
|
||||
#: plugin.py:185
|
||||
msgid ""
|
||||
"<item1> <item2>\n"
|
||||
" \n"
|
||||
" Does a string comparison on <item1> and <item2>. \n"
|
||||
" Returns true if <item1> is less than <item2>.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"<asia1> <asia2>\n"
|
||||
" \n"
|
||||
"Tekee ketju vertailun <asiaan1> ja <asiaan2>. \n"
|
||||
"Palauttaa toden jos <asia1> on vähemmän kuin <asia2>.\n"
|
||||
" "
|
||||
|
||||
#: plugin.py:198
|
||||
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 ""
|
||||
"<asa1> <asia2>\n"
|
||||
" \n"
|
||||
" Tekee ketju vertailun <asiaan1> ja <asiaan2>. \n"
|
||||
" Palauttaa toden jos <asia1> on vähemmän tai yhtäläinen <asiaan2>.\n"
|
||||
" "
|
||||
|
||||
#: plugin.py:211
|
||||
msgid ""
|
||||
"<item1> <item2>\n"
|
||||
" \n"
|
||||
" Determines if <item1> is a substring of <item2>. \n"
|
||||
" Returns true if <item1> is contained in <item2>.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"<item1> <item2>\n"
|
||||
" \n"
|
||||
" Määrittää onko <asia1> <item2:den aliketju>. \n"
|
||||
" Palauttaa toden, jos <asia1> <asia2:teen>.\n"
|
||||
" "
|
||||
|
||||
#: plugin.py:224
|
||||
msgid ""
|
||||
"<item1> <item2>\n"
|
||||
" \n"
|
||||
" Does a numeric comparison on <item1> and <item2>. \n"
|
||||
" Returns true if they are equal.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"<asia1> <asia2>\n"
|
||||
" \n"
|
||||
"Tekee numerollisen vertailun <asian1> ja <asian2> välillä. \n"
|
||||
"Palauttaa toden, jos ne ovat yhtäläisiä.\n"
|
||||
" "
|
||||
|
||||
#: plugin.py:237
|
||||
msgid ""
|
||||
"<item1> <item2>\n"
|
||||
" \n"
|
||||
" Does a numeric comparison on <item1> and <item2>. \n"
|
||||
" Returns true if they are not equal.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"<asia1> <asia2>\n"
|
||||
" \n"
|
||||
" Tekee numerollisen vertailun <asiaan1> ja <asiaan2>. \n"
|
||||
" Palauttaa toden, jos ne eivät ole yhtäläisiä.\n"
|
||||
" "
|
||||
|
||||
#: plugin.py:250
|
||||
msgid ""
|
||||
"<item1> <item2>\n"
|
||||
" \n"
|
||||
" Does a numeric comparison on <item1> and <item2>. \n"
|
||||
" Returns true if they <item1> is greater than <item2>.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"<item1> <item2>\n"
|
||||
" \n"
|
||||
" Tekee numerollisen vertailun <asiaan1> ja <asiaan2>. \n"
|
||||
" Palauttaa toden jos <asia1> on suurempi kuin <asia2>.\n"
|
||||
" "
|
||||
|
||||
#: plugin.py:263
|
||||
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 ""
|
||||
"<item1> <item2>\n"
|
||||
" \n"
|
||||
" Tekee numerollisen vertailun <asiaan1> ja <asiaan2>. \n"
|
||||
" Palauttaa toden, jos <asia1> on suurempi tai yhtäläinen <asiaan2>.\n"
|
||||
" "
|
||||
|
||||
#: plugin.py:276
|
||||
msgid ""
|
||||
"<item1> <item2>\n"
|
||||
" \n"
|
||||
" Does a numeric comparison on <item1> and <item2>. \n"
|
||||
" Returns true if <item1> is less than <item2>.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"<asia1> <asia2>\n"
|
||||
" \n"
|
||||
" Tekee numerollisen vertailun <asiaan1> ja <asiaan2>. \n"
|
||||
" Palauttaa toden jos <asia1> on vähemmän kuin <asia2>.\n"
|
||||
" "
|
||||
|
||||
#: plugin.py:289
|
||||
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 ""
|
||||
"<asia1> <asia2>\n"
|
||||
" \n"
|
||||
" Tekee numerollisen vertailun <asiaan1> ja <asiaan2>. \n"
|
||||
" Palauttaa toden jos <asia1> on vähemmän tai yhtäläinen <asiaan2>.\n"
|
||||
" "
|
||||
|
Loading…
Reference in New Issue
Block a user