mirror of
https://github.com/ankitects/anki.git
synced 2025-09-23 08:22:24 -04:00
translation patches from Piotr
This commit is contained in:
parent
bebac30811
commit
098cc98471
13 changed files with 821 additions and 496 deletions
28
anki/deck.py
28
anki/deck.py
|
@ -11,7 +11,7 @@ __docformat__ = 'restructuredtext'
|
||||||
import tempfile, time, os, random, sys, re, stat, shutil, types, traceback
|
import tempfile, time, os, random, sys, re, stat, shutil, types, traceback
|
||||||
|
|
||||||
from anki.db import *
|
from anki.db import *
|
||||||
from anki.lang import _, _2
|
from anki.lang import _, ngettext
|
||||||
from anki.errors import DeckAccessError
|
from anki.errors import DeckAccessError
|
||||||
from anki.stdmodels import BasicModel
|
from anki.stdmodels import BasicModel
|
||||||
from anki.utils import parseTags, tidyHTML, genID, ids2str, hexifyID, \
|
from anki.utils import parseTags, tidyHTML, genID, ids2str, hexifyID, \
|
||||||
|
@ -610,11 +610,13 @@ type = 0 and isDue = 1 and combinedDue <= :now""", now=time.time())
|
||||||
cards = self.cardsDueBy(time.time() + 86400)
|
cards = self.cardsDueBy(time.time() + 86400)
|
||||||
msg = _('''\
|
msg = _('''\
|
||||||
At the same time tomorrow:<br><br>
|
At the same time tomorrow:<br><br>
|
||||||
There will be %(wait)s waiting for review.<br>
|
%(wait)s<br>
|
||||||
There will be %(new)s waiting.''') % {
|
%(new)s''') % {
|
||||||
'new': _2("<b>%d</b> new card", "<b>%d</b> new cards",
|
'new': ngettext("There will be <b>%d</b> new card waiting for review.",
|
||||||
|
"There will be <b>%d</b> new cards waiting for review.",
|
||||||
newCardsTomorrow) % newCardsTomorrow,
|
newCardsTomorrow) % newCardsTomorrow,
|
||||||
'wait': _2("<b>%s</b> card", "<b>%s</b> cards", cards) % cards,
|
'wait': ngettext("There will be <b>%s</b> card waiting.",
|
||||||
|
"There will be <b>%s</b> cards waiting.", cards) % cards,
|
||||||
}
|
}
|
||||||
if self.spacedCardCount():
|
if self.spacedCardCount():
|
||||||
msg = _("Spaced cards will be shown soon.")
|
msg = _("Spaced cards will be shown soon.")
|
||||||
|
@ -653,18 +655,24 @@ and priority in (1,2,3,4) and type in (0, 1)""", time=time)
|
||||||
spaceSusp = ""
|
spaceSusp = ""
|
||||||
c = self.spacedCardCount()
|
c = self.spacedCardCount()
|
||||||
if c:
|
if c:
|
||||||
spaceSusp += _('''
|
spaceSusp += ngettext('''
|
||||||
|
There is <b>%d</b>
|
||||||
|
<a href="http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-787faa3eb21d7962f7719dc2722d34b7d74035ae">
|
||||||
|
spaced</a> card.''', '''
|
||||||
There are <b>%d</b>
|
There are <b>%d</b>
|
||||||
<a href="http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-59a81e35b6afb23930005e943068945214d194b3">
|
<a href="http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-787faa3eb21d7962f7719dc2722d34b7d74035ae">
|
||||||
spaced</a> cards.''') % c
|
spaced</a> cards.''', c) % c
|
||||||
c2 = self.suspendedCardCount()
|
c2 = self.suspendedCardCount()
|
||||||
if c2:
|
if c2:
|
||||||
if c:
|
if c:
|
||||||
spaceSusp += "<br>"
|
spaceSusp += "<br>"
|
||||||
spaceSusp += _('''
|
spaceSusp += ngettext('''
|
||||||
|
There is <b>%d</b>
|
||||||
|
<a href="http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-37d2db274e6caa23aef55e29655a6b806901774b">
|
||||||
|
suspended</a> card.''', '''
|
||||||
There are <b>%d</b>
|
There are <b>%d</b>
|
||||||
<a href="http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-37d2db274e6caa23aef55e29655a6b806901774b">
|
<a href="http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-37d2db274e6caa23aef55e29655a6b806901774b">
|
||||||
suspended</a> cards.''') % c2
|
suspended</a> cards.''', c) % c2
|
||||||
if spaceSusp:
|
if spaceSusp:
|
||||||
spaceSusp = "<br><br>" + spaceSusp
|
spaceSusp = "<br><br>" + spaceSusp
|
||||||
return _('''\
|
return _('''\
|
||||||
|
|
|
@ -31,8 +31,6 @@ def _(str):
|
||||||
def ngettext(single, plural, n):
|
def ngettext(single, plural, n):
|
||||||
return localTranslation().ungettext(single, plural, n)
|
return localTranslation().ungettext(single, plural, n)
|
||||||
|
|
||||||
_2 = ngettext
|
|
||||||
|
|
||||||
def setLang(lang, local=True):
|
def setLang(lang, local=True):
|
||||||
base = os.path.dirname(os.path.abspath(__file__))
|
base = os.path.dirname(os.path.abspath(__file__))
|
||||||
localeDir = os.path.join(base, "locale")
|
localeDir = os.path.join(base, "locale")
|
||||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2009-01-20 00:49+0900\n"
|
"POT-Creation-Date: 2009-01-20 23:33+0900\n"
|
||||||
"PO-Revision-Date: 2008-01-01 19:00+0100\n"
|
"PO-Revision-Date: 2008-01-01 19:00+0100\n"
|
||||||
"Last-Translator: Michal Čadil <mcadil@gmail.com>\n"
|
"Last-Translator: Michal Čadil <mcadil@gmail.com>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -17,23 +17,35 @@ msgstr ""
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n>1;\n"
|
"Plural-Forms: nplurals=2; plural=n>1;\n"
|
||||||
|
|
||||||
#: deck.py:664
|
#: deck.py:669
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"\n"
|
||||||
|
"There is <b>%d</b>\n"
|
||||||
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-37d2db274e6caa23aef55e29655a6b806901774b\">\n"
|
||||||
|
"suspended</a> card."
|
||||||
|
msgid_plural ""
|
||||||
|
"\n"
|
||||||
"There are <b>%d</b>\n"
|
"There are <b>%d</b>\n"
|
||||||
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-37d2db274e6caa23aef55e29655a6b806901774b\">\n"
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-37d2db274e6caa23aef55e29655a6b806901774b\">\n"
|
||||||
"suspended</a> cards."
|
"suspended</a> cards."
|
||||||
msgstr ""
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
#: deck.py:656
|
#: deck.py:658
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"\n"
|
||||||
|
"There is <b>%d</b>\n"
|
||||||
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-787faa3eb21d7962f7719dc2722d34b7d74035ae\">\n"
|
||||||
|
"spaced</a> card."
|
||||||
|
msgid_plural ""
|
||||||
|
"\n"
|
||||||
"There are <b>%d</b>\n"
|
"There are <b>%d</b>\n"
|
||||||
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-59a81e35b6afb23930005e943068945214d194b3\">\n"
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-787faa3eb21d7962f7719dc2722d34b7d74035ae\">\n"
|
||||||
"spaced</a> cards."
|
"spaced</a> cards."
|
||||||
msgstr ""
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
#: stats.py:497
|
#: stats.py:497
|
||||||
#, python-format
|
#, python-format
|
||||||
|
@ -55,7 +67,7 @@ msgstr "%0.1f sekund"
|
||||||
msgid "%s ago"
|
msgid "%s ago"
|
||||||
msgstr "%s dní"
|
msgstr "%s dní"
|
||||||
|
|
||||||
#: deck.py:1184
|
#: deck.py:1192
|
||||||
#, fuzzy, python-format
|
#, fuzzy, python-format
|
||||||
msgid "%s copy"
|
msgid "%s copy"
|
||||||
msgstr "%s sekunda"
|
msgstr "%s sekunda"
|
||||||
|
@ -134,7 +146,7 @@ msgstr ""
|
||||||
msgid "<b>Correct answers</b><br>"
|
msgid "<b>Correct answers</b><br>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:670
|
#: deck.py:678
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"<div style=\"white-space: normal;\">\n"
|
"<div style=\"white-space: normal;\">\n"
|
||||||
|
@ -195,8 +207,8 @@ msgstr ""
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"At the same time tomorrow:<br><br>\n"
|
"At the same time tomorrow:<br><br>\n"
|
||||||
"There will be %(wait)s waiting for review.<br>\n"
|
"%(wait)s<br>\n"
|
||||||
"There will be %(new)s waiting."
|
"%(new)s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: stats.py:286
|
#: stats.py:286
|
||||||
|
@ -243,11 +255,11 @@ msgstr "Změněno"
|
||||||
msgid "Check Media DB"
|
msgid "Check Media DB"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1645
|
#: deck.py:1653
|
||||||
msgid "Checking integrity..."
|
msgid "Checking integrity..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1654
|
#: deck.py:1663
|
||||||
msgid "Checking schema..."
|
msgid "Checking schema..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -255,7 +267,7 @@ msgstr ""
|
||||||
msgid "Checksum files..."
|
msgid "Checksum files..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1647
|
#: deck.py:1656
|
||||||
msgid "Database file damaged. Restore from backup."
|
msgid "Database file damaged. Restore from backup."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -268,7 +280,7 @@ msgstr "Statistika balíku"
|
||||||
msgid "Deck created: <b>%s</b> ago<br>"
|
msgid "Deck created: <b>%s</b> ago<br>"
|
||||||
msgstr "Balík vytvořen před: <b>%s</b><br>"
|
msgstr "Balík vytvořen před: <b>%s</b><br>"
|
||||||
|
|
||||||
#: deck.py:1657
|
#: deck.py:1666
|
||||||
msgid "Deck was missing a model"
|
msgid "Deck was missing a model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -280,27 +292,27 @@ msgstr ""
|
||||||
msgid "Delete unused files..."
|
msgid "Delete unused files..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1685
|
#: deck.py:1694
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deleted %d cards with missing fact"
|
msgid "Deleted %d cards with missing fact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1693
|
#: deck.py:1702
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deleted %d cards with no card template"
|
msgid "Deleted %d cards with no card template"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1706
|
#: deck.py:1715
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deleted %d dangling fields"
|
msgid "Deleted %d dangling fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1678
|
#: deck.py:1687
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deleted %d facts with missing fields"
|
msgid "Deleted %d facts with missing fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1698
|
#: deck.py:1707
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deleted %d facts with no cards"
|
msgid "Deleted %d facts with no cards"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -329,7 +341,7 @@ msgstr ""
|
||||||
msgid "Facts in tab-separated text file (*.txt)"
|
msgid "Facts in tab-separated text file (*.txt)"
|
||||||
msgstr "výrazy oddělené tabulátory (*.txt)"
|
msgstr "výrazy oddělené tabulátory (*.txt)"
|
||||||
|
|
||||||
#: deck.py:2002
|
#: deck.py:2011
|
||||||
msgid "File is in use by another process"
|
msgid "File is in use by another process"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -405,12 +417,12 @@ msgstr "<br>Karty starší než týden: <b>%(old)d</b> (<b>%(oldP)0.2f%%</b>)<br
|
||||||
msgid "Media Missing"
|
msgid "Media Missing"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1107
|
#: deck.py:1115
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Model '%s' has wrong card template count"
|
msgid "Model '%s' has wrong card template count"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1111
|
#: deck.py:1119
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Model '%s' has wrong field count"
|
msgid "Model '%s' has wrong field count"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -428,7 +440,7 @@ msgstr ""
|
||||||
msgid "New"
|
msgid "New"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:625
|
#: deck.py:627
|
||||||
msgid "No cards are due."
|
msgid "No cards are due."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -436,23 +448,23 @@ msgstr ""
|
||||||
msgid "Please add some cards first.<p/>"
|
msgid "Please add some cards first.<p/>"
|
||||||
msgstr "Nejprve vložte nějaké kartičky"
|
msgstr "Nejprve vložte nějaké kartičky"
|
||||||
|
|
||||||
#: deck.py:1877
|
#: deck.py:1886
|
||||||
msgid "Processing..."
|
msgid "Processing..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1722
|
#: deck.py:1731
|
||||||
msgid "Rebuilding QA cache..."
|
msgid "Rebuilding QA cache..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1742
|
#: deck.py:1751
|
||||||
msgid "Rebuilding counts..."
|
msgid "Rebuilding counts..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1748
|
#: deck.py:1757
|
||||||
msgid "Rebuilding queue..."
|
msgid "Rebuilding queue..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1740
|
#: deck.py:1749
|
||||||
msgid "Rebuilding types..."
|
msgid "Rebuilding types..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -474,19 +486,19 @@ msgstr "%s měsíc"
|
||||||
msgid "Reps next week"
|
msgid "Reps next week"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:2412
|
#: deck.py:2421
|
||||||
msgid "Review cards in order due"
|
msgid "Review cards in order due"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:2413
|
#: deck.py:2422
|
||||||
msgid "Review cards in random order"
|
msgid "Review cards in random order"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:2411
|
#: deck.py:2420
|
||||||
msgid "Review newest cards first"
|
msgid "Review newest cards first"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:2410
|
#: deck.py:2419
|
||||||
msgid "Review oldest cards first"
|
msgid "Review oldest cards first"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -503,27 +515,27 @@ msgstr "Správně"
|
||||||
msgid "Scan fields..."
|
msgid "Scan fields..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:2404
|
#: deck.py:2413
|
||||||
msgid "Show new cards after all other cards"
|
msgid "Show new cards after all other cards"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:2405
|
#: deck.py:2414
|
||||||
msgid "Show new cards before reviews"
|
msgid "Show new cards before reviews"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:2398
|
#: deck.py:2407
|
||||||
msgid "Show new cards in order they were added"
|
msgid "Show new cards in order they were added"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:2397
|
#: deck.py:2406
|
||||||
msgid "Show new cards in random order"
|
msgid "Show new cards in random order"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:620
|
#: deck.py:622
|
||||||
msgid "Spaced cards will be shown soon."
|
msgid "Spaced cards will be shown soon."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:2403
|
#: deck.py:2412
|
||||||
msgid "Spread new cards out through reviews"
|
msgid "Spread new cards out through reviews"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -531,15 +543,29 @@ msgstr ""
|
||||||
msgid "Text files (*.txt)"
|
msgid "Text files (*.txt)"
|
||||||
msgstr "Textové soubory (*.txt)"
|
msgstr "Textové soubory (*.txt)"
|
||||||
|
|
||||||
#: deck.py:1663
|
#: deck.py:1672
|
||||||
msgid "The current model didn't exist"
|
msgid "The current model didn't exist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:622
|
#: deck.py:624
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "The next card will be shown in <b>%s</b>."
|
msgid "The next card will be shown in <b>%s</b>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: deck.py:615
|
||||||
|
#, python-format
|
||||||
|
msgid "There will be <b>%d</b> new card waiting for review."
|
||||||
|
msgid_plural "There will be <b>%d</b> new cards waiting for review."
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
|
#: deck.py:618
|
||||||
|
#, python-format
|
||||||
|
msgid "There will be <b>%s</b> card waiting."
|
||||||
|
msgid_plural "There will be <b>%s</b> cards waiting."
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
#: stats.py:288
|
#: stats.py:288
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Total Time"
|
msgid "Total Time"
|
||||||
|
@ -550,7 +576,7 @@ msgstr "Celkový čas"
|
||||||
msgid "Total number of cards: <b>%d</b><br><br>"
|
msgid "Total number of cards: <b>%d</b><br><br>"
|
||||||
msgstr "Celkový pošet kartiček: <b>%d</b><br>"
|
msgstr "Celkový pošet kartiček: <b>%d</b><br>"
|
||||||
|
|
||||||
#: deck.py:834
|
#: deck.py:842
|
||||||
msgid "Unknown"
|
msgid "Unknown"
|
||||||
msgstr "Neznámý"
|
msgstr "Neznámý"
|
||||||
|
|
||||||
|
@ -564,7 +590,7 @@ msgstr "Zatím nezobrazené kartičky: <b>%(new)d</b> (<b>%(newP)0.2f%%</b>)<br>
|
||||||
msgid "Update tags..."
|
msgid "Update tags..."
|
||||||
msgstr "Štítky výrazů"
|
msgstr "Štítky výrazů"
|
||||||
|
|
||||||
#: deck.py:1719
|
#: deck.py:1728
|
||||||
msgid "Updating priorities..."
|
msgid "Updating priorities..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -591,7 +617,7 @@ msgstr ""
|
||||||
msgid "in %s"
|
msgid "in %s"
|
||||||
msgstr "za %s"
|
msgstr "za %s"
|
||||||
|
|
||||||
#: deck.py:642
|
#: deck.py:644
|
||||||
msgid "unknown"
|
msgid "unknown"
|
||||||
msgstr "neznámý"
|
msgstr "neznámý"
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2009-01-20 00:49+0900\n"
|
"POT-Creation-Date: 2009-01-20 23:33+0900\n"
|
||||||
"PO-Revision-Date: 2008-12-31 15:50+0100\n"
|
"PO-Revision-Date: 2008-12-31 15:50+0100\n"
|
||||||
"Last-Translator: Christian Rusche <cru@bsiag.com>\n"
|
"Last-Translator: Christian Rusche <cru@bsiag.com>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -15,23 +15,35 @@ msgstr ""
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: deck.py:664
|
#: deck.py:669
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"\n"
|
||||||
|
"There is <b>%d</b>\n"
|
||||||
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-37d2db274e6caa23aef55e29655a6b806901774b\">\n"
|
||||||
|
"suspended</a> card."
|
||||||
|
msgid_plural ""
|
||||||
|
"\n"
|
||||||
"There are <b>%d</b>\n"
|
"There are <b>%d</b>\n"
|
||||||
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-37d2db274e6caa23aef55e29655a6b806901774b\">\n"
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-37d2db274e6caa23aef55e29655a6b806901774b\">\n"
|
||||||
"suspended</a> cards."
|
"suspended</a> cards."
|
||||||
msgstr ""
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
#: deck.py:656
|
#: deck.py:658
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"\n"
|
||||||
|
"There is <b>%d</b>\n"
|
||||||
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-787faa3eb21d7962f7719dc2722d34b7d74035ae\">\n"
|
||||||
|
"spaced</a> card."
|
||||||
|
msgid_plural ""
|
||||||
|
"\n"
|
||||||
"There are <b>%d</b>\n"
|
"There are <b>%d</b>\n"
|
||||||
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-59a81e35b6afb23930005e943068945214d194b3\">\n"
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-787faa3eb21d7962f7719dc2722d34b7d74035ae\">\n"
|
||||||
"spaced</a> cards."
|
"spaced</a> cards."
|
||||||
msgstr ""
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
#: stats.py:497
|
#: stats.py:497
|
||||||
#, python-format
|
#, python-format
|
||||||
|
@ -53,7 +65,7 @@ msgstr "%0.1f Sekunden"
|
||||||
msgid "%s ago"
|
msgid "%s ago"
|
||||||
msgstr "vor %s"
|
msgstr "vor %s"
|
||||||
|
|
||||||
#: deck.py:1184
|
#: deck.py:1192
|
||||||
#, fuzzy, python-format
|
#, fuzzy, python-format
|
||||||
msgid "%s copy"
|
msgid "%s copy"
|
||||||
msgstr "%s Sekunde"
|
msgstr "%s Sekunde"
|
||||||
|
@ -132,7 +144,7 @@ msgstr "<b>Anzahl Karten</b><br>"
|
||||||
msgid "<b>Correct answers</b><br>"
|
msgid "<b>Correct answers</b><br>"
|
||||||
msgstr "<b>Richtige Antworten</b><br>"
|
msgstr "<b>Richtige Antworten</b><br>"
|
||||||
|
|
||||||
#: deck.py:670
|
#: deck.py:678
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"<div style=\"white-space: normal;\">\n"
|
"<div style=\"white-space: normal;\">\n"
|
||||||
|
@ -200,8 +212,8 @@ msgstr "Antwortkarte"
|
||||||
#, fuzzy, python-format
|
#, fuzzy, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"At the same time tomorrow:<br><br>\n"
|
"At the same time tomorrow:<br><br>\n"
|
||||||
"There will be %(wait)s waiting for review.<br>\n"
|
"%(wait)s<br>\n"
|
||||||
"There will be %(new)s waiting."
|
"%(new)s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Morgen zur gleichen Zeit werden<br>\n"
|
"Morgen zur gleichen Zeit werden<br>\n"
|
||||||
"- <b>%(wait)d</b> Karten zur Wiederholung bereit sein<br>\n"
|
"- <b>%(wait)d</b> Karten zur Wiederholung bereit sein<br>\n"
|
||||||
|
@ -248,11 +260,11 @@ msgstr "Geändert"
|
||||||
msgid "Check Media DB"
|
msgid "Check Media DB"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1645
|
#: deck.py:1653
|
||||||
msgid "Checking integrity..."
|
msgid "Checking integrity..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1654
|
#: deck.py:1663
|
||||||
msgid "Checking schema..."
|
msgid "Checking schema..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -260,7 +272,7 @@ msgstr ""
|
||||||
msgid "Checksum files..."
|
msgid "Checksum files..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1647
|
#: deck.py:1656
|
||||||
msgid "Database file damaged. Restore from backup."
|
msgid "Database file damaged. Restore from backup."
|
||||||
msgstr "Datenbank-Datei defekt. Bitte von einem Backup wiederherstellen."
|
msgstr "Datenbank-Datei defekt. Bitte von einem Backup wiederherstellen."
|
||||||
|
|
||||||
|
@ -273,7 +285,7 @@ msgstr "Stapelstatistik"
|
||||||
msgid "Deck created: <b>%s</b> ago<br>"
|
msgid "Deck created: <b>%s</b> ago<br>"
|
||||||
msgstr "Alter des Stapels: <b>%s</b><br>"
|
msgstr "Alter des Stapels: <b>%s</b><br>"
|
||||||
|
|
||||||
#: deck.py:1657
|
#: deck.py:1666
|
||||||
msgid "Deck was missing a model"
|
msgid "Deck was missing a model"
|
||||||
msgstr "Dem Stapel fehlt ein Modell"
|
msgstr "Dem Stapel fehlt ein Modell"
|
||||||
|
|
||||||
|
@ -285,27 +297,27 @@ msgstr ""
|
||||||
msgid "Delete unused files..."
|
msgid "Delete unused files..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1685
|
#: deck.py:1694
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deleted %d cards with missing fact"
|
msgid "Deleted %d cards with missing fact"
|
||||||
msgstr "%d Karten mit fehlendem Faktum gelöscht"
|
msgstr "%d Karten mit fehlendem Faktum gelöscht"
|
||||||
|
|
||||||
#: deck.py:1693
|
#: deck.py:1702
|
||||||
#, fuzzy, python-format
|
#, fuzzy, python-format
|
||||||
msgid "Deleted %d cards with no card template"
|
msgid "Deleted %d cards with no card template"
|
||||||
msgstr "%d Karten ohne Modell gelöscht"
|
msgstr "%d Karten ohne Modell gelöscht"
|
||||||
|
|
||||||
#: deck.py:1706
|
#: deck.py:1715
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deleted %d dangling fields"
|
msgid "Deleted %d dangling fields"
|
||||||
msgstr "%d ungenutzte Felder gelöscht"
|
msgstr "%d ungenutzte Felder gelöscht"
|
||||||
|
|
||||||
#: deck.py:1678
|
#: deck.py:1687
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deleted %d facts with missing fields"
|
msgid "Deleted %d facts with missing fields"
|
||||||
msgstr "%d Fakten mit fehlenden Feldern gelöscht"
|
msgstr "%d Fakten mit fehlenden Feldern gelöscht"
|
||||||
|
|
||||||
#: deck.py:1698
|
#: deck.py:1707
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deleted %d facts with no cards"
|
msgid "Deleted %d facts with no cards"
|
||||||
msgstr "%d Fakten ohne Karten gelöscht"
|
msgstr "%d Fakten ohne Karten gelöscht"
|
||||||
|
@ -337,7 +349,7 @@ msgstr ""
|
||||||
msgid "Facts in tab-separated text file (*.txt)"
|
msgid "Facts in tab-separated text file (*.txt)"
|
||||||
msgstr "Fakten in Tabulator-getrennter Textdatei (*.txt)"
|
msgstr "Fakten in Tabulator-getrennter Textdatei (*.txt)"
|
||||||
|
|
||||||
#: deck.py:2002
|
#: deck.py:2011
|
||||||
msgid "File is in use by another process"
|
msgid "File is in use by another process"
|
||||||
msgstr "Die Datei wird von einem anderen Prozeß benutzt"
|
msgstr "Die Datei wird von einem anderen Prozeß benutzt"
|
||||||
|
|
||||||
|
@ -408,12 +420,12 @@ msgstr "Alte Karten: <b>%(old)d</b> (<b>%(oldP)0.2f%%</b>)<br>"
|
||||||
msgid "Media Missing"
|
msgid "Media Missing"
|
||||||
msgstr "Fehlende Mediendateien"
|
msgstr "Fehlende Mediendateien"
|
||||||
|
|
||||||
#: deck.py:1107
|
#: deck.py:1115
|
||||||
#, fuzzy, python-format
|
#, fuzzy, python-format
|
||||||
msgid "Model '%s' has wrong card template count"
|
msgid "Model '%s' has wrong card template count"
|
||||||
msgstr "Modell '%s' hat eine falsche Anzahl Karten"
|
msgstr "Modell '%s' hat eine falsche Anzahl Karten"
|
||||||
|
|
||||||
#: deck.py:1111
|
#: deck.py:1119
|
||||||
#, fuzzy, python-format
|
#, fuzzy, python-format
|
||||||
msgid "Model '%s' has wrong field count"
|
msgid "Model '%s' has wrong field count"
|
||||||
msgstr "Modell '%s' hat eine falsche Anzahl Felder"
|
msgstr "Modell '%s' hat eine falsche Anzahl Felder"
|
||||||
|
@ -430,7 +442,7 @@ msgstr ""
|
||||||
msgid "New"
|
msgid "New"
|
||||||
msgstr "Neu"
|
msgstr "Neu"
|
||||||
|
|
||||||
#: deck.py:625
|
#: deck.py:627
|
||||||
msgid "No cards are due."
|
msgid "No cards are due."
|
||||||
msgstr "Keine Karten sind fällig."
|
msgstr "Keine Karten sind fällig."
|
||||||
|
|
||||||
|
@ -438,23 +450,23 @@ msgstr "Keine Karten sind fällig."
|
||||||
msgid "Please add some cards first.<p/>"
|
msgid "Please add some cards first.<p/>"
|
||||||
msgstr "Bitte füge zuerst einige Karten hinzu.<p/>"
|
msgstr "Bitte füge zuerst einige Karten hinzu.<p/>"
|
||||||
|
|
||||||
#: deck.py:1877
|
#: deck.py:1886
|
||||||
msgid "Processing..."
|
msgid "Processing..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1722
|
#: deck.py:1731
|
||||||
msgid "Rebuilding QA cache..."
|
msgid "Rebuilding QA cache..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1742
|
#: deck.py:1751
|
||||||
msgid "Rebuilding counts..."
|
msgid "Rebuilding counts..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1748
|
#: deck.py:1757
|
||||||
msgid "Rebuilding queue..."
|
msgid "Rebuilding queue..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1740
|
#: deck.py:1749
|
||||||
msgid "Rebuilding types..."
|
msgid "Rebuilding types..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -474,19 +486,19 @@ msgstr "Wiederholungen nächsten Monat"
|
||||||
msgid "Reps next week"
|
msgid "Reps next week"
|
||||||
msgstr "Wiederholungen nächste Woche"
|
msgstr "Wiederholungen nächste Woche"
|
||||||
|
|
||||||
#: deck.py:2412
|
#: deck.py:2421
|
||||||
msgid "Review cards in order due"
|
msgid "Review cards in order due"
|
||||||
msgstr "geordnet nach Fälligkeitsdatum wiederholen"
|
msgstr "geordnet nach Fälligkeitsdatum wiederholen"
|
||||||
|
|
||||||
#: deck.py:2413
|
#: deck.py:2422
|
||||||
msgid "Review cards in random order"
|
msgid "Review cards in random order"
|
||||||
msgstr "in zufälliger Reihenfolge wiederholen"
|
msgstr "in zufälliger Reihenfolge wiederholen"
|
||||||
|
|
||||||
#: deck.py:2411
|
#: deck.py:2420
|
||||||
msgid "Review newest cards first"
|
msgid "Review newest cards first"
|
||||||
msgstr "neue Karten zuerst wiederholen"
|
msgstr "neue Karten zuerst wiederholen"
|
||||||
|
|
||||||
#: deck.py:2410
|
#: deck.py:2419
|
||||||
msgid "Review oldest cards first"
|
msgid "Review oldest cards first"
|
||||||
msgstr "alte Karten zuerst wiederholen"
|
msgstr "alte Karten zuerst wiederholen"
|
||||||
|
|
||||||
|
@ -502,28 +514,28 @@ msgstr "Rechts"
|
||||||
msgid "Scan fields..."
|
msgid "Scan fields..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:2404
|
#: deck.py:2413
|
||||||
msgid "Show new cards after all other cards"
|
msgid "Show new cards after all other cards"
|
||||||
msgstr "Zeige neue Karten nach allen anderen Karten"
|
msgstr "Zeige neue Karten nach allen anderen Karten"
|
||||||
|
|
||||||
#: deck.py:2405
|
#: deck.py:2414
|
||||||
msgid "Show new cards before reviews"
|
msgid "Show new cards before reviews"
|
||||||
msgstr "Zeige neue Karten vor den Wiederholungen "
|
msgstr "Zeige neue Karten vor den Wiederholungen "
|
||||||
|
|
||||||
#: deck.py:2398
|
#: deck.py:2407
|
||||||
msgid "Show new cards in order they were added"
|
msgid "Show new cards in order they were added"
|
||||||
msgstr "Zeige neue Karten in der Reihenfolge des Hinzufügens"
|
msgstr "Zeige neue Karten in der Reihenfolge des Hinzufügens"
|
||||||
|
|
||||||
#: deck.py:2397
|
#: deck.py:2406
|
||||||
msgid "Show new cards in random order"
|
msgid "Show new cards in random order"
|
||||||
msgstr "Zeige neue Karten in zufälliger Reihenfolge"
|
msgstr "Zeige neue Karten in zufälliger Reihenfolge"
|
||||||
|
|
||||||
#: deck.py:620
|
#: deck.py:622
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Spaced cards will be shown soon."
|
msgid "Spaced cards will be shown soon."
|
||||||
msgstr "Die nächste Karte wird in <b>%s</b> gezeigt"
|
msgstr "Die nächste Karte wird in <b>%s</b> gezeigt"
|
||||||
|
|
||||||
#: deck.py:2403
|
#: deck.py:2412
|
||||||
msgid "Spread new cards out through reviews"
|
msgid "Spread new cards out through reviews"
|
||||||
msgstr "Verteile neue Karten über die Wiederholungen"
|
msgstr "Verteile neue Karten über die Wiederholungen"
|
||||||
|
|
||||||
|
@ -531,15 +543,29 @@ msgstr "Verteile neue Karten über die Wiederholungen"
|
||||||
msgid "Text files (*.txt)"
|
msgid "Text files (*.txt)"
|
||||||
msgstr "Textdateien (*.txt)"
|
msgstr "Textdateien (*.txt)"
|
||||||
|
|
||||||
#: deck.py:1663
|
#: deck.py:1672
|
||||||
msgid "The current model didn't exist"
|
msgid "The current model didn't exist"
|
||||||
msgstr "Das aktuelle Modell war nicht vorhanden"
|
msgstr "Das aktuelle Modell war nicht vorhanden"
|
||||||
|
|
||||||
#: deck.py:622
|
#: deck.py:624
|
||||||
#, fuzzy, python-format
|
#, fuzzy, python-format
|
||||||
msgid "The next card will be shown in <b>%s</b>."
|
msgid "The next card will be shown in <b>%s</b>."
|
||||||
msgstr "Die nächste Karte wird in <b>%s</b> gezeigt"
|
msgstr "Die nächste Karte wird in <b>%s</b> gezeigt"
|
||||||
|
|
||||||
|
#: deck.py:615
|
||||||
|
#, python-format
|
||||||
|
msgid "There will be <b>%d</b> new card waiting for review."
|
||||||
|
msgid_plural "There will be <b>%d</b> new cards waiting for review."
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
|
#: deck.py:618
|
||||||
|
#, python-format
|
||||||
|
msgid "There will be <b>%s</b> card waiting."
|
||||||
|
msgid_plural "There will be <b>%s</b> cards waiting."
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
#: stats.py:288
|
#: stats.py:288
|
||||||
msgid "Total Time"
|
msgid "Total Time"
|
||||||
msgstr "Gesamtzeit"
|
msgstr "Gesamtzeit"
|
||||||
|
@ -549,7 +575,7 @@ msgstr "Gesamtzeit"
|
||||||
msgid "Total number of cards: <b>%d</b><br><br>"
|
msgid "Total number of cards: <b>%d</b><br><br>"
|
||||||
msgstr "Gesamtanzahl Karten: <b>%d</b><br><br>"
|
msgstr "Gesamtanzahl Karten: <b>%d</b><br><br>"
|
||||||
|
|
||||||
#: deck.py:834
|
#: deck.py:842
|
||||||
msgid "Unknown"
|
msgid "Unknown"
|
||||||
msgstr "Unbekannt"
|
msgstr "Unbekannt"
|
||||||
|
|
||||||
|
@ -562,7 +588,7 @@ msgstr "Nicht gesehene Karten: <b>%(new)d</b> (<b>%(newP)0.2f%%</b>)<br><br>"
|
||||||
msgid "Update tags..."
|
msgid "Update tags..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1719
|
#: deck.py:1728
|
||||||
msgid "Updating priorities..."
|
msgid "Updating priorities..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -589,7 +615,7 @@ msgstr "[ungültiges Frage/Antwort-Format]"
|
||||||
msgid "in %s"
|
msgid "in %s"
|
||||||
msgstr "in %s"
|
msgstr "in %s"
|
||||||
|
|
||||||
#: deck.py:642
|
#: deck.py:644
|
||||||
msgid "unknown"
|
msgid "unknown"
|
||||||
msgstr "unbekannt"
|
msgstr "unbekannt"
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Anki 0.9.7.7\n"
|
"Project-Id-Version: Anki 0.9.7.7\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2009-01-20 00:49+0900\n"
|
"POT-Creation-Date: 2009-01-20 23:33+0900\n"
|
||||||
"PO-Revision-Date: 2008-12-25 21:59+0100\n"
|
"PO-Revision-Date: 2008-12-25 21:59+0100\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Spanish <pcsl88@gmail.com>\n"
|
"Language-Team: Spanish <pcsl88@gmail.com>\n"
|
||||||
|
@ -16,23 +16,35 @@ msgstr ""
|
||||||
"X-Poedit-Language: Spanish\n"
|
"X-Poedit-Language: Spanish\n"
|
||||||
"X-Poedit-Country: SPAIN\n"
|
"X-Poedit-Country: SPAIN\n"
|
||||||
|
|
||||||
#: deck.py:664
|
#: deck.py:669
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"\n"
|
||||||
|
"There is <b>%d</b>\n"
|
||||||
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-37d2db274e6caa23aef55e29655a6b806901774b\">\n"
|
||||||
|
"suspended</a> card."
|
||||||
|
msgid_plural ""
|
||||||
|
"\n"
|
||||||
"There are <b>%d</b>\n"
|
"There are <b>%d</b>\n"
|
||||||
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-37d2db274e6caa23aef55e29655a6b806901774b\">\n"
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-37d2db274e6caa23aef55e29655a6b806901774b\">\n"
|
||||||
"suspended</a> cards."
|
"suspended</a> cards."
|
||||||
msgstr ""
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
#: deck.py:656
|
#: deck.py:658
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"\n"
|
||||||
|
"There is <b>%d</b>\n"
|
||||||
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-787faa3eb21d7962f7719dc2722d34b7d74035ae\">\n"
|
||||||
|
"spaced</a> card."
|
||||||
|
msgid_plural ""
|
||||||
|
"\n"
|
||||||
"There are <b>%d</b>\n"
|
"There are <b>%d</b>\n"
|
||||||
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-59a81e35b6afb23930005e943068945214d194b3\">\n"
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-787faa3eb21d7962f7719dc2722d34b7d74035ae\">\n"
|
||||||
"spaced</a> cards."
|
"spaced</a> cards."
|
||||||
msgstr ""
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
#: stats.py:497
|
#: stats.py:497
|
||||||
#, python-format
|
#, python-format
|
||||||
|
@ -54,7 +66,7 @@ msgstr "%0.1f segundos"
|
||||||
msgid "%s ago"
|
msgid "%s ago"
|
||||||
msgstr "hace %s"
|
msgstr "hace %s"
|
||||||
|
|
||||||
#: deck.py:1184
|
#: deck.py:1192
|
||||||
#, fuzzy, python-format
|
#, fuzzy, python-format
|
||||||
msgid "%s copy"
|
msgid "%s copy"
|
||||||
msgstr "%s segundo"
|
msgstr "%s segundo"
|
||||||
|
@ -133,7 +145,7 @@ msgstr "<b>Número de tarjetas</b><br>"
|
||||||
msgid "<b>Correct answers</b><br>"
|
msgid "<b>Correct answers</b><br>"
|
||||||
msgstr "<b>Respuestas correctas</b><br>"
|
msgstr "<b>Respuestas correctas</b><br>"
|
||||||
|
|
||||||
#: deck.py:670
|
#: deck.py:678
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"<div style=\"white-space: normal;\">\n"
|
"<div style=\"white-space: normal;\">\n"
|
||||||
|
@ -201,8 +213,8 @@ msgstr "Tarjeta de Respuesta"
|
||||||
#, fuzzy, python-format
|
#, fuzzy, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"At the same time tomorrow:<br><br>\n"
|
"At the same time tomorrow:<br><br>\n"
|
||||||
"There will be %(wait)s waiting for review.<br>\n"
|
"%(wait)s<br>\n"
|
||||||
"There will be %(new)s waiting."
|
"%(new)s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"A la misma hora mañana:<br><br>\n"
|
"A la misma hora mañana:<br><br>\n"
|
||||||
"- Habrá <b>%(wait)d</b> tarjetas sin repasar<br>\n"
|
"- Habrá <b>%(wait)d</b> tarjetas sin repasar<br>\n"
|
||||||
|
@ -251,11 +263,11 @@ msgstr "Cambiado"
|
||||||
msgid "Check Media DB"
|
msgid "Check Media DB"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1645
|
#: deck.py:1653
|
||||||
msgid "Checking integrity..."
|
msgid "Checking integrity..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1654
|
#: deck.py:1663
|
||||||
msgid "Checking schema..."
|
msgid "Checking schema..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -263,7 +275,7 @@ msgstr ""
|
||||||
msgid "Checksum files..."
|
msgid "Checksum files..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1647
|
#: deck.py:1656
|
||||||
msgid "Database file damaged. Restore from backup."
|
msgid "Database file damaged. Restore from backup."
|
||||||
msgstr "Archivo de Base de Datos dañado. Restaurela de la copia de seguridad."
|
msgstr "Archivo de Base de Datos dañado. Restaurela de la copia de seguridad."
|
||||||
|
|
||||||
|
@ -276,7 +288,7 @@ msgstr "Estadísticas del Mazo"
|
||||||
msgid "Deck created: <b>%s</b> ago<br>"
|
msgid "Deck created: <b>%s</b> ago<br>"
|
||||||
msgstr "Mazo creado: Hace <b>%s</b><br>"
|
msgstr "Mazo creado: Hace <b>%s</b><br>"
|
||||||
|
|
||||||
#: deck.py:1657
|
#: deck.py:1666
|
||||||
msgid "Deck was missing a model"
|
msgid "Deck was missing a model"
|
||||||
msgstr "El mazo carecía de un modelo."
|
msgstr "El mazo carecía de un modelo."
|
||||||
|
|
||||||
|
@ -288,27 +300,27 @@ msgstr ""
|
||||||
msgid "Delete unused files..."
|
msgid "Delete unused files..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1685
|
#: deck.py:1694
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deleted %d cards with missing fact"
|
msgid "Deleted %d cards with missing fact"
|
||||||
msgstr "Borradas %d tarjetas que carecían de hecho"
|
msgstr "Borradas %d tarjetas que carecían de hecho"
|
||||||
|
|
||||||
#: deck.py:1693
|
#: deck.py:1702
|
||||||
#, fuzzy, python-format
|
#, fuzzy, python-format
|
||||||
msgid "Deleted %d cards with no card template"
|
msgid "Deleted %d cards with no card template"
|
||||||
msgstr "Borradas %d tarjetas que carecían de modelo de tarjeta"
|
msgstr "Borradas %d tarjetas que carecían de modelo de tarjeta"
|
||||||
|
|
||||||
#: deck.py:1706
|
#: deck.py:1715
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deleted %d dangling fields"
|
msgid "Deleted %d dangling fields"
|
||||||
msgstr "Borrados %d campos pendientes"
|
msgstr "Borrados %d campos pendientes"
|
||||||
|
|
||||||
#: deck.py:1678
|
#: deck.py:1687
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deleted %d facts with missing fields"
|
msgid "Deleted %d facts with missing fields"
|
||||||
msgstr "Borrados %d hechos con campos faltantes"
|
msgstr "Borrados %d hechos con campos faltantes"
|
||||||
|
|
||||||
#: deck.py:1698
|
#: deck.py:1707
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deleted %d facts with no cards"
|
msgid "Deleted %d facts with no cards"
|
||||||
msgstr "Borrados %d hechos sin tarjetas"
|
msgstr "Borrados %d hechos sin tarjetas"
|
||||||
|
@ -340,7 +352,7 @@ msgstr ""
|
||||||
msgid "Facts in tab-separated text file (*.txt)"
|
msgid "Facts in tab-separated text file (*.txt)"
|
||||||
msgstr "Hechos en un archivo de texto separado por tabulador (*.txt)"
|
msgstr "Hechos en un archivo de texto separado por tabulador (*.txt)"
|
||||||
|
|
||||||
#: deck.py:2002
|
#: deck.py:2011
|
||||||
msgid "File is in use by another process"
|
msgid "File is in use by another process"
|
||||||
msgstr "El archivo está en uso por otro proceso"
|
msgstr "El archivo está en uso por otro proceso"
|
||||||
|
|
||||||
|
@ -411,12 +423,12 @@ msgstr "Tarjetas maduras: <b>%(old)d</b> (<b>%(oldP)0.2f%%</b>)<br>"
|
||||||
msgid "Media Missing"
|
msgid "Media Missing"
|
||||||
msgstr "Soporte multimedia no encontrado"
|
msgstr "Soporte multimedia no encontrado"
|
||||||
|
|
||||||
#: deck.py:1107
|
#: deck.py:1115
|
||||||
#, fuzzy, python-format
|
#, fuzzy, python-format
|
||||||
msgid "Model '%s' has wrong card template count"
|
msgid "Model '%s' has wrong card template count"
|
||||||
msgstr "El modelo '%s' tenía un número incorrecto de modelos de tarjeta"
|
msgstr "El modelo '%s' tenía un número incorrecto de modelos de tarjeta"
|
||||||
|
|
||||||
#: deck.py:1111
|
#: deck.py:1119
|
||||||
#, fuzzy, python-format
|
#, fuzzy, python-format
|
||||||
msgid "Model '%s' has wrong field count"
|
msgid "Model '%s' has wrong field count"
|
||||||
msgstr "El modelo '%s' tenía un número incorrecto de modelos de campo"
|
msgstr "El modelo '%s' tenía un número incorrecto de modelos de campo"
|
||||||
|
@ -433,7 +445,7 @@ msgstr ""
|
||||||
msgid "New"
|
msgid "New"
|
||||||
msgstr "Nuevas"
|
msgstr "Nuevas"
|
||||||
|
|
||||||
#: deck.py:625
|
#: deck.py:627
|
||||||
msgid "No cards are due."
|
msgid "No cards are due."
|
||||||
msgstr "No hay tarjetas programadas."
|
msgstr "No hay tarjetas programadas."
|
||||||
|
|
||||||
|
@ -441,23 +453,23 @@ msgstr "No hay tarjetas programadas."
|
||||||
msgid "Please add some cards first.<p/>"
|
msgid "Please add some cards first.<p/>"
|
||||||
msgstr "Por favor, añada algunas tarjetas antes.<p/>"
|
msgstr "Por favor, añada algunas tarjetas antes.<p/>"
|
||||||
|
|
||||||
#: deck.py:1877
|
#: deck.py:1886
|
||||||
msgid "Processing..."
|
msgid "Processing..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1722
|
#: deck.py:1731
|
||||||
msgid "Rebuilding QA cache..."
|
msgid "Rebuilding QA cache..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1742
|
#: deck.py:1751
|
||||||
msgid "Rebuilding counts..."
|
msgid "Rebuilding counts..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1748
|
#: deck.py:1757
|
||||||
msgid "Rebuilding queue..."
|
msgid "Rebuilding queue..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1740
|
#: deck.py:1749
|
||||||
msgid "Rebuilding types..."
|
msgid "Rebuilding types..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -477,19 +489,19 @@ msgstr "Repeticiones en el mes siguiente"
|
||||||
msgid "Reps next week"
|
msgid "Reps next week"
|
||||||
msgstr "Repeticiones en la siguiente semana"
|
msgstr "Repeticiones en la siguiente semana"
|
||||||
|
|
||||||
#: deck.py:2412
|
#: deck.py:2421
|
||||||
msgid "Review cards in order due"
|
msgid "Review cards in order due"
|
||||||
msgstr "Repasar tarjetas en el orden programado"
|
msgstr "Repasar tarjetas en el orden programado"
|
||||||
|
|
||||||
#: deck.py:2413
|
#: deck.py:2422
|
||||||
msgid "Review cards in random order"
|
msgid "Review cards in random order"
|
||||||
msgstr "Repasar tarjetas aleatoriamente"
|
msgstr "Repasar tarjetas aleatoriamente"
|
||||||
|
|
||||||
#: deck.py:2411
|
#: deck.py:2420
|
||||||
msgid "Review newest cards first"
|
msgid "Review newest cards first"
|
||||||
msgstr "Repasar tarjetas nuevas antes"
|
msgstr "Repasar tarjetas nuevas antes"
|
||||||
|
|
||||||
#: deck.py:2410
|
#: deck.py:2419
|
||||||
msgid "Review oldest cards first"
|
msgid "Review oldest cards first"
|
||||||
msgstr "Repasar tarjetas viejas antes"
|
msgstr "Repasar tarjetas viejas antes"
|
||||||
|
|
||||||
|
@ -505,28 +517,28 @@ msgstr "Derecha"
|
||||||
msgid "Scan fields..."
|
msgid "Scan fields..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:2404
|
#: deck.py:2413
|
||||||
msgid "Show new cards after all other cards"
|
msgid "Show new cards after all other cards"
|
||||||
msgstr "Mostrar nuevas tarjetas después de todas las demás tarjetas"
|
msgstr "Mostrar nuevas tarjetas después de todas las demás tarjetas"
|
||||||
|
|
||||||
#: deck.py:2405
|
#: deck.py:2414
|
||||||
msgid "Show new cards before reviews"
|
msgid "Show new cards before reviews"
|
||||||
msgstr "Mostrar nuevas tarjetas antes de los repasos"
|
msgstr "Mostrar nuevas tarjetas antes de los repasos"
|
||||||
|
|
||||||
#: deck.py:2398
|
#: deck.py:2407
|
||||||
msgid "Show new cards in order they were added"
|
msgid "Show new cards in order they were added"
|
||||||
msgstr "Mostrar nuevas tarjetas en el orden en el que fueron añadidas"
|
msgstr "Mostrar nuevas tarjetas en el orden en el que fueron añadidas"
|
||||||
|
|
||||||
#: deck.py:2397
|
#: deck.py:2406
|
||||||
msgid "Show new cards in random order"
|
msgid "Show new cards in random order"
|
||||||
msgstr "Mostrar nuevas tarjetas de forma aleatoria"
|
msgstr "Mostrar nuevas tarjetas de forma aleatoria"
|
||||||
|
|
||||||
#: deck.py:620
|
#: deck.py:622
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Spaced cards will be shown soon."
|
msgid "Spaced cards will be shown soon."
|
||||||
msgstr "La siguiente tarjeta se mostrará en <b>%s</b>"
|
msgstr "La siguiente tarjeta se mostrará en <b>%s</b>"
|
||||||
|
|
||||||
#: deck.py:2403
|
#: deck.py:2412
|
||||||
msgid "Spread new cards out through reviews"
|
msgid "Spread new cards out through reviews"
|
||||||
msgstr "Distribuir tarjetas entre repasos"
|
msgstr "Distribuir tarjetas entre repasos"
|
||||||
|
|
||||||
|
@ -534,15 +546,29 @@ msgstr "Distribuir tarjetas entre repasos"
|
||||||
msgid "Text files (*.txt)"
|
msgid "Text files (*.txt)"
|
||||||
msgstr "Archivos de texto (*.txt)"
|
msgstr "Archivos de texto (*.txt)"
|
||||||
|
|
||||||
#: deck.py:1663
|
#: deck.py:1672
|
||||||
msgid "The current model didn't exist"
|
msgid "The current model didn't exist"
|
||||||
msgstr "El modelo actual no existía"
|
msgstr "El modelo actual no existía"
|
||||||
|
|
||||||
#: deck.py:622
|
#: deck.py:624
|
||||||
#, fuzzy, python-format
|
#, fuzzy, python-format
|
||||||
msgid "The next card will be shown in <b>%s</b>."
|
msgid "The next card will be shown in <b>%s</b>."
|
||||||
msgstr "La siguiente tarjeta se mostrará en <b>%s</b>"
|
msgstr "La siguiente tarjeta se mostrará en <b>%s</b>"
|
||||||
|
|
||||||
|
#: deck.py:615
|
||||||
|
#, fuzzy, python-format
|
||||||
|
msgid "There will be <b>%d</b> new card waiting for review."
|
||||||
|
msgid_plural "There will be <b>%d</b> new cards waiting for review."
|
||||||
|
msgstr[0] "A la misma hora mañana, habrá <b>%d</b> tarjetas que responder"
|
||||||
|
msgstr[1] "A la misma hora mañana, habrá <b>%d</b> tarjetas que responder"
|
||||||
|
|
||||||
|
#: deck.py:618
|
||||||
|
#, fuzzy, python-format
|
||||||
|
msgid "There will be <b>%s</b> card waiting."
|
||||||
|
msgid_plural "There will be <b>%s</b> cards waiting."
|
||||||
|
msgstr[0] "A la misma hora mañana, habrá <b>%d</b> tarjetas que responder"
|
||||||
|
msgstr[1] "A la misma hora mañana, habrá <b>%d</b> tarjetas que responder"
|
||||||
|
|
||||||
#: stats.py:288
|
#: stats.py:288
|
||||||
msgid "Total Time"
|
msgid "Total Time"
|
||||||
msgstr "Tiempo Total"
|
msgstr "Tiempo Total"
|
||||||
|
@ -552,7 +578,7 @@ msgstr "Tiempo Total"
|
||||||
msgid "Total number of cards: <b>%d</b><br><br>"
|
msgid "Total number of cards: <b>%d</b><br><br>"
|
||||||
msgstr "Número total de tarjetas: <b>%d</b><br><br>"
|
msgstr "Número total de tarjetas: <b>%d</b><br><br>"
|
||||||
|
|
||||||
#: deck.py:834
|
#: deck.py:842
|
||||||
msgid "Unknown"
|
msgid "Unknown"
|
||||||
msgstr "Desconocido"
|
msgstr "Desconocido"
|
||||||
|
|
||||||
|
@ -566,7 +592,7 @@ msgstr "Tarjetas no mostradas: <b>%(new)d</b> (<b>%(newP)0.2f%%</b>)<br><br>"
|
||||||
msgid "Update tags..."
|
msgid "Update tags..."
|
||||||
msgstr "Etiquetas de hechos"
|
msgstr "Etiquetas de hechos"
|
||||||
|
|
||||||
#: deck.py:1719
|
#: deck.py:1728
|
||||||
msgid "Updating priorities..."
|
msgid "Updating priorities..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -593,7 +619,7 @@ msgstr "[formato de pregunta/respuesta incorrecto]"
|
||||||
msgid "in %s"
|
msgid "in %s"
|
||||||
msgstr "en %s"
|
msgstr "en %s"
|
||||||
|
|
||||||
#: deck.py:642
|
#: deck.py:644
|
||||||
msgid "unknown"
|
msgid "unknown"
|
||||||
msgstr "desconocido"
|
msgstr "desconocido"
|
||||||
|
|
||||||
|
@ -756,9 +782,6 @@ msgstr "desconocido"
|
||||||
#~ msgid "At the end of the deck"
|
#~ msgid "At the end of the deck"
|
||||||
#~ msgstr "Al final del mazo"
|
#~ msgstr "Al final del mazo"
|
||||||
|
|
||||||
#~ msgid "At the same time tomorrow, there will be <b>%d</b> cards waiting"
|
|
||||||
#~ msgstr "A la misma hora mañana, habrá <b>%d</b> tarjetas que responder"
|
|
||||||
|
|
||||||
#~ msgid "At the start of the deck"
|
#~ msgid "At the start of the deck"
|
||||||
#~ msgstr "Al principio del mazo"
|
#~ msgstr "Al principio del mazo"
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: libanki_fi_FI\n"
|
"Project-Id-Version: libanki_fi_FI\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2009-01-20 00:49+0900\n"
|
"POT-Creation-Date: 2009-01-20 23:33+0900\n"
|
||||||
"PO-Revision-Date: 2009-01-18 15:22+0200\n"
|
"PO-Revision-Date: 2009-01-18 15:22+0200\n"
|
||||||
"Last-Translator: Niklas Laxström <niklas.laxstrom+kdetrans@gmail.com>\n"
|
"Last-Translator: Niklas Laxström <niklas.laxstrom+kdetrans@gmail.com>\n"
|
||||||
"Language-Team: Finnish <kde-i18n-fi-discussion@lists.sourceforge.net>\n"
|
"Language-Team: Finnish <kde-i18n-fi-discussion@lists.sourceforge.net>\n"
|
||||||
|
@ -18,27 +18,47 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
"X-Generator: KBabel 1.11.4\n"
|
"X-Generator: KBabel 1.11.4\n"
|
||||||
|
|
||||||
#: deck.py:664
|
#: deck.py:669
|
||||||
#, python-format
|
#, fuzzy, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"\n"
|
||||||
|
"There is <b>%d</b>\n"
|
||||||
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-37d2db274e6caa23aef55e29655a6b806901774b\">\n"
|
||||||
|
"suspended</a> card."
|
||||||
|
msgid_plural ""
|
||||||
|
"\n"
|
||||||
"There are <b>%d</b>\n"
|
"There are <b>%d</b>\n"
|
||||||
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-37d2db274e6caa23aef55e29655a6b806901774b\">\n"
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-37d2db274e6caa23aef55e29655a6b806901774b\">\n"
|
||||||
"suspended</a> cards."
|
"suspended</a> cards."
|
||||||
msgstr ""
|
msgstr[0] ""
|
||||||
|
"\n"
|
||||||
|
"Pakassa on <b>%d</b>\n"
|
||||||
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-37d2db274e6caa23aef55e29655a6b806901774b\">\n"
|
||||||
|
"jäädytettyä</a> korttia."
|
||||||
|
msgstr[1] ""
|
||||||
"\n"
|
"\n"
|
||||||
"Pakassa on <b>%d</b>\n"
|
"Pakassa on <b>%d</b>\n"
|
||||||
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-37d2db274e6caa23aef55e29655a6b806901774b\">\n"
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-37d2db274e6caa23aef55e29655a6b806901774b\">\n"
|
||||||
"jäädytettyä</a> korttia."
|
"jäädytettyä</a> korttia."
|
||||||
|
|
||||||
#: deck.py:656
|
#: deck.py:658
|
||||||
#, python-format
|
#, fuzzy, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"\n"
|
||||||
|
"There is <b>%d</b>\n"
|
||||||
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-787faa3eb21d7962f7719dc2722d34b7d74035ae\">\n"
|
||||||
|
"spaced</a> card."
|
||||||
|
msgid_plural ""
|
||||||
|
"\n"
|
||||||
"There are <b>%d</b>\n"
|
"There are <b>%d</b>\n"
|
||||||
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-59a81e35b6afb23930005e943068945214d194b3\">\n"
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-787faa3eb21d7962f7719dc2722d34b7d74035ae\">\n"
|
||||||
"spaced</a> cards."
|
"spaced</a> cards."
|
||||||
msgstr ""
|
msgstr[0] ""
|
||||||
|
"\n"
|
||||||
|
"Pakassa on <b>%d</b>\n"
|
||||||
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-59a81e35b6afb23930005e943068945214d194b3\">\n"
|
||||||
|
"välitettyä</a> korttia."
|
||||||
|
msgstr[1] ""
|
||||||
"\n"
|
"\n"
|
||||||
"Pakassa on <b>%d</b>\n"
|
"Pakassa on <b>%d</b>\n"
|
||||||
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-59a81e35b6afb23930005e943068945214d194b3\">\n"
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-59a81e35b6afb23930005e943068945214d194b3\">\n"
|
||||||
|
@ -64,7 +84,7 @@ msgstr "%0.1f sekuntia"
|
||||||
msgid "%s ago"
|
msgid "%s ago"
|
||||||
msgstr "%s sitten"
|
msgstr "%s sitten"
|
||||||
|
|
||||||
#: deck.py:1184
|
#: deck.py:1192
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s copy"
|
msgid "%s copy"
|
||||||
msgstr "%s (kopio)"
|
msgstr "%s (kopio)"
|
||||||
|
@ -143,7 +163,7 @@ msgstr "<b>Korttiluvut</b><br>"
|
||||||
msgid "<b>Correct answers</b><br>"
|
msgid "<b>Correct answers</b><br>"
|
||||||
msgstr "<b>Oikeat vastaukset</b><br>"
|
msgstr "<b>Oikeat vastaukset</b><br>"
|
||||||
|
|
||||||
#: deck.py:670
|
#: deck.py:678
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"<div style=\"white-space: normal;\">\n"
|
"<div style=\"white-space: normal;\">\n"
|
||||||
|
@ -214,11 +234,11 @@ msgid "Answer Card"
|
||||||
msgstr "korttiin vastaaminen"
|
msgstr "korttiin vastaaminen"
|
||||||
|
|
||||||
#: deck.py:611
|
#: deck.py:611
|
||||||
#, python-format
|
#, fuzzy, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"At the same time tomorrow:<br><br>\n"
|
"At the same time tomorrow:<br><br>\n"
|
||||||
"There will be %(wait)s waiting for review.<br>\n"
|
"%(wait)s<br>\n"
|
||||||
"There will be %(new)s waiting."
|
"%(new)s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Samaan aikaan huomenna:<br><br>\n"
|
"Samaan aikaan huomenna:<br><br>\n"
|
||||||
"Kertausta odottaa %(wait)s.<br>\n"
|
"Kertausta odottaa %(wait)s.<br>\n"
|
||||||
|
@ -264,11 +284,11 @@ msgstr "Muutettu"
|
||||||
msgid "Check Media DB"
|
msgid "Check Media DB"
|
||||||
msgstr "Tarkista mediatietokanta"
|
msgstr "Tarkista mediatietokanta"
|
||||||
|
|
||||||
#: deck.py:1645
|
#: deck.py:1653
|
||||||
msgid "Checking integrity..."
|
msgid "Checking integrity..."
|
||||||
msgstr "Tarkistetaan eheyttä..."
|
msgstr "Tarkistetaan eheyttä..."
|
||||||
|
|
||||||
#: deck.py:1654
|
#: deck.py:1663
|
||||||
msgid "Checking schema..."
|
msgid "Checking schema..."
|
||||||
msgstr "Tarkistetaan skeemaa..."
|
msgstr "Tarkistetaan skeemaa..."
|
||||||
|
|
||||||
|
@ -276,7 +296,7 @@ msgstr "Tarkistetaan skeemaa..."
|
||||||
msgid "Checksum files..."
|
msgid "Checksum files..."
|
||||||
msgstr "Lasketaan tiedostojen tarkistuslukemia..."
|
msgstr "Lasketaan tiedostojen tarkistuslukemia..."
|
||||||
|
|
||||||
#: deck.py:1647
|
#: deck.py:1656
|
||||||
msgid "Database file damaged. Restore from backup."
|
msgid "Database file damaged. Restore from backup."
|
||||||
msgstr "Tietokantatiedosto on vahingoittunut. Palauta toimiva versio Ankin automaattisesti tekemistä varmuuskopioista."
|
msgstr "Tietokantatiedosto on vahingoittunut. Palauta toimiva versio Ankin automaattisesti tekemistä varmuuskopioista."
|
||||||
|
|
||||||
|
@ -289,7 +309,7 @@ msgstr "Pakan tilastot"
|
||||||
msgid "Deck created: <b>%s</b> ago<br>"
|
msgid "Deck created: <b>%s</b> ago<br>"
|
||||||
msgstr "Luotu: <b>%s</b> sitten<br>"
|
msgstr "Luotu: <b>%s</b> sitten<br>"
|
||||||
|
|
||||||
#: deck.py:1657
|
#: deck.py:1666
|
||||||
msgid "Deck was missing a model"
|
msgid "Deck was missing a model"
|
||||||
msgstr "Pakassa ei ollut mallia"
|
msgstr "Pakassa ei ollut mallia"
|
||||||
|
|
||||||
|
@ -301,27 +321,27 @@ msgstr "Poistetaan kuolleita viittauksia..."
|
||||||
msgid "Delete unused files..."
|
msgid "Delete unused files..."
|
||||||
msgstr "Poistetaan käyttämättömiä tiedostoja..."
|
msgstr "Poistetaan käyttämättömiä tiedostoja..."
|
||||||
|
|
||||||
#: deck.py:1685
|
#: deck.py:1694
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deleted %d cards with missing fact"
|
msgid "Deleted %d cards with missing fact"
|
||||||
msgstr "Poistettiin %d faktatonta korttia"
|
msgstr "Poistettiin %d faktatonta korttia"
|
||||||
|
|
||||||
#: deck.py:1693
|
#: deck.py:1702
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deleted %d cards with no card template"
|
msgid "Deleted %d cards with no card template"
|
||||||
msgstr "Poistettiin %d korttia, joilla ei ollut kelvollista korttimallinetta"
|
msgstr "Poistettiin %d korttia, joilla ei ollut kelvollista korttimallinetta"
|
||||||
|
|
||||||
#: deck.py:1706
|
#: deck.py:1715
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deleted %d dangling fields"
|
msgid "Deleted %d dangling fields"
|
||||||
msgstr "Poistettiin %d eksynyttä kenttää"
|
msgstr "Poistettiin %d eksynyttä kenttää"
|
||||||
|
|
||||||
#: deck.py:1678
|
#: deck.py:1687
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deleted %d facts with missing fields"
|
msgid "Deleted %d facts with missing fields"
|
||||||
msgstr "Poistettiin %d faktaa, joista puuttui kenttiä"
|
msgstr "Poistettiin %d faktaa, joista puuttui kenttiä"
|
||||||
|
|
||||||
#: deck.py:1698
|
#: deck.py:1707
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deleted %d facts with no cards"
|
msgid "Deleted %d facts with no cards"
|
||||||
msgstr "Poistettiin %d kortitonta faktaa"
|
msgstr "Poistettiin %d kortitonta faktaa"
|
||||||
|
@ -353,7 +373,7 @@ msgstr "Viedään..."
|
||||||
msgid "Facts in tab-separated text file (*.txt)"
|
msgid "Facts in tab-separated text file (*.txt)"
|
||||||
msgstr "Sarkaimella erotetut faktatiedostot (*.txt)"
|
msgstr "Sarkaimella erotetut faktatiedostot (*.txt)"
|
||||||
|
|
||||||
#: deck.py:2002
|
#: deck.py:2011
|
||||||
msgid "File is in use by another process"
|
msgid "File is in use by another process"
|
||||||
msgstr "Tiedosto on toisen prosessin käytössä"
|
msgstr "Tiedosto on toisen prosessin käytössä"
|
||||||
|
|
||||||
|
@ -424,12 +444,12 @@ msgstr "Vanhoja kortteja: <b>%(old)d</b> (<b>%(oldP)0.2f%%</b>)<br>"
|
||||||
msgid "Media Missing"
|
msgid "Media Missing"
|
||||||
msgstr "Media puuttuu"
|
msgstr "Media puuttuu"
|
||||||
|
|
||||||
#: deck.py:1107
|
#: deck.py:1115
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Model '%s' has wrong card template count"
|
msgid "Model '%s' has wrong card template count"
|
||||||
msgstr "Mallissa %s on väärä korttimallinelukema"
|
msgstr "Mallissa %s on väärä korttimallinelukema"
|
||||||
|
|
||||||
#: deck.py:1111
|
#: deck.py:1119
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Model '%s' has wrong field count"
|
msgid "Model '%s' has wrong field count"
|
||||||
msgstr "Mallissa %s on väärä kenttälukema"
|
msgstr "Mallissa %s on väärä kenttälukema"
|
||||||
|
@ -446,7 +466,7 @@ msgstr "Muutetaan kenttiä..."
|
||||||
msgid "New"
|
msgid "New"
|
||||||
msgstr "Nuori"
|
msgstr "Nuori"
|
||||||
|
|
||||||
#: deck.py:625
|
#: deck.py:627
|
||||||
msgid "No cards are due."
|
msgid "No cards are due."
|
||||||
msgstr "Ei erääntyneitä kortteja."
|
msgstr "Ei erääntyneitä kortteja."
|
||||||
|
|
||||||
|
@ -454,23 +474,23 @@ msgstr "Ei erääntyneitä kortteja."
|
||||||
msgid "Please add some cards first.<p/>"
|
msgid "Please add some cards first.<p/>"
|
||||||
msgstr "Lisää ensin kortteja.</p>"
|
msgstr "Lisää ensin kortteja.</p>"
|
||||||
|
|
||||||
#: deck.py:1877
|
#: deck.py:1886
|
||||||
msgid "Processing..."
|
msgid "Processing..."
|
||||||
msgstr "Käsitellään..."
|
msgstr "Käsitellään..."
|
||||||
|
|
||||||
#: deck.py:1722
|
#: deck.py:1731
|
||||||
msgid "Rebuilding QA cache..."
|
msgid "Rebuilding QA cache..."
|
||||||
msgstr "Alustetaan QA-välimuistia..."
|
msgstr "Alustetaan QA-välimuistia..."
|
||||||
|
|
||||||
#: deck.py:1742
|
#: deck.py:1751
|
||||||
msgid "Rebuilding counts..."
|
msgid "Rebuilding counts..."
|
||||||
msgstr "Alustetaan lukumääriä..."
|
msgstr "Alustetaan lukumääriä..."
|
||||||
|
|
||||||
#: deck.py:1748
|
#: deck.py:1757
|
||||||
msgid "Rebuilding queue..."
|
msgid "Rebuilding queue..."
|
||||||
msgstr "Alustetaan jonoa..."
|
msgstr "Alustetaan jonoa..."
|
||||||
|
|
||||||
#: deck.py:1740
|
#: deck.py:1749
|
||||||
msgid "Rebuilding types..."
|
msgid "Rebuilding types..."
|
||||||
msgstr "Alustetaan tyyppejä..."
|
msgstr "Alustetaan tyyppejä..."
|
||||||
|
|
||||||
|
@ -490,19 +510,19 @@ msgstr "Kertauksia ensikuussa"
|
||||||
msgid "Reps next week"
|
msgid "Reps next week"
|
||||||
msgstr "Kertauksia ensiviikolla"
|
msgstr "Kertauksia ensiviikolla"
|
||||||
|
|
||||||
#: deck.py:2412
|
#: deck.py:2421
|
||||||
msgid "Review cards in order due"
|
msgid "Review cards in order due"
|
||||||
msgstr "Kertaa kortit erääntymisjärjestyksessä"
|
msgstr "Kertaa kortit erääntymisjärjestyksessä"
|
||||||
|
|
||||||
#: deck.py:2413
|
#: deck.py:2422
|
||||||
msgid "Review cards in random order"
|
msgid "Review cards in random order"
|
||||||
msgstr "Kertaa kortit satunnaisessa järjestyksessä"
|
msgstr "Kertaa kortit satunnaisessa järjestyksessä"
|
||||||
|
|
||||||
#: deck.py:2411
|
#: deck.py:2420
|
||||||
msgid "Review newest cards first"
|
msgid "Review newest cards first"
|
||||||
msgstr "Kertaa uusimmat kortit ensin"
|
msgstr "Kertaa uusimmat kortit ensin"
|
||||||
|
|
||||||
#: deck.py:2410
|
#: deck.py:2419
|
||||||
msgid "Review oldest cards first"
|
msgid "Review oldest cards first"
|
||||||
msgstr "Kertaa vanhimmat kortit ensin"
|
msgstr "Kertaa vanhimmat kortit ensin"
|
||||||
|
|
||||||
|
@ -518,27 +538,27 @@ msgstr "Oikea"
|
||||||
msgid "Scan fields..."
|
msgid "Scan fields..."
|
||||||
msgstr "Tutkitaan kenttiä..."
|
msgstr "Tutkitaan kenttiä..."
|
||||||
|
|
||||||
#: deck.py:2404
|
#: deck.py:2413
|
||||||
msgid "Show new cards after all other cards"
|
msgid "Show new cards after all other cards"
|
||||||
msgstr "Näytä uudet kortit muiden korttien jälkeen"
|
msgstr "Näytä uudet kortit muiden korttien jälkeen"
|
||||||
|
|
||||||
#: deck.py:2405
|
#: deck.py:2414
|
||||||
msgid "Show new cards before reviews"
|
msgid "Show new cards before reviews"
|
||||||
msgstr "Näytä uudet kortit ennen kertauksia"
|
msgstr "Näytä uudet kortit ennen kertauksia"
|
||||||
|
|
||||||
#: deck.py:2398
|
#: deck.py:2407
|
||||||
msgid "Show new cards in order they were added"
|
msgid "Show new cards in order they were added"
|
||||||
msgstr "Näytä uudet kortit lisäysjärjestyksessä"
|
msgstr "Näytä uudet kortit lisäysjärjestyksessä"
|
||||||
|
|
||||||
#: deck.py:2397
|
#: deck.py:2406
|
||||||
msgid "Show new cards in random order"
|
msgid "Show new cards in random order"
|
||||||
msgstr "Näytä uudet kortit satunnaisessa järjestyksessä"
|
msgstr "Näytä uudet kortit satunnaisessa järjestyksessä"
|
||||||
|
|
||||||
#: deck.py:620
|
#: deck.py:622
|
||||||
msgid "Spaced cards will be shown soon."
|
msgid "Spaced cards will be shown soon."
|
||||||
msgstr "Välitettyjä kortteja (korttipareja toiseen suuntaan) näytetään pian."
|
msgstr "Välitettyjä kortteja (korttipareja toiseen suuntaan) näytetään pian."
|
||||||
|
|
||||||
#: deck.py:2403
|
#: deck.py:2412
|
||||||
msgid "Spread new cards out through reviews"
|
msgid "Spread new cards out through reviews"
|
||||||
msgstr "Levitä uudet kortit läpi koko kertausten"
|
msgstr "Levitä uudet kortit läpi koko kertausten"
|
||||||
|
|
||||||
|
@ -546,15 +566,29 @@ msgstr "Levitä uudet kortit läpi koko kertausten"
|
||||||
msgid "Text files (*.txt)"
|
msgid "Text files (*.txt)"
|
||||||
msgstr "Tekstitiedostot (*.txt)"
|
msgstr "Tekstitiedostot (*.txt)"
|
||||||
|
|
||||||
#: deck.py:1663
|
#: deck.py:1672
|
||||||
msgid "The current model didn't exist"
|
msgid "The current model didn't exist"
|
||||||
msgstr "Nykyistä mallia ei ollut olemassa."
|
msgstr "Nykyistä mallia ei ollut olemassa."
|
||||||
|
|
||||||
#: deck.py:622
|
#: deck.py:624
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "The next card will be shown in <b>%s</b>."
|
msgid "The next card will be shown in <b>%s</b>."
|
||||||
msgstr "Aikaa seuraavan kortin näyttämiseen on vielä <b>%s</b>."
|
msgstr "Aikaa seuraavan kortin näyttämiseen on vielä <b>%s</b>."
|
||||||
|
|
||||||
|
#: deck.py:615
|
||||||
|
#, python-format
|
||||||
|
msgid "There will be <b>%d</b> new card waiting for review."
|
||||||
|
msgid_plural "There will be <b>%d</b> new cards waiting for review."
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
|
#: deck.py:618
|
||||||
|
#, python-format
|
||||||
|
msgid "There will be <b>%s</b> card waiting."
|
||||||
|
msgid_plural "There will be <b>%s</b> cards waiting."
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
#: stats.py:288
|
#: stats.py:288
|
||||||
msgid "Total Time"
|
msgid "Total Time"
|
||||||
msgstr "Aikaa yhteensä"
|
msgstr "Aikaa yhteensä"
|
||||||
|
@ -564,7 +598,7 @@ msgstr "Aikaa yhteensä"
|
||||||
msgid "Total number of cards: <b>%d</b><br><br>"
|
msgid "Total number of cards: <b>%d</b><br><br>"
|
||||||
msgstr "Kortteja yhteensä: <b>%d</b><br><br>"
|
msgstr "Kortteja yhteensä: <b>%d</b><br><br>"
|
||||||
|
|
||||||
#: deck.py:834
|
#: deck.py:842
|
||||||
msgid "Unknown"
|
msgid "Unknown"
|
||||||
msgstr "– –"
|
msgstr "– –"
|
||||||
|
|
||||||
|
@ -577,7 +611,7 @@ msgstr "Näkemättömiä kortteja: <b>%(new)d</b> (<b>%(newP)0.2f%%</b>)<br><br>
|
||||||
msgid "Update tags..."
|
msgid "Update tags..."
|
||||||
msgstr "Päivitetään tägejä..."
|
msgstr "Päivitetään tägejä..."
|
||||||
|
|
||||||
#: deck.py:1719
|
#: deck.py:1728
|
||||||
msgid "Updating priorities..."
|
msgid "Updating priorities..."
|
||||||
msgstr "Päivitetään prioriteetteja..."
|
msgstr "Päivitetään prioriteetteja..."
|
||||||
|
|
||||||
|
@ -605,6 +639,6 @@ msgstr "[kysymys- tai vastausmuoto on virheellinen]"
|
||||||
msgid "in %s"
|
msgid "in %s"
|
||||||
msgstr "%s myöhemmin"
|
msgstr "%s myöhemmin"
|
||||||
|
|
||||||
#: deck.py:642
|
#: deck.py:644
|
||||||
msgid "unknown"
|
msgid "unknown"
|
||||||
msgstr "tuntematon"
|
msgstr "tuntematon"
|
||||||
|
|
|
@ -2,7 +2,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: \n"
|
"Project-Id-Version: \n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2009-01-20 00:49+0900\n"
|
"POT-Creation-Date: 2009-01-20 23:33+0900\n"
|
||||||
"PO-Revision-Date: 2008-09-24 02:36+0100\n"
|
"PO-Revision-Date: 2008-09-24 02:36+0100\n"
|
||||||
"Last-Translator: Emmanuel JARRI <emmanuel.jarri@gmail.com>\n"
|
"Last-Translator: Emmanuel JARRI <emmanuel.jarri@gmail.com>\n"
|
||||||
"Language-Team: LMS <anki_tradu@laurentsteffan.com>\n"
|
"Language-Team: LMS <anki_tradu@laurentsteffan.com>\n"
|
||||||
|
@ -14,23 +14,35 @@ msgstr ""
|
||||||
"X-Poedit-SourceCharset: utf-8\n"
|
"X-Poedit-SourceCharset: utf-8\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n>1;\n"
|
"Plural-Forms: nplurals=2; plural=n>1;\n"
|
||||||
|
|
||||||
#: deck.py:664
|
#: deck.py:669
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"\n"
|
||||||
|
"There is <b>%d</b>\n"
|
||||||
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-37d2db274e6caa23aef55e29655a6b806901774b\">\n"
|
||||||
|
"suspended</a> card."
|
||||||
|
msgid_plural ""
|
||||||
|
"\n"
|
||||||
"There are <b>%d</b>\n"
|
"There are <b>%d</b>\n"
|
||||||
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-37d2db274e6caa23aef55e29655a6b806901774b\">\n"
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-37d2db274e6caa23aef55e29655a6b806901774b\">\n"
|
||||||
"suspended</a> cards."
|
"suspended</a> cards."
|
||||||
msgstr ""
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
#: deck.py:656
|
#: deck.py:658
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"\n"
|
||||||
|
"There is <b>%d</b>\n"
|
||||||
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-787faa3eb21d7962f7719dc2722d34b7d74035ae\">\n"
|
||||||
|
"spaced</a> card."
|
||||||
|
msgid_plural ""
|
||||||
|
"\n"
|
||||||
"There are <b>%d</b>\n"
|
"There are <b>%d</b>\n"
|
||||||
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-59a81e35b6afb23930005e943068945214d194b3\">\n"
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-787faa3eb21d7962f7719dc2722d34b7d74035ae\">\n"
|
||||||
"spaced</a> cards."
|
"spaced</a> cards."
|
||||||
msgstr ""
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
#: stats.py:497
|
#: stats.py:497
|
||||||
#, python-format
|
#, python-format
|
||||||
|
@ -52,7 +64,7 @@ msgstr "%0.1f secondes"
|
||||||
msgid "%s ago"
|
msgid "%s ago"
|
||||||
msgstr "il y a %s"
|
msgstr "il y a %s"
|
||||||
|
|
||||||
#: deck.py:1184
|
#: deck.py:1192
|
||||||
#, fuzzy, python-format
|
#, fuzzy, python-format
|
||||||
msgid "%s copy"
|
msgid "%s copy"
|
||||||
msgstr "%s seconde"
|
msgstr "%s seconde"
|
||||||
|
@ -131,7 +143,7 @@ msgstr "<b>Décomptes de cartes</b><br>"
|
||||||
msgid "<b>Correct answers</b><br>"
|
msgid "<b>Correct answers</b><br>"
|
||||||
msgstr "<b>Réponses exactes</b><br>"
|
msgstr "<b>Réponses exactes</b><br>"
|
||||||
|
|
||||||
#: deck.py:670
|
#: deck.py:678
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"<div style=\"white-space: normal;\">\n"
|
"<div style=\"white-space: normal;\">\n"
|
||||||
|
@ -199,8 +211,8 @@ msgstr ""
|
||||||
#, fuzzy, python-format
|
#, fuzzy, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"At the same time tomorrow:<br><br>\n"
|
"At the same time tomorrow:<br><br>\n"
|
||||||
"There will be %(wait)s waiting for review.<br>\n"
|
"%(wait)s<br>\n"
|
||||||
"There will be %(new)s waiting."
|
"%(new)s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Au même moment demain :<br><br>\n"
|
"Au même moment demain :<br><br>\n"
|
||||||
"- attendront <b>%(wait)d</b> cartes pour révision<br>\n"
|
"- attendront <b>%(wait)d</b> cartes pour révision<br>\n"
|
||||||
|
@ -250,11 +262,11 @@ msgstr "Changée"
|
||||||
msgid "Check Media DB"
|
msgid "Check Media DB"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1645
|
#: deck.py:1653
|
||||||
msgid "Checking integrity..."
|
msgid "Checking integrity..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1654
|
#: deck.py:1663
|
||||||
msgid "Checking schema..."
|
msgid "Checking schema..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -262,7 +274,7 @@ msgstr ""
|
||||||
msgid "Checksum files..."
|
msgid "Checksum files..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1647
|
#: deck.py:1656
|
||||||
msgid "Database file damaged. Restore from backup."
|
msgid "Database file damaged. Restore from backup."
|
||||||
msgstr "Base de données endommagée. Restauration depuis la sauvegarde."
|
msgstr "Base de données endommagée. Restauration depuis la sauvegarde."
|
||||||
|
|
||||||
|
@ -275,7 +287,7 @@ msgstr "Statistiques de paquet"
|
||||||
msgid "Deck created: <b>%s</b> ago<br>"
|
msgid "Deck created: <b>%s</b> ago<br>"
|
||||||
msgstr "Paquet créé : il y a <b>%s</b><br>"
|
msgstr "Paquet créé : il y a <b>%s</b><br>"
|
||||||
|
|
||||||
#: deck.py:1657
|
#: deck.py:1666
|
||||||
msgid "Deck was missing a model"
|
msgid "Deck was missing a model"
|
||||||
msgstr "Il manque un modèle au paquet"
|
msgstr "Il manque un modèle au paquet"
|
||||||
|
|
||||||
|
@ -287,27 +299,27 @@ msgstr ""
|
||||||
msgid "Delete unused files..."
|
msgid "Delete unused files..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1685
|
#: deck.py:1694
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deleted %d cards with missing fact"
|
msgid "Deleted %d cards with missing fact"
|
||||||
msgstr "%d cartes sans faits supprimés"
|
msgstr "%d cartes sans faits supprimés"
|
||||||
|
|
||||||
#: deck.py:1693
|
#: deck.py:1702
|
||||||
#, fuzzy, python-format
|
#, fuzzy, python-format
|
||||||
msgid "Deleted %d cards with no card template"
|
msgid "Deleted %d cards with no card template"
|
||||||
msgstr "%d cartes sans modèles supprimées"
|
msgstr "%d cartes sans modèles supprimées"
|
||||||
|
|
||||||
#: deck.py:1706
|
#: deck.py:1715
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deleted %d dangling fields"
|
msgid "Deleted %d dangling fields"
|
||||||
msgstr "%d champs en suspens"
|
msgstr "%d champs en suspens"
|
||||||
|
|
||||||
#: deck.py:1678
|
#: deck.py:1687
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deleted %d facts with missing fields"
|
msgid "Deleted %d facts with missing fields"
|
||||||
msgstr "%d faits sans champs supprimés"
|
msgstr "%d faits sans champs supprimés"
|
||||||
|
|
||||||
#: deck.py:1698
|
#: deck.py:1707
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deleted %d facts with no cards"
|
msgid "Deleted %d facts with no cards"
|
||||||
msgstr "%d faits sans cartes supprimés"
|
msgstr "%d faits sans cartes supprimés"
|
||||||
|
@ -336,7 +348,7 @@ msgstr ""
|
||||||
msgid "Facts in tab-separated text file (*.txt)"
|
msgid "Facts in tab-separated text file (*.txt)"
|
||||||
msgstr "Faits dans un fichier texte à séparateur tabulation (*.txt)"
|
msgstr "Faits dans un fichier texte à séparateur tabulation (*.txt)"
|
||||||
|
|
||||||
#: deck.py:2002
|
#: deck.py:2011
|
||||||
msgid "File is in use by another process"
|
msgid "File is in use by another process"
|
||||||
msgstr "Un autre processus utilise ce fichier"
|
msgstr "Un autre processus utilise ce fichier"
|
||||||
|
|
||||||
|
@ -410,12 +422,12 @@ msgstr "Cartes mûres : <b>%(old)d</b> (<b>%(oldP)0.2f%%</b>)<br>"
|
||||||
msgid "Media Missing"
|
msgid "Media Missing"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1107
|
#: deck.py:1115
|
||||||
#, fuzzy, python-format
|
#, fuzzy, python-format
|
||||||
msgid "Model '%s' has wrong card template count"
|
msgid "Model '%s' has wrong card template count"
|
||||||
msgstr "Le modèle '%s' avait le mauvais nombre de cartes"
|
msgstr "Le modèle '%s' avait le mauvais nombre de cartes"
|
||||||
|
|
||||||
#: deck.py:1111
|
#: deck.py:1119
|
||||||
#, fuzzy, python-format
|
#, fuzzy, python-format
|
||||||
msgid "Model '%s' has wrong field count"
|
msgid "Model '%s' has wrong field count"
|
||||||
msgstr "Le modèle '%s' avait le mauvais nombre de champs"
|
msgstr "Le modèle '%s' avait le mauvais nombre de champs"
|
||||||
|
@ -433,7 +445,7 @@ msgstr ""
|
||||||
msgid "New"
|
msgid "New"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:625
|
#: deck.py:627
|
||||||
msgid "No cards are due."
|
msgid "No cards are due."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -441,23 +453,23 @@ msgstr ""
|
||||||
msgid "Please add some cards first.<p/>"
|
msgid "Please add some cards first.<p/>"
|
||||||
msgstr "Veuillez d'abord ajouter des cartes.<p/>"
|
msgstr "Veuillez d'abord ajouter des cartes.<p/>"
|
||||||
|
|
||||||
#: deck.py:1877
|
#: deck.py:1886
|
||||||
msgid "Processing..."
|
msgid "Processing..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1722
|
#: deck.py:1731
|
||||||
msgid "Rebuilding QA cache..."
|
msgid "Rebuilding QA cache..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1742
|
#: deck.py:1751
|
||||||
msgid "Rebuilding counts..."
|
msgid "Rebuilding counts..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1748
|
#: deck.py:1757
|
||||||
msgid "Rebuilding queue..."
|
msgid "Rebuilding queue..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1740
|
#: deck.py:1749
|
||||||
msgid "Rebuilding types..."
|
msgid "Rebuilding types..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -477,21 +489,21 @@ msgstr "Le mois prochain"
|
||||||
msgid "Reps next week"
|
msgid "Reps next week"
|
||||||
msgstr "La semaine prochaine"
|
msgstr "La semaine prochaine"
|
||||||
|
|
||||||
#: deck.py:2412
|
#: deck.py:2421
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Review cards in order due"
|
msgid "Review cards in order due"
|
||||||
msgstr "Montrer les nouvelles cartes dans l'ordre de leur ajout"
|
msgstr "Montrer les nouvelles cartes dans l'ordre de leur ajout"
|
||||||
|
|
||||||
#: deck.py:2413
|
#: deck.py:2422
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Review cards in random order"
|
msgid "Review cards in random order"
|
||||||
msgstr "Montrer les nouvelles cartes au hasard"
|
msgstr "Montrer les nouvelles cartes au hasard"
|
||||||
|
|
||||||
#: deck.py:2411
|
#: deck.py:2420
|
||||||
msgid "Review newest cards first"
|
msgid "Review newest cards first"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:2410
|
#: deck.py:2419
|
||||||
msgid "Review oldest cards first"
|
msgid "Review oldest cards first"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -508,30 +520,30 @@ msgstr "Droite"
|
||||||
msgid "Scan fields..."
|
msgid "Scan fields..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:2404
|
#: deck.py:2413
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Show new cards after all other cards"
|
msgid "Show new cards after all other cards"
|
||||||
msgstr "Montrer les nouvelles cartes dans l'ordre de leur ajout"
|
msgstr "Montrer les nouvelles cartes dans l'ordre de leur ajout"
|
||||||
|
|
||||||
#: deck.py:2405
|
#: deck.py:2414
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Show new cards before reviews"
|
msgid "Show new cards before reviews"
|
||||||
msgstr "Montrer les nouvelles cartes dans l'ordre de leur ajout"
|
msgstr "Montrer les nouvelles cartes dans l'ordre de leur ajout"
|
||||||
|
|
||||||
#: deck.py:2398
|
#: deck.py:2407
|
||||||
msgid "Show new cards in order they were added"
|
msgid "Show new cards in order they were added"
|
||||||
msgstr "Montrer les nouvelles cartes dans l'ordre de leur ajout"
|
msgstr "Montrer les nouvelles cartes dans l'ordre de leur ajout"
|
||||||
|
|
||||||
#: deck.py:2397
|
#: deck.py:2406
|
||||||
msgid "Show new cards in random order"
|
msgid "Show new cards in random order"
|
||||||
msgstr "Montrer les nouvelles cartes au hasard"
|
msgstr "Montrer les nouvelles cartes au hasard"
|
||||||
|
|
||||||
#: deck.py:620
|
#: deck.py:622
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Spaced cards will be shown soon."
|
msgid "Spaced cards will be shown soon."
|
||||||
msgstr "La prochaine carte apparaîtra dans <b>%s</b>"
|
msgstr "La prochaine carte apparaîtra dans <b>%s</b>"
|
||||||
|
|
||||||
#: deck.py:2403
|
#: deck.py:2412
|
||||||
msgid "Spread new cards out through reviews"
|
msgid "Spread new cards out through reviews"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -539,15 +551,29 @@ msgstr ""
|
||||||
msgid "Text files (*.txt)"
|
msgid "Text files (*.txt)"
|
||||||
msgstr "Fichiers texte (*.txt)"
|
msgstr "Fichiers texte (*.txt)"
|
||||||
|
|
||||||
#: deck.py:1663
|
#: deck.py:1672
|
||||||
msgid "The current model didn't exist"
|
msgid "The current model didn't exist"
|
||||||
msgstr "Le modèle courant n'existait pas"
|
msgstr "Le modèle courant n'existait pas"
|
||||||
|
|
||||||
#: deck.py:622
|
#: deck.py:624
|
||||||
#, fuzzy, python-format
|
#, fuzzy, python-format
|
||||||
msgid "The next card will be shown in <b>%s</b>."
|
msgid "The next card will be shown in <b>%s</b>."
|
||||||
msgstr "La prochaine carte apparaîtra dans <b>%s</b>"
|
msgstr "La prochaine carte apparaîtra dans <b>%s</b>"
|
||||||
|
|
||||||
|
#: deck.py:615
|
||||||
|
#, python-format
|
||||||
|
msgid "There will be <b>%d</b> new card waiting for review."
|
||||||
|
msgid_plural "There will be <b>%d</b> new cards waiting for review."
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
|
#: deck.py:618
|
||||||
|
#, python-format
|
||||||
|
msgid "There will be <b>%s</b> card waiting."
|
||||||
|
msgid_plural "There will be <b>%s</b> cards waiting."
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
#: stats.py:288
|
#: stats.py:288
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Total Time"
|
msgid "Total Time"
|
||||||
|
@ -558,7 +584,7 @@ msgstr "Temps total"
|
||||||
msgid "Total number of cards: <b>%d</b><br><br>"
|
msgid "Total number of cards: <b>%d</b><br><br>"
|
||||||
msgstr "Nombre total de cartes : <b>%d</b><br><br>"
|
msgstr "Nombre total de cartes : <b>%d</b><br><br>"
|
||||||
|
|
||||||
#: deck.py:834
|
#: deck.py:842
|
||||||
msgid "Unknown"
|
msgid "Unknown"
|
||||||
msgstr "Inconnu"
|
msgstr "Inconnu"
|
||||||
|
|
||||||
|
@ -572,7 +598,7 @@ msgstr "Cartes non vues: <b>%(new)d</b> (<b>%(newP)0.2f%%</b>)<br><br>"
|
||||||
msgid "Update tags..."
|
msgid "Update tags..."
|
||||||
msgstr "Marqueurs de fait"
|
msgstr "Marqueurs de fait"
|
||||||
|
|
||||||
#: deck.py:1719
|
#: deck.py:1728
|
||||||
msgid "Updating priorities..."
|
msgid "Updating priorities..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -599,7 +625,7 @@ msgstr ""
|
||||||
msgid "in %s"
|
msgid "in %s"
|
||||||
msgstr "dans %s"
|
msgstr "dans %s"
|
||||||
|
|
||||||
#: deck.py:642
|
#: deck.py:644
|
||||||
msgid "unknown"
|
msgid "unknown"
|
||||||
msgstr "inconnu"
|
msgstr "inconnu"
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2009-01-20 00:49+0900\n"
|
"POT-Creation-Date: 2009-01-20 23:33+0900\n"
|
||||||
"PO-Revision-Date: 2008-10-25 13:26+0100\n"
|
"PO-Revision-Date: 2008-10-25 13:26+0100\n"
|
||||||
"Last-Translator: Marco Giancotti <nac.est@libero.it>\n"
|
"Last-Translator: Marco Giancotti <nac.est@libero.it>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -17,23 +17,35 @@ msgstr ""
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n>1;\n"
|
"Plural-Forms: nplurals=2; plural=n>1;\n"
|
||||||
|
|
||||||
#: deck.py:664
|
#: deck.py:669
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"\n"
|
||||||
|
"There is <b>%d</b>\n"
|
||||||
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-37d2db274e6caa23aef55e29655a6b806901774b\">\n"
|
||||||
|
"suspended</a> card."
|
||||||
|
msgid_plural ""
|
||||||
|
"\n"
|
||||||
"There are <b>%d</b>\n"
|
"There are <b>%d</b>\n"
|
||||||
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-37d2db274e6caa23aef55e29655a6b806901774b\">\n"
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-37d2db274e6caa23aef55e29655a6b806901774b\">\n"
|
||||||
"suspended</a> cards."
|
"suspended</a> cards."
|
||||||
msgstr ""
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
#: deck.py:656
|
#: deck.py:658
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"\n"
|
||||||
|
"There is <b>%d</b>\n"
|
||||||
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-787faa3eb21d7962f7719dc2722d34b7d74035ae\">\n"
|
||||||
|
"spaced</a> card."
|
||||||
|
msgid_plural ""
|
||||||
|
"\n"
|
||||||
"There are <b>%d</b>\n"
|
"There are <b>%d</b>\n"
|
||||||
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-59a81e35b6afb23930005e943068945214d194b3\">\n"
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-787faa3eb21d7962f7719dc2722d34b7d74035ae\">\n"
|
||||||
"spaced</a> cards."
|
"spaced</a> cards."
|
||||||
msgstr ""
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
#: stats.py:497
|
#: stats.py:497
|
||||||
#, python-format
|
#, python-format
|
||||||
|
@ -55,7 +67,7 @@ msgstr "%0.1f secondi"
|
||||||
msgid "%s ago"
|
msgid "%s ago"
|
||||||
msgstr "%s fa"
|
msgstr "%s fa"
|
||||||
|
|
||||||
#: deck.py:1184
|
#: deck.py:1192
|
||||||
#, fuzzy, python-format
|
#, fuzzy, python-format
|
||||||
msgid "%s copy"
|
msgid "%s copy"
|
||||||
msgstr "%s secondo"
|
msgstr "%s secondo"
|
||||||
|
@ -134,7 +146,7 @@ msgstr "<b>Conteggi carte</b><br>"
|
||||||
msgid "<b>Correct answers</b><br>"
|
msgid "<b>Correct answers</b><br>"
|
||||||
msgstr "<b>Risposte corrette</b><br>"
|
msgstr "<b>Risposte corrette</b><br>"
|
||||||
|
|
||||||
#: deck.py:670
|
#: deck.py:678
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"<div style=\"white-space: normal;\">\n"
|
"<div style=\"white-space: normal;\">\n"
|
||||||
|
@ -202,8 +214,8 @@ msgstr ""
|
||||||
#, fuzzy, python-format
|
#, fuzzy, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"At the same time tomorrow:<br><br>\n"
|
"At the same time tomorrow:<br><br>\n"
|
||||||
"There will be %(wait)s waiting for review.<br>\n"
|
"%(wait)s<br>\n"
|
||||||
"There will be %(new)s waiting."
|
"%(new)s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Alla stessa ora di domani:<br><br>\n"
|
"Alla stessa ora di domani:<br><br>\n"
|
||||||
"- Ci saranno <b>%(wait)d</b> carte in attesa di ripetizione<br>\n"
|
"- Ci saranno <b>%(wait)d</b> carte in attesa di ripetizione<br>\n"
|
||||||
|
@ -253,11 +265,11 @@ msgstr "Modificata"
|
||||||
msgid "Check Media DB"
|
msgid "Check Media DB"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1645
|
#: deck.py:1653
|
||||||
msgid "Checking integrity..."
|
msgid "Checking integrity..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1654
|
#: deck.py:1663
|
||||||
msgid "Checking schema..."
|
msgid "Checking schema..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -265,7 +277,7 @@ msgstr ""
|
||||||
msgid "Checksum files..."
|
msgid "Checksum files..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1647
|
#: deck.py:1656
|
||||||
msgid "Database file damaged. Restore from backup."
|
msgid "Database file damaged. Restore from backup."
|
||||||
msgstr "Il file del database è danneggiato. Ripristina da backup."
|
msgstr "Il file del database è danneggiato. Ripristina da backup."
|
||||||
|
|
||||||
|
@ -278,7 +290,7 @@ msgstr "Statistiche mazzo"
|
||||||
msgid "Deck created: <b>%s</b> ago<br>"
|
msgid "Deck created: <b>%s</b> ago<br>"
|
||||||
msgstr "Mazzo creato: <b>%s</b> fa<br>"
|
msgstr "Mazzo creato: <b>%s</b> fa<br>"
|
||||||
|
|
||||||
#: deck.py:1657
|
#: deck.py:1666
|
||||||
msgid "Deck was missing a model"
|
msgid "Deck was missing a model"
|
||||||
msgstr "Il mazzo aveva un modello mancante"
|
msgstr "Il mazzo aveva un modello mancante"
|
||||||
|
|
||||||
|
@ -290,27 +302,27 @@ msgstr ""
|
||||||
msgid "Delete unused files..."
|
msgid "Delete unused files..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1685
|
#: deck.py:1694
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deleted %d cards with missing fact"
|
msgid "Deleted %d cards with missing fact"
|
||||||
msgstr "Eliminate %d carte con fatti mancanti"
|
msgstr "Eliminate %d carte con fatti mancanti"
|
||||||
|
|
||||||
#: deck.py:1693
|
#: deck.py:1702
|
||||||
#, fuzzy, python-format
|
#, fuzzy, python-format
|
||||||
msgid "Deleted %d cards with no card template"
|
msgid "Deleted %d cards with no card template"
|
||||||
msgstr "Eliminate %d carte con modelli mancanti"
|
msgstr "Eliminate %d carte con modelli mancanti"
|
||||||
|
|
||||||
#: deck.py:1706
|
#: deck.py:1715
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deleted %d dangling fields"
|
msgid "Deleted %d dangling fields"
|
||||||
msgstr "Eliminati %d campi in avanzo"
|
msgstr "Eliminati %d campi in avanzo"
|
||||||
|
|
||||||
#: deck.py:1678
|
#: deck.py:1687
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deleted %d facts with missing fields"
|
msgid "Deleted %d facts with missing fields"
|
||||||
msgstr "Eliminati %d fatti con campi mancanti"
|
msgstr "Eliminati %d fatti con campi mancanti"
|
||||||
|
|
||||||
#: deck.py:1698
|
#: deck.py:1707
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deleted %d facts with no cards"
|
msgid "Deleted %d facts with no cards"
|
||||||
msgstr "Eliminati %d fatti privi di carte"
|
msgstr "Eliminati %d fatti privi di carte"
|
||||||
|
@ -339,7 +351,7 @@ msgstr ""
|
||||||
msgid "Facts in tab-separated text file (*.txt)"
|
msgid "Facts in tab-separated text file (*.txt)"
|
||||||
msgstr "Fatti in file di testo con colonne separate da tab (*.txt)"
|
msgstr "Fatti in file di testo con colonne separate da tab (*.txt)"
|
||||||
|
|
||||||
#: deck.py:2002
|
#: deck.py:2011
|
||||||
msgid "File is in use by another process"
|
msgid "File is in use by another process"
|
||||||
msgstr "Il file è già utilizzato da un altro processo"
|
msgstr "Il file è già utilizzato da un altro processo"
|
||||||
|
|
||||||
|
@ -413,12 +425,12 @@ msgstr "Carte mature: <b>%(old)d</b> (<b>%(oldP)0.2f%%</b>)<br>"
|
||||||
msgid "Media Missing"
|
msgid "Media Missing"
|
||||||
msgstr "File multimediale mancante"
|
msgstr "File multimediale mancante"
|
||||||
|
|
||||||
#: deck.py:1107
|
#: deck.py:1115
|
||||||
#, fuzzy, python-format
|
#, fuzzy, python-format
|
||||||
msgid "Model '%s' has wrong card template count"
|
msgid "Model '%s' has wrong card template count"
|
||||||
msgstr "Il modello '%s' ha un numero sbagliato di carte"
|
msgstr "Il modello '%s' ha un numero sbagliato di carte"
|
||||||
|
|
||||||
#: deck.py:1111
|
#: deck.py:1119
|
||||||
#, fuzzy, python-format
|
#, fuzzy, python-format
|
||||||
msgid "Model '%s' has wrong field count"
|
msgid "Model '%s' has wrong field count"
|
||||||
msgstr "Il modello '%s' ha un numero sbagliato di campi"
|
msgstr "Il modello '%s' ha un numero sbagliato di campi"
|
||||||
|
@ -436,7 +448,7 @@ msgstr ""
|
||||||
msgid "New"
|
msgid "New"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:625
|
#: deck.py:627
|
||||||
msgid "No cards are due."
|
msgid "No cards are due."
|
||||||
msgstr "Non ci sono carte pronte per la ripetizione."
|
msgstr "Non ci sono carte pronte per la ripetizione."
|
||||||
|
|
||||||
|
@ -444,23 +456,23 @@ msgstr "Non ci sono carte pronte per la ripetizione."
|
||||||
msgid "Please add some cards first.<p/>"
|
msgid "Please add some cards first.<p/>"
|
||||||
msgstr "Aggiungere un po' di carte prima di iniziare.<p/>"
|
msgstr "Aggiungere un po' di carte prima di iniziare.<p/>"
|
||||||
|
|
||||||
#: deck.py:1877
|
#: deck.py:1886
|
||||||
msgid "Processing..."
|
msgid "Processing..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1722
|
#: deck.py:1731
|
||||||
msgid "Rebuilding QA cache..."
|
msgid "Rebuilding QA cache..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1742
|
#: deck.py:1751
|
||||||
msgid "Rebuilding counts..."
|
msgid "Rebuilding counts..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1748
|
#: deck.py:1757
|
||||||
msgid "Rebuilding queue..."
|
msgid "Rebuilding queue..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1740
|
#: deck.py:1749
|
||||||
msgid "Rebuilding types..."
|
msgid "Rebuilding types..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -480,21 +492,21 @@ msgstr "Ripetizioni prossimo mese"
|
||||||
msgid "Reps next week"
|
msgid "Reps next week"
|
||||||
msgstr "Ripetizioni prossima settimana"
|
msgstr "Ripetizioni prossima settimana"
|
||||||
|
|
||||||
#: deck.py:2412
|
#: deck.py:2421
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Review cards in order due"
|
msgid "Review cards in order due"
|
||||||
msgstr "Mostra le carte nuove nell'ordine in cui sono state aggiunte"
|
msgstr "Mostra le carte nuove nell'ordine in cui sono state aggiunte"
|
||||||
|
|
||||||
#: deck.py:2413
|
#: deck.py:2422
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Review cards in random order"
|
msgid "Review cards in random order"
|
||||||
msgstr "Mostra le carte nuove in ordine casuale"
|
msgstr "Mostra le carte nuove in ordine casuale"
|
||||||
|
|
||||||
#: deck.py:2411
|
#: deck.py:2420
|
||||||
msgid "Review newest cards first"
|
msgid "Review newest cards first"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:2410
|
#: deck.py:2419
|
||||||
msgid "Review oldest cards first"
|
msgid "Review oldest cards first"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -511,29 +523,29 @@ msgstr "Destra"
|
||||||
msgid "Scan fields..."
|
msgid "Scan fields..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:2404
|
#: deck.py:2413
|
||||||
msgid "Show new cards after all other cards"
|
msgid "Show new cards after all other cards"
|
||||||
msgstr "Mostra le carte nuove dopo tutte le altre"
|
msgstr "Mostra le carte nuove dopo tutte le altre"
|
||||||
|
|
||||||
#: deck.py:2405
|
#: deck.py:2414
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Show new cards before reviews"
|
msgid "Show new cards before reviews"
|
||||||
msgstr "Distribuisci le carte nuove su tutta la sequenza di ripetizione"
|
msgstr "Distribuisci le carte nuove su tutta la sequenza di ripetizione"
|
||||||
|
|
||||||
#: deck.py:2398
|
#: deck.py:2407
|
||||||
msgid "Show new cards in order they were added"
|
msgid "Show new cards in order they were added"
|
||||||
msgstr "Mostra le carte nuove nell'ordine in cui sono state aggiunte"
|
msgstr "Mostra le carte nuove nell'ordine in cui sono state aggiunte"
|
||||||
|
|
||||||
#: deck.py:2397
|
#: deck.py:2406
|
||||||
msgid "Show new cards in random order"
|
msgid "Show new cards in random order"
|
||||||
msgstr "Mostra le carte nuove in ordine casuale"
|
msgstr "Mostra le carte nuove in ordine casuale"
|
||||||
|
|
||||||
#: deck.py:620
|
#: deck.py:622
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Spaced cards will be shown soon."
|
msgid "Spaced cards will be shown soon."
|
||||||
msgstr "La prossima carta sarà mostrata tra <b>%s</b>"
|
msgstr "La prossima carta sarà mostrata tra <b>%s</b>"
|
||||||
|
|
||||||
#: deck.py:2403
|
#: deck.py:2412
|
||||||
msgid "Spread new cards out through reviews"
|
msgid "Spread new cards out through reviews"
|
||||||
msgstr "Distribuisci le carte nuove su tutta la sequenza di ripetizione"
|
msgstr "Distribuisci le carte nuove su tutta la sequenza di ripetizione"
|
||||||
|
|
||||||
|
@ -541,15 +553,29 @@ msgstr "Distribuisci le carte nuove su tutta la sequenza di ripetizione"
|
||||||
msgid "Text files (*.txt)"
|
msgid "Text files (*.txt)"
|
||||||
msgstr "File di testo (*.txt)"
|
msgstr "File di testo (*.txt)"
|
||||||
|
|
||||||
#: deck.py:1663
|
#: deck.py:1672
|
||||||
msgid "The current model didn't exist"
|
msgid "The current model didn't exist"
|
||||||
msgstr "Il modello corrente non esiste"
|
msgstr "Il modello corrente non esiste"
|
||||||
|
|
||||||
#: deck.py:622
|
#: deck.py:624
|
||||||
#, fuzzy, python-format
|
#, fuzzy, python-format
|
||||||
msgid "The next card will be shown in <b>%s</b>."
|
msgid "The next card will be shown in <b>%s</b>."
|
||||||
msgstr "La prossima carta sarà mostrata tra <b>%s</b>"
|
msgstr "La prossima carta sarà mostrata tra <b>%s</b>"
|
||||||
|
|
||||||
|
#: deck.py:615
|
||||||
|
#, python-format
|
||||||
|
msgid "There will be <b>%d</b> new card waiting for review."
|
||||||
|
msgid_plural "There will be <b>%d</b> new cards waiting for review."
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
|
#: deck.py:618
|
||||||
|
#, python-format
|
||||||
|
msgid "There will be <b>%s</b> card waiting."
|
||||||
|
msgid_plural "There will be <b>%s</b> cards waiting."
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
#: stats.py:288
|
#: stats.py:288
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Total Time"
|
msgid "Total Time"
|
||||||
|
@ -560,7 +586,7 @@ msgstr "Tempo totale"
|
||||||
msgid "Total number of cards: <b>%d</b><br><br>"
|
msgid "Total number of cards: <b>%d</b><br><br>"
|
||||||
msgstr "Numero totale di carte: <b>%d</b><br><br>"
|
msgstr "Numero totale di carte: <b>%d</b><br><br>"
|
||||||
|
|
||||||
#: deck.py:834
|
#: deck.py:842
|
||||||
msgid "Unknown"
|
msgid "Unknown"
|
||||||
msgstr "Sconosciuto"
|
msgstr "Sconosciuto"
|
||||||
|
|
||||||
|
@ -574,7 +600,7 @@ msgstr "Carte non ancora viste: <b>%(new)d</b> (<b>%(newP)0.2f%%</b>)<br><br>"
|
||||||
msgid "Update tags..."
|
msgid "Update tags..."
|
||||||
msgstr "Tag dei fatti"
|
msgstr "Tag dei fatti"
|
||||||
|
|
||||||
#: deck.py:1719
|
#: deck.py:1728
|
||||||
msgid "Updating priorities..."
|
msgid "Updating priorities..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -601,7 +627,7 @@ msgstr ""
|
||||||
msgid "in %s"
|
msgid "in %s"
|
||||||
msgstr "tra %s"
|
msgstr "tra %s"
|
||||||
|
|
||||||
#: deck.py:642
|
#: deck.py:644
|
||||||
msgid "unknown"
|
msgid "unknown"
|
||||||
msgstr "sconosciuto"
|
msgstr "sconosciuto"
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2009-01-20 00:49+0900\n"
|
"POT-Creation-Date: 2009-01-20 23:33+0900\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: Damien Elmes <anki@ichi2.net>\n"
|
"Last-Translator: Damien Elmes <anki@ichi2.net>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -15,23 +15,35 @@ msgstr ""
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: deck.py:664
|
#: deck.py:669
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"\n"
|
||||||
|
"There is <b>%d</b>\n"
|
||||||
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-37d2db274e6caa23aef55e29655a6b806901774b\">\n"
|
||||||
|
"suspended</a> card."
|
||||||
|
msgid_plural ""
|
||||||
|
"\n"
|
||||||
"There are <b>%d</b>\n"
|
"There are <b>%d</b>\n"
|
||||||
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-37d2db274e6caa23aef55e29655a6b806901774b\">\n"
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-37d2db274e6caa23aef55e29655a6b806901774b\">\n"
|
||||||
"suspended</a> cards."
|
"suspended</a> cards."
|
||||||
msgstr ""
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
#: deck.py:656
|
#: deck.py:658
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"\n"
|
||||||
|
"There is <b>%d</b>\n"
|
||||||
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-787faa3eb21d7962f7719dc2722d34b7d74035ae\">\n"
|
||||||
|
"spaced</a> card."
|
||||||
|
msgid_plural ""
|
||||||
|
"\n"
|
||||||
"There are <b>%d</b>\n"
|
"There are <b>%d</b>\n"
|
||||||
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-59a81e35b6afb23930005e943068945214d194b3\">\n"
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-787faa3eb21d7962f7719dc2722d34b7d74035ae\">\n"
|
||||||
"spaced</a> cards."
|
"spaced</a> cards."
|
||||||
msgstr ""
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
#: stats.py:497
|
#: stats.py:497
|
||||||
#, python-format
|
#, python-format
|
||||||
|
@ -53,7 +65,7 @@ msgstr ""
|
||||||
msgid "%s ago"
|
msgid "%s ago"
|
||||||
msgstr "%s前"
|
msgstr "%s前"
|
||||||
|
|
||||||
#: deck.py:1184
|
#: deck.py:1192
|
||||||
#, fuzzy, python-format
|
#, fuzzy, python-format
|
||||||
msgid "%s copy"
|
msgid "%s copy"
|
||||||
msgstr "%s秒"
|
msgstr "%s秒"
|
||||||
|
@ -132,7 +144,7 @@ msgstr ""
|
||||||
msgid "<b>Correct answers</b><br>"
|
msgid "<b>Correct answers</b><br>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:670
|
#: deck.py:678
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"<div style=\"white-space: normal;\">\n"
|
"<div style=\"white-space: normal;\">\n"
|
||||||
|
@ -193,8 +205,8 @@ msgstr ""
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"At the same time tomorrow:<br><br>\n"
|
"At the same time tomorrow:<br><br>\n"
|
||||||
"There will be %(wait)s waiting for review.<br>\n"
|
"%(wait)s<br>\n"
|
||||||
"There will be %(new)s waiting."
|
"%(new)s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: stats.py:286
|
#: stats.py:286
|
||||||
|
@ -237,11 +249,11 @@ msgstr ""
|
||||||
msgid "Check Media DB"
|
msgid "Check Media DB"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1645
|
#: deck.py:1653
|
||||||
msgid "Checking integrity..."
|
msgid "Checking integrity..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1654
|
#: deck.py:1663
|
||||||
msgid "Checking schema..."
|
msgid "Checking schema..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -249,7 +261,7 @@ msgstr ""
|
||||||
msgid "Checksum files..."
|
msgid "Checksum files..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1647
|
#: deck.py:1656
|
||||||
msgid "Database file damaged. Restore from backup."
|
msgid "Database file damaged. Restore from backup."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -262,7 +274,7 @@ msgstr ""
|
||||||
msgid "Deck created: <b>%s</b> ago<br>"
|
msgid "Deck created: <b>%s</b> ago<br>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1657
|
#: deck.py:1666
|
||||||
msgid "Deck was missing a model"
|
msgid "Deck was missing a model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -274,27 +286,27 @@ msgstr ""
|
||||||
msgid "Delete unused files..."
|
msgid "Delete unused files..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1685
|
#: deck.py:1694
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deleted %d cards with missing fact"
|
msgid "Deleted %d cards with missing fact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1693
|
#: deck.py:1702
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deleted %d cards with no card template"
|
msgid "Deleted %d cards with no card template"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1706
|
#: deck.py:1715
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deleted %d dangling fields"
|
msgid "Deleted %d dangling fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1678
|
#: deck.py:1687
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deleted %d facts with missing fields"
|
msgid "Deleted %d facts with missing fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1698
|
#: deck.py:1707
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deleted %d facts with no cards"
|
msgid "Deleted %d facts with no cards"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -323,7 +335,7 @@ msgstr ""
|
||||||
msgid "Facts in tab-separated text file (*.txt)"
|
msgid "Facts in tab-separated text file (*.txt)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:2002
|
#: deck.py:2011
|
||||||
msgid "File is in use by another process"
|
msgid "File is in use by another process"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -394,12 +406,12 @@ msgstr ""
|
||||||
msgid "Media Missing"
|
msgid "Media Missing"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1107
|
#: deck.py:1115
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Model '%s' has wrong card template count"
|
msgid "Model '%s' has wrong card template count"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1111
|
#: deck.py:1119
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Model '%s' has wrong field count"
|
msgid "Model '%s' has wrong field count"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -416,7 +428,7 @@ msgstr ""
|
||||||
msgid "New"
|
msgid "New"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:625
|
#: deck.py:627
|
||||||
msgid "No cards are due."
|
msgid "No cards are due."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -424,23 +436,23 @@ msgstr ""
|
||||||
msgid "Please add some cards first.<p/>"
|
msgid "Please add some cards first.<p/>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1877
|
#: deck.py:1886
|
||||||
msgid "Processing..."
|
msgid "Processing..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1722
|
#: deck.py:1731
|
||||||
msgid "Rebuilding QA cache..."
|
msgid "Rebuilding QA cache..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1742
|
#: deck.py:1751
|
||||||
msgid "Rebuilding counts..."
|
msgid "Rebuilding counts..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1748
|
#: deck.py:1757
|
||||||
msgid "Rebuilding queue..."
|
msgid "Rebuilding queue..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1740
|
#: deck.py:1749
|
||||||
msgid "Rebuilding types..."
|
msgid "Rebuilding types..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -462,19 +474,19 @@ msgstr "%sヶ月"
|
||||||
msgid "Reps next week"
|
msgid "Reps next week"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:2412
|
#: deck.py:2421
|
||||||
msgid "Review cards in order due"
|
msgid "Review cards in order due"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:2413
|
#: deck.py:2422
|
||||||
msgid "Review cards in random order"
|
msgid "Review cards in random order"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:2411
|
#: deck.py:2420
|
||||||
msgid "Review newest cards first"
|
msgid "Review newest cards first"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:2410
|
#: deck.py:2419
|
||||||
msgid "Review oldest cards first"
|
msgid "Review oldest cards first"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -490,27 +502,27 @@ msgstr ""
|
||||||
msgid "Scan fields..."
|
msgid "Scan fields..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:2404
|
#: deck.py:2413
|
||||||
msgid "Show new cards after all other cards"
|
msgid "Show new cards after all other cards"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:2405
|
#: deck.py:2414
|
||||||
msgid "Show new cards before reviews"
|
msgid "Show new cards before reviews"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:2398
|
#: deck.py:2407
|
||||||
msgid "Show new cards in order they were added"
|
msgid "Show new cards in order they were added"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:2397
|
#: deck.py:2406
|
||||||
msgid "Show new cards in random order"
|
msgid "Show new cards in random order"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:620
|
#: deck.py:622
|
||||||
msgid "Spaced cards will be shown soon."
|
msgid "Spaced cards will be shown soon."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:2403
|
#: deck.py:2412
|
||||||
msgid "Spread new cards out through reviews"
|
msgid "Spread new cards out through reviews"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -518,15 +530,29 @@ msgstr ""
|
||||||
msgid "Text files (*.txt)"
|
msgid "Text files (*.txt)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1663
|
#: deck.py:1672
|
||||||
msgid "The current model didn't exist"
|
msgid "The current model didn't exist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:622
|
#: deck.py:624
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "The next card will be shown in <b>%s</b>."
|
msgid "The next card will be shown in <b>%s</b>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: deck.py:615
|
||||||
|
#, python-format
|
||||||
|
msgid "There will be <b>%d</b> new card waiting for review."
|
||||||
|
msgid_plural "There will be <b>%d</b> new cards waiting for review."
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
|
#: deck.py:618
|
||||||
|
#, python-format
|
||||||
|
msgid "There will be <b>%s</b> card waiting."
|
||||||
|
msgid_plural "There will be <b>%s</b> cards waiting."
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
#: stats.py:288
|
#: stats.py:288
|
||||||
msgid "Total Time"
|
msgid "Total Time"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -536,7 +562,7 @@ msgstr ""
|
||||||
msgid "Total number of cards: <b>%d</b><br><br>"
|
msgid "Total number of cards: <b>%d</b><br><br>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:834
|
#: deck.py:842
|
||||||
msgid "Unknown"
|
msgid "Unknown"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -549,7 +575,7 @@ msgstr ""
|
||||||
msgid "Update tags..."
|
msgid "Update tags..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1719
|
#: deck.py:1728
|
||||||
msgid "Updating priorities..."
|
msgid "Updating priorities..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -576,7 +602,7 @@ msgstr ""
|
||||||
msgid "in %s"
|
msgid "in %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:642
|
#: deck.py:644
|
||||||
msgid "unknown"
|
msgid "unknown"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2009-01-20 00:49+0900\n"
|
"POT-Creation-Date: 2009-01-20 23:33+0900\n"
|
||||||
"PO-Revision-Date: 2008-05-24 09:18+0900\n"
|
"PO-Revision-Date: 2008-05-24 09:18+0900\n"
|
||||||
"Last-Translator: Jin Eun-Deok <jin.eundeok@gmail.com>\n"
|
"Last-Translator: Jin Eun-Deok <jin.eundeok@gmail.com>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -15,23 +15,35 @@ msgstr ""
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: deck.py:664
|
#: deck.py:669
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"\n"
|
||||||
|
"There is <b>%d</b>\n"
|
||||||
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-37d2db274e6caa23aef55e29655a6b806901774b\">\n"
|
||||||
|
"suspended</a> card."
|
||||||
|
msgid_plural ""
|
||||||
|
"\n"
|
||||||
"There are <b>%d</b>\n"
|
"There are <b>%d</b>\n"
|
||||||
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-37d2db274e6caa23aef55e29655a6b806901774b\">\n"
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-37d2db274e6caa23aef55e29655a6b806901774b\">\n"
|
||||||
"suspended</a> cards."
|
"suspended</a> cards."
|
||||||
msgstr ""
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
#: deck.py:656
|
#: deck.py:658
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"\n"
|
||||||
|
"There is <b>%d</b>\n"
|
||||||
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-787faa3eb21d7962f7719dc2722d34b7d74035ae\">\n"
|
||||||
|
"spaced</a> card."
|
||||||
|
msgid_plural ""
|
||||||
|
"\n"
|
||||||
"There are <b>%d</b>\n"
|
"There are <b>%d</b>\n"
|
||||||
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-59a81e35b6afb23930005e943068945214d194b3\">\n"
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-787faa3eb21d7962f7719dc2722d34b7d74035ae\">\n"
|
||||||
"spaced</a> cards."
|
"spaced</a> cards."
|
||||||
msgstr ""
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
#: stats.py:497
|
#: stats.py:497
|
||||||
#, python-format
|
#, python-format
|
||||||
|
@ -53,7 +65,7 @@ msgstr "%0.1f초"
|
||||||
msgid "%s ago"
|
msgid "%s ago"
|
||||||
msgstr "%s전"
|
msgstr "%s전"
|
||||||
|
|
||||||
#: deck.py:1184
|
#: deck.py:1192
|
||||||
#, fuzzy, python-format
|
#, fuzzy, python-format
|
||||||
msgid "%s copy"
|
msgid "%s copy"
|
||||||
msgstr "%s초"
|
msgstr "%s초"
|
||||||
|
@ -132,7 +144,7 @@ msgstr "<b>카드 개수</b><br>"
|
||||||
msgid "<b>Correct answers</b><br>"
|
msgid "<b>Correct answers</b><br>"
|
||||||
msgstr "<b>정답률</b><br>"
|
msgstr "<b>정답률</b><br>"
|
||||||
|
|
||||||
#: deck.py:670
|
#: deck.py:678
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"<div style=\"white-space: normal;\">\n"
|
"<div style=\"white-space: normal;\">\n"
|
||||||
|
@ -193,8 +205,8 @@ msgstr ""
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"At the same time tomorrow:<br><br>\n"
|
"At the same time tomorrow:<br><br>\n"
|
||||||
"There will be %(wait)s waiting for review.<br>\n"
|
"%(wait)s<br>\n"
|
||||||
"There will be %(new)s waiting."
|
"%(new)s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: stats.py:286
|
#: stats.py:286
|
||||||
|
@ -241,11 +253,11 @@ msgstr "변경"
|
||||||
msgid "Check Media DB"
|
msgid "Check Media DB"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1645
|
#: deck.py:1653
|
||||||
msgid "Checking integrity..."
|
msgid "Checking integrity..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1654
|
#: deck.py:1663
|
||||||
msgid "Checking schema..."
|
msgid "Checking schema..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -253,7 +265,7 @@ msgstr ""
|
||||||
msgid "Checksum files..."
|
msgid "Checksum files..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1647
|
#: deck.py:1656
|
||||||
msgid "Database file damaged. Restore from backup."
|
msgid "Database file damaged. Restore from backup."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -266,7 +278,7 @@ msgstr "묶음 통계"
|
||||||
msgid "Deck created: <b>%s</b> ago<br>"
|
msgid "Deck created: <b>%s</b> ago<br>"
|
||||||
msgstr "묶음 생성: <b>%s</b> 전<br>"
|
msgstr "묶음 생성: <b>%s</b> 전<br>"
|
||||||
|
|
||||||
#: deck.py:1657
|
#: deck.py:1666
|
||||||
msgid "Deck was missing a model"
|
msgid "Deck was missing a model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -278,27 +290,27 @@ msgstr ""
|
||||||
msgid "Delete unused files..."
|
msgid "Delete unused files..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1685
|
#: deck.py:1694
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deleted %d cards with missing fact"
|
msgid "Deleted %d cards with missing fact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1693
|
#: deck.py:1702
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deleted %d cards with no card template"
|
msgid "Deleted %d cards with no card template"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1706
|
#: deck.py:1715
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deleted %d dangling fields"
|
msgid "Deleted %d dangling fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1678
|
#: deck.py:1687
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deleted %d facts with missing fields"
|
msgid "Deleted %d facts with missing fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1698
|
#: deck.py:1707
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deleted %d facts with no cards"
|
msgid "Deleted %d facts with no cards"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -327,7 +339,7 @@ msgstr ""
|
||||||
msgid "Facts in tab-separated text file (*.txt)"
|
msgid "Facts in tab-separated text file (*.txt)"
|
||||||
msgstr "탭으로 구분한 지식 텍스트 파일 (*.txt)"
|
msgstr "탭으로 구분한 지식 텍스트 파일 (*.txt)"
|
||||||
|
|
||||||
#: deck.py:2002
|
#: deck.py:2011
|
||||||
msgid "File is in use by another process"
|
msgid "File is in use by another process"
|
||||||
msgstr "다른 프로세스가 파일을 사용하고 있습니다."
|
msgstr "다른 프로세스가 파일을 사용하고 있습니다."
|
||||||
|
|
||||||
|
@ -404,12 +416,12 @@ msgstr "성숙한 카드: <b>%(old)d</b> (<b>%(oldP)0.2f%%</b>)<br>"
|
||||||
msgid "Media Missing"
|
msgid "Media Missing"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1107
|
#: deck.py:1115
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Model '%s' has wrong card template count"
|
msgid "Model '%s' has wrong card template count"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1111
|
#: deck.py:1119
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Model '%s' has wrong field count"
|
msgid "Model '%s' has wrong field count"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -427,7 +439,7 @@ msgstr ""
|
||||||
msgid "New"
|
msgid "New"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:625
|
#: deck.py:627
|
||||||
msgid "No cards are due."
|
msgid "No cards are due."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -435,23 +447,23 @@ msgstr ""
|
||||||
msgid "Please add some cards first.<p/>"
|
msgid "Please add some cards first.<p/>"
|
||||||
msgstr "카드를 먼저 추가해 주세요.<p/>"
|
msgstr "카드를 먼저 추가해 주세요.<p/>"
|
||||||
|
|
||||||
#: deck.py:1877
|
#: deck.py:1886
|
||||||
msgid "Processing..."
|
msgid "Processing..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1722
|
#: deck.py:1731
|
||||||
msgid "Rebuilding QA cache..."
|
msgid "Rebuilding QA cache..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1742
|
#: deck.py:1751
|
||||||
msgid "Rebuilding counts..."
|
msgid "Rebuilding counts..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1748
|
#: deck.py:1757
|
||||||
msgid "Rebuilding queue..."
|
msgid "Rebuilding queue..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1740
|
#: deck.py:1749
|
||||||
msgid "Rebuilding types..."
|
msgid "Rebuilding types..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -473,21 +485,21 @@ msgstr "%s개월"
|
||||||
msgid "Reps next week"
|
msgid "Reps next week"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:2412
|
#: deck.py:2421
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Review cards in order due"
|
msgid "Review cards in order due"
|
||||||
msgstr "추가된 순서대로 보여주기"
|
msgstr "추가된 순서대로 보여주기"
|
||||||
|
|
||||||
#: deck.py:2413
|
#: deck.py:2422
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Review cards in random order"
|
msgid "Review cards in random order"
|
||||||
msgstr "무작위로 보여주기"
|
msgstr "무작위로 보여주기"
|
||||||
|
|
||||||
#: deck.py:2411
|
#: deck.py:2420
|
||||||
msgid "Review newest cards first"
|
msgid "Review newest cards first"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:2410
|
#: deck.py:2419
|
||||||
msgid "Review oldest cards first"
|
msgid "Review oldest cards first"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -504,29 +516,29 @@ msgstr "오른쪽"
|
||||||
msgid "Scan fields..."
|
msgid "Scan fields..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:2404
|
#: deck.py:2413
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Show new cards after all other cards"
|
msgid "Show new cards after all other cards"
|
||||||
msgstr "추가된 순서대로 보여주기"
|
msgstr "추가된 순서대로 보여주기"
|
||||||
|
|
||||||
#: deck.py:2405
|
#: deck.py:2414
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Show new cards before reviews"
|
msgid "Show new cards before reviews"
|
||||||
msgstr "추가된 순서대로 보여주기"
|
msgstr "추가된 순서대로 보여주기"
|
||||||
|
|
||||||
#: deck.py:2398
|
#: deck.py:2407
|
||||||
msgid "Show new cards in order they were added"
|
msgid "Show new cards in order they were added"
|
||||||
msgstr "추가된 순서대로 보여주기"
|
msgstr "추가된 순서대로 보여주기"
|
||||||
|
|
||||||
#: deck.py:2397
|
#: deck.py:2406
|
||||||
msgid "Show new cards in random order"
|
msgid "Show new cards in random order"
|
||||||
msgstr "무작위로 보여주기"
|
msgstr "무작위로 보여주기"
|
||||||
|
|
||||||
#: deck.py:620
|
#: deck.py:622
|
||||||
msgid "Spaced cards will be shown soon."
|
msgid "Spaced cards will be shown soon."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:2403
|
#: deck.py:2412
|
||||||
msgid "Spread new cards out through reviews"
|
msgid "Spread new cards out through reviews"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -534,15 +546,29 @@ msgstr ""
|
||||||
msgid "Text files (*.txt)"
|
msgid "Text files (*.txt)"
|
||||||
msgstr "텍스트 파일 (*.txt)"
|
msgstr "텍스트 파일 (*.txt)"
|
||||||
|
|
||||||
#: deck.py:1663
|
#: deck.py:1672
|
||||||
msgid "The current model didn't exist"
|
msgid "The current model didn't exist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:622
|
#: deck.py:624
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "The next card will be shown in <b>%s</b>."
|
msgid "The next card will be shown in <b>%s</b>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: deck.py:615
|
||||||
|
#, python-format
|
||||||
|
msgid "There will be <b>%d</b> new card waiting for review."
|
||||||
|
msgid_plural "There will be <b>%d</b> new cards waiting for review."
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
|
#: deck.py:618
|
||||||
|
#, python-format
|
||||||
|
msgid "There will be <b>%s</b> card waiting."
|
||||||
|
msgid_plural "There will be <b>%s</b> cards waiting."
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
#: stats.py:288
|
#: stats.py:288
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Total Time"
|
msgid "Total Time"
|
||||||
|
@ -553,7 +579,7 @@ msgstr "전체 시간"
|
||||||
msgid "Total number of cards: <b>%d</b><br><br>"
|
msgid "Total number of cards: <b>%d</b><br><br>"
|
||||||
msgstr "전체 카드 개수: <b>%d</b><br><br>"
|
msgstr "전체 카드 개수: <b>%d</b><br><br>"
|
||||||
|
|
||||||
#: deck.py:834
|
#: deck.py:842
|
||||||
msgid "Unknown"
|
msgid "Unknown"
|
||||||
msgstr "알 수 없음"
|
msgstr "알 수 없음"
|
||||||
|
|
||||||
|
@ -567,7 +593,7 @@ msgstr "시작하지 않은 카드: <b>%(new)d</b> (<b>%(newP)0.2f%%</b>)<br><br
|
||||||
msgid "Update tags..."
|
msgid "Update tags..."
|
||||||
msgstr "지식 꼬리표"
|
msgstr "지식 꼬리표"
|
||||||
|
|
||||||
#: deck.py:1719
|
#: deck.py:1728
|
||||||
msgid "Updating priorities..."
|
msgid "Updating priorities..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -594,7 +620,7 @@ msgstr ""
|
||||||
msgid "in %s"
|
msgid "in %s"
|
||||||
msgstr "%s 안에"
|
msgstr "%s 안에"
|
||||||
|
|
||||||
#: deck.py:642
|
#: deck.py:644
|
||||||
msgid "unknown"
|
msgid "unknown"
|
||||||
msgstr "알 수 없음"
|
msgstr "알 수 없음"
|
||||||
|
|
||||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: libanki_pl_PL\n"
|
"Project-Id-Version: libanki_pl_PL\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2009-01-20 00:49+0900\n"
|
"POT-Creation-Date: 2009-01-20 23:33+0900\n"
|
||||||
"PO-Revision-Date: 2009-01-17 23:05+0100\n"
|
"PO-Revision-Date: 2009-01-20 13:19+0100\n"
|
||||||
"Last-Translator: Piotr Kubowicz <derbeth-fora@wp.pl>\n"
|
"Last-Translator: Piotr Kubowicz <derbeth-fora@wp.pl>\n"
|
||||||
"Language-Team: polski <pl@li.org>\n"
|
"Language-Team: polski <pl@li.org>\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -17,23 +17,61 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||||
"X-Generator: KBabel 1.11.4\n"
|
"X-Generator: KBabel 1.11.4\n"
|
||||||
|
|
||||||
#: deck.py:664
|
#: deck.py:669
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"\n"
|
||||||
|
"There is <b>%d</b>\n"
|
||||||
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-37d2db274e6caa23aef55e29655a6b806901774b\">\n"
|
||||||
|
"suspended</a> card."
|
||||||
|
msgid_plural ""
|
||||||
|
"\n"
|
||||||
"There are <b>%d</b>\n"
|
"There are <b>%d</b>\n"
|
||||||
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-37d2db274e6caa23aef55e29655a6b806901774b\">\n"
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-37d2db274e6caa23aef55e29655a6b806901774b\">\n"
|
||||||
"suspended</a> cards."
|
"suspended</a> cards."
|
||||||
msgstr ""
|
msgstr[0] ""
|
||||||
|
"\n"
|
||||||
|
"Jest <b>%d</b>\n"
|
||||||
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-37d2db274e6caa23aef55e29655a6b806901774b\">\n"
|
||||||
|
"zawieszona</a> karta."
|
||||||
|
msgstr[1] ""
|
||||||
|
"\n"
|
||||||
|
"Są <b>%d</b>\n"
|
||||||
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-37d2db274e6caa23aef55e29655a6b806901774b\">\n"
|
||||||
|
"zawieszone</a> karty."
|
||||||
|
msgstr[2] ""
|
||||||
|
"\n"
|
||||||
|
"Jest <b>%d</b>\n"
|
||||||
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-37d2db274e6caa23aef55e29655a6b806901774b\">\n"
|
||||||
|
"zawieszonych</a> kart."
|
||||||
|
|
||||||
#: deck.py:656
|
#: deck.py:658
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"\n"
|
||||||
|
"There is <b>%d</b>\n"
|
||||||
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-787faa3eb21d7962f7719dc2722d34b7d74035ae\">\n"
|
||||||
|
"spaced</a> card."
|
||||||
|
msgid_plural ""
|
||||||
|
"\n"
|
||||||
"There are <b>%d</b>\n"
|
"There are <b>%d</b>\n"
|
||||||
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-59a81e35b6afb23930005e943068945214d194b3\">\n"
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-787faa3eb21d7962f7719dc2722d34b7d74035ae\">\n"
|
||||||
"spaced</a> cards."
|
"spaced</a> cards."
|
||||||
msgstr ""
|
msgstr[0] ""
|
||||||
|
"\n"
|
||||||
|
"Jest <b>%d</b>\n"
|
||||||
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-787faa3eb21d7962f7719dc2722d34b7d74035ae\">\n"
|
||||||
|
"odroczona</a> karta."
|
||||||
|
msgstr[1] ""
|
||||||
|
"\n"
|
||||||
|
"Są <b>%d</b>\n"
|
||||||
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-787faa3eb21d7962f7719dc2722d34b7d74035ae\">\n"
|
||||||
|
"odroczone</a> karty."
|
||||||
|
msgstr[2] ""
|
||||||
|
"\n"
|
||||||
|
"Jest <b>%d</b>\n"
|
||||||
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-787faa3eb21d7962f7719dc2722d34b7d74035ae\">\n"
|
||||||
|
"odroczonych</a> kart."
|
||||||
|
|
||||||
#: stats.py:497
|
#: stats.py:497
|
||||||
#, python-format
|
#, python-format
|
||||||
|
@ -55,7 +93,7 @@ msgstr "%0.1f sekund"
|
||||||
msgid "%s ago"
|
msgid "%s ago"
|
||||||
msgstr "%s temu"
|
msgstr "%s temu"
|
||||||
|
|
||||||
#: deck.py:1184
|
#: deck.py:1192
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s copy"
|
msgid "%s copy"
|
||||||
msgstr "kopia %s"
|
msgstr "kopia %s"
|
||||||
|
@ -140,7 +178,7 @@ msgstr "<b>Liczba kart</b><br>"
|
||||||
msgid "<b>Correct answers</b><br>"
|
msgid "<b>Correct answers</b><br>"
|
||||||
msgstr "<b>Poprawne odpowiedzi</b><br>"
|
msgstr "<b>Poprawne odpowiedzi</b><br>"
|
||||||
|
|
||||||
#: deck.py:670
|
#: deck.py:678
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"<div style=\"white-space: normal;\">\n"
|
"<div style=\"white-space: normal;\">\n"
|
||||||
|
@ -211,15 +249,15 @@ msgid "Answer Card"
|
||||||
msgstr "Karta odpowiedzi"
|
msgstr "Karta odpowiedzi"
|
||||||
|
|
||||||
#: deck.py:611
|
#: deck.py:611
|
||||||
#, fuzzy, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"At the same time tomorrow:<br><br>\n"
|
"At the same time tomorrow:<br><br>\n"
|
||||||
"There will be %(wait)s waiting for review.<br>\n"
|
"%(wait)s<br>\n"
|
||||||
"There will be %(new)s waiting."
|
"%(new)s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"O tej samej porze jutro:<br><br>\n"
|
"O tej samej porze jutro:<br><br>\n"
|
||||||
"Będzie <b>%(wait)d</b> kart czekających na przeglądnięcie.<br>\n"
|
"%(wait)s<br>\n"
|
||||||
"Będzie <b>%(new)d</b> nowych kart."
|
"%(new)s"
|
||||||
|
|
||||||
#: stats.py:286
|
#: stats.py:286
|
||||||
msgid "Average Time"
|
msgid "Average Time"
|
||||||
|
@ -261,11 +299,11 @@ msgstr "Zmieniona"
|
||||||
msgid "Check Media DB"
|
msgid "Check Media DB"
|
||||||
msgstr "Sprawdzanie bazy danych plików"
|
msgstr "Sprawdzanie bazy danych plików"
|
||||||
|
|
||||||
#: deck.py:1645
|
#: deck.py:1653
|
||||||
msgid "Checking integrity..."
|
msgid "Checking integrity..."
|
||||||
msgstr "Sprawdzanie integralności..."
|
msgstr "Sprawdzanie integralności..."
|
||||||
|
|
||||||
#: deck.py:1654
|
#: deck.py:1663
|
||||||
msgid "Checking schema..."
|
msgid "Checking schema..."
|
||||||
msgstr "Sprawdzanie schematu..."
|
msgstr "Sprawdzanie schematu..."
|
||||||
|
|
||||||
|
@ -273,7 +311,7 @@ msgstr "Sprawdzanie schematu..."
|
||||||
msgid "Checksum files..."
|
msgid "Checksum files..."
|
||||||
msgstr "Suma kontrolna plików..."
|
msgstr "Suma kontrolna plików..."
|
||||||
|
|
||||||
#: deck.py:1647
|
#: deck.py:1656
|
||||||
msgid "Database file damaged. Restore from backup."
|
msgid "Database file damaged. Restore from backup."
|
||||||
msgstr "Baza danych uszkodzona. Wykonaj odzyskiwanie z kopii zapasowej."
|
msgstr "Baza danych uszkodzona. Wykonaj odzyskiwanie z kopii zapasowej."
|
||||||
|
|
||||||
|
@ -286,7 +324,7 @@ msgstr "Statystyki talii"
|
||||||
msgid "Deck created: <b>%s</b> ago<br>"
|
msgid "Deck created: <b>%s</b> ago<br>"
|
||||||
msgstr "Talia stworzona: <b>%s</b> temu<br>"
|
msgstr "Talia stworzona: <b>%s</b> temu<br>"
|
||||||
|
|
||||||
#: deck.py:1657
|
#: deck.py:1666
|
||||||
msgid "Deck was missing a model"
|
msgid "Deck was missing a model"
|
||||||
msgstr "W talii brakowało modelu"
|
msgstr "W talii brakowało modelu"
|
||||||
|
|
||||||
|
@ -298,27 +336,27 @@ msgstr "Usuwanie nieaktualnych odwołań..."
|
||||||
msgid "Delete unused files..."
|
msgid "Delete unused files..."
|
||||||
msgstr "Usuwanie nieużywanych plików..."
|
msgstr "Usuwanie nieużywanych plików..."
|
||||||
|
|
||||||
#: deck.py:1685
|
#: deck.py:1694
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deleted %d cards with missing fact"
|
msgid "Deleted %d cards with missing fact"
|
||||||
msgstr "Usunięto %d kart z brakującym faktem"
|
msgstr "Usunięto %d kart z brakującym faktem"
|
||||||
|
|
||||||
#: deck.py:1693
|
#: deck.py:1702
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deleted %d cards with no card template"
|
msgid "Deleted %d cards with no card template"
|
||||||
msgstr "Usunięto %d kart bez szablonu karty"
|
msgstr "Usunięto %d kart bez szablonu karty"
|
||||||
|
|
||||||
#: deck.py:1706
|
#: deck.py:1715
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deleted %d dangling fields"
|
msgid "Deleted %d dangling fields"
|
||||||
msgstr "Usunięto %d niezakotwiczonych pól"
|
msgstr "Usunięto %d niezakotwiczonych pól"
|
||||||
|
|
||||||
#: deck.py:1678
|
#: deck.py:1687
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deleted %d facts with missing fields"
|
msgid "Deleted %d facts with missing fields"
|
||||||
msgstr "Usunięto %d faktów z brakującymi polami"
|
msgstr "Usunięto %d faktów z brakującymi polami"
|
||||||
|
|
||||||
#: deck.py:1698
|
#: deck.py:1707
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deleted %d facts with no cards"
|
msgid "Deleted %d facts with no cards"
|
||||||
msgstr "Usunięto %d faktów bez karty"
|
msgstr "Usunięto %d faktów bez karty"
|
||||||
|
@ -350,7 +388,7 @@ msgstr "Eksportowanie..."
|
||||||
msgid "Facts in tab-separated text file (*.txt)"
|
msgid "Facts in tab-separated text file (*.txt)"
|
||||||
msgstr "Fakty oddzielone tabulacją w pliku tekstowym (*.txt)"
|
msgstr "Fakty oddzielone tabulacją w pliku tekstowym (*.txt)"
|
||||||
|
|
||||||
#: deck.py:2002
|
#: deck.py:2011
|
||||||
msgid "File is in use by another process"
|
msgid "File is in use by another process"
|
||||||
msgstr "Plik jest używany przez inny proces"
|
msgstr "Plik jest używany przez inny proces"
|
||||||
|
|
||||||
|
@ -421,12 +459,12 @@ msgstr "Stare karty: <b>%(old)d</b> (<b>%(oldP)0.2f%%</b>)<br>"
|
||||||
msgid "Media Missing"
|
msgid "Media Missing"
|
||||||
msgstr "Brakuje pliku"
|
msgstr "Brakuje pliku"
|
||||||
|
|
||||||
#: deck.py:1107
|
#: deck.py:1115
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Model '%s' has wrong card template count"
|
msgid "Model '%s' has wrong card template count"
|
||||||
msgstr "Model '%s' ma złą liczbę szablonów kart"
|
msgstr "Model '%s' ma złą liczbę szablonów kart"
|
||||||
|
|
||||||
#: deck.py:1111
|
#: deck.py:1119
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Model '%s' has wrong field count"
|
msgid "Model '%s' has wrong field count"
|
||||||
msgstr "Model '%s' ma złą liczbę pól"
|
msgstr "Model '%s' ma złą liczbę pól"
|
||||||
|
@ -443,7 +481,7 @@ msgstr "Modyfikowanie pól..."
|
||||||
msgid "New"
|
msgid "New"
|
||||||
msgstr "Nowe"
|
msgstr "Nowe"
|
||||||
|
|
||||||
#: deck.py:625
|
#: deck.py:627
|
||||||
msgid "No cards are due."
|
msgid "No cards are due."
|
||||||
msgstr "Nie ma kart do wyświetlenia."
|
msgstr "Nie ma kart do wyświetlenia."
|
||||||
|
|
||||||
|
@ -451,23 +489,23 @@ msgstr "Nie ma kart do wyświetlenia."
|
||||||
msgid "Please add some cards first.<p/>"
|
msgid "Please add some cards first.<p/>"
|
||||||
msgstr "Dodaj najpierw jakieś karty.<p/>"
|
msgstr "Dodaj najpierw jakieś karty.<p/>"
|
||||||
|
|
||||||
#: deck.py:1877
|
#: deck.py:1886
|
||||||
msgid "Processing..."
|
msgid "Processing..."
|
||||||
msgstr "Przetwarzanie..."
|
msgstr "Przetwarzanie..."
|
||||||
|
|
||||||
#: deck.py:1722
|
#: deck.py:1731
|
||||||
msgid "Rebuilding QA cache..."
|
msgid "Rebuilding QA cache..."
|
||||||
msgstr "Przebudowywanie pamięci podręcznej pytań/odpowiedzi..."
|
msgstr "Przebudowywanie pamięci podręcznej pytań/odpowiedzi..."
|
||||||
|
|
||||||
#: deck.py:1742
|
#: deck.py:1751
|
||||||
msgid "Rebuilding counts..."
|
msgid "Rebuilding counts..."
|
||||||
msgstr "Przebudowywanie liczników..."
|
msgstr "Przebudowywanie liczników..."
|
||||||
|
|
||||||
#: deck.py:1748
|
#: deck.py:1757
|
||||||
msgid "Rebuilding queue..."
|
msgid "Rebuilding queue..."
|
||||||
msgstr "Przebudowywanie kolejek..."
|
msgstr "Przebudowywanie kolejek..."
|
||||||
|
|
||||||
#: deck.py:1740
|
#: deck.py:1749
|
||||||
msgid "Rebuilding types..."
|
msgid "Rebuilding types..."
|
||||||
msgstr "Przebudowywanie typów..."
|
msgstr "Przebudowywanie typów..."
|
||||||
|
|
||||||
|
@ -487,19 +525,19 @@ msgstr "w nast. mies."
|
||||||
msgid "Reps next week"
|
msgid "Reps next week"
|
||||||
msgstr "Powt. w nast. tyg."
|
msgstr "Powt. w nast. tyg."
|
||||||
|
|
||||||
#: deck.py:2412
|
#: deck.py:2421
|
||||||
msgid "Review cards in order due"
|
msgid "Review cards in order due"
|
||||||
msgstr "Przeglądaj karty w kolejności daty pojawienia się"
|
msgstr "Przeglądaj karty w kolejności daty pojawienia się"
|
||||||
|
|
||||||
#: deck.py:2413
|
#: deck.py:2422
|
||||||
msgid "Review cards in random order"
|
msgid "Review cards in random order"
|
||||||
msgstr "Przeglądaj karty w losowej kolejności"
|
msgstr "Przeglądaj karty w losowej kolejności"
|
||||||
|
|
||||||
#: deck.py:2411
|
#: deck.py:2420
|
||||||
msgid "Review newest cards first"
|
msgid "Review newest cards first"
|
||||||
msgstr "Przeglądaj najnowsze karty jako pierwsze"
|
msgstr "Przeglądaj najnowsze karty jako pierwsze"
|
||||||
|
|
||||||
#: deck.py:2410
|
#: deck.py:2419
|
||||||
msgid "Review oldest cards first"
|
msgid "Review oldest cards first"
|
||||||
msgstr "Przeglądaj najstarsze karty jako pierwsze"
|
msgstr "Przeglądaj najstarsze karty jako pierwsze"
|
||||||
|
|
||||||
|
@ -515,27 +553,27 @@ msgstr "Po prawej"
|
||||||
msgid "Scan fields..."
|
msgid "Scan fields..."
|
||||||
msgstr "Skanowanie pól..."
|
msgstr "Skanowanie pól..."
|
||||||
|
|
||||||
#: deck.py:2404
|
#: deck.py:2413
|
||||||
msgid "Show new cards after all other cards"
|
msgid "Show new cards after all other cards"
|
||||||
msgstr "Pokaż nowe karty po wszystkich innych kartach"
|
msgstr "Pokaż nowe karty po wszystkich innych kartach"
|
||||||
|
|
||||||
#: deck.py:2405
|
#: deck.py:2414
|
||||||
msgid "Show new cards before reviews"
|
msgid "Show new cards before reviews"
|
||||||
msgstr "Pokaż nowe karty przed powtórką"
|
msgstr "Pokaż nowe karty przed powtórką"
|
||||||
|
|
||||||
#: deck.py:2398
|
#: deck.py:2407
|
||||||
msgid "Show new cards in order they were added"
|
msgid "Show new cards in order they were added"
|
||||||
msgstr "Pokaż nowe karty w kolejności ich dodania"
|
msgstr "Pokaż nowe karty w kolejności ich dodania"
|
||||||
|
|
||||||
#: deck.py:2397
|
#: deck.py:2406
|
||||||
msgid "Show new cards in random order"
|
msgid "Show new cards in random order"
|
||||||
msgstr "Pokaż nowe karty w losowej kolejności"
|
msgstr "Pokaż nowe karty w losowej kolejności"
|
||||||
|
|
||||||
#: deck.py:620
|
#: deck.py:622
|
||||||
msgid "Spaced cards will be shown soon."
|
msgid "Spaced cards will be shown soon."
|
||||||
msgstr "Odroczone karty zostaną wkrótce pokazane."
|
msgstr "Wkrótce zostaną pokazane odroczone karty."
|
||||||
|
|
||||||
#: deck.py:2403
|
#: deck.py:2412
|
||||||
msgid "Spread new cards out through reviews"
|
msgid "Spread new cards out through reviews"
|
||||||
msgstr "Rozprosz nowe karty między powtórkami"
|
msgstr "Rozprosz nowe karty między powtórkami"
|
||||||
|
|
||||||
|
@ -543,15 +581,31 @@ msgstr "Rozprosz nowe karty między powtórkami"
|
||||||
msgid "Text files (*.txt)"
|
msgid "Text files (*.txt)"
|
||||||
msgstr "Pliki tekstowe (*.txt)"
|
msgstr "Pliki tekstowe (*.txt)"
|
||||||
|
|
||||||
#: deck.py:1663
|
#: deck.py:1672
|
||||||
msgid "The current model didn't exist"
|
msgid "The current model didn't exist"
|
||||||
msgstr "Aktualny model nie istnieje"
|
msgstr "Aktualny model nie istnieje"
|
||||||
|
|
||||||
#: deck.py:622
|
#: deck.py:624
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "The next card will be shown in <b>%s</b>."
|
msgid "The next card will be shown in <b>%s</b>."
|
||||||
msgstr "Następna karta zostanie pokazana w ciągu <b>%s</b>."
|
msgstr "Następna karta zostanie pokazana w ciągu <b>%s</b>."
|
||||||
|
|
||||||
|
#: deck.py:615
|
||||||
|
#, python-format
|
||||||
|
msgid "There will be <b>%d</b> new card waiting for review."
|
||||||
|
msgid_plural "There will be <b>%d</b> new cards waiting for review."
|
||||||
|
msgstr[0] "Będzie <b>%d</b> nowa karta czekająca na przejrzenie."
|
||||||
|
msgstr[1] "Będą <b>%d</b> nowe karty czekające na przejrzenie."
|
||||||
|
msgstr[2] "Będzie <b>%d</b> nowych kart czekających na przejrzenie."
|
||||||
|
|
||||||
|
#: deck.py:618
|
||||||
|
#, python-format
|
||||||
|
msgid "There will be <b>%s</b> card waiting."
|
||||||
|
msgid_plural "There will be <b>%s</b> cards waiting."
|
||||||
|
msgstr[0] "Będzie <b>%s</b> karta czekająca na przejrzenie."
|
||||||
|
msgstr[1] "Będą <b>%s</b> karty czekające na przejrzenie."
|
||||||
|
msgstr[2] "Będzie <b>%s</b> kart czekających na przejrzenie."
|
||||||
|
|
||||||
#: stats.py:288
|
#: stats.py:288
|
||||||
msgid "Total Time"
|
msgid "Total Time"
|
||||||
msgstr "Całkowity czas"
|
msgstr "Całkowity czas"
|
||||||
|
@ -561,7 +615,7 @@ msgstr "Całkowity czas"
|
||||||
msgid "Total number of cards: <b>%d</b><br><br>"
|
msgid "Total number of cards: <b>%d</b><br><br>"
|
||||||
msgstr "Całkowita liczba kart: <b>%d</b><br><br>"
|
msgstr "Całkowita liczba kart: <b>%d</b><br><br>"
|
||||||
|
|
||||||
#: deck.py:834
|
#: deck.py:842
|
||||||
msgid "Unknown"
|
msgid "Unknown"
|
||||||
msgstr "Nieznany"
|
msgstr "Nieznany"
|
||||||
|
|
||||||
|
@ -574,7 +628,7 @@ msgstr "Nieprzejrzane karty: <b>%(new)d</b> (<b>%(newP)0.2f%%</b>)<br><br>"
|
||||||
msgid "Update tags..."
|
msgid "Update tags..."
|
||||||
msgstr "Aktualizacja etykiet..."
|
msgstr "Aktualizacja etykiet..."
|
||||||
|
|
||||||
#: deck.py:1719
|
#: deck.py:1728
|
||||||
msgid "Updating priorities..."
|
msgid "Updating priorities..."
|
||||||
msgstr "Aktualizacja priorytetów..."
|
msgstr "Aktualizacja priorytetów..."
|
||||||
|
|
||||||
|
@ -601,6 +655,6 @@ msgstr "[nieprawidłowy format pytania/odpowiedzi]"
|
||||||
msgid "in %s"
|
msgid "in %s"
|
||||||
msgstr "w %s"
|
msgstr "w %s"
|
||||||
|
|
||||||
#: deck.py:642
|
#: deck.py:644
|
||||||
msgid "unknown"
|
msgid "unknown"
|
||||||
msgstr "nieznane"
|
msgstr "nieznane"
|
||||||
|
|
|
@ -7,7 +7,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2009-01-20 00:49+0900\n"
|
"POT-Creation-Date: 2009-01-20 23:33+0900\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: Damien Elmes <anki@ichi2.net>\n"
|
"Last-Translator: Damien Elmes <anki@ichi2.net>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -15,23 +15,35 @@ msgstr ""
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: deck.py:664
|
#: deck.py:669
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"\n"
|
||||||
|
"There is <b>%d</b>\n"
|
||||||
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-37d2db274e6caa23aef55e29655a6b806901774b\">\n"
|
||||||
|
"suspended</a> card."
|
||||||
|
msgid_plural ""
|
||||||
|
"\n"
|
||||||
"There are <b>%d</b>\n"
|
"There are <b>%d</b>\n"
|
||||||
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-37d2db274e6caa23aef55e29655a6b806901774b\">\n"
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-37d2db274e6caa23aef55e29655a6b806901774b\">\n"
|
||||||
"suspended</a> cards."
|
"suspended</a> cards."
|
||||||
msgstr ""
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
#: deck.py:656
|
#: deck.py:658
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"\n"
|
||||||
|
"There is <b>%d</b>\n"
|
||||||
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-787faa3eb21d7962f7719dc2722d34b7d74035ae\">\n"
|
||||||
|
"spaced</a> card."
|
||||||
|
msgid_plural ""
|
||||||
|
"\n"
|
||||||
"There are <b>%d</b>\n"
|
"There are <b>%d</b>\n"
|
||||||
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-59a81e35b6afb23930005e943068945214d194b3\">\n"
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-787faa3eb21d7962f7719dc2722d34b7d74035ae\">\n"
|
||||||
"spaced</a> cards."
|
"spaced</a> cards."
|
||||||
msgstr ""
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
#: stats.py:497
|
#: stats.py:497
|
||||||
#, python-format
|
#, python-format
|
||||||
|
@ -53,7 +65,7 @@ msgstr ""
|
||||||
msgid "%s ago"
|
msgid "%s ago"
|
||||||
msgstr "%s前"
|
msgstr "%s前"
|
||||||
|
|
||||||
#: deck.py:1184
|
#: deck.py:1192
|
||||||
#, fuzzy, python-format
|
#, fuzzy, python-format
|
||||||
msgid "%s copy"
|
msgid "%s copy"
|
||||||
msgstr "%s秒"
|
msgstr "%s秒"
|
||||||
|
@ -132,7 +144,7 @@ msgstr ""
|
||||||
msgid "<b>Correct answers</b><br>"
|
msgid "<b>Correct answers</b><br>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:670
|
#: deck.py:678
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"<div style=\"white-space: normal;\">\n"
|
"<div style=\"white-space: normal;\">\n"
|
||||||
|
@ -193,8 +205,8 @@ msgstr ""
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"At the same time tomorrow:<br><br>\n"
|
"At the same time tomorrow:<br><br>\n"
|
||||||
"There will be %(wait)s waiting for review.<br>\n"
|
"%(wait)s<br>\n"
|
||||||
"There will be %(new)s waiting."
|
"%(new)s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: stats.py:286
|
#: stats.py:286
|
||||||
|
@ -237,11 +249,11 @@ msgstr ""
|
||||||
msgid "Check Media DB"
|
msgid "Check Media DB"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1645
|
#: deck.py:1653
|
||||||
msgid "Checking integrity..."
|
msgid "Checking integrity..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1654
|
#: deck.py:1663
|
||||||
msgid "Checking schema..."
|
msgid "Checking schema..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -249,7 +261,7 @@ msgstr ""
|
||||||
msgid "Checksum files..."
|
msgid "Checksum files..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1647
|
#: deck.py:1656
|
||||||
msgid "Database file damaged. Restore from backup."
|
msgid "Database file damaged. Restore from backup."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -262,7 +274,7 @@ msgstr ""
|
||||||
msgid "Deck created: <b>%s</b> ago<br>"
|
msgid "Deck created: <b>%s</b> ago<br>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1657
|
#: deck.py:1666
|
||||||
msgid "Deck was missing a model"
|
msgid "Deck was missing a model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -274,27 +286,27 @@ msgstr ""
|
||||||
msgid "Delete unused files..."
|
msgid "Delete unused files..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1685
|
#: deck.py:1694
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deleted %d cards with missing fact"
|
msgid "Deleted %d cards with missing fact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1693
|
#: deck.py:1702
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deleted %d cards with no card template"
|
msgid "Deleted %d cards with no card template"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1706
|
#: deck.py:1715
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deleted %d dangling fields"
|
msgid "Deleted %d dangling fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1678
|
#: deck.py:1687
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deleted %d facts with missing fields"
|
msgid "Deleted %d facts with missing fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1698
|
#: deck.py:1707
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deleted %d facts with no cards"
|
msgid "Deleted %d facts with no cards"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -323,7 +335,7 @@ msgstr ""
|
||||||
msgid "Facts in tab-separated text file (*.txt)"
|
msgid "Facts in tab-separated text file (*.txt)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:2002
|
#: deck.py:2011
|
||||||
msgid "File is in use by another process"
|
msgid "File is in use by another process"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -394,12 +406,12 @@ msgstr ""
|
||||||
msgid "Media Missing"
|
msgid "Media Missing"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1107
|
#: deck.py:1115
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Model '%s' has wrong card template count"
|
msgid "Model '%s' has wrong card template count"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1111
|
#: deck.py:1119
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Model '%s' has wrong field count"
|
msgid "Model '%s' has wrong field count"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -416,7 +428,7 @@ msgstr ""
|
||||||
msgid "New"
|
msgid "New"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:625
|
#: deck.py:627
|
||||||
msgid "No cards are due."
|
msgid "No cards are due."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -424,23 +436,23 @@ msgstr ""
|
||||||
msgid "Please add some cards first.<p/>"
|
msgid "Please add some cards first.<p/>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1877
|
#: deck.py:1886
|
||||||
msgid "Processing..."
|
msgid "Processing..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1722
|
#: deck.py:1731
|
||||||
msgid "Rebuilding QA cache..."
|
msgid "Rebuilding QA cache..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1742
|
#: deck.py:1751
|
||||||
msgid "Rebuilding counts..."
|
msgid "Rebuilding counts..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1748
|
#: deck.py:1757
|
||||||
msgid "Rebuilding queue..."
|
msgid "Rebuilding queue..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1740
|
#: deck.py:1749
|
||||||
msgid "Rebuilding types..."
|
msgid "Rebuilding types..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -462,19 +474,19 @@ msgstr "%s個月"
|
||||||
msgid "Reps next week"
|
msgid "Reps next week"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:2412
|
#: deck.py:2421
|
||||||
msgid "Review cards in order due"
|
msgid "Review cards in order due"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:2413
|
#: deck.py:2422
|
||||||
msgid "Review cards in random order"
|
msgid "Review cards in random order"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:2411
|
#: deck.py:2420
|
||||||
msgid "Review newest cards first"
|
msgid "Review newest cards first"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:2410
|
#: deck.py:2419
|
||||||
msgid "Review oldest cards first"
|
msgid "Review oldest cards first"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -490,27 +502,27 @@ msgstr ""
|
||||||
msgid "Scan fields..."
|
msgid "Scan fields..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:2404
|
#: deck.py:2413
|
||||||
msgid "Show new cards after all other cards"
|
msgid "Show new cards after all other cards"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:2405
|
#: deck.py:2414
|
||||||
msgid "Show new cards before reviews"
|
msgid "Show new cards before reviews"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:2398
|
#: deck.py:2407
|
||||||
msgid "Show new cards in order they were added"
|
msgid "Show new cards in order they were added"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:2397
|
#: deck.py:2406
|
||||||
msgid "Show new cards in random order"
|
msgid "Show new cards in random order"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:620
|
#: deck.py:622
|
||||||
msgid "Spaced cards will be shown soon."
|
msgid "Spaced cards will be shown soon."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:2403
|
#: deck.py:2412
|
||||||
msgid "Spread new cards out through reviews"
|
msgid "Spread new cards out through reviews"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -518,15 +530,29 @@ msgstr ""
|
||||||
msgid "Text files (*.txt)"
|
msgid "Text files (*.txt)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1663
|
#: deck.py:1672
|
||||||
msgid "The current model didn't exist"
|
msgid "The current model didn't exist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:622
|
#: deck.py:624
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "The next card will be shown in <b>%s</b>."
|
msgid "The next card will be shown in <b>%s</b>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: deck.py:615
|
||||||
|
#, python-format
|
||||||
|
msgid "There will be <b>%d</b> new card waiting for review."
|
||||||
|
msgid_plural "There will be <b>%d</b> new cards waiting for review."
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
|
#: deck.py:618
|
||||||
|
#, python-format
|
||||||
|
msgid "There will be <b>%s</b> card waiting."
|
||||||
|
msgid_plural "There will be <b>%s</b> cards waiting."
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
#: stats.py:288
|
#: stats.py:288
|
||||||
msgid "Total Time"
|
msgid "Total Time"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -536,7 +562,7 @@ msgstr ""
|
||||||
msgid "Total number of cards: <b>%d</b><br><br>"
|
msgid "Total number of cards: <b>%d</b><br><br>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:834
|
#: deck.py:842
|
||||||
msgid "Unknown"
|
msgid "Unknown"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -549,7 +575,7 @@ msgstr ""
|
||||||
msgid "Update tags..."
|
msgid "Update tags..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1719
|
#: deck.py:1728
|
||||||
msgid "Updating priorities..."
|
msgid "Updating priorities..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -576,7 +602,7 @@ msgstr ""
|
||||||
msgid "in %s"
|
msgid "in %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:642
|
#: deck.py:644
|
||||||
msgid "unknown"
|
msgid "unknown"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2009-01-20 00:49+0900\n"
|
"POT-Creation-Date: 2009-01-20 23:33+0900\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -17,23 +17,35 @@ msgstr ""
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
||||||
|
|
||||||
#: deck.py:664
|
#: deck.py:669
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"\n"
|
||||||
|
"There is <b>%d</b>\n"
|
||||||
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-37d2db274e6caa23aef55e29655a6b806901774b\">\n"
|
||||||
|
"suspended</a> card."
|
||||||
|
msgid_plural ""
|
||||||
|
"\n"
|
||||||
"There are <b>%d</b>\n"
|
"There are <b>%d</b>\n"
|
||||||
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-37d2db274e6caa23aef55e29655a6b806901774b\">\n"
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-37d2db274e6caa23aef55e29655a6b806901774b\">\n"
|
||||||
"suspended</a> cards."
|
"suspended</a> cards."
|
||||||
msgstr ""
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
#: deck.py:656
|
#: deck.py:658
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"\n"
|
||||||
|
"There is <b>%d</b>\n"
|
||||||
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-787faa3eb21d7962f7719dc2722d34b7d74035ae\">\n"
|
||||||
|
"spaced</a> card."
|
||||||
|
msgid_plural ""
|
||||||
|
"\n"
|
||||||
"There are <b>%d</b>\n"
|
"There are <b>%d</b>\n"
|
||||||
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-59a81e35b6afb23930005e943068945214d194b3\">\n"
|
"<a href=\"http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-787faa3eb21d7962f7719dc2722d34b7d74035ae\">\n"
|
||||||
"spaced</a> cards."
|
"spaced</a> cards."
|
||||||
msgstr ""
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
#: stats.py:497
|
#: stats.py:497
|
||||||
#, python-format
|
#, python-format
|
||||||
|
@ -55,7 +67,7 @@ msgstr ""
|
||||||
msgid "%s ago"
|
msgid "%s ago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1184
|
#: deck.py:1192
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s copy"
|
msgid "%s copy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -134,7 +146,7 @@ msgstr ""
|
||||||
msgid "<b>Correct answers</b><br>"
|
msgid "<b>Correct answers</b><br>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:670
|
#: deck.py:678
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"<div style=\"white-space: normal;\">\n"
|
"<div style=\"white-space: normal;\">\n"
|
||||||
|
@ -195,8 +207,8 @@ msgstr ""
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"At the same time tomorrow:<br><br>\n"
|
"At the same time tomorrow:<br><br>\n"
|
||||||
"There will be %(wait)s waiting for review.<br>\n"
|
"%(wait)s<br>\n"
|
||||||
"There will be %(new)s waiting."
|
"%(new)s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: stats.py:286
|
#: stats.py:286
|
||||||
|
@ -239,11 +251,11 @@ msgstr ""
|
||||||
msgid "Check Media DB"
|
msgid "Check Media DB"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1645
|
#: deck.py:1653
|
||||||
msgid "Checking integrity..."
|
msgid "Checking integrity..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1654
|
#: deck.py:1663
|
||||||
msgid "Checking schema..."
|
msgid "Checking schema..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -251,7 +263,7 @@ msgstr ""
|
||||||
msgid "Checksum files..."
|
msgid "Checksum files..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1647
|
#: deck.py:1656
|
||||||
msgid "Database file damaged. Restore from backup."
|
msgid "Database file damaged. Restore from backup."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -264,7 +276,7 @@ msgstr ""
|
||||||
msgid "Deck created: <b>%s</b> ago<br>"
|
msgid "Deck created: <b>%s</b> ago<br>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1657
|
#: deck.py:1666
|
||||||
msgid "Deck was missing a model"
|
msgid "Deck was missing a model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -276,27 +288,27 @@ msgstr ""
|
||||||
msgid "Delete unused files..."
|
msgid "Delete unused files..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1685
|
#: deck.py:1694
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deleted %d cards with missing fact"
|
msgid "Deleted %d cards with missing fact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1693
|
#: deck.py:1702
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deleted %d cards with no card template"
|
msgid "Deleted %d cards with no card template"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1706
|
#: deck.py:1715
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deleted %d dangling fields"
|
msgid "Deleted %d dangling fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1678
|
#: deck.py:1687
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deleted %d facts with missing fields"
|
msgid "Deleted %d facts with missing fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1698
|
#: deck.py:1707
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deleted %d facts with no cards"
|
msgid "Deleted %d facts with no cards"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -325,7 +337,7 @@ msgstr ""
|
||||||
msgid "Facts in tab-separated text file (*.txt)"
|
msgid "Facts in tab-separated text file (*.txt)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:2002
|
#: deck.py:2011
|
||||||
msgid "File is in use by another process"
|
msgid "File is in use by another process"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -396,12 +408,12 @@ msgstr ""
|
||||||
msgid "Media Missing"
|
msgid "Media Missing"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1107
|
#: deck.py:1115
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Model '%s' has wrong card template count"
|
msgid "Model '%s' has wrong card template count"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1111
|
#: deck.py:1119
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Model '%s' has wrong field count"
|
msgid "Model '%s' has wrong field count"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -418,7 +430,7 @@ msgstr ""
|
||||||
msgid "New"
|
msgid "New"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:625
|
#: deck.py:627
|
||||||
msgid "No cards are due."
|
msgid "No cards are due."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -426,23 +438,23 @@ msgstr ""
|
||||||
msgid "Please add some cards first.<p/>"
|
msgid "Please add some cards first.<p/>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1877
|
#: deck.py:1886
|
||||||
msgid "Processing..."
|
msgid "Processing..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1722
|
#: deck.py:1731
|
||||||
msgid "Rebuilding QA cache..."
|
msgid "Rebuilding QA cache..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1742
|
#: deck.py:1751
|
||||||
msgid "Rebuilding counts..."
|
msgid "Rebuilding counts..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1748
|
#: deck.py:1757
|
||||||
msgid "Rebuilding queue..."
|
msgid "Rebuilding queue..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1740
|
#: deck.py:1749
|
||||||
msgid "Rebuilding types..."
|
msgid "Rebuilding types..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -462,19 +474,19 @@ msgstr ""
|
||||||
msgid "Reps next week"
|
msgid "Reps next week"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:2412
|
#: deck.py:2421
|
||||||
msgid "Review cards in order due"
|
msgid "Review cards in order due"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:2413
|
#: deck.py:2422
|
||||||
msgid "Review cards in random order"
|
msgid "Review cards in random order"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:2411
|
#: deck.py:2420
|
||||||
msgid "Review newest cards first"
|
msgid "Review newest cards first"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:2410
|
#: deck.py:2419
|
||||||
msgid "Review oldest cards first"
|
msgid "Review oldest cards first"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -490,27 +502,27 @@ msgstr ""
|
||||||
msgid "Scan fields..."
|
msgid "Scan fields..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:2404
|
#: deck.py:2413
|
||||||
msgid "Show new cards after all other cards"
|
msgid "Show new cards after all other cards"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:2405
|
#: deck.py:2414
|
||||||
msgid "Show new cards before reviews"
|
msgid "Show new cards before reviews"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:2398
|
#: deck.py:2407
|
||||||
msgid "Show new cards in order they were added"
|
msgid "Show new cards in order they were added"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:2397
|
#: deck.py:2406
|
||||||
msgid "Show new cards in random order"
|
msgid "Show new cards in random order"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:620
|
#: deck.py:622
|
||||||
msgid "Spaced cards will be shown soon."
|
msgid "Spaced cards will be shown soon."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:2403
|
#: deck.py:2412
|
||||||
msgid "Spread new cards out through reviews"
|
msgid "Spread new cards out through reviews"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -518,15 +530,29 @@ msgstr ""
|
||||||
msgid "Text files (*.txt)"
|
msgid "Text files (*.txt)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1663
|
#: deck.py:1672
|
||||||
msgid "The current model didn't exist"
|
msgid "The current model didn't exist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:622
|
#: deck.py:624
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "The next card will be shown in <b>%s</b>."
|
msgid "The next card will be shown in <b>%s</b>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: deck.py:615
|
||||||
|
#, python-format
|
||||||
|
msgid "There will be <b>%d</b> new card waiting for review."
|
||||||
|
msgid_plural "There will be <b>%d</b> new cards waiting for review."
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
|
#: deck.py:618
|
||||||
|
#, python-format
|
||||||
|
msgid "There will be <b>%s</b> card waiting."
|
||||||
|
msgid_plural "There will be <b>%s</b> cards waiting."
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
#: stats.py:288
|
#: stats.py:288
|
||||||
msgid "Total Time"
|
msgid "Total Time"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -536,7 +562,7 @@ msgstr ""
|
||||||
msgid "Total number of cards: <b>%d</b><br><br>"
|
msgid "Total number of cards: <b>%d</b><br><br>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:834
|
#: deck.py:842
|
||||||
msgid "Unknown"
|
msgid "Unknown"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -549,7 +575,7 @@ msgstr ""
|
||||||
msgid "Update tags..."
|
msgid "Update tags..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:1719
|
#: deck.py:1728
|
||||||
msgid "Updating priorities..."
|
msgid "Updating priorities..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -576,6 +602,6 @@ msgstr ""
|
||||||
msgid "in %s"
|
msgid "in %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: deck.py:642
|
#: deck.py:644
|
||||||
msgid "unknown"
|
msgid "unknown"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
Loading…
Reference in a new issue