Make corner path coral/flame overlays untranslatable

The overlays for coral and flame corner paths were not marked as
translatable="false", meaning that when the language was set to
cibarA [XB] the paths were reversed. This caused a SystemUI
crashloop at runtime.

Making the path config strings untranslatable fixes the issue.

Bug: 144674035
Bug: 144773362
Test: reproduced crash loop by flashing to master HEAD, setting
language to cibarA [XB], and rebooting the phone. Added parameter
translatable="false" and flashed again; verified that phone works
normally.

Change-Id: I86638593457fa820d8eb3e87a5691d3e33deb0fa
(cherry picked from commit 651754fa5b078f9b4f0b8509e8e74809b2bea7da)
diff --git a/coral/overlay/frameworks/base/packages/SystemUI/res/values/config.xml b/coral/overlay/frameworks/base/packages/SystemUI/res/values/config.xml
index 5011683..5a8815b 100644
--- a/coral/overlay/frameworks/base/packages/SystemUI/res/values/config.xml
+++ b/coral/overlay/frameworks/base/packages/SystemUI/res/values/config.xml
@@ -62,5 +62,5 @@
     <!-- For how long the lock screen can be on before the display turns off. -->
     <integer name="config_lockScreenDisplayTimeout">7000</integer>
 
-    <string name="config_rounded_mask">M21,0C19.94,0.01 18.83,0.04 17.73,0.11C16.91,0.17 16.09,0.25 15.3,0.36C14.5,0.48 13.72,0.62 12.95,0.81C11.42,1.19 9.97,1.72 8.65,2.43C7.32,3.14 6.12,4.02 5.08,5.07C4.04,6.11 3.15,7.31 2.44,8.64C1.73,9.97 1.19,11.42 0.82,12.94C0.63,13.7 0.48,14.49 0.37,15.29C0.25,16.09 0.17,16.9 0.12,17.72C0.05,18.82 0.02,19.93 0.01,21.55</string>
+    <string name="config_rounded_mask" translatable="false">M21,0C19.94,0.01 18.83,0.04 17.73,0.11C16.91,0.17 16.09,0.25 15.3,0.36C14.5,0.48 13.72,0.62 12.95,0.81C11.42,1.19 9.97,1.72 8.65,2.43C7.32,3.14 6.12,4.02 5.08,5.07C4.04,6.11 3.15,7.31 2.44,8.64C1.73,9.97 1.19,11.42 0.82,12.94C0.63,13.7 0.48,14.49 0.37,15.29C0.25,16.09 0.17,16.9 0.12,17.72C0.05,18.82 0.02,19.93 0.01,21.55</string>
 </resources>
diff --git a/flame/overlay/frameworks/base/packages/SystemUI/res/values/config.xml b/flame/overlay/frameworks/base/packages/SystemUI/res/values/config.xml
index ce8fe2a..03d9744 100644
--- a/flame/overlay/frameworks/base/packages/SystemUI/res/values/config.xml
+++ b/flame/overlay/frameworks/base/packages/SystemUI/res/values/config.xml
@@ -62,6 +62,6 @@
     <!-- For how long the lock screen can be on before the display turns off. -->
     <integer name="config_lockScreenDisplayTimeout">7000</integer>
 
-    <string name="config_rounded_mask">M22,0C19.94,0.01 18.83,0.04 17.73,0.11C16.91,0.17 16.09,0.25 15.3,0.36C14.5,0.48 13.72,0.62 12.95,0.81C11.42,1.19 9.97,1.72 8.65,2.43C7.32,3.14 6.12,4.02 5.08,5.07C4.04,6.11 3.15,7.31 2.44,8.64C1.73,9.97 1.19,11.42 0.82,12.94C0.63,13.7 0.48,14.49 0.37,15.29C0.25,16.09 0.17,16.9 0.12,17.72C0.05,18.82 0.02,19.93 0.01,21.55</string>
+    <string name="config_rounded_mask" translatable="false">M22,0C19.94,0.01 18.83,0.04 17.73,0.11C16.91,0.17 16.09,0.25 15.3,0.36C14.5,0.48 13.72,0.62 12.95,0.81C11.42,1.19 9.97,1.72 8.65,2.43C7.32,3.14 6.12,4.02 5.08,5.07C4.04,6.11 3.15,7.31 2.44,8.64C1.73,9.97 1.19,11.42 0.82,12.94C0.63,13.7 0.48,14.49 0.37,15.29C0.25,16.09 0.17,16.9 0.12,17.72C0.05,18.82 0.02,19.93 0.01,21.55</string>
 
 </resources>