Other user's assetsAll the assets in this file belong to the author, or are from free-to-use modder's resources
Upload permissionYou can upload this file to other sites but you must credit me as the creator of the file
Modification permissionYou are allowed to modify my files and release bug fixes or improve on the features without permission from or credit to me
Conversion permissionYou can convert this file to work with other games as long as you credit me as the creator of the file
Asset use permissionYou are allowed to use the assets in this file without permission or crediting me
Asset use permission in mods/files that are being soldYou are not allowed to use assets from this file in any mods/files that are being sold, for money, on Steam Workshop or other platforms
Asset use permission in mods/files that earn donation pointsYou are allowed to earn Donation Points for your mods if they use my assets
Author notes
This author has not provided any additional notes regarding file permissions
File credits
SKSE CommonLib-SSE
Donation Points system
Please log in to find out whether this mod is receiving Donation Points
Before that, I directly changed the SKSE code. Later, vs2022 refused to compile the SKSE I changed. I had to think of new ways to add translation tools to help non English users use word order that conforms to their language habits.
usage method:
e.g. one:
String str1 = StringUtil.Translate("$SomeKey");// Hello {0},{1} and {2}! String[] strArg = new String[3]; strArg[0] = "Lili"; strArg[1] = "Apple"; strArg[2] = "Kittle"; String str2 = StringUtil.Format(str1,strArg); ;If you use the above method, you must add the following code to the StringUtil.psc file and recompile the file. ;Get transslation String Function Translate(String key) global native ;Format string String Function Format(String str, String[] arguments) global native
e.g. two: Change StringUtil in method 1 to KertamDeTranslateHelper. e.g. three: Create a new psc file, extend KertamDeTranslateHelper, compile it, and use your own object name.
Only files of the second method are provided here. If you need other methods, you need to change the code yourself. After all, this tool is not provided for ordinary users.