From 6b028ef850c3e9d2e5773f19ccc7d1ee7092f8dc Mon Sep 17 00:00:00 2001 From: Ammar Ahmed Date: Thu, 18 Sep 2025 12:42:18 +0500 Subject: [PATCH] mobile: fix localization --- packages/editor-mobile/src/components/statusbar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/editor-mobile/src/components/statusbar.tsx b/packages/editor-mobile/src/components/statusbar.tsx index 28225e07a..39536a126 100644 --- a/packages/editor-mobile/src/components/statusbar.tsx +++ b/packages/editor-mobile/src/components/statusbar.tsx @@ -94,7 +94,7 @@ function StatusBar({ }} style={paragraphStyle} > - {showChars ? strings.characters(chars) : words} + {showChars ? strings.charactersCount(chars) : words}

);