├── .gitignore ├── .gitattributes ├── README.md └── lang └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | lang/lang.txt.bak 3 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # [HWiNFO](https://www.hwinfo.com/) Repo 2 | Holds components that can be open-sourced 3 | -------------------------------------------------------------------------------- /lang/README.md: -------------------------------------------------------------------------------- 1 | # HWiNFO Language File 2 | 3 | ### This repo contains the language file for [HWiNFO64](https://www.hwinfo.com/) v7.17 and later. 4 | 5 | ### This file is encoded in UTF-8 format and should be opened/modified only in programs supporting this encoding ! 6 | 7 | Modify only the respective language phrase. Do not modify the "en" value as this needs to match the original phrase in HWiNFO. 8 | 9 | {{..}} is a special tag used as a hint telling HWiNFO how/where to translate the item. Do not modify the tag name. 10 | 11 | ";" is used for comments 12 | 13 | "\n" is used as New Line 14 | 15 | {{LangName}} lists languages currently supported, adding a new language might require an update in HWiNFO, contact the author. 16 | 17 | A default language file comes embedded in HWiNFO. Since build 4676 HWiNFO64 will allow using a custom language file by placing the lang.txt in the same folder where HWiNFO64.EXE is located. 18 | --------------------------------------------------------------------------------