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)
46 lines
1.5 KiB
XML
46 lines
1.5 KiB
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/search"
|
|
android:id="@+id/menu_search_chat"
|
|
app:actionViewClass="androidx.appcompat.widget.SearchView"
|
|
app:showAsAction="collapseActionView|never" />
|
|
|
|
<item android:title="0/0"
|
|
android:id="@+id/menu_search_counter"
|
|
android:visible="false"
|
|
app:showAsAction="always"/>
|
|
|
|
<item android:title="@string/back"
|
|
android:id="@+id/menu_search_up"
|
|
android:icon="@drawable/ic_search_up"
|
|
android:visible="false"
|
|
app:showAsAction="always"/>
|
|
|
|
<item android:title="@string/next"
|
|
android:id="@+id/menu_search_down"
|
|
android:icon="@drawable/ic_search_down"
|
|
android:visible="false"
|
|
app:showAsAction="always"/>
|
|
|
|
<item android:id="@+id/menu_ephemeral_messages"
|
|
android:title="@string/ephemeral_messages" />
|
|
|
|
<item android:title="@string/menu_mute"
|
|
android:id="@+id/menu_mute_notifications"/>
|
|
|
|
<item android:id="@+id/menu_videochat_invite"
|
|
android:title="@string/videochat" />
|
|
|
|
<item android:id="@+id/menu_show_map"
|
|
android:title="@string/tab_map"
|
|
android:icon="@drawable/ic_map_white_24dp"
|
|
app:showAsAction="ifRoom" />
|
|
|
|
<item android:title="@string/menu_add_attachment"
|
|
android:id="@+id/menu_add_attachment" />
|
|
|
|
</menu>
|