We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ba8517 commit fa76ffeCopy full SHA for fa76ffe
src/Files.App/Filesystem/Security/AccessControlEntry.cs
@@ -45,8 +45,8 @@ public bool IsEditable
45
public string AccessControlTypeHumanized
46
=> AccessControlType switch
47
{
48
- AccessControlEntryType.Allow => "Allow",
49
- _ => "Deny" // AccessControlType.Deny
+ AccessControlEntryType.Allow => "Allow".GetLocalizedResource(),
+ _ => "Deny".GetLocalizedResource() // AccessControlType.Deny
50
};
51
52
/// <summary>
0 commit comments