Find localized Windows strings

后端 未结 4 1590
逝去的感伤
逝去的感伤 2021-01-12 20:47

I need to find some strings that the current version of Windows is using. For example, when I create a new folder, it is initially named \"New Folder\" on English Vista. I

4条回答
  •  挽巷
    挽巷 (楼主)
    2021-01-12 21:18

    If you want to handle 80% of the cases, you can start with "New Folder".

    As I guess you're in an enterprise environment, you can get the folder names back into a storage, then after a week (or any time) you get through the names; update your app; release the new version which will please the users. (then later publish the results here)

    You can preemptively test your app on a range of platform you're suspecting the users to use. to get a first series of folders names.

    This will avoid the problem of dealing with code specific with each of the platform you're looking at.

    EDIT Well I get a second thought about that, I guess you might want to warn the user about that "New Folder" if it wasn't rename after some time (say a minute)? then I guess you would need to add a list and a timer ...

提交回复
热议问题