Added new file type names for file transfers
- apk - vcard
This commit is contained in:
parent
c17005218f
commit
ae16439bd6
|
@ -187,6 +187,10 @@ public class UIHelper {
|
|||
return context.getString(R.string.image);
|
||||
} else if (mime.contains("pdf")) {
|
||||
return context.getString(R.string.pdf_document) ;
|
||||
} else if (mime.contains("application/vnd.android.package-archive")) {
|
||||
return context.getString(R.string.apk) ;
|
||||
} else if (mime.contains("vcard")) {
|
||||
return context.getString(R.string.vcard) ;
|
||||
} else {
|
||||
return mime;
|
||||
}
|
||||
|
|
|
@ -440,6 +440,8 @@
|
|||
<string name="video">video file</string>
|
||||
<string name="image">image file</string>
|
||||
<string name="pdf_document">PDF document</string>
|
||||
<string name="apk">Android App</string>
|
||||
<string name="vcard">Contact</string>
|
||||
<string name="received_x_file">Received %s</string>
|
||||
<string name="disable_foreground_service">Disable foreground service</string>
|
||||
<string name="touch_to_open_conversations">Touch to open Conversations</string>
|
||||
|
|
Loading…
Reference in a new issue