tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

commit 92b3660a4c49f649855d4752a0b90d4ee42fa0c2
parent 479b4192c4aeed69810d8e02e9d338ee7a444af9
Author: Eemeli Aro <eemeli@mozilla.com>
Date:   Tue, 23 Dec 2025 08:19:58 +0000

Bug 2007405 - Fix debugger.properties string reference to sourceSearch.resultsSummary2 r=devtools-reviewers,ochameau

Differential Revision: https://phabricator.services.mozilla.com/D277355

Diffstat:
Mdevtools/client/debugger/src/components/Editor/SearchInFileBar.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/devtools/client/debugger/src/components/Editor/SearchInFileBar.js b/devtools/client/debugger/src/components/Editor/SearchInFileBar.js @@ -342,7 +342,7 @@ class SearchInFileBar extends Component { } if (index == -1) { - const resultsSummaryString = L10N.getStr("sourceSearch.resultsSummary1"); + const resultsSummaryString = L10N.getStr("sourceSearch.resultsSummary2"); return PluralForm.get(count, resultsSummaryString).replace("#1", count); }