mirror of
https://github.com/ArcaneChat/android.git
synced 2026-07-03 14:05:24 +02:00
e50a13f371
* streamline menu - remove prefix 'Show', we are not using it at most other places, nor do comparable UI - move 'All Locations' below 'All Media', this seems to be more logical (we were even thinking of making 'Locations' a tap in 'Media') * add missing plural form for 'Location' (needed for iOS map experiments, maybe also the better title for the in-chat-maps in general)
28 lines
853 B
XML
28 lines
853 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
<item android:title="@string/qr_code"
|
|
android:id="@+id/menu_qr"
|
|
android:icon="@drawable/ic_ab_qr"
|
|
app:showAsAction="always"/>
|
|
|
|
<item android:title="@string/menu_new_chat"
|
|
android:id="@+id/menu_new_chat" />
|
|
|
|
<item android:title="@string/menu_all_media"
|
|
android:id="@+id/menu_all_media" />
|
|
|
|
<item android:title="@string/menu_show_global_map"
|
|
android:id="@+id/menu_global_map"
|
|
android:visible="false"
|
|
/>
|
|
|
|
<item android:title="@string/menu_settings"
|
|
android:id="@+id/menu_settings" />
|
|
|
|
<item android:title="@string/switch_account"
|
|
android:id="@+id/menu_switch_account" />
|
|
|
|
</menu>
|