formatting and new strings in scheduling.ftl

This commit is contained in:
Damien Elmes 2020-08-04 16:19:49 +10:00
parent cd4a4dada8
commit f8b73230a6

View file

@ -15,32 +15,33 @@ scheduling-answer-button-time-years = {$amount}y
## such as in the Interval column of the browse screen, ## such as in the Interval column of the browse screen,
## and labels like "Total Time" in the card info screen. ## and labels like "Total Time" in the card info screen.
scheduling-time-span-seconds = { $amount -> scheduling-time-span-seconds =
{ $amount ->
[one] { $amount } second [one] { $amount } second
*[other] { $amount } seconds *[other] { $amount } seconds
} }
scheduling-time-span-minutes =
scheduling-time-span-minutes = { $amount -> { $amount ->
[one] { $amount } minute [one] { $amount } minute
*[other] { $amount } minutes *[other] { $amount } minutes
} }
scheduling-time-span-hours =
scheduling-time-span-hours = { $amount -> { $amount ->
[one] { $amount } hour [one] { $amount } hour
*[other] { $amount } hours *[other] { $amount } hours
} }
scheduling-time-span-days =
scheduling-time-span-days = { $amount -> { $amount ->
[one] { $amount } day [one] { $amount } day
*[other] { $amount } days *[other] { $amount } days
} }
scheduling-time-span-months =
scheduling-time-span-months = { $amount -> { $amount ->
[one] { $amount } month [one] { $amount } month
*[other] { $amount } months *[other] { $amount } months
} }
scheduling-time-span-years =
scheduling-time-span-years = { $amount -> { $amount ->
[one] { $amount } year [one] { $amount } year
*[other] { $amount } years *[other] { $amount } years
} }
@ -50,21 +51,35 @@ scheduling-time-span-years = { $amount ->
# eg "The next learning card will be ready in 5 minutes." # eg "The next learning card will be ready in 5 minutes."
scheduling-next-learn-due = scheduling-next-learn-due =
The next learning card will be ready in { $unit -> The next learning card will be ready in { $unit ->
[seconds] { $amount -> [seconds]
{ $amount ->
[one] { $amount } second [one] { $amount } second
*[other] { $amount } seconds *[other] { $amount } seconds
} }
[minutes] { $amount -> [minutes]
{ $amount ->
[one] { $amount } minute [one] { $amount } minute
*[other] { $amount } minutes *[other] { $amount } minutes
} }
*[hours] { $amount -> *[hours]
{ $amount ->
[one] { $amount } hour [one] { $amount } hour
*[other] { $amount } hours *[other] { $amount } hours
} }
}. }.
scheduling-learn-remaining =
scheduling-learn-remaining = { $remaining -> { $remaining ->
[one] There is one remaining learning card due later today. [one] There is one remaining learning card due later today.
*[other] There are { $remaining } learning cards 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.