diff --git a/res/values/strings.xml b/res/values/strings.xml
index daf5510e4..6e071247a 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -186,6 +186,7 @@
Image saved
Error, image not saved
Please wait...
+ An error occurred during the file transfer
You are trying to send a message using LIME to a contact not verified by ZRTP.\nPlease call this contact and verify his ZRTP key before sending your messages.
Processing image, can take up to a few seconds depending on the size of the file
diff --git a/src/org/linphone/LinphoneManager.java b/src/org/linphone/LinphoneManager.java
index 2a2575155..dcb781799 100644
--- a/src/org/linphone/LinphoneManager.java
+++ b/src/org/linphone/LinphoneManager.java
@@ -387,7 +387,7 @@ public class LinphoneManager implements LinphoneCoreListener, LinphoneChatMessag
}
if (state == LinphoneChatMessage.State.FileTransferError) {
- //TODO
+ LinphoneUtils.displayErrorAlert(getString(R.string.image_transfert_error), LinphoneActivity.instance());
}
for (LinphoneChatMessage.LinphoneChatMessageListener l: simpleListeners) {