mirror of
https://github.com/ArcaneChat/android.git
synced 2026-07-03 14:05:24 +02:00
e71f5d9bba
* add broadcasts ffi * add 'broadcast' options to menu, chat, profile etc. * generate initial broadcast names * reword broadcast hint * make 'Broadcasts Lists' experimental; while on that, also add a confirmation dialog to the location streaming switch (wording taken from ios) * Update res/values/strings.xml Co-authored-by: Hocuri <hocuri@gmx.de> * comment on strings.xml * tweak 'experimental' appearing, avoid the 'test tube'-emoji that is not supported on many devices Co-authored-by: Hocuri <hocuri@gmx.de>
34 lines
1.0 KiB
XML
34 lines
1.0 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/global_menu_edit_desktop"
|
|
android:id="@+id/edit_name"
|
|
app:showAsAction="never"/>
|
|
|
|
<item android:title="@string/menu_copy_to_clipboard"
|
|
android:id="@+id/copy_addr_to_clipboard"
|
|
app:showAsAction="never"/>
|
|
|
|
<item android:title="@string/menu_mute"
|
|
android:id="@+id/menu_mute_notifications"
|
|
app:showAsAction="never"/>
|
|
|
|
<item android:title="@string/pref_sound"
|
|
android:id="@+id/menu_sound"
|
|
app:showAsAction="never"/>
|
|
|
|
<item android:title="@string/pref_vibrate"
|
|
android:id="@+id/menu_vibrate"
|
|
app:showAsAction="never"/>
|
|
|
|
<item android:title="@string/profile_encryption"
|
|
android:id="@+id/show_encr_info"
|
|
app:showAsAction="never"/>
|
|
|
|
<item android:title="@string/menu_block_contact"
|
|
android:id="@+id/block_contact"
|
|
app:showAsAction="never"/>
|
|
|
|
</menu>
|