mirror of
https://github.com/ArcaneChat/android.git
synced 2026-07-03 14:05:24 +02:00
a8acfcfeb7
* reword 'QR code' to 'Invite Code' * reword adding classic email * remove the 'new contact' things together * add 'new classic contact' shortcut only for non-chatmail; it is still always available in the three-dot menu of 'new contact' * use same menu for qr show/scan * add 'new classic contact' * remove 'scan' button from 'new classic contact' (ppl usually came from 'scan') * rename to 'add contact manually' * stay with 'qr code' for now
31 lines
1004 B
XML
31 lines
1004 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/menu_share"
|
|
android:id="@+id/share"
|
|
android:icon="@drawable/ic_share_white_24dp"
|
|
app:showAsAction="ifRoom"/>
|
|
|
|
<item android:title="@string/menu_new_classic_contact"
|
|
android:id="@+id/new_classic_contact"
|
|
app:showAsAction="never"/>
|
|
|
|
<item android:title="@string/menu_copy_to_clipboard"
|
|
android:id="@+id/copy"
|
|
app:showAsAction="never"/>
|
|
|
|
<item android:title="@string/paste_from_clipboard"
|
|
android:id="@+id/paste"
|
|
app:showAsAction="never"/>
|
|
|
|
<item android:title="@string/load_qr_code_as_image"
|
|
android:id="@+id/load_from_image"
|
|
app:showAsAction="never"/>
|
|
|
|
<item android:title="@string/withdraw_qr_code"
|
|
android:id="@+id/withdraw"
|
|
app:showAsAction="never"/>
|
|
|
|
</menu>
|