mirror of
https://github.com/ankitects/anki.git
synced 2025-09-25 01:06:35 -04:00
formatting and new strings in scheduling.ftl
This commit is contained in:
parent
cd4a4dada8
commit
f8b73230a6
1 changed files with 68 additions and 53 deletions
|
@ -15,32 +15,33 @@ scheduling-answer-button-time-years = {$amount}y
|
|||
## such as in the Interval column of the browse screen,
|
||||
## and labels like "Total Time" in the card info screen.
|
||||
|
||||
scheduling-time-span-seconds = { $amount ->
|
||||
scheduling-time-span-seconds =
|
||||
{ $amount ->
|
||||
[one] { $amount } second
|
||||
*[other] { $amount } seconds
|
||||
}
|
||||
|
||||
scheduling-time-span-minutes = { $amount ->
|
||||
scheduling-time-span-minutes =
|
||||
{ $amount ->
|
||||
[one] { $amount } minute
|
||||
*[other] { $amount } minutes
|
||||
}
|
||||
|
||||
scheduling-time-span-hours = { $amount ->
|
||||
scheduling-time-span-hours =
|
||||
{ $amount ->
|
||||
[one] { $amount } hour
|
||||
*[other] { $amount } hours
|
||||
}
|
||||
|
||||
scheduling-time-span-days = { $amount ->
|
||||
scheduling-time-span-days =
|
||||
{ $amount ->
|
||||
[one] { $amount } day
|
||||
*[other] { $amount } days
|
||||
}
|
||||
|
||||
scheduling-time-span-months = { $amount ->
|
||||
scheduling-time-span-months =
|
||||
{ $amount ->
|
||||
[one] { $amount } month
|
||||
*[other] { $amount } months
|
||||
}
|
||||
|
||||
scheduling-time-span-years = { $amount ->
|
||||
scheduling-time-span-years =
|
||||
{ $amount ->
|
||||
[one] { $amount } year
|
||||
*[other] { $amount } years
|
||||
}
|
||||
|
@ -50,21 +51,35 @@ scheduling-time-span-years = { $amount ->
|
|||
# eg "The next learning card will be ready in 5 minutes."
|
||||
scheduling-next-learn-due =
|
||||
The next learning card will be ready in { $unit ->
|
||||
[seconds] { $amount ->
|
||||
[seconds]
|
||||
{ $amount ->
|
||||
[one] { $amount } second
|
||||
*[other] { $amount } seconds
|
||||
}
|
||||
[minutes] { $amount ->
|
||||
[minutes]
|
||||
{ $amount ->
|
||||
[one] { $amount } minute
|
||||
*[other] { $amount } minutes
|
||||
}
|
||||
*[hours] { $amount ->
|
||||
*[hours]
|
||||
{ $amount ->
|
||||
[one] { $amount } hour
|
||||
*[other] { $amount } hours
|
||||
}
|
||||
}.
|
||||
|
||||
scheduling-learn-remaining = { $remaining ->
|
||||
scheduling-learn-remaining =
|
||||
{ $remaining ->
|
||||
[one] There is one remaining learning card due later today.
|
||||
*[other] There are { $remaining } learning cards due later today.
|
||||
}
|
||||
scheduling-congratulations-finished = Congratulations! You have finished this deck for now.
|
||||
scheduling-today-review-limit-reached =
|
||||
Today's review limit has been reached, but there are still cards
|
||||
waiting to be reviewed. For optimum memory, consider increasing
|
||||
the daily limit in the options.
|
||||
scheduling-today-new-limit-reached =
|
||||
There are more new cards available, but the daily limit has been
|
||||
reached. You can increase the limit in the options, but please
|
||||
bear in mind that the more new cards you introduce, the higher
|
||||
your short-term review workload will become.
|
||||
scheduling-buried-cards-were-delayed = Some related or buried cards were delayed until a later session.
|
||||
|
|
Loading…
Reference in a new issue