Skip to content

Commit

Permalink
Merge pull request #18741 from flodolo/fluent_number
Browse files Browse the repository at this point in the history
Fluent: use explicit NUMBER() in plural variants
  • Loading branch information
calixteman authored Sep 12, 2024
2 parents 4275424 + 6e1b4d6 commit b915a9c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions l10n/en-US/viewer.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -239,15 +239,15 @@ 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
}
# 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
}
Expand Down

0 comments on commit b915a9c

Please sign in to comment.