Skip to content

Commit fa76ffe

Browse files
authored
Fix: Fixed translation in Advanced Permissions page (#12502)
1 parent 1ba8517 commit fa76ffe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Files.App/Filesystem/Security/AccessControlEntry.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ public bool IsEditable
4545
public string AccessControlTypeHumanized
4646
=> AccessControlType switch
4747
{
48-
AccessControlEntryType.Allow => "Allow",
49-
_ => "Deny" // AccessControlType.Deny
48+
AccessControlEntryType.Allow => "Allow".GetLocalizedResource(),
49+
_ => "Deny".GetLocalizedResource() // AccessControlType.Deny
5050
};
5151

5252
/// <summary>

0 commit comments

Comments
 (0)