apps-android-commons/app/src/main/res/layout/welcome_bullet.xml
Rohit Verma 9edde234ec
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
2024-09-10 17:41:45 +09:00

16 lines
No EOL
643 B
XML

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