mirror of
https://github.com/oxen-io/session-android.git
synced 2024-12-24 08:47:46 +00:00
parent
4bdb2acd29
commit
0efda2df91
@ -689,6 +689,7 @@
|
||||
|
||||
<!-- SaveAttachmentTask -->
|
||||
<string name="SaveAttachmentTask_open_directory">Open directory</string>
|
||||
<string name="SaveAttachmentTask_saved_to">Saved to %s</string>
|
||||
|
||||
<!-- SearchToolbar -->
|
||||
<string name="SearchToolbar_search">Search</string>
|
||||
|
@ -188,7 +188,10 @@ public class SaveAttachmentTask extends ProgressDialogAsyncTask<SaveAttachmentTa
|
||||
Toast.LENGTH_LONG).show();
|
||||
break;
|
||||
case SUCCESS:
|
||||
Toast.makeText(context, String.format("Saved to %s", result.second()), Toast.LENGTH_LONG).show();
|
||||
Toast.makeText(context,
|
||||
context.getResources().getString(R.string.SaveAttachmentTask_saved_to,
|
||||
result.second()),
|
||||
Toast.LENGTH_LONG).show();
|
||||
break;
|
||||
case WRITE_ACCESS_FAILURE:
|
||||
Toast.makeText(context, R.string.ConversationFragment_unable_to_write_to_sd_card_exclamation,
|
||||
|
Loading…
x
Reference in New Issue
Block a user