1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-19 22:58:07 +02:00

Fluent: use explicit NUMBER() in plural variants

This commit is contained in:
Francesco Lodolo 2024-09-12 16:53:18 +02:00
parent 1ab9ab67ee
commit 6e1b4d63e7
No known key found for this signature in database
GPG key ID: B7609BC61AA5C330

View file

@ -239,7 +239,7 @@ pdfjs-find-reached-bottom = Reached end of document, continued from top
# $current (Number) - the index of the currently active find result
# $total (Number) - the total number of matches in the document
pdfjs-find-match-count =
{ $total ->
{ NUMBER($total) ->
[one] { $current } of { $total } match
*[other] { $current } of { $total } matches
}
@ -247,7 +247,7 @@ pdfjs-find-match-count =
# Variables:
# $limit (Number) - the maximum number of matches
pdfjs-find-match-count-limit =
{ $limit ->
{ NUMBER($limit) ->
[one] More than { $limit } match
*[other] More than { $limit } matches
}