mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07:00
Android: Support RTL language translations
If someone wants to do a translation for an Arabic language, Hebrew, etc, it will now display correctly.
This commit is contained in:
parent
4d6bc39e2f
commit
cc62cb8818
@ -19,7 +19,8 @@
|
||||
<application
|
||||
android:icon="@drawable/ic_launcher"
|
||||
android:label="@string/app_name"
|
||||
android:allowBackup="true">
|
||||
android:allowBackup="true"
|
||||
android:supportsRtl="true">
|
||||
<activity
|
||||
android:name="org.dolphinemu.dolphinemu.gamelist.GameListActivity"
|
||||
android:label="@string/app_name"
|
||||
|
@ -9,7 +9,7 @@
|
||||
android:id="@+id/AboutItemTitle"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="15dip"
|
||||
android:layout_marginStart="15dip"
|
||||
android:layout_marginTop="6dip"
|
||||
android:singleLine="true"
|
||||
android:textAppearance="?android:attr/textAppearanceMedium"/>
|
||||
@ -18,7 +18,7 @@
|
||||
android:id="@+id/AboutItemSubTitle"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="15dip"
|
||||
android:layout_marginStart="15dip"
|
||||
android:textAppearance="?android:attr/textAppearanceSmall"/>
|
||||
|
||||
</LinearLayout>
|
@ -14,7 +14,7 @@
|
||||
|
||||
android:layout_alignParentTop="true"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:layout_marginRight="6dip"/>
|
||||
android:layout_marginEnd="6dip"/>
|
||||
|
||||
<!-- Properties in the 'tools' namespace are only visible in the UI editor, not at runtime. -->
|
||||
<TextView tools:text="@string/file_size"
|
||||
@ -24,9 +24,9 @@
|
||||
|
||||
android:textColor="#bbbbbb"
|
||||
|
||||
android:layout_toRightOf="@id/BrowserItemIcon"
|
||||
android:layout_toEndOf="@id/BrowserItemIcon"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_alignParentEnd="true"
|
||||
|
||||
android:singleLine="true"
|
||||
android:ellipsize="marquee"
|
||||
@ -45,8 +45,8 @@
|
||||
android:singleLine="true"
|
||||
android:ellipsize="end"
|
||||
|
||||
android:layout_toRightOf="@id/BrowserItemIcon"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_toEndOf="@id/BrowserItemIcon"
|
||||
android:layout_alignParentEnd="true"
|
||||
android:layout_alignParentTop="true"
|
||||
android:layout_above="@id/BrowserItemSubTitle"
|
||||
android:layout_alignWithParentIfMissing="true"
|
||||
|
@ -14,7 +14,7 @@
|
||||
|
||||
android:layout_alignParentTop="true"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:layout_marginRight="6dip"/>
|
||||
android:layout_marginEnd="6dip"/>
|
||||
|
||||
<!-- Properties in the 'tools' namespace are only visible in the UI editor, not at runtime. -->
|
||||
<TextView tools:text="@string/file_size"
|
||||
@ -24,9 +24,9 @@
|
||||
|
||||
android:textColor="#bbbbbb"
|
||||
|
||||
android:layout_toRightOf="@id/GameListItemIcon"
|
||||
android:layout_toEndOf="@id/GameListItemIcon"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_alignParentEnd="true"
|
||||
|
||||
android:singleLine="true"
|
||||
android:ellipsize="marquee"
|
||||
@ -45,8 +45,8 @@
|
||||
android:singleLine="true"
|
||||
android:ellipsize="end"
|
||||
|
||||
android:layout_toRightOf="@id/GameListItemIcon"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_toEndOf="@id/GameListItemIcon"
|
||||
android:layout_alignParentEnd="true"
|
||||
android:layout_alignParentTop="true"
|
||||
android:layout_above="@id/GameListItemSubTitle"
|
||||
android:layout_alignWithParentIfMissing="true"
|
||||
|
@ -3,7 +3,7 @@
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="48dp"
|
||||
android:gravity="left"
|
||||
android:gravity="start"
|
||||
android:orientation="vertical" >
|
||||
|
||||
<TextView
|
||||
|
Loading…
Reference in New Issue
Block a user