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