From 6e1b4d63e75623a4e70693bf65071272d19d9d88 Mon Sep 17 00:00:00 2001 From: Francesco Lodolo Date: Thu, 12 Sep 2024 16:53:18 +0200 Subject: [PATCH] Fluent: use explicit NUMBER() in plural variants --- l10n/en-US/viewer.ftl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/l10n/en-US/viewer.ftl b/l10n/en-US/viewer.ftl index 67be5cd587d21..080feb30d57be 100644 --- a/l10n/en-US/viewer.ftl +++ b/l10n/en-US/viewer.ftl @@ -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 }