Fix string substitutions with unknown filetypes
This commit is contained in:
parent
c17005218f
commit
83c806a774
|
@ -175,10 +175,10 @@ public class UIHelper {
|
|||
try {
|
||||
mime = URLConnection.guessContentTypeFromName(path);
|
||||
} catch (final StringIndexOutOfBoundsException ignored) {
|
||||
return "";
|
||||
return context.getString(R.string.file);
|
||||
}
|
||||
if (mime == null) {
|
||||
return "";
|
||||
return context.getString(R.string.file);
|
||||
} else if (mime.startsWith("audio/")) {
|
||||
return context.getString(R.string.audio);
|
||||
} else if(mime.startsWith("video/")) {
|
||||
|
|
|
@ -362,6 +362,7 @@
|
|||
<string name="choose_file">Choose file</string>
|
||||
<string name="receiving_x_file">Receiving %1$s (%2$d%% completed)</string>
|
||||
<string name="download_x_file">Download %s</string>
|
||||
<string name="file">file</string>
|
||||
<string name="open_x_file">Open %s</string>
|
||||
<string name="sending_file">sending (%1$d%% completed)</string>
|
||||
<string name="preparing_file">Preparing file for transmission</string>
|
||||
|
|
Loading…
Reference in a new issue