Created
October 10, 2012 11:26
-
-
Save mayuki/3864931 to your computer and use it in GitHub Desktop.
リソースファイルをひねり出す。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dir -r *.resx | %{ $xmldoc = [xml](Get-Content $_); $xmldoc.root.data | ?{ -not [System.String]::IsNullOrWhiteSpace($_.name)} | %{ $_.value = ("[EN]" + $_.value + "[/EN]") }; $xmldoc.Save($_.FullName.Substring(0,$_.FullName.Length-4)+"en.resx") } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment