Localization: fix incorrect Unicode for space after bullet points in French language (#5824)

* localization: fix incorrect unicode for space

* Remove bullet string resource as it doesn't need translation
This commit is contained in:
Rohit Verma 2024-09-10 14:11:45 +05:30 committed by GitHub
parent 76e4c38299
commit 9edde234ec
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
77 changed files with 6 additions and 79 deletions

View file

@ -1,6 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="top">
@ -8,7 +9,8 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingRight="@dimen/tiny_margin"
android:text="@string/bullet"
android:text="&#8226;"
android:textColor="@android:color/white"
android:textSize="@dimen/normal_text" />
android:textSize="@dimen/normal_text"
tools:ignore="HardcodedText" />
</LinearLayout>