Can delete conversation messages

This commit is contained in:
Pierre HUBERT
2018-08-28 10:09:40 +02:00
parent 2b999c63a8
commit e92201b51d
9 changed files with 265 additions and 4 deletions

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:id="@+id/action_delete"
android:title="@string/action_delete" />
</menu>

View File

@ -244,4 +244,8 @@
<string name="action_follow">Suivre</string>
<string name="button_follow">Suivre</string>
<string name="button_following">Suivi</string>
<string name="action_delete">Supprimer</string>
<string name="activity_about_title">A propos</string>
<string name="dialog_open_source_licenses_title">Licences Open Source</string>
<string name="btn_open_source_licences">Licences Open Source</string>
</resources>

View File

@ -246,4 +246,10 @@
<string name="action_follow">Follow</string>
<string name="button_follow">Follow</string>
<string name="button_following">Following</string>
<string name="action_delete">Delete</string>
<string name="dialog_delete_conversation_message_title">Delete message</string>
<string name="dialog_delete_conversation_message_message">Do you really want to delete this conversation message? Note: This may not have any effect if the other members of the conversation have already downloaded the message!</string>
<string name="dialog_delete_conversation_message_cancel">Cancel</string>
<string name="dialog_delete_conversation_message_confirm">Delete</string>
<string name="err_delete_conversation_message">Could not delete conversation message!</string>
</resources>