Zufu Liu
Zufu Liu
keywords and data types for PostgreSQL 12 is added in 6c6a612da6832e03e86ee7008e4540f3939b89f4.
Files added in https://github.com/zufuliu/notepad2/tree/master/locale/de, you can fork this project, then translate Notepad2.rc and metapath.rc in locale/de folder.
Thank you. I also need to find out how to make these language menu items sorted.
Hi @blackcrack I added a script to extract resource strings in 660a3db486ad994cc16fdf26325d83e9f499d22d, you can translate extracted string files (see attachment ) for Deutsch. [de-0719.zip](https://github.com/zufuliu/notepad2/files/4943573/de-0719.zip)
It's likely the site need a social account (e.g. Facebook).
I think dark mode / theme is ready, I added a new screenshot for v4.19.04.  Menu, toolbar and statusbar requires complicate custom drawing for dark mode, are not implemented.
The white area above auto-completion box on win10 (above screenshot by v4.19.04) was removed in v4.19.06. Related discussion can be found at https://sourceforge.net/p/scintilla/feature-requests/1284/. 
@jzhao2007 can you try v4.19.12.r2604 and replace *Notepad2 DarkTheme.ini* with the one in zip.
Unfortunately, Notepad2 doesn't auto discover theme files.
There are code to detect system dark mode on Win 10: https://sourceforge.net/p/scintilla/scite/ci/09b21fe9d954ba1b350289fdbe7b16d59f7134ac/ ``` HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Themes\Personalize AppsUseLightTheme REG_DWORD SystemUsesLightTheme REG_DWORD ``` ```cpp HIGHCONTRAST info{}; info.cbSize = sizeof(HIGHCONTRAST) SystemParametersInfo(SPI_GETHIGHCONTRAST, 0, &info, 0); info.dwFlags...