-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Show localized names for system folders #3561
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Move makes gridview refresh like a Collection Reset event This reverts commit 7a2eca6.
@gave92 What kind of impact will this have on performance? |
@yaichenbaum it should have almost no impact as the localized name is loaded in LoadExtendedItemProperties. Reading the name from cache should also be pretty fast. I haven't noticed slow downs in C:\Windows\System32 (big folder with lots of subfolders). Have you seen something different in your testing? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@gave92 There doesn't really seem to be any major impact, good work! |
Aha sorry now it's ready I think. |
Fixes #1226
This PR adds support for showing localized folder names (e.g. "Programmi" instead of "Program Files" for it-IT)
Does not slow down file loading, display name is loaded in LoadExtendedItemProperties() (if not cached).
@jakoss I've employed your caching feature to save the display name for files, I'd be happy if you could take a look at the code to see if there's anything amiss ;)
Note: This PR contains some changes done by @hez2010 for #3350 (also needed here)