From f6650c0b91b635490f1a5f1729e905363cfcc630 Mon Sep 17 00:00:00 2001 From: Fedor Indutny <79877362+indutny-signal@users.noreply.github.com> Date: Wed, 3 Jul 2024 12:02:10 -0700 Subject: [PATCH] Check for icu: strings in js folder as well --- _locales/en/messages.json | 2 +- ts/scripts/mark-unused-strings-deleted.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/_locales/en/messages.json b/_locales/en/messages.json index 5dfe458c4508..de80232f2cd8 100644 --- a/_locales/en/messages.json +++ b/_locales/en/messages.json @@ -877,7 +877,7 @@ }, "icu:callingDeveloperToolsDescription": { "messageformat": "This window is used during development to display diagnostics from ongoing calls.", - "description": "(Deleted 2024/07/02) Description displayed for calling developer tools window" + "description": "Description displayed for calling developer tools window" }, "icu:speech": { "messageformat": "Speech", diff --git a/ts/scripts/mark-unused-strings-deleted.ts b/ts/scripts/mark-unused-strings-deleted.ts index b57b8babb3bb..3085a8da9ba1 100644 --- a/ts/scripts/mark-unused-strings-deleted.ts +++ b/ts/scripts/mark-unused-strings-deleted.ts @@ -22,6 +22,7 @@ function getIcuLikeStrings(): Set { '--recursive', 'ts/', 'app/', + 'js/', ], { cwd: rootDir,