giuspen left a comment (geany/geany-plugins#1434)
I did not try the installer yet but I built from Enrico's branch, the languages
files build correctly and are installed correctly.
I tried to run overriding the language into DE and the plugins get translated
properly
```
PenoneG@KUKMW153 MINGW64 ~
export LANGUAGE=de:en
export LANG=de.UTF-8
export LC_ALL=de.UTF-8
/c/geany/bin/geany.exe
```
Just a note, in order to build with msys2 I still need to apply a patch
```
diff --git a/geanygendoc/docs/Makefile.am b/geanygendoc/docs/Makefile.am
index f3975b69..bde0f83a 100644
--- a/geanygendoc/docs/Makefile.am
+++ b/geanygendoc/docs/Makefile.am
@@ -15,6 +15,6 @@ dist_pluginhtmldoc_DATA = \
if BUILD_RST
manual.html: manual.rst manual.css html4css1.css
$(AM_V_GEN) $(RST2HTML) -d --strict \
- --stylesheet-path
$(abs_srcdir)/html4css1.css,$(abs_srcdir)/manual.css \
+ --stylesheet-path $(srcdir)/html4css1.css,$(srcdir)/manual.css \
$(srcdir)/manual.rst $@
endif BUILD_RST
```
Maybe I will setup a CI build using a windows-latest runner and msys2 similar
to what I am using (
https://github.com/giuspen/cherrytree/blob/master/.github/workflows/windows-msys2.yml
)
Note that "MSYS2 recommends UCRT64 nowadays as the default instead of MINGW64"
( from https://github.com/msys2/setup-msys2?tab=readme-ov-file#options ) so I
migrated to it recently, maybe we should do the same in Geany.
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/pull/1434#issuecomment-2909463930
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany-plugins/pull/1434/[email protected]>