1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-16 00:03:22 +00:00

New Android attachment handling to support saving or opening attachments (#751)

* New Android attachment handling to support saving or opening (when available) attachments

* Simplified options dialog logic & changed error text
This commit is contained in:
Matt Portune
2020-03-02 22:14:14 -05:00
committed by GitHub
parent 70c49922b0
commit 2b1d186611
5 changed files with 126 additions and 15 deletions

View File

@@ -2841,5 +2841,23 @@ namespace Bit.App.Resources {
return ResourceManager.GetString("PasswordGeneratorPolicyInEffect", resourceCulture);
}
}
public static string Open {
get {
return ResourceManager.GetString("Open", resourceCulture);
}
}
public static string UnableToSaveAttachment {
get {
return ResourceManager.GetString("UnableToSaveAttachment", resourceCulture);
}
}
public static string SaveAttachmentSuccess {
get {
return ResourceManager.GetString("SaveAttachmentSuccess", resourceCulture);
}
}
}
}