anki/rslib/src/i18n/scheduling.ftl

40 lines
1.1 KiB
Plaintext
Raw Normal View History

2020-02-20 03:48:46 +01:00
## The next time a card will be shown, in a short form that will fit
## on the answer buttons. For example, English shows "4d" to
## represent the card will be due in 4 days, "3m" for 3 minutes, and
## "5mo" for 5 months.
answer-button-time-seconds = {$amount}s
answer-button-time-minutes = {$amount}m
answer-button-time-hours = {$amount}h
answer-button-time-days = {$amount}d
answer-button-time-months = {$amount}mo
answer-button-time-years = {$amount}y
## A span of time, such as the delay until a card is shown again, the
## amount of time taken to answer a card, and so on.
time-span-seconds = { $amount ->
[one] {$amount} second
*[other] {$amount} seconds
}
time-span-minutes = { $amount ->
[one] {$amount} minute
*[other] {$amount} minutes
}
time-span-hours = { $amount ->
[one] {$amount} hour
*[other] {$amount} hours
}
time-span-days = { $amount ->
[one] {$amount} day
*[other] {$amount} days
}
time-span-months = { $amount ->
[one] {$amount} month
*[other] {$amount} months
}
time-span-years = { $amount ->
[one] {$amount} year
*[other] {$amount} years
}