Skip to content

Commit 528dd77

Browse files
authored
Fix string resources for jump list (#9326)
1 parent 7320fea commit 528dd77

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Files.Uwp/Helpers/JumpListManager.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,11 +78,11 @@ private void AddFolder(string path)
7878
{
7979
if (path.Equals(CommonPaths.DesktopPath, StringComparison.OrdinalIgnoreCase))
8080
{
81-
displayName = "ms-resource:///Resources/SidebarDesktop";
81+
displayName = "ms-resource:///Resources/Desktop";
8282
}
8383
else if (path.Equals(CommonPaths.DownloadsPath, StringComparison.OrdinalIgnoreCase))
8484
{
85-
displayName = "ms-resource:///Resources/SidebarDownloads";
85+
displayName = "ms-resource:///Resources/Downloads";
8686
}
8787
else if (path.Equals(CommonPaths.RecycleBinPath, StringComparison.OrdinalIgnoreCase))
8888
{
@@ -99,7 +99,7 @@ private void AddFolder(string path)
9999
case "Music":
100100
case "Videos":
101101
// Use localized name
102-
displayName = $"ms-resource:///Resources/Sidebar{libName}";
102+
displayName = $"ms-resource:///Resources/{libName}";
103103
break;
104104

105105
default:

0 commit comments

Comments
 (0)