From bd4dda6ef29fc061f36c4f6f88c4622b5f90635f Mon Sep 17 00:00:00 2001 From: automated-signal <37887102+automated-signal@users.noreply.github.com> Date: Wed, 3 Jul 2024 14:14:43 -0500 Subject: [PATCH] Check for icu: strings in js folder as well Co-authored-by: Fedor Indutny <79877362+indutny-signal@users.noreply.github.com> --- _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 5dfe458c450..de80232f2cd 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 b57b8babb3b..3085a8da9ba 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,