StringResourceVisualizer icon indicating copy to clipboard operation
StringResourceVisualizer copied to clipboard

Add support for .RESW files

Open mrlacey opened this issue 7 years ago • 3 comments

Currently, only .resx files are supported. .resw files have the same internal structure and so should be easy to support. However, the way they are used in code makes their usage harder to identify.

Add support if a simple way to identify their usage can be identified. This may require more complicated code analysis than just string matching. I originally looked at this for resx support too but it is much more complicated and there are many errors and edge cases to consider.

mrlacey avatar Nov 11 '18 12:11 mrlacey

Make running on *.resw files an optional setting that is disabled by default.

Can use ResXFileCodeGenerator as a Custom Tool on .resw files.

mrlacey avatar Feb 03 '19 14:02 mrlacey

For easy reference: https://docs.microsoft.com/en-us/windows/uwp/app-resources/localize-strings-ui-manifest https://platform.uno/docs/articles/using-uno-ui.html#localization https://stackoverflow.com/questions/62196550/is-there-one-syntax-for-all-platforms-to-use-localized-resources-from-resw-file

mrlacey avatar Mar 08 '21 16:03 mrlacey