From 0e1e62906b2af15b7312b283404ac20ad051b9a3 Mon Sep 17 00:00:00 2001 From: Marla Schulz <42476338+marlitas@users.noreply.github.com> Date: Mon, 29 Jul 2024 14:28:45 -0700 Subject: [PATCH] Remove locales=* testing, see: https://github.com/phetsims/phet-info/issues/202 --- doc/dynamic-string-layout-quickstart.md | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/doc/dynamic-string-layout-quickstart.md b/doc/dynamic-string-layout-quickstart.md index d4ba630b..ef3a07a3 100644 --- a/doc/dynamic-string-layout-quickstart.md +++ b/doc/dynamic-string-layout-quickstart.md @@ -49,16 +49,6 @@ and robust layout architecture for your sim. It is recommended to use these comp `BoundsProperty`. ### Testing - -**If your sim has been published and has translations:** - -Run with `?locales=*` to enable the locale-testing button (globe) in the navigation bar. Open the locale dialog by -pressing the globe button in the navigation bar. Press and hold while moving the pointer over locale names. This changes -the locale. Watch for layout problems. Fix any layout problems that are identified. For example, if a Text node needs to -remain centered on something, then a boundsProperty listener may be needed. - -**If you are working on an unpublished sim:** - Use the `stringTest=dynamic` query parameter to change all the strings in your sim at once. `DynamicStringTest` uses a keyboard event listener to adjust the length of strings with the arrow keys and space bar. For more specific usage info refer to [DynamicStringTest](https://github.com/phetsims/joist/blob/main/js/DynamicStringTest.ts) documentation. This