Skip to content

Commit b915a9c

Browse files
authoredSep 12, 2024··
Merge pull request #18741 from flodolo/fluent_number
Fluent: use explicit NUMBER() in plural variants
2 parents 4275424 + 6e1b4d6 commit b915a9c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎l10n/en-US/viewer.ftl

+2-2
Original file line numberDiff line numberDiff line change
@@ -239,15 +239,15 @@ pdfjs-find-reached-bottom = Reached end of document, continued from top
239239
# $current (Number) - the index of the currently active find result
240240
# $total (Number) - the total number of matches in the document
241241
pdfjs-find-match-count =
242-
{ $total ->
242+
{ NUMBER($total) ->
243243
[one] { $current } of { $total } match
244244
*[other] { $current } of { $total } matches
245245
}
246246
247247
# Variables:
248248
# $limit (Number) - the maximum number of matches
249249
pdfjs-find-match-count-limit =
250-
{ $limit ->
250+
{ NUMBER($limit) ->
251251
[one] More than { $limit } match
252252
*[other] More than { $limit } matches
253253
}

0 commit comments

Comments
 (0)
Please sign in to comment.