├── .gitignore
├── CONTRIBUTING.md
├── LICENSE
├── Makefile
├── README.md
├── README_CN.md
├── ReadMe.txt
├── help
├── en-us
│ ├── ToC.hhc
│ ├── contents
│ │ ├── 01.html
│ │ ├── 02.html
│ │ ├── 03.html
│ │ ├── 04.html
│ │ ├── FontSel.PNG
│ │ ├── icon.png
│ │ ├── noMeiryoUI.PNG
│ │ └── noMeiryoUI.css
│ └── help_en.hhp
├── ja-jp
│ ├── ToC.hhc
│ ├── contents
│ │ ├── 01.html
│ │ ├── 02.html
│ │ ├── 03.html
│ │ ├── 04.html
│ │ ├── FontSel.PNG
│ │ ├── icon.png
│ │ ├── noMeiryoUI.PNG
│ │ └── noMeiryoUI.css
│ └── help_ja-jp.hhp
├── ko-kr
│ ├── ToC.hhc
│ ├── contents
│ │ ├── 01.html
│ │ ├── 02.html
│ │ ├── 03.html
│ │ ├── 04.html
│ │ ├── FontSel.png
│ │ ├── icon.png
│ │ ├── noMeiryoUI.css
│ │ └── noMeiryoUI.png
│ └── help_ko-kr.hhp
├── pt-br
│ ├── ToC.hhc
│ ├── contents
│ │ ├── 01.html
│ │ ├── 02.html
│ │ ├── 03.html
│ │ ├── 04.html
│ │ ├── FontSel.PNG
│ │ ├── icon.png
│ │ ├── noMeiryoUI.PNG
│ │ └── noMeiryoUI.css
│ └── help_br.hhp
├── zh-cn
│ ├── ToC.hhc
│ ├── contents
│ │ ├── 01.html
│ │ ├── 02.html
│ │ ├── 03.html
│ │ ├── 04.html
│ │ ├── FontSel.PNG
│ │ ├── icon.png
│ │ ├── noMeiryoUI.PNG
│ │ └── noMeiryoUI.css
│ └── help_zh-cn.hhp
└── zh-tw
│ ├── ToC.hhc
│ ├── contents
│ ├── 01.html
│ ├── 02.html
│ ├── 03.html
│ ├── 04.html
│ ├── FontSel.PNG
│ ├── icon.png
│ ├── noMeiryoUI.PNG
│ └── noMeiryoUI.css
│ └── help_zh-tw.hhp
├── lang
├── default.lng
├── en.lng
├── ja-JP.lng
├── ko-KR.lng
├── pt-BR.lng
├── zh-CN.lng
└── zh-TW.lng
├── program
├── FontSel.cpp
├── FontSel.h
├── TWR
│ ├── AppliBase.h
│ ├── BaseDialog.cpp
│ ├── BaseDialog.h
│ ├── DialogAppliBase.cpp
│ ├── DialogAppliBase.h
│ ├── ModelessDialog.cpp
│ ├── ModelessDialog.h
│ ├── NCFileDialog.cpp
│ ├── NCFileDialog.h
│ ├── TwrCheckbox.cpp
│ ├── TwrCheckbox.h
│ ├── TwrCombobox.cpp
│ ├── TwrCombobox.h
│ ├── TwrCore.cpp
│ ├── TwrCore.h
│ ├── TwrMenu.cpp
│ ├── TwrMenu.h
│ ├── TwrWnd.cpp
│ ├── TwrWnd.h
│ ├── stdafx.h
│ └── tstring.h
├── country
│ ├── default.cpp
│ ├── default.h
│ ├── japan.cpp
│ ├── japan.h
│ ├── korea.cpp
│ └── korea.h
├── iniReader.cpp
├── iniReader.h
├── langresource.cpp
├── langresource.h
├── noMeiryoUI.cpp
├── noMeiryoUI.exe.manifest
├── noMeiryoUI.h
├── noMeiryoUI.ico
├── noMeiryoUI.rc
├── noMeiryoUI.sln
├── noMeiryoUI.vcproj
├── noMeiryoUI.vcxproj
├── noMeiryoUI.vcxproj.filters
├── noMeiryoUI_2008.sln
├── noMeiryoUI_2008.vcproj
├── noMeiryoUI_2012.vcxproj
├── noMeiryoUI_2012.vcxproj.filters
├── resource.h
├── stdafx.cpp
├── stdafx.h
├── targetver.h
├── util.cpp
└── util.h
└── util
├── RESTOREreg.bat
├── SAVEreg.bat
├── localetest.c
└── localetest.exe
/.gitignore:
--------------------------------------------------------------------------------
1 | # noMeiryoUI (C) 2005,2012-2022 Tatsuhiko Shoji
2 | # The sources for noMeiryoUI are distributed under the MIT open source license
3 |
4 | /program/.vs
5 | /program/Debug
6 | /program/Debug_2008
7 | /program/Debug_2012
8 | /program/Release
9 | /program/Release_2008
10 | /program/Release_2012
11 | /program/ipch
12 | /program/noMeiryoUI.aps
13 | /program/noMeiryoUI.VC.db
14 | /.vs
15 | /help/*/*.chm
16 | /program/*.aps
17 | /program/*.suo
18 | /program/*.ncb
19 | /program/*.user
20 | /util/*.obj
21 | /program/noMeiryoUI.opensdf
22 | /program/noMeiryoUI.sdf
23 | /program/UpgradeLog.htm
24 | /files
25 |
--------------------------------------------------------------------------------
/CONTRIBUTING.md:
--------------------------------------------------------------------------------
1 | # How to contribute
2 |
3 | ## Release process
4 |
5 | To avoid contamination and gather translations
6 |
7 | 1. I or people who want to contribute open issue about new version.
8 | 2. On any trigger for release such as new translations, new code release process starts.
9 | 3. Review process write in below starts.
10 | 4. On all review process ends and software runs well I release it.
11 | 5. If no translation come, I release software without translation.
12 |
13 | ## How to include translations
14 |
15 | If you modify translations, you must follow this process.
16 |
17 | ### By GitHub
18 |
19 | 1. Create pull request.
20 | 2. Write message about pull request on issue about next version.
21 | 3. Review on pull request.
22 | 4. When translations come to arrive an agreement I merge in master.
23 |
24 | ### By e-mail
25 |
26 | 1. Send e-mail for me.
27 | 2. I exchange GitHub user and author.
28 | 3. Process goes on GitHub.
29 |
30 | ## How to merge code
31 |
32 | If you modify program, you must follow this process.
33 |
34 | 1. Create pull request.
35 | 2. Write message about pull request on issue about next version.
36 | 3. Review on pull request.
37 | 4. When code come to to arrive an agreement I merge in master.
38 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2005,2012-2018 Tatsuhiko Syoji
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/Makefile:
--------------------------------------------------------------------------------
1 | ROOT_DIR = .
2 |
3 | .IGNORE:
4 |
5 | .\files\default.chm : .\help\en-us\contents\* .\files\utils\SAVEreg.bat
6 | cd .\help\en-us
7 | hhc help_en.hhp
8 | cd ..\..
9 | copy .\help\en-us\en.chm .\files\default.chm
10 |
11 | .\files\en.chm : .\help\en-us\contents\* .\files\utils\SAVEreg.bat
12 | cd .\help\en-us
13 | hhc help_en.hhp
14 | cd ..\..
15 | copy .\help\en-us\en.chm .\files
16 |
17 | .\files\ja-JP.chm : .\help\ja-jp\contents\* .\files\utils\SAVEreg.bat
18 | cd .\help\ja-jp
19 | hhc .\help_ja-jp.hhp
20 | cd ..\..
21 | copy .\help\ja-JP\ja-JP.chm .\files
22 |
23 | .\files\ko-KR.chm : .\help\ko-kr\contents\* .\files\utils\SAVEreg.bat
24 | cd .\help\ko-kr
25 | hhc help_ko-kr.hhp
26 | cd ..\..
27 | copy .\help\ko-kr\ko-KR.chm .\files
28 |
29 | .\files\pt-BR.chm : .\help\pt-br\contents\* .\files\utils\SAVEreg.bat
30 | cd .\help\pt-br
31 | hhc help_br.hhp
32 | cd ..\..
33 | copy .\help\pt-br\pt-BR.chm .\files
34 |
35 | .\files\zh-CN.chm : .\help\zh-cn\contents\* .\files\utils\SAVEreg.bat
36 | cd .\help\zh-cn
37 | hhc help_zh-cn.hhp
38 | cd ..\..
39 | copy .\help\zh-cn\zh-CN.chm .\files
40 |
41 | .\files\zh-TW.chm : .\help\zh-tw\contents\* .\files\utils\SAVEreg.bat
42 | cd .\help\zh-tw
43 | hhc help_zh-tw.hhp
44 | cd ..\..
45 | copy .\help\zh-tw\zh-TW.chm .\files
46 |
47 | !CMDSWITCHES
48 |
49 | .\files\utils\SAVEreg.bat :
50 | mkdir .\files\utils
51 | copy .\util\SAVEreg.bat .\files\utils\SAVEreg.bat
52 |
53 | .\files\default.lng : .\lang\default.lng .\files\utils\SAVEreg.bat
54 | copy .\lang\default.lng .\files
55 |
56 | .\files\en.lng : .\lang\en.lng .\files\utils\SAVEreg.bat
57 | copy .\lang\en.lng .\files
58 |
59 | .\files\ja-JP.lng : .\lang\ja-JP.lng .\files\utils\SAVEreg.bat
60 | copy .\lang\ja-JP.lng .\files
61 |
62 | .\files\ko-KR.lng : .\lang\ko-KR.lng .\files\utils\SAVEreg.bat
63 | copy .\lang\ko-KR.lng .\files
64 |
65 | .\files\pt-BR.lng : .\lang\pt-BR.lng .\files\utils\SAVEreg.bat
66 | copy .\lang\pt-BR.lng .\files
67 |
68 | .\files\zh-CN.lng : .\lang\zh-CN.lng .\files\utils\SAVEreg.bat
69 | copy .\lang\zh-CN.lng .\files
70 |
71 | .\files\zh-TW.lng : .\lang\zh-TW.lng .\files\utils\SAVEreg.bat
72 | copy .\lang\zh-TW.lng .\files
73 |
74 | .\files\utils\RESTOREreg.bat : .\util\RESTOREreg.bat .\files\utils\SAVEreg.bat
75 | copy .\util\RESTOREreg.bat .\files\utils
76 |
77 | composition : \
78 | .\files\utils\SAVEreg.bat \
79 | .\files\default.chm \
80 | .\files\en.chm \
81 | .\files\ja-JP.chm \
82 | .\files\ko-KR.chm \
83 | .\files\pt-BR.chm \
84 | .\files\zh-CN.chm \
85 | .\files\zh-TW.chm \
86 | .\files\default.lng \
87 | .\files\en.lng \
88 | .\files\ja-JP.lng \
89 | .\files\ko-KR.lng \
90 | .\files\pt-BR.lng \
91 | .\files\zh-CN.lng \
92 | .\files\zh-TW.lng \
93 | .\files\utils\RESTOREreg.bat
94 |
95 | #en-us
96 | #ja-jp
97 | #ko-kr
98 | #pt-br
99 | #zh-cn
100 | #zh-tw
101 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | 中文版请查看[README_CN.md](https://github.com/Tatsu-syo/noMeiryoUI/blob/master/README_CN.md)
2 |
3 | # No!! MeiryoUI
4 |
5 | No!! MeiryoUI ("Meiryo UI mo daikkirai!!" in Japanese) brings back the capability to customize the user interface font on Windows, a feature that was removed since Windows 8.1.
6 |
7 | No!! MeiryoUI has some limitations on Windows 11 22H2,
8 |
9 | If you have some ideas check [discussions](https://github.com/Tatsu-syo/noMeiryoUI/discussions) for support.
10 |
11 | ## Requirements
12 |
13 | - Windows 8 or newer.
14 | - While No!! MeiryoUI should work on Windows Vista, it is not actively tested for compatibility.
15 |
16 | ## Installation
17 |
18 | > [!IMPORTANT]
19 | > No!! MeiryoUI makes changes to registry. It is recommanded to backup your registry before applying any changes.
20 | >
21 | > ```
22 | > reg save "HKCU\Control Panel" .\reset_font.reg /y
23 | > ```
24 |
25 | - Download zip archive from [GitHub Releases](https://github.com/Tatsu-syo/noMeiryoUI/releases/latest).
26 | - Extract the archive and run "noMeiryoUI.exe".
27 |
28 | ## Known Limitations
29 |
30 | - No!! MeiryoUI does not work with:
31 | - Windows taskbar.
32 | - Preinstalled UWP Apps (e.g. Settings, Paint, etc.).
33 | - Applications that ignore the system font settings.
34 |
35 | - No!! MeiryoUI cannot modify the titlebar font on Windows 11.
36 | - No!! MeiryoUI might be detected as Trojan/virus software by some antivirus software because No!! MeiryoUI changes system font settings.
37 |
38 | ## Documentations
39 |
40 | You can find detailed documentation on the [wiki](https://github.com/Tatsu-syo/noMeiryoUI/wiki).
41 |
42 | ## License
43 |
44 | Licensed under [the MIT License](https://github.com/Tatsu-syo/noMeiryoUI/blob/master/LICENSE).
45 |
--------------------------------------------------------------------------------
/README_CN.md:
--------------------------------------------------------------------------------
1 | # No!! MeiryoUI
2 |
3 | No!! MeiryoUI重新启用了自定义Windows用户界面字体的功能,该功能自Windows 8.1以来已被删除。
4 |
5 | No!! MeiryoUI 在Windows 11 22H2上有一些局限性,
6 |
7 | 如果您有一些想法或问题,请点击[discussions](https://github.com/tatsu-syo/nomeiryoui/discussions)。
8 |
9 | ## 使用需求
10 |
11 | - Windows 8 或以上。
12 | - 虽然NoMeiryoUI能在Windows Vista上工作,但并不会积极测试Bug并确保兼容性,建议使用系统设置。
13 |
14 | ## 使用注意
15 |
16 | > [!IMPORTANT]
17 | > No!! MeiryoUI 会对注册表进行更改。建议在应用任何更改之前备份注册表。
18 | >
19 | > ``` batchfile
20 | > reg save "HKCU\Control Panel" .\reset_font.reg /y
21 | > ```
22 |
23 | - 从[GitHub Releases](https://github.com/tatsu-syo/nomeiryoui/releases/latest)下载zip文件。
24 | - 全部解压至一个文件夹并运行"nomeiryoui.exe".。
25 |
26 | ## 已知问题
27 |
28 | - No!! MeiryoUI 无法工作在:
29 | - Windows 任务栏。
30 | - 系统自带的 UWP 应用(例如“设置”、“画图”)。
31 | - 忽略系统字体设置的应用程序。
32 | - No!! MeiryoUI 无法修改Windows 11的窗口标题字体。
33 |
34 | ## 说明文档
35 |
36 | 您可以在[Wiki](https://github.com/tatsu-syo/nomeiryoui/wiki)上找到详细的说明文档。
37 |
38 | ## 许可证书
39 |
40 | 使用[MIT License](https://github.com/tatsu-syo/nomeiryoui/blob/master/license)。
41 |
--------------------------------------------------------------------------------
/ReadMe.txt:
--------------------------------------------------------------------------------
1 | Meiryo UIも大っきらい!! source file package
2 | By Tatsuhiko Syoji(Tatsu) 2005,2012-2022
3 |
4 | [必要となるプログラム]
5 | ・Visual Studio 2008/2015以降(VC++)
6 |
7 | [ファイル]
8 | ReadMe.txt:本ファイルです。
9 | LICENSE.txt : MITライセンスの条文です。
10 |
11 | ・programフォルダ配下のファイル
12 | noMeiryoUI_2008.sln : Visual Studio 2008用ソリューションファイルです。
13 | noMeiryoUI_2008.vcproj : Visual Studio 2008用プロジェクトファイルです。
14 | noMeiryoUI.sln : Visual Studio 2015用ソリューションファイルです。
15 | noMeiryoUI.vcxproj : Visual Studio 2015用プロジェクトファイルです。
16 | noMeiryoUI.vcxproj.filters : Visual Studio 2015用プロジェクトファイルです。
17 | TWRフォルダ配下のファイル : GUI構築に使用したファイルです。
18 | その他のファイル : Meiryo UIも大っきらい!!自身のソースファイルです。
19 |
20 | ・helpフォルダ配下のファイル
21 | ja-jpフォルダ配下のファイル : 日本語版ヘルプファイルのソースファイルです。
22 | en-usフォルダ配下のファイル : 英語版ヘルプファイルのソースファイルです。
23 | zh-cnフォルダ配下のファイル : 簡体字中国語版ヘルプファイルのソースファイルです。
24 | zh-twフォルダ配下のファイル : 繁体字中国語版ヘルプファイルのソースファイルです。
25 | pt-brフォルダ配下のファイル : ポルトガル語(ブラジル)版ヘルプファイルのソースファイルです。
26 | ko-krフォルダ配下のファイル : 韓国語版ヘルプファイルのソースファイルです。
27 |
28 | ・langフォルダ配下のファイル
29 | English.lng : 英語の言語ファイルです。
30 | Chinese (Simplified)_China.lng : 簡体字中国語の言語ファイルです。
31 | Chinese (Traditional)_Taiwan.lng : 繁体字中国語の言語ファイルです。
32 | Portuguese_Brazil.lng : ポルトガル語(ブラジル)の言語ファイルです。
33 | Korean.lng : 韓国語の言語ファイルです。
34 | default.lng : 言語ファイルのサンプルを兼ねた言語に合う言語ファイルがないときに使用される言語ファイルです。
35 |
36 | [使い方]
37 | ・プログラムのビルド
38 | 1.まず、本アーカイブをディレクトリ付きで展開します。
39 | 2.programフォルダのnoMeiryoUI_2008.sln(Visual Studio 2008)か
40 | noMeiryoUI.sln(Visual Studio 2015以降)を開きます。
41 | 3.ビルドを行うと実行ファイルがデバッグ版はDebugフォルダに、リリース版は
42 | Releaseフォルダに生成されます。
43 |
44 | ・ヘルプの訳
45 | 1.編集元となるヘルプファイルをhelpフォルダの下のフォルダごとコピーしてください。
46 | 2.contentsフォルダ内のHTMLファイルを訳してください。
47 | 3..hhpファイルをHTML Helo workshopで開いて編集し、ヘルプファイルを作成してください。
48 |
49 | ・言語ファイルの訳
50 | 1.helpフォルダ内の言語ファイルをコピーしてください。
51 | 2.[RESOURCE]と書かれた行のキー=値となっている部分の値の部分を変更します。
52 | FONT_FACE=System
53 | とある行が表示に使用するフォント名になるので=の後ろにフォント名を書いてください。
54 | FONT_CHARSET=1
55 | とある行は表示に使用するフォントの文字セットになりますので、文字セットに対応する数値を指定してください。
56 | 上記以外はメッセージとなりますので、画面の表示と照らし合わせて訳してください。
57 | 例)
58 | DLG_ALL_FONT=All fonts
59 |
60 | 文字セットに対応する数値は以下の通りとなります。
61 | ANSI文字セット(通常はこれを指定します。):0
62 | デフォルト文字セット:1
63 | シンボル:2
64 | 日本語(SHift-JIS):128
65 | ハングル文字:129
66 | 簡体字中国語(GB2312):134
67 | 繁体字中国語(BIG5):136
68 | OEM文字セット:255
69 | 組合型符号化文字集合ハングル文字:130
70 | ヘブライ語:177
71 | アラビア語:178
72 | ギリシア語:161
73 | トルコ語:162
74 | ベトナム語:163
75 | タイ語:222
76 | 東欧文字セット:238
77 | ロシア語文字セット:204
78 | MAC文字セット:77
79 | バルト文字セット:186
80 |
81 | 3.[PRESET]と書かれた行以下の内容はプリセットメニューのフォントの情報です。
82 | 各OSの初期状態のフォント名とフォントサイズを記述してください。
83 | CAPTIONで始まる行はタイトルバーのフォント情報です。
84 | ICONで始まる行はアイコンのフォント情報です。
85 | SMALLCAPTIONで始まる行はパレットのフォント情報です。
86 | STATUSで始まる行はステータスバー・ヒントのフォント情報です。
87 | MESSAGEで始まる行はメッセージボックスのフォント情報です。
88 | MENUで始まる行はメニューのフォント情報です。
89 |
90 | FACEが入る行にはフォント名を記述してください。
91 | SIZEが入る行にはフォントサイズを記述してください。
92 | CHARSETが入る行には文字セットを記述してください。
93 | 後ろが_8で終わる行にはWindows 8/8.1の、_10で終わる行はWindows 10の
94 | フォントの情報を記述してください。
95 | 例)タイトルバーがSegoe UIの11ポイント、文字セットデフォルト、Windows 8.1の場合
96 | CAPTION_FACE_8=Segoe UI
97 | CAPTION_SIZE_8=11
98 | CAPTION_CHARSET_8=1
99 |
100 | 4.最後に、Meiryo UIも大っきらい!!が言語ファイルを読み込めるように
101 | 言語ファイル・ヘルプファイルをリネームします。
102 | utilディレクトリのlocaletest.exeをコマンドプロンプトから
103 | 実行すると 言語名_国名.コードページ の形式で現在のWindowsの表示等の
104 | 言語が表示されます。
105 | 言語名で表示する場合は'_'より前の文字列にそれぞれのファイルの拡張子を
106 | つけた名前に言語ファイルとヘルプファイルの名前を変更してください。
107 | 言語名と国に合わせた表示を行う場合は'.'より前の文字列にそれぞれのファイルの
108 | 拡張子をつけた名前に言語ファイルとヘルプファイルの名前を変更してください。
109 | ファイル名の変更が終わったらnoMeiryoUI.exeと同じフォルダに置くことで
110 | 言語ファイルが読み込まれ、ヘルプファイルが表示されます。
111 |
112 | ただし、default.lng、default.hlpは表示する言語の言語ファイルがない場合に
113 | 使用するので、残すようにしてください。
114 |
115 | 例)
116 | ・英語(国を問わない)の場合
117 | English_United States.437
118 | などと出るので、'_'の前のEnglishにそれぞれの拡張子を付けた名前に
119 | ファイル名を変更します。
120 | 言語ファイル名はEnglish.lng
121 | ヘルプファイル名はEnglish.chm
122 | となります。
123 |
124 | ・簡体字中国語(中国)の場合
125 | Chinese (Simplified)_China.936
126 | と出るのでChinese (Simplified)_Chinaにそれぞれの拡張子を付けた名前に
127 | ファイル名を変更します。
128 | 言語ファイル名はChinese (Simplified)_China.lng
129 | ヘルプファイル名はChinese (Simplified)_China.chm
130 | となります。
131 |
132 | [ライセンス]
133 | MITライセンス( http://opensource.org/licenses/mit-license.php )に従います。
134 |
135 | [作者]
136 | 庄子 達彦(Tatsu)
137 | E-mail Address tatsu_syo@nifty.com
138 | My Web page http://tatsu.life.coocan.jp/index.html
139 | GitHub project page https://github.com/Tatsu-syo/noMeiryoUI
140 | ------------------------------------------------------------------------
141 |
--------------------------------------------------------------------------------
/help/en-us/ToC.hhc:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 | /
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
--------------------------------------------------------------------------------
/help/en-us/contents/01.html:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | 1.Getting started
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 | 1.Getting started
21 |
22 |
23 |
1.1 What's this?
24 |
25 | This program sets system font setting on Windows 8.1/10.
26 |
27 |
28 |
29 |
30 |
31 |
1.2 Target OS
32 |
33 | This program runs on Windows 8,8.1 and 10.
34 |
35 |
36 |
37 |
38 |
39 |
40 |
1.3 Files
41 |
42 |
43 |
44 |
45 | File name Contents
46 |
47 |
48 | noMeiryoUI.exe Program file
49 |
50 |
51 | Chinese (Simplified)_China.lng Simplified Chinese message file.
52 |
53 |
54 | Chinese (Traditional)_Taiwan.lng Traditional Chinese(Taiwan) message file.
55 |
56 |
57 | English.lng English message file.
58 |
59 |
60 | Korean.lng Korean message file.
61 |
62 |
63 | Portuguese_Brazil.lng Portuguese(Brazil) message file.
64 |
65 |
66 | default.lng Default message file.
67 |
68 |
69 | Japanese.chm Japanese help file.
70 |
71 |
72 | Chinese (Simplified)_China.chm Simplified Chinese help file.
73 |
74 |
75 | Chinese (Traditional)_Taiwan.chm Traditional Chinese(Taiwan) help file.
76 |
77 |
78 | English.chm English help file.
79 |
80 |
81 | Korean.chm Korean help file.
82 |
83 |
84 | Portuguese_Brazil.chm Portuguese(Brazil) help file.
85 |
86 |
87 | default.chm Default help file.
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
1.4 Installation
96 |
Install
97 |
98 | Extruct all files in same folder.
99 |
100 |
101 |
Uninstall
102 |
103 | Delete all files.
104 |
105 |
106 |
107 |
108 |
1.5 Trouble shooting
109 |
Before change system fonts
110 |
111 | If you want to change system fonts by this program, I recommended to backup registry by utils\SAVEreg.bat (required Administrator privilege).
112 | Backup file is created on C:\Users\(user name)\AppData\Local.
113 |
114 |
115 |
If trouble occurred
116 |
117 | If trouble occurred and you took backup by utils\SAVEreg.bat, run utils\RESTOREreg.bat (required Administrator privilege).
118 | You can restore registry data before changing system fonts.
119 |
120 |
121 |
122 |
123 |
124 |
--------------------------------------------------------------------------------
/help/en-us/contents/02.html:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | 2.How to use
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | 2.How to use
22 |
23 |
24 |
25 | Run noMeiryoUI.exe.
26 | This icon( ).
27 |
28 |
29 |
30 | And, below window is displayed.
31 |
32 | Push select... button to set user interface element.
33 |
34 |
35 |
36 | Upper group, you can set all userface elements font.
37 | Bottom group, you can set each user interface element font individually.
38 |
39 |
40 |
41 | When you push select... button, this dialog is displayed.
42 |
43 |
44 |
45 | Choice font face, font size, font style, charset, and push OK button.
46 |
47 |
48 | Push Apply and exit button, you can set user interface font and exit.
49 | Push Apply button, you can set user interface font.
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 | Choice No!! Meiryo UI application font
60 | Users can choice application font by font dialog.
61 |
62 | Set system fonts in separated thread
63 | Some programs cause system freeze when system fonts changed.
64 | To avoid system freeze check this item.
65 | Initially, this option is checked.
66 | If you don't select this item, you can reduce time when you changed system fonts.
67 |
68 | Calculate font size same as Windows 7
69 | In Windows 8, font size caliculate algorithm is different from other version of Windows.
70 | When you check this option, font size caliculate algorithm in Windows 8 is same as other version of Windows.
71 |
72 | Don't run multiply
73 | When you check this option, No!! Meiryo UI don't run multiply.
74 | This option is useful to avoid contamination.
75 |
76 | Force title bar font change enabled (no warranty)
77 | On Windows 11 22H2 and later, enables title bar font change button when you check this option.
78 | On Windows 11 22H2 and later, when you try to change title bar font, unknown troubles may occurred.
79 | This is why, this option is no warranty.
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 | Command line format is below.
90 | noMeiryoUI [font_setting_file] [options...]
91 |
92 |
93 | If you specify font setting file, font setting file is loaded when this program started.
94 |
95 |
96 |
Options
97 |
98 | In [options...], you can use these options.
99 | If you use multiple options you must separate option name by space.
100 |
101 |
102 | -set
103 | -set option can set systems fonts on start up and exit program.
104 | This option is useful for startup shortcut, launcher setting, batch file.
105 |
106 | -delay
107 | -delay option delays system fonts change by seconds.
108 | You must specify delay time be seconds. For example, -delay 60 .
109 | You can use this option to prevent system changes system fonts in some reasons
110 |
111 | -force (no warranty)
112 | -force option enables to change title bar font on Windows 11 22H2 and later.
113 | On Windows 11 22H2 and later, when you try to change title bar font, unknown troubles may occurred.
114 | This is why, this option is no warranty.
115 |
116 |
117 |
118 |
119 |
120 |
121 |
122 |
123 |
124 |
125 |
126 |
--------------------------------------------------------------------------------
/help/en-us/contents/03.html:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | 3.History
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | 3.History
22 |
23 |
24 |
04/19/2025 Version 3.4.0
25 |
26 | Add -delay option to prevent system changes system fonts in some reasons.
27 | On Windows 11 22H2 and later, add some settings to change title bar font. These options are experimental.
28 |
29 |
30 |
31 |
32 |
33 |
34 |
03/03/2024 Version 3.3.0
35 |
36 | Fix bug when application font and system fonts, application title disappeared..
37 | Improve Simplified Chinese(China) translations.Thanks for kingofotaku.(zh-CN.lng and help contents.)
38 | Improve Traditional Chinese(Taiwan) translations.Thanks for abc0922001.(zh-TW.lng)
39 |
40 |
41 |
42 |
43 |
44 |
45 |
02/25/2024 Version 3.3.0
46 |
47 | Users can choice application fonts.And change initial application font in Japanese.
48 | To avoid confuse, users can chooose to launch program multiply or not.
49 | Improve Traditional Chinese(Taiwan) translations.Thanks for jay900604.(zh-TW.lng)
50 |
51 |
52 |
53 |
54 |
55 |
56 |
09/03/2023 Version 3.2.1.1
57 |
58 | Improve Traditional Chinese(Taiwan) translations.Thanks for abc0922001.(zh-TW.lng)
59 |
60 |
61 |
62 |
63 |
64 |
65 |
09/03/2023 Version 3.2.1
66 |
67 | Improve Simplified Chinese(China) and Traditional Chinese(Taiwan) translations.Thanks for HSSadboy and kingofotaku.(zh-CN.lng,zh-TW.lng)
68 | Change Simplified Chinese to Simplified Chinese(China) on help.Thanks for HSSadboy.(zh-CN.chm)
69 | Change Traditional Chinese to Traditional Chinese(Taiwan) on help.Thanks for HSSadboy.(zh-TW.chm)
70 |
71 |
72 |
73 |
74 |
75 |
76 |
08/27/2023 Version 3.2.0
77 |
78 | Change display language using Windows user display language.
79 | Avoid some software such as notepad caused visual glitches after changed system fonts on Windows 11,
80 | With above change, this version runs on Windows Vista and later.
81 | Reset window element sizes consigering DPI on select preset.
82 | Change title bar size depending on the selected font size to avoid title bar too large.
83 | Change the wording of "Set" to "Apply"(English only, Thanks for mon-jai).
84 |
85 |
86 |
87 |
88 |
89 | 09/26/2022 Version 3.1.0.1
90 |
91 | Change compiler to Visual C++ 2008 to avoid false positive.
92 |
93 |
94 |
95 |
96 |
97 |
98 | 09/21/2022 Version 3.1.0
99 |
100 | On Windows 11 2022 Update(22H2) force set system setting to title bar font, to avoid problem when transparent effect is applied on title bar,
101 | By same reason, title bar font select button is disabled on Windows 11 2022 Update(22H2).
102 | Show version number "Windows 11 2022 Update" on Windows 11 2022 Update,
103 |
104 |
105 |
106 |
107 |
108 |
109 |
06/26/2022 Version 3.0.0.1
110 |
111 | Improved Simplified Chinese(China)(China) translations and fonts by Luke Luo.
112 |
113 |
114 |
115 |
116 |
117 |
118 |
02/13/2022 Version 3.0.0
119 |
120 | Save font size by points in font setting file.
121 | This is why, font setting file is incompatible between version 2 and 3.
122 | Change language file encoding to UTF-8.
123 | Change set button words to discriminate program exits or not easily(English,Japanese,Portuguese(Brazil)).
124 |
125 |
126 |
127 |
128 |
129 |
11/28/2021 Version 2.42(Release only in GitHub)
130 |
131 | Add Windows 11 presets.
132 | Show Windows 11 version number.
133 |
134 |
135 |
136 |
137 |
138 |
01/10/2021 Version 2.41
139 |
140 | Show all font styles on font selection dialog.
141 | Show new style version number on Windows 10 version 20H2.
142 |
143 |
144 |
145 |
146 |
147 |
148 |
07/26/2020 Version 2.40.2
149 |
150 | Improved Korean translation.
151 |
152 |
153 |
154 |
155 |
156 |
157 |
06/28/2020 Version 2.40.1
158 |
159 | Improved Korean translation.
160 |
161 |
162 |
163 |
164 |
165 |
166 |
05/31/2020 Version 2.40
167 |
168 | Add apply button.
169 | Controls are grouped.
170 | Fixed bug cannot use default path when you specified setting file.
171 |
172 |
173 |
174 |
175 |
176 |
177 |
01/13/2020 Version 2.36
178 |
179 | Exit application after Set all fonts.
180 | Add Brazilian Portuguese translation.
181 | Add Traditional Chinese(Taiwan) translation.
182 | Included Chinese translation that was forgotten on Version 2.35.
183 |
184 |
185 |
186 |
187 |
188 |
189 |
04/28/2018 Version 2.35
190 |
191 | Now display language is displayed by system display language without system locale.
192 | For various people,font size is larger than previous version.
193 | Thanks for deVbug's cooperation,Korean language added.
194 | Add Korean font name substitution.(Only in Korean.)
195 | Thanks for kingofotaku's cooperation,Simplified Chinese(China) translation improved.
196 |
197 |
198 |
199 |
200 |
201 |
06/03/2017 Version 2.34
202 |
203 | On startup, main window is shown on center of monitor which mouse cursor exists.
204 | Font select dialog is shown over main window.
205 | Help file is shown on center of monitor which mouse cursor exists.
206 | Simplified Chinese(China) help file font problem fixed..
207 |
208 |
209 |
210 |
211 |
212 |
05/14/2017 Version 2.33
213 |
214 | On Windows 10, added detailed version informations.
215 | Preset menu is available on English version Windows.
216 | Preset font charset item is added in language file.
217 | Language and help file can be detected by Windows locale name.
218 |
219 |
220 |
221 |
222 |
223 |
10/10/2016 Version 2.32
224 |
225 | Simplified Chinese(China) help file added. Thanks Gekka Tachibana.
226 |
227 | Preset menu is enabled on Simplified Chinese(China) Windows.
228 |
229 | Source file folder layout is changed to add another language in future.
230 |
231 |
232 |
233 |
234 |
235 |
236 |
237 |
09/19/2016 Version 2.31
238 |
239 | Simplified Chinese(China) message added. Thanks Gekka Tachibana.
240 |
241 | Help file is changed to HTML help.
242 |
243 | Added translator credits.
244 |
245 |
246 |
247 |
248 |
249 |
250 |
251 |
08/19/2016 Version 2.30
252 |
253 | Pre multi language version.
254 |
255 |
256 |
257 |
258 |
259 |
260 |
261 | To know previous version's changes, please read Japanese version help file.
262 |
263 |
264 |
265 |
266 |
267 |
--------------------------------------------------------------------------------
/help/en-us/contents/04.html:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | License
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 | 4.License
21 |
22 |
29 |
30 |
31 |
39 |
40 |
41 |
42 |
Translators
43 |
44 |
45 | Language Author
46 |
47 |
48 | English Tatsu,mon-jai
49 |
50 |
51 | Simplified Chinese(China) Gekka Tachibana,kingofotaku,icebeam030,LucidLoli,Luke Luo,HSSadboy
52 |
53 |
54 | Traditional Chinese(Taiwan) Austin Chang,HSSadboy,abc0922001,jay900604
55 |
56 |
57 | Korean deVbug
58 |
59 |
60 | Portuguese(Brazil) Claudio Mantovani Vieira
61 |
62 |
63 | Japanese Tatsu
64 |
65 |
66 |
67 |
68 |
69 |
70 |
--------------------------------------------------------------------------------
/help/en-us/contents/FontSel.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/en-us/contents/FontSel.PNG
--------------------------------------------------------------------------------
/help/en-us/contents/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/en-us/contents/icon.png
--------------------------------------------------------------------------------
/help/en-us/contents/noMeiryoUI.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/en-us/contents/noMeiryoUI.PNG
--------------------------------------------------------------------------------
/help/en-us/contents/noMeiryoUI.css:
--------------------------------------------------------------------------------
1 | /*
2 | noMeiryoUI (C) 2005,2012-2016 Tatsuhiko Shoji
3 | The sources for noMeiryoUI are distributed under the MIT open source license
4 | */
5 | body{
6 | background-color:white;
7 | color:black;
8 | line-height:1.2em;
9 | }
10 | div.chapter{
11 | background-color:white;
12 | color:black;
13 | margin:0.5em;
14 | padding:0.5em;
15 | }
16 | h1{
17 | font-size: 1.3em;
18 | line-height:1.2em;
19 | }
20 | h2 {
21 | font-size: 1.2em;
22 | }
23 |
24 | h3 {
25 | font-size: 1.1em;
26 | /* border-bottom-width:2px; */
27 | border-style:none none double none;
28 | }
29 | span.button {
30 | background-color:white;
31 | color:black;
32 | margin:1px;
33 | padding:1px;
34 | border-style:outset;
35 | border-width:2px;
36 | }
37 |
38 | span.check {
39 | background-color:white;
40 | color:black;
41 | margin:1px;
42 | padding:1px;
43 | border-style:inset;
44 | border-width:2px;
45 | }
46 |
--------------------------------------------------------------------------------
/help/en-us/help_en.hhp:
--------------------------------------------------------------------------------
1 | [OPTIONS]
2 | Compatibility=1.1 or later
3 | Compiled file=en.chm
4 | Contents file=ToC.hhc
5 | Default topic=contents\02.html
6 | Display compile progress=Yes
7 | Language=0x409
8 | Title=No!! Meiryo UI help
9 |
10 |
11 | [FILES]
12 | contents\01.html
13 | contents\02.html
14 | contents\03.html
15 | contents\04.html
16 |
17 |
--------------------------------------------------------------------------------
/help/ja-jp/ToC.hhc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/ja-jp/ToC.hhc
--------------------------------------------------------------------------------
/help/ja-jp/contents/01.html:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | 1.始めに
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 | 1.始めに
21 |
22 |
23 |
1.1 本ソフトは何か?
24 |
25 | 本ソフトはWindows 8/8.1/10で画面の各部分のフォントを設定するツールです。
26 | なぜかWindows 8/8.1/10では標準で画面の各部分のフォントを設定することができなくなっていたので作成しました。
27 |
28 |
29 |
30 |
31 |
32 |
1.2 動作環境
33 |
34 | 本プログラムはWindows 8/8.1/10で動作します。
35 | デスクトップに表示されたウインドウの各部分のフォントを設定するのでデスクトップアプリです。
36 |
37 |
38 | Windows Vista,7でも動作しますが、これらのOSでは画面の各部分のフォントを設定することが当たり前にできますので意味がありません。
39 |
40 |
41 |
42 |
43 |
44 |
45 |
1.3 構成ファイル
46 |
47 |
48 |
49 |
50 | ファイル名 内容
51 |
52 |
53 | noMeiryoUI.exe 本ソフトの実行ファイルです。
54 |
55 |
56 | ja-JP.chm 日本語で動作させるときのメッセージを記述したファイルです。
57 |
58 |
59 | zh-CN.lang 簡体字中国語で動作させるときのメッセージを記述したファイルです。
60 |
61 |
62 | zh-CN.lng 繁体字中国語で動作させるときのメッセージを記述したファイルです。
63 |
64 |
65 | en.lng 英語で動作させるときのメッセージを記述したファイルです。
66 |
67 |
68 | ko-KR.lng 韓国語で動作させるときのメッセージを記述したファイルです。
69 |
70 |
71 | pt-BR.lng ポルトガル語(ブラジル)で動作させるときのメッセージを記述したファイルです。
72 |
73 |
74 | default.lng 日本語および上記以外の言語で動作させるときのメッセージを英語で記述したファイルです。
75 |
76 |
77 | ja-JP.chm 日本語版ヘルプファイルです。
78 |
79 |
80 | zh-CN.chm 簡体字中国語版ヘルプファイルです。
81 |
82 |
83 | zh-TW.chm 繁体字中国語版ヘルプファイルです。
84 |
85 |
86 | en.chm 英語版ヘルプファイルです。
87 |
88 |
89 | ko-KR.chm 韓国語版ヘルプファイルです。
90 |
91 |
92 | default.chm 日本語および上記以外の言語で動作させるときのヘルプファイルです。
93 |
94 |
95 | utils\SAVEreg.bat Meiryo UIも大っきらい!!が関連するレジストリをバックアップするファイルです。
96 |
97 |
98 | utils\RESTOREreg.bat Meiryo UIも大っきらい!!が関連するレジストリをリストアするバッチファイルです。
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
1.4 インストール・アンインストール
107 |
インストール
108 |
109 | インストールする際は本ソフトのアーカイブを全部同じディレクトリに展開してください。
110 |
111 |
112 |
アンインストール
113 |
114 | アンインストールを行う場合は本ソフトを展開したディレクトリごと消してください。
115 |
116 |
117 |
118 |
119 |
1.5 トラブル対策
120 |
実行前のレジストリバックアップ
121 |
122 | 本プログラムを実行する前にutils\SAVEreg.batを実行してフォント等に関連するレジストリをバックアップしておくことを推奨します(管理者権限が必要です)。
123 | バックアップファイルはC:\Users\(ユーザー)\AppData\Localの下に格納されます。
124 |
125 |
126 |
トラブルが起きた際の対処
127 |
128 | 本プログラムを実行してトラブルが起きた場合にレジストリバックアップを行っていた場合はutils\RESTOREreg.batを実行する事で元の状態に戻すことができます(管理者権限が必要です)。
129 |
130 |
131 |
132 |
133 |
134 |
--------------------------------------------------------------------------------
/help/ja-jp/contents/02.html:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | 2.本ソフトの使い方
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | 2.本ソフトの使い方
22 |
23 |
24 |
2.1 始めに
25 |
26 | エクスプローラーからnoMeiryoUI.exeのアイコン をダブルクリックするなどして、noMeiryoUI.exeを実行してください。
27 | 下記の画面が表示されます。
28 | Windowsのバージョンは製品名(内部バージョン番号)という形式で表示しております。動作確認、障害報告等にご利用ください。
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
2.2 操作方法
38 |
39 | 画面が表示されると画面の各部分の名称と設定されているフォント名が表示されます。
40 |
41 |
42 |
システムフォントを1つのフォントにすべて設定する
43 |
44 | 上側に表示されている「全体設定」という枠は画面の各部分のフォントを同じフォント・フォントサイズ・書式で設定するための項目です。
45 |
46 |
47 | 「すべてのフォント」と書かれた横には選択されているフォントが表示されます。
48 | フォント名の横の「選択」ボタンを押下すると、フォント選択ダイアログ からフォントを選択できます。
49 | 「一括設定して終了」ボタンを押下すると選択したフォント・フォントサイズ・書式を画面の各部分に設定してプログラムを終了します。
50 | 「適用」ボタンを押下すると選択したフォント・フォントサイズ・書式を画面の各部分に設定します。
51 |
52 |
53 |
画面の各項目のシステムフォントを個別に設定する
54 |
55 | 下側に表示されている「個別設定」という枠は画面の各部分のフォントを個別に設定するための項目です。
56 |
57 |
58 | フォントを変更する際は変更したい項目のフォント名の横にある「選択」ボタンを押下してください。
59 | フォント選択ダイアログ が表示されるので、フォント・フォントサイズ・書式を好みに合わせて設定してください。
60 |
61 | 設定が終わったら「設定して終了」ボタンを押下すると選択したフォントを画面の各部分に設定してプログラムを終了します。
62 | 「適用」ボタンを押下すると選択したフォントを画面の各部分に設定します。
63 | 「設定せず終了」ボタンを押下するとプログラムを終了します。
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 | フォント名の横にある選択ボタンを押下すると下記のフォント選択ダイアログが表示されます。
74 |
75 |
76 |
77 | フォント選択ダイアログでは以下の指定を行うことができます。
78 |
79 |
80 |
81 | 名称 機能
82 |
83 |
84 | フォント名(F) フォントを指定します。
85 |
86 |
87 | スタイル(Y) フォントのスタイルを指定します。
88 |
89 |
90 | サイズ(S) フォントサイズを指定します。
91 |
92 |
93 | 太字(B) チェックすると文字を太くします。
94 |
95 |
96 | 斜体(I) チェックすると文字を斜体にします。
97 |
98 |
99 | 下線(U) チェックすると下線を付けます。
100 |
101 |
102 | 取り消し線(T) チェックすると取り消し線をつけます。
103 |
104 |
105 | 文字セット(C) フォントの文字セットを指定します。
106 |
107 |
108 |
109 | フォントを選択して「OK」ボタンを押下するとフォントを選択します。
110 | 選択必須の箇所が選択されてない場合、エラーメッセージが表示されますので指示に従って選択を行ってください。
111 |
112 |
113 |
114 |
115 |
116 |
117 | ファイル(F)
118 |
119 | フォント設定を読み込む(O)...
120 | 選択したフォントを画面の各部分に設定してプログラムを終了します。
121 | ファイル選択ダイアログが表示されるのでメニュー項目「フォント設定を保存する(A)...」で保存したiniファイルを選択してください。
122 | ファイルを選択するとタイトルバーからメニュー/選択項目のフォントの設定にiniファイルの設定が設定されます。
123 |
124 | フォント設定を保存する(A)...
125 | 選択したフォントの設定をiniファイルに保存します。
126 | 保存する設定はタイトルバーからメニュー/選択項目のフォントの設定です。
127 | ファイル保存ダイアログが表示されるので、ファイル名を付けて保存してください。
128 |
129 | フォントを設定して終了(S)
130 | 「個別設定」枠で選択したフォントを画面の各部分に設定してプログラムを終了します。
131 |
132 | 終了(X)
133 | フォントを設定せずにプログラムを終了します。
134 |
135 |
136 |
137 | プリセット(P)
138 |
139 | Windows 8/8.1
140 | すべてのフォント以外の設定をWindows 8/8.1の初期状態に戻します。
141 |
142 |
143 | Windows 10
144 | すべてのフォント以外の設定をWindows 10の初期状態に戻します。
145 |
146 | Windows 11
147 | すべてのフォント以外の設定をWindows 11の初期状態に戻します。
148 |
149 |
150 |
151 |
152 | ツール(T)
153 |
154 | Meiryo UIも大っきらい!!の フォントを選択する(F)
155 | 本ソフトの表示フォントの設定を行います。
156 | フォント選択ダイアログが開くので、本ソフトの表示に使用したいフォントを選択してください。
157 |
158 | 別スレッドでフォントを変更する(A)
159 | 環境依存のトラブルシューティング用の設定を行います。
160 | SetPoint(Logicoolのマウス・キーボードユーティリティ)等を起動した環境でフォントを設定した時に応答なしになる場合、本メニューをチェックしてからフォントの設定を行ってください。
161 |
162 | フォントサイズをWindows 7と同様に扱う(7)
163 | フォントサイズの扱いをWindows 7と同じにします。
164 | Windows 8/8.1でWindows 7以前と同じのフォントサイズを指定したい場合に本オプションを使用します。
165 |
166 | 本オプションのチェックを外した状態でフォントサイズに11ポイント以上を指定した場合、フォントサイズはWindows 8/8.1のディスプレイコントロールパネルのテキストサイズと同じ大きさになります。この場合、フォントサイズによってはWindows 7以前のテキストサイズの指定より1ピクセル大きくなります。
167 | 本オプションをチェックした後、フォントを設定するとWindows 8/8.1でもフォントの大きさがWindows 7以前と同じ大きさになります。
168 | 本オプションによるフォントの大きさの指定は本オプションを設定した後にフォントを選択したフォント設定にのみ有効になります。
169 | Windows 7以前のOSとWindows 10では本オプションはグレーアウトして、選択不可能になります。フォントサイズの計算はWindows 7以前のOSに準じます。
170 |
171 | 二重起動をしない(D)
172 | チェックすると本ソフトを複数起動しないようにします。
173 | 本ソフトを複数起動して混乱するのを避ける場合などにご利用ください。
174 |
175 | タイトルバーのフォントを変更可能にする(O) 非推奨
176 | チェックするとWindows 11 22H2以降にて、タイトルバーのフォントを変更可能にします。
177 | ただし、タイトルバーのフォントを変更したときは正しく反映されなかったり見た目に影響があることがあるので本設定の使用によるWindows 11 22H2以降でのタイトルバーフォントの変更結果については作者は責任を取りません。
178 |
179 |
180 |
181 | ヘルプ(H)
182 |
183 | ヘルプの表示(C)
184 | このドキュメントを表示します。
185 |
186 | バージョン情報(A)...
187 | 本プログラムのバージョンを表示します。
188 |
189 |
190 |
191 |
192 |
193 |
194 |
195 |
196 |
197 | コマンドラインからオプションを指定することで起動時にフォント設定を読み込むことができるほか、指定したフォント設定で自動的にシステムフォントを設定することができます。
198 |
199 |
200 | コマンドラインの書式は以下の通りです。
201 | noMeiryoUI フォント設定ファイル名 [options...]
202 |
203 | フォント設定ファイルには本プログラムでフォント設定を保存したiniファイルを指定します。
204 | フォント設定ファイル名に空白を含む場合はファイル名を"(ダブルクォーテーション)で囲ってください。
205 |
206 |
207 |
208 |
オプション
209 |
210 | [options...]とある部分にはスペース区切りで次のオプションを指定することができます。
211 |
212 |
213 | -set
214 | -set オプションは指定したフォント設定ファイルの内容でシステムフォントを設定してプログラムを終了します。
215 | バッチファイルなどで使用するとあらかじめ用意したフォント設定ファイルの内容にシステムフォントを一発で設定することができて便利です。
216 |
217 | -delay
218 | -delay オプションは-setオプションでシステムフォントを設定するとき、本ソフトが起動してから指定した秒数が経過した後でフォントを設定することができます。
219 | オプション名の後スペース区切りで遅延させる秒数を書いてください。
220 | 何らかの理由でシステム起動時にシステムフォントの設定が戻る場合に使用します。
221 | -delay 60 という形で使用します。
222 |
223 | -force
224 | -force オプションはWindows 11 22H2以降にて、タイトルバーのフォントを変更可能にします。
225 | ただし、タイトルバーのフォントを変更したときは正しく反映されなかったり見た目に影響があることがあるので本設定の使用によるWindows 11 22H2以降でのタイトルバーフォントの変更結果については作者は責任を取りません。
226 |
227 |
228 |
229 |
例1. MySet.iniというフォント設定ファイルを起動時に読み込む場合
230 |
231 | MySet.iniというフォント設定ファイルを起動時に読み込む場合はコマンドプロンプトなどから以下のように入力します。
232 | noMeiryoUI MySet.ini
233 |
234 |
235 |
例2. Your Settings.iniというフォント設定ファイルの内容でシステムフォントを設定する場合
236 |
237 | Your Settings.iniというフォント設定ファイルの内容でシステムフォントを設定する場合はコマンドプロンプトなどから以下のように入力します。
238 | noMeiryoUI "Your Settings.ini" -set
239 |
240 |
241 |
例3. 起動後1分後にrestore Settings.iniというフォント設定ファイルの内容でシステムフォントを設定する場合
242 |
243 | 起動後1分後にrestore Settings.iniというフォント設定ファイルにシステムフォントを設定する場合はコマンドプロンプトなどから以下のように入力します。
244 | noMeiryoUI "Your Settings.ini" -set -delay 60
245 |
246 |
247 |
248 |
249 |
250 |
251 |
--------------------------------------------------------------------------------
/help/ja-jp/contents/03.html:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | 3.製作履歴
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | 3.製作履歴
22 |
23 |
24 |
2025/04/19 Version 3.4.0
25 |
26 | 起動オプションに-delayを追加し、システムがシステムフォントを設定した後にフォントを設定できるようにしました。このオプションはシステムがシステムフォントを戻すことに備えて作成しました。
27 | Windows 11 22H2以降で警告付きでタイトルバーのフォントを変更可能にしました。また、これに伴い-forceオプションを起動オプションに追加しました。この機能は実験用です。
28 |
29 |
30 |
31 |
32 |
33 |
2024/03/03 Version 3.3.1
34 |
35 | アプリケーションフォントを選択して何らかのシステムフォントを変更するとタイトルバーの表示が消える不具合を修正しました。
36 | 簡体字中国語(中国)の訳を更新しました。(zh-cn.lng)
37 | kingofotaku様に感謝します。
38 | 繁体字中国語(台湾)の訳を更新しました。(zh-TW.lng)
39 | abc0922001様に感謝します。
40 |
41 |
42 |
43 |
44 |
45 |
46 |
2024/02/25 Version 3.3.0
47 |
48 | アプリケーションフォントを選択できるようにしました。
49 | また、日本語表示の時の初期フォントの設定を変更しました。
50 | 混乱防止のために複数起動を許すかどうか選択できるようにしました。
51 | 繁体字中国語(台湾)の訳を更新しました。(zh-TW.lng)
52 | jay900604様に感謝します。
53 |
54 |
55 |
56 |
57 |
58 |
59 |
2023/09/03 Version 3.2.1.1
60 |
61 | 繁体字中国語(台湾)の訳を更新しました。(zh-TW.lng)
62 | abc0922001様に感謝します。
63 |
64 |
65 |
66 |
67 |
68 |
69 |
2023/09/03 Version 3.2.1
70 |
71 | 簡体字中国語(中国)、繁体字中国語(台湾)の訳を更新しました。
72 | HSSadboy様とkingofotaku様に感謝します。
73 | ヘルプ上の簡体字中国語(中国)の表記を簡体字中国語から簡体字中国語(中国)に変更しました。(zh-CN.chm)
74 | HSSadboy様に感謝します。
75 | ヘルプ上の繁体字中国語(台湾)の表記を繁体字中国語から繁体字中国語(台湾)に変更しました。(zh-TW.chm)
76 | HSSadboy様に感謝します。
77 |
78 |
79 |
80 |
81 |
82 |
83 |
2023/08/27 Version 3.2.0
84 |
85 | Windowsの表示言語により、表示言語を変更するようにしました。
86 | Windows 11のメモ帳などで枠線などの見た目の不具合がでるのを回避しました。
87 | 上記の変更により動作環境をWindows Vista以降に変更しました。
88 | プリセットを変更したときにウインドウの表示要素のサイズをDPIを考慮した各OSの初期サイズに変更するよう修正しました。
89 | タイトルバーのサイズをフォントのサイズに合わせた値に変更してタイトルバーが高くなりすぎることを回避しました。
90 |
91 |
92 |
93 |
94 |
95 |
2022/09/26 Version 3.1.0
96 |
97 | ウイルス対策ソフトの誤検知対策としてVisual C++ 2008でビルドしました。
98 |
99 |
100 |
101 |
102 |
103 |
2022/09/21 Version 3.1.0
104 |
105 | Windows 11 2022 Update(22H2)ではタイトルバーに透明を設定したときの問題を回避するため、タイトルバーのフォントを強制的に標準のフォント設定にするようにしました。
106 | 同様の理由でWindows 11 2022 Update(22H2)ではタイトルバーのフォントを選択できなくしました。
107 | Windows 11 2022 UpdateではWindows 11 2022 Updateと表示するようにしました。
108 |
109 |
110 |
111 |
112 |
113 |
2022/06/26 Version 3.0.0.1
114 |
115 | Luke Luo氏による簡体字中国語(中国)の訳と表示フォント設定の更新を取り込みました。
116 |
117 |
118 |
119 |
120 |
121 |
2022/02/13 Version 3.0.0
122 |
123 | フォントサイズをポイント数でフォント設定ファイルに保存するようにしました。
124 | そのため、フォント設定ファイルはVersion 2と3では非互換となります。
125 | 言語ファイルをUTF-8に変更しました。
126 | 設定を行うボタンの文言をわかりやすくしました(日本語、英語、ポルトガル語(ブラジル))。
127 |
128 |
129 |
130 |
131 |
132 |
2021/11/28 Version 2.42(GitHub限定暫定公開)
133 |
134 | プリセット設定にWindows 11の設定をつけました。
135 | Windows 11のバージョン番号表記に対応しました。
136 |
137 |
138 |
139 |
140 |
141 |
2021/01/10 Version 2.41
142 |
143 | 各フォントのすべてのスタイルが表示されるようにしました。
144 | Windows 10 Version 20H2のバージョン番号表記に対応しました。
145 |
146 |
147 |
148 |
149 |
150 |
151 |
2020/07/26 Version 2.40.2
152 |
153 | 韓国語の訳を改良しました。
154 |
155 |
156 |
157 |
158 |
159 |
160 |
2020/06/28 Version 2.40.1
161 |
162 | 韓国語の訳を改良しました。
163 |
164 |
165 |
166 |
167 |
168 |
169 |
2020/05/31 Version 2.40
170 |
171 | フォントの設定だけを行い、プログラムを終了しない適用ボタンを追加しました。
172 | ウインドウの項目を全体設定と個別設定でグループ化しました。
173 | カレントディレクトリの設定ファイルを読み込めない不具合を修正しました。
174 |
175 |
176 |
177 |
178 |
179 |
180 |
2020/01/13 Version 2.36
181 |
182 | 一括設定ボタンを押したときもアプリケーションを終了するようにしました。
183 | ブラジルのポルトガル語訳を追加しました。
184 | 繁体字中国語(台湾)訳を追加しました。
185 | Version 2.35で入れ忘れていた簡体字中国語(中国)訳を入れました。
186 |
187 |
188 |
189 |
190 |
191 |
192 |
2018/04/28 Version 2.35
193 |
194 | 表示言語だけ変更して、システムロケールを変更しない場合に表示言語で表示されるようにしました。
195 | 様々な方向けにフォントサイズを大きくしました。
196 | deVbug様のご協力により、韓国語訳が追加されました。
197 | 韓国語フォント名の置き換えに対応しました(韓国語の場合のみ)。
198 | kingofotaku様のご協力により、簡体字中国語(中国)訳の質が向上しました。
199 |
200 |
201 |
202 |
203 |
204 |
2017/06/03 Version 2.34
205 |
206 | 起動時にメイン画面をカーソルのいるモニタの中央より若干左上に表示するようにしました。
207 | フォント選択ダイアログをメインウインドウの上の中央に表示するようにしました。
208 | ヘルプファイルをメイン画面が表示されているモニタの中央より若干左上に表示するようにしました。
209 | 簡体字中国語(中国)版ヘルプのフォントが一部異なるフォントで表示される不具合を修正しました。
210 |
211 |
212 |
213 |
214 |
215 |
2017/05/14 Version 2.33
216 |
217 | Windows 10で実行した際に詳細なバージョン情報を表示するようにしました。
218 | 英語版Windowsでもプリセットメニューが機能するようにしました。
219 | 各言語への翻訳に備え、表示フォントとプリセットの文字セットを変更できるようにしました。
220 | 読み込む言語ファイル・ヘルプファイル名をWindowsのロケール名から決めるようにしました。これにより、翻訳を追加する際にプログラムの変更が不要になる他、言語ファイルのみを配布することができるようになります。
221 |
222 |
223 |
224 |
225 |
226 |
2016/10/10 Version 2.32
227 |
228 | 立花 月下様のご協力により、ヘルプの簡体字中国語(中国)版を同梱し、簡体字中国語(中国)版Windowsで実行した際に表示されるようにしました。
229 | 簡体字中国語(中国)版Windowsでもプリセットメニューが機能するようにしました。
230 | 各言語への翻訳に備え、ソースファイルのアーカイブのフォルダ構成を変更し、メッセージを記述したファイルとヘルプファイルの訳し方の簡単な説明を追加しました。
231 |
232 |
233 |
234 |
235 |
236 |
2016/09/19 Version 2.31
237 |
238 | 立花 月下様のご協力により、メッセージが簡体字中国語(中国)へ翻訳されましたので簡体字中国語(中国)版Windowsで実行した際に表示が簡体字中国語(中国)になります。
239 |
240 | ヘルプの国際化に備え、ヘルプをHTMLヘルプにしました。
241 |
242 | バージョン情報に翻訳者のクレジットを追加しました。
243 |
244 | 日本語版以外のWindowsで実行した際にバージョン情報を表示したときの潜在不良を修正しました。
245 |
246 |
247 |
248 |
249 |
250 |
251 |
2016/08/19 Version 2.30
252 |
253 | 日本語以外のOSで実行した際にメッセージが変わるようにしました。本バージョンでは日本語、簡体字中国語(中国)、その他の言語でメッセージが変わるようにしました。
254 | ただし、私は中国語はわからないので本バージョンでは仮として、簡体字中国語(中国)版Windowsで実行した際も英語表示になります。
255 |
256 |
257 |
258 |
259 |
260 |
261 |
2016/06/09 Version 2.20
262 |
263 | コマンドラインから指定した設定ファイルの読み込みを行えるようにしました。また、コマンドラインから指定した設定ファイルの内容にフォントを設定できるようにしました。
264 |
265 |
266 |
267 |
268 |
269 |
270 |
2016/02/23 Version 2.17
271 |
272 | 選択したフォントのフォント名とサイズを選択したフォントで表示するようにしました。
273 | フォント名だけを見ると、Meiryo UIがまともなフォントに見えてくるのが難点ですが。
274 |
275 |
276 |
277 |
278 |
279 |
280 |
2015/08/16 Version 2.16
281 |
282 | 初期設定で別スレッドでのフォント変更を行うようにしました。
283 | Windows 10用のプリセットを追加しました。
284 | システムDPIへの対応を行いました。
285 |
286 |
287 |
288 |
289 |
290 |
2015/07/20 Version 2.15
291 |
292 | フォントサイズをフォント名とともに表示するようにしました。
293 |
294 | フォント選択ダイアログを表示した際に今まで選択されていたフォントがダイアログの各項目に設定されるようにしました。
295 |
296 | Windows 8/8.1の初期状態のフォントを画面の各項目に設定するプリセットメニューを追加しました。
297 | Windows 8/8.1では初期状態でフォントサイズの表示・設定をディスプレイコントロールパネルのテキストサイズに合わせるようにしました。
298 | これに伴い、Windows 7以前のOSやフォント選択コモンダイアログと同様のフォントサイズの表示・設定を行えるよう、「フォントサイズをWindows 7と同様に扱う」オプションを追加しました。
299 |
300 |
301 |
302 |
303 |
304 |
305 |
2015/01/04 Version 2.14
306 |
307 | フォント設定をファイルに保存する機能を追加しました。
308 |
309 |
310 |
311 |
312 |
313 |
314 |
2014/07/13 Version 2.13
315 |
316 | 別スレッドでフォントの設定を変更する設定を追加しました。
317 | SetPoint(Logicoolのマウス・キーボードユーティリティ)等を起動した環境でフォントを設定した時に応答なしになる場合に使用してください。
318 | この設定の追加に伴い、メニューを追加しました。
319 |
320 | フォント設定時にLOGFONT構造体のlfOutPrecision、lfClipPrecision、lfQualityに対してフォント情報取得時に返された値ではなく、0(デフォルト)を設定するようにしました。これにより、設定するフォント情報がWindows 7までの画面のデザインで設定する値と合うようになりました。
321 |
322 |
323 |
324 |
325 |
326 |
2013/10/06 Version 2.12
327 |
328 | Windows 8.1に備えて、Windowsのバージョンを表示する機能を追加しました。トラブルシューティングにご利用ください。
329 | Windows 8.1を正しく検出するため、マニフェストを追記しました。
330 |
331 |
332 |
333 |
334 |
335 |
2013/02/23 Version 2.11
336 |
337 | IObit StartMenu 8を起動中にフォントの設定を行うと応答が返らない不具合を修正しました。
338 | 一括設定を行った後、OKボタンを押したときにアイコンに画面上の表示と異なるフォントが設定される不具合を修正しました。
339 | MITライセンスのソースコードを添付しました。
340 |
341 |
342 |
343 |
344 |
345 |
2013/02/17 Version 2.10
346 |
347 | フォント選択実施時にApplication Verifierでエラーが出るなどフォント選択の前後が障害の原因になっていたため、フォント選択ダイアログを自前のものにしました。
348 | フォント選択ダイアログに縦書きフォントを出さないようにしました。
349 | フォント選択ダイアログで文字セットに日本語があるフォントについてはフォントを選択した際、文字セットに日本語を指定するようにしました。
350 | フォント選択ダイアログで下線、取り消し線を指定できるようにしました。(使うかな?)
351 |
352 |
353 | 起動時のコマンドラインオプションに"noMeiryoUI"(ダブルクォーテーションは不要、大文字小文字は書かれている通りに入力すること。)をつけて起動すると...?
354 |
355 |
356 |
357 |
358 |
359 |
360 |
2013/02/11 Version 2.02
361 |
362 | 選択したフォントの中にフォント名が"@"で始まるフォントが存在する場合、選択したフォントが本当に意図したものかどうかの問い合わせダイアログを表示する条件が誤っていたので修正を行いました。
363 |
364 | 異常終了に対応するため、フォント選択ダイアログが正常に表示されなかったときにダイアログを出すようにした他、フォント選択ダイアログ表示時の初期化処理を見直しました。
365 | 次の版ではフォント選択を共通ダイアログではなく、自分で作成する予定です。
366 |
367 |
368 |
369 |
370 |
371 |
2013/02/03 Version 2.01
372 |
373 | 選択したフォントの中にフォント名が"@"で始まるフォントが存在する場合、選択したフォントが本当に意図したものかどうかの問い合わせダイアログを表示するようにしました。
374 |
375 | 意図せずにフォント名が"@"で始まる縦書き用フォントを指定する事例が多いので事前確認を行うようにしました。
376 |
377 |
378 |
379 |
380 |
381 |
2012/11/18 Version 2.00
382 |
383 | 「Meiryo UIも大っきらい!!」としての初版です。
384 | 画面の各部分のフォントサイズの設定機能を追加しました。
385 |
386 |
387 |
388 |
389 |
390 |
2005/09/25 Version 1.00
391 |
392 | 本ソフトの前身となるソフトウェア、「Tahomaなんて大っきらい!」の初版です。
393 |
394 |
395 |
396 |
397 |
398 |
--------------------------------------------------------------------------------
/help/ja-jp/contents/04.html:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | 4.ライセンスと作者について
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 | 4.ライセンスと作者について
21 |
22 |
23 |
著作権など
24 |
25 | 本ソフトウェアは著作権をTatsuこと庄子達彦が保有するフリーウェアです。
26 | 本ソフトは無料で目的を問わず自由に使ってかまいません。
27 | が、転載する際には一声いただけると作者が喜びます。
28 |
29 | 作者は本ソフトを利用するにあたってなるべく不具合が出ないよう心がけておりますが、本ソフトの運用結果に対して作者は一切責任を取りません。
30 |
31 | ご意見・ご感想などありましたら、下記の作者のところに一声いただけるとうれしいです。
32 |
33 |
34 |
35 | ソースファイルについてはMITライセンス(http://opensource.org/licenses/mit-license.php )に従います。
36 |
37 |
38 |
39 |
40 |
48 |
49 |
50 |
51 |
翻訳者
52 |
53 |
54 | 言語 翻訳者
55 |
56 |
57 | 英語 Tatsu、mon-jai様
58 |
59 |
60 | 簡体字中国語(中国) 立花 月下様、kingofotaku様、icebeam030様、LucidLoli様、Luke Luo様、HSSadboy様
61 |
62 |
63 | 繁体字中国語(台湾) Austin Chang様、HSSadboy様、abc0922001様、jay900604様
64 |
65 |
66 | 韓国語 devBug様
67 |
68 |
69 | ポルトガル語(ブラジル) Claudio Mantovani Vieira様
70 |
71 |
72 | 日本語 Tatsu
73 |
74 |
75 |
76 |
77 |
78 |
79 |
--------------------------------------------------------------------------------
/help/ja-jp/contents/FontSel.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/ja-jp/contents/FontSel.PNG
--------------------------------------------------------------------------------
/help/ja-jp/contents/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/ja-jp/contents/icon.png
--------------------------------------------------------------------------------
/help/ja-jp/contents/noMeiryoUI.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/ja-jp/contents/noMeiryoUI.PNG
--------------------------------------------------------------------------------
/help/ja-jp/contents/noMeiryoUI.css:
--------------------------------------------------------------------------------
1 | /*
2 | noMeiryoUI (C) 2005,2012-2016 Tatsuhiko Shoji
3 | The sources for noMeiryoUI are distributed under the MIT open source license
4 | */
5 | body{
6 | background-color:white;
7 | color:black;
8 | line-height:1.2em;
9 | }
10 | div.chapter{
11 | background-color:white;
12 | color:black;
13 | margin:0.5em;
14 | padding:0.5em;
15 | }
16 | h1{
17 | font-size: 1.3em;
18 | line-height:1.2em;
19 | }
20 | h2 {
21 | font-size: 1.2em;
22 | }
23 |
24 | h3 {
25 | font-size: 1.1em;
26 | /* border-bottom-width:2px; */
27 | border-style:none none double none;
28 | }
29 | span.button {
30 | background-color:white;
31 | color:black;
32 | margin:1px;
33 | padding:1px;
34 | border-style:outset;
35 | border-width:2px;
36 | }
37 |
38 | span.check {
39 | background-color:white;
40 | color:black;
41 | margin:1px;
42 | padding:1px;
43 | border-style:inset;
44 | border-width:2px;
45 | }
46 |
--------------------------------------------------------------------------------
/help/ja-jp/help_ja-jp.hhp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/ja-jp/help_ja-jp.hhp
--------------------------------------------------------------------------------
/help/ko-kr/ToC.hhc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/ko-kr/ToC.hhc
--------------------------------------------------------------------------------
/help/ko-kr/contents/01.html:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | 1. 시작하기에 앞서
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 | 1. 시작하기에 앞서
21 |
22 |
23 |
1.1 이게 뭐죠?
24 |
25 | 이 소프트웨어는 Windows 8/8.1/10의 화면 각 부분의 글꼴을 설정하는 도구입니다.
26 | 어째선지 Windows 8/8.1/10에서 표준 화면의 각 부분의 글꼴을 설정할 수 없게 되었기에 이 프로그램을 만들었습니다.
27 |
28 |
29 |
30 |
31 |
32 |
1.2 작동 환경
33 |
34 | 본 프로그램은 Windows 8, 8.1 그리고 10에서 작동합니다.
35 | 데스크탑에 표시된 윈도우의 각 부분의 글꼴을 설정하기 때문에 데스크탑 응용프로그램입니다.
36 |
37 |
38 | Windows Vista부터 7까지도 동작은 합니다만, 저 운영체제들은 화면 각 부분의 글꼴을 자체적으로 설정할 수 있기 때문에 의미가 없습니다.
39 |
40 |
41 |
42 |
43 |
44 |
45 |
1.3 파일들
46 |
47 |
48 |
49 |
50 | 파일 이름 설명
51 |
52 |
53 | noMeiryoUI.exe 메인 프로그램 파일입니다.
54 |
55 |
56 | ko-KR.lng 한국어 현지화 파일입니다.
57 |
58 |
59 | zh-CN.lng 중국어(간체) 현지화 파일입니다.
60 |
61 |
62 | en.lng 영어 현지화 파일입니다.
63 |
64 |
65 | default.lng 기본 현지화 파일(영어)입니다.
66 |
67 |
68 | ko-KR.chm 한국어 도움말 파일입니다.
69 |
70 |
71 | ja-JP.chm 일본어 도움말 파일입니다.
72 |
73 |
74 | zh-CN.chm 중국어(간체) 도움말 파일입니다.
75 |
76 |
77 | en.chm 영어 도움말 파일입니다.
78 |
79 |
80 | default.chm 기본 도움말 파일(영어)입니다.
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
1.4 설치
89 |
설치
90 |
91 | 모든 파일을 같은 폴더 아래에 압축 해제합니다.
92 |
93 |
94 |
삭제
95 |
96 | 모든 파일을 삭제하세요.
97 |
98 |
99 |
100 |
101 |
1.5 Trouble shooting
102 |
Before change system fonts
103 |
104 | If you want to change system fonts by this program, I recommended to backup registry by utils\SAVEreg.bat (required Administrator privilege).
105 | Backup file is created on C:\Users\(user name)\AppData\Local.
106 |
107 |
108 |
If trouble occurred
109 |
110 | If trouble occurred and you took backup by utils\SAVEreg.bat, run utils\RESTOREreg.bat (required Administrator privilege).
111 | You can restore registry data before changing system fonts.
112 |
113 |
114 |
115 |
116 |
117 |
--------------------------------------------------------------------------------
/help/ko-kr/contents/02.html:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | 2. 사용 방법
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | 2. 사용 방법
22 |
23 |
24 |
2.1 소개
25 |
26 | 탐색기에서 noMeiryoUI.exe의 아이콘( )을 더블클릭하는 등, noMeiryoUI.exe를 실행합니다.
27 | 아래 화면이 표시됩니다.
28 | Windows의 버전은 제품명(내부 버전 번호) 형식으로 표시하고 있습니다. 동작 확인, 오류 보고 등에 사용해주세요.
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
2.2 조작 방법
38 |
39 | 화면이 표시되면 화면 각 부분의 명칭과 설정되어 있는 글꼴 이름이 표시됩니다.
40 | 글꼴을 변경하려면 글꼴 이름 옆에 있는 [선택...] 버튼을 누르세요.
41 |
42 | 글꼴 선택 대화상자 가 표시되면 글꼴, 글꼴 크기, 서식을 취향에 따라 설정해주세요.
43 | 모든 글꼴 설정을 끝내 [확인] 버튼을 누르면, 선택한 글꼴이 화면의 각 부분에 설정됩니다.
44 |
45 |
46 | "@"로 시작하는 이름의 세로쓰기용 글꼴은 글꼴 선택 대화상자 에서 표시되지 않으며, 따라서 선택할 수 없습니다.
47 |
48 |
49 |
50 |
51 |
2.3 글꼴 [모두 설정]
52 |
53 | 맨 위에 표시되는 [모든 글꼴]이라는 항목은 화면의 각 부분의 글꼴을 모두 같은 글꼴, 글꼴 크기, 서식으로 설정하는 항목입니다.
54 | 글꼴 이름 옆의 [선택...] 버튼을 눌러 글꼴 선택 대화상자 에서 글꼴을 선택한 후 [모두 설정] 버튼을 누르면 화면의 각 부분의 글꼴이 모두 같은 글꼴, 글꼴 크기, 서식으로 설정됩니다.
55 |
56 |
57 | "@"로 시작하는 이름의 세로쓰기용 글꼴은 글꼴 선택 대화상자 에서 표시되지 않으며, 따라서 선택할 수 없습니다.
58 |
59 |
60 |
61 |
62 |
63 |
64 | 글꼴 이름 옆에 있는 [선택...] 버튼을 누르면 아래와 같은 글꼴 선택 대화상자가 표시됩니다.
65 |
66 |
67 |
68 | 글꼴 선택 대화상자에서는 다음과 같은 값을 설정할 수 있습니다.
69 |
70 |
71 |
72 | 명칭 기능
73 |
74 |
75 | 글꼴 이름(F) 글꼴을 지정합니다.
76 |
77 |
78 | 스타일(Y) 글꼴의 스타일(굵게, 기울임꼴 등)을 지정합니다.
79 |
80 |
81 | 크기(S) 글꼴 크기를 지정합니다.
82 |
83 |
84 | 밑줄(U) 체크하면 밑줄이 적용됩니다.
85 |
86 |
87 | 취소선(T) 체크하면 취소선이 적용됩니다.
88 |
89 |
90 | 문자 집합(C) 문자 집합을 선택합니다.
91 |
92 |
93 |
94 | 글꼴을 선택하고 [확인] 버튼을 누르면 글꼴이 선택됩니다.
95 | 선택 필수 부분이 선택되지 않은 경우 오류 메시지가 표시되므로 지시에 따라 필수 부분을 선택해주세요.
96 |
97 |
98 |
99 |
100 |
101 |
102 | 파일(F)
103 |
104 | 글꼴 설정 열기(O)...
105 | 파일 열기 대화상자가 표시되면 [글꼴 설정 저장(A)...]를 통해 저장한 ini 파일을 선택해주세요.
106 | 파일을 선택하면 [모든 글꼴]을 제외한 [제목 표시줄]부터 [메뉴]까지의 항목의 글꼴 설정이 ini 파일의 설정으로 지정됩니다.
107 |
108 | 글꼴 설정 저장(A)...
109 | 선택한 글꼴 설정을 ini 파일에 저장합니다.
110 | 저장되는 설정은 [모든 글꼴]을 제외한 [제목 표시줄]부터 [메뉴]까지의 항목의 글꼴 설정입니다.
111 | 파일 저장 대화상자가 표시되면, 확인하기 쉽게 파일 이름에 글꼴 이름을 붙여 저장해주세요.
112 |
113 | 시스템 글꼴 설정 및 종료(S)
114 | 선택한 글꼴을 화면 각 부분에 설정하고 프로그램을 종료합니다.
115 |
116 | 종료(X)
117 | 글꼴 설정을 적용하지 않고 프로그램을 종료합니다.
118 |
119 |
120 |
121 | 프리셋(P)
122 |
123 | Windows 8/8.1
124 | [모든 글꼴] 이외의 설정을 Windows 8/8.1의 기본값으로 되돌립니다.
125 |
126 |
127 | Windows 10
128 | [모든 글꼴] 이외의 설정을 Windows 10의 기본값으로 되돌립니다.
129 |
130 |
131 |
132 | 도구(T)
133 |
134 | 개별 스레드에서 시스템 글꼴 설정(A)
135 | 특정 상황 하의 트러블슈팅 용 설정을 수행합니다.
136 | SetPoint(Logicool 마우스/키보드 유틸리티) 등을 실행한 환경에서 글꼴을 설정했을 때 '응답 없음'이 되는 경우, 이 메뉴를 체크하고 글꼴을 설정해주세요.
137 | 이 메뉴는 기본적으로 체크되어 있습니다.
138 |
139 | Windows 7 방식의 글꼴 크기 계산(7)
140 | 글꼴 크기의 계산을 Windows 7과 같은 방식으로 합니다.
141 | Windows 8/8.1에서 Windows 7 이전과 동일한 글꼴 크기를 지정하고 싶을 경우 이 옵션을 사용합니다.
142 |
143 | 이 옵션을 체크 해제한 상태에서 글꼴 크기에 11포인트 이상을 지정한 경우, 글꼴 크기는 Windows 8/8.1의 디스플레이 설정의 텍스트 크기와 같은 크기가 됩니다. 이 경우, 글꼴 크기에 따라 Windows 7 이전의 텍스트 크기 값보다 1픽셀 커집니다.
144 | 이 옵션을 체크한 후 글꼴을 설정하면 Windows 8/8.1이라도 글꼴의 크기가 Windows 7 이전과 같은 크기가 됩니다.
145 | 이 옵션을 사용하여 글꼴 크기를 지정하는 것은 이 옵션을 설정한 후에 선택한 글꼴 설정에만 유효합니다.
146 | Windows 7 이전의 OS와 Windows 10에서 이 옵션은 비활성화되고, 선택 불가능하게 됩니다. 글꼴 크기 계산은 Windows 7 이전 OS에 준합니다.
147 |
148 | Don't run multiply
149 | When you check this option, No!! Meiryo UI don't run multiply.
150 | This option is useful to avoid contamination.
151 |
152 | Force title bar font change enabled (no warranty)
153 | On Windows 11 22H2 and later, enables title bar font change button when you check this option.
154 | On Windows 11 22H2 and later, when you try to change title bar font, unknown troubles may occurred.
155 | This is why, this option is no warranty.
156 |
157 |
158 |
159 | 도움말(H)
160 |
161 | 도움말(H)
162 | 이 문서를 열어 화면에 표시합니다.
163 |
164 | No!! Meiryo UI에 대하여(A)...
165 | 본 프로그램의 버전 대화상자을 표시합니다.
166 |
167 |
168 |
169 |
170 |
171 |
172 |
173 |
174 |
175 | 명령줄 옵션으로 실행 시에 글꼴 설정을 읽을 수 있고, 지정한 글꼴 설정을 자동으로 시스템 글꼴로 설정하는 것이 가능합니다.
176 |
177 |
178 | 명령줄은 다음과 같은 형식을 따릅니다.
179 | noMeiryoUI 글꼴 설정 파일 이름 [options...]
180 |
181 | 글꼴 설정 파일은 이 프로그램에서 글꼴 설정을 저장한 ini 파일을 의미합니다.
182 | 글꼴 설정 파일 이름에 공백이 있을 경우 파일 이름을 "(쌍따옴표)를 이용해 묶어주세요.
183 |
184 | 글꼴 설정 파일 이름 뒤에 공백을 넣고 -set 라고 입력하면 지정한 글꼴 설정 파일의 내용으로 시스템 글꼴을 설정하고 프로그램을 종료합니다.
185 | 배치 파일 등에 사용하면 미리 준비한 글꼴 설정 파일의 내용으로 시스템 글꼴을 한번에 설정하는 것이 가능해 편리합니다.
186 |
187 |
188 |
Options
189 |
190 | In [options...], you can use these options.
191 | If you use multiple options you must separate option name by space.
192 |
193 |
194 | -set
195 | -set option can set systems fonts on start up and exit program.
196 | This option is useful for startup shortcut, launcher setting, batch file.
197 |
198 | -delay
199 | -delay option delays system fonts change by seconds.
200 | You must specify delay time be seconds. For example, -delay 60 .
201 | You can use this option to prevent system changes system fonts in some reasons
202 |
203 | -force (no warranty)
204 | -force option enables to change title bar font on Windows 11 22H2 and later.
205 | On Windows 11 22H2 and later, when you try to change title bar font, unknown troubles may occurred.
206 | This is why, this option is no warranty.
207 |
208 |
209 |
210 |
예1. MySet.ini라는 글꼴 설정 파일을 실행 시 읽는 경우
211 |
212 | MySet.ini라는 글꼴 설정 파일을 실행 시에 읽는 경우 명령줄 등에 다음과 같이 입력합니다.
213 | noMeiryoUI MySet.ini
214 |
215 |
216 |
예2. Your Settings.ini라는 글꼴 설정 파일의 내용으로 시스템 글꼴을 설정하는 경우
217 |
218 | Your Settings.ini라는 글꼴 설정 파일에 따라 시스템 글꼴을 설정하는 경우 명령줄 등에 다음과 같이 입력합니다.
219 | noMeiryoUI "Your Settings.ini" -set
220 |
221 |
222 |
223 |
224 |
225 |
226 |
--------------------------------------------------------------------------------
/help/ko-kr/contents/03.html:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | 3. 제작 이력
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | 3. 제작 이력
22 |
23 |
24 |
04/19/2025 Version 3.4.0
25 |
26 | Add -delay option to prevent system changes system fonts in some reasons.
27 | On Windows 11 22H2 and later, add some settings to change title bar font. These options are experimental.
28 |
29 |
30 |
31 |
32 |
33 |
34 |
2024/03/05 Version 3.3.1
35 |
36 |
37 |
38 |
39 |
2024/02/25 Version 3.3.0
40 |
41 |
42 |
43 |
44 |
2023/09/03 Version 3.2.1
45 |
46 |
47 |
48 |
49 |
2023/08/27 Version 3.2.0
50 |
51 |
52 |
53 |
54 |
2022/09/26 Version 3.1.0.1
55 |
56 |
57 |
58 |
59 |
2022/09/21 Version 3.1.0
60 |
61 |
62 |
63 |
64 |
2022/02/13 Version 3.0.0
65 |
66 |
67 |
68 |
69 |
2021/01/10 Version 2.41
70 |
71 |
72 |
73 |
74 |
2020/07/26 Version 2.40.2
75 |
2020/06/28 Version 2.40.1
76 |
77 | Improved Korean translation.
78 |
79 |
80 |
81 |
82 |
83 |
2020/05/31 Version 2.40
84 |
85 | Add apply button.
86 | Controls are grouped.
87 | Fixed bug cannot use default path when you specified setting file.
88 |
89 |
90 |
91 |
92 |
93 |
2020/01/13 Version 2.36
94 |
95 | Exit application after Set all fonts.
96 | Add Brazilian Portuguese translation.
97 | Add Traditional Chinese translation.
98 | Included Chinese translation that was forgotten on Version 2.35.
99 |
100 |
101 |
102 |
103 |
104 |
2018/04/28 Version 2.35
105 |
106 | 표시 언어만 변경하고 시스템 로캘은 변경하지 않은 경우, 표시 언어로 보이도록 했습니다.
107 | 글꼴 크기를 키웠습니다.
108 | deVbug님의 협력으로 한국어 번역을 추가했습니다.
109 | 한국어 글꼴이름을 올바르게 보이게 했습니다. (한국어인 경우만 적용)
110 |
111 |
112 |
113 |
114 |
115 |
2017/06/03 Version 2.34
116 |
117 | 실행할 때 프로그램을 마우스 포인터가 있는 모니터의 중앙보다 약간 왼쪽 위에 표시하도록 했습니다.
118 | 글꼴 선택 대화상자를 프로그램 메인 창의 중앙에 표시하도록 했습니다.
119 | 도움말 파일을 프로그램 메인 화면이 표시되어있는 모니터의 중앙보다 약간 왼쪽 위에 표시하도록 했습니다.
120 | 중국어(간체)판 도움말의 글꼴이 일부 다른 글꼴로 표시되는 문제를 수정했습니다.
121 |
122 |
123 |
124 |
125 |
126 |
2017/05/14 Version 2.33
127 |
128 | Windows 10에서 실행했을 때 상세한 버전 정보를 표시하도록 했습니다.
129 | 영문판 Windows에서도 프리셋 메뉴가 기능하도록 했습니다.
130 | 각 언어로의 번역에 대비해, 표시 글꼴과 프리셋의 문자 집합을 변경할 수 있도록 했습니다.
131 | 읽어들일 언어 파일, 도움말 파일 이름을 Windows의 로캘 정보로부터 결정하도록 했습니다. 따라서 번역을 추가할 때 프로그램을 변경할 필요가 없고, 언어 파일만 배포하면 되게 되었습니다.
132 |
133 |
134 |
135 |
136 |
137 |
2016/10/10 Version 2.32
138 |
139 | 타치바나 겍카님의 도움으로 도움말의 중국어(간체) 버전을 포함하고, 중국어(간체)판 Windows에서 실행할 때 표시할 수 있도록 했습니다.
140 | 중국어(간체)판 Windows에서도 프리셋 메뉴가 기능하도록 했습니다.
141 | 각 언어로의 번역에 대비해, 소스코드 폴더 구조를 변경하고 메시지를 기술한 파일과 도움말 파일의 번역 방법에 대해 간단한 설명을 추가했습니다.
142 |
143 |
144 |
145 |
146 |
147 |
2016/09/19 Version 2.31
148 |
149 | 타치바나 겍카님이 중국어(간체)로 번역해주셨습니다. 이제 중국어(간체)판 Windows에서 중국어(간체)로 표시됩니다.
150 |
151 | 도움말의 국제화에 대비해, 도움말을 HTML로 변경했습니다.
152 |
153 | 버전 정보에 번역자의 정보를 추가했습니다.
154 |
155 | 일본어판 이외의 Windows에서 버전 정보를 표시했을 때 발생하는 잠재적 문제를 수정했습니다.
156 |
157 |
158 |
159 |
160 |
161 |
162 |
2016/08/19 Version 2.30
163 |
164 | 일본어 이외의 OS를 위한 다국어 지원이 추가되었습니다. 이 버전에선 일본어, 중국어(간체), 그 외 언어로 메시지가 변경됩니다.
165 | 단, 저는 중국어를 모르기에 이 버전에선 임시로 중국어(간체)판 Windows에서 실행할 때 영어로 표시됩니다.
166 |
167 |
168 |
169 |
170 |
171 |
172 |
2016/06/09 Version 2.20
173 |
174 | 명령줄로부터 설정 파일을 지정할 수 있도록 했습니다. 또한, 명령줄로부터 지정한 설정 파일의 내용에 글꼴을 설정할 수 있도록 했습니다.
175 |
176 |
177 |
178 |
179 |
180 |
181 |
2016/02/23 Version 2.17
182 |
183 | 선택한 글꼴의 글꼴 이름과 크기를 선택한 글꼴로 표시하도록 했습니다.
184 | 글꼴 이름만 보면 Meiryo UI가 멀쩡한 글꼴로 보이는게 난감하지만요.
185 |
186 |
187 |
188 |
189 |
190 |
191 |
2015/08/16 Version 2.16
192 |
193 | [다른 스레드에서 글꼴 변경]을 기본적으로 활성화하도록 수정했습니다.
194 | Windows 10용 프리셋을 추가했습니다.
195 | 시스템 DPI에 대해 대응했습니다.
196 |
197 |
198 |
199 |
200 |
201 |
2015/07/20 Version 2.15
202 |
203 | 글꼴 크기를 글꼴 이름과 함께 표시하도록 했습니다.
204 |
205 | 글꼴 선택 대화상자를 표시할 때 지금까지 선택되어 있던 글꼴이 대화상자의 각 항목에 설정되도록 했습니다.
206 |
207 | Windows 8/8.1의 기본 글꼴 설정을 화면 각 항목에 설정하는 프리셋 메뉴를 추가했습니다.
208 | Windows 8/8.1에서 기본 설정의 글꼴 크기 값을 디스플레이 설정의 텍스트 크기에 맞추도록 했습니다.
209 | 이에 따라, Windows 7 이전의 OS 및 글꼴 선택 일반 대화상자와 같은 글꼴 크기의 표시 설정을 수행하기 위해, [Windows 7 방식의 글꼴 크기 계산] 옵션을 추가했습니다.
210 |
211 |
212 |
213 |
214 |
215 |
216 |
2015/01/04 Version 2.14
217 |
218 | 글꼴 설정을 파일로 저장하는 기능을 추가했습니다.
219 |
220 |
221 |
222 |
223 |
224 |
225 |
2014/07/13 Version 2.13
226 |
227 | 다른 스레드에서 글꼴 설정을 변경하는 설정을 추가하였습니다.
228 | SetPoint(Logicool 마우스/키보드 유틸리티) 등을 실행한 환경에서 글꼴을 설정했을 때 '응답 없음'이 되는 경우 사용해주세요.
229 | 이 설정의 추가에 따라, 이 설정을 위한 메뉴를 추가했습니다.
230 |
231 | 글꼴 설정 시 LOGFONT 구조체의 lfOutPrecision, lfClipPrecision, lfQuality 값은 글꼴 정보 획득 시에 반환된 값이 아닌, 0(디폴트)으로 설정하도록 했습니다. 이로인해, 설정한 글꼴 정보가 Windows 7까지의 화면 디자인으로 설정한 값과 맞게 되었습니다.
232 |
233 |
234 |
235 |
236 |
237 |
2013/10/06 Version 2.12
238 |
239 | Windows 8.1에 대비하여 Windows의 버전을 표시하는 기능을 추가했습니다. 트러블슈팅에 사용해주세요.
240 | Windows 8.1을 제대로 감지하기 위해 manifest를 추가로 기록하였습니다.
241 |
242 |
243 |
244 |
245 |
246 |
2013/02/23 Version 2.11
247 |
248 | IObit StartMenu 8 실행 중에 글꼴 설정을 수행하면 프로그램이 중단되는 현상을 수정하였습니다.
249 | [모두 설정]을 수행한 후, [확인]버튼을 눌렀을 때 [아이콘]에 선택한 글꼴과는 다른 글꼴이 설정되는 문제를 수정하였습니다.
250 | MIT 라이센스를 소스코드에 첨부하였습니다.
251 |
252 |
253 |
254 |
255 |
256 |
2013/02/17 Version 2.10
257 |
258 | 글꼴 선택 시 Application Verifier에 오류가 나는 등 글꼴 선택 전후 과정이 오류의 원인이 되었기에, 글꼴 선택 대화상자를 자체 제작한 것으로 교체하였습니다.
259 | 글꼴 선택 대화상자에 세로쓰기용 글꼴이 나타나지 않도록 했습니다.
260 | 글꼴 선택 대화상자에서 문자 집합에 일본어가 존재하는 글꼴을 선택한 경우, 일본어 문자 집합이 기본적으로 선택되도록 했습니다.
261 | 글꼴 선택 대화상자에서 밑줄, 취소선을 선택할 수 있도록 했습니다. (사용할라나?)
262 |
263 |
264 | 프로그램 실행 시 명령줄 옵션에 "noMeiryoUI"(쌍따옴표는 불필요하고 대소문자 주의)를 붙여서 실행하면...?
265 |
266 |
267 |
268 |
269 |
270 |
271 |
2013/02/11 Version 2.02
272 |
273 | 선택한 글꼴의 글꼴 이름이 "@"로 시작하는 경우, 정말 의도하고 선택한 글꼴인지 확인하는 대화상자를 표시할 때 그 조건이 잘못되어 수정하였습니다.
274 |
275 | 이상 종료에 대응하기 위해, 글꼴 선택 대화상자가 정상적으로 표시되지 않은 경우 알림 대화상자를 표시하도록 했고, 글꼴 선택 대화상자 표시 시 초기화 처리를 검토했습니다.
276 | 다음 판에서 글꼴 선택을 공통 대화상자가 아닌 자체 제작으로 대체할 예정입니다.
277 |
278 |
279 |
280 |
281 |
282 |
2013/02/03 Version 2.01
283 |
284 | 선택한 글꼴의 글꼴 이름이 "@"로 시작하는 경우, 정말 의도하고 선택한 글꼴인지 확인하는 대화상자를 표시하도록 했습니다.
285 |
286 | 실수로 글꼴 이름이 "@"로 시작하는 세로쓰기용 글꼴을 선택하는 사례가 많기에 미리 확인을 할 수 있도록 했습니다.
287 |
288 |
289 |
290 |
291 |
292 |
2012/11/18 Version 2.00
293 |
294 | [Meiryo UI도 정말 싫어!]로 수정된 초판입니다.
295 | 화면 각 부분의 글꼴 크기 설정 기능을 추가했습니다.
296 |
297 |
298 |
299 |
300 |
301 |
2005/09/25 Version 1.00
302 |
303 | 본 프로그램의 전신인 [Tahoma따위 정말 싫어!]의 초판입니다.
304 |
305 |
306 |
307 |
308 |
309 |
--------------------------------------------------------------------------------
/help/ko-kr/contents/04.html:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | 4. 라이센스와 제작자에 대해
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 | 4. 라이센스와 제작자에 대해
21 |
22 |
23 |
저작권
24 |
25 | 이 소프트웨어는 Tatsu(庄子 達彦; 타츠히코 쇼지)가 저작권을 보유하는 프리웨어입니다.
26 | 이 소프트웨어는 무료로, 목적을 불문하고 자유롭게 사용해도 상관없습니다.
27 | 하지만, 전재 시 알려주시면 제작자가 기뻐합니다.
28 |
29 | 제작자는 이 소프트웨어를 사용함에 있어 되도록 문제가 발생하지 않도록 유의하고 있습니다만, 이 소프트웨어를 사용하는 중 발생하는 그 어떤 문제에 대해서도 제작자는 일체의 책임을 지지 않습니다.
30 |
31 | 의견, 감상 등이 있으시다면, 아래 기록한 제작자의 연락처로 연락주시기 바랍니다.
32 |
33 |
34 |
35 | 소스 파일은 MIT 라이센스(http://opensource.org/licenses/mit-license.php )를 따릅니다.
36 |
37 |
38 |
39 |
40 |
48 |
49 |
50 |
51 |
번역자
52 |
53 |
54 | 언어 번역자
55 |
56 |
57 | 한국어 deVbug,창윤
58 |
59 |
60 | 중국어(간체) Gekka Tachibana,kingofotaku,icebeam030,LucidLoli,Luke Luo,HSSadboy
61 |
62 |
63 | 일본어 Tatsu
64 |
65 |
66 | 영어 Tatsu,mon-jai
67 |
68 |
69 | Traditional Chinese Austin Chang,HSSadboy,abc0922001,jay900604
70 |
71 |
72 | Portuguese(Brazil) Claudio Mantovani Vieira
73 |
74 |
75 |
76 |
77 |
78 |
79 |
--------------------------------------------------------------------------------
/help/ko-kr/contents/FontSel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/ko-kr/contents/FontSel.png
--------------------------------------------------------------------------------
/help/ko-kr/contents/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/ko-kr/contents/icon.png
--------------------------------------------------------------------------------
/help/ko-kr/contents/noMeiryoUI.css:
--------------------------------------------------------------------------------
1 | /*
2 | noMeiryoUI (C) 2005,2012-2016 Tatsuhiko Shoji
3 | The sources for noMeiryoUI are distributed under the MIT open source license
4 | */
5 | body{
6 | background-color:white;
7 | color:black;
8 | line-height:1.2em;
9 | }
10 | div.chapter{
11 | background-color:white;
12 | color:black;
13 | margin:0.5em;
14 | padding:0.5em;
15 | }
16 | h1{
17 | font-size: 1.3em;
18 | line-height:1.2em;
19 | }
20 | h2 {
21 | font-size: 1.2em;
22 | }
23 |
24 | h3 {
25 | font-size: 1.1em;
26 | /* border-bottom-width:2px; */
27 | border-style:none none double none;
28 | }
29 | span.button {
30 | background-color:white;
31 | color:black;
32 | margin:1px;
33 | padding:1px;
34 | border-style:outset;
35 | border-width:2px;
36 | }
37 |
38 | span.check {
39 | background-color:white;
40 | color:black;
41 | margin:1px;
42 | padding:1px;
43 | border-style:inset;
44 | border-width:2px;
45 | }
46 |
--------------------------------------------------------------------------------
/help/ko-kr/contents/noMeiryoUI.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/ko-kr/contents/noMeiryoUI.png
--------------------------------------------------------------------------------
/help/ko-kr/help_ko-kr.hhp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/ko-kr/help_ko-kr.hhp
--------------------------------------------------------------------------------
/help/pt-br/ToC.hhc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/pt-br/ToC.hhc
--------------------------------------------------------------------------------
/help/pt-br/contents/01.html:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | Getting started
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 | 1.Iniciando
21 |
22 |
23 |
1.1 O que é isto?
24 |
25 | Este programa define
26 | a configuração das fontes do sistema no Windows 8.1/10.
27 |
28 |
29 |
30 |
31 |
32 |
1.2 Sistema Operacional Alvo
33 |
34 | Este programa roda no Windows 8,8.1 e 10.
35 |
36 |
37 |
38 |
39 |
40 |
41 |
1.3 Arquivos
42 |
43 |
44 |
45 |
46 | Nome do Arquivo Conteúdo
47 |
48 |
49 | noMeiryoUI.exe Arquivo do programa
50 |
51 |
52 | zh-CN.lng Arquivo de mensagem em Chinês Simplificado.
53 |
54 |
55 | en.lng Arquivo de mensagem em Inglês.
56 |
57 |
58 | ko-KR.lng Arquivo de mensagem em Coreano.
59 |
60 |
61 | default.lng Arquivo de mensagem padrão.
62 |
63 |
64 | ja-JP.chm Arquivo de ajuda em Japonês.
65 |
66 |
67 | zh-CN.chm Arquivo de ajuda em Chinês Simplificado.
68 |
69 |
70 | en.chm Arquivo de ajuda em Inglês.
71 |
72 |
73 | ko-KR.chm Arquivo de ajuda em Coreano.
74 |
75 |
76 | default.chm Arquivo de ajuda padrão.
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
1.4 Instalação
85 |
Instalar
86 |
87 | Extraia
88 | todos os arquivos na mesma pasta.
89 |
90 |
91 |
Desinstalação
92 |
93 | Exclua
94 | todos os arquivos.
95 |
96 |
97 |
98 |
99 |
1.5 Trouble shooting
100 |
Before change system fonts
101 |
102 | If you want to change system fonts by this program, I recommended to backup registry by utils\SAVEreg.bat (required Administrator privilege).
103 | Backup file is created on C:\Users\(user name)\AppData\Local.
104 |
105 |
106 |
If trouble occurred
107 |
108 | If trouble occurred and you took backup by utils\SAVEreg.bat, run utils\RESTOREreg.bat (required Administrator privilege).
109 | You can restore registry data before changing system fonts.
110 |
111 |
112 |
113 |
114 |
115 |
--------------------------------------------------------------------------------
/help/pt-br/contents/02.html:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | How to use
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | 2.Como usar
22 |
23 |
24 |
25 | Rode o noMeiryoUI.exe.
26 | Este
27 | ícone ( ).
28 |
29 |
30 |
31 | E,
32 | abaixo, a janela é exibida.
33 |
34 | Pressione
35 | o botão Selec. ...
36 | (Selecionar) para definir o elemento da interface do usuário.
37 |
38 |
39 |
40 | Quando você pressionar o botão Selecionar..., esta janela será exibida.
41 |
42 |
43 |
44 | Escolha o nome, o tamanho e o
45 | estilo da fonte, o conjunto de caracteres e pressione o botão OK.
46 |
47 |
48 | Pressione o botão Configurar e você poderá definir a fonte da interface do usuário.
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 | Choice No!! Meiryo UI application font
59 | Users can choice application font by font dialog.
60 |
61 | Set system fonts in separated thread
62 | Some programs cause system freeze when system fonts changed.
63 | To avoid system freeze check this item.
64 | Initially, this option is checked.
65 | If you don't select this item, you can reduce time when you changed system fonts.
66 |
67 | Calculate font size same as Windows 7
68 | In Windows 8, font size caliculate algorithm is different from other version of Windows.
69 | When you check this option, font size caliculate algorithm in Windows 8 is same as other version of Windows.
70 |
71 | Don't run multiply
72 | When you check this option, No!! Meiryo UI don't run multiply.
73 | This option is useful to avoid contamination.
74 |
75 | Force title bar font change enabled (no warranty)
76 | On Windows 11 22H2 and later, enables title bar font change button when you check this option.
77 | On Windows 11 22H2 and later, when you try to change title bar font, unknown troubles may occurred.
78 | This is why, this option is no warranty.
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
Opção linha de comando .
87 |
88 | O formato da
89 | linha de comando está abaixo.
90 | noMeiryoUI [font_setting_file] [-set]
91 |
92 |
93 | Se você especificar o arquivo de configuração da fonte, ele será carregado quando este programa for iniciado.
94 |
95 |
96 | If you use multiple options you must separate option name by space.
97 |
98 |
99 |
Options
100 |
101 | In [options...], you can use these options.
102 | If you use multiple options you must separate option name by space.
103 |
104 |
105 | -set
106 | -set option can set systems fonts on start up and exit program.
107 | This option is useful for startup shortcut, launcher setting, batch file.
108 |
109 | -delay
110 | -delay option delays system fonts change by seconds.
111 | You must specify delay time be seconds. For example, -delay 60 .
112 | You can use this option to prevent system changes system fonts in some reasons
113 |
114 | -force (no warranty)
115 | -force option enables to change title bar font on Windows 11 22H2 and later.
116 | On Windows 11 22H2 and later, when you try to change title bar font, unknown troubles may occurred.
117 | This is why, this option is no warranty.
118 |
119 |
120 |
121 |
122 |
123 |
124 |
125 |
126 |
--------------------------------------------------------------------------------
/help/pt-br/contents/03.html:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | Histórico
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | 3.Histórico
22 |
23 |
24 |
04/19/2025 Versão 3.4.0
25 |
26 | Add -delay option to prevent system changes system fonts in some reasons.
27 | On Windows 11 22H2 and later, add some settings to change title bar font. These options are experimental.
28 |
29 |
30 |
31 |
32 |
33 |
34 |
03/03/2024 Versão 3.3.1
35 |
36 |
37 |
38 |
39 |
40 |
02/25/2024 Versão 3.3.0
41 |
42 |
43 |
44 |
45 |
46 |
03/09/2023 Versão 3.2.1
47 |
48 |
49 |
50 |
51 |
52 |
27/08/2023 Versão 3.2.0
53 |
54 |
55 |
56 |
57 |
58 |
26/09/2022 Versão 3.1.0.1
59 |
60 |
61 |
62 |
63 |
64 |
21/09/2022 Versão 3.1.0
65 |
66 |
67 |
68 |
69 |
70 |
13/02/2022 Versão 3.0.0
71 |
72 |
73 |
74 |
75 |
76 |
10/01/2020 Versão 2.41
77 |
78 | Mostrar todos os estilos de fonte na caixa de diálogo
79 | de seleção de fonte.
80 | Mostrar o número da versão do novo estilo no Windows 10 versão 20H2.
81 |
82 |
83 |
84 |
85 |
86 |
87 |
26/07/2020 Versão 2.40.2
88 |
28/06/2020 Versão 2.40.1
89 |
31/05/2020 Versão 2.40
90 |
91 | Adicionado botão aplicar.
92 |
93 | Os controles estão agrupados.
94 |
95 | Corrigido bug não é possível usar o caminho padrão quando você especificou o arquivo de configuração.
96 |
97 |
98 |
99 |
100 |
101 |
102 |
13/01/2019 Versão 2.36
103 |
104 | O aplicativo fecha após configurar todas as fontes.
105 |
106 | Foi adicionado a tradução Português Brasileiro.
107 |
108 | Foi adicionado a tradução Chinês Tradicional.
109 |
110 | Foi incluso a tradução em Chinês, que foi esquecida na Versão 2.35.
111 |
112 |
113 |
114 |
115 |
116 |
28/04/2018 Versão 2.35
117 |
118 | Agora, o idioma de exibição é exibido pelo
119 | idioma de exibição do sistema sem localidade do sistema.
120 |
121 | Para várias pessoas, o tamanho da fonte está
122 | maior do que em versões anteriores.
123 |
124 | Obrigado pela cooperação de deVbug, adicionado o idioma
125 | Coreano.
126 |
127 | Adicionado a substituição do nome da fonte Coreana.(Apenas na Coréia.)
128 |
129 | Obrigado pela colaboração de kingofotaku, a tradução Chinês Simplificado foi aprimorada.
130 |
131 |
132 |
133 |
134 |
135 |
03/06/2017 Versão 2.34
136 |
137 | Na inicialização, a janela principal é mostrada no centro do
138 | monitor onde está o cursor do mouse.
139 |
140 | O diálogo Selecionar a Fonte é mostrado sobre a janela principal.
141 |
142 | O Arquivo da Ajuda é mostrado no centro do monitor onde o cursor do
143 | mouse existe.
144 |
145 | Foi corrigido um problema com a fonte do arquivo da ajuda em Chinês Simplificado.
146 |
147 |
148 |
149 |
150 |
151 |
14/05/2017 Version 2.33
152 |
153 | No Windows 10, foram adicionadas informações detalhadas da versão.
154 |
155 | O Menu Pré-Configurações está disponível na versão em Inglês do Windows
156 |
157 | O item do conjunto de caracteres das pré-configurações
158 | de fonte foi adicionado no arquivo de idioma.
159 |
160 | O arquivo de idioma e da ajuda pode ser detectado pelo nome do local do Windows.
161 |
162 |
163 |
164 |
165 |
166 |
10/10/2016 Versão 2.32
167 |
168 | Foi adicionado o arquivo da ajuda em Chinês Simplificado. Obrigado à Gekka Tachibana.
169 | O Menu Pré-Configurações foi habilitado no Windows em Chinês Simplificado.
170 | O layout da pasta do arquivo de orígem foi modificado para adicionar outros idiomas no futuro.
171 |
172 |
173 |
174 |
175 |
176 |
177 |
19/09/2016 Versão 2.31
178 |
179 | Foi adicionado mensagens em Chinês Simplificado. Obrigado à Gekka Tachibana.
180 | O Arquivo da Ajuda foi modificado para ajuda HTML.
181 | Foi adicionado créditos de tradutor.
182 |
183 |
184 |
185 |
186 |
187 |
188 |
19/08/2016 Versão 2.30
189 |
190 | Versão pré multi-idioma.
191 |
192 |
193 |
194 |
195 |
196 |
197 |
198 | Para conhecer as modificações de versões
199 | anteriores, por favor, leia a versão do arquivo da ajuda em Japonês
200 |
201 |
202 |
203 |
204 |
205 |
--------------------------------------------------------------------------------
/help/pt-br/contents/04.html:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | License
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 | 4.Licença
21 |
22 |
30 |
31 |
32 |
41 |
42 |
43 |
44 |
Tradutores
45 |
46 |
47 | Idioma Autor
48 |
49 |
50 | Inglês Tatsu,mon-jai
51 |
52 |
53 | Chinês Simplificado Gekka Tachibana,kingofotaku,icebeam030,LucidLoli,Luke Luo,HSSadboy
54 |
55 |
56 | Chinês Tradicional Austin Chang,HSSadboy,abc0922001,jay900604
57 |
58 |
59 | Coreano deVbug
60 |
61 |
62 | Português Brasileiro Claudio Mantovani Vieira
63 |
64 |
65 | Japonês Tatsu
66 |
67 |
68 |
69 |
70 |
71 |
72 |
--------------------------------------------------------------------------------
/help/pt-br/contents/FontSel.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/pt-br/contents/FontSel.PNG
--------------------------------------------------------------------------------
/help/pt-br/contents/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/pt-br/contents/icon.png
--------------------------------------------------------------------------------
/help/pt-br/contents/noMeiryoUI.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/pt-br/contents/noMeiryoUI.PNG
--------------------------------------------------------------------------------
/help/pt-br/contents/noMeiryoUI.css:
--------------------------------------------------------------------------------
1 | /*
2 | noMeiryoUI (C) 2005,2012-2016 Tatsuhiko Shoji
3 | The sources for noMeiryoUI are distributed under the MIT open source license
4 | */
5 | body{
6 | background-color:white;
7 | color:black;
8 | line-height:1.2em;
9 | }
10 | div.chapter{
11 | background-color:white;
12 | color:black;
13 | margin:0.5em;
14 | padding:0.5em;
15 | }
16 | h1{
17 | font-size: 1.3em;
18 | line-height:1.2em;
19 | }
20 | h2 {
21 | font-size: 1.2em;
22 | }
23 |
24 | h3 {
25 | font-size: 1.1em;
26 | /* border-bottom-width:2px; */
27 | border-style:none none double none;
28 | }
29 | span.button {
30 | background-color:white;
31 | color:black;
32 | margin:1px;
33 | padding:1px;
34 | border-style:outset;
35 | border-width:2px;
36 | }
37 |
38 | span.check {
39 | background-color:white;
40 | color:black;
41 | margin:1px;
42 | padding:1px;
43 | border-style:inset;
44 | border-width:2px;
45 | }
46 |
--------------------------------------------------------------------------------
/help/pt-br/help_br.hhp:
--------------------------------------------------------------------------------
1 | [OPTIONS]
2 | Compatibility=1.1 or later
3 | Compiled file=pt-BR.chm
4 | Contents file=ToC.hhc
5 | Default topic=contents\02.html
6 | Display compile progress=No
7 | Language=0x416
8 | Title=No!! Meiryo UI help
9 |
10 |
11 | [FILES]
12 | contents\01.html
13 | contents\02.html
14 | contents\03.html
15 | contents\04.html
16 |
17 |
--------------------------------------------------------------------------------
/help/zh-cn/ToC.hhc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/zh-cn/ToC.hhc
--------------------------------------------------------------------------------
/help/zh-cn/contents/01.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/zh-cn/contents/01.html
--------------------------------------------------------------------------------
/help/zh-cn/contents/02.html:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | 2.本软件的使用方法
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | 2.本软件的使用方法
22 |
23 |
24 |
2.1 首先
25 |
26 | 在文件资源管理器中双击noMeiryoUI.exe的图标 运行软件。
27 | 之后会出现如下界面。
28 | 当前Windows版本信息将以系统名称(内部版本号)的形式在主界面上方显示。当您需要向作者反馈运行情况及BUG时可一并附上。
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
2.2 操作方法
38 |
39 | 当主界面出现后,当前系统界面各个部分所用字体名也会一并显示出来。
40 |
41 |
42 |
设定全局字体
43 |
44 | 上方“全局设定”一栏的作用是将该栏所选字体应用到下方所有系统界面项目中。
45 |
46 |
47 | 位于“所有字体”右侧的框内显示当前已选择的字体。
48 | 当您点击该栏字体名称右侧的“选择”后,即可从弹出的字体选择对话框 中选择字体。
49 | 点击“统一设置并退出”即可统一更改所有系统界面所用字体、字体大小与字形并关闭程序。
50 | 点击“应用”则不会在更改后关闭程序。
51 |
52 |
53 |
对系统界面各项目单独设定字体
54 |
55 | 下方“单项设定”一栏的作用是对系统界面各项目的字体进行单独设定。
56 |
57 |
58 | 如要变更字体,请点击对应项目右侧的“选择”
59 | 并在弹出的字体选择对话框 中选择您喜欢的字体、字体大小与字形。
60 |
61 | 当您设定好字体后可点击“设置并退出”来将字体应用到系统界面各项目中,并且程序将自动关闭。
62 | 点击“应用”来将字体应用到系统界面各项目中,并且程序将不会自动关闭。
63 | 点击“退出”可关闭程序。
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 | 点击字体名右侧的“选择”后,软件将会弹出如下字体选择对话框:
75 |
76 |
77 |
78 |
79 | 通过字体选择对话框能够进行下列设定:
80 |
81 |
82 |
83 | 名称 功能
84 |
85 |
86 | 字体名称(F) 选择字体。
87 |
88 |
89 | 字形(Y) 指定字体的字形。
90 |
91 |
92 | 字体大小(S) 指定字体大小。
93 |
94 | 粗体(B) 勾选此项加粗文字。
95 |
96 |
97 | 斜体(I) 勾选此项使文字变为斜体。
98 |
99 |
100 | 下划线(U) 勾选此项来为文字添加下划线。
101 |
102 |
103 | 删除线(T) 勾选此项来为文字添加删除线。
104 |
105 |
106 | 字符集(C) 选择字体的字符集。
107 |
108 |
109 |
110 | 选择完毕后点击“确定”键即可选择该字体。
111 | 当您未选择某些必选项目时软件将会报错,届时请根据错误信息提示来进行操作。
112 |
113 |
114 |
115 |
116 |
117 |
118 | 文件(F)
119 |
120 | 加载字体配置文件(O)
121 | 此功能的作用是将之前保存的字体设定配置应用于各个选项。选择该选项后软件将会弹出文件选择对话框,之后请从中选择之前通过“保存字体设定配置(A)”功能保存的ini配置文件。
122 | 在选择配置文件后,软件内从“标题栏”起,直到“菜单”一栏内的字体设定将会被替换成配置文件内保存的设定,接着可以点击最下方的“设定”或“应用”来应用更改。
123 |
124 | 保存字体配置文件(A)
125 | 将当前已选择的字体设定保存为ini配置文件。
126 | 将会保存从“标题栏”起,直到“菜单”一栏内的字体设定。
127 | 点击此功能后将会弹出文件保存对话框,请在命名配置文件后再保存该文件。
128 |
129 | 设定系统字体并退出(S)
130 | 应用系统界面各个部分的字体后结束程序。
131 |
132 | 退出(X)
133 | 在不应用字体的情况下直接结束程序。
134 |
135 |
136 |
137 | 恢复系统默认字体(P)
138 |
139 | Windows 8/8.1
140 | 将“单项设定”分组下各项字体设定恢复到Windows 8/8.1系统默认状态。
141 |
142 |
143 | Windows 10
144 | 将“单项设定”分组下各项字体设定恢复到Windows 10系统默认状态。
145 |
146 | Windows 11
147 | 将“单项设定”分组下各项字体设定恢复到Windows 11系统默认状态。
148 |
149 |
150 |
151 |
152 | 工具(T)
153 |
154 | 在独立进程中更改系统字体(A)
155 | 特殊运行环境下用于排除故障的选项。
156 | 如在启动SetPoint(用于罗技品牌鼠标/键盘的用户工具)等软件后使用本软件,出现字体设定无响应等情况时,可在点击并勾选此选项后再次进行字体设定。
157 |
158 | 采用与Windows 7中相同的方法计算文字大小
159 | 将系统中针对文字大小处理方式更改为Windows 7式。
160 | 本选项可使Windows 8/8.1采用与Windows 7同样的字体大小计算方式。
161 |
162 | 在此选项未被勾选,且当您将字体大小设定为大于11时,实际的文字大小将等同于Windows 8/8.1控制面板-显示设置中所选择的文本尺寸。而这会造成在某些特定的字体大小下。字体的实际大小要比Windows 7及之前系统中的相应文本尺寸设定大出一个像素。在勾选此选项后,即使在Windows 8/8.1系统环境下,字体大小也将变得和Windows 7及之前的系统相同。
163 | 此选项仅对选项生效后设定的字体有效。
164 | 如在Windows 7及之前系统,以及Windows 10的环境下运行本软件,则此选项为灰色且不可选。此时的文字大小计算标准为Windows 7及之前系统的标准。
165 |
166 | 禁止多开
167 | 打开此选项可禁止重复打开本软件
168 | 若想要避免重复打开而带来不必要的混乱,可启用该选项
169 |
170 | 强制修改标题栏字体(O) 不推荐
171 | 启用该选项以在 Windows 11 22H2 以后的系统中强制修改标题栏所用字体 但在Windows 11 22H2以后的系统中打开该选项,可能会造成诸如字体不能正确更改、显示不正常、对界面造成破坏等副作用,因此作者对此功能的效果不作任何保证。
172 |
173 |
174 |
175 | 帮助(H)
176 |
177 | 显示帮助(C)
178 | 显示本文档。
179 |
180 | 关于 No!! Meiryo UI(A)
181 | 显示当前程序版本。
182 |
183 |
184 |
185 |
186 |
187 |
188 |
189 |
190 |
191 | 利用特定命令行及参数,不仅可以使软件在启动时自动加载指定字体设定配置,更可以做到直接将字体设定配置直接应用在系统界面中。
192 |
193 |
194 | 命令行的写法如下列:
195 | noMeiryoUI 字体设定配置文件名 [-set]
196 |
197 | 请将使用本软件保存的字体设定配置ini文件名填入命令行中对应的位置。
198 | 如字体设定配置文件的文件名或全体路径中包含空格,请用""(半角双括号)将其包括在内。
199 | 若一次使用多个选项,必须用空格分隔每一个选项。
200 |
201 |
202 |
选项
203 |
204 | 在[options...]中,可选择使用下列选项。
205 | 若需使用多个选项,必须用空格分隔每一个选项。
206 |
207 |
208 | -set
209 | -set 选项可应用指定的字体配置并在其生效后退出程序
210 | 可通过批处理等方法一键设置事先保存好的字体配置,方便快捷。
211 |
212 | -delay
213 | -delay 选项可以秒单位指定软件启动后对系统字体进行更改操作的延迟时间。
214 | 必须在参数后加上想要延迟的秒数,例如: -delay 60 .
215 | 可使用该参数以应对某些情况下系统会自动对系统字体进行更改的情形
216 |
217 | -force (实验性)
218 | -force 选项可在Windows 11 22H2以后的系统中更改标题栏字体
219 | 但在Windows 11 22H2以后的系统中打开该选项,可能会造成诸如字体不能正确更改、显示不正常、对界面造成破坏等副作用,因此作者对此功能的效果不作任何保证。
220 |
221 |
222 |
223 |
224 |
225 | 例1. 在启动软件时载入配置文件MySet.ini内的配置。
226 |
227 | 例如您想要在启动软件的同时自动读取MySet.ini内的配置,可在命令提示符等工具内输入如下命令行:
228 | noMeiryoUI MySet.ini
229 |
230 |
231 | 例2. 直接将系统字体设定为 Your Settings.ini 文件内保存的配置。
232 |
233 | 例如您想直接将系统字体按 Your Settings.ini 文件内保存的配置进行设定,可在命令提示符等工具内输入如下命令行:
234 | noMeiryoUI "Your Settings.ini" -set
235 |
例3. 在软件启动一分钟后将系统字体设定为 restore Settings.ini 文件内保存的配置。
236 |
237 | 例如您想在软件启动一分钟后将系统字体按 restore Settings.ini 文件内保存的配置进行设定,可在命令提示符等工具内输入如下命令行:
238 | noMeiryoUI "Your Settings.ini" -set -delay 60
239 |
240 |
241 |
242 |
243 |
244 |
245 |
246 |
--------------------------------------------------------------------------------
/help/zh-cn/contents/03.html:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | 3.更新记录
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | 3.更新记录
22 |
23 |
24 |
2025/04/19 版本 3.4.0
25 |
26 | 添加 -delay 启动参数以应对某些情况下系统会主动对系统字体进行更改的情形,届时可用该参数以便在系统更改字体后再用软件设置将之覆盖。
27 | 现在Windows 11 22H2以后的系统也可以在确认警告后更改标题栏的字体了。同时为该功能添加 -force 启动参数。该功能尚处于测试阶段。
28 |
29 |
30 |
31 |
32 |
33 |
34 |
2024/03/05 版本 3.3.1
35 |
36 | 更新了简体中文(中国)的翻译。(zh-CN.lng,zh-CN.chm)
37 | 感谢 kingofotaku。
38 | 更新了繁体中文(台湾)的翻译。(zh-TW.lng)
39 | 感谢 abc0922001。
40 |
41 |
42 |
43 |
44 |
45 |
2024/02/25 版本 3.3.0
46 |
47 | 现在您可以修改本软件的字体了。
48 | 此外,还修改了显示语言为日语时的默认字体。
49 | 为防止意外错误,现在您可以选择是否允许多重启动本软件。
50 | 更新了繁体中文(台湾)的翻译。(zh-TW.lng)
51 | 感谢 jay900604。
52 |
53 |
54 |
55 |
56 |
57 |
58 |
2023/09/03 版本 3.2.1
59 |
60 | 更新了繁体中文(台湾)的翻译。(zh-TW.lng)
61 | 感谢 abc0922001。
62 |
64 |
65 |
66 |
67 |
68 |
69 |
2023/08/27 版本 3.2.0
70 |
71 | 使软件语言跟随Windows显示语言
72 | 修正了在诸如Windows 11 记事本等程序中出现框架线条等的显示错误
73 | 由于以上修正而将最低支持版本提升至 Windows Vista。
74 | 现在,在导入字体配置时将会使各字体的大小设置为系统的初始值,以适应当前界面的DPI。
75 | 修正了当更改标题栏的字体大小时导致标题栏可能因适应字体而变得过高的问题。
76 |
77 |
78 |
79 |
80 |
81 |
2022/09/26 版本 3.1.0
82 |
83 | 采用 Visual C++ 2008 进行构建以避免杀毒软件误报。
84 |
85 |
86 |
87 |
88 |
89 |
2022/09/21 版本 3.1.0
90 |
91 | 在 Windows 11 2022 Update(22H2) 中,出于避免在将标题栏设置为透明时产生问题,故强制将标题栏的字体固定为系统默认字体。
92 | 出于上述原因,如今在 Windows 11 2022 Update(22H2) 中已无法选择并更改标题栏字体。。
93 | 在 Windows 11 2022 Update 中使系统版本得以正确显示。
94 |
95 |
96 |
97 |
98 |
99 |
2022/06/26 版本 3.0.0.1
100 |
101 | 加入了由 Luke Luo 提供的简体中文翻译及新的字体显示设定
102 |
103 |
104 |
105 |
106 |
107 |
2022/02/13 版本 3.0.0
108 |
109 | 现在,配置文件中的字体大小以 pt 为单位。
110 | 因此,第二版和第三版程序的字体配置文件不可互相替代。
111 | 现在,语言资源文件用 UTF-8 编码。
112 | 现在,设置按钮的文字更易于理解。
113 |
114 |
115 |
116 |
117 |
118 |
119 |
2021/11/28 版本 2.42(目前只在 GitHub 上发布)
120 |
121 | 添加了 Windows 11 的系统默认字体。
122 | 现在,Windows 11 的版本号会正常显示了。
123 |
124 |
125 |
126 |
127 |
128 |
129 |
2021/01/10 版本 2.41
130 |
131 | 现在能够读取各字体下所有的字形了。
132 | 支持显示Windows 10 Version 20H2的版本号。
133 |
134 |
135 |
136 |
137 |
138 |
139 |
2020/07/26 版本 2.40.2
140 |
143 |
144 |
145 |
146 |
147 |
148 |
2020/06/28 版本 2.40.1
149 |
152 |
153 |
154 |
155 |
156 |
157 |
2020/05/31 版本 2.40
158 |
159 | 新增了应用按钮。当点击该按钮后将应用设定且不关闭程序。
160 | 将主界面分成全局设定与单项设定两组。
161 | 修复了无法读取当前目录内配置文件的错误。
162 |
163 |
164 |
165 |
166 |
167 |
168 |
2020/01/13 版本 2.36
169 |
170 | 当点击统一设定后将自动关闭程序。
171 | 添加葡萄牙语(巴西)翻译。
172 | 添加繁体中文翻译。
173 | 包括2.35版本中忘记加入的简体中文翻译。
174 |
175 |
176 |
177 |
178 |
179 |
2018/04/28 版本 2.35
180 |
181 | 当Windows系统显示语言与区域设置不同时,以显示语言来决定软件语言。
182 | 增大软件各处的字体大小。
183 | 添加了韩语的界面翻译。感谢deVbug的协助。
184 | 支持韩语字体名替换(仅限韩语。)
185 | 改进了简体中文的翻译品质。感谢kingofotaku的协助
186 |
187 |
188 |
189 |
190 |
191 |
2017/06/03 版本 2.34
192 |
193 | 启动后主界面将会在屏幕中心出现。
194 | 字体选择对话框将出现在主界面的上部。
195 | 帮助文档将会在主界面的左上方打开。
196 | 修复简体中文帮助文档内字体显示异常。
197 |
198 |
199 |
200 |
201 |
202 |
2017/05/14 版本 2.33
203 |
204 | 在Windows 10系统上运行时可显示详细系统版本信息。
205 | 恢复系统默认字体功能支持英文版。
206 | 在语言文件中添加默认字体及字符集。
207 | 新增根据系统区域设置选择相对应的语言及帮助文档。今后新增翻译时将无需修改程序,并可单独发布语言文件。
208 |
209 |
210 |
211 |
212 |
213 |
2016/10/10 版本 2.32
214 |
215 | 添加了简体中文版帮助文档。感谢立花 月下的协助。
216 |
217 | 恢复系统默认字体功能支持简体中文版。
218 |
219 | 变更源文件中文件夹的结构,以便未来添加针对更多语言的翻译。
220 |
221 |
222 |
223 |
224 |
225 |
226 |
227 |
2016/09/19 版本 2.31
228 |
229 | 添加了简体中文的界面翻译。感谢立花 月下的协助。
230 |
231 | 帮助文档已变更为HTML格式。
232 |
233 | 在版本信息中添加了翻译者名单。
234 |
235 |
236 |
237 |
238 |
239 |
240 |
241 |
2016/08/19 版本 2.30
242 |
243 | 多语言预览版。
244 |
245 |
246 |
247 |
248 |
249 |
250 |
251 | 更早的版本更新记录请参阅日文版帮助文档。
252 |
253 |
254 |
255 |
256 |
257 |
--------------------------------------------------------------------------------
/help/zh-cn/contents/04.html:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | 4.许可与作者
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 | 4.许可与作者
21 |
22 |
23 |
著作权等
24 |
25 | 本软件是一款免费软件,庄子達彦拥有其著作权。
26 | 本软件不收取任何费用,且不限制用途。
27 | 如需转载,请尽可能事先通知作者一声。
28 |
29 | 作者在开发时已尽可能避免本软件在使用时出现意外,且作者不负担由于使用本软件所可能造成的一切后果。
30 |
31 | 若有任何建议&意见,欢迎通过下列联系方式与作者取得联系。
32 |
33 |
34 |
35 | 本软件之源文件遵照MIT许可发布(http://opensource.org/licenses/mit-license.php )。
36 |
37 |
38 |
39 |
40 |
48 |
49 |
50 |
51 |
译者
52 |
53 |
54 | 语言 译者
55 |
56 |
57 | 英语 庄子 達彦,mon-jai
58 |
59 |
60 | 简体中文 立花 月下,kingofotaku,icebeam030,LucidLoli,Luke Luo,HSSadboy
61 |
62 |
63 | 繁体中文 Austin Chang,HSSadboy,abc0922001,jay900604
64 |
65 |
66 | 韩语 deVbug
67 |
68 |
69 | 葡萄牙语(巴西) Claudio Mantovani Vieira
70 |
71 |
72 | 日语 庄子 達彦
73 |
74 |
75 |
76 |
77 |
78 |
79 |
--------------------------------------------------------------------------------
/help/zh-cn/contents/FontSel.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/zh-cn/contents/FontSel.PNG
--------------------------------------------------------------------------------
/help/zh-cn/contents/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/zh-cn/contents/icon.png
--------------------------------------------------------------------------------
/help/zh-cn/contents/noMeiryoUI.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/zh-cn/contents/noMeiryoUI.PNG
--------------------------------------------------------------------------------
/help/zh-cn/contents/noMeiryoUI.css:
--------------------------------------------------------------------------------
1 | /*
2 | noMeiryoUI (C) 2005,2012-2016 Tatsuhiko Shoji
3 | The sources for noMeiryoUI are distributed under the MIT open source license
4 | */
5 | body{
6 | background-color:white;
7 | color:black;
8 | line-height:1.2em;
9 | }
10 | div.chapter{
11 | background-color:white;
12 | color:black;
13 | margin:0.5em;
14 | padding:0.5em;
15 | }
16 | h1{
17 | font-size: 1.3em;
18 | line-height:1.2em;
19 | }
20 | h2 {
21 | font-size: 1.2em;
22 | }
23 |
24 | h3 {
25 | font-size: 1.1em;
26 | /* border-bottom-width:2px; */
27 | border-style:none none double none;
28 | }
29 | span.button {
30 | background-color:white;
31 | color:black;
32 | margin:1px;
33 | padding:1px;
34 | border-style:outset;
35 | border-width:2px;
36 | }
37 |
38 | span.check {
39 | background-color:white;
40 | color:black;
41 | margin:1px;
42 | padding:1px;
43 | border-style:inset;
44 | border-width:2px;
45 | }
46 |
--------------------------------------------------------------------------------
/help/zh-cn/help_zh-cn.hhp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/zh-cn/help_zh-cn.hhp
--------------------------------------------------------------------------------
/help/zh-tw/ToC.hhc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/zh-tw/ToC.hhc
--------------------------------------------------------------------------------
/help/zh-tw/contents/01.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/zh-tw/contents/01.html
--------------------------------------------------------------------------------
/help/zh-tw/contents/02.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/zh-tw/contents/02.html
--------------------------------------------------------------------------------
/help/zh-tw/contents/03.html:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | 3.版本歷程記錄
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | 3.版本歷程記錄
22 |
23 |
24 |
2025/04/19 版本 3.4.0
25 |
26 | Add -delay option to prevent system changes system fonts in some reasons.
27 | On Windows 11 22H2 and later, add some settings to change title bar font. These options are experimental.
28 |
29 |
30 |
31 |
32 |
33 |
34 |
2024/03/05 版本 3.3.1
35 |
36 |
37 |
38 |
39 |
40 |
2024/02/25 版本 3.3.0
41 |
42 |
43 |
44 |
45 |
46 |
2023/09/03 版本 3.2.1
47 |
48 |
49 |
50 |
51 |
52 |
2023/08/27 版本 3.2.0
53 |
54 |
55 |
56 |
57 |
58 |
2022/09/26 版本 3.1.0.1
59 |
60 |
61 |
62 |
63 |
64 |
2022/09/26 版本 3.1.0
65 |
66 |
67 |
68 |
69 |
70 |
2022/02/13 版本 3.0.0
71 |
72 |
73 |
74 |
75 |
76 |
2021/01/10 版本 2.41
77 |
78 |
79 |
80 |
81 |
82 |
2020/07/26 版本 2.40.2
83 |
2020/06/28 版本 2.40.1
84 |
2020/05/31 版本 2.40
85 |
86 | 新增套用按鈕。
87 | 已對控制項目分組。
88 | 修正了指定設定檔時無法使用預設路徑的問題。
89 |
90 |
91 |
92 |
93 |
94 |
95 |
2020/01/13 版本 2.36
96 |
97 | 設定全部字型後自動退出應用程式。
98 | 添加巴西葡萄牙文翻譯。
99 | 添加繁體中文翻譯。
100 | 包含在版本 2.35 忘記加入的簡體中文翻譯。
101 |
102 |
103 |
104 |
105 |
106 |
2018/04/28 版本 2.35
107 |
108 | 現在程式顯示語言由系統顯示語言決定,而不是系統地區。
109 | 字型大小比先前版本更大了。
110 | 感謝deVbug的協作,添加了?文翻譯。
111 | 添加了韓文字型名稱替代(僅限韓文。)
112 | 感謝 kingofotaku 的協作幫助改進簡體中文翻譯。
113 |
114 |
115 |
116 |
117 |
118 |
2017/06/03 版本 2.34
119 |
120 | 現在主視窗會在啟動時顯示在滑鼠游標所在的顯示器中央。
121 | 字型選取對話方塊現在會顯示在主視窗的上方。
122 | 說明檔案現在會顯示在滑鼠游標所在的顯示器中央。
123 | 修正了簡體中文說明檔案的字型問題。
124 |
125 |
126 |
127 |
128 |
129 |
2017/05/14 版本 2.33
130 |
131 | 在 Windows10 上添加了詳細版本資訊。
132 | 預設選單現可用於英文版 Windows。
133 | 預設字型字集項目已經添加到語言檔案。
134 | 可以透過 Windows 地區設定來偵測語言和說明檔案。
135 |
136 |
137 |
138 |
139 |
140 |
2016/10/10 版本 2.32
141 |
142 | 添加了簡體中文說明檔案。感謝立花 月下。
143 |
144 | 預設選單現在可以在簡體中文 Windows 下啟動了。
145 |
146 | 為了日後加入其他語言,原始程式檔的資料夾配置已經變更。
147 |
148 |
149 |
150 |
151 |
152 |
153 |
154 |
2016/09/19 版本 2.31
155 |
156 | 添加了簡體中文的訊息。感謝立花 月下。
157 |
158 | 說明檔案已變更為 HTML 格式。
159 |
160 | 添加了翻譯者參與名單。
161 |
162 |
163 |
164 |
165 |
166 |
167 |
168 |
2016/08/19 版本 2.30
169 |
170 | 預覽多語言版本。
171 |
172 |
173 |
174 |
175 |
176 |
177 |
178 | 要了解更早版本的變更,請參閱日文版的說明檔案。
179 |
180 |
181 |
182 |
183 |
184 |
--------------------------------------------------------------------------------
/help/zh-tw/contents/04.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/zh-tw/contents/04.html
--------------------------------------------------------------------------------
/help/zh-tw/contents/FontSel.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/zh-tw/contents/FontSel.PNG
--------------------------------------------------------------------------------
/help/zh-tw/contents/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/zh-tw/contents/icon.png
--------------------------------------------------------------------------------
/help/zh-tw/contents/noMeiryoUI.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/zh-tw/contents/noMeiryoUI.PNG
--------------------------------------------------------------------------------
/help/zh-tw/contents/noMeiryoUI.css:
--------------------------------------------------------------------------------
1 | /*
2 | noMeiryoUI (C) 2005,2012-2016 Tatsuhiko Shoji
3 | The sources for noMeiryoUI are distributed under the MIT open source license
4 | */
5 | body{
6 | background-color:white;
7 | color:black;
8 | line-height:1.2em;
9 | }
10 | div.chapter{
11 | background-color:white;
12 | color:black;
13 | margin:0.5em;
14 | padding:0.5em;
15 | }
16 | h1{
17 | font-size: 1.3em;
18 | line-height:1.2em;
19 | }
20 | h2 {
21 | font-size: 1.2em;
22 | }
23 |
24 | h3 {
25 | font-size: 1.1em;
26 | /* border-bottom-width:2px; */
27 | border-style:none none double none;
28 | }
29 | span.button {
30 | background-color:white;
31 | color:black;
32 | margin:1px;
33 | padding:1px;
34 | border-style:outset;
35 | border-width:2px;
36 | }
37 |
38 | span.check {
39 | background-color:white;
40 | color:black;
41 | margin:1px;
42 | padding:1px;
43 | border-style:inset;
44 | border-width:2px;
45 | }
46 |
--------------------------------------------------------------------------------
/help/zh-tw/help_zh-tw.hhp:
--------------------------------------------------------------------------------
1 | [OPTIONS]
2 | Compatibility=1.1 or later
3 | Compiled file=zh-TW.chm
4 | Contents file=ToC.hhc
5 | Default topic=contents\02.html
6 | Display compile progress=No
7 | Language=0x404
8 | Title=No!! Meiryo UI Help
9 |
10 |
11 | [FILES]
12 | contents\01.html
13 | contents\02.html
14 | contents\03.html
15 | contents\04.html
16 |
17 |
--------------------------------------------------------------------------------
/lang/default.lng:
--------------------------------------------------------------------------------
1 | ; noMeiryoUI (C) 2005,2012-2025 Tatsuhiko Shoji,mon-jai
2 | ; The sources for noMeiryoUI are distributed under the MIT open source license
3 |
4 | ;In RESOURCE section,
5 | ;FONT_FACE key is dialog font name, other key is message.
6 | [RESOURCE]
7 | FONT_FACE=System
8 | FONT_CHARSET=0
9 | TITLE=No!! Meiryo UI
10 | MENU_FILE=&File
11 | MENU_FILE_LOAD=L&oad font settings...
12 | MENU_FILE_SAVE=S&ave font settings...
13 | MENU_FILE_SET_QUIT=&Set system fonts and quit
14 | MENU_FILE_QUIT=E&xit
15 | MENU_PRESET=&Preset
16 | MENU_PRESET_8=Windows 8/8.1
17 | MENU_PRESET_10=Windows 10
18 | MENU_TOOLS=&Tools
19 | MENU_TOOLS_CHOICE_APP_FONT=Choice No!! Meiryo UI application &font
20 | MENU_TOOLS_THREAD=Set system fonts in separated thread
21 | MENU_TOOLS_SEVEN=Calculate font size same as Windows 7
22 | MENU_TOOLS_NO_MULTI_RUN=&Don't run multiply
23 | MENU_FORCE_TITLE_SET=F&orce title bar font change enabled
24 | MENU_HELP=&Help
25 | MENU_HELP_HELP=&Help
26 | MENU_HELP_ABOUT=&About No!! Meiryo UI
27 | DLG_ALL_GROUP=All font setting
28 | DLG_INDIVIDUAL_GROUP=Individual font setting
29 | DLG_ALL_FONT=All fonts
30 | DLG_TITLE_BAR=Title bar
31 | DLG_ICON=Icon
32 | DLG_PALETTE=Palette title
33 | DLG_HINT=Hint
34 | DLG_MESSAGE=Message box
35 | DLG_MENU=Menu
36 | DLG_SELECT=Select...
37 | DLG_SET_ALL=Apply all and exit
38 | DLG_SET=Apply and exit
39 | DLG_EXIT=Exit without Apply
40 | DLG_APPLY=Apply
41 | DLG_FONT_SEL=Font Selection
42 | DLG_FONT_NAME=&Font name
43 | DLG_STYLE=St&yle
44 | DLG_SIZE=&Size
45 | DLG_CHECK_BOLD=&Bold
46 | DLG_CHECK_ITALIC=&Italic
47 | DLG_UNDERLINE=&Under line
48 | DLG_STRIKE=S&trikethrough
49 | DLG_CHARSET=&Character set
50 | DLG_OK=OK
51 | DLG_CANCEL=Cancel
52 | DLG_CHARSET_ANSI=Ansi
53 | DLG_CHARSET_BALTIC=Baltic
54 | DLG_CHARSET_BIG5=Traditional Chinese
55 | DLG_CHARSET_DEFAULT=Default
56 | DLG_CHARSET_EASTEUROPE=East Europe
57 | DLG_CHARSET_GB2312=Simplified Chinese
58 | DLG_CHARSET_GREEK=Greek
59 | DLG_CHARSET_HANGUL=Hangul
60 | DLG_CHARSET_MAC=Mac
61 | DLG_CHARSET_OEM=OEM
62 | DLG_CHARSET_RUSSIAN=Russian
63 | DLG_CHARSET_SHIFTJIS=Japanese
64 | DLG_CHARSET_SYMBOL=Symbol
65 | DLG_CHARSET_TURKISH=Turkish
66 | DLG_CHARSET_VIETNAMESE=Vietnamese
67 | DLG_CHARSET_JOHAB=Johab Korean
68 | DLG_CHARSET_ARABIC=Arabic
69 | DLG_CHARSET_HEBREW=Hebrew
70 | DLG_CHARSET_THAI=Thai
71 | DLG_STYLE_NORMAL=Normal
72 | DLG_STYLE_ITALIC=Italic
73 | DLG_STYLE_BOLD=Bold
74 | DLG_STYLE_BOLD_ITALIC=Bold Italic
75 | DLG_STYLE_MEDIUM=Medium
76 | DLG_STYLE_SEMI_BOLD=Semibold
77 | DLG_STYLE_BOOK=Book
78 | DLG_STYLE_OBLIQUE=Oblique
79 | DLG_STYLE_LIGHT=Light
80 | DLG_STYLE_EXTRA_LIGHT=ExtraLight
81 | DLG_STYLE_SEMI_LIGHT=SemiLight
82 | DLG_STYLE_SLANTED=Slanted
83 | MSG_SETTING_FILE=Font settings file(*.ini)
84 | MSG_ALL_FILE=All file(*.*)
85 | MSG_LOAD_FAIL=Font settings file load failed.
86 | MSG_SAVE_FAIL=Font settings file save failed.
87 | MSG_ERROR=Error
88 | MSG_ABOUT=About No!! Meiryo UI
89 | MSG_NO_FONT=Please select font.
90 | MSG_NO_STYLE=Please select style.
91 | MSG_NO_SIZE=Please select size.
92 | MSG_NO_CHARSET=Please select charset.
93 | MSG_WARNING=Warning
94 | MSG_WIN11_22H2RESTRICTION=On Windows 11 2022 Update(22H2) and later due to Windows reason title bar font can't change.
95 | MSG_FORCE_TITLE_SET=Changeing titlebar font may cause some troubles.
96 | MSG_TRANSLATE=Tatsuhiko Shoji(Tatsu),mon-jai
97 |
98 |
99 | [PRESET]
100 | ; Preset menu setting.
101 | ; Write OS's initial font name and font size.
102 | ; And un comment KEY=VALUE .
103 |
104 | ; For Windows 8.x
105 | ; Font face
106 | CAPTION_FACE_8=Segoe UI
107 | ICON_FACE_8=Segoe UI
108 | SMALLCAPTION_FACE_8=Segoe UI
109 | STATUS_FACE_8=Segoe UI
110 | MESSAGE_FACE_8=Segoe UI
111 | MENU_FACE_8=Segoe UI
112 |
113 | ; Font size
114 | CAPTION_SIZE_8=11
115 | ICON_SIZE_8=9
116 | SMALLCAPTION_SIZE_8=11
117 | STATUS_SIZE_8=9
118 | MESSAGE_SIZE_8=9
119 | MENU_SIZE_8=9
120 |
121 | ; Font charset
122 | CAPTION_CHARSET_8=1
123 | ICON_CHARSET_8=1
124 | SMALLCAPTION_CHARSET_8=1
125 | STATUS_CHARSET_8=1
126 | MESSAGE_CHARSET_8=1
127 | MENU_CHARSET_8=1
128 |
129 | ; For Windows 10
130 | ; Font face
131 | CAPTION_FACE_10=Segoe UI
132 | ICON_FACE_10=Segoe UI
133 | SMALLCAPTION_FACE_10=Segoe UI
134 | STATUS_FACE_10=Segoe UI
135 | MESSAGE_FACE_10=Segoe UI
136 | MENU_FACE_10=Segoe UI
137 |
138 | ; Font size
139 | CAPTION_SIZE_10=9
140 | ICON_SIZE_10=9
141 | SMALLCAPTION_SIZE_10=9
142 | STATUS_SIZE_10=9
143 | MESSAGE_SIZE_10=9
144 | MENU_SIZE_10=9
145 |
146 | ; Font charset
147 | CAPTION_CHARSET_10=1
148 | ICON_CHARSET_10=1
149 | SMALLCAPTION_CHARSET_10=1
150 | STATUS_CHARSET_10=1
151 | MESSAGE_CHARSET_10=1
152 | MENU_CHARSET_10=1
153 |
154 | ; For Windows 11
155 | ; Font face
156 | CAPTION_FACE_11=Segoe UI
157 | ICON_FACE_11=Segoe UI
158 | SMALLCAPTION_FACE_11=Segoe UI
159 | STATUS_FACE_11=Segoe UI
160 | MESSAGE_FACE_11=Segoe UI
161 | MENU_FACE_11=Segoe UI
162 |
163 | ; Font size
164 | CAPTION_SIZE_11=9
165 | ICON_SIZE_11=9
166 | SMALLCAPTION_SIZE_11=9
167 | STATUS_SIZE_11=9
168 | MESSAGE_SIZE_11=9
169 | MENU_SIZE_11=9
170 |
171 | ; Font charset
172 | CAPTION_CHARSET_11=1
173 | ICON_CHARSET_11=1
174 | SMALLCAPTION_CHARSET_11=1
175 | STATUS_CHARSET_11=1
176 | MESSAGE_CHARSET_11=1
177 | MENU_CHARSET_11=1
178 |
--------------------------------------------------------------------------------
/lang/en.lng:
--------------------------------------------------------------------------------
1 | ; noMeiryoUI (C) 2005,2012-2025 Tatsuhiko Shoji,mon-jai
2 | ; The sources for noMeiryoUI are distributed under the MIT open source license
3 |
4 | ;In RESOURCE section,
5 | ;FONT_FACE key is dialog font name, other key is message.
6 | [RESOURCE]
7 | FONT_FACE=System
8 | FONT_CHARSET=0
9 | TITLE=No!! Meiryo UI
10 | MENU_FILE=&File
11 | MENU_FILE_LOAD=L&oad font settings...
12 | MENU_FILE_SAVE=S&ave font settings...
13 | MENU_FILE_SET_QUIT=&Set system fonts and quit
14 | MENU_FILE_QUIT=E&xit
15 | MENU_PRESET=&Preset
16 | MENU_PRESET_8=Windows 8/8.1
17 | MENU_PRESET_10=Windows 10
18 | MENU_TOOLS=&Tools
19 | MENU_TOOLS_CHOICE_APP_FONT=Choice No!! Meiryo UI application &font
20 | MENU_TOOLS_THREAD=Set system fonts in separated thread
21 | MENU_TOOLS_SEVEN=Calculate font size same as Windows 7
22 | MENU_TOOLS_NO_MULTI_RUN=&Don't run multiply
23 | MENU_FORCE_TITLE_SET=F&orce title bar font change enabled
24 | MENU_HELP=&Help
25 | MENU_HELP_HELP=&Help
26 | MENU_HELP_ABOUT=&About No!! Meiryo UI
27 | DLG_ALL_GROUP=All font setting
28 | DLG_INDIVIDUAL_GROUP=Individual font setting
29 | DLG_ALL_FONT=All fonts
30 | DLG_TITLE_BAR=Title bar
31 | DLG_ICON=Icon
32 | DLG_PALETTE=Palette title
33 | DLG_HINT=Hint
34 | DLG_MESSAGE=Message box
35 | DLG_MENU=Menu
36 | DLG_SELECT=Select...
37 | DLG_SET_ALL=Apply all and exit
38 | DLG_SET=Apply and exit
39 | DLG_EXIT=Exit without Apply
40 | DLG_APPLY=Apply
41 | DLG_FONT_SEL=Font Selection
42 | DLG_FONT_NAME=&Font name
43 | DLG_STYLE=St&yle
44 | DLG_SIZE=&Size
45 | DLG_CHECK_BOLD=&Bold
46 | DLG_CHECK_ITALIC=&Italic
47 | DLG_UNDERLINE=&Under line
48 | DLG_STRIKE=S&trikethrough
49 | DLG_CHARSET=&Character set
50 | DLG_OK=OK
51 | DLG_CANCEL=Cancel
52 | DLG_CHARSET_ANSI=Ansi
53 | DLG_CHARSET_BALTIC=Baltic
54 | DLG_CHARSET_BIG5=Traditional Chinese
55 | DLG_CHARSET_DEFAULT=Default
56 | DLG_CHARSET_EASTEUROPE=East Europe
57 | DLG_CHARSET_GB2312=Simplified Chinese
58 | DLG_CHARSET_GREEK=Greek
59 | DLG_CHARSET_HANGUL=Hangul
60 | DLG_CHARSET_MAC=Mac
61 | DLG_CHARSET_OEM=OEM
62 | DLG_CHARSET_RUSSIAN=Russian
63 | DLG_CHARSET_SHIFTJIS=Japanese
64 | DLG_CHARSET_SYMBOL=Symbol
65 | DLG_CHARSET_TURKISH=Turkish
66 | DLG_CHARSET_VIETNAMESE=Vietnamese
67 | DLG_CHARSET_JOHAB=Johab Korean
68 | DLG_CHARSET_ARABIC=Arabic
69 | DLG_CHARSET_HEBREW=Hebrew
70 | DLG_CHARSET_THAI=Thai
71 | DLG_STYLE_NORMAL=Normal
72 | DLG_STYLE_ITALIC=Italic
73 | DLG_STYLE_BOLD=Bold
74 | DLG_STYLE_BOLD_ITALIC=Bold Italic
75 | DLG_STYLE_MEDIUM=Medium
76 | DLG_STYLE_SEMI_BOLD=Semibold
77 | DLG_STYLE_BOOK=Book
78 | DLG_STYLE_OBLIQUE=Oblique
79 | DLG_STYLE_LIGHT=Light
80 | DLG_STYLE_EXTRA_LIGHT=ExtraLight
81 | DLG_STYLE_SEMI_LIGHT=SemiLight
82 | DLG_STYLE_SLANTED=Slanted
83 | MSG_SETTING_FILE=Font settings file(*.ini)
84 | MSG_ALL_FILE=All file(*.*)
85 | MSG_LOAD_FAIL=Font settings file load failed.
86 | MSG_SAVE_FAIL=Font settings file save failed.
87 | MSG_ERROR=Error
88 | MSG_ABOUT=About No!! Meiryo UI
89 | MSG_NO_FONT=Please select font.
90 | MSG_NO_STYLE=Please select style.
91 | MSG_NO_SIZE=Please select size.
92 | MSG_NO_CHARSET=Please select charset.
93 | MSG_WARNING=Warning
94 | MSG_WIN11_22H2RESTRICTION=On Windows 11 2022 Update(22H2) and later due to Windows reason title bar font can't change.
95 | MSG_FORCE_TITLE_SET=Changeing titlebar font may cause some troubles.
96 | MSG_TRANSLATE=Tatsuhiko Shoji(Tatsu),mon-jai
97 |
98 |
99 | [PRESET]
100 | ; Preset menu setting.
101 | ; Write OS's initial font name and font size.
102 | ; And un comment KEY=VALUE .
103 |
104 | ; For Windows 8.x
105 | ; Font face
106 | CAPTION_FACE_8=Segoe UI
107 | ICON_FACE_8=Segoe UI
108 | SMALLCAPTION_FACE_8=Segoe UI
109 | STATUS_FACE_8=Segoe UI
110 | MESSAGE_FACE_8=Segoe UI
111 | MENU_FACE_8=Segoe UI
112 |
113 | ; Font size
114 | CAPTION_SIZE_8=11
115 | ICON_SIZE_8=9
116 | SMALLCAPTION_SIZE_8=11
117 | STATUS_SIZE_8=9
118 | MESSAGE_SIZE_8=9
119 | MENU_SIZE_8=9
120 |
121 | ; Font charset
122 | CAPTION_CHARSET_8=1
123 | ICON_CHARSET_8=1
124 | SMALLCAPTION_CHARSET_8=1
125 | STATUS_CHARSET_8=1
126 | MESSAGE_CHARSET_8=1
127 | MENU_CHARSET_8=1
128 |
129 | ; For Windows 10
130 | ; Font face
131 | CAPTION_FACE_10=Segoe UI
132 | ICON_FACE_10=Segoe UI
133 | SMALLCAPTION_FACE_10=Segoe UI
134 | STATUS_FACE_10=Segoe UI
135 | MESSAGE_FACE_10=Segoe UI
136 | MENU_FACE_10=Segoe UI
137 |
138 | ; Font size
139 | CAPTION_SIZE_10=9
140 | ICON_SIZE_10=9
141 | SMALLCAPTION_SIZE_10=9
142 | STATUS_SIZE_10=9
143 | MESSAGE_SIZE_10=9
144 | MENU_SIZE_10=9
145 |
146 | ; Font charset
147 | CAPTION_CHARSET_10=1
148 | ICON_CHARSET_10=1
149 | SMALLCAPTION_CHARSET_10=1
150 | STATUS_CHARSET_10=1
151 | MESSAGE_CHARSET_10=1
152 | MENU_CHARSET_10=1
153 |
154 | ; For Windows 11
155 | ; Font face
156 | CAPTION_FACE_11=Segoe UI
157 | ICON_FACE_11=Segoe UI
158 | SMALLCAPTION_FACE_11=Segoe UI
159 | STATUS_FACE_11=Segoe UI
160 | MESSAGE_FACE_11=Segoe UI
161 | MENU_FACE_11=Segoe UI
162 |
163 | ; Font size
164 | CAPTION_SIZE_11=9
165 | ICON_SIZE_11=9
166 | SMALLCAPTION_SIZE_11=9
167 | STATUS_SIZE_11=9
168 | MESSAGE_SIZE_11=9
169 | MENU_SIZE_11=9
170 |
171 | ; Font charset
172 | CAPTION_CHARSET_11=1
173 | ICON_CHARSET_11=1
174 | SMALLCAPTION_CHARSET_11=1
175 | STATUS_CHARSET_11=1
176 | MESSAGE_CHARSET_11=1
177 | MENU_CHARSET_11=1
178 |
--------------------------------------------------------------------------------
/lang/ja-JP.lng:
--------------------------------------------------------------------------------
1 | ; noMeiryoUI (C) 2005,2012-2025 Tatsuhiko Shoji
2 | ; The sources for noMeiryoUI are distributed under the MIT open source license
3 |
4 | ;In RESOURCE section,
5 | ;FONT_FACE key is dialog font name, other key is message.
6 | [RESOURCE]
7 | FONT_FACE=BIZ UDPゴシック
8 | FONT_CHARSET=1
9 | TITLE=Meiryo UIも大っきらい!!
10 | MENU_FILE=ファイル(&F)
11 | MENU_FILE_LOAD=フォント設定を読み込む(&O)...
12 | MENU_FILE_SAVE=フォント設定を保存する(&A)...
13 | MENU_FILE_SET_QUIT=フォントを設定して終了(&S)
14 | MENU_FILE_QUIT=終了(&X)
15 | MENU_PRESET=プリセット(&P)
16 | MENU_PRESET_8=Windows 8/8.1
17 | MENU_PRESET_10=Windows 10
18 | MENU_TOOLS=ツール(&T)
19 | MENU_TOOLS_CHOICE_APP_FONT=Meiryo UIも大っきらい!! のフォントを選択する(&F)
20 | MENU_TOOLS_THREAD=別スレッドでフォントを変更する(&A)
21 | MENU_TOOLS_SEVEN=フォントサイズをWindows 7と同様に扱う(&7)
22 | MENU_TOOLS_NO_MULTI_RUN=二重起動をしない(&D)
23 | MENU_FORCE_TITLE_SET=タイトルバーのフォントを変更可能にする(&O)
24 | MENU_HELP=ヘルプ(&H)
25 | MENU_HELP_HELP=ヘルプの表示(&C)
26 | MENU_HELP_ABOUT=バージョン情報(&A)...
27 | DLG_ALL_GROUP=全体設定
28 | DLG_INDIVIDUAL_GROUP=個別設定
29 | DLG_ALL_FONT=すべてのフォント
30 | DLG_TITLE_BAR=タイトルバー
31 | DLG_ICON=アイコン
32 | DLG_PALETTE=パレットタイトル
33 | DLG_HINT=ヒント
34 | DLG_MESSAGE=メッセージボックス
35 | DLG_MENU=メニュー/選択項目
36 | DLG_SELECT=選択...
37 | DLG_SET_ALL=一括設定して終了
38 | DLG_SET=設定して終了
39 | DLG_EXIT=設定せず終了
40 | DLG_APPLY=適用
41 | DLG_FONT_SEL=フォント選択
42 | DLG_FONT_NAME=フォント名(&F):
43 | DLG_STYLE=スタイル(&Y):
44 | DLG_SIZE=サイズ(&S):
45 | DLG_CHECK_BOLD=太字(&B)
46 | DLG_CHECK_ITALIC=斜体(&I)
47 | DLG_UNDERLINE=下線(&U)
48 | DLG_STRIKE=取り消し線(&T)
49 | DLG_CHARSET=文字セット(&C):
50 | DLG_OK=OK
51 | DLG_CANCEL=キャンセル
52 | DLG_CHARSET_ANSI=欧文
53 | DLG_CHARSET_BALTIC=バルト諸国言語
54 | DLG_CHARSET_BIG5=繁体字
55 | DLG_CHARSET_DEFAULT=デフォルト言語
56 | DLG_CHARSET_EASTEUROPE=東ヨーロッパ言語
57 | DLG_CHARSET_GB2312=簡体字
58 | DLG_CHARSET_GREEK=ギリシャ文字
59 | DLG_CHARSET_HANGUL=韓国語
60 | DLG_CHARSET_MAC=Mac文字セット
61 | DLG_CHARSET_OEM=OEM文字セット
62 | DLG_CHARSET_RUSSIAN=ロシア語
63 | DLG_CHARSET_SHIFTJIS=日本語
64 | DLG_CHARSET_SYMBOL=シンボル
65 | DLG_CHARSET_TURKISH=トルコ語
66 | DLG_CHARSET_VIETNAMESE=ベトナム語
67 | DLG_CHARSET_JOHAB=韓国語(組合型)
68 | DLG_CHARSET_ARABIC=アラビア語
69 | DLG_CHARSET_HEBREW=ヘブライ語
70 | DLG_CHARSET_THAI=タイ語
71 | DLG_STYLE_NORMAL=標準
72 | DLG_STYLE_ITALIC=斜体
73 | DLG_STYLE_BOLD=太字
74 | DLG_STYLE_BOLD_ITALIC=太字 斜体
75 | DLG_STYLE_MEDIUM=中
76 | DLG_STYLE_SEMI_BOLD=中太
77 | DLG_STYLE_BOOK=標準
78 | DLG_STYLE_OBLIQUE=斜体
79 | DLG_STYLE_LIGHT=細字
80 | DLG_STYLE_EXTRA_LIGHT=特細
81 | DLG_STYLE_SEMI_LIGHT=SemiLight
82 | DLG_STYLE_SLANTED=斜体
83 | MSG_SETTING_FILE=フォント設定ファイル(*.ini)
84 | MSG_ALL_FILE=すべてのファイル(*.*)
85 | MSG_LOAD_FAIL=フォント設定の読み込みに失敗しました。
86 | MSG_SAVE_FAIL=フォント設定の保存に失敗しました。
87 | MSG_ERROR=エラー
88 | MSG_ABOUT=Meiryo UIも大っきらい!!について
89 | MSG_NO_FONT=フォントを選択してください。
90 | MSG_NO_STYLE=スタイルを選択してください。
91 | MSG_NO_SIZE=文字サイズを選択してください。
92 | MSG_NO_CHARSET=文字セットを選択してください。
93 | MSG_WARNING=警告
94 | MSG_WIN11_22H2RESTRICTION=Windows 11 2022 Update(22H2)以降ではWindows側の事情によりタイトルバーのフォントを変更できません。
95 | MSG_FORCE_TITLE_SET=タイトルバーのフォントを変更するとトラブルが発生する可能性があります。
96 | MSG_TRANSLATE=Tatsuhiko Shoji(Tatsu)
97 |
98 | [PRESET]
99 | ; Preset menu setting.
100 | ; Write OS's initial font name and font size.
101 | ; And un comment KEY=VALUE .
102 |
103 | ; For Windows 8.x
104 | ; Font face
105 | CAPTION_FACE_8=Meiryo UI
106 | ICON_FACE_8=Meiryo UI
107 | SMALLCAPTION_FACE_8=Meiryo UI
108 | STATUS_FACE_8=Meiryo UI
109 | MESSAGE_FACE_8=Meiryo UI
110 | MENU_FACE_8=Meiryo UI
111 |
112 | ; Font size
113 | CAPTION_SIZE_8=11
114 | ICON_SIZE_8=9
115 | SMALLCAPTION_SIZE_8=11
116 | STATUS_SIZE_8=9
117 | MESSAGE_SIZE_8=9
118 | MENU_SIZE_8=9
119 |
120 | ; Font charset
121 | CAPTION_CHARSET_8=1
122 | ICON_CHARSET_8=1
123 | SMALLCAPTION_CHARSET_8=1
124 | STATUS_CHARSET_8=1
125 | MESSAGE_CHARSET_8=1
126 | MENU_CHARSET_8=1
127 |
128 | ; For Windows 10
129 | ; Font face
130 | CAPTION_FACE_10=Yu Gothic UI
131 | ICON_FACE_10=Yu Gothic UI
132 | SMALLCAPTION_FACE_10=Yu Gothic UI
133 | STATUS_FACE_10=Yu Gothic UI
134 | MESSAGE_FACE_10=Yu Gothic UI
135 | MENU_FACE_10=Yu Gothic UI
136 |
137 | ; Font size
138 | CAPTION_SIZE_10=9
139 | ICON_SIZE_10=9
140 | SMALLCAPTION_SIZE_10=9
141 | STATUS_SIZE_10=9
142 | MESSAGE_SIZE_10=9
143 | MENU_SIZE_10=9
144 |
145 | ; Font charset
146 | CAPTION_CHARSET_10=1
147 | ICON_CHARSET_10=1
148 | SMALLCAPTION_CHARSET_10=1
149 | STATUS_CHARSET_10=1
150 | MESSAGE_CHARSET_10=1
151 | MENU_CHARSET_10=1
152 |
153 | ; For Windows 11
154 | ; Font face
155 | CAPTION_FACE_11=Yu Gothic UI
156 | ICON_FACE_11=Yu Gothic UI
157 | SMALLCAPTION_FACE_11=Yu Gothic UI
158 | STATUS_FACE_11=Yu Gothic UI
159 | MESSAGE_FACE_11=Yu Gothic UI
160 | MENU_FACE_11=Yu Gothic UI
161 |
162 | ; Font size
163 | CAPTION_SIZE_11=9
164 | ICON_SIZE_11=9
165 | SMALLCAPTION_SIZE_11=9
166 | STATUS_SIZE_11=9
167 | MESSAGE_SIZE_11=9
168 | MENU_SIZE_11=9
169 |
170 | ; Font charset
171 | CAPTION_CHARSET_11=1
172 | ICON_CHARSET_11=1
173 | SMALLCAPTION_CHARSET_11=1
174 | STATUS_CHARSET_11=1
175 | MESSAGE_CHARSET_11=1
176 | MENU_CHARSET_11=1
177 |
--------------------------------------------------------------------------------
/lang/ko-KR.lng:
--------------------------------------------------------------------------------
1 | ; noMeiryoUI (C) 2005,2012-2025 Tatsuhiko Shoji
2 | ; The sources for noMeiryoUI are distributed under the MIT open source license
3 |
4 | ;In RESOURCE section,
5 | ;FONT_FACE key is dialog font name, other key is message.
6 | [RESOURCE]
7 | FONT_FACE=맑은 고딕
8 | FONT_CHARSET=129
9 | TITLE=No!! Meiryo UI
10 | MENU_FILE=파일(&F)
11 | MENU_FILE_LOAD=글꼴 설정 열기(&O)...
12 | MENU_FILE_SAVE=글꼴 설정 저장(&A)...
13 | MENU_FILE_SET_QUIT=시스템 글꼴 설정 및 종료(&S)
14 | MENU_FILE_QUIT=종료(&X)
15 | MENU_PRESET=프리셋(&P)
16 | MENU_PRESET_8=Windows 8/8.1
17 | MENU_PRESET_10=Windows 10
18 | MENU_TOOLS=도구(&T)
19 | MENU_TOOLS_CHOICE_APP_FONT=Choice No!! Meiryo UI application &font
20 | MENU_TOOLS_THREAD=개별 스레드에서 시스템 글꼴 설정(&A)
21 | MENU_TOOLS_SEVEN=Windows 7 방식의 글꼴 크기 계산(&7)
22 | MENU_TOOLS_NO_MULTI_RUN=&Don't run multiply
23 | MENU_FORCE_TITLE_SET=F&orce title bar font change enabled
24 | MENU_HELP=도움말(&H)
25 | MENU_HELP_HELP=도움말(&H)
26 | MENU_HELP_ABOUT=No!! Meiryo UI에 대하여(&A)...
27 | DLG_ALL_GROUP=모든 글꼴 설정
28 | DLG_INDIVIDUAL_GROUP=개별 글꼴 설정
29 | DLG_ALL_FONT=모든 글꼴
30 | DLG_TITLE_BAR=제목 표시줄
31 | DLG_ICON=아이콘
32 | DLG_PALETTE=팔레트 제목
33 | DLG_HINT=힌트
34 | DLG_MESSAGE=메시지 박스
35 | DLG_MENU=메뉴
36 | DLG_SELECT=선택...
37 | DLG_SET_ALL=모두 설정
38 | DLG_SET=설정
39 | DLG_EXIT=종료
40 | DLG_APPLY=적용
41 | DLG_FONT_SEL=글꼴 선택
42 | DLG_FONT_NAME=글꼴 이름(&F)
43 | DLG_STYLE=스타일(&Y)
44 | DLG_SIZE=크기(&S)
45 | DLG_CHECK_BOLD=굵게(&B)
46 | DLG_CHECK_ITALIC=기울임꼴(&I)
47 | DLG_UNDERLINE=밑줄(&U)
48 | DLG_STRIKE=취소선(&T)
49 | DLG_CHARSET=문자 집합(&C)
50 | DLG_OK=확인
51 | DLG_CANCEL=취소
52 | DLG_CHARSET_ANSI=Ansi
53 | DLG_CHARSET_BALTIC=발트어
54 | DLG_CHARSET_BIG5=중국어(번체)
55 | DLG_CHARSET_DEFAULT=기본
56 | DLG_CHARSET_EASTEUROPE=동유럽어
57 | DLG_CHARSET_GB2312=중국어(간체)
58 | DLG_CHARSET_GREEK=그리스어
59 | DLG_CHARSET_HANGUL=한국어
60 | DLG_CHARSET_MAC=Mac
61 | DLG_CHARSET_OEM=OEM
62 | DLG_CHARSET_RUSSIAN=러시아어
63 | DLG_CHARSET_SHIFTJIS=일본어
64 | DLG_CHARSET_SYMBOL=심볼릭
65 | DLG_CHARSET_TURKISH=터키어
66 | DLG_CHARSET_VIETNAMESE=베트남어
67 | DLG_CHARSET_JOHAB=한국어 조합
68 | DLG_CHARSET_ARABIC=아랍어
69 | DLG_CHARSET_HEBREW=히브리어
70 | DLG_CHARSET_THAI=태국어
71 | DLG_STYLE_NORMAL=보통
72 | DLG_STYLE_ITALIC=기울임꼴
73 | DLG_STYLE_BOLD=굵게
74 | DLG_STYLE_BOLD_ITALIC=굵은 기울임꼴
75 | DLG_STYLE_MEDIUM=Medium
76 | DLG_STYLE_SEMI_BOLD=Semibold
77 | DLG_STYLE_BOOK=Book
78 | DLG_STYLE_OBLIQUE=Oblique
79 | DLG_STYLE_LIGHT=Light
80 | DLG_STYLE_EXTRA_LIGHT=ExtraLight
81 | DLG_STYLE_SEMI_LIGHT=SemiLight
82 | DLG_STYLE_SLANTED=Slanted
83 | MSG_SETTING_FILE=글꼴 설정 파일(*.ini)
84 | MSG_ALL_FILE=모든 파일(*.*)
85 | MSG_LOAD_FAIL=글꼴 설정 파일 읽기에 실패하였습니다.
86 | MSG_SAVE_FAIL=글꼴 설정 파일 저장에 실패하였습니다.
87 | MSG_ERROR=에러
88 | MSG_ABOUT=No!! Meiryo UI에 대하여
89 | MSG_NO_FONT=글꼴을 선택하세요.
90 | MSG_NO_STYLE=스타일을 선택하세요.
91 | MSG_NO_SIZE=크기를 선택하세요.
92 | MSG_NO_CHARSET=문자 집합을 선택하세요.
93 | MSG_WARNING=Warning
94 | MSG_WIN11_22H2RESTRICTION=On Windows 11 2022 Update(22H2) and later due to Windows reason title bar font can't change.
95 | MSG_FORCE_TITLE_SET=Changeing titlebar font may cause some troubles.
96 | MSG_TRANSLATE=deVbug,창윤
97 |
98 | [PRESET]
99 | ; Preset menu setting.
100 | ; Write OS's initial font name and font size.
101 | ; And un comment KEY=VALUE .
102 |
103 | ; For Windows 8.x
104 | ; Font face
105 | CAPTION_FACE_8=맑은 고딕
106 | ICON_FACE_8=맑은 고딕
107 | SMALLCAPTION_FACE_8=맑은 고딕
108 | STATUS_FACE_8=맑은 고딕
109 | MESSAGE_FACE_8=맑은 고딕
110 | MENU_FACE_8=맑은 고딕
111 |
112 | ; Font size
113 | CAPTION_SIZE_8=11
114 | ICON_SIZE_8=9
115 | SMALLCAPTION_SIZE_8=11
116 | STATUS_SIZE_8=9
117 | MESSAGE_SIZE_8=9
118 | MENU_SIZE_8=9
119 |
120 | ; Font charset
121 | CAPTION_CHARSET_8=1
122 | ICON_CHARSET_8=1
123 | SMALLCAPTION_CHARSET_8=1
124 | STATUS_CHARSET_8=1
125 | MESSAGE_CHARSET_8=1
126 | MENU_CHARSET_8=1
127 |
128 | ; For Windows 10
129 | ; Font face
130 | CAPTION_FACE_10=맑은 고딕
131 | ICON_FACE_10=맑은 고딕
132 | SMALLCAPTION_FACE_10=맑은 고딕
133 | STATUS_FACE_10=맑은 고딕
134 | MESSAGE_FACE_10=맑은 고딕
135 | MENU_FACE_10=맑은 고딕
136 |
137 | ; Font size
138 | CAPTION_SIZE_10=9
139 | ICON_SIZE_10=9
140 | SMALLCAPTION_SIZE_10=9
141 | STATUS_SIZE_10=9
142 | MESSAGE_SIZE_10=9
143 | MENU_SIZE_10=9
144 |
145 | ; Font charset
146 | CAPTION_CHARSET_10=1
147 | ICON_CHARSET_10=1
148 | SMALLCAPTION_CHARSET_10=1
149 | STATUS_CHARSET_10=1
150 | MESSAGE_CHARSET_10=1
151 | MENU_CHARSET_10=1
152 |
153 | ; For Windows 11
154 | ; Font face
155 | CAPTION_FACE_11=맑은 고딕
156 | ICON_FACE_11=맑은 고딕
157 | SMALLCAPTION_FACE_11=맑은 고딕
158 | STATUS_FACE_11=맑은 고딕
159 | MESSAGE_FACE_11=맑은 고딕
160 | MENU_FACE_11=맑은 고딕
161 |
162 | ; Font size
163 | CAPTION_SIZE_11=9
164 | ICON_SIZE_11=9
165 | SMALLCAPTION_SIZE_11=9
166 | STATUS_SIZE_11=9
167 | MESSAGE_SIZE_11=9
168 | MENU_SIZE_11=9
169 |
170 | ; Font charset
171 | CAPTION_CHARSET_11=1
172 | ICON_CHARSET_11=1
173 | SMALLCAPTION_CHARSET_11=1
174 | STATUS_CHARSET_11=1
175 | MESSAGE_CHARSET_11=1
176 | MENU_CHARSET_11=1
177 |
--------------------------------------------------------------------------------
/lang/pt-BR.lng:
--------------------------------------------------------------------------------
1 | ; noMeiryoUI (C) 2005,2012-2025 Tatsuhiko Shoji,Claudio Mantovani Vieira
2 | ; The sources for noMeiryoUI are distributed under the MIT open source license
3 |
4 | ;In RESOURCE section,
5 | ;FONT_FACE key is dialog font name, other key is message.
6 | [RESOURCE]
7 | FONT_FACE=Sistema
8 | FONT_CHARSET=0
9 | TITLE=No!! Meiryo UI
10 | MENU_FILE=&Arquivo
11 | MENU_FILE_LOAD=Carr&egar as definições de fonte...
12 | MENU_FILE_SAVE=Sa&lvar as definições de fonte...
13 | MENU_FILE_SET_QUIT=&Definir as fontes do sistema e sair
14 | MENU_FILE_QUIT=Sa&ir
15 | MENU_PRESET=&Pré-Definição
16 | MENU_PRESET_8=Windows 8/8.1
17 | MENU_PRESET_10=Windows 10
18 | MENU_TOOLS=&Ferramentas
19 | MENU_TOOLS_CHOICE_APP_FONT=Escolha &fonte do aplicativo da UI No!! Meiryo
20 | MENU_TOOLS_THREAD=Definir as fontes do sistema em encadeamentos separados
21 | MENU_TOOLS_SEVEN=Calcular o tamanho das fontes igual ao Windows 7
22 | MENU_TOOLS_NO_MULTI_RUN=&Não executar multiplicar
23 | MENU_FORCE_TITLE_SET=F&orce title bar font change enabled
24 | MENU_HELP=Aju&da
25 | MENU_HELP_HELP=Aju&da
26 | MENU_HELP_ABOUT=&Sobre o No!! Meiryo UI
27 | DLG_ALL_GROUP=Definir Todas as Fontes
28 | DLG_INDIVIDUAL_GROUP=Definir a Fonte Individual
29 | DLG_ALL_FONT=Todas as Fontes
30 | DLG_TITLE_BAR=Barra de Título
31 | DLG_ICON=Ícone
32 | DLG_PALETTE=Título da Paleta
33 | DLG_HINT=Dica
34 | DLG_MESSAGE=Caixa de Mensagem
35 | DLG_MENU=Menu
36 | DLG_SELECT=Selec...
37 | DLG_SET_ALL=Def. Tudo e Sair
38 | DLG_SET=Definir e Sair
39 | DLG_EXIT=Sair Sem Definir
40 | DLG_APPLY=Aplicar
41 | DLG_FONT_SEL=Selecionar a Fonte
42 | DLG_FONT_NAME=Nome da &Fonte
43 | DLG_STYLE=&Estilo
44 | DLG_SIZE=&Tamanho
45 | DLG_CHECK_BOLD=&Negrito
46 | DLG_CHECK_ITALIC=&Itálico
47 | DLG_UNDERLINE=&Sublinhado
48 | DLG_STRIKE=Tac&hado
49 | DLG_CHARSET=&Conjunto de Caracteres
50 | DLG_OK=OK
51 | DLG_CANCEL=Cancelar
52 | DLG_CHARSET_ANSI=Ansi
53 | DLG_CHARSET_BALTIC=Báltico
54 | DLG_CHARSET_BIG5=Chinês Tradicional
55 | DLG_CHARSET_DEFAULT=Padrão
56 | DLG_CHARSET_EASTEUROPE=Leste Europeu
57 | DLG_CHARSET_GB2312=Chinês Simplificado
58 | DLG_CHARSET_GREEK=Grego
59 | DLG_CHARSET_HANGUL=Hangul
60 | DLG_CHARSET_MAC=Mac
61 | DLG_CHARSET_OEM=OEM
62 | DLG_CHARSET_RUSSIAN=Russo
63 | DLG_CHARSET_SHIFTJIS=Japonês
64 | DLG_CHARSET_SYMBOL=Símbolo
65 | DLG_CHARSET_TURKISH=Turco
66 | DLG_CHARSET_VIETNAMESE=Vietnamita
67 | DLG_CHARSET_JOHAB=Coreano Johab
68 | DLG_CHARSET_ARABIC=Árabe
69 | DLG_CHARSET_HEBREW=Hebraico
70 | DLG_CHARSET_THAI=Tailandês
71 | DLG_STYLE_NORMAL=Normal
72 | DLG_STYLE_ITALIC=Itálico
73 | DLG_STYLE_BOLD=Negrito
74 | DLG_STYLE_BOLD_ITALIC=Negrito Itálico
75 | DLG_STYLE_MEDIUM=Medium
76 | DLG_STYLE_SEMI_BOLD=Semibold
77 | DLG_STYLE_BOOK=Book
78 | DLG_STYLE_OBLIQUE=Oblique
79 | DLG_STYLE_LIGHT=Light
80 | DLG_STYLE_EXTRA_LIGHT=ExtraLight
81 | DLG_STYLE_SEMI_LIGHT=SemiLight
82 | DLG_STYLE_SLANTED=Slanted
83 | MSG_SETTING_FILE=Arquivo de Configurações de Fontes (*.ini)
84 | MSG_ALL_FILE=Todos Arquivos (*.*)
85 | MSG_LOAD_FAIL=Falha ao carregar o arquivo das configurações de fontes.
86 | MSG_SAVE_FAIL=Falha ao salvar o arquivo das configurações de fontes.
87 | MSG_ERROR=Erro
88 | MSG_ABOUT=Sobre o No!! Meiryo UI
89 | MSG_NO_FONT=Por favor, selecione a fonte.
90 | MSG_NO_STYLE=Por favor, selecione o estilo.
91 | MSG_NO_SIZE=Por favor, selecione o tamanho.
92 | MSG_NO_CHARSET=Por favor, selecione o conjunto de caracteres.
93 | MSG_WARNING=Warning
94 | MSG_WIN11_22H2RESTRICTION=On Windows 11 2022 Update(22H2) and later due to Windows reason title bar font can't change.
95 | MSG_FORCE_TITLE_SET=Changeing titlebar font may cause some troubles.
96 | MSG_TRANSLATE=Claudio Mantovani Vieira
97 |
98 | [PRESET]
99 | ; Preset menu setting.
100 | ; Write OS's initial font name and font size.
101 | ; And un comment KEY=VALUE .
102 |
103 | ; For Windows 8.x
104 | ; Font face
105 | CAPTION_FACE_8=Segoe UI
106 | ICON_FACE_8=Segoe UI
107 | SMALLCAPTION_FACE_8=Segoe UI
108 | STATUS_FACE_8=Segoe UI
109 | MESSAGE_FACE_8=Segoe UI
110 | MENU_FACE_8=Segoe UI
111 |
112 | ; Font size
113 | CAPTION_SIZE_8=11
114 | ICON_SIZE_8=9
115 | SMALLCAPTION_SIZE_8=11
116 | STATUS_SIZE_8=9
117 | MESSAGE_SIZE_8=9
118 | MENU_SIZE_8=9
119 |
120 | ; Font charset
121 | CAPTION_CHARSET_8=1
122 | ICON_CHARSET_8=1
123 | SMALLCAPTION_CHARSET_8=1
124 | STATUS_CHARSET_8=1
125 | MESSAGE_CHARSET_8=1
126 | MENU_CHARSET_8=1
127 |
128 | ; For Windows 10
129 | ; Font face
130 | CAPTION_FACE_10=Segoe UI
131 | ICON_FACE_10=Segoe UI
132 | SMALLCAPTION_FACE_10=Segoe UI
133 | STATUS_FACE_10=Segoe UI
134 | MESSAGE_FACE_10=Segoe UI
135 | MENU_FACE_10=Segoe UI
136 |
137 | ; Font size
138 | CAPTION_SIZE_10=9
139 | ICON_SIZE_10=9
140 | SMALLCAPTION_SIZE_10=9
141 | STATUS_SIZE_10=9
142 | MESSAGE_SIZE_10=9
143 | MENU_SIZE_10=9
144 |
145 | ; Font charset
146 | CAPTION_CHARSET_10=1
147 | ICON_CHARSET_10=1
148 | SMALLCAPTION_CHARSET_10=1
149 | STATUS_CHARSET_10=1
150 | MESSAGE_CHARSET_10=1
151 | MENU_CHARSET_10=1
152 |
153 | ; For Windows 11
154 | ; Font face
155 | CAPTION_FACE_11=Segoe UI
156 | ICON_FACE_11=Segoe UI
157 | SMALLCAPTION_FACE_11=Segoe UI
158 | STATUS_FACE_11=Segoe UI
159 | MESSAGE_FACE_11=Segoe UI
160 | MENU_FACE_11=Segoe UI
161 |
162 | ; Font size
163 | CAPTION_SIZE_11=9
164 | ICON_SIZE_11=9
165 | SMALLCAPTION_SIZE_11=9
166 | STATUS_SIZE_11=9
167 | MESSAGE_SIZE_11=9
168 | MENU_SIZE_11=9
169 |
170 | ; Font charset
171 | CAPTION_CHARSET_11=1
172 | ICON_CHARSET_11=1
173 | SMALLCAPTION_CHARSET_11=1
174 | STATUS_CHARSET_11=1
175 | MESSAGE_CHARSET_11=1
176 | MENU_CHARSET_11=1
177 |
--------------------------------------------------------------------------------
/lang/zh-CN.lng:
--------------------------------------------------------------------------------
1 | ; noMeiryoUI (C) 2005,2012-2025 Tatsuhiko Shoji,Gekka Tachibana,kingofotaku,LucidLoli,Luke Luo,HSSadboy
2 | ; The sources for noMeiryoUI are distributed under the MIT open source license
3 |
4 | [RESOURCE]
5 | FONT_FACE=微软雅黑
6 | FONT_CHARSET=136
7 | TITLE=No!! Meiryo UI
8 | MENU_FILE=文件(&F)
9 | MENU_FILE_LOAD=加载字体配置文件(&O)...
10 | MENU_FILE_SAVE=保存字体配置文件(&A)...
11 | MENU_FILE_SET_QUIT=设定系统字体并退出(&S)
12 | MENU_FILE_QUIT=退出(&X)
13 | MENU_PRESET=恢复系统默认字体(&P)
14 | MENU_PRESET_8=Windows 8/8.1
15 | MENU_PRESET_10=Windows 10
16 | MENU_PRESET_11=Windows 11
17 | MENU_TOOLS=工具(&T)
18 | MENU_TOOLS_CHOICE_APP_FONT=修改 No!! Meiryo UI 的字体
19 | MENU_TOOLS_THREAD=在独立线程中更改系统字体
20 | MENU_TOOLS_SEVEN=采用与 Windows 7 中相同的方法计算文字大小
21 | MENU_TOOLS_NO_MULTI_RUN=只允许运行一个实例(&D)
22 | MENU_FORCE_TITLE_SET=强制修改标题栏字体
23 | MENU_HELP=帮助(&H)
24 | MENU_HELP_HELP=显示帮助(&H)
25 | MENU_HELP_ABOUT=关于 No!! Meiryo UI(&A)
26 | DLG_ALL_GROUP=全局设定
27 | DLG_INDIVIDUAL_GROUP=单项设定
28 | DLG_ALL_FONT=所有字体
29 | DLG_TITLE_BAR=标题栏
30 | DLG_ICON=追随图标的文字
31 | DLG_PALETTE=调色板标题
32 | DLG_HINT=当前焦点文字
33 | DLG_MESSAGE=对话框
34 | DLG_MENU=菜单
35 | DLG_SELECT=选择...
36 | DLG_SET_ALL=设置全部并退出
37 | DLG_SET=设置并退出
38 | DLG_EXIT=退出
39 | DLG_APPLY=应用
40 | DLG_FONT_SEL=字体选择
41 | DLG_FONT_NAME=字体名称(&F)
42 | DLG_STYLE=字形(&Y)
43 | DLG_SIZE=字体大小(&S)
44 | DLG_CHECK_BOLD=粗体(&B)
45 | DLG_CHECK_ITALIC=斜体(&I)
46 | DLG_UNDERLINE=下划线(&U)
47 | DLG_STRIKE=删除线(&T)
48 | DLG_CHARSET=字符集(&C)
49 | DLG_OK=确定
50 | DLG_CANCEL=取消
51 | DLG_CHARSET_ANSI=西欧语言
52 | DLG_CHARSET_BALTIC=波罗的语
53 | DLG_CHARSET_BIG5=繁体中文
54 | DLG_CHARSET_DEFAULT=默认
55 | DLG_CHARSET_EASTEUROPE=东欧语言
56 | DLG_CHARSET_GB2312=简体中文
57 | DLG_CHARSET_GREEK=希腊语
58 | DLG_CHARSET_HANGUL=朝鲜语
59 | DLG_CHARSET_MAC=MAC
60 | DLG_CHARSET_OEM=OEM
61 | DLG_CHARSET_RUSSIAN=西里尔文
62 | DLG_CHARSET_SHIFTJIS=日语
63 | DLG_CHARSET_SYMBOL=符号
64 | DLG_CHARSET_TURKISH=土耳其语
65 | DLG_CHARSET_VIETNAMESE=越南语
66 | DLG_CHARSET_JOHAB=韩文(johab)
67 | DLG_CHARSET_ARABIC=阿拉伯语
68 | DLG_CHARSET_HEBREW=希伯来语
69 | DLG_CHARSET_THAI=泰语
70 | DLG_STYLE_NORMAL=常规
71 | DLG_STYLE_ITALIC=斜体
72 | DLG_STYLE_BOLD=粗体
73 | DLG_STYLE_BOLD_ITALIC=粗偏斜体
74 | DLG_STYLE_MEDIUM=中黑体
75 | DLG_STYLE_SEMI_BOLD=中粗体
76 | DLG_STYLE_BOOK=常规体
77 | DLG_STYLE_OBLIQUE=斜体
78 | DLG_STYLE_LIGHT=细体
79 | DLG_STYLE_EXTRA_LIGHT=极细体
80 | DLG_STYLE_SEMI_LIGHT=准细体
81 | DLG_STYLE_SLANTED=斜体
82 | MSG_SETTING_FILE=字体设定文件(*.ini)
83 | MSG_ALL_FILE=所有文件(*.*)
84 | MSG_LOAD_FAIL=字体配置文件加载失败。
85 | MSG_SAVE_FAIL=字体配置文件保存失败。
86 | MSG_ERROR=错误
87 | MSG_ABOUT=关于 No!! Meiryo UI
88 | MSG_NO_FONT=请选择字体。
89 | MSG_NO_STYLE=请选择字形。
90 | MSG_NO_SIZE=请选择字体大小。
91 | MSG_NO_CHARSET=请选择字符集。
92 | MSG_WARNING=提示
93 | MSG_WIN11_22H2RESTRICTION=在Windows 11 2022 Update(22H2)版本下 由于Windows方面的改动 导致标题栏字体不再允许进行更改。
94 | MSG_FORCE_TITLE_SET=更改标题栏字体可能会导致系统发生问题。
95 | MSG_TRANSLATE=立花 月下,kingofotaku,icebeam030,LucidLoli,Luke Luo,HSSadBoy
96 |
97 | [PRESET]
98 | ; Preset menu setting.
99 | ; Write OS's initial font name and font size.
100 | ; And un comment KEY=VALUE .
101 |
102 | ; For Windows 8.x
103 | ; Font face
104 | CAPTION_FACE_8=Microsoft YaHei UI
105 | ICON_FACE_8=Microsoft YaHei UI
106 | SMALLCAPTION_FACE_8=Microsoft YaHei UI
107 | STATUS_FACE_8=Microsoft YaHei UI
108 | MESSAGE_FACE_8=Microsoft YaHei UI
109 | MENU_FACE_8=Microsoft YaHei UI
110 |
111 | ; Font size
112 | CAPTION_SIZE_8=11
113 | ICON_SIZE_8=9
114 | SMALLCAPTION_SIZE_8=11
115 | STATUS_SIZE_8=9
116 | MESSAGE_SIZE_8=9
117 | MENU_SIZE_8=9
118 |
119 | ; Font charset
120 | CAPTION_CHARSET_8=1
121 | ICON_CHARSET_8=1
122 | SMALLCAPTION_CHARSET_8=1
123 | STATUS_CHARSET_8=1
124 | MESSAGE_CHARSET_8=1
125 | MENU_CHARSET_8=1
126 |
127 | ; For Windows 10
128 | ; Font face
129 | CAPTION_FACE_10=Microsoft YaHei UI
130 | ICON_FACE_10=Microsoft YaHei UI
131 | SMALLCAPTION_FACE_10=Microsoft YaHei UI
132 | STATUS_FACE_10=Microsoft YaHei UI
133 | MESSAGE_FACE_10=Microsoft YaHei UI
134 | MENU_FACE_10=Microsoft YaHei UI
135 |
136 | ; Font size
137 | CAPTION_SIZE_10=9
138 | ICON_SIZE_10=9
139 | SMALLCAPTION_SIZE_10=9
140 | STATUS_SIZE_10=9
141 | MESSAGE_SIZE_10=9
142 | MENU_SIZE_10=9
143 |
144 | ; Font charset
145 | CAPTION_CHARSET_10=1
146 | ICON_CHARSET_10=1
147 | SMALLCAPTION_CHARSET_10=1
148 | STATUS_CHARSET_10=1
149 | MESSAGE_CHARSET_10=1
150 | MENU_CHARSET_10=1
151 |
152 | ; For Windows 11
153 | ; Font face
154 | CAPTION_FACE_11=Microsoft YaHei UI
155 | ICON_FACE_11=Microsoft YaHei UI
156 | SMALLCAPTION_FACE_11=Microsoft Yahei UI
157 | STATUS_FACE_11=Microsoft YaHei UI
158 | MESSAGE_FACE_11=Microsoft YaHei UI
159 | MENU_FACE_11=Microsoft YaHei UI
160 |
161 | ; Font size
162 | CAPTION_SIZE_11=9
163 | ICON_SIZE_11=9
164 | SMALLCAPTION_SIZE_11=9
165 | STATUS_SIZE_11=9
166 | MESSAGE_SIZE_11=9
167 | MENU_SIZE_11=9
168 |
169 | ; Font charset
170 | CAPTION_CHARSET_11=1
171 | ICON_CHARSET_11=1
172 | SMALLCAPTION_CHARSET_11=1
173 | STATUS_CHARSET_11=1
174 | MESSAGE_CHARSET_11=1
175 | MENU_CHARSET_11=1
176 |
--------------------------------------------------------------------------------
/lang/zh-TW.lng:
--------------------------------------------------------------------------------
1 | ; noMeiryoUI (C) 2005,2012-2025 Tatsuhiko Shoji,Gekka Tachibana,kingofotaku,Austin Chang,HSSadBoy,abc0922001,hensuu
2 | ; The sources for noMeiryoUI are distributed under the MIT open source license
3 |
4 | [RESOURCE]
5 | FONT_FACE=微軟正黑體
6 | FONT_CHARSET=136
7 | TITLE=No!! Meiryo UI
8 | MENU_FILE=檔案(&F)
9 | MENU_FILE_LOAD=載入字型設定檔(&O)
10 | MENU_FILE_SAVE=儲存字型設定檔(&A)
11 | MENU_FILE_SET_QUIT=設定系統字型並退出(&S)
12 | MENU_FILE_QUIT=結束(&X)
13 | MENU_PRESET=重設為預設設定(&P)
14 | MENU_PRESET_8=Windows 8/8.1
15 | MENU_PRESET_10=Windows 10
16 | MENU_PRESET_11=Windows 11
17 | MENU_TOOLS=工具(&T)
18 | MENU_TOOLS_CHOICE_APP_FONT=選擇 No!! Meiryo UI 應用程式字型(&f)
19 | MENU_TOOLS_THREAD=在另一執行緒中變更字型(&A)
20 | MENU_TOOLS_SEVEN=將字型大小視為與 Windows 7 相同(&7)
21 | MENU_TOOLS_NO_MULTI_RUN=不要重複執行(&D)
22 | MENU_FORCE_TITLE_SET=允許變更標題列字型(&O)
23 | MENU_HELP=說明(&H)
24 | MENU_HELP_HELP=檢視說明(&C)
25 | MENU_HELP_ABOUT=關於 No!! Meiryo UI (&A)
26 | DLG_ALL_GROUP=全部字型設定
27 | DLG_INDIVIDUAL_GROUP=個別字型設定
28 | DLG_ALL_FONT=全部字型
29 | DLG_TITLE_BAR=標題列
30 | DLG_ICON=圖示
31 | DLG_PALETTE=選擇區標題
32 | DLG_HINT=提示
33 | DLG_MESSAGE=訊息方塊
34 | DLG_MENU=選單
35 | DLG_SELECT=選取
36 | DLG_SET_ALL=套用全部並結束
37 | DLG_SET=套用並結束
38 | DLG_EXIT=結束而不套用
39 | DLG_APPLY=套用
40 | DLG_FONT_SEL=字型選取
41 | DLG_FONT_NAME=字型名稱(&F)
42 | DLG_STYLE=字型樣式(&Y)
43 | DLG_SIZE=大小(&S)
44 | DLG_CHECK_BOLD=粗體(&B)
45 | DLG_CHECK_ITALIC=斜體(&I)
46 | DLG_UNDERLINE=底線(&U)
47 | DLG_STRIKE=刪除線(&T)
48 | DLG_CHARSET=字元集(&C)
49 | DLG_OK=確定
50 | DLG_CANCEL=取消
51 | DLG_CHARSET_ANSI=西歐語多
52 | DLG_CHARSET_BALTIC=波羅地海文
53 | DLG_CHARSET_GB2312=簡體中文
54 | DLG_CHARSET_BIG5=正體中文
55 | DLG_CHARSET_DEFAULT=預設
56 | DLG_CHARSET_EASTEUROPE=東歐語系
57 | DLG_CHARSET_GREEK=希臘文
58 | DLG_CHARSET_HANGUL=韓文
59 | DLG_CHARSET_MAC=Mac
60 | DLG_CHARSET_OEM=OEM
61 | DLG_CHARSET_RUSSIAN=俄文
62 | DLG_CHARSET_SHIFTJIS=日文
63 | DLG_CHARSET_SYMBOL=符號
64 | DLG_CHARSET_TURKISH=土耳其文
65 | DLG_CHARSET_VIETNAMESE=越南文
66 | DLG_CHARSET_JOHAB=Johab 韓文
67 | DLG_CHARSET_ARABIC=阿拉伯文
68 | DLG_CHARSET_HEBREW=希伯來文
69 | DLG_CHARSET_THAI=泰文
70 | DLG_STYLE_NORMAL=標準
71 | DLG_STYLE_ITALIC=斜體
72 | DLG_STYLE_BOLD=粗體
73 | DLG_STYLE_BOLD_ITALIC=粗斜體
74 | DLG_STYLE_MEDIUM=中等
75 | DLG_STYLE_SEMI_BOLD=半粗體
76 | DLG_STYLE_BOOK=正文體
77 | DLG_STYLE_OBLIQUE=傾斜體
78 | DLG_STYLE_LIGHT=輕體
79 | DLG_STYLE_EXTRA_LIGHT=超輕體
80 | DLG_STYLE_SEMI_LIGHT=半輕體
81 | DLG_STYLE_SLANTED=傾斜體
82 | MSG_SETTING_FILE=字型設定檔(*.ini)
83 | MSG_ALL_FILE=所有檔案(*.*)
84 | MSG_LOAD_FAIL=字型設定檔載入失敗。
85 | MSG_SAVE_FAIL=字型設定檔儲存失敗。
86 | MSG_ERROR=錯誤
87 | MSG_ABOUT=關於 No!! Meiryo UI
88 | MSG_NO_FONT=請選擇字型。
89 | MSG_NO_STYLE=請選擇字型樣式。
90 | MSG_NO_SIZE=請選擇字型大小。
91 | MSG_NO_CHARSET=請選擇字元集。
92 | MSG_WARNING=警告
93 | MSG_WIN11_22H2RESTRICTION=在 Windows 11 2022 Update(22H2) 中,由於 Windows 方面的限制,無法變更標題列的字型。
94 | MSG_FORCE_TITLE_SET=變更標題列字型可能會導致一些問題。
95 | MSG_TRANSLATE=Austin Chang,HSSadBoy,hensuu
96 |
97 | [PRESET]
98 | ; Preset menu setting.
99 | ; Write OS's initial font name and font size.
100 | ; And un comment KEY=VALUE .
101 | ;
102 | ; For Windows 8.x
103 | ; Font face
104 | CAPTION_FACE_8=Microsoft JhengHei UI
105 | ICON_FACE_8=Microsoft JhengHei UI
106 | SMALLCAPTION_FACE_8=Microsoft JhengHei UI
107 | STATUS_FACE_8=Microsoft JhengHei UI
108 | MESSAGE_FACE_8=Microsoft JhengHei UI
109 | MENU_FACE_8=Microsoft JhengHei UI
110 |
111 | ; Font size
112 | CAPTION_SIZE_8=11
113 | ICON_SIZE_8=9
114 | SMALLCAPTION_SIZE_8=11
115 | STATUS_SIZE_8=9
116 | MESSAGE_SIZE_8=9
117 | MENU_SIZE_8=9
118 |
119 | ; Font charset
120 | CAPTION_CHARSET_8=1
121 | ICON_CHARSET_8=1
122 | SMALLCAPTION_CHARSET_8=1
123 | STATUS_CHARSET_8=1
124 | MESSAGE_CHARSET_8=1
125 | MENU_CHARSET_8=1
126 |
127 | ; For Windows 10
128 | ; Font face
129 | CAPTION_FACE_10=Microsoft JhengHei UI
130 | ICON_FACE_10=Microsoft JhengHei UI
131 | SMALLCAPTION_FACE_10=Microsoft JhengHei UI
132 | STATUS_FACE_10=Microsoft JhengHei UI
133 | MESSAGE_FACE_10=Microsoft JhengHei UI
134 | MENU_FACE_10=Microsoft JhengHei UI
135 |
136 | ; Font size
137 | CAPTION_SIZE_10=9
138 | ICON_SIZE_10=9
139 | SMALLCAPTION_SIZE_10=9
140 | STATUS_SIZE_10=9
141 | MESSAGE_SIZE_10=9
142 | MENU_SIZE_10=9
143 |
144 | ; Font charset
145 | CAPTION_CHARSET_10=1
146 | ICON_CHARSET_10=1
147 | SMALLCAPTION_CHARSET_10=1
148 | STATUS_CHARSET_10=1
149 | MESSAGE_CHARSET_10=1
150 | MENU_CHARSET_10=1
151 |
152 | ; For Windows 11
153 | ; Font face
154 | CAPTION_FACE_11=Microsoft JhengHei UI
155 | ICON_FACE_11=Microsoft JhengHei UI
156 | SMALLCAPTION_FACE_11=Microsoft JhengHei UI
157 | STATUS_FACE_11=Microsoft JhengHei UI
158 | MESSAGE_FACE_11=Microsoft JhengHei UI
159 | MENU_FACE_11=Microsoft JhengHei UI
160 |
161 | ; Font size
162 | CAPTION_SIZE_11=9
163 | ICON_SIZE_11=9
164 | SMALLCAPTION_SIZE_11=9
165 | STATUS_SIZE_11=9
166 | MESSAGE_SIZE_11=9
167 | MENU_SIZE_11=9
168 |
169 | ; Font charset
170 | CAPTION_CHARSET_11=1
171 | ICON_CHARSET_11=1
172 | SMALLCAPTION_CHARSET_11=1
173 | STATUS_CHARSET_11=1
174 | MESSAGE_CHARSET_11=1
175 | MENU_CHARSET_11=1
176 |
--------------------------------------------------------------------------------
/program/FontSel.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/FontSel.cpp
--------------------------------------------------------------------------------
/program/FontSel.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/FontSel.h
--------------------------------------------------------------------------------
/program/TWR/AppliBase.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/TWR/AppliBase.h
--------------------------------------------------------------------------------
/program/TWR/BaseDialog.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/TWR/BaseDialog.cpp
--------------------------------------------------------------------------------
/program/TWR/BaseDialog.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/TWR/BaseDialog.h
--------------------------------------------------------------------------------
/program/TWR/DialogAppliBase.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/TWR/DialogAppliBase.cpp
--------------------------------------------------------------------------------
/program/TWR/DialogAppliBase.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/TWR/DialogAppliBase.h
--------------------------------------------------------------------------------
/program/TWR/ModelessDialog.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/TWR/ModelessDialog.cpp
--------------------------------------------------------------------------------
/program/TWR/ModelessDialog.h:
--------------------------------------------------------------------------------
1 | /*
2 | noMeiryoUI (C) 2005,2012,2013 Tatsuhiko Shoji
3 | The sources for noMeiryoUI are distributed under the MIT open source license
4 | */
5 | #ifndef MODELESSDIALOG_H
6 | #define MODELESSDIALOG_H
7 |
8 | #include
9 |
10 | void initModelessDialog(void);
11 | void addModelessDialog(HWND dialog);
12 | void delModelessDialog(HWND dialog);
13 | bool handleDialogMessage(LPMSG lpMsg);
14 |
15 | #endif
16 |
--------------------------------------------------------------------------------
/program/TWR/NCFileDialog.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/TWR/NCFileDialog.cpp
--------------------------------------------------------------------------------
/program/TWR/NCFileDialog.h:
--------------------------------------------------------------------------------
1 | /*
2 | noMeiryoUI (C) 2005,2012-2015 Tatsuhiko Shoji
3 | The sources for noMeiryoUI are distributed under the MIT open source license
4 | */
5 | #ifndef NCFileDialog_H
6 | #define NCFileDialog_H
7 |
8 | class NCFileDialog {
9 | private:
10 | TCHAR gotFileName[_MAX_PATH];
11 | BOOL m_OpenFileDialog;
12 | const char *m_defExt;
13 | public:
14 | OPENFILENAME m_ofn;
15 |
16 | NCFileDialog(
17 | BOOL bOpenFileDialog,
18 | const char *lpszDefExt = NULL,
19 | const TCHAR *lpszFileName = NULL,
20 | DWORD dwFlags = OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT,
21 | const TCHAR *lpszFilter = NULL,
22 | HWND pParentWnd = NULL,
23 | DWORD dwSize = 0
24 | );
25 |
26 | int DoModal();
27 | TCHAR *GetPathName() { return gotFileName;};
28 | OPENFILENAME &GetOFN() {
29 | return m_ofn;
30 | }
31 | };
32 |
33 | #endif
34 |
--------------------------------------------------------------------------------
/program/TWR/TwrCheckbox.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/TWR/TwrCheckbox.cpp
--------------------------------------------------------------------------------
/program/TWR/TwrCheckbox.h:
--------------------------------------------------------------------------------
1 | /*
2 | noMeiryoUI (C) 2005,2012,2013 Tatsuhiko Shoji
3 | The sources for noMeiryoUI are distributed under the MIT open source license
4 | */
5 | #ifndef TWRCHECKBOX_H
6 | #define TWRCHECHBOX_H
7 |
8 | #include "TwrWnd.h"
9 |
10 | class TwrCheckbox : public TwrWnd {
11 | public:
12 | TwrCheckbox();
13 | TwrCheckbox(HWND newHwnd);
14 | HWND create(void);
15 | HWND create(HWND parent);
16 | bool isChecked(void);
17 | void setChecked(bool checked);
18 | };
19 |
20 | #endif
21 |
--------------------------------------------------------------------------------
/program/TWR/TwrCombobox.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/TWR/TwrCombobox.cpp
--------------------------------------------------------------------------------
/program/TWR/TwrCombobox.h:
--------------------------------------------------------------------------------
1 | /*
2 | noMeiryoUI (C) 2005,2012,2013 Tatsuhiko Shoji
3 | The sources for noMeiryoUI are distributed under the MIT open source license
4 | */
5 | #ifndef TWRCOMBOBOX_H
6 | #define TWRCOMBOBOX_H
7 |
8 | #include "TwrWnd.h"
9 |
10 | class TwrCombobox : public TwrWnd {
11 | private:
12 | int style;
13 | public:
14 | TwrCombobox();
15 | TwrCombobox(HWND newHwnd);
16 |
17 | HWND create(void);
18 | HWND create(HWND parent);
19 | void addItem(const TCHAR *item);
20 | int getSelectedIndex(void);
21 | int getCount(void);
22 | tstring getItem(int index);
23 | void setStyle(int newStyle) {
24 | style = newStyle;
25 | }
26 | void clear(void);
27 | void setSelectedIndex(int index);
28 | tstring getSelectedText(void);
29 |
30 | };
31 |
32 | #endif
33 |
--------------------------------------------------------------------------------
/program/TWR/TwrCore.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/TWR/TwrCore.cpp
--------------------------------------------------------------------------------
/program/TWR/TwrCore.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/TWR/TwrCore.h
--------------------------------------------------------------------------------
/program/TWR/TwrMenu.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/TWR/TwrMenu.cpp
--------------------------------------------------------------------------------
/program/TWR/TwrMenu.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/TWR/TwrMenu.h
--------------------------------------------------------------------------------
/program/TWR/TwrWnd.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/TWR/TwrWnd.cpp
--------------------------------------------------------------------------------
/program/TWR/TwrWnd.h:
--------------------------------------------------------------------------------
1 | /*
2 | noMeiryoUI (C) 2005,2012,2013 Tatsuhiko Shoji
3 | The sources for noMeiryoUI are distributed under the MIT open source license
4 | */
5 | #ifndef TWRWND_H
6 | #define TWRWND_H
7 |
8 | #include
9 |
10 | #include "tstring.h"
11 |
12 | /**
13 | * Tatsu's windows api WRapper
14 | * Window base class
15 | */
16 | class TwrWnd {
17 | protected:
18 | HWND hWnd;
19 | tstring title;
20 | int left;
21 | int top;
22 | int width;
23 | int height;
24 | public:
25 | TwrWnd();
26 | TwrWnd(HWND newWnd);
27 | virtual ~TwrWnd();
28 |
29 | BOOL UpdateWindow();
30 | BOOL ShowWindow(int nCmdShow);
31 | void EnableWindow(BOOL enabled);
32 | HWND getHwnd() {
33 | return hWnd;
34 | }
35 | void destroyWindow(void) {
36 | DestroyWindow(hWnd);
37 | }
38 | void setText(const TCHAR *text);
39 | void setPoint(int x, int y);
40 | void setSize(int w, int h);
41 | void setFont(HFONT font);
42 | };
43 |
44 | #endif
--------------------------------------------------------------------------------
/program/TWR/stdafx.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/TWR/stdafx.h
--------------------------------------------------------------------------------
/program/TWR/tstring.h:
--------------------------------------------------------------------------------
1 | /*
2 | noMeiryoUI (C) 2005,2012,2013 Tatsuhiko Shoji
3 | The sources for noMeiryoUI are distributed under the MIT open source license
4 | */
5 | #ifndef TSTRING
6 | #define TSTRING
7 |
8 | #include
9 | #include
10 |
11 | typedef std::basic_string tstring;
12 |
13 | #endif
14 |
--------------------------------------------------------------------------------
/program/country/default.cpp:
--------------------------------------------------------------------------------
1 | #include
2 | #include "default.h"
3 |
4 | namespace default {
5 |
6 | /**
7 | * @brief 必要とされる文字列
8 | */
9 | tstring _neededString;
10 |
11 | /**
12 | * Charsetに対するEnumFontFamiliesExのコールバック
13 | *
14 | * @param lpelfe 論理的なフォントデータ
15 | * @param lpntme 物理的なフォントデータ
16 | * @param FontType フォントの種類
17 | * @param lParam アプリケーション定義のデータ
18 | * @return 0:列挙を中止する 1:次のフォントを列挙する。
19 | */
20 | int CALLBACK EnumFontCharsetProc(
21 | ENUMLOGFONTEX *lpelfe, // 論理的なフォントデータ
22 | NEWTEXTMETRICEX *lpntme, // 物理的なフォントデータ
23 | DWORD FontType, // フォントの種類
24 | LPARAM lParam // アプリケーション定義のデータ
25 | )
26 | {
27 | if (_neededString == lpelfe->elfFullName) {
28 | return 0;
29 | }
30 |
31 | return 1;
32 |
33 | }
34 |
35 | /**
36 | * Charsetに対するフォントを取得する
37 | *
38 | * @return 0:フォントが存在する 1:フォントは存在しない
39 | */
40 | int findCharsetFont()
41 | {
42 | LOGFONT lf;
43 |
44 | memset(&lf, 0, sizeof(LOGFONT));
45 | lf.lfPitchAndFamily = 0;
46 | lf.lfCharSet = DEFAULT_CHARSET;
47 |
48 | HDC hDC;
49 | hDC = GetDC(GetDesktopWindow());
50 |
51 | int found = 1;
52 | found = ::EnumFontFamiliesEx(
53 | hDC,
54 | &lf,
55 | (FONTENUMPROC)EnumFontCharsetProc,
56 | (LPARAM)0,
57 | 0
58 | );
59 |
60 | return found;
61 | }
62 |
63 | /**
64 | * Write fallback font when font specified in language file is not found.
65 | * For example in Japanese, use Yu Gothic -> MS UI Gothic
66 | * Use this routine, unfortunately system font selection is too ugly such as Japan.
67 | * If you want to use language and Windows version specific fallback, copy this source for your country
68 | * and modify font name in language specific font name which is installed all Windows in your country.
69 | *
70 | * @brief Determine exist font for default languages.
71 | * @param settingString Preferred font name
72 | * @return Choiced font name
73 | */
74 | tstring getDefaultFontFallback(tstring &settingString)
75 | {
76 | int result = 1;
77 |
78 | _neededString = settingString;
79 |
80 | result = findCharsetFont();
81 | if (result == 0) {
82 | return settingString;
83 | }
84 |
85 | _neededString = _T("Arial");
86 |
87 | return _neededString;
88 |
89 | }
90 |
91 | }
92 |
--------------------------------------------------------------------------------
/program/country/default.h:
--------------------------------------------------------------------------------
1 | /*
2 | noMeiryoUI (C) 2005,2012-2024 Tatsuhiko Shoji
3 | The sources for noMeiryoUI are distributed under the MIT open source license
4 | */
5 |
6 | #pragma once
7 |
8 | #include
9 | #include
10 | #include
11 |
12 | namespace default {
13 |
14 | extern tstring getDefaultFontFallback(tstring &settingString);
15 |
16 | };
17 |
--------------------------------------------------------------------------------
/program/country/japan.cpp:
--------------------------------------------------------------------------------
1 | #include
2 | #include "japan.h"
3 |
4 | namespace japan {
5 |
6 | /**
7 | * @brief 必要とされる文字列
8 | */
9 | tstring _neededString;
10 |
11 | /**
12 | * Charsetに対するEnumFontFamiliesExのコールバック
13 | *
14 | * @param lpelfe 論理的なフォントデータ
15 | * @param lpntme 物理的なフォントデータ
16 | * @param FontType フォントの種類
17 | * @param lParam アプリケーション定義のデータ
18 | * @return 0:列挙を中止する 1:次のフォントを列挙する。
19 | */
20 | int CALLBACK EnumFontCharsetProc(
21 | ENUMLOGFONTEX *lpelfe, // 論理的なフォントデータ
22 | NEWTEXTMETRICEX *lpntme, // 物理的なフォントデータ
23 | DWORD FontType, // フォントの種類
24 | LPARAM lParam // アプリケーション定義のデータ
25 | )
26 | {
27 | if (_neededString == lpelfe->elfFullName) {
28 | return 0;
29 | }
30 |
31 | return 1;
32 |
33 | }
34 |
35 | /**
36 | * Charsetに対するフォントを取得する
37 | *
38 | * @return 0:フォントが存在する 1:フォントは存在しない
39 | */
40 | int findCharsetFont()
41 | {
42 | LOGFONT lf;
43 |
44 | memset(&lf, 0, sizeof(LOGFONT));
45 | lf.lfPitchAndFamily = 0;
46 | lf.lfCharSet = DEFAULT_CHARSET;
47 |
48 | HDC hDC;
49 | hDC = GetDC(GetDesktopWindow());
50 |
51 | int found = 1;
52 | found = ::EnumFontFamiliesEx(
53 | hDC,
54 | &lf,
55 | (FONTENUMPROC)EnumFontCharsetProc,
56 | (LPARAM)0,
57 | 0
58 | );
59 |
60 | return found;
61 | }
62 |
63 | /**
64 | * @brief 日本語版の使用するフォールバックフォントを取得する。
65 | * @param settingString 言語ファイルのフォント名
66 | * @return 選択されたフォント名
67 | */
68 | tstring getJapaneseFontFallback(tstring &settingString)
69 | {
70 | int result = 1;
71 |
72 | _neededString = settingString;
73 |
74 | // Font in language file is found in your Windows?
75 | result = findCharsetFont();
76 | if (result == 0) {
77 | return settingString;
78 | }
79 |
80 | // In early Windows 10
81 | _neededString = _T("游ゴシック Medium");
82 | result = findCharsetFont();
83 | if (result == 0) {
84 | return _neededString;
85 | }
86 |
87 | // In Windows 8.1
88 | _neededString = _T("游ゴシック");
89 | result = findCharsetFont();
90 | if (result == 0) {
91 | return _neededString;
92 | }
93 |
94 | // なければオーソドックスなMS UI Gothic
95 | // メイリオは誤解を生むのであえて使わない。
96 | // メイリオとMeiryo UIはいろいろな意味で別物なのに混同されることがあるので。
97 | _neededString = _T("MS UI Gothic");
98 |
99 | return _neededString;
100 |
101 | }
102 |
103 | }
104 |
--------------------------------------------------------------------------------
/program/country/japan.h:
--------------------------------------------------------------------------------
1 | /*
2 | noMeiryoUI (C) 2005,2012-2024 Tatsuhiko Shoji
3 | The sources for noMeiryoUI are distributed under the MIT open source license
4 | */
5 |
6 | #pragma once
7 |
8 | #include
9 | #include
10 | #include
11 |
12 | namespace japan {
13 |
14 | extern tstring getJapaneseFontFallback(tstring &settingString);
15 |
16 | };
17 |
--------------------------------------------------------------------------------
/program/country/korea.cpp:
--------------------------------------------------------------------------------
1 | /*
2 | noMeiryoUI (C) 2005,2012-2024 Tatsuhiko Shoji
3 | The sources for noMeiryoUI are distributed under the MIT open source license
4 | */
5 | #include
6 | #include
7 | #include
8 |
9 | namespace korea {
10 |
11 | /**
12 | * 韓国語のフォント名を置き換える(韓国語専用)
13 | *
14 | * @param dispBuf 韓国語のフォント名
15 | */
16 | void getKoreanFontName(TCHAR *dispBuf)
17 | {
18 | if (!_tcscmp(dispBuf, _T("Gulim"))) {
19 | _tcscpy(dispBuf, _T("굴림"));
20 | }
21 |
22 | if (!_tcscmp(dispBuf, _T("GulimChe"))) {
23 | _tcscpy(dispBuf, _T("굴림체"));
24 | }
25 |
26 | if (!_tcscmp(dispBuf, _T("Gungsuh"))) {
27 | _tcscpy(dispBuf, _T("궁서"));
28 | }
29 |
30 | if (!_tcscmp(dispBuf, _T("GungsuhChe"))) {
31 | _tcscpy(dispBuf, _T("궁서체"));
32 | }
33 |
34 | if (!_tcscmp(dispBuf, _T("Dotum"))) {
35 | _tcscpy(dispBuf, _T("돋움"));
36 | }
37 |
38 | if (!_tcscmp(dispBuf, _T("DotumChe"))) {
39 | _tcscpy(dispBuf, _T("돋움체"));
40 | }
41 |
42 | if (!_tcscmp(dispBuf, _T("Malgun Gothic"))) {
43 | _tcscpy(dispBuf, _T("맑은 고딕"));
44 | }
45 |
46 | if (!_tcscmp(dispBuf, _T("Batang"))) {
47 | _tcscpy(dispBuf, _T("바탕"));
48 | }
49 |
50 | if (!_tcscmp(dispBuf, _T("BatangChe"))) {
51 | _tcscpy(dispBuf, _T("바탕체"));
52 | }
53 |
54 | }
55 |
56 | }
57 |
58 |
--------------------------------------------------------------------------------
/program/country/korea.h:
--------------------------------------------------------------------------------
1 | /*
2 | noMeiryoUI (C) 2005,2012-2024 Tatsuhiko Shoji
3 | The sources for noMeiryoUI are distributed under the MIT open source license
4 | */
5 | namespace korea {
6 |
7 | void getKoreanFontName(TCHAR *dispBuf);
8 |
9 | };
10 |
--------------------------------------------------------------------------------
/program/iniReader.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/iniReader.cpp
--------------------------------------------------------------------------------
/program/iniReader.h:
--------------------------------------------------------------------------------
1 | /*
2 | noMeiryoUI (C) 2005,2012-2021 Tatsuhiko Shoji
3 | The sources for noMeiryoUI are distributed under the MIT open source license
4 | */
5 | #ifndef INIREADER_H
6 | #define INIREADER_H
7 |
8 | #include
9 |
10 | DWORD GetPrivateProfileStringExT(
11 | char *sectionName,
12 | TCHAR *keyName,
13 | TCHAR *defaultValue,
14 | tstring &returnString,
15 | TCHAR *iniFileName);
16 |
17 | #endif
18 |
--------------------------------------------------------------------------------
/program/langresource.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/langresource.cpp
--------------------------------------------------------------------------------
/program/langresource.h:
--------------------------------------------------------------------------------
1 | /*
2 | noMeiryoUI (C) 2005,2012-2025 Tatsuhiko Shoji
3 | The sources for noMeiryoUI are distributed under the MIT open source license
4 | */
5 |
6 | #ifndef LANGRESOURCE_H
7 | #define LANGRESOURCE_H
8 |
9 | #include
10 |
11 | #define FONT_FACE 0
12 | #define TITLE 1
13 | #define MENU_FILE 2
14 | #define MENU_FILE_LOAD 3
15 | #define MENU_FILE_SAVE 4
16 | #define MENU_FILE_SET_QUIT 5
17 | #define MENU_FILE_QUIT 6
18 | #define MENU_PRESET 7
19 | #define MENU_PRESET_8 8
20 | #define MENU_PRESET_10 9
21 | #define MENU_TOOLS 10
22 | #define MENU_TOOLS_THREAD 11
23 | #define MENU_TOOLS_SEVEN 12
24 | #define MENU_HELP 13
25 | #define MENU_HELP_HELP 14
26 | #define MENU_HELP_ABOUT 15
27 | #define DLG_ALL_FONT 16
28 | #define DLG_TITLE_BAR 17
29 | #define DLG_ICON 18
30 | #define DLG_PALETTE 19
31 | #define DLG_HINT 20
32 | #define DLG_MESSAGE 21
33 | #define DLG_MENU 22
34 | #define DLG_SELECT 23
35 | #define DLG_SET_ALL 24
36 | #define DLG_SET 25
37 | #define DLG_EXIT 26
38 | #define DLG_FONT_SEL 27
39 | #define DLG_FONT_NAME 28
40 | #define DLG_STYLE 29
41 | #define DLG_SIZE 30
42 | #define DLG_UNDERLINE 31
43 | #define DLG_STRIKE 32
44 | #define DLG_CHARSET 33
45 | #define DLG_OK 34
46 | #define DLG_CANCEL 35
47 | #define DLG_CHARSET_ANSI 36
48 | #define DLG_CHARSET_BALTIC 37
49 | #define DLG_CHARSET_BIG5 38
50 | #define DLG_CHARSET_DEFAULT 39
51 | #define DLG_CHARSET_EASTEUROPE 40
52 | #define DLG_CHARSET_GB2312 41
53 | #define DLG_CHARSET_GREEK 42
54 | #define DLG_CHARSET_HANGUL 43
55 | #define DLG_CHARSET_MAC 44
56 | #define DLG_CHARSET_OEM 45
57 | #define DLG_CHARSET_RUSSIAN 46
58 | #define DLG_CHARSET_SHIFTJIS 47
59 | #define DLG_CHARSET_SYMBOL 48
60 | #define DLG_CHARSET_TURKISH 49
61 | #define DLG_CHARSET_VIETNAMESE 50
62 | #define DLG_CHARSET_JOHAB 51
63 | #define DLG_CHARSET_ARABIC 52
64 | #define DLG_CHARSET_HEBREW 53
65 | #define DLG_CHARSET_THAI 54
66 | #define DLG_STYLE_NORMAL 55
67 | #define DLG_STYLE_ITALIC 56
68 | #define DLG_STYLE_BOLD 57
69 | #define DLG_STYLE_BOLD_ITALIC 58
70 | #define MSG_SETTING_FILE 59
71 | #define MSG_ALL_FILE 60
72 | #define MSG_LOAD_FAIL 61
73 | #define MSG_SAVE_FAIL 62
74 | #define MSG_ERROR 63
75 | #define MSG_ABOUT 64
76 | #define MSG_NO_FONT 65
77 | #define MSG_NO_STYLE 66
78 | #define MSG_NO_SIZE 67
79 | #define MSG_NO_CHARSET 68
80 | #define MSG_TRANSLATE 69
81 | #define FONT_CHARSET 70
82 | #define DLG_APPLY 71
83 | #define DLG_ALL_GROUP 72
84 | #define DLG_INDIVIDUAL_GROUP 73
85 | #define DLG_STYLE_MEDIUM 74
86 | #define DLG_STYLE_SEMI_BOLD 75
87 | #define DLG_STYLE_BOOK 76
88 | #define DLG_STYLE_OBLIQUE 77
89 | #define DLG_STYLE_LIGHT 78
90 | #define DLG_STYLE_EXTRA_LIGHT 79
91 | #define DLG_STYLE_SEMI_LIGHT 80
92 | #define DLG_STYLE_SLANTED 81
93 | #define DLG_CHECK_BOLD 82
94 | #define DLG_CHECK_ITALIC 83
95 | #define MSG_WARNING 84
96 | #define MSG_WIN11_22H2RESTRICTION 85
97 | #define MENU_CHOICE_APP_FONT 86
98 | #define MENU_DONT_RUN_MULTIPLY 87
99 | #define MENU_FORCE_TITLE_SET 88
100 | #define MSG_FORCE_TITLE_SET 89
101 |
102 | extern void readResourceFile(TCHAR *file);
103 |
104 | #endif
105 |
--------------------------------------------------------------------------------
/program/noMeiryoUI.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/noMeiryoUI.cpp
--------------------------------------------------------------------------------
/program/noMeiryoUI.exe.manifest:
--------------------------------------------------------------------------------
1 |
2 |
3 |
9 | noMeiryoUI set system fonts on Windows 8.x/10
10 |
11 |
12 |
20 |
21 |
22 |
23 |
24 | True
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
--------------------------------------------------------------------------------
/program/noMeiryoUI.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/noMeiryoUI.h
--------------------------------------------------------------------------------
/program/noMeiryoUI.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/noMeiryoUI.ico
--------------------------------------------------------------------------------
/program/noMeiryoUI.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/noMeiryoUI.rc
--------------------------------------------------------------------------------
/program/noMeiryoUI.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 12.00
3 | # Visual Studio Express 2012 for Windows Desktop
4 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "noMeiryoUI", "noMeiryoUI.vcxproj", "{0F28EA7F-B997-4CBB-8BCA-96A013FCBE7D}"
5 | EndProject
6 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "noMeiryoUI_2012", "noMeiryoUI_2012.vcxproj", "{5FBD6B6B-056A-402B-9168-CF72C05FDA0E}"
7 | EndProject
8 | Global
9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
10 | Debug_2008|Win32 = Debug_2008|Win32
11 | Debug|Win32 = Debug|Win32
12 | Release_2008|Win32 = Release_2008|Win32
13 | Release|Win32 = Release|Win32
14 | EndGlobalSection
15 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
16 | {0F28EA7F-B997-4CBB-8BCA-96A013FCBE7D}.Debug_2008|Win32.ActiveCfg = Debug_2008|Win32
17 | {0F28EA7F-B997-4CBB-8BCA-96A013FCBE7D}.Debug_2008|Win32.Build.0 = Debug_2008|Win32
18 | {0F28EA7F-B997-4CBB-8BCA-96A013FCBE7D}.Debug|Win32.ActiveCfg = Debug|Win32
19 | {0F28EA7F-B997-4CBB-8BCA-96A013FCBE7D}.Debug|Win32.Build.0 = Debug|Win32
20 | {0F28EA7F-B997-4CBB-8BCA-96A013FCBE7D}.Release_2008|Win32.ActiveCfg = Release_2008|Win32
21 | {0F28EA7F-B997-4CBB-8BCA-96A013FCBE7D}.Release_2008|Win32.Build.0 = Release_2008|Win32
22 | {0F28EA7F-B997-4CBB-8BCA-96A013FCBE7D}.Release|Win32.ActiveCfg = Release|Win32
23 | {0F28EA7F-B997-4CBB-8BCA-96A013FCBE7D}.Release|Win32.Build.0 = Release|Win32
24 | {5FBD6B6B-056A-402B-9168-CF72C05FDA0E}.Debug_2008|Win32.ActiveCfg = Debug|Win32
25 | {5FBD6B6B-056A-402B-9168-CF72C05FDA0E}.Debug_2008|Win32.Build.0 = Debug|Win32
26 | {5FBD6B6B-056A-402B-9168-CF72C05FDA0E}.Debug|Win32.ActiveCfg = Debug|Win32
27 | {5FBD6B6B-056A-402B-9168-CF72C05FDA0E}.Debug|Win32.Build.0 = Debug|Win32
28 | {5FBD6B6B-056A-402B-9168-CF72C05FDA0E}.Release_2008|Win32.ActiveCfg = Release|Win32
29 | {5FBD6B6B-056A-402B-9168-CF72C05FDA0E}.Release_2008|Win32.Build.0 = Release|Win32
30 | {5FBD6B6B-056A-402B-9168-CF72C05FDA0E}.Release|Win32.ActiveCfg = Release|Win32
31 | {5FBD6B6B-056A-402B-9168-CF72C05FDA0E}.Release|Win32.Build.0 = Release|Win32
32 | EndGlobalSection
33 | GlobalSection(SolutionProperties) = preSolution
34 | HideSolutionNode = FALSE
35 | EndGlobalSection
36 | GlobalSection(ExtensibilityGlobals) = postSolution
37 | SolutionGuid = {DDA790B3-BFD9-471A-BADB-686A19F440B5}
38 | EndGlobalSection
39 | EndGlobal
40 |
--------------------------------------------------------------------------------
/program/noMeiryoUI.vcproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/noMeiryoUI.vcproj
--------------------------------------------------------------------------------
/program/noMeiryoUI.vcxproj.filters:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF}
6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx
7 |
8 |
9 | {0f14fc6b-c5ac-4eff-9e3f-67d982331a10}
10 |
11 |
12 | {93995380-89BD-4b04-88EB-625FBE52EBFB}
13 | h;hpp;hxx;hm;inl;inc;xsd
14 |
15 |
16 | {0b7db99e-612d-46b4-b5c0-6ce958f4eadc}
17 |
18 |
19 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01}
20 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav
21 |
22 |
23 | {f245276e-3848-4761-bc5e-7ede926228e4}
24 |
25 |
26 | {a1d85430-7ac7-479c-8d4e-46cb142989eb}
27 |
28 |
29 |
30 |
31 | ソース ファイル
32 |
33 |
34 | ソース ファイル
35 |
36 |
37 | ソース ファイル
38 |
39 |
40 | ソース ファイル
41 |
42 |
43 | ソース ファイル\TWR
44 |
45 |
46 | ソース ファイル\TWR
47 |
48 |
49 | ソース ファイル\TWR
50 |
51 |
52 | ソース ファイル\TWR
53 |
54 |
55 | ソース ファイル\TWR
56 |
57 |
58 | ソース ファイル\TWR
59 |
60 |
61 | ソース ファイル\TWR
62 |
63 |
64 | ソース ファイル\TWR
65 |
66 |
67 | ソース ファイル\TWR
68 |
69 |
70 | ソース ファイル
71 |
72 |
73 | ソース ファイル\country
74 |
75 |
76 | ソース ファイル\country
77 |
78 |
79 | ソース ファイル\country
80 |
81 |
82 | ソース ファイル
83 |
84 |
85 |
86 |
87 | ヘッダー ファイル
88 |
89 |
90 | ヘッダー ファイル
91 |
92 |
93 | ヘッダー ファイル
94 |
95 |
96 | ヘッダー ファイル
97 |
98 |
99 | ヘッダー ファイル
100 |
101 |
102 | ヘッダー ファイル
103 |
104 |
105 | ヘッダー ファイル\TWR
106 |
107 |
108 | ヘッダー ファイル\TWR
109 |
110 |
111 | ヘッダー ファイル\TWR
112 |
113 |
114 | ヘッダー ファイル\TWR
115 |
116 |
117 | ヘッダー ファイル\TWR
118 |
119 |
120 | ヘッダー ファイル\TWR
121 |
122 |
123 | ヘッダー ファイル\TWR
124 |
125 |
126 | ヘッダー ファイル\TWR
127 |
128 |
129 | ヘッダー ファイル\TWR
130 |
131 |
132 | ヘッダー ファイル\TWR
133 |
134 |
135 | ヘッダー ファイル\TWR
136 |
137 |
138 | ヘッダー ファイル\TWR
139 |
140 |
141 | ヘッダー ファイル
142 |
143 |
144 | ヘッダー ファイル\country
145 |
146 |
147 | ヘッダー ファイル\country
148 |
149 |
150 | ヘッダー ファイル\country
151 |
152 |
153 | ヘッダー ファイル
154 |
155 |
156 |
157 |
158 | リソース ファイル
159 |
160 |
161 |
162 |
163 | リソース ファイル
164 |
165 |
166 |
167 |
168 |
169 |
170 |
171 |
172 |
--------------------------------------------------------------------------------
/program/noMeiryoUI_2008.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 10.00
3 | # Visual Studio 2008
4 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "noMeiryoUI", "noMeiryoUI_2008.vcproj", "{0F28EA7F-B997-4CBB-8BCA-96A013FCBE7D}"
5 | EndProject
6 | Global
7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
8 | Debug_2008|Win32 = Debug_2008|Win32
9 | Release_2008|Win32 = Release_2008|Win32
10 | EndGlobalSection
11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
12 | {0F28EA7F-B997-4CBB-8BCA-96A013FCBE7D}.Debug_2008|Win32.ActiveCfg = Debug_2008|Win32
13 | {0F28EA7F-B997-4CBB-8BCA-96A013FCBE7D}.Debug_2008|Win32.Build.0 = Debug_2008|Win32
14 | {0F28EA7F-B997-4CBB-8BCA-96A013FCBE7D}.Release_2008|Win32.ActiveCfg = Debug_2008|Win32
15 | {0F28EA7F-B997-4CBB-8BCA-96A013FCBE7D}.Release_2008|Win32.Build.0 = Debug_2008|Win32
16 | EndGlobalSection
17 | GlobalSection(SolutionProperties) = preSolution
18 | HideSolutionNode = FALSE
19 | EndGlobalSection
20 | EndGlobal
21 |
--------------------------------------------------------------------------------
/program/noMeiryoUI_2008.vcproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/noMeiryoUI_2008.vcproj
--------------------------------------------------------------------------------
/program/noMeiryoUI_2012.vcxproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Debug
6 | Win32
7 |
8 |
9 | Release
10 | Win32
11 |
12 |
13 |
14 | noMeiryoUI_2012
15 | {5FBD6B6B-056A-402B-9168-CF72C05FDA0E}
16 | noMeiryoUI
17 | Win32Proj
18 |
19 |
20 |
21 | Application
22 | v110
23 | Unicode
24 | true
25 |
26 |
27 | Application
28 | v110
29 | Unicode
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 | <_ProjectFileVersion>11.0.61030.0
43 |
44 |
45 | $(SolutionDir)$(Configuration)_2012\
46 | $(Configuration)_2012\
47 | true
48 | noMeiryoUI
49 |
50 |
51 | $(SolutionDir)$(Configuration)_2012\
52 | $(Configuration)_2012\
53 | false
54 | noMeiryoUI
55 |
56 |
57 |
58 | Disabled
59 | TWR;%(AdditionalIncludeDirectories)
60 | WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)
61 | true
62 | EnableFastChecks
63 | MultiThreadedDebug
64 |
65 | Level3
66 | EditAndContinue
67 |
68 |
69 | /SAFESEH %(AdditionalOptions)
70 | comctl32.lib;%(AdditionalDependencies)
71 | true
72 | Windows
73 | true
74 | true
75 | MachineX86
76 |
77 |
78 |
79 |
80 | MinSpace
81 | true
82 | TWR;%(AdditionalIncludeDirectories)
83 | WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)
84 | MultiThreaded
85 | true
86 |
87 | Level3
88 | ProgramDatabase
89 |
90 |
91 | /SAFESEH %(AdditionalOptions)
92 | comctl32.lib;%(AdditionalDependencies)
93 | true
94 | true
95 | Windows
96 | true
97 | true
98 | MachineX86
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 |
109 |
110 | Create
111 | Create
112 |
113 |
114 |
115 |
116 |
117 |
118 |
119 |
120 |
121 |
122 |
123 |
124 |
125 |
126 |
127 |
128 |
129 |
130 |
131 |
132 |
133 |
134 |
135 |
136 |
137 |
138 |
139 |
140 |
141 |
142 |
143 |
144 |
145 |
146 |
147 |
148 |
149 |
150 |
151 |
152 |
153 |
154 |
155 |
156 |
157 |
158 |
159 |
160 |
161 |
162 |
163 |
164 |
--------------------------------------------------------------------------------
/program/noMeiryoUI_2012.vcxproj.filters:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF}
6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx
7 |
8 |
9 | {186949e8-bc02-424e-94ad-8857b1b05aac}
10 |
11 |
12 | {93995380-89BD-4b04-88EB-625FBE52EBFB}
13 | h;hpp;hxx;hm;inl;inc;xsd
14 |
15 |
16 | {72699847-a676-4e1d-8ea0-b7aadbe824b9}
17 |
18 |
19 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01}
20 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav
21 |
22 |
23 | {6cd75647-a11e-4850-ba1f-413c43504db3}
24 |
25 |
26 | {3e4dd997-56a3-443d-b2c1-5955392453a6}
27 |
28 |
29 |
30 |
31 | ソース ファイル
32 |
33 |
34 | ソース ファイル
35 |
36 |
37 | ソース ファイル
38 |
39 |
40 | ソース ファイル
41 |
42 |
43 | ソース ファイル\TWR
44 |
45 |
46 | ソース ファイル\TWR
47 |
48 |
49 | ソース ファイル\TWR
50 |
51 |
52 | ソース ファイル\TWR
53 |
54 |
55 | ソース ファイル\TWR
56 |
57 |
58 | ソース ファイル\TWR
59 |
60 |
61 | ソース ファイル\TWR
62 |
63 |
64 | ソース ファイル\TWR
65 |
66 |
67 | ソース ファイル\TWR
68 |
69 |
70 | ソース ファイル
71 |
72 |
73 | ソース ファイル\Country
74 |
75 |
76 | ソース ファイル\Country
77 |
78 |
79 | ソース ファイル\Country
80 |
81 |
82 | ソース ファイル
83 |
84 |
85 |
86 |
87 | ヘッダー ファイル
88 |
89 |
90 | ヘッダー ファイル
91 |
92 |
93 | ヘッダー ファイル
94 |
95 |
96 | ヘッダー ファイル
97 |
98 |
99 | ヘッダー ファイル
100 |
101 |
102 | ヘッダー ファイル
103 |
104 |
105 | ヘッダー ファイル\TWR
106 |
107 |
108 | ヘッダー ファイル\TWR
109 |
110 |
111 | ヘッダー ファイル\TWR
112 |
113 |
114 | ヘッダー ファイル\TWR
115 |
116 |
117 | ヘッダー ファイル\TWR
118 |
119 |
120 | ヘッダー ファイル\TWR
121 |
122 |
123 | ヘッダー ファイル\TWR
124 |
125 |
126 | ヘッダー ファイル\TWR
127 |
128 |
129 | ヘッダー ファイル\TWR
130 |
131 |
132 | ヘッダー ファイル\TWR
133 |
134 |
135 | ヘッダー ファイル\TWR
136 |
137 |
138 | ヘッダー ファイル\TWR
139 |
140 |
141 | ヘッダー ファイル
142 |
143 |
144 | ヘッダー ファイル\Country
145 |
146 |
147 | ヘッダー ファイル\Country
148 |
149 |
150 | ヘッダー ファイル\Country
151 |
152 |
153 | ヘッダー ファイル
154 |
155 |
156 |
157 |
158 | リソース ファイル
159 |
160 |
161 |
162 |
163 | リソース ファイル
164 |
165 |
166 |
167 |
168 |
169 |
170 |
171 |
172 |
--------------------------------------------------------------------------------
/program/resource.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/resource.h
--------------------------------------------------------------------------------
/program/stdafx.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/stdafx.cpp
--------------------------------------------------------------------------------
/program/stdafx.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/stdafx.h
--------------------------------------------------------------------------------
/program/targetver.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/targetver.h
--------------------------------------------------------------------------------
/program/util.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/util.h
--------------------------------------------------------------------------------
/util/RESTOREreg.bat:
--------------------------------------------------------------------------------
1 | @echo off
2 |
3 | echo Are you running this batch file having Administrator privilege?
4 | echo If you don't have Administrator privilege, press CTRL+C to quit.
5 | pause
6 |
7 | echo.
8 | echo Your local application data folder: %LOCALAPPDATA%
9 | echo Restore registry related to No!! MeiryoUI from your home folder backup file and reboot OK?
10 | pause
11 |
12 | REM REG RESTORE HKLM\SOFTWARE %LOCALAPPDATA%\noMeiryoUI_HKLM.reg
13 | if ERRORLEVEL 1 exit
14 | REG RESTORE "HKCU\Control Panel" %LOCALAPPDATA%\noMeiryoUI_HKCU.reg
15 | if ERRORLEVEL 1 exit
16 |
17 | shutdown /r /t 0 /c "Restore registry." /d 4:1
18 |
--------------------------------------------------------------------------------
/util/SAVEreg.bat:
--------------------------------------------------------------------------------
1 | @echo off
2 |
3 | echo Are you running this batch file having Administrator privilege?
4 | echo If you don't have Administrator privilege, press CTRL+C to quit.
5 | pause
6 |
7 | echo.
8 | echo Your local application data folder: %LOCALAPPDATA%
9 | echo Save registry related to No!! MeiryoUI on your home folder OK?
10 | pause
11 |
12 | REG SAVE HKLM\SOFTWARE %LOCALAPPDATA%\noMeiryoUI_HKLM.reg /y
13 | REG SAVE "HKCU\Control Panel" %LOCALAPPDATA%\noMeiryoUI_HKCU.reg /y
14 |
15 | echo.
16 | echo backup file1: %LOCALAPPDATA%\noMeiryoUI_HKLM.reg
17 | echo backup file2: %LOCALAPPDATA%\noMeiryoUI_HKCU.reg
18 |
19 | echo.
20 | echo Save registry related to No!! MeiryoUI complete.
21 |
--------------------------------------------------------------------------------
/util/localetest.c:
--------------------------------------------------------------------------------
1 | /*
2 | noMeiryoUI (C) 2005,2012-2017 Tatsuhiko Shoji
3 | The sources for noMeiryoUI are distributed under the MIT open source license
4 | */
5 | #include
6 | #include
7 |
8 | int main(int argc,char *argv[])
9 | {
10 | printf("%s\n",setlocale( LC_ALL, "" ));
11 |
12 | return 0;
13 | }
14 |
--------------------------------------------------------------------------------
/util/localetest.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/util/localetest.exe
--------------------------------------------------------------------------------